*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Manrope';
    src: url('../src/Manrope-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../src/Roboto-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto-medium';
    src: url('../src/Roboto-Medium.ttf') format('truetype');
    font-display: swap;
}

body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
}

h1, h2, h3, h4, h5, h6, a{
    font-family: 'Manrope', sans-serif;
}

a{
    color: #4C67EA;
    text-decoration: unset;
}

img{
    display: block;
    max-width: 100%;
}

.container{
    max-width: 1336px;
    margin: 0 auto;
    padding: 0 44px;
}

.header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 44px;
}

.header-left-side{
    display: flex;
    align-items: center;
}

.head-divider{
    width: 1px;
    height: 56px;
    background: #D2D4DA;
    border-radius: 2px;
    margin: 0 40px;
}

.header-left-side a{
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.02em;
    color: #101322;
}

.header-right-side{
    display: flex;
    align-items: center;
    column-gap: 16px;
}

footer{
    background: #4C67EA;
}

.footer-links a{
    color: #fff;
    display: block;
    width: 100%;
    letter-spacing: -0.02em;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    font-family: 'Manrope', sans-serif;
}

.footer-links{
    margin-left: 117px;
    flex-grow: 1;
    display: flex;
}

.button{
    display: inline-block;
    background: #4C67EA;
    border-radius: 8px;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 19px;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #fff;
    transition: .15s;
}

.button:hover{
    opacity: .9;
}

.button-full{
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    column-gap: 16px;
}

.button-bigger{
    padding: 18px 40px;
    letter-spacing: -0.02em;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
}

.download-links-wrap .download-button {
    width: 100% !important;
}

.download-links-b{
    padding-top: 5px;
    gap: 8px;
    display: inline-flex;
}

.download-price{
    color: #9496A1;
    font-size: 10px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 18px;
    word-wrap: break-word
}

.download-links-b-no-mrg{
    padding-left: 0;
}

.download-links-b a, .download-links-b a:hover {
    color: #9496A1;
    font-size: 10px;
    font-family: Roboto;
    font-weight: 400;
    text-decoration: underline;
    line-height: 18px;
    word-wrap: break-word;
}

.download-links-b a:hover {
    text-decoration: none;
}

.container-main{
    padding: 60px 44px;
}

.main-container{
    display: flex;
    justify-content: space-between;
}

aside{
    max-width: 400px;
    margin-left: 130px;
    flex-shrink: 0;
}

.aside-wrap{
    background: #FFFFFF;
    box-shadow: 0px 16px 60px rgba(96, 120, 234, 0.24);
    border-radius: 8px;
    padding: 24px;
}

.aside-wrap + .aside-wrap{
    margin-top: 40px;
}

.container-footer{
    padding: 64px 44px;
    display: flex;
    align-items: center;
}

.subheading{
    font-family: 'Manrope', sans-serif;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #5B5D6A;
    margin-bottom: 24px;
}

h1{
    font-weight: 800;
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -0.02em;
    color: #101322;
    margin-bottom: 40px;
}

.faq-wrapper{
    border: 1px solid rgba(76, 103, 234, 0.24);
    border-radius: 6px;
}

.faq-question {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: unset;
    border: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    -webkit-transition: 0.15s all linear;
    transition: 0.15s all linear;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #4C67EA;
    font-family: 'Manrope', sans-serif;
    align-items: center;
    column-gap: 20px;
}

.faq-answer {
    font-size: 15px;
    line-height: 22px;
    color: #000;
    overflow: hidden;
    max-height: 0;
    padding: 0;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    -webkit-transition: 0.2s all ease-out;
    transition: 0.2s all ease-out;
}

.faq-answer .inside-answer{
    padding: 0 24px 24px;
}

.toggle-active .plus-chewron{
    display: none;
}

.minus-chewron{
    display: none;
}

.toggle-active .minus-chewron{
    display: block;
}

.inside-answer p{
    color: #5B5D6A;
    font-size: 17px;
    line-height: 26px;
    font-family: 'Roboto', sans-serif;
}

h2{
    font-weight: 800;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.02em;
    color: #101322;
}

.guide-faq{
    margin-top: 24px;
}

.guide-heading-faq{
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #101322;
    margin-bottom: 8px;
}

.guide-faq .guide-head{
    width: unset;
}

.guide-faq .guide-content{
    font-size: 17px;
    line-height: 26px;
}

.faqs{
    margin-top: 40px;
    margin-bottom: 40px;
}

.faqs.faqs-2{
    margin-top: 32px;
}

.faqs .faq-wrapper + .faq-wrapper{
    margin-top: 16px;
}

.sys-info{
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
}

.sys-logo{
    flex-shrink: 0;
    padding: 24px;
    box-shadow: 0px 16px 60px rgba(96, 120, 234, 0.24);
    border-radius: 8px;
    margin-right: 24px;
}

.sys-subheading{
    font-size: 15px;
    line-height: 24px;
    color: #5B5D6A;
    font-family: 'Roboto-medium', sans-serif;
}

.sis-information{
    font-size: 17px;
    line-height: 26px;
    margin-top: 4px;
    font-family: 'Roboto-medium', sans-serif;
}

.laguage-selector{
    padding: 24px;
    background: #EDEEF0;
    border-radius: 8px;
    margin-bottom: 40px;
}

.download-info-item h3{
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #101322;
    margin-bottom: 8px;
}

.download-info-item p{
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #5B5D6A;
}

.subinfo{
    display: block;
    margin-top: 8px;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #5B5D6A;
}

.download-info-item + .download-info-item{
    margin-top: 40px;
    margin-bottom: 40px;
}

.warning{
    color: red;
}

.aside-wrap h3{
    text-align: center;
    letter-spacing: -0.02em;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    color: #4C67EA;
}

.guide-heading{
    margin: 24px 0;
    text-align: center;
    letter-spacing: -0.02em;
    color: #101322;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Manrope', sans-serif;
}

.guide-item + .guide-item{
    margin-top: 8px;
}

.guide-item{
    display: flex;
    column-gap: 8px;
}

.guide-head{
    width: 60px;
    flex-shrink: 0;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #101322;
}

.guide-2{
    font-size: 15px;
    line-height: 24px;
}

.guide-2 .guide-head{
    width: 120px;
    font-size: 15px;
    line-height: 24px;
}

.guide-content{
    color: #5B5D6A;
}

.info-aside{
    margin-top: 16px;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #5B5D6A;
}

.aside-wrap-2{
    padding: 0;
    overflow: hidden;
}

.divider{
    margin: 24px 0;
    height: 1px;
    background: rgba(76, 103, 234, 0.08);
}

.trustpilot-section{
    background: #F4F6F9;
    padding: 12px 20px;
    text-align: center;
}

.trustpilot-section h4{
    font-size: 18px;
    line-height: 26px;
    font-family: 'Roboto-Medium', sans-serif;
}

.trustpilot-logo{
    margin: 12px auto 0;
}

.stars-trustpilot{
    display: flex;
    justify-content: center;
    column-gap: 9px;
    margin: 8px 0;
}

.trustpilot-count{
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
}

.trustpilot-count .underlined{
    font-weight: 700;
    text-decoration: underline;
}

.about{
    padding: 24px;
}

.about h4{
    font-family: 'Roboto-medium', sans-serif;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.02em;
    color: #101322;
    margin-bottom: 12px;
}

.about p{
    font-size: 15px;
    line-height: 24px;
    color: #5B5D6A;
}

.logos{
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    align-items: center;
}

.select-button{
    display: flex;
}

.select-button .button{
    padding: 12px;
    font-family: 'Manrope', sans-serif;
    margin-left: 16px;
    width: 50%;
    text-align: center;
}

.dropdown {
    height: 48px;
    background: white;
    border-radius: 4px;
    position: relative;
    z-index: 10;
    width: 50%;
  }
  
  .dropdown::before {
    content: url(../src/select-arrow.svg);
    position: absolute;
    display: block;
    right: 8px;
    top: 12px;
    z-index: 9999;
    pointer-events: none;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    height: 21px;
  }
  
  .dropdown input {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    padding: 24px 16px;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 14px;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid #D2D4DA;
  }
  
  .dropdown input::-webkit-input-placeholder {
    font-weight: 400;
    color: #B3B5BD;
  }
  
  .dropdown input::-moz-placeholder {
    font-weight: 400;
    color: #B3B5BD;
  }
  
  .dropdown input:-ms-input-placeholder {
    font-weight: 400;
    color: #B3B5BD;
  }
  
  .dropdown input::-ms-input-placeholder {
    font-weight: 400;
    color: #B3B5BD;
  }
  
  .dropdown input::placeholder {
    font-weight: 400;
    color: #B3B5BD;
  }
  
  .dropdown .options {
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    background: white;
    border: none;
    outline: none;
    font-size: 20px;
    overflow: hidden;
    position: absolute;
    top: 56px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    visibility: hidden;
  }
  
  .dropdown .options .option {
    padding: 12px 20px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    color: #000;
    font-family: 'Roboto-medium', sans-serif;
    font-size: 14px;
    line-height: 21px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
  }

  .dropdown.opened .options {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .laguage-selector h4{
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #101322;
    margin-bottom: 16px;
  }

  .chewron svg{
    display: block;
  }

@media screen and (max-width: 1200px) {
    aside{
        margin-left: 40px;
    }
}

@media screen and (max-width: 992px){
    .select-button{
        flex-direction: column;
        row-gap: 12px;
    }
    .dropdown{
        width: 100%;
    }
    .select-button .button{
        width: 100%;
        margin: 0;
    }
    .faqs.faqs-2{
        margin-bottom: 0;
    }
    .guide-faq{
        margin-top: 16px;
    }
    .guide-heading-faq, .guide-faq .guide-content{
        font-size: 15px;
        line-height: 22px;
    }
    .button-full img{
        width: 16px;
    }
    .aside-wrap-2.aside-wrap{
        padding: 0;
    }
    .head-divider{
        margin: 0 16px;
    }
    .info-aside{
        font-size: 11px;
        line-height: 16px;
    }
    .guide-heading{
        font-size: 15px;
        line-height: 22px;
        margin: 16px 0;
    }
    .guide-head{
        font-size: 15px;
        line-height: 22px;
    }
    .guide-content{
        font-size: 15px;
        line-height: 22px;
    }
    .guide-2 .guide-head{
        font-size: 13px;
        line-height: 18px;
    }
    .guide-2 .guide-content{
        font-size: 13px;
        line-height: 18px;
    }
    .aside-wrap{
        padding: 16px;
    }
    .divider{
        margin: 16px 0;
    }
    .aside-wrap h3{
        font-size: 20px;
        line-height: 28px;
    }
    .header-right-side{
        display: none;
    }
    .faq-answer .inside-answer{
        padding: 0 16px 16px;
    }
    .inside-answer p{
        font-size: 15px;
        line-height: 22px;
    }
    .faq-question{
        padding: 16px;
    }
    .subheading{
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 16px;
    }
    .download-info-item h3{
        font-size: 17px;
        line-height: 24px;
        margin-bottom: 8px;
    }
    .download-info-item p{
        font-size: 15px;
        line-height: 22px;
    }
    .download-info-item + .download-info-item{
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .subinfo{
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 32px;
    }
    .button{
        padding: 12px;
        width: 100%;
        text-align: center;
        font-size: 13px;
        line-height: 18px;
    }
    .faqs{
        margin-top: 32px;
        margin-bottom: 32px;
    }
    h1{
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 32px;
    }
    .container-main{
        padding: 12px 24px;
    }
    .header-container{
        padding: 30px 24px;
    }
    aside{
        margin: 32px auto;
    }
    .main-container{
        flex-direction: column;
    }
    .container-footer{
        padding: 40px 44px;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links{
        margin-left: 0;
        margin-top: 24px;
        flex-direction: column;
        row-gap: 16px;
    }
}

.supports-7{
    display: flex;
    column-gap: 8px;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #5B5D6A;
    margin-top: 16px;
    white-space: nowrap;
}

.boost-wrap{
    background: #101322;
    border-radius: 24px;
    display: flex;
    padding: 24px 56px;
    align-items: center;
    column-gap: 56px;
}

.landing .container{
    padding: 80px 44px;
}

.empower-items{
    display: flex;
    text-align: center;
    column-gap: 40px;
    margin-top: 56px;
    margin-bottom: 64px;
}

.how-it-works-container{
    display: flex;
    align-items: center;
    column-gap: 60px;
}

.how-it-works-container > img{
    max-width: 600px;
    width: 100%;
}

.container-items{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
    row-gap: 80px;
}

.item-wrap{
    display: flex;
    align-items: flex-start;
    column-gap: 33px;
    gap: 24px;
    align-self: stretch;
    text-align: left;
}

.landing .trustpilot-container{
    padding: 40px 44px 80px;
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.trustpilot-right{
    display: flex;
    column-gap: 24px;
}

.boost-wrap img{
    max-width: 600px;
}

.landing .header-container{
    padding: 30px 44px;
}

.section-grey{
    background: rgba(76, 103, 234, 0.08);
}

.container-empower{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.empower-item{
    width: 100%;
}

.section-heading{
    margin-bottom: 24px;
    font-size: 44px;
    line-height: 52px;
    letter-spacing: -0.02em;
}

.section-heading-m0{
    font-size: 44px;
    line-height: 52px;
    letter-spacing: -0.02em;
}

.section-description{
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    font-family: 'Manrope';
    text-align: center;
    letter-spacing: -0.02em;
    color: #5B5D6A;
}

.empower-heading{
    font-size: 28px;
    line-height: 36px;
    margin-top: 8px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.empower-description{
    font-size: 17px;
    line-height: 26px;
    color: #5B5D6A;
}

.subheading-works{
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: #4C67EA;
    margin-bottom: 32px;
}

.section-description-big{
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    font-family: 'Manrope';
    letter-spacing: -0.02em;
    color: #5B5D6A;
}

.container-features{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 74px;
}

.features-heading{
    margin-bottom: 0px;
    font-size: 44px;
    line-height: 52px;
    letter-spacing: -0.02em;
}

.section-small-heading{
    font-size: 28px;
    line-height: 36px;
    margin-top: 32px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #101322;
}

.section-small-heading-m0{
    font-size: 28px;
    line-height: 36px;
   
    letter-spacing: -0.02em;
    color: #101322;
}

.small-description{
    color: #5B5D6A;
    margin-bottom: 32px;
}

.item-wrap .img-wrap{
    width: 158px;
    display: block;
    flex-shrink: 0;
}

.item-heading{
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #101322;
    margin-bottom: 16px;
    text-align: left;
    font-family: Arial;
    font-weight: 700;
}

.item-description{
    align-self: stretch;
    color: #5B5D6A;
    font-family: Roboto;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.left-boost .section-description-big{
    color: #fff;
    margin-bottom: 32px;
}

.left-boost .section-heading-m0,
.left-boost .section-heading{
    color: #fff;
}



.landing .boost-container{
    padding: 80px 44px 40px;
}

.review-item{
    width: 100%;
    padding: 30.5px 20px;
    box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
    color: #101322;
}

.trustpilot-left .section-heading{
    margin: 32px 0 24px;
}

.review-item h5{
    margin: 8px 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Roboto';
}

.stars-reviews-count{
    display: flex;
    column-gap: 13px;
    align-items: center;
}

.review{
    margin: 8px 0 17px;
    font-weight: 300;
    font-size: 14px;
    line-height: 22px;
}

.stars-reviews-count span{
    font-weight: 300;
    font-size: 12px;
    line-height: 26px;
}

.author{
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
}

.landing header{
    position: absolute;
    width: 100%;
    z-index: 1;
}

.landing .container-main{
    padding: 0 44px 32px;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translateX(-50%);
}

.section-main {
    overflow: hidden;
    position: relative;
}

.main-image{
    min-width: 1920px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.text-main{
    max-width: 612px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.text-main .section-description-big{
    margin-bottom: 40px;
}

.links{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 32px;
}

.links span{
    margin-right: 79px;
    font-weight: 500;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #5B5D6A;
}

.links img{
    margin-left: 100px;
}
.links img.firstImageLogo{
    margin-left: 0;
}

.slider-description{
    max-width: 800px;
    margin: 56px auto;
}

.slider-heading{
    max-width: 800px;
    margin: 0 auto 56px;
    text-align: center;
}

.support-block{
    display: flex;
    align-items: center;
    flex-direction: column;
}

.slider-wrap{
    position: relative;
}

.swiper-button-next, .swiper-button-prev{
    width: 72px;
    height: 72px;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
    display: none;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after{
    display: none;
}

.swiper-slide.swiper-slide-prev, .swiper-slide.swiper-slide-next{
    width: 300px !important;
    transition: .4s all linear;
    opacity: .3;
}

.swiper-slide.swiper-slide-active{
    width: 600px !important;
    transition: .4s all linear;
}
.swiper-slide.swiper-slide-prev{
    margin-right: -76px !important;
}
.swiper-slide.swiper-slide-next{
    margin-left: -76px !important;
}
.swiper-wrapper{
    align-items: center;
    min-height: 378px;
}

.swiper-button-next, .swiper-button-prev{
    margin-top: unset;
    transform: translateY(-50%);
}
.swiper-button-prev, .swiper-rtl .swiper-button-next{
    left: 0;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
    right: 0;
}
.swiper{
    max-width: 1078px;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
    display: none;
}

.swiper-pagination-bullet{
    width: 16px !important;
    height: 16px !important;
}
.swiper{
    filter: drop-shadow(0px 16px 60px rgba(96, 120, 234, 0.4));
}
.swiper-button-next svg, .swiper-button-prev svg{
    box-shadow: 0px 16px 32px rgba(96, 120, 234, 0.4);
    border-radius: 40px;
}

.trustpilot-left{
    max-width: 400px;
    width: 100%;
}

.section-main .seal-links {
    position: absolute;
    top: 20.2%;
    left: 74.5%;
    width: 16%;
    height: 13%;
    display: flex;
    gap: 0;
}

.appesteem{
    position: relative;
    width: 60%;
    height: 100%;
    display: block;
    z-index: 1;
}

.vb100{
    position: absolute;
    left: 64.5%;
    bottom: 168px;
    width: 300px;
    height: 120px;
    display: block;
    z-index: 1;
}

.amtso{
    position: relative;
    width: 40%;
    height: 100%;
    display: block;
    z-index: 1;
}

.vb100-2 {
    position: absolute;
    left: 57.5%;
    bottom: 12.5%;
    width: 123px;
    height: 65px;
    display: block;
    z-index: 1;
}

.amtso-2 {
    position: absolute;
    left: 78%;
    bottom: 12.5%;
    width: 90px;
    height: 65px;
    display: block;
    z-index: 1;
}


.purple-img-backg-right{
    background-image: url("../src/rectangle-purple.svg");
    background-size: contain;
    background-position: top right;
    background-repeat: no-repeat, repeat;
    display: flex;
    justify-content: center;
}

.purple-img-backg-left{
    background-image: url("../src/rectangle-purple-left.svg");
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat, repeat;
    display: flex;
    justify-content: center;
    right: -40px
}

.driver-updater-container{   
    max-width: 1527.44px; 
    display: flex;
    padding: 180px 30px 120px 30px;
    align-items: center;
    justify-content: center;
    gap: 80px;
    align-self: stretch;
    box-sizing: border-box;
}

.driver-updater-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    flex: 1 0 0;
}

.driver-updater-header{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.driver-updater-labels {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.driver-updater-label{
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: rgba(76, 103, 234, 0.08);
}

.driver-updater-label p{
    color: #4C67EA;
    font-family: Arial;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.36px;
}

.driver-updater-subtitles{
    display: flex;
    align-items: center;
    gap: var(--16, 16px);
}

.driver-updater-subtitles img{
    width: 32px;
    height: 32px;
}

.driver-updater-subtitles h4{
    color: var(--Typography-Primary-Dark, #071D2B);
    font-family: Arial;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.44px;
}

.button-section {
    display: flex;
    width: 280px;
    flex-direction: column;
    align-items: center;
    gap: var(--16, 16px);
}

.hero-img{
    width: 736px;
    height: 459.08px;
    border-radius: 16px;
}

.av-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    flex: 1 0 0;
}

.promo-section{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 88px 44px;
}

.g-80{
    gap: 80px;
}

.background {
    position: absolute;
    top: 0;
    right: -21.2%;
    bottom: 0;
    left: 0;
    background-image: url('../src/rectangle-purple.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    z-index: -1;
}

.background-left {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50%;
    background-image: url('../src/rectangle-purple-left.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: cover;
    z-index: -1;
}


.content-container,
.image-container {
    position: relative;
    z-index: 1;
    width: 60%;
}

.content-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.image-container-2,
.image-container-1{
    display: flex;
    justify-content: center;
    position: relative;
}

.image-container-2 img,
.image-container-1 img {
    max-width: 100%;
    height: auto;
}

.button-container-mobile{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

@media screen and (max-width: 1899px){
    .background {
        position: absolute;
        top: 0;
        right: -15%;
        bottom: 0;
        left: 0;
        background-image: url('../src/rectangle-purple.svg');
        background-repeat: no-repeat;
        background-position: right top;
        background-size: cover;
    }
}

@media screen and (max-width: 1830px) {
    .section-main .seal-links {
        width: 19%;
    }
}

@media screen and (max-width: 1726px) {
    .section-main .seal-links {
        width: 23%;
    }
}

@media screen and (max-width: 1626px) {
    .section-main .seal-links {
        width: 19%;
        left: 78.5%;
    }
}

@media screen and (max-width: 1550px) {
    .section-main .seal-links {
        width: 22%;
    }
}

@media screen and (max-width: 1498px) {
    .section-main .seal-links {
        width: 19%;
        left: 82.5%;
    }
}

@media screen and (max-width: 1370px) {
    .section-main .seal-links {
        left: 85.5%;
    }
}

@media screen and (max-width: 1240px){
    .driver-updater-container{
        padding: 0px 30px 0px 30px;
    }

    .driver-updater-content{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
    }

    .driver-updater-header{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        align-self: stretch;
    }

    .button-section{
        display: flex;
        width: 258px;
        flex-direction: column;
        align-items: center;
        gap: var(--16, 16px);
    }

    .button-section a{
        display: flex;
        padding: 18px 40px;
        align-items: flex-start;
        gap: 8px;
        align-self: stretch;
        border-radius: 8px;
        background: var(--Main-Blue, #4C67EA);
    }

    .image-container{
        width: 634px;
        height: 395.458px;
        border-radius: 13.783px;
    }
}

@media screen and (max-width: 1200px){
    .boost-wrap img{
        max-width: 500px;
    }
    .how-it-works-container > img{
        max-width: 500px;
    }
}

@media screen and (max-width: 568px){
    .boost-wrap img{
        max-width: 100%;
    }
}

@media screen and (max-width: 992px){
    .trustpilot-left{
        max-width: unset;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
        display: flex;
        bottom: -48px;
        justify-content: center;
    }
    .swiper-button-next, .swiper-button-prev{
        display: none;
    }
    .slider-heading{
        margin-bottom: 24px !important;
    }
    .slider-description{
        margin: 72px 0 32px;
    }
    .swiper-pagination-bullet{
        opacity: 1;
        background: rgba(76, 103, 234, 0.24);
    }
    .swiper-pagination-bullet-active{
        background-color: #4C67EA;
    }
    .swiper-wrapper{
        min-height: unset;
    }
    .swiper-slide.swiper-slide-active{
        width: 100% !important;
        transition: unset;
    }
    .swiper-slide.swiper-slide-prev, .swiper-slide.swiper-slide-next{
        width: 100% !important;
        transition: unset;
        opacity: 1;
    }
    .swiper-slide.swiper-slide-prev{
        margin-right: 30px !important;
    }
    .swiper-slide.swiper-slide-next{
        margin-left: unset !important;
    }
    .landing .container{
        padding: 56px 24px;
    }
    .how-it-works-container{
        flex-direction: column;
        row-gap: 40px;
    }
    .button-bigger{
        padding: 18px;
        font-size: 20px;
        line-height: 28px;
    }
    .how-it-works .supports-7{
        justify-content: center;
    }

    .container-items{
        grid-template-columns: 1fr;
        row-gap: 56px;
    }
    .item-wrap{
        display: flex;
        align-items: flex-start;
        column-gap: 33px;
        flex-direction: column;
        gap: 24px;
        align-self: stretch;
    }

    .item-content-container{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        align-self: stretch;
    }

    .boost-wrap{
        padding: 24px;
        flex-direction: column-reverse;
        row-gap: 32px;
    }
    .landing .trustpilot-container{
        flex-direction: column;
        align-items: stretch;
        row-gap: 24px;
        padding: 24px 24px 56px;
    }
    .trustpilot-right{
        flex-direction: column;
        row-gap: 24px;
    }
    .empower-items{
        flex-direction: column;
        margin-top: 40px;
        row-gap: 24px;
    }
    .empower-item img{
        margin: 0 auto;
    }
    .section-heading{
        font-family: Arial;
        margin-bottom: 0;
        font-size: 22px;
        line-height: 32px;
        font-weight: 700;
    }

    .section-heading-m0{
        font-family: Arial;
        margin-bottom: 0;
        font-size: 22px;
        line-height: 32px;
        font-weight: 700;
    }

    .section-description{
        font-size: 17px;
        line-height: 24px;
    }
    .empower-heading{
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    .empower-description{
        font-size: 15px;
        line-height: 22px;
    }
    .subheading-works{
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 24px;
    }
    .section-description-big{
        font-size: 17px;
        line-height: 24px;
    }
    .section-small-heading{
        font-size: 20px;
        line-height: 28px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .section-small-heading-m0{
        font-size: 20px;
        line-height: 28px;
    }

    .item-heading{
        font-family: Arial;
        font-size: 18px;
        line-height: 26px;
        text-align: left;
        font-weight: 700;
    }

    .item-description{
        align-self: stretch;
        color: #5B5D6A;
        font-family: Roboto;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px;
    }

    .mobile-heading{
        max-width: 992px;
        display: flex;
        justify-content: flex-start;
        text-align: left;
    }
    .left-boost .section-description-big{
        margin-bottom: 24px;
    }
    .left-boost .supports-7{
        justify-content: center;
    }
    .supports-7{
        font-size: 15px;
        line-height: 22px;
        margin-top: 12px;
    }
    .text-main .supports-7{
        justify-content: center;
    }
    .landing .boost-container{
        padding: 56px 24px 24px;
    }
    .trustpilot-left .section-heading{
        margin: 24px 0 16px;
    }
    .links{
        position: static;
        flex-direction: column;
        margin-top: 32px;
    }
    .text-main{
        position: static;
        transform: unset;
        max-width: unset;
        text-align: center;
    }
    .text-main h1{
        margin-bottom: 16px;
    }
    .text-main .section-description-big{
        margin-bottom: 34px;
    }
    .landing .container-main{
        position: static;
        transform: unset;
        margin-top: -100px;
    }
    .main-image{
        min-width: unset;
        position: static;
        transform: unset;
        width: 100%;
    }
    .landing .header-container{
        padding: 30px 24px;
        justify-content: center;
    }
    .links span{
        margin-right: 0;
        font-size: 17px;
        line-height: 24px;
        display: block;
        margin-bottom: 24px;
    }

    .links img{
        margin-left: 0;
        margin-top: 16px;
    }
    .links a:last-child{
        margin-top: 8px;
    }
    .section-main .seal-links {
        top: 19.2%;
        left: 46%;
        min-width: unset;
        width: 46%;
        height: 8%;
        display: flex;
        gap: 0;
    }
    .appesteem{
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
        width: 60%;
        height: 100%;
        display: block;
    }

    .vb100{
        position: absolute;
        left: 60%;
        transform: translateX(-50%);
        top: 19.4%;
        width: 269px;
        height: 132px;
        display: block;
    }
    .amtso{
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
        width: 40%;
        height: 100%;
        display: block;
    }

    .vb100-2{
        position: absolute;
        left: 66%;
        transform: translateX(-50%);
        bottom: 16%;
        width: 151px;
        height: 80px;
        display: block;
    }
    .amtso-2{
        position: absolute;
        left: 82%;
        transform: translateX(-50%);
        bottom: 16%;
        width: 115px;
        height: 80px;
        display: block;
    }

    .purple-img-backg-right{
        background-image: unset;
        max-width: 992px;
    }

    .purple-img-backg-left{
        background-image: unset;
    }


    .driver-updater-container{
        display: flex;
        width: 992px;
        padding: 88px 0px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 80px;
    }

    .driver-updater-subtitles{
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .reverse-container{
        flex-direction: column-reverse;
    }

    .driver-updater-header{
        margin-bottom: 0;
        display: flex;
        gap: 24px;
    }


    .driver-updater-content,
    .av-content{
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .image-container{
        background-image: url("../src/rectangle-purple.svg");
        background-size: contain;
        background-position: top right;
        background-repeat: no-repeat, repeat;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .image-container img{
        width: 70%;
        height: 70%;
    }

    .image-container-left{
        background-image: url("../src/rectangle-purple-left.svg");
        background-size: contain;
        background-position: top left;
        background-repeat: no-repeat, repeat;
        display: flex;
        justify-content: center;
        width: 100%;
    }


    .landing .container.promo-section {
        flex-direction: column-reverse;
        padding: unset;
        gap: 0px;
    }

    .g-40{
        gap: 40px;
    }

    .landing .container.promo-section.regular{
        padding: unset;
        gap: 0px;
        flex-direction: column;
    }

    .container.promo-section.regular{
        gap: 80px;
    }

    .background {
        display: none;
    }

    .background-left{
        display: none;
    }

    .image-container-1 {
        width: 100%;
        background-image: url('../src/rectangle-purple.svg');
        background-repeat: no-repeat;
        background-size: cover;
        padding: 88px 44px 40px 44px;
        box-sizing: border-box;
    }

    .image-container-2 {
        width: 100%;
        background-image: url('../src/rectangle-purple-left.svg');
        background-repeat: no-repeat;
        background-size: cover;
        padding: 88px 44px 40px 44px;
        box-sizing: border-box;
    }

    .content-container {
        width: 100%;
        padding: 40px 44px 88px 44px;
        box-sizing: border-box;
    }

    .button-container-mobile{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .features-heading.mobile-hide{
        display: none;
    }
}

@media screen and (max-width: 690px) {
    .landing .header-container .logo-image {
        scale: 0.6;
    }
    .vb100-2{
        position: absolute;
        left: 65%;
        transform: translateX(-50%);
        bottom: 16.5%;
        width: 120px;
        height: 66px;
        display: block;
    }
    .amtso-2{
        position: absolute;
        left: 80.5%;
        transform: translateX(-50%);
        bottom: 16.5%;
        width: 90px;
        height: 66px;
        display: block;
    }
}


@media (max-width: 772px){
    .section-small-heading{
        color: #071D2B;
        font-family: Arial;
        font-size: 15px;
        font-style: italic;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: -0.3px;
    }

    .section-small-heading-m0{
        color: #071D2B;
        font-family: Arial;
        font-size: 15px;
        font-style: italic;
        font-weight: 700;
        line-height: 22px;
        letter-spacing: -0.3px;
    }
    .section-main .seal-links {
        top: 17.5%;
        height: 6%;
    }
}

@media screen and (max-width: 590px){
    .section-main .seal-links {
        top: 16%;
    }
}

@media screen and (max-width: 470px){
    .section-main .seal-links {
        top: 13.2%;
    }
}

@media (max-width: 360px){
    .section-main .seal-links {
        top: 10.2%;
        left: 47.5%;
        width: 45%;
        height: 5%;
    }

    .header-left-side {
        margin-top: unset;
    }
    .landing .header-container .logo-image {
        scale: 1;
    }

    .vb100{
        position: absolute;
        left: 60%;
        transform: translateX(-50%);
        top: 15.4%;
        width: 162px;
        height: 82px;
        display: block;
    }

}

.swiper img{
    border-radius: 16px;
}

