main .ll_content_padding-large:last-child {
    padding-top: 2rem !important;
}
a.hoverlink {
    display: inline-block;
    letter-spacing: 0.05em;
}

a.hoverlink::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width .3s;
}

a.hoverlink:hover::after {
    width: 100%;
}
.ll_layout h1 {
    width: 100%;
}
.ll_layout .ll_layout-text h3,
.ll_layout .ll_layout-text h2 {
    font-size: var(--font_size-p);
    color: var(--color-blue);
}
.ll_layout .ll_layout-text ul {
    font-size: var(--font_size-p);
    color: var(--color-blue);
    margin: var(--space-m) 0;
    margin-left: 1.4rem;
}
.ll_layout > div:last-of-type {
    display: block;
    margin-top: 4rem;
}
.ll_layout > div:last-of-type span:first-child{
    display: none;
}
.ll_layout > div:last-of-type > span {
    position: relative;
}
.ll_layout > div svg {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -60px;
    right: 10px;
    z-index: 2;
    /* animation: rotate 16s infinite; */

}
@keyframes rotate {
    0%   {transform: rotate(0deg);}
    15%  {transform: rotate(360deg);}
    55%  {transform: rotate(360deg);}
    70% {transform: rotate(0deg);}
    100% {transform: rotate(0deg);}
}
.ll_layout > div:last-of-type > span:first-child {
    width: 70%;
    height: auto;
    margin-left: auto;
}
.ll_layout > div:last-of-type > span:nth-of-type(2) {
    width: 50%;
    height: auto;
    margin-left: auto;
}
.ll_layout > div:last-of-type > span:nth-child(3) {
    width: 45%;
    height: auto;
    margin-left: auto;
}

@media screen and (min-width: 800px) {
    main .ll_content_padding-large:last-child {
        margin-top: 0 !important;
    }
    .ll_content_padding-large:first-child {
        padding-top: calc(var(--space-xl) * 1.4)!important;
    }
    .ll_layout {
        margin-bottom: 0;
    }
    h1 span{
        max-width: 30%;
        display:block;
    }
    .ll_layout > div:last-of-type {
        margin-top: 0;
    }
    .ll_layout > div:last-of-type span {
        margin-bottom: var(--space-m2);
    }
    .ll_layout > div:last-of-type span:last-child {
        margin-bottom: 0;
    }
    .ll_layout > div:last-of-type span:first-child{
        display: block;
    }
    .ll_layout > div svg{
        left: -60px;
        right: auto;
        top: 20px
    }
    .ll_layout > div:last-of-type > span:first-child {
        width: 90%;
        height: auto;
        margin-left: auto;
    }
    .ll_layout > div:last-of-type > span:nth-of-type(2) {
        width: 60%;
        height: auto;
        margin-left: auto;
        display: block;
    }
    .ll_layout > div:last-of-type > span:nth-child(3) {
        width: 60%;
        height: auto;
        margin-right: auto;
        margin-left: 0;
        display: block;
    }
    .ll_layout > div:last-of-type > span:nth-child(4) {
        width: 80%;
        height: auto;
        margin-left: auto;
        display: block;
    }
    .ll_layout > div:last-of-type > span:nth-child(5) {
        width: 60%;
        height: auto;
        margin-right: auto;
        margin-left: 0;
        display: block;
    }
}
@media screen and (min-width: 1024px) {
    .ll_content_padding-large:nth-child(2) {
        padding-top: calc(var(--space-xl) * 0.6) !important;
    }
    .ll_layout > div:last-of-type > span:first-child {
        width: 70%;
        height: auto;
        margin-left: auto;
    }
    .ll_layout > div:last-of-type > span:nth-of-type(2) {
        width: 50%;
        height: auto;
        margin-left: auto;
        display: block;
    }
    .ll_layout > div:last-of-type > span:nth-child(3) {
        width: 45%;
        height: auto;
        margin-right: auto;
        margin-left: 0;
        display: block;
        transform: translateY(-10rem);
    }
    .ll_layout > div:last-of-type > span:nth-child(4),
    .ll_layout > div:last-of-type > span:nth-child(5) {
        transform: translateY(-10rem);
    }
}
@media screen and (min-width: 1400px) {
    .ll_layout > div svg{
        width: 150px;
        height: 150px;
        left: -80px;
    }
    .ll_layout > div:last-of-type > span:nth-child(3),
    .ll_layout > div:last-of-type > span:nth-child(4),
    .ll_layout > div:last-of-type > span:nth-child(5) {
        transform: translateY(-14rem);
    }
    .ll_layout > div:last-of-type > span:nth-child(4) {
        width: 70%;
    }
    .ll_layout > div:last-of-type > span:nth-child(5) {
        width: 50%;
    }
}
@media screen and (min-width: 1600px) {
    .ll_content_padding-large:first-child {
        padding-top: var(--space-xl)!important;
    }
}

@media screen and (min-width: 800px) {
    .fade-in {
        opacity: 0;
        transform: translate(0, 50px);
        transition: all 0.5s ease-in-out;
    }
    .ll_layout > div svg {
        opacity: 0;
        transform: rotate(-60deg);
        transition: all 0.5s ease-in-out;
        transition-delay: 0.5s;
    }
    .fade-in.active {
        opacity: 1;
        transform: translate(0, 0);
    }
    .ll_layout > div svg.active {
        opacity: 1;
        transform: rotate(0deg);
    }
}