.OurSolutions { margin: 100px 0;  background-color: #451B17;}
.OurSolutions .oursol { padding: 87px 0; }
.OurSolutions .carouselSection { background-color: #451B17; padding-bottom: 60px; }
.OurSolutions .carouselSection .owl-stage { display: flex; }
.OurSolutions .carouselSection .owl-item{ display: flex; height: auto !important; }
.OurSolutions .wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 24px; }
.OurSolutions .col { padding-top: 40px; border-top: 1px solid #fffff9; }
.OurSolutions .title * {
    color: #F30;
    font-family: 'Manrope';
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}
.OurSolutions .desc * {
    font-family: 'PT Serif';
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    color: #FFFFF9;
    margin-bottom: 1.5em;
}

.OurSolutions .slide-header{
    padding: 56px 0;
    min-height: 200px;
    height: fit-content;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.OurSolutions .slide-header::before{
    background-image:
            linear-gradient(270deg, rgba(0, 0, 0, 0) 29.65%, rgba(0, 0, 0, 0.8) 100.8%),
            linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    position:absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
}

.OurSolutions .slide-header .contTexts{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    position: relative;
}

.OurSolutions .slide-header .imgSlide{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all .3s linear;
    object-fit: cover;
}

.OurSolutions .slide-header:hover .imgSlide{ transform: scale(1.1) !important; }

.OurSolutions .slide-header .contArrow{
    width: 60px;
    height: 60px;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.OurSolutions .slide-header .arrowIcon{
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: all .3s linear;
}

.OurSolutions .slide-header.active .arrowIcon{
    width: 28px;
    height: 28px;
    cursor: pointer;
    transform: rotate(180deg);
}

.OurSolutions .titles .title{
    color: #FFF;
    leading-trim: both;
    text-edge: cap;
    font-family: 'PT Serif';
    font-size: clamp(30px, 3vw,48px);
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.OurSolutions .titles:not(:has(.subtitle)) .title { margin-bottom: 0; }

.OurSolutions .titles .subtitle{
    color: #FFF;
    font-family: 'Inter';
    font-size: clamp(16px, 2vw, 20px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 484px;
}

.OurSolutions .slide-body{
    padding: 64px 0;
    background-color: #FFF;
    border-bottom: 1px solid #451B17;
}

.OurSolutions .slide-body .contData{
    position: relative;
}

.OurSolutions .slide-body .text{
    color: #020C11;
    leading-trim: both;
    text-edge: cap;
    font-family: 'Manrope';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    max-width: 684px;
    width: 100%;
    margin-bottom: 55px;
}

.OurSolutions .slides .slide{
    transform: translateX(-100%);
}

.OurSolutions .slide-body .categories .category .title{
    color: #F30;
    font-family: "PT Serif";
    font-size: 32px;
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -1px;
    text-transform: uppercase;
    border-bottom: 1px solid #F30;
    padding-bottom: 8px;
    margin-bottom: 40px;
}

.OurSolutions .slide-body .categories .category .subcategory .title{
    color: #451B17;
    leading-trim: both;
    text-edge: cap;
    font-family: 'Manrope';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #451B17;
    margin-bottom: 23px;
}

.OurSolutions .slide-body .categories .category .elements{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 20px;
    align-items: flex-end;
}

.OurSolutions .slide-body .categories .category .subcategory{
    height: 100%;
    margin-bottom: 40px;
}

.OurSolutions .slide-body .categories .category .subcategory.oneElem{
    max-width: calc((100% / 3) - 14px);
    width: 100%;
}

.OurSolutions .slide-body .categories .category .subcategory.twoElem{
    max-width: calc(((100% / 3) * 2) - 14px);
    width: 100%;
}

.OurSolutions .slide-body .categories .category .subcategory.twoElem .subelements{ display: flex; }

.OurSolutions .slide-body .categories .category .subcategory.threeOrMore{ width: 100%;}
.OurSolutions .slide-body .categories .category .subcategory.threeOrMore .subelements{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.OurSolutions .slide-body .categories .category .subcategory .subelements{
    display: flex;
    gap: 23px;
}

.OurSolutions .slide-body .element{
    width: 100%;
    height: 121px;
    box-sizing: border-box;
    border: 1px solid #451B17;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.OurSolutions .slide-body .element .imgCont{
    min-width: 61px;
    height: 121px;
    transition: all .3s linear;
    overflow: hidden;
}

.OurSolutions .slide-body .element .content{
    padding: 16px;
    display: flex;
    flex-direction: row;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #FFF;
}

.OurSolutions .slide-body .element .content *{
    color: #451B17;
    font-family: 'PT Serif';
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 24px */
}

.OurSolutions .slide-body .element .image{
    transition: all .3s linear;
    width: 61px;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.slide-body .categories .category .elements .element .btn{
    align-self: end;
    opacity: 0;
    transition: all .3s linear;
}

.OurSolutions .slide-body .element .content .button{
    transition: all .3s linear;
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF;
    border: 1px solid #F30;
    padding: 0;
    min-width: 28px;
    max-height: 28px;
    margin: unset;
    max-width: 28px;
}

.OurSolutions .slide-body .categories .category{
    width: 100%;
    position: relative;
    z-index: 2;
}

.OurSolutions .slide-body .categories .category .elements .element.simpleAl{
    max-width: 389px;
    width: 100%;
}

.OurSolutions .noSub-wrapper .elements{
    margin-bottom: 55px;
}

.OurSolutions .noSub-wrapper.one .elements{
    max-width: calc((100% / 3) - 14px);
    width: 100%;
}

.OurSolutions .noSub-wrapper.two .elements{
    max-width: calc(((100% / 3) * 2) - 14px);
    display: grid!important;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.OurSolutions .noSub-wrapper.three .elements{
    display: grid!important;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.OurSolutions .background-text{
    color: #451B17;
    font-family: "PT Serif";
    font-size:clamp(120px, 9.5vw,190px);
    font-style: italic;
    font-weight: 400;
    line-height: normal;
    opacity: 0.03;
    position: sticky;
    top: 100px;
    left: -50%;
    content: '';
    text-align: center;
    text-wrap: wrap;
    hyphens: auto;
    width: 100%;
}

.wrappedStickyTxt{
    position: absolute;
    top: -100px;
    height: 100%;
    width: 100vw;
    left: calc((1176px - 100vw) / 2);
}

.OurSolutions .wrappedStickyImg{
    position: absolute;
    top: -150px;
    height: 100%;
    width: 100%;
    left: 50%;
}

.OurSolutions .background-image{
    position: sticky;
    width: clamp(732px, 40vw, 1061px);
    height: clamp(878px, 40vw, 1271px);
    opacity: 0.4;
    mix-blend-mode: multiply;
    object-fit: cover;
    top: 0;
    right: -150px;
}

@media screen and (min-width: 992px){
    .OurSolutions .slide-body .categories .category .elements .element:hover .btn{ align-self: end; opacity: 1; }
    .OurSolutions .slide-body .categories .category .elements .element:hover .image{ width: 100px; }
    .OurSolutions .slide-body .categories .category .elements .element:hover{ border: 2px solid #F30;}
}

@media screen and (max-width: 1216px){
    .wrappedStickyTxt{
        top: 0;
        left: 0;
    }
    .OurSolutions .background-text{
        letter-spacing: 0;
        font-size: clamp(80px, 9.5vw,190px);
    }
}

@media screen and (max-width: 992px) {
    .OurSolutions .background-text{
        letter-spacing: 0;
        font-size: clamp(50px, 9.5vw, 150px);
    }

    .OurSolutions .oursol{ display: none; }

    .OurSolutions .wrapper { grid-template-columns: 1fr; }
    .OurSolutions .col:nth-child(2) { padding-top: 0; border-top: 0; }
    .OurSolutions .slide-header{
        min-height: 130px;
        padding: 30px 0;
    }

    .OurSolutions .titles .subtitle{
        max-width: 244px;
    }

    .OurSolutions .slide-header .contArrow{
        width: 32px;
        height: 32px;
    }

    .OurSolutions .slide-header .arrowIcon{
        width: 20px;
        height: 11px;
    }

    .OurSolutions .slide-header.active .arrowIcon{
        width: 20px;
        height: 11px;
        cursor: pointer;
        transform: rotate(180deg);
    }

    .OurSolutions .slide-body .categories .category .subcategory{
        max-width: 100% !important;
        width: 100%;
    }

    .OurSolutions .slide-body .categories .category .subcategory .subelements{
        flex-direction: column!important;
        display: flex!important;
    }

    .OurSolutions .slide-body .categories .category .elements .element .btn{ align-self: end; opacity: 1; }
    .OurSolutions .slide-body .categories .category .elements .element .image{ width: 100px; }
    .OurSolutions .slide-body .categories .category .elements .element{ border: 2px solid #F30;}
    .OurSolutions .noSub-wrapper .elements{
        grid-template-columns: 1fr!important;
        max-width: 100%!important;
    }

    .OurSolutions .background-image {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 767px){
    .OurSolutions .background-text{
        letter-spacing: 0;
        font-size: clamp(40px, 10.5vw, 60px);
    }

    .OurSolutions .slide-header{
        padding: 30px 0;
    }

    .OurSolutions .slide-body{
        padding: 43px 0;
    }
}

@media screen and (max-width: 567px){
    .OurSolutions { margin: 50px 0; }
    .OurSolutions .oursol { padding: 30px; }
    .OurSolutions .col:nth-child(2) { border-top: 0; padding-top: 0; }
}

.OurSolutions .slide-body {
    display: none;
}