* {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    max-width: 100%;
    /*overflow-x: hidden;*/
}
a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
b {
    font-weight: 700;
}
img {
    display: block;
}
h3 {
    color: #293137;
    font-size: 32px;
    font-weight: 600;
    line-height: 40.48px;
    letter-spacing: -0.6px;
}
.button {
    display: flex;
    width: 140px;
    padding: 12px 50px;
    justify-content: center;
    border-radius: 200px;
    background: #EF8C5E;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.16px;
    white-space: nowrap;

    transition: 0.3s ease-out;
}
.button:hover {
    filter: brightness(1.15);
}


.arrow {
    cursor: pointer;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #F9F8F7;
}

header .content {
    width: 1400px;
    max-width: 100%;
    justify-content: space-between;
    gap: 32px;
    align-items: center;
    margin: auto;
    padding: 16.5px 120px;
    display: flex;
}
header .logo {
    width: 184px;
    z-index: 5;
}
header .content .right {
    gap: 32px;
    display: flex;
    align-items: center;
}
header .content .right a {
    white-space: nowrap;
}

header .content .right .lang {
    display: flex;
    gap: 7px;
    cursor: pointer;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 125px;
}
header .content .right .lang img {
    width: 24px;
    rotate: 180deg;
    transition: 0.3s ease-out;
}
header .content .right .lang.active img {
    rotate: 0deg;
}
header .content .right .lang .dropdown {
    position: absolute;
    top: 60px;
    left: -35px;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    display: flex;
    width: 115px;
    /*height: 152px;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 0;
    gap: 15px;
    overflow: hidden;
    transition: height 0.23s ease-out;
    box-sizing: content-box;

}
header .content .right .lang.active .dropdown {
    height: 152px;
}
header .content .right .lang .dropdown a {
    line-height: 160%;
    letter-spacing: 0.16px;
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .content .right .lang .dropdown a.active,
header .content .right .lang .dropdown a:hover {
    border-radius: 30px;
    background: #F8E8E0;
    color: #EF8C5E;
    font-weight: 600;
}


header .burger {
    display: none;

    /*margin-left: 12px;*/
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    /*padding: 0px 10px;*/
    height: 30px;
    cursor: pointer;
    transition: 0.24s ease;
    z-index: 5;
}


header.active .content {
    /*background: var(--background-alternate, #34303D);*/
    /*height: 100vh;*/
}

header.active .burger {
    gap: 0px;
}

header .burger span {
    display: block;
    height: 2px;
    background: #293137;
    width: 30px;
    transition: 0.24s ease;
}
header .burger:hover span {
    background: #EF8C5E;
}
header.active .burger span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-bottom: -1px;
}

header.active .burger span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -1px;
}
header.active .burger span:nth-of-type(3) {
    display: none;
}

section {
    width: 100%;
}
section.hero {
    display: flex;
    position: relative;
}
section.hero .bg {
    max-width: 100%;
    height: 959px;
    height: 850px;
    object-fit: cover;
    width: 100%;
    height: 100vh;

}
section.hero .content {
    position: absolute;
    left: 63px;
    bottom: 115.5px;
    gap: 50px;
    display: flex;
    flex-direction: column;
}
section.hero .content .title {
    height: 125px;
}
section.hero .content .title.mobile {
    display: none;
}
section.hero .content .title.nor {
    height: 200px;
}

section.hero .content .buttons {
    display: flex;
    gap: 10px;
}
section.hero .content .buttons img {
    width: 44px;
}

section.benefits {
    border-radius: 0px 0px 24px 24px;
    background: #F9F8F7;
    /*height: 1241px;*/
    padding: 64px;
}
section.benefits .content {
    width: 1440px;
    margin: auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 61px;
}

section.benefits .left,
section.benefits .right {
    width: 50%;
    height: 100%;
    overflow: hidden;
}
section.benefits .first {
    border-radius: 40px;
    display: flex;

}
section.benefits .first .left {
    border-radius: 40px 0 0 40px;
    position: relative;
    height: auto;
}
section.benefits .first .left img {
    height: 100%;
    position: absolute;
    left: 0;
}
section.benefits .first .right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-radius: 0 40px 40px 0;
    background: #EF8C5E;
    color: white;

    padding: 35px 92px;
}
section.benefits .first .right h2 {
    font-size: 56px;
    font-weight: 600;
    line-height: 67.2px;
    max-width: 431px;
}
section.benefits .first .right h2.nor {
    max-width: 475px;
}
section.benefits .first .right p {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.5px;
    max-width: 427px;
}
section.benefits .second {
    display: flex;
    align-items: center;
}
section.benefits .second .left img {
    height: 135px;

}
section.benefits .second .right p {
    color: #293137;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.5px;
}
section.benefits .third {
    display: flex;
}
section.benefits .third .left .pills {
    display: flex;
    flex-direction: column;
    width: 363px;
    max-width: 100%;
}
section.benefits .third .left .pills .pill {
    padding: 20px 30px;
    border-left: 1px solid #CCC;
    padding: 0 30px;
    margin: 20px 0;
    cursor: pointer;
    transition: 0.2s ease-out;
}
section.benefits .third .left .pills .pill.active {
    border:none;
    border-radius: 40px;
    background: #F8E8E0;
    padding: 20px 30px;
    margin: 0;
}
section.benefits .third .left .pills .pill span {
    color: #EF8C5E;
    font-family: "Wix Madefor Display";
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 67.2px; /* 134.4% */
}
section.benefits .third .left .pills .pill p {
    margin-top: 6px;
    color: #293137;
    font-size: 18px;
    line-height: 25.2px;
    letter-spacing: -0.38px;
}

section.benefits .third .right img {
    border-radius: 40px;
    /*height: 285px;*/
    margin-bottom: 50px;
    width: 100%;
}
section.benefits .third .right h4 {
    margin-bottom: 15px;
    color: #293137;
    font-size: 22px;
    font-weight: 700;
    line-height: 25.2px;
    letter-spacing: -0.38px;
}
section.benefits .third .right p {
    color: #293137;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.5px;
}

section.how {
    padding: 70px 60px 63px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
section.how .title {
    /*width: 367px;*/
    height: 66px;
    margin-bottom: 90px;
}
section.how .blocks {
    display: flex;
    gap: 17px;
}
section.how .blocks .block {
    border-radius: 30px;
    background: #F9F8F7;
    display: flex;
    /*width: 425px;*/
    width: calc(33.33% - 11.3px);
    padding: 40px;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: relative;
}
section.how .blocks .block.first .icon {
    width: 159.5px;
    margin: 37px 29.5px 37px 29px;
}
section.how .blocks .block.second .icon {
    width: 105px;
}
section.how .blocks .block.third .icon {
    width: 144.878px;
    margin: 19px 0.268px;
}
section.how .blocks .block h4 {
    color: #293137;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.5px;
    margin-top: 45px;
    margin-bottom: 20px;
}
section.how .blocks .block p {
    color: #293137;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.5px;
}
section.how .blocks .block .arrow {
    width: 35px;
    top: calc(50% - 15px);
    right: -27px;
    position: absolute;
    z-index: 2;
    cursor: auto;
}

section.cases {

}
section.cases .title {
    /*width: 294px;*/
    margin: 32px auto;
    height: 65.5px;
}
section.cases .blocks {
    display: flex;
    padding: 64px 65px;
    gap: 18px;
}
section.cases .blocks .block {
    width: calc(33.33% - 12px);
    border-radius: 24px;
    background: #F6F6F6;
    overflow: hidden;
}
section.cases .blocks .block img {
    width: 100%;
}
section.cases .blocks .block .text {
    padding: 30px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.cases .blocks .block .text p {
    color: #293137;
    font-size: 16px;
    line-height: 24px;
}
section.cases .blocks .block .text p a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

section.integrations {
    width: 1440px;
    padding: 0 130px;
    max-width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0 auto;
}
section.integrations .title {
    margin: 32px 0;
    /*width: 348px;*/
    height: 65px;
}
section.integrations .sponsors {
    display: flex;
    flex-wrap: wrap;
    width: 1026px;
    justify-content: center;
}
section.integrations .sponsors .logo {
    margin-right: 40px;
}
section.integrations .sponsors .logo:nth-child(-n+5) {
    margin-right: 60px;
}
section.integrations .sponsors .logo:nth-child(6),
section.integrations .sponsors .logo:last-child {
    margin-right: 0;
}

section.integrations .sponsors .logo {
    width: 121px;
    height: 121px;
}
section.integrations .app {
    margin-top: 32px;
    display: flex;
    gap: 76px;
    align-items: center;
}
section.integrations .app .left {
    display: flex;
    gap: 22px;
    flex-direction: column;
    max-width: 455px;
}
section.integrations .app .left p {
    color: #293137;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
section.integrations .app .right {
    width: 376.5px;
}

section.enova {
    display: flex;
    flex-direction: column;
    background: #F6F6F6;
    align-items: center;
    overflow-x: hidden;
}
section.enova .title {
    width: 350px;
    margin: 32px 0;
}
section.enova .content {
    padding: 0 64px 54px;
    display: flex;
    gap: 84px;
    justify-content: center;
    position: relative;
    width: 100%;
}
section.enova .content .bg {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 1;
}
section.enova .content .left {
    width: 515px;
    height: fit-content;
    margin-top: 155px;
    z-index: 2;
    max-width: 45%;
}
section.enova .content .right {
    z-index: 2;
    max-width: 554px;
    margin-top: 31px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

section.enova .content .right .text {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #293137;
    font-size: 16px;
    line-height: 24px;
}
section.enova .content .right .text .border {
    border-radius: 20px;
    border: 4px dashed #EF8C5E;
    font-weight: 700;
    padding: 20px;
}
section.enova .content .right .buttons {
    display: flex;
    gap: 10px;
}
section.enova .content .right .buttons .button {
    width: 208px;
}
section.enova .content .right .buttons .arrow {
    width: 44px;
    height: 44px;
}

section.calculator {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 74px;
}
section.calculator .title {
    /*width: 301px;*/
    height: 65.5px;
    margin: 32px 0;
}
section.calculator .content {
    display: flex;
    gap: 63px;
    width: 100%;
    justify-content: center;
    padding-bottom: 51px;
    align-items: center;
}

section.calculator .left {
    display: flex;
    width: 555px;
    flex-direction: column;
    gap: 25px;
    max-width: calc(50% - 31px);
    flex-shrink: 0;
}
section.calculator .left .text {
    color: #293137;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
section.calculator .left .point {
    display: flex;
    gap: 15px;
    align-items: center;
}
section.calculator .left .point img {
    width: 32px;
}
section.calculator .left .border {
    border-radius: 20px;
    border: 4px dashed #EF8C5E;
    font-weight: 700;
    padding: 20px;
}
section.calculator .left .buttons {
    display: flex;
    gap: 10px;
}
section.calculator .left .buttons .button {
    width: 208px;
}
section.calculator .left .buttons .arrow {
    width: 44px;
    height: 44px;
}
section.calculator .right {
    width: 666px;
    max-width: calc(50% - 31px);
    height: fit-content;
}

section.guarantee {
    display: flex;
    width: 1440px;
    max-width: 100%;
    min-height: 733px;
    padding: 64px;
    flex-direction: column;
    gap: 61px;
    margin: auto;
}
section.guarantee .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}
section.guarantee .top .title {
    /*width: 371px;*/
    height: 148px;
}
section.guarantee .top .title.mobile {
    display: none;
}
section.guarantee .top p {
    color: #293137;
    font-size: 22px;
    line-height: 32px;
    letter-spacing: -0.5px;
    max-width: 652px;
}
section.guarantee .content {
    display: flex;
    justify-content: center;
    gap: 40px;
}
section.guarantee .content .block {
    display: flex;
    flex-direction: column;
    align-items: center;
}
section.guarantee .content .block img {
    height: 40px;
    margin: 12px;
}
section.guarantee .content .block h4 {
    margin: 24px 0 16px;
    color: #2B2D33;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}
section.guarantee .content .block p {
    color: #293137;
    text-align: center;
    font-size: 18px;
    line-height: 25.2px;
    letter-spacing: -0.38px;
}

section.quote {
    display: flex;
    flex-direction: column;
    padding: 100px 78px 83px;
    width: 1440px;
    max-width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
    gap: 48px;
}
section.quote .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

}
section.quote .text {
    position: relative;
}
section.quote .text h2 {
    color: #212121;
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.92px;
    text-wrap-style: balance;
    text-wrap: balance,
}
section.quote .text img {
    position: absolute;
    width: 320.962px;
    right: 150px;
    bottom: -7px;
    z-index: -1;
}
section.quote .author {
    color: #212121;
    text-align: right;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -0.48px;
}

section.customers {
    padding:128px 0 96px 120px;
    display: flex;
    justify-content: space-between;
    width: 1440px;
    max-width: 100%;
    margin: 0 auto;
    gap: 100px;
}
section.customers .left {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 441px;
    flex-shrink: 0;
}
section.customers .left h2 {
    color: #293137;
    font-size: 56px;
    font-weight: 600;
    line-height: 67.2px;
}
section.customers .left p {
    color: #293137;
    font-size: 22px;
    line-height: 32px;
}
section.customers .left .arrows {
    display: flex;
    gap: 12px;
}
section.customers .left .arrows .arrow {
    border-radius: 200px;
    box-shadow: 0px 8px 36px 0px rgba(17, 17, 17, 0.06);
    padding: 8px;
    width: 48px;
    height: 48px;
    transition: 0.25s ease;
}
section.customers .left .arrows .arrow.active {
    background: #EF8C5E;
    cursor: pointer;
}
section.customers .left .arrows .arrow path {
    fill: #EF8C5E;
}
section.customers .left .arrows .arrow.active path {
    fill: white;
}

section.customers .embla {
    overflow: hidden;
}
section.customers .embla__container {
    display: flex;
}
section.customers .embla__slide {
    /*width: 472px;*/
    width: 540px;
    flex-shrink: 0;
    transition: .4s ease-out;
    opacity: 0.3;
}
section.customers .embla__slide.active {
    opacity: 1;
}
section.customers .embla__slide img {
    width: 100%;
}

section.faq {
    background:#F9F9F9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px;
}
section.faq h2 {
    color: #293137;
    font-size: 56px;
    font-weight: 600;
    line-height: 67.2px;
    margin-bottom: 20px;
}
section.faq .desc {
    color: #CCC;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 15.81px;
    letter-spacing: -0.32px;
}
section.faq .questions {
    display: flex;
    flex-direction: column;
    width: 768px;
    max-width: 100%;
    margin-top: 32px;
}
section.faq .questions .question {
    padding-bottom: 32px;
    border-bottom: 1px solid #CCCCCC;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}
section.faq .questions .question:not(:first-of-type) {
    margin-top: 24px;
}
section.faq .questions .question .text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
section.faq .questions .question .text .bottom {
    display: none;
}
section.faq .questions .question h3 {
    color: #293137;
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
    cursor: pointer;
}
section.faq .questions .question .toggle {
    width: 24px;
    height: 24px;
    cursor: pointer;
}
section.faq .questions .question .toggle.minus {
    display: none;
}

section.faq .questions .question.active .toggle.plus {
    display: none;
}
section.faq .questions .question.active .toggle.minus {
    display: block;
}

section.mission {
    padding: 200px 80px 135px;
    display: flex;
    justify-content: center;
    gap: 64px;
    background: #F9F9F9;
}
section.mission .content {
    width: 1440px;
    max-width: 100%;
    justify-content: space-between;
    display: flex;

    position: relative;
    justify-content: flex-end;
}
section.mission .left {
    width: 380px;
    display: flex;
    flex-direction: column;

    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    left: 0;
}
section.mission .left .small {
    color: #CCC;
    font-size: 16px;
    font-weight: 500;
    line-height: 15.81px;
    letter-spacing: -0.32px;
}
section.mission .left .title {
    /*margin: 24px 0 8px;*/
    margin: 20px 0 10px;
    /*width: 347px;*/
    height: 85px;
    width: fit-content;
}

section.mission .right {
    display: flex;
    gap: 24px;
}
section.mission .right .small {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
section.mission .right .block {
    border-radius: 20px;
    display: flex;
    position: relative;
    color: #FFFFFF;
}
section.mission .right .block.first {
    background: linear-gradient(146deg, #EF8C5E 54.03%, #CB531B 94.06%);
    height: 169px;
    padding: 0px 20px 21px 24px;
    flex-shrink: 0;
    width: 340px;
    box-sizing: content-box;
    align-items: flex-end;
    font-family: Rubik;
}
section.mission .right .block.first .device {
    width: 248px;
    height: 248px;
    position: absolute;
    bottom: 5px;
    right: 4px;
}
section.mission .right .block.first h4 {
    font-size: 32px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.32px;
}
section.mission .right .block.first p {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.16px;
}

section.mission .right .block.second {
    flex-direction: column;
    background: #293137;
    align-items: flex-end;
    padding: 24px 24px 18px;
    justify-content: space-between;

    width: 384px;
    height: 253px;
    flex-shrink: 0;
}
section.mission .right .block.second .users {
    width: 130px;
}
section.mission .right .block .arrow {
    display: flex;
    width: fit-content;
    height: fit-content;
    border-radius: 200px;
    background: #FFF;
    box-shadow: 0px 8px 36px 0px rgba(17, 17, 17, 0.06);
    backdrop-filter: blur(10px);
    padding: 4px;
}
section.mission .right .block .arrow svg {
    width: 36px;
    height: 36px;
}
section.mission .right .block .count {
    display: flex;
    flex-direction: column;
    width: 100%;
    row-gap: 8px;
}
section.mission .right .block .count .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

section.mission .right .block .count .top p {
    font-family: Rubik;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.16px;
}
section.mission .right .block .count .top span {
    color: #EF8C5E;
    font-family: Rubik;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.2px;
}
section.mission .right .block .count .progress {
    border-radius: 200px;
    background: rgba(239, 140, 94, 0.20);

    display: flex;
    height: 8px;
}
section.mission .right .block .count .progress span {
    border-radius: 20px;
    background: linear-gradient(146deg, #EF8C5E 54.03%, #CB531B 94.06%);
    width: 50%;
    height: 100%
}

section.mission .right .block.second .bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

}
section.mission .right .block.second .bottom h3 {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 117%;
    letter-spacing: 0.32px;
}

section.mission .right .block.third {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.19) 0%, rgba(0, 0, 0, 0.19) 100%), url(img/our-mission-bg.webp) lightgray 50% / cover no-repeat;
    width: 384px;
    height: 466px;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px 15px 30px 24px;
}
section.mission .right .block.third .arrow {
    margin-left: auto;
}

section.mission .right .block.third .bottom {

}

section.mission .right .block.third .bottom h4 {
    font-family: Rubik;
    font-size: 32px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.32px;
}
section.mission .right .block.third .bottom h4 p {
    font-family: Rubik;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.16px;
}



.contact {
    background: #F9F9F9;
    padding: 64px 64px 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact h2 {
    color: #293137;
    font-size: 56px;
    font-weight: 600;
    line-height: 67.2px;
    margin-bottom: 20px;
}
.contact p {
    color: #293137;
    font-size: 22px;
    line-height: 32px;
}
.contact form {
    display: flex;
    /*flex-direction: column;*/
    width: 480px;
    max-width: 100%;
    flex-wrap: wrap;
    row-gap: 24px;
    column-gap: 32px;
    margin-top: 24px;
}
.contact form .row {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact form .row.half {
    width: calc(50% - 16px);
}

.contact form .row label {
    color: #293137;
    font-size: 16px;
    line-height: 24px;
}
.contact form .row input,
.contact form .row textarea {
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.32px;
}
.contact form .row textarea {
    height: 5lh;
    resize: vertical;
}

.contact form .check {
    display: flex;
    gap: 12px;
    color: #293137;
}
.contact form .check input {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    accent-color: #EF8C5E;
}
.contact form .check a {
    text-decoration: underline;
}

.contact form .buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    align-items: center;
}
.contact form .buttons .button {
    width: calc(100% - 54px);
    border: 1px solid #EF8C5E;
    cursor: pointer;
}
.contact form .buttons .arrow {
    width: 44px;
    height: 44px;
}


#overlay{
    background: rgba(41, 49, 55, 0.6);
    position: fixed;
    inset: 0;
    cursor: pointer;
    display: none;
    z-index: 10;
}

.popup {
    display: flex;
    width: 1312px;
    width: 900px;
    max-width: 90%;
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 42px;
    background: #F9F9F9;
    z-index: 11;

    display: none;
}

.thx-pop {
    height: 451px;
    gap: 15px;
    color: #293137;
    text-align: center;
    z-index: 10;
}
.thx-pop img {
    width: 150px;
    height: 150px;
}
.thx-pop h2 {
    font-size: 56px;
    font-weight: 600;
    line-height: 67.2px;
    margin-bottom: 5px;
}
.thx-pop p {
    font-size: 22px;
    font-weight: 400;
    line-height: 32px;
}

.popup-form .close {
    margin-left:auto;
    width: 48px;
    height: 48px;
    cursor: pointer;
}




footer {
    background: #293137;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.60);
    padding: 34px 0px;
    display: flex;
    justify-content: center;
}
footer img {
    width: 323px;
}

@media (max-width: 1340px) {
    section.quote .text img {
        right: 20px;
    }

    section.mission {
        padding:60px 80px 40px;
    }
    section.mission .content {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }
    section.mission .left {
        position: static;
        max-width: 100%;
        width: 792px;
        transform: unset;
    }
    section.mission .right {
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    h3 {
        font-size: 28px;
        line-height: 36px;
    }
    html.locked {
        overflow: hidden;
    }
    header .logo {
        width: 170px;
    }
    header .burger {
        display: flex;
    }
    header .content {
        padding: 16.5px 5%;
    }
    header .content .right {
        transition: 0.42s ease;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        left: 50%;
        width: 100%;
        background: #F9F8F7;
        height: 0px;
        transform: translate(-50%, 63px);
        top: 0px;
    }
    header.active .content .right {
        transform: translate(-50%, 0%);
        height: 100vh;
        top: 0px;
        z-index: 3;
        margin-bottom: 250px;
        margin-top: 50px;
    }
    header .content .right .lang .dropdown{
        position: static;
    }

    section.hero .bg {
        height: 650px;
    }

    section.benefits {
        padding: 55px 5%;
    }
    section.benefits .content {
        gap: 50px;
    }

    section.benefits .first .right {
        gap: 18px;
        padding: 34px 54px;
    }

    section.benefits .first .right h2 {
        font-size: 48px;
        line-height: 54px;
    }
    section.benefits .first .right p {
        font-size: 18px;
        line-height: 27px;
    }
    section.benefits .second .left img {
        height: 115px;
    }
    section.benefits .second .left.nor img {
        max-height: 115px;
        height: auto;
        max-width: 100%;
        width: auto;
    }
    section.benefits .second .right p {
        font-size: 18px;
        line-height: 27px;
    }
    section.benefits .third .right h4 {
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 5px;
    }
    section.benefits .third .right p {
        font-size: 18px;
        line-height: 27px;
    }
    section.benefits .third .left .pills {
        width: 285px;
    }
    section.benefits .third .left .pills .pill span {
        font-size: 40px;
        line-height: 50px;
    }
    section.benefits .third .left .pills .pill p {
        font-size: 17px;
        line-height: 24px;
    }



    section.how {
        padding: 50px 5%;

    }
    section.how .title {
        /*width: 340px;*/
        height: 61.5px;
        margin-bottom: 50px;
    }
    section.how .blocks .block {
        padding: 32px;
    }
    section.how .blocks .block.first .icon {
        width: 128px;
        margin: auto;
        margin: 35px auto 20px;
    }
    section.how .blocks .block.second .icon {
        width: 84px;
        /*margin: auto;*/
    }
    section.how .blocks .block.third .icon {
        width: 115.2px;
        margin: auto;
    }
    section.how .blocks .block h4 {
        margin-top: 28px;
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 14px;
    }
    section.how .blocks .block p {
        font-size: 18px;
        line-height: 27px;
    }

    section.cases .title {
        /*width: 250px;*/
        height: 56px;
        margin: 10px auto;
    }

    section.cases .blocks {
        padding: 40px 5%;
    }
    section.cases .blocks .block .text {
        gap: 14px;
        padding: 22px 24px;
    }
    section.cases .blocks .block .text p {
        font-size: 15px;
        line-height: 22px;
    }

    section.integrations
    {
        padding: 0 5%;
    }
    section.integrations .title {
        /*width: 298px;*/
        height: 56px;
        margin: 18px 0;
    }
    section.integrations .sponsors {
        column-gap: 40px;
        max-width: 100%;
    }
    section.integrations .sponsors .logo {
        margin: 0 !important;
    }

    section.enova .title {
        width: 295px;
    }
    section.enova .content {
        gap: 55px;
        padding: 0 5% 48px;
    }
    section.calculator {
        padding: 10px 5% 0;
    }
    section.calculator .title {
        /*width: 254px;*/
        height: 55px;
        margin: 24px 0;
    }
    section.calculator .content {
        gap: 24px;
    }
    section.calculator .left {
        max-width: 50%;
    }
    section.calculator .right {
        max-width: 50%;
    }
    section.calculator .left .text p br {
        display: block;
        content: "";
        margin-top: 12px;
    }

    section.guarantee {
        padding: 32px 5%;
        gap: 52px;
        min-height: 0;
    }

    section.guarantee .top .title {
        /*width: 305px;*/
        height: 122px;
    }
    section.guarantee .top p {
        font-size: 20px;
        line-height: 28px;
    }
    section.guarantee .content {
        gap: 22px;
    }
    section.guarantee .content .block img {
        margin: 0;
    }
    section.guarantee .content .block h4 {
        font-size: 20px;
        line-height: 24px;
        margin: 18px 0 10px;
    }
    section.guarantee .content .block p {
        font-size: 16px;
        line-height: 23px;
    }

    section.quote {
        padding: 80px 5% 42px;
        gap: 34px;
    }

    section.quote .text h2 {
        font-size: 40px;
    }
    section.quote .text img {
        bottom: -12px;
    }

    section.customers {
        padding: 66px 0 54px 5%;
        gap: 40px;
    }
    section.customers .left {
        gap: 16px;
    }
    section.customers .left h2 {
        font-size: 44px;
        line-height: 46px;
    }
    section.customers .left p {
        font-size: 20px;
        line-height: 27px;
    }
    section.customers .embla__slide {
        width: 480px;
    }
    section.customers .left .arrows .arrow {
        width: 42px;
        height: 42px;
        padding: 6px;
    }
    section.customers .left .arrows .arrow svg {
        width: 30px;
        height: 30px;
    }


    section.faq {
        padding: 30px 5%;
    }
    section.faq h2 {
        font-size: 44px;
        line-height: 46px;
        margin-bottom: 12px;
    }

    section.faq .questions .question {
        padding-bottom: 18px;
    }
    section.faq .questions .question h3 {
        font-size: 20px;
        line-height: 26px;
    }
    section.faq .questions .question .text .bottom {
        font-size: 15px;
        line-height: 20px;
    }
    section.faq .questions .question:not(:first-of-type) {
        margin-top: 20px;
    }

    section.mission {
        padding: 60px 5% 40px;
    }
    section.mission .left .title {
        /*width: 278px;*/
        height: 78px;
    }

    .contact {
        padding: 36px 5% 40px;
    }
    .contact h2 {
        font-size: 44px;
        line-height: 46px;
        margin-bottom: 10px;
        text-align: center;
    }
    .contact p {
        font-size: 20px;
        line-height: 27px;
        text-align: center;
    }

    .popup {
        padding: 32px !important;
    }
    .popup h2 {
        font-size: 44px;
        line-height: 46px;
        margin-bottom: 12px;
    }

    .thx-pop {
        height: 420px;
        max-height: 90%;
    }
    .thx-pop img {
        width: 100px;
        height: 100px;
    }
    .thx-pop h2 {
        margin-bottom: 0;
    }
}

@media (max-width: 1000px) {
    section.customers {
        flex-direction: column;
        gap: 10px;
        padding: 36px 0 18px 5%;
    }
    section.customers .left {
        max-width: 100%;
        width: 599px;
    }
}
@media (max-width: 900px) {
    section.benefits .first .left img {
        left: -85px;
    }
}

@media (max-width: 800px) {
    section.mission .right {
       gap: 18px;
        width: 100%;
    }
    section.mission .right .small {
        gap: 18px;
    }
    section.mission .right .block.third {
        width: calc(100% - 408px);
    }
}
@media (max-width: 750px){
    section.hero .bg {
        height: 550px;
    }
    section.hero .content {
        gap: 28px;
        left: 5%;
    }
    section.hero .content .title {
        height: 90px;
    }
    section.hero .content .title.nor {
        height: 145px;
    }

    section.benefits {
        padding-bottom: 40px;
    }
    section.benefits .content {
        gap: 42px;
    }
    section.benefits .first {
        flex-direction: column;
    }
    section.benefits .left,
    section.benefits .right {
        width: 100%;
    }
    section.benefits .first .left {
        border-radius: 40px 40px 0 0;
    }

    section.benefits .first .left img {
        position: static;
        height: auto;
        width: 150%;
    }
    section.benefits .first .right {
        border-radius: 0 0 40px 40px;
        padding: 30px 44px;
        gap: 10px;
    }
    section.benefits .first .right h2 {
        font-size: 38px;
        line-height: 44px;
    }
    section.benefits .first .right p {
        font-size: 16px;
        line-height: 24px;
    }

    section.benefits .second {
        flex-direction: column;
        gap: 22px;
    }

    section.benefits .third {
        flex-direction: column;
        gap: 28px;
    }
    section.benefits .left,
    section.benefits .right {
        width: 100%;
    }
    section.benefits .third .left .pills {
        flex-direction: row;
        width: auto;
        gap: 12px;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    section.benefits .third .left .pills::-webkit-scrollbar {
        display: none;
    }
    section.benefits .third .left .pills .pill {
        border: 1px solid #ccc;
        border-radius: 30px;
        margin: 0;
        min-width: 155px;
        padding: 10px 20px 14px;
    }
    section.benefits .third .left .pills .pill.active {
        padding: 10px 20px 14px;

    }
    section.benefits .third .left .pills .pill p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 1px;
    }
    section.benefits .third .right img {
        border-radius: 30px;
        margin-bottom: 26px;
    }
    section.benefits .third .right h4 {
        margin-bottom: 2px;
        padding-left: 2px;
    }

    section.benefits .third .right p {
        font-size: 17px;
        line-height: 24px;
        padding-left: 2px;
    }

    section.how .blocks {
        flex-direction: column;
        gap:20px;
    }
    section.how .blocks .block {
        width: 100%;
    }
    section.how .blocks .block .arrow {
        rotate: 90deg;
        left: calc(50% - 15px);
        bottom: -24px;
        top: unset;
    }

    section.cases .blocks {
        flex-direction: column;
    }
    section.cases .blocks .block {
        width: 500px;
        max-width: 100%;
        margin: auto;
    }

    section.integrations .sponsors .logo {
        width: 100px;
        height: 100px;
    }
    section.integrations .app {
        gap: 0px;
    }
    section.integrations .app .right {
        max-width: 55%;
    }

    section.enova .title {
        margin-bottom: 14px;
    }
    section.enova .content {
        flex-direction: column;
        gap: 16px;
    }
    section.enova .content .left {
        width: 350px;
        margin: 60px auto 10px;
        max-width: 100%;
    }
    section.calculator .left .text {
        margin-top: -8px;
    }
    section.enova .content .bg {
        opacity: 0.8;
    }
    section.enova .content .right {
        width: 100%;
        max-width: 100%;
        gap: 20px;
    }
    section.enova .content .right .text {
        font-size: 15px;
        line-height: 22px;
    }
    section.enova .content .right .text br {
        display: block;
        content: "";
        margin-top: 12px;
    }
    section.enova .content .right .text .border {
        width: fit-content;
    }

    section.calculator .content {
        flex-direction: column-reverse;
    }
    section.calculator .left {
        max-width: 100%;
    }
    section.calculator .right {
        max-width: 100%;
        width: 450px;
    }

    section.guarantee {
        gap: 32px;
        padding-top: 4px;
    }

    section.guarantee .top {
        flex-direction: column;
        gap: 6px;
    }
    section.guarantee .top  .title.desktop {
        display: none;
    }
    section.guarantee .top .title.mobile {
        display: block;
    }
    section.guarantee .top .title.nor {
        width: auto;
        height: 65px;
        margin-bottom: 14px;
    }
    section.guarantee .top p {
        text-align: center;
        font-size: 18px;
        line-height: 24px;
    }
    section.guarantee .content {
        flex-wrap: wrap;
    }
    section.guarantee .content .block {
        width: calc(50% - 11px);
    }
    section.guarantee .content .block img {
        height: 48px;
    }
    section.guarantee .content .block h4 {
        font-size: 18px;
        margin: 14px 0 5px;
    }
    section.guarantee .content .block p {
        font-size: 15px;
        line-height: 21px;
    }

    section.quote {
        padding: 40px 5% 20px;
        gap: 22px;
    }
    section.quote .text h2 {
        font-size: 32px;
    }
    section.quote .text img {
        width: 200px;
        bottom: -6px;
    }
    section.quote .author {
        font-size: 20px;
    }

    section.customers {
        padding: 40px 0 60px 5%;
        position: relative;
        gap: 8px;
    }
    section.customers .left {
        gap: 12px;
        text-align: center;
    }
    section.customers .left h2 {
        font-size: 38px;
        line-height: 40px;
    }
    section.customers .left p {
        font-size: 18px;
        line-height: 24px;
    }

    section.customers .left .arrows {
        position: absolute;
        bottom: 0;
        left: calc(50% - 48px);
        padding-bottom: 30px;
    }

    section.faq h2 {
        font-size: 38px;
        line-height: 40px;
    }

    section.mission {
        padding: 40px 5% 30px;
    }
    section.mission .content {
        gap: 28px;
    }
    section.mission .left {
        align-items: center;
        text-align: center;
    }
    section.mission .left .title {
        margin: 10px 0 12px;
    }
    section.mission .right {
        flex-direction: column;
        align-items: center;
    }
    section.mission .right .block.third {
        width: 384px;
        height: 330px;
    }

    .contact h2 {
        font-size: 38px;
        line-height: 40px;
    }
    .contact p {
        font-size: 17px;
        line-height: 22px;
    }
    .contact form {
        gap: 16px;
    }
    .contact form .row.half {
        width: calc(50% - 8px);

    }
    .contact form .row label,
    .contact form .check {
        font-size: 14px;
        line-height: 18px;
    }
    .contact form .check {
        text-align: center;
    }

    .popup-form .close {
        width: 40px;
        height: 40px;
        margin-bottom: -16px;
    }

    .thx-pop {
        height: 300px;
        gap: 10px;
    }

    .popup h2 {
        font-size: 38px;
        line-height: 40px;
    }

    .thx-pop img {
        width: 75px;
        height: 75px;
        margin: -5px 0 5px;
    }
    .thx-pop p {
        font-size: 19px;
        line-height: 24px;
    }
    footer {
        padding: 30px 0;
    }
    footer img {
        width: 280px;
    }
}
@media (max-width: 550px) {
    h3 {
        font-size: 24px;
        line-height: 30px;
    }
    section.hero .bg {
        height: 500px;
    }
    section.hero .content .title.desktop {
        display: none;
    }
    section.hero .content .title.mobile {
        display: block;
        width: calc(50% + 30px);
        height: auto;
    }
    section.hero .content .title.mobile.nor {
        width: calc(50% + 40px);

    }


    section.benefits {
        padding-top: 40px;
    }
    section.benefits .first .left {
        border-radius: 30px 30px 0 0;

    }
    section.benefits .first .left img {
        width: 200%;
    }

    section.benefits .first .right {
        /*padding: 18px 26px;*/
        padding: 16px 24px 20px;
        border-radius: 0 0 30px 30px;
        gap: 6px;
    }
    section.benefits .first .right h2 {
        font-size: 28px;
        line-height: 34px;
    }
    section.benefits .first .right p {
        font-size: 14px;
        line-height: 21px;
    }

    section.benefits .second .left img {
        height: auto;
        width: 260px;
        max-width: 100%;
    }

    section.how .title {
        /*width: 260px;*/
        max-width: 100%;
        width: auto;
        max-height: 47px;
        margin-bottom: 30px;
        height: auto;
    }


    section.how .blocks .block {
        padding:25px;
    }
    section.how .blocks .block.first .icon {
        width: 102px;
        margin: auto;
    }

    section.how .blocks .block.second .icon {
        width: 67px;
        margin: auto;
    }
    section.how .blocks .block.third .icon {
        width: 92px;
        margin: auto;
    }

    section.how .blocks .block h4 {
        margin-top: 18px;
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 27px;
    }
    section.how .blocks .block p {
        font-size: 17px;
        line-height: 24px;
    }

    section.cases .title {
        /*width: 220px;*/
        width: auto;
        height: auto;
        max-height: 49px;
        max-width: 100%;
        margin: 0 auto;
    }

    section.integrations .title {
        /*width: 246px;*/
        max-height: 46px;
        height: auto;
        max-width: 100%;
        width: auto;
        margin: 0 0 8px;
    }
    section.integrations .sponsors .logo {
        width: 80px;
        height: 80px;
    }
    section.integrations .app {
        margin-top: 30px;
        flex-direction: column;
        width: 100%;
    }
    section.integrations .app .left {
        gap: 8px;
        text-align: center;
    }
    section.integrations .app .left p {
        font-size: 15px;
        line-height: 20px;
    }
    section.integrations .app .left p br {
        display: none;
    }
    section.integrations .app .right {
        max-width: 100%;
        width: 100%;
        margin-top: 10px;
        margin-bottom: -14%;
        z-index: -1;
    }

    section.enova .title {
        width: 242px;
        margin-bottom: 0;
    }
    section.enova .content .right .text .border {
        padding: 15px 16px;

    }
    section.enova .content .right .buttons .button {
        width: 100%;
        padding: 12px 20px;
    }

    section.calculator .title {
        margin-bottom: 16px;
        /*width: 200px;*/
        max-height: 43.5px;
        height: auto;
        width: auto;
        max-width: 100%;
    }

    section.calculator .left {
        gap: 20px;
    }
    section.calculator .left .text {
        font-size: 15px;
        line-height: 22px;
    }
    section.calculator .left .text p br {
        margin-top: 7px;
    }
    section.calculator .left .point {
        gap: 12px;
    }
    section.calculator .left .point img {
        width: 28px;
    }
    section.calculator .left .border {
        padding: 15px 16px;
    }

    section.calculator .left .buttons .button {
        width: 100%;
        padding: 12px 20px;
    }


    section.guarantee .content .block {
        width: 100%;
    }
    section.guarantee .top .title {
        width: 245px;
        height: auto;
    }
    section.guarantee .top .title.nor {
        width: auto;
        height: 50px;
        margin-bottom: 10px;
    }
    section.guarantee .top p {
        font-size: 17px;
        line-height: 21px;
    }

    section.quote .text h2 {
        font-size: 27px;
        line-height: 131%;
    }
    section.quote .text img {
        width: 120px;
        right: 30px;
    }
    section.quote .author {
        font-size: 17px;
    }

    section.customers {
        padding: 30px 5% 60px;
    }
    section.customers .left {
        gap: 8px;
    }
    section.customers .left h2 {
        font-size: 32px;
        line-height: 36px;
    }
    section.customers .left p {
        font-size: 16px;
        line-height: 22px;
    }
    section.customers .embla__slide {
        width: 103%;
    }
    section.customers .left .arrows {
        left: calc(50% - 41px);
    }
    section.customers .left .arrows .arrow {
        height: 35px;
        width: 35px;
        padding: 5px;

    }
    section.customers .left .arrows .arrow svg {
        width: 26px;
        height: 26px;
    }

    section.faq h2 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 8px;
    }
    section.faq .desc {
        font-size: 14px;
    }
    section.faq .questions {
        margin-top: 24px;

    }
    section.faq .questions .question {
        gap: 14px;
    }
    section.faq .questions .question h3 {
        font-size: 18px;
        line-height: 22px;
    }
    section.faq .questions .question .text .bottom {
        font-size: 14px;
        line-height: 18px;
    }
    section.faq .questions .question .toggle {
        width: 20px;
        height: 20px;
    }

    section.mission {
        padding: 20px 5%;
    }
    section.mission .left .small {
        font-size: 14px;
        line-height: 13px;
    }
    section.mission .left .title {
        /*width: 210px;*/
        max-height: 59px;
        max-width: 100%;
        height: auto;
        width: auto;
    }
    section.mission .left .normal {
        font-size: 14px;
    }
    section.mission .right .small,
    section.mission .right .block.first,
    section.mission .right .block.second,
    section.mission .right .block.third {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    section.mission .right .block.first {
       padding:  0px 14px 17px 17px
    }
    section.mission .right .block.first .device {
        height: auto;
        width: 56%;
        max-width: 220px;
        bottom: unset;
        top: -38px;
    }

    section.mission .right .block.first h4 {
        font-size: 30px;
        line-height: 120%;
    }
    section.mission .right .block.first p {
        font-size: 15px;
        line-height: 130%;
    }

    section.mission .right .block.second {
        height: auto;
        gap: 18px;
        padding: 17px;
    }
    section.mission .right .block .count .top p {
        font-size: 15px;
        line-height: 130%;
    }
    section.mission .right .block .count .top span {
        font-size: 18px;
    }
    section.mission .right .block.second .bottom h3 {
        font-size: 24px;
    }
    section.mission .right .block.second .bottom {
        gap: 8px;
        width: 100%;
    }
    section.mission .right .block.second .users {
        width: 110px;
    }
    section.mission .right .block .arrow {
        padding:0px;
    }
    section.mission .right .block.third {
        padding: 17px;
        height: auto;
        aspect-ratio: 1 / 1;
    }
    section.mission .right .block.third .bottom h4 {
        font-size: 30px;
        line-height: 120%;
    }
    section.mission .right .block.third .bottom p {
        font-size: 15px;
        line-height: 130%;
    }

    .contact {
        padding-top: 24px;
    }
    .contact h2 {
        font-size: 32px;
        line-height: 36px;
        margin-bottom: 8px;
    }
    .contact p {
        font-size: 16px;
        line-height: 21px;
    }
    .contact form {
        margin-top: 20px;
    }

    .contact form .row.half {
        width: 100%;
    }

    .contact form .row input,
    .contact form .row textarea {
        font-size: 15px;
        line-height: 20px;
        padding: 8px 12px;
        height: 40px;
    }
    .contact form .row textarea {
        height: 5lh;
    }
    .popup {
        padding: 20px 24px !important;
        border-radius: 30px;
    }
    .popup h2 {
        font-size: 32px;
        line-height: 36px;
    }
    .popup-form .close {
        width: 34px;
        height: 34px;
        margin-right: -6px;
        margin-top: -2px;
    }

    .popup-form.contact form .check {
        font-size: 13px;
        line-height: 16px;
    }
    .popup-form.contact form .check input {
        width: 16px;
        height: 16px;
    }
    .popup-form.contact h2 {
        font-size: 30px;
        line-height: 34px;
        margin-bottom: 6px;
    }
    .popup-form.contact p {
        font-size: 15px;
        line-height: 19px;
    }
    .popup-form.contact form .buttons .button {
        padding: 10px;
    }

    .thx-pop {
        height: auto;
        padding: 28px 20px !important;
    }
    .thx-pop p {
        font-size: 16px;
        line-height: 21px;
    }
    .thx-pop img {
        width: 65px;
        height: 65px;
        margin: 0;
    }

    footer {
        padding: 27px 0;
    }
    footer img {
        width: 230px;
        max-width: 90%;
    }
}

.embla__slide {
    cursor: grab;
}
.embla__slide:active {
    cursor: grabbing;

}

.embla.features .embla__slide:not(:last-child) {
    margin-bottom: 50px;
}

.embla.features .embla__container {
    display: flex;
    flex-direction: column;
}

.embla.features .embla__slide {
    flex: 0 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 749px) {
    .embla.features .embla__container {
        flex-direction: row;
    }

    .embla.features .embla__slide {
        margin-bottom: 0 !important;
        margin-right: 50px;
        width: 100%;
    }
}


.fade-section,
.fade-item {
    opacity: 0;
    transform: translateY(30px);
    transition:  0.8s ease-out;
}
.fade-section.first {
    transition:  1s ease-out;
    transform: none;
}

.fade-item {
    transform: translateX(-50px);
}
.fade-item .arrow {
    transform: translateX(-20px);
    transition:  0.3s ease-out 0.7s;
}
.fade-row .fade-item:nth-child(2) .arrow {
    transition-delay: 0.88s;
}


@media (max-width: 750px){
    .fade-item {
        transform: translateY(-50px);
    }
    .fade-item .arrow {
        transform: translateX(-10px);
    }
}
.fade-in {
    opacity: 1;
    transform: none;

}
.fade-in .arrow {
    transform: none;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}