.sections{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    grid-gap: 3.06rem;
    padding: 3.6rem 0 5.86rem;
}

.sections>* .row{
    grid-gap: 3.06rem 0;
}

.sections>* .row>*{
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -ms-flex-direction: column;
    justify-content: center;
    -webkit-justify-content: center;
}

.sections>* .title{
    width: fit-content;
    font-family: var(--dark);
    font-size: 60px;
    font-weight: 400;
    line-height: 85px;
    /* line-height: 100px; */
    background: var(--title);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sections>* .text{
    margin-bottom: 22px;
}

.sections>* .df{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    grid-gap: 25px;
}

.sections>* .df.main{
    justify-content: center;
    -webkit-justify-content: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.sections>* .df.main .text{
    margin-bottom: 0;
}

.sections>* .df .rss{
    display: flex;
    display: -webkit-flex;
    align-items: center;
    grid-gap: 1rem;
}

.sections>* .df .rss>* svg path{
    fill: var(--black);
}

.sections>* .bigimg{
    position: relative;
    width: clamp(10px,100%,708px);
    aspect-ratio: 1/.56073;
    margin-bottom: 2.8rem;
}

.sections>* .bigimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    border-radius: 16px;
}

.sections>* .bigimg::before,
.sections>* .bigimg::after{
    content: '';
    position: absolute;
    z-index: -1;
    width: 50.56497%;
    aspect-ratio: 1/.55307;
    background-color: var(--main);
    border-radius: 0 16px;
}

.sections>* .bigimg::before{
    inset: auto auto -2.51% -1.41%;
}

.sections>* .bigimg::after{
    inset: -2.51% -1.41% auto auto;
}

.sections>* .owl-carousel img{
    cursor: pointer;
    width: 148px;
    aspect-ratio: 1/.56081;
    object-fit: cover;
    -o-object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.sections>* .owl-carousel img.active{
    border-color: var(--main);
}

@media(max-width:992px){
    .sections{
        padding: 2rem 0;
    }
    .sections>*:nth-child(even) .row>*:first-child{
        order: 2;
        -webkit-order: 2;
    }
    .sections>*:nth-child(even) .row>*:nth-child(2){
        order: 1;
        -webkit-order: 1;
    }
    .sections>*:nth-child(even) .row>*:last-child{
        order: 3;
        -webkit-order: 3;
    }
}

@media(max-width:768px){
    .sections>* .title{
        line-height: 70px;
        margin-bottom: 1rem;
    }
}