/* @media only screen and (min-width: 1600px){
    .container-limit{
        max-width: 1600px;
        width: 100%;
    }
} */


@media only screen and (max-width: 1100px) {
    .nav {
        position: absolute;
        left: -30px;
        width: calc(100% + 60px);
        top: 100%;
        background-color: #fff;
        /* background: #f8f8f8; */
        height: calc(var(--windowHeight) - 90px);
        opacity: 0;
        pointer-events: none;
        -webkit-transform: translateY(-30px);
            -ms-transform: translateY(-30px);
                transform: translateY(-30px);
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }

    .change-language-content{
        display: none;
    }

    .change-language-content-mobile{
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 30px;
        gap: 20px;
    }

    .change-language-content-mobile span a,
    .change-language-content-mobile span{
        font-weight: 500;
        font-size: 21px;
        color: #1B1D24;
    }
    
    .change-language-content-mobile span a:hover{
        color: #9F9F9F;
        cursor: pointer;
    }
    
    .change-language-content-mobile span.active{
        color: #7B289B;
        
    }

    .change-language-content-mobile .divider {
        width: 1px;
        height: 25px; 
        background-color: #000;
    }
    .change-language-content-mobile .divider:last-child {
        display: none;
    }

    .menu-opened .nav {
        opacity: 1;
        pointer-events: all;
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }

    .logo a svg:first-child {
        display: none;
    }
    .logo a svg:last-child {
        display: inherit;
    }

    .logo {
        min-width: auto;
        height: auto;
        position: relative;
        z-index: 99999;
    }
    .header .container-holder {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: space-between;
    }

 
    /* .header .container-holder .cta {
        display: none;
    } */
    .nav ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-line-pack: start;
            align-content: flex-start;
        padding: 30px;
    }
    .nav ul li {
        width: 100%;
        padding: 0;
        /* border-bottom: 1px solid rgba(113, 49, 150, .2); */
        position: relative;
    }
    .nav ul li:last-child {
        border: 0;
    }

    
    .nav ul li a {
        height: 70px;
        line-height: 70px;
        text-align: left;
        font-size: 21px;
    }
    .nav ul li.is-current a::before {
        content: none;
    }

    .nav ul li ul {
        position: relative;
        left: auto;
        top: auto;
        right: auto;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        bottom: auto;
        width: 100%;
        opacity: 1;
        background: transparent;
        border-radius: 0;
        -webkit-box-shadow: none;
                box-shadow: none;
        padding-top: 0;
        padding-bottom: 0;
        height: 0;
        overflow: hidden;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }
	.nav ul li:not(.hovered) ul{
		visibility:hidden;
		opacity: 0;
		height: 0!important;
	}
    .nav ul li ul li {
        border-bottom: 0;
        margin-bottom: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 10px;
    }
    .nav ul li ul li:last-child {
        padding-bottom: 30px;
    }
    .nav ul li ul li a {
        font-size: 20px;
        font-weight: 400;
    }
    .nav ul li ul li a svg {
        margin-top: 0;
    }
    .nav ul li ul li:first-child a {
        color: var(--paragraph);
        font-weight: 400;
        font-size: 20px;
    }

    .nav ul li ul li a, .nav ul li.hovered ul li a{
        font-weight: 400;
    }

    .openNestedBtn {
        cursor: pointer;
        position: absolute;
        right: -30px;
        top: 0;
        height: 70px;
        width: calc(100% + 60px);
        border: 0;
        background-color: transparent;
        outline: none;
        padding: 0;
        -webkit-box-shadow: none;
                box-shadow: none;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }

    .openNestedBtn svg {
        height: 10px;
        position: absolute;
        right: 32px;
        top: 50%;
        -webkit-transform: translateY(-50%) rotate(-180deg);
            -ms-transform: translateY(-50%) rotate(-180deg);
                transform: translateY(-50%) rotate(-180deg);
    }
    
    .nav ul li ul {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
        pointer-events: unset;
        -webkit-transition: .5s height;
        -o-transition: .5s height;
        transition: .5s height;
    }
    .nav ul li:hover ul {
        pointer-events: unset;
    }

    .yell-button-content{
        display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    }

    .burger-btn {
        display: inherit;
        width: 47px; 
        height: 47px;
        position: relative;
        top: 0;
        background-color: transparent;
        border: none;
        padding: 0;
        cursor: pointer;
    }
    
    .burger-btn .burger-holder {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #F3F3F4;
        border-radius: 50%;
    }
    
    .burger-btn .burger-holder span {
        display: block;
        background-color: #292D32;
        width: 22px; 
        height: 2px; 
        border-radius: 6px;
        margin: 2px 0; 
        transition: 0.5s ease;
    }
    
    .burger-btn .burger-holder span:first-child {
        margin-top: 0;
    }
    
    .burger-btn .burger-holder span:last-child {
        margin-bottom: 0;
    }
    
    .burger-btn.active .burger-holder span:first-child {
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    
    .burger-btn.active .burger-holder span:last-child {
        bottom: 0;
        right: 50%;
        -webkit-transform: translateX(50%);
            -ms-transform: translateX(50%);
                transform: translateX(50%);
    }
    
    .burger-btn.active {
        background-color: rgba(113, 49, 150, 0.1); 
        border-radius: 50%; 
        padding: 10px;
        width: 50px; 
        height: 50px;
    }

    .menu-opened .burger-btn span span:first-child {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
            -ms-transform: translate(-50%, -50%) rotate(45deg);
                transform: translate(-50%, -50%) rotate(45deg);
        background: #292D32;
        position: absolute;
    }
    .menu-opened .burger-btn span span:last-child {
        bottom: 50%;
        right: 50%;
        -webkit-transform: translate(50%, 50%) rotate(-45deg);
            -ms-transform: translate(50%, 50%) rotate(-45deg);
                transform: translate(50%, 50%) rotate(-45deg);
        background: #292D32;
        position: absolute;
    }
    .language-container{
        gap: 10px;
    }
    
/* 
    .burger-btn {
        display: inherit;
        width: 90px;
        height: 90px;
        right: -28px;
        position: absolute;
        top: 0;
        background-color: transparent;
        border: 0;
        padding: 0;
    }
    .burger-btn > span {
        width: 24px;
        height: 16px;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%)
    }
    .burger-btn span span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 6px;
        position: absolute;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
        background-color: var(--paragraph);
    }
    .burger-btn span span:first-child {
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }
    .burger-btn span span:nth-child(2) {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
    .burger-btn span span:last-child {
        bottom: 0;
        right: 50%;
        -webkit-transform: translateX(50%);
            -ms-transform: translateX(50%);
                transform: translateX(50%);
    } */

    .modal p {
        padding: 0;
    }

    /* .menu-opened .burger-btn span span:first-child {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(45deg);
            -ms-transform: translate(-50%, -50%) rotate(45deg);
                transform: translate(-50%, -50%) rotate(45deg);
        background: var(--main);
    }
    .menu-opened .burger-btn span span:nth-child(2) {
        opacity: 0;
        left: 100%;
        background: var(--main);
    }
    .menu-opened .burger-btn span span:last-child {
        bottom: 50%;
        right: 50%;
        -webkit-transform: translate(50%, 50%) rotate(-45deg);
            -ms-transform: translate(50%, 50%) rotate(-45deg);
                transform: translate(50%, 50%) rotate(-45deg);
        background: var(--main);
    } */
    .footer .footer-nav .column {
        min-width: 300px;
        margin-bottom: 30px;
    }
    .footer .footer-nav .column:last-child {
        text-align: left;
    }
    .section-wrapper[interface-type="feature-tabs"] .tabs-holder .tab-header button {
        margin-bottom: 15px;
    }
    .openNestedBtn {
        display: inherit;
    }

    .nav .qr-code-btn {
        display: inherit;
        width: calc(100% - 60px);
        margin-left: 30px;
        max-width: 200px;
        margin-bottom: 60px;
    }
    .section-wrapper[interface-type="banner"][has-background="true"][aligned="bottom"] .container-holder {
        padding-bottom: 50px;
        min-height: 400px;
    }

    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }
    .menu-opened .header{
        z-index: 999999;
    }
    .menu-opened .header .section-wrapper{
        z-index: 10;
    } 
}
/* @media only screen and (max-width: 1200px) {
    .section-wrapper[interface-type="faq-category"] .faq-category-wrapper{
        gap: 15px;
}
} */




@media only screen and (max-width: 1338px) {
    .footer {
        padding-bottom: 55px;
    }

}
@media only screen and (max-width: 767px) {
  
    .section-wrapper.section-about-us[interface-type="dark-content"][padding="bottom"] .container-holder{
        padding: 50px 0;
    }
    .section-wrapper.section-about-us[interface-type="dark-content"] .container-holder.bgDark{
        display: flex;
        flex-direction: column;
    }
    .section-wrapper.section-about-us[interface-type="dark-content"][padding="bottom"] .left-wrapper{
        width: 100%;
        padding: 0 50px;
    }

    .section-wrapper.section-about-us[interface-type="dark-content"][padding="bottom"] .left-wrapper .about-us-title{
        font-size: 26px;
    }
    .section-wrapper.section-about-us[interface-type="dark-content"] .container-holder.bgDark .right-wrapper{
        width: 100%;
        padding: 50px 50px 0 50px;
    }
    .section-wrapper.offerings-values-wrapper[interface-type="content"] .container-holder .offer-item{
        grid-template-columns: repeat(1, 1fr);
    }

    .section-wrapper.offerings-values-wrapper[interface-type="content"] .container-holder h2{
        text-align: left;
    }
    .section-wrapper.section-informations[interface-type="section-informations"] .container-holder .title-informations h1 {
        max-width: 100%;
        font-size: 26px;
    }
  
    .section-wrapper.section-informations[interface-type="section-informations"] .container-holder .info-wrapper {
        gap: 20px 0;
    }
  
    .section-wrapper.section-informations[interface-type="section-informations"] .container-holder .info-wrapper .info-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .page-numbers a svg{
        height: 15px;
    }
    .page-numbers a,
     .page-numbers span{
        font-size: 16px;
        width: 40px;
        height: 40px;
    }

  

    .modal .qr-code #qrcode img,
    .modal .qr-code #qrcode img,.modal .qr-code #qrcode canvas{
        max-width: 180px !important;
        width: 180px !important;
        max-height: 180px !important;
        height: 180px !important;
        /* max-width: 200px;
        max-height: 450px !important;
        height: min-content; */
    }
    /* .table-container {
        font-size: 14px;
    }
    .table-container thead td, 
    .table-container tbody td {
        padding: 10px; 
    }
    .table-wrapper {
        padding-bottom: 10px; 
    } */
    .section-wrapper[interface-type="banner-text-with-image"][has-background="true"] .container {
        padding: 0;
    }
    .section-wrapper[interface-type="banner-text-with-image"][has-background="true"] .container-holder {
        display: block;
        padding: 0;
    }
    
    .section-wrapper[interface-type="banner-text-with-image"][has-background="true"] .left-wrapper {
        width: 100%;
        /* padding-right: 0; */
        margin-bottom: 20px;
        margin-top: 20px;
        padding: 30px;
    }

    .section-wrapper[interface-type="banner-text-with-image"][has-background="true"] .right-wrapper {
        position: relative; 
        width: 100%; 
        height: auto;
        justify-content: center;
    }

    .section-wrapper[interface-type="banner-text-with-image"][has-background="true"] .right-wrapper img {
        width: 100%; 
        height: auto;
    }

    .section-wrapper[interface-type="banner-text-with-image"][has-background="true"] img{
        max-height: 100%;
        max-width: 100%;
    }
    .cta .btn{
       min-width: fit-content;
       font-size: 15px;
       font-weight: 400;
       padding: 0 25px;
    }

    .section-wrapper[interface-type="image-boxes"] .image-item {
        flex: 1 1 calc(50% - 20px); 
        max-width: calc(50% - 20px);
      }
      .section-wrapper[interface-type="image-boxes"] .image-item img{
        height: 200px;
      }
      .section-wrapper[interface-type="four-side"] .security-group .box-number{
        margin-top: 0;
      }
    .section-wrapper[interface-type="four-side"] .security-groups-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    h1.main-title{
        font-size: 32px;
    }
    .section-wrapper[interface-type="main-banner"][has-background="true"] .container-fluid{
        background-color: rgba(27, 29, 36, 0.75);
    }
    .section-wrapper.section-free-trial[interface-type="dark-content"] .right-wrapper img{
        display: none;
    }

    .section-wrapper[interface-type="content"] .container-holder.container-holder-images .right-wrapper{
        padding-right: 0;
    }

    .section-wrapper[interface-type="content"] .container-holder.container-holder-images .right-wrapper img{
        height: auto;
    }
    .section-wrapper[interface-type="policy"] .privacy-links-desktop{
        display: none;
    }
    .section-wrapper[interface-type="policy"] .privacy-links-mobile{
        display: block;
    }

    .section-wrapper[interface-type="policy"] .privacy-links {
        width: 100%;
        height: 100%;
        position: static;
        border-radius: inherit;
        padding: 40px 20px 20px 20px;
    }

    .section-wrapper[interface-type="policy"] .privacy-links-content{
        position: static;
        top: 0;
    }

    .section-container-privacy .section-number{
        margin-bottom: 20px;
    }

    .section-wrapper[interface-type="policy"] .sidebar{
        width: 100%;
    }

    .section-wrapper[interface-type="policy"] .container-holder{
        flex-direction: column;
        padding: 0 0 50px 0;
    }

    .section-wrapper[interface-type="policy"] .policyTabs{
        width: 100%;
    }

    .section-wrapper[interface-type="content"] .container-holder.container-holder-images.bgLightGray{
        flex-direction: column;
        padding: 0 30px;
    }

    .section-wrapper[interface-type="content"] .container-holder.container-holder-images.bgLightGray .inside-holder {
        display: flex;
        justify-content: center;
    }

    .section-wrapper[interface-type="content"] .container-holder.container-holder-images.bgLightGray p{
        width: 100%;
    }
    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark p{
        width: 100%;
    }

    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark{
        display: flex;
        flex-direction: column-reverse;
        padding: 30px 30px 0 30px;
        border: none;
    }

    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark .left-wrapper img{
        height: auto;
    }

    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark .left-wrapper{
        margin-bottom: 0;
    }

    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark .inside-holder{
        display: flex;
        justify-content: center;
    }

    .section-wrapper[interface-type="main-banner"][has-background="true"] video{
        max-width: unset;
        max-height: unset;
    }

    .section-wrapper[interface-type="main-banner"][has-background="true"] img{
        max-width: unset;
        max-height: unset;
        object-fit: cover;
        object-position: center;
    }

    .section-wrapper[interface-type="four-side"] .container-full-box .right-wrapper img{
        height: auto;
    }

    .section-wrapper.section-component[interface-type="content"][content-align="right"] .container-holder{
        flex-direction: column;
    }

    .section-wrapper.section-component[interface-type="content"][content-align="right"] .container-holder .left-wrapper{
       margin-top: 0;
    }

    .section-wrapper[interface-type="four-side"] .container-full-box .inside-holder.long-content{
        padding: 50px 30px;
    }

    .section-wrapper.section-component[interface-type="content"][content-align="right"] .container-holder .right-wrapper{
       margin-top: 30px;
    }

    .section-wrapper[interface-type="four-side"] .security-group{
        min-height: 280px;
    }

    .section-wrapper[interface-type="four-side"] .security-group{
        width: 100%;
        padding: 30px;
        max-width: 100%;
    }

    .section-wrapper.section-free-trial[interface-type="dark-content"] h3.free-trial-title{
        text-align: center;
        font-size: 22px;
        line-height: 28px;
    }

    .section-wrapper.section-free-trial[interface-type="dark-content"] .container-holder.bgDark{
        padding: 30px;
    }

    .section-wrapper.section-free-trial[interface-type="dark-content"] .container-holder.bgDark .left-wrapper{
        padding-left: 0;
    }

    .section-wrapper.section-free-trial[interface-type="dark-content"] .container-holder.bgDark .inside-holder{
        display: flex;
        justify-content: center;
    }

    .section-wrapper.section-free-trial[interface-type="dark-content"] .container-btns{
        justify-content: center;
    }
    /* .section-wrapper.section-free-trial[interface-type="dark-content"] .container-btns a.btn.btn-explore:last-child{
       margin-top: 10px;
    } */
    .modal[target="qr-code"] p {
        padding: 0;
    }

    .openNestedBtn {
        display: unset;
    }
    .footer .footer-nav .column {
        min-width: 170px;
        margin-bottom: 30px;
    }
    .right-wrapper {
        width: 100%;
        padding-left: 0;
    }
    .left-wrapper {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        -ms-flex-line-pack: center;
            align-content: center;
    }

    .section-wrapper[interface-type="landing-header"] .right-wrapper {
        display: none;
    }
    .section-wrapper[interface-type="landing-header"] video {
        -o-object-fit: cover;
           object-fit: cover;
        max-height: unset;
        max-width: unset;
    }

    .section-wrapper[interface-type="landing-header"] .left-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-line-pack: end;
            align-content: flex-end;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin-bottom: 80px;
    }

    .section-wrapper[interface-type="banner"][has-background="true"][aligned="bottom"] .container-holder {
        padding-top: 0;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
        padding-bottom: 50px;
    }

    .section-wrapper[interface-type="two-side"] .boxes-holder .box {
        width: 100%;
        background: transparent;
        border-radius: 0;
        padding: 0;
        margin-bottom: 80px;
    }

    .section-wrapper[interface-type="two-side"] .boxes-holder .box:last-child {
        margin-bottom: 0;
    }

    .section-wrapper[interface-type="two-side"] .boxes-holder .box .box-content {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        width: 100%;
        background: transparent;
        height: auto;
        opacity: 1;
    }

    .section-wrapper[interface-type="two-side"] .boxes-holder .box img {
        position: relative;
        top: auto;
        left: auto;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        width: 100%;
        background: transparent;
        height: auto;
    }

    .section-wrapper .inside-holder {
        text-align: left;
        max-width: 100%;
    }

    .section-wrapper[interface-type="content-circle"] .right-wrapper svg {
        display: none;
    }

    .section-wrapper[interface-type="media-box"] .media-box {
        width: 100%;
    }

    .section-wrapper[interface-type="faq-category"] .faq-category-box {
        width: 100%;
    }

    /* .section-wrapper[interface-type="faq-category"] .faq-category-box:nth-last-child(-n+3) {
        margin-bottom: 30px;
    } */

    .section-wrapper[interface-type="faq-category"] .faq-category-box:last-child {
        margin-bottom: 0;
    }

    .section-wrapper[interface-type="fees"] .fees-pre-text {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .section-wrapper[interface-type="fees"] .fees-category .fees-content .fees-row {
        padding: 20px 0;
    }

    .section-wrapper[interface-type="fees"] .fees-category .fees-content .fees-row p {
        width: 100%;
        margin-bottom: 10px;
    }
    .section-wrapper[interface-type="fees"] .fees-category .fees-content .fees-row p:last-child {
        margin-bottom: 0;
    }

    .section-wrapper[interface-type="security"] .security-group {
        width: 100%;
        padding: 0;
        margin-bottom: 50px;
    }

    .section-wrapper[interface-type="fees"] .fees-category .fees-header {
        padding: 30px;
        width: calc(100% + 60px);
        -webkit-transform: translateX(-30px);
            -ms-transform: translateX(-30px);
                transform: translateX(-30px);
    }

    .sidebar {
        width: 100%;
        position: relative;
        top: auto;
        left: auto;
        margin-top: 0;
        margin-bottom: 50px;
    }
    .policyTabsBtn {
        width: 100%;
        position: relative;
        top: auto;
        left: auto;
        margin-top: 0;
    }

    .policyTabs {
        width: 100%;
    }

    .section-wrapper[interface-type="join-yell"] .join-box-wrapper .join-box-item {
        width: 100%;
    }

    .section-wrapper[interface-type="join-yell"] .join-box-wrapper .join-box-item:nth-last-child(-n+2) {
        margin-bottom: 15px;
    }

    .section-wrapper[interface-type="join-yell"] .join-box-wrapper .join-box-item:last-child {
        margin-bottom: 0;
    }

    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        display: none;
    }
    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item.no-job {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .footer {
        text-align: center;
    }
    .footer .footer-banner {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .footer .footer-nav .column {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .footer .footer-nav .column:last-child {
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
        margin-top: 50px;
    }

    .footer .footer-nav .column .social ul {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .footer .footer-copyright {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
    .footer .footer-copyright p {
        margin-top: 10px;
    }

    .footer .footer-nav .column:last-child a:last-child svg {
        display: block;
        margin: 0 auto;
    }

    .footer .footer-nav .column h3 {
        margin-bottom: 0;
        line-height: 34px;
    }

    .section-wrapper[interface-type="feature-tabs"] .tabs-holder .tab-content .tab-item .left-wrapper {
        margin-bottom: 0;
        width: 100%;
    }
    .section-wrapper[interface-type="feature-tabs"] .tabs-holder .tab-content .tab-item .right-wrapper {
        width: 100%;
    }

    .section-wrapper[interface-type="get-in-touch"] .form-wrapper p {
        padding: 15px 0;
    }
    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item h4 {
        padding-left: 0;
        margin-bottom: 15px;
    }
    .section-wrapper[interface-type="get-in-touch"] .form-wrapper form {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .section-wrapper[interface-type="banner-text-with-image"][has-background="true"] h1.banner-text-with-image-title{
        font-size: 38px;
    }

    h1 {
        font-size: 33px;
        line-height: 40px;
        margin-bottom: 15px;
        width: 100%;
        font-weight: 500;
    }

    h2 {
        font-size: 32px;
        line-height: 38px;
        font-weight: 500;
        margin-bottom: 15px;
    }
    h1 b {
        font-weight: 500;
    }
    h3 {
        margin-bottom: 15px;
    }
    .section-wrapper[interface-type="landing-header"] h1 {
        font-size: 42px;
        line-height: 48px;
        font-weight: 500;
    }
    .section-wrapper[interface-type="landing-header"] h1 b {
        font-weight: 500;
    }
    .content .btn {
        margin-top: 30px;
    }

    .container {
        padding: 0 30px;
    }

    .container-holder {
        padding: 50px 0;
    }

    .section-wrapper[interface-type="banner"] h1,
    .section-wrapper[interface-type="banner"] h1 {
        font-size: 42px;
        line-height: 48px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .section-wrapper[interface-type="banner"] a {
        margin-top: 30px;
    }
    .section-wrapper[interface-type="banner"][size="small"] h1 {
        font-size: 38px;
        line-height: 46px;
    }

    .content ul {
        margin-top: 0;
    }

    .section-wrapper[interface-type="two-side"] .boxes-holder {
        margin-top: 30px;
    }
    .section-wrapper[interface-type="two-side"] .boxes-holder .box .box-content p {
        margin-bottom: 10px;
    }

    .section-wrapper[interface-type="feature-tabs"] .tabs-holder .tab-content {
        min-height: unset;
    }

    .section-wrapper[interface-type="banner-content"] .full-wrapper .inside-holder {
        text-align: center;
    }
    .section-wrapper[interface-type="two-side"] .boxes-holder .box img {
        margin-top: 30px;
    }

    .section-wrapper[interface-type="faq"] h1 {
        font-size: 28px;
        line-height: 34px;
        text-align: center;
    }

    .section-wrapper[interface-type="faq"] .faq-holder .faq-item .faq-question {
        padding: 15px 20px;
        padding-right: 60px;
    }
    .section-wrapper[interface-type="faq"] .faq-holder .faq-item .faq-question svg {
        right: 20px;
        width: 22px;
        height: 22px;
    }
    .section-wrapper[interface-type="faq"] .faq-holder .faq-item .faq-question h4 {
        font-size: 18px;
        line-height: 24px;
    }

    .section-wrapper[interface-type="faq"] .faq-holder .faq-item .faq-answer .faq-content-answer {
        padding: 15px 20px;
        padding-top: 0;
    }
    .section-wrapper[interface-type="faq"] .faq-holder {
        margin-top: 20px;
    }

    .faq-item ul {
        margin-top: 20px;
    }

    .section-wrapper[interface-type="media-box"] .media-box .media-content {
        padding: 25px;
    }

    .section-wrapper[interface-type="faq"] h4 {
        padding-left: 20px;
        margin-bottom: 0;
    }

    .section-wrapper[interface-type="fees"] .fees-category .fees-content .fees-row p {
        font-weight: 500;
    }

    .policyTabs h1 {
        margin-bottom: 30px;
    }

    .section-wrapper[interface-type="media-box"] .media-box:nth-last-child(-n+3) {
        margin-bottom: 30px;
    }

    .section-wrapper[interface-type="media-box"] .media-box:last-child {
        margin-bottom: 0;
    }

    .section-wrapper[interface-type="join-yell"] .join-box-wrapper {
        margin-top: 20px;
    }
    .section-wrapper[interface-type="join-yell"] .join-box-wrapper .join-box-item h4 {
        line-height: 26px;
    }
    .section-wrapper[interface-type="join-yell"] .join-box-wrapper .join-box-item {
        margin-bottom: 15px;
        padding: 20px;
    }

    .section-wrapper[interface-type="job-list"] .job-list-wrapper {
        margin-top: 20px;
    }

    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item {
        margin-bottom: 15px;
        padding: 20px;
    }
    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item h4 {
        line-height: 26px;
        width: 100%;
        text-align: center;
    }
    .section-wrapper[interface-type="get-in-touch"] .full-wrapper .inside-holder h3 {
        font-size: 28px;
        line-height: 32px;
        font-weight: 500;
        margin-bottom: 30px;
    }
    .section-wrapper[interface-type="get-in-touch"] .form-wrapper textarea {
        height: 150px;
    }
    .section-wrapper[interface-type="get-in-touch"] .form-wrapper p {
        margin: 0;
        text-align: center;
    }
    .section-wrapper[interface-type="get-in-touch"] .form-wrapper a.btn {
        margin-top: 10px;
    }

    .footer h1 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 30px;
        width: 100%;
    }

    .footer .footer-nav .column:last-child a:last-child {
        margin-top: 0;
    }
    .footer .footer-nav .column:last-child {
        margin-top: 20px;
        margin-bottom: 0;
    }

    .section-wrapper[interface-type="security"] .security-group:nth-last-child(-n+2) {
        margin-bottom: 50px;
    }
    .section-wrapper[interface-type="security"] .security-group:last-child {
        margin-bottom: 0;
    }
    
    .section-wrapper[interface-type="content-circle"] .left-wrapper img {
        left: 0;
    }

    .section-wrapper[interface-type="bundle-banner"] .container-holder {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        padding: 50px 0;
        padding-bottom: 0;
    }
    .section-wrapper[interface-type="bundle-banner"] .container-holder .right-wrapper {
        margin-bottom: 20px;
    }
    .section-wrapper[interface-type="bundle-banner"] .container-holder .right-wrapper .inside-holder {
        text-align: center;
    }
    .section-wrapper[interface-type="bundle-banner"] .container-holder .left-wrapper {
        height: 500px;
        margin-bottom: 0;
    }
    .section-wrapper[interface-type="bundle-banner"] .container-holder .left-wrapper img {
        width: 400px;
        max-width: 400px;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%) scale(1.4) !important;
            -ms-transform: translateX(-50%) scale(1.4) !important;
                transform: translateX(-50%) scale(1.4) !important;
        top: 100px;
    }

    .section-wrapper[interface-type="two-side"] .boxes-holder .box:hover .box-content {
        top: auto;
    }

    .dropdown-wrapper {
        height: auto;
        position: relative;
        width: 100%;
        display: block;
        border-radius: 30px;
        background: #fff;
        -webkit-box-shadow: 0 0 21px -12px rgba(0, 0, 0, .3);
                box-shadow: 0 0 21px -12px rgba(0, 0, 0, .3);
        overflow: hidden;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .dropdown-wrapper .dropdown-header {
        position: relative;
        height: auto;
        padding: 20px 30px;
        padding-right: 70px;
    }
    .dropdown-wrapper .dropdown-header span {
        font-size: 18px;
        color: var(--paragraph);
        font-weight: 500;
        text-align: left;
        width: 100%;
        display: block;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }
    .dropdown-wrapper .dropdown-header span.is-current {
        color: var(--main);
    }
    .dropdown-wrapper .dropdown-header svg {
        position: absolute;
        right: 30px;
        top: 50%;
        -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
                transform: translateY(-50%);
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }
    .dropdown-wrapper.clicked .dropdown-header svg {
        -webkit-transform: translateY(-50%) rotate(180deg);
            -ms-transform: translateY(-50%) rotate(180deg);
                transform: translateY(-50%) rotate(180deg);
    }
    .dropdown-wrapper .dropdown-content {
        display: block;
        height: 0;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
        overflow: hidden;
    }
    .dropdown-wrapper .dropdown-content .dropdown-holder {
        float: left;
        width: 100%;
        height: auto;
        padding: 0; 
        top: 0;
        left: 0;
    }
    .dropdown-wrapper .dropdown-content .dropdown-holder button {
        width: 100%;
        display: block;
        padding: 0;
        font-size: 16px;
        color: var(--paragraph);
        font-weight: 500;
        text-align: left;
        width: 100%;
        padding: 10px 30px;
        display: block;
        background-color: transparent;
        outline: none;
        border: 0;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }
    .dropdown-wrapper .dropdown-content .dropdown-holder button.is-current {
        color: var(--main);
    }
    .dropdown-wrapper .dropdown-content .dropdown-holder button:last-child {
        margin-bottom: 10px;
    }
    .section-wrapper[interface-type="feature-tabs"] .tabs-holder .tab-header {
        display: none;
    }
    .section-wrapper[interface-type="feature-tabs"] h1 {
        text-align: center;
    }
    .section-wrapper[interface-type="feature-tabs"] .tabs-holder .tab-content .tab-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

    .modal[target="video"] .container-holder {
        padding: 50px 0;
    }

    .section-wrapper[interface-type="content"][two-sided="true"] .full-wrapper .inside-holder .left-wrapper .pre-title {
        font-size: 18px;
        font-weight: 500;
    }
    .section-wrapper[interface-type="banner"] span {
        font-size: 18px;
    }

    .section-wrapper img,
    .section-wrapper video {
        max-height: 450px;
        max-width: 450px;
        width: 100%;
        object-fit: contain;
        height: auto;
    }
    .section-wrapper[interface-type="banner"][has-background="true"] video,
    .section-wrapper[interface-type="banner"][has-background="true"] img {
        max-width: unset;
        max-height: unset;
    }
    .section-wrapper[interface-type="content"][two-sided="true"] .full-wrapper .inside-holder h1 {
        text-align: left;
    }
    .section-wrapper[interface-type="two-side"] .full-wrapper .inside-holder {
        max-width: 100%;
    }
    .section-wrapper[interface-type="banner"] .full-wrapper {
        max-width: 100%;
    }
    .section-wrapper[interface-type="content"][two-sided="true"] .left-wrapper {
        margin-top: 30px;
    }
    .section-wrapper[interface-type="content"][content-align="right"] .container-holder {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .section-wrapper[interface-type="content"][content-align="right"] .container-holder .left-wrapper {
        margin-bottom: 0;
        margin-top: 30px;
    }

    .section-wrapper[interface-type="content"][reverse-mobile="true"] .container-holder {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .section-wrapper[interface-type="content"][reverse-mobile="true"] .container-holder .left-wrapper {
        margin-bottom: 0;
        margin-top: 30px;
    }

    .footer .footer-copyright a {
        margin-bottom: 10px;
    }
    .content-bg{
        padding-bottom: 40px;
    }

    .section-wrapper[interface-type="dark-content"][padding="bottom"]{
        padding: 50px 0 35px 0;
    }

    .section-wrapper.video-section-wrapper[interface-type="main-banner"]{
        margin-bottom: 50px;
    }
    .section-wrapper[interface-type="banner"][has-background="true"] .container-holder {
        height: calc(100vh - 90px);
    }

    /* .section-wrapper[interface-type="banner"][has-background="true"] .container-fluid{
        background: linear-gradient(
            rgba(113, 49, 150, 0.8),
            rgba(113, 49, 150, 0.6) 
          )
    } */
    .section-wrapper[interface-type="banner"][has-background="true"][size="small"] .container-holder {
        height: auto;
       
    }
    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item.no-job .left-desc {
        width: 100%;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item.no-job .right-desc {
        width: 100%;
    }
    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item.no-job {
        padding: 30px;
    }

    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item.no-job .left-desc svg {
        width: 24px;
        height: 24px;
        margin-right: 16px;
        margin-top: 8px;
    }
    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item.no-job .left-desc h3 {
        line-height: normal;
        margin-bottom: 30px;
        width: calc(100% - 40px);
    }
    .section-wrapper[interface-type="job-list"] .job-list-wrapper .job-list-item.no-job .right-desc {
        padding-left: 40px;
        padding-right: 0;
    }
    .section-wrapper[hide-mobile="true"] {
        display: none;
    }
    .section-wrapper[hide-desktop="true"] {
        display: inherit;
    }

    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark .right-wrapper{
        padding-right: 0;
    }

    .content .btn svg {
        display: none;
    }

    .section-wrapper[interface-type="content"][mobile-title="mid"] h1 {
        text-align: center;
    }
    .section-wrapper[interface-type="fees"] .fees-category .fees-content .fees-row p:nth-child(2) {
        text-align: left;
    }

    .section-wrapper[interface-type="landing-header"] .container-fluid {
        background: rgb(255,255,255);
        background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    }

    .section-wrapper.section-free-trial[interface-type="dark-content"][padding="bottom"] .left-wrapper{
        width: 100%;
    }

    .footer .footer-nav .column h3.title-get-yell{
        padding-left: 0;
        margin-bottom: 10px;
    }

    .footer .footer-nav .column:last-child a{
        margin-bottom: 5px;
    }

    .footer .footer-nav .column:last-child{
        align-items: initial;
    }

    .footer .footer-copyright p.left-footer-copyright{
        width: 100%;
    }

    .footer .footer-copyright p.right-footer-copyright{
        width: 100%;
        justify-content: center;
    }
    body.menu-opened{
        overflow: hidden!important;
    }
    
    .section-wrapper[interface-type="partners"] .partners-holder:after,
    .section-wrapper[interface-type="partners"] .partners-holder:before{
        content: none;
    }
    .section-wrapper[interface-type="partners"] h2.section-title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 35px;
    }
    .section-wrapper[interface-type="partners"] .partners-holder .swiper-slide {
        width: 165px;
    }
    .section-wrapper[interface-type="partners"] .partners-holder .partner-box{
        min-height: 113px;
    }
    .section-wrapper[interface-type="partners"] .partners-holder .partner-box img {
        max-width: 100%;
    }
    .section-wrapper[interface-type="partners"] .container{
        padding: 0;
    }
    
}


@media screen and (max-height: 600px) {
   
    .section-wrapper[hide-desktop="true"] {
        display: inherit;
    }
    .section-wrapper[hide-mobile="true"] {
        display: none;
    }
}


@media (min-width: 1101px) {
    .section-wrapper[interface-type="four-side"] .container-full-box{
        height: 350px;
    }
    .openNestedBtn {
        display: block;
        cursor: pointer;
        /* pointer-events: none; */
        position: absolute;
        right: 10px;
        top: 53%;
        border: 0;
        background-color: transparent;
        outline: none;
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        -webkit-transition: .5s;
        -o-transition: .5s;
        transition: .5s;
    }

    .openNestedBtn svg{
        width: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px){
    .section-wrapper[interface-type="faq-category"] .faq-category-wrapper{
        gap: 15px;
}
}


@media only screen and (min-width: 768px) and (max-width: 1100px){
    .section-wrapper[interface-type="media-box"] .media-box{
        width: calc(31.2% - 0px);
    }
    .section-wrapper[interface-type="four-side"] .container-full-box .inside-holder.long-content{
        padding: 30px 50px;
    }
    .section-wrapper[interface-type="image-boxes"] .image-item {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px)
      }

      .section-wrapper[interface-type="image-boxes"] .image-item img{
        height: 320px;
      }
    .section-wrapper[interface-type="four-side"] .security-groups-container {
        grid-template-columns: repeat(2, 1fr); 
      }
    .section-wrapper[interface-type="four-side"] .container-full-box .right-wrapper img{
        height: auto;
    }
    .section-wrapper[interface-type="content"] .container-holder.container-holder-images .right-wrapper{
        padding-right: 0;
    }

    .section-wrapper[interface-type="content"] .container-holder.container-holder-images .right-wrapper img{
        height: auto;
    }
    .section-wrapper.section-free-trial[interface-type="dark-content"][padding="bottom"] .left-wrapper {
        width: 85%;
    }
    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark .left-wrapper img{
        height: auto;
    }
    
    .section-wrapper.section-free-trial[interface-type="dark-content"][padding="bottom"] .right-wrapper {
        width: 15%;
    }
    .section-wrapper[interface-type="policy"] .privacy-links-desktop{
        display: none;
    }
    .section-wrapper[interface-type="policy"] .privacy-links-mobile{
        display: block;
    }

    .section-wrapper[interface-type="policy"] .privacy-links-content{
        position: static;
        top: 0;
    }
    .section-wrapper[interface-type="policy"] .privacy-links {
        width: 100%;
        height: 100%;
        position: static;
        border-radius: inherit;
        padding: 40px 20px;
    }

    .section-wrapper[interface-type="policy"] .container-holder{
        flex-direction: column;
        padding: 0 0 50px 0;
    }

    .section-wrapper[interface-type="policy"] .sidebar{
        width: 100%;
        margin-bottom: 50px;
    }

    .section-wrapper[interface-type="policy"] .policyTabs{
        width: 100%;
    }
    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark .left-wrapper{
        padding-left: 70px;
    }
    .footer .footer-nav .column h3.title-get-yell{
        padding-left: 0;
    }

    .footer .footer-nav .column:last-child{
        align-items: initial;
    }

    .footer .footer-copyright p.left-footer-copyright{
        width: 100%;
        margin-top: 10px;
    }

    .footer .footer-copyright p.right-footer-copyright{
        width: 100%;
        justify-content: center;
    }

    .footer .footer-copyright{
        flex-direction: column-reverse;
    }
    /* .section-wrapper[interface-type="four-side"] .container-full-box .inside-holder.long-content{
        padding: 30px 0 30px 30px;
    } */
}

@media only screen and (min-width: 768px) and (max-width: 1020px){
    .section-wrapper[interface-type="image-boxes"] .image-item p{
        font-size: 21px;
    }
    .section-wrapper[interface-type="content"] .container-holder.container-holder-images.bgLightGray h1{
        font-size: 30px;
        margin-bottom: 0;
    }

    .section-wrapper[interface-type="content"] .container-holder.container-holder-images.bgLightGray p{
        font-size: 14px;
        width: 100%;
    }

    .section-wrapper[interface-type="content"] .container-holder.container-holder-images.bgLightGray a.btn{
        margin-top: 10px;
    }

    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark h1{
        font-size: 30px;
        margin-bottom: 0;
    }
    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark p{
        font-size: 14px;
    }
    .section-wrapper[interface-type="dark-content"] .container-holder.bgDark a.btn{
        margin-top: 10px;

    }
}

@media only screen and (min-width: 1100px){   
    .nav ul li ul{
        height: auto !important;
    }
    .section-wrapper[interface-type="policy"] .privacy-links-mobile{
        display: none;
    }

    .section-wrapper[interface-type="policy"] .privacy-links-desktop{
        display: block;
    }

    .change-language-content-mobile{
        display: none;
    }
}

@media only screen and (max-width: 576px){
  
    .section-wrapper[interface-type="policy"] .navigation-link{
        white-space: normal;
    }
    .section-wrapper[interface-type="four-side"] .container-full-box p.compare-credit-text{
        width: 100%;
    }
    .section-wrapper[interface-type="image-boxes"] .image-item {
        flex: 1 1 100%; 
        max-width: 100%;
      }
    .section-wrapper[interface-type="four-side"] .security-groups-container {
        grid-template-columns: 1fr; 
      }
    .section-content-row{
        flex-direction: column;
    }
    .section-content-row > h5:first-child{
        width: 100%;
    }
    .section-container-privacy .section-content-row .rich_text{
        width: 100%;
    }

    .section-wrapper[interface-type="policy"] .policyTabs .section-content-left{
        width: 100%;
    }

    .section-wrapper[interface-type="policy"] .policyTabs .section-content-right{
        width: 100%;
    }
}

@media only screen and (max-width: 430px){
    .footer .footer-copyright p.right-footer-copyright{
        flex-direction: column;
    }
    .right-footer-copyright span::after {
        display: none;
     }
     .right-footer-copyright span{
        margin-right: 0px;
     }
}

@media only screen and (max-width: 1024px){
    .section-wrapper.offerings-values-wrapper[interface-type="offerings-values"][is-slider="true"] .swiper-container {
        display: none;
      }
      .section-wrapper.offerings-values-wrapper[interface-type="offerings-values"][is-slider="true"] .swiper-pagination{
        display: none;
      }

      .section-wrapper.offerings-values-wrapper[interface-type="offerings-values"][is-slider="true"]  .section-wrapper.offerings-values-wrapper{
        padding-left: 0;
      }
      .section-wrapper.offerings-values-wrapper[interface-type="offerings-values"][is-slider="true"] .offerings-wrapper {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))  !important;
        gap: 15px;
        width: 100%;
        align-items: stretch;
      }
      .section-wrapper.offerings-values-wrapper[interface-type="offerings-values"][is-slider="true"] .container-holder .offerings-wrapper .offer-item{
        height: inherit;
      }
      
      /* .values-wrapper .offer-item {
        background: #fff;
        padding: 30px;
        border-radius: 26px;
      } */

      /* .section-wrapper.offerings-values-wrapper[interface-type="offerings-values"][is-slider="true"]  .offerings-wrapper .offer-item:nth-child(n+6) {
        display: none; 
      } */
}