/* ====== Image with Text Overrides Styles ====== */

.image-with-text-overwrites{
    .image-with-text__content{
        padding: 0;
        margin-bottom: 32px;
    }
    .image-with-text__heading{
        font-weight: 500;
        font-size: 28px;
        line-height: 120%;
        text-transform: capitalize;
        color: var(--dark-headings);
    }
    .image-with-text__text{
        font-weight: 500;
        font-size: 16.5px;
        line-height: 145%;
    }
    .image-with-text__content>*+*{
        margin-top: 16px;
    }
    .image-with-text .image-with-text__media-item>*{
        border: 0;
        border-radius: 7.76px !important; /* Needed important here because the default border-radius is set too deep in the CSS */
    }
    .image-with-text__grid--reverse {
        flex-direction: column-reverse;
    }
    .image-with-text__media-item.image-with-text__media-item--adaptive-aspect-ratio .image-with-text__media{
        aspect-ratio: 808 / 450;
        height: auto;
    }
    

    .button{
        border-color: var(--dark-paragraphs);
    }
    @media (max-width: 749px) {
        .button{
            width: 100%;
        }
    }
    @media (min-width: 750px) {
        .image-with-text__grid--reverse {
            flex-direction: row-reverse;
        }
    }
}

.image-with-text-v3{
    .image-with-text__text{
        color: var(--dark-paragraphs);
        font-family: Manrope;
        font-weight: 500;
        font-size: 18px;
        line-height: 145%;
    }
    .button--secondary{
        border-color: var(--subtle-borders);
    }
    .image-with-text__content{
        padding-left: 60px;
        padding-right: 0;
    }
    
    @media (max-width:749px) {
        .image-with-text__content{
            padding-left: 0;
            padding-right: 0;
        }

        .button{
            width: 100%;
        }
    }
}


/*======  Usage Scenarios Styles ======  */
.usage-scenarios-section{
    background-color: var(--subtle-bg);
    

    .page-width{
        padding: 60px 24px;
    }
    .header-text-container{
        margin-bottom: 40px;
    }
    .main-title{
        font-weight: 500;
        font-size: 28px;
        line-height: 120%;
        text-transform: capitalize;
        margin-bottom: 16px;
        margin-top: 0;
    }
    .main-description{
        font-weight: 500;
        font-size: 16.5px;
        line-height: 145%;
        color: var(--dark-paragraphs);
        margin: 0;
    }

    .usage-scenarios-blocks-container{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .usage-scenario-block{
        width: 100%;
    }
    .usage-scenario-container{
        position: relative;
        padding: 24px;
        aspect-ratio: 392 / 520;
        border-radius: 16px;
        overflow: hidden;
        width: 100%;
        display: none;

        &.active{
            display: block;
        }
    }
    .background-image{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }
    .overlay-bg{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background-color: var(--dark-headings);
        opacity: 30%;
        display: block;
    }
    .usage-scenario-block-content-container{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        z-index: 3;
        position: relative;
        height: 100%;
    }
    .block-title{
        color: var(--light-headings);
        font-weight: 500;
        font-size: 24px;
        line-height: 120%;
        text-transform: capitalize;
        margin-bottom: 16px;
        margin-top: 0;
    }
    .tabs{
        display: flex;
        gap: 12px;
    }
    .tab{
        color: var(--light-headings);
        border-bottom: 1px solid var(--light-headings);
        margin: 0;
        font-weight: 700;
        font-size: 16.5px;
        line-height: 145%;
        padding-bottom: 8px;
        cursor: pointer;
        opacity: .5;

        &:hover{
            opacity: 1;
        }

        &.active{
            opacity: 1;
        }
    }

    .body-heading{
        margin: 0;
        font-weight: 500;
        font-size: 20px;
        line-height: 130%;
        text-transform: capitalize;
        color: var(--light-headings);
        margin-bottom: 8px;
    }
    .body-description{
        margin: 0;
        font-weight: 500;
        font-size: 16.5px;
        line-height: 145%;
        color: var(--light-headings);
        margin-bottom: 24px;
    }

    .button{
        width: 100%;
    }
    @media (min-width: 750px) {
        border-top: 1px solid var(--subtle-borders);
        border-bottom: 1px solid var(--subtle-borders);

        .page-width{
            padding: 80px 64px;
        }
        .main-title{
            font-size: 36px;
        }
        .main-description{
            font-size: 18px;
        }


        .image-no-stack{
            .usage-scenario-block{
                width: auto;
                flex: 1;
            }
            .usage-scenario-container{
                aspect-ratio: 636 / 460;
            }
        }

        .usage-scenario-container{
            padding: 40px;
            aspect-ratio: 1313 / 460;
        }

        .block-title{
            font-size: 28px;
        }
        .tab{
            font-size: 16px;
        }
        .button{
            width: auto;
        }
    }
}




/* ====== Featured Collection With Image Banner Styles ===== */

.featured-collection-with-image-banner{
    padding-top: 60px;

    .featured-collection-image-banner--main{
        max-width: 1440px;
        margin: 0 auto;
    }
    .featured-collection-image-banner--container{
        margin-bottom: 40px;
    }

    .featured-collection-image-banner--image{
        padding: 0 24px;
        line-height: 0;
        margin-bottom: 20px;

        img{
            aspect-ratio: 392 / 240;
            height: auto;
            width: 100%;
            border-radius: 16px;
            object-fit: cover;
        }
    }


    .featured-collection-title{
        margin: 0;
        font-size: 20px;
        line-height: 120%;
        letter-spacing: 0%;
        text-transform: capitalize;
        margin-bottom: 20px;
        display: none;

        &.mobile-title{
            display: block;
        }
    }
    .featured-collection-image-banner-headings{
        display: none;
    }
    .featured-collection-image-banner--content{
        padding-left: 24px;
    }

    .product-grid--carousel{
        width: 100%;
        margin-bottom: 32px;
        &:focus-visible{
            box-shadow: none;
        }
    }
    .slider-shell{
        width: 40%;

        &:not(:last-child){
            margin-right: 16px;
        }


    }
    .product-card a{
        text-decoration: none;
        color: inherit;
    }
    .product-card--image{
        padding-bottom: 12px;

        img{
            aspect-ratio: 180 / 139;
            width: 100%;
            height: auto;
            border-radius: 16px;
            object-fit: cover;
        }
    }
    .product-card--title{
        font-weight: 700;
        font-size: 16.5px;
        line-height: 145%;
        color: var(--dark-headings);
        margin-bottom: 4px;
    }
    .product-card--price{
        font-weight: 500;
        font-size: 16.5px;
        line-height: 145%;
    }

    .button{
        display: none;

        &.mobile{
            display: inline-block;
        }
    }
    @media (min-width: 900px) {
        padding-top: 80px;

        .featured-collection-image-banner--container {
            display: flex;
            align-items: center;
            padding: 0 64px;
            gap: 60px;
        }

        .featured-collection-image-banner--image{
            max-width: 655px;
            padding: 0;
            margin-bottom: 0;
            flex: 1;

            img{
                aspect-ratio: 655 / 450;
            }
        }
        .featured-collection-image-banner--content{
            flex: 1;
            padding: 0;
        }

        .featured-collection-image-banner-headings{
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 32px;
        }

        .product-grid--carousel{
            margin-bottom: 0;
        }
        .featured-collection-title{
            display: block;
            margin-bottom: 0;
            &.mobile-title{
                display: none;
            }
        }

        .button{
            display: inline-block;
    
            &.mobile{
                display: none;
            }
        }
        
    }
}






/* ====== Featured Partners Styles ===== */
.featured-partners{
    .featured-partners--main{
        max-width: 1440px;
        margin: 0 auto;
        padding: 60px 24px;
    }

    .featured-partners--container{
        background-color: var(--subtle-bg);
        padding: 40px 24px;
        border-radius: 40px;
    }

    .section-title{
        font-weight: 500;
        font-size: 12px;
        line-height: 120%;
        letter-spacing: .95;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    .partner-logos{
        display: flex;
        justify-content: center;
        gap: 12px;
        padding: 0;
        flex-wrap: wrap;

        li{
            max-width: 100px;
            height: 100px;
            list-style-type: none;
        }

        img{
            width: 100%;
            height: 100%;
        }
    }

    @media (min-width: 750px) {
        .featured-partners--main{
            padding: 80px 63px;
        }

        .section-title{
            font-size: 16px;
            letter-spacing: .95;
        }

        .partner-logos{
            gap: 0;
    
            li{
                max-width: 125px;
                height: 125px;
            }
        }
    }
}






/* ====== Testimonials Styles ===== */
.testimonials--main{
    background-color: var(--subtle-bg);
    padding: 60px 0;

    .testimonials--container{
        max-width: 1440px;
        margin: 0 auto;
    }

    .heading-container{
        margin-bottom: 40px;
        padding: 0 24px;

        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    .slider-arrows-container{
        flex-shrink: 0;

        > span{
            cursor: pointer;
        }
    }
    .testimonials--header{
        font-weight: 500;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0%;
        text-transform: capitalize;
        color: var(--dark-headings);
        margin-bottom: 12px;
        margin-top: 0;
    }
    .testimonials--Subheader{
        font-weight: 500;
        font-size: 18px;
        line-height: 145%;
        letter-spacing: 0%;
        color: var(--dark-paragraphs);        
    }

    .slider-shell{
        padding-right: 20px;
        width: 80%;
    }
    .testimonials-carousel--container{
        padding-left: 24px;
    }
    .testimonial-card{
        background-color: var(--light-headings);
        padding: 32px;
        border-radius: 16px;
    }
    .image-cont{
        margin-bottom: 48px;
    }
    .testimony-text{
        font-weight: 500;
        font-size: 18px;
        line-height: 145%;
        letter-spacing: 0%;
        margin-bottom: 24px;
    }
    .profile-container{
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    .profile-image{
        border-radius: 100%;
        overflow: hidden;
    }
    .profile-data{
        width: 100%;
    }
    .profile-name{
        margin-top: 0;
        font-weight: 500;
        font-size: 16px;
        line-height: 120%;
        letter-spacing: 5%;
        text-transform: uppercase;
        margin-bottom: 4px;
    }
    .profile-description{
        font-weight: 500;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 0%;
        color: var(--subtle-text);
    }

    @media (min-width: 750px) {
        padding: 80px 0;
        border-top: 1px solid var(--subtle-borders);
        border-bottom: 1px solid var(--subtle-borders);


        .testimonials--header{
            font-size: 40px;
            margin-bottom: 16px;
        }

        .slider-shell{
            padding-right: 20px;
            width: 33.33%;
        }
        .profile-data{
            width: auto;
        }
    }
}







/* ====== Contact Form with images Styles ===== */
.contact-form-with-image{
    .contact{
        display: flex;
        max-width: 1440px;
        padding-left: 24px;
        padding-right: 24px;
        gap: 40px;
        align-items: center;
        flex-direction: column;
    }
    .contact-form-column{
        max-width: 534px;
    }
    .image-banner-column{
        flex: 1;
    }
    .title{
        font-weight: 500;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0%;
        text-transform: capitalize;
        margin-bottom: 12px;
    }
    .subheading{
        font-weight: 500;
        font-size: 16.5px;
        line-height: 145%;
        color: var(--dark-paragraphs);
        margin-bottom: 40px;

        p{
            margin: 0;
        }
    }
    .field{
        &::after{
            border-color: var(--subtle-borders);
        }
    }
    .field__input{
        color: var(--black-paragraphs);
        padding-left: 12px;

        font-weight: 500;
        font-size: 16.5px;
        line-height: 145%;
        letter-spacing: 0%;

        &:focus~.field__label{
            left: 12px;
        }
    }
    select.field__input{
        padding-top: .8rem;
        padding-left: 12px;
    }
    .field__label{
        left: 12px;
        font-weight: 500;
        font-size: 16.5px;
        line-height: 145%;
        letter-spacing: 0%;
    }
    span.chevron-icon {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        height: 25px;
    }

    .responsive-image{
        aspect-ratio: 392/341;
        border-radius: 9px;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    @media (min-width: 1100px) {
        .contact{
            padding-left: 64px;
            padding-right: 64px;
            gap: 80px;
            flex-direction: row;
        }
        .title{
            font-size: 36px;
        }
    }
}



/* ===== Contact Form with images v2 Styles ====*/
.contact-form-with-image-v2{
    .contact{
        padding-left: 0;
        padding-right: 0;
        justify-content: space-between;
        align-items: normal;
        gap: unset;
    }

    .contact-form-column {
        padding: 1em 65px 2em;
        max-width: unset;
        flex: 50%;
    }

    .contact__button button[type=submit] {
        width: 100%;
    }

    .image-banner-column {
        flex: 50%;
    }

    .responsive-image {
        border-radius: 0;
    }

    @media (min-width: 1100px) {
        .contact{
            padding-left: 0;
            padding-right: 0;
        }
    }
}


/* ====== Footer Styles ===== */
.footer-perks{
    .footer-perks--main{
        background: black;
        color: #fff;
        padding: 20px 24px;
    }
    .footer-perks--wrapper{
        max-width: 949px;
        margin: 0 auto;
    }
    .footer-perks-flex{
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .perks-items{
        display: flex;
        gap: 6px;
        align-items: center;

        span{
            height: 24px;
        }
    }

    @media (max-width: 749px) {
        .perks-items{
            width: 47%;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }
    @media (min-width: 750px) {
        .footer-perks-flex{
            justify-content: space-between;
        }
        
    }
}

.new-footer-class{
    .footer__content-top{
        padding: 0 24px;
    }
    .footer__logo {
        width: 156px;
        height: auto;
        margin-bottom: 48px;
    }
    .footer__blocks-wrapper{
        gap: 40px;
    }
    .footer-block{
        max-width: 100%;
    }
    .footer-block__heading{
        font-weight: 500;
        font-size: 16.5px;
        line-height: 145%;
    }

    .footer-block__first-columns{
        flex: 1;
        margin-bottom: 40px;
    }
    .footer-block__newsletter{

        .footer-block__heading{
            text-align: left;
            margin-bottom: 16px;
        }
    }
    .newsletter-form__field-wrapper{
        max-width: 100%;
        .field{
            max-width: 400px;
            max-width: 100%;
            width: 100%;

            &::after, &::before{
                content: none;
            }
        }

        .field__input{
            width: 100%;
            background-color: #FCFCFC;
            border: 0;
            margin: 0;
            border-radius: 32px;
            height: 50px;
            padding-right: 153px;
        }

        .button{
            position: absolute;
            right: 7px;
            padding: 8px 16px;
            top: 50%;
            transform: translateY(-50%);
        }
        .newsletter-form__message{
            justify-content: flex-start;
        }
    }
    .footer-block__second-columns{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;

        .footer-block__heading{
            font-weight: 500;
            font-size: 12px;
            line-height: 120%;
            letter-spacing: 5%;
            text-transform: uppercase;
            color: var(--dark-headings);
            margin-bottom: 16px;
        }
        .footer-block__details-content .list-menu__item--link{
            font-weight: 500;
            font-size: 16.5px;
            line-height: 145%;
            padding: 0;
            text-decoration: none;
            padding-bottom: 12px;

            &:hover{
                text-decoration: underline;
            }
        }
    }

    .footer-block__details-content{
        margin-bottom: 0;
    }

    .footer__content-bottom{
        padding-top: 40px;
    }
    .footer__content-bottom-wrapper{
        padding: 0 24px;
        gap: 40px;
    }
    .footer__copyright{
        text-align: left;
        display: flex;
        gap: 24px;
        flex-direction: column;
        margin-top: 0;
    }
    .copyright-message{
        font-size: 16.5px;
        line-height: 145%;
    }
    .new-footer__list-social{
        gap: 16px;
    }
    .list-social__link{
        padding: 0;
    }
    @media (min-width: 750px) {
        .footer-block__first-columns{
            margin-right: auto;
        }


        .footer-block__second-columns{
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        .footer__logo {
            margin-bottom: 50px;
        }
        .footer__blocks-wrapper{
            gap: 40px;
        }
        .footer-block{
            max-width: 200px;
            width: 100%;
        }
        .footer-block__heading{
            font-size: 16px;
            line-height: 140%;
        }
        .newsletter-form__field-wrapper{
            .field{
                max-width: 400px;
            }
        }
        
        .footer__content-bottom-wrapper{
            justify-content: space-between;
            align-items: center;
        }
        .footer__copyright{
            flex-direction: row;
            align-items: center;
        }

    }

    @media (max-width:749px) {
        .footer__content-bottom-wrapper{
            justify-content: flex-start;
        }   
        .footer-block.grid__item{
            margin: 0;

            &:first-child{
                grid-column: span 2;
            }
        }
    }
}
/* ====== Custom image with text style ====== */

.custom-image-with-text {
    background-color: var(--dark-gray-bg);

    .global-media-settings {
        border: none;
    }
    
    .image-with-text__heading {
        p {
            margin: 0;
        }
    }

    @media screen and (max-width: 749px) {
        .image-with-text__grid.grid {
            flex-direction: column-reverse;
        }
    }
    @media screen and (min-width: 750px) {
        .image-with-text__content {
            padding: 6rem 5rem 7rem;
        }
    }
}


/*================= Rich Text Overrides ============== */

.rich-text__text {
  p > strong {
    color: var(--dark-headings);
    font-size: medium;
  }

  p {
    color: var(--dark-paragraphs);
    font-size: small;
  } 
}

/* ====== Custom image with text style ====== */
.ecoflow-collection-carousel{
    *:focus-visible{
        outline: none;
        outline-offset: unset;
        box-shadow: none;
    }
    .collection__title{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 40px;
    }
    .heading-content-left{
        flex-shrink: 1;
        max-width: 900px;
    }
    .heading-content-right{
        flex-shrink: 0;
    }
    .title{
        font-weight: 500;
        font-size: 28px;
        line-height: 120%;
        text-transform: capitalize;
        margin: 0;
    }
    .slider-arrows-container{
        cursor: pointer;
        span{
            display: inline-block;
            line-height: 0;
        }

        .disabled{
            opacity: .5;
            cursor: default;
        }
    }
    .slider-content-container{
        padding-right: 0;
    }
    p{
        margin: 0;
    }

    .card--standard .card__inner{
        border-radius: 16px;
    }
    .card__heading{
        font-weight: 700;
        font-size: 18px;
        line-height: 140%;
        margin-bottom: 12px;
        color: var(--dark-headings);
    }
    .price{
        margin: 0;
        margin-bottom: 16px;
        span{
            font-weight: 500;
            font-size: 16.5px;
            line-height: 145%;
            color: var(--dark-paragraphs);
        }
    }
    .product-description{
        font-weight: 500;
        font-size: 16.5px;
        line-height: 145%;
        color: var(--dark-paragraphs);
    }   

    .button-containers{
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        
        .button{
            width: 100%;
        }
    }
    .button--secondary{
        border-color: var(--subtle-borders);
    }
    .flickity-product-container{
        display: block;
    }

    .flickity-resize .grid__item{
        min-height: 100%;
        display: flex;
        flex-direction: column;

        .card-wrapper.product-card-wrapper{
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card--media{
            flex: 1;
        }
    }
    .grid__item{
        max-width: 100%;
        width: 80%;
        padding-right: 20px;
        
    }

    @media (min-width: 750px) {
        .grid__item{
            width: 33.333%;
            padding-right: 40px;
        }


        .button-containers{
            .button{
                width: auto;
            }
        }
    }
}


/* ====== Collection image banner ========= */
.collection-image-banner{
    .widen-max-width{
        .banner__box{
            max-width: 868px;
            width: 100%;
        }
        .banner__text.rte.body{
            max-width: 100%;
        }
    }
}
@media screen and (max-width: 749px) {
    /* ======== mobile =========== */
  
    .collection-image-media.desktop {
      display: none
    }
    .collection-image-media.mobile {
      display: block
    }
  
    .collection-image-banner .banner__box {
          margin-top: -5rem;
      }
  
  
    .collection-image-banner {
      .long-height-on-mobile {
        min-height: 44.5rem !important;
        
        /* Commented out by Rengie because it makes mobile look off*/
        /*.banner__box {
          margin-top: -15rem;
        }*/
      }
  
    }
  }
  
  @media screen and (min-width: 750px) {
    .collection-image-media {
      &.desktop {
        display: block;
      }
      &.mobile {
        display: none
      }
    }
  
    .collection-image-banner .banner__text.rte.body{
        max-width: 45rem;
    }
  }
  
  .collection-image-media.desktop {
    background: linear-gradient(90deg, #181C18 0%, rgba(24, 28, 24, 0) 100%);
  }
  .collection-image-media.desktop img {
    z-index: -1;
  } 


  /* ===== Office information section ======= */

  .office-details-container {
    display: flex;
    width: 100%;
    padding: 2em 5rem;

    .office-title {
        font-weight: bold;
    }

    & * {
        flex: 1;
    }

    p, h3, h2 {
      margin: 0;
    }

    .office-detail-title {
        margin: 1em 0 0;
    }

    .office-detail-text {
        opacity: 0.5;
        font-size: 16px;
    }

    @media screen and (max-width: 749px) {
        flex-direction: column;
        padding: 2em;

        .office-detail-title {
            margin: 0;
        }

        .office-title {
            margin-bottom: .5em;
        }

        .office-detail-text {
            margin: 0.25em 0;
        }

        .office-detail-item {
            display: flex;
            margin: 1em 0;
            align-items: flex-start;

            .office-detail {
                flex: 2;
            }

            .office-icon {
                flex: 0.5;
            }
        }
    }
  }


  /* ===== multicolumn override ======= */
.multicolumn-eco{
    .title{
        font-weight: 500;
        font-size: 28px;
        line-height: 120%;
        text-transform: capitalize;
    }
    .media{
        border-radius: 16px;
    }
    .inline-richtext{
        font-weight: 500;
        font-size: 24px;
        line-height: 120%;
        text-transform: capitalize;

    }
    .rte{
        font-weight: 500;
        font-size: 18px;
        line-height: 145%;
        letter-spacing: 0%;
        color: var(--dark-paragraphs);
    }
    @media (min-width:750px) {
        .title{
            font-size: 36px;
            line-height: 120%;
        }
        .inline-richtext{
            font-size: 28px;
        }
    }
}

.multicolumn-icons{
    .media{
        max-width: 56px;
        height: 56px;
        padding: 0;
        margin: 0 auto;
    }
    .multicolumn-list:not(.slider) .center .multicolumn-card__info{
        padding-top: 16px;
    }
    .inline-richtext{
        font-weight: 500;
        font-size: 36px;
        line-height: 120%;
        text-align: center;
        text-transform: capitalize;
    }
    .rte{
        margin-top: 4px;
        color: var(--light-headings);
        font-weight: 700;
        font-size: 20px;
        line-height: 120%;
        text-align: center;
    }
}



/* ===== Featured Banner Special section ======= */
.featured-banner-special{
    background-color: var(--dark-gray-bg);

    .content-heading, p{
        margin: 0;
    }
    .page-width{
        padding: 60px 24px;
    }
    .header-text-container{
        margin-bottom: 32px;
    }
    .heading-text-content{
        margin-bottom: 32px;
    }
    
    .main-title{
        font-weight: 500;
        font-size: 28px;
        line-height: 120%;
        text-transform: capitalize;
        margin-bottom: 16px;
        margin-top: 0;
    }
    .main-description{
        font-weight: 500;
        font-size: 16.5px;
        line-height: 145%;
        color: var(--dark-paragraphs);
        margin: 0;
    }
    .button-container {
        flex-shrink: 0;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    .button{
        width: 100%;
    }

    .image-banner--body{
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }
    .image-banner-container{
        aspect-ratio: 392 / 520;
        overflow: hidden;

        &::after{
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(0deg, #181C18 0%, rgba(24, 28, 24, 0) 100%);
        }
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }

    .banner-inner-contents-body{
        position: absolute;
        bottom: 50px;
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    .inner-content-container {
        display: flex;
        align-items: center;
        padding: 0 24px;

        br{
            display: none;
        }
        .icon-container{
            line-height: normal;
            font-size: 0;
        }
        .text-container{
            margin-left: 16px;
        }
        .content-heading{
            color: var(--light-headings);
            font-weight: 500;
            font-size: 28px;
            line-height: 120%;
            text-transform: uppercase;
        }
        .content-text{
            color: var(--light-headings);
            font-family: var(--font-heading-family);
            font-weight: 500;
            font-size: 12px;
            line-height: 120%;
            letter-spacing: 5%;
            text-transform: uppercase;
        }

    }

    .image-banner--body:has(.compress-contents){

        @media (max-width:749px) {
            .image-banner-container{
                aspect-ratio: initial;
                line-height: 0;
                position: relative;
            }
        }
    }

    .compress-contents{
        gap: 20px;
        bottom: 20px;
        .inner-content-container{

            .content-text{
                font-weight: 500;
                font-size: 16px;
                line-height: 140%;
                letter-spacing: 0%;
                text-transform: none;
                font-family: var(--font-body-family);
            }
        }

        @media (max-width: 749px) {
            background-color: var(--dark-headings);
            bottom: 0;  
            position: relative;
            padding: 20px 0;
        }
    }
    @media (min-width: 750px) {
        .header-text-container{
            margin-bottom: 40px;
        }
        .header-text-container{
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 60px;
        }
        .heading-text-content{
            max-width: 825px;
            flex-shrink: 1;
            margin-bottom: 0;
        }
        .button-container{
            flex-shrink: 0;
        }

        .main-title{
            font-size: 36px;
        
        }
        .button{
            width: auto;
        }
        
        .image-banner-container{
            aspect-ratio: 1312 / 516;

            &::after{
                height: 162px;
            }
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        .banner-inner-contents-body{
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }
        .inner-content-container {
            display: flex;
            align-items: center;

            br{
                display: inline;
            }
            .icon-container{
                line-height: normal;
                font-size: 0;
            }

        }
        .compress-contents{
            gap: 10px;
            bottom: 48px;
            .inner-content-container{
                padding: 0;
                max-width: 333px;
            }
        }
    }

}