@charset "UTF-8";
@keyframes wiggle {
    0%,
    to {
        transform: translateX(0);
    }
    25% {
        transform: translateX(3px);
    }
    75% {
        transform: translateX(-3xp);
    }
}

@font-face {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local("Gilroy Regular"), url(../fonts/gilroy/Gilroy-Regular.woff2) format("woff2"), url(../fonts/gilroy/Gilroy-Regular.woff) format("woff"), url(../fonts/gilroy/Gilroy-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: local("Gilroy Medium"), url(../fonts/gilroy/Gilroy-Medium.woff2) format("woff2"), url(../fonts/gilroy/Gilroy-Medium.woff) format("woff"), url(../fonts/gilroy/Gilroy-Medium.ttf) format("truetype");
}

@font-face {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local("Gilroy Semibold"), url(../fonts/gilroy/Gilroy-Semibold.woff2) format("woff2"), url(../fonts/gilroy/Gilroy-Semibold.woff) format("woff"), url(../fonts/gilroy/Gilroy-Semibold.ttf) format("truetype");
}

@font-face {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local("Gilroy Bold"), url(../fonts/gilroy/Gilroy-Bold.woff2) format("woff2"), url(../fonts/gilroy/Gilroy-Bold.woff) format("woff"), url(../fonts/gilroy/Gilroy-Bold.ttf) format("truetype");
}

html {
    scroll-behavior: smooth;
}

blockquote,
h1,
h2,
h3,
p,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

.main-nav--closed .main-nav__toggle:hover::before,
a:active {
    opacity: 0.6;
}

a,
button {
    cursor: pointer;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

.btn {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 28px;
    color: #fff;
    background-color: #4d6bfe;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    border-radius: 100px;
    border: 1px solid #4d6bfe;
}

.btn svg {
    fill: #fff;
}

.btn:hover {
    background: #fff;
    color: #4d6bfe;
    opacity: 1;
}

.btn:hover svg {
    fill: #4d6bfe;
}

.btn:active {
    opacity: 0.8;
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.btn:disabled:hover {
    color: #fff;
    background-color: #4d6bfe;
    opacity: 0.5;
}

.btn:disabled:hover svg {
    fill: #fff;
}

.container {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 125px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

.heading {
    font-size: 64px;
    font-weight: 500;
    line-height: 68px;
    letter-spacing: 0.64px;
}

@media (max-width: 768px) {
    .heading {
        font-size: 32px;
        font-weight: 600;
        line-height: 36px;
    }
}

.desktop-only {
    display: flex !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: flex !important;
    }
}

.home__video button:hover svg,
.logo {
    fill: #4d6bfe;
}

@media (max-width: 768px) {
    .logo-link {
        z-index: 5;
    }
}

.page-body {
    max-width: 1920px;
    margin: 0 auto;
    font-family: "Gilroy", "Arial", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    background: #000;
}

.page-header {
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    padding-bottom: 28px;
}

@media (max-width: 768px) {
    .page-header {
        padding-top: 21px;
        padding-bottom: 21px;
    }
    .page-header__img {
        z-index: 3;
        position: relative;
        width: 109px;
        height: 38px;
    }
    .main__img {
        max-width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.page-footer {
    display: flex;
    justify-content: space-between;
    gap: 200px;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .page-footer {
        flex-direction: column;
        gap: 15px;
        padding-top: 36px;
        padding-bottom: 16px;
    }
}

.page-footer__wrapper {
    display: flex;
    align-items: center;
    gap: 26px;
}

@media (max-width: 768px) {
    .page-footer__wrapper {
        flex-direction: column;
        align-items: start;
    }
}

.main-nav {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .main-nav {
        z-index: 4;
        box-sizing: border-box;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        min-height: 100vh;
        width: 100%;
        padding: 25px 16px;
        background: black;
    }
    .main-nav svg {
        fill: white;
    }
    .main-nav .main-nav__item>a {
        color: white;
    }
    .main-nav--closed {
        background: 0 0;
        min-height: 85px;
    }
    .main-nav--closed .btn,
    .main-nav--closed .main-nav__list {
        display: none;
    }
}

.form_message.error.inactive,
.main-nav--nojs .main-nav__toggle {
    display: none;
}

@media (max-width: 768px) {
    .main-nav--nojs .main-nav__list {
        display: flex;
    }
}

.main-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

@media (max-width: 768px) {
    .main-nav__list {
        justify-content: center;
        margin-top: 70px;
        display: flex;
    }
}

.main-nav__item a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

@media (max-width: 768px) {
    .main-nav__item {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 100%;
        min-height: 28px;
        margin-bottom: 10px;
    }
    .main-nav__item:last-child {
        margin-top: 50px;
    }
}

.main-nav__toggle {
    position: absolute;
    top: 20px;
    right: 16px;
    display: none;
    z-index: 2;
    width: 60px;
    height: 60px;
    padding: 18px;
    background-color: transparent;
    border: 0;
    border-radius: 50%;
    background: #4d6bfe;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-nav__toggle {
        display: block;
    }
}

.main-nav--closed .main-nav__toggle::before {
    content: "";
    position: absolute;
    top: 43%;
    right: 50%;
    transform: translate(50%);
    width: 20px;
    height: 2px;
    background-color: #fff;
    box-shadow: 0 4px 0 0 #fff, 0 8px 0 0 #fff;
    border-radius: 15px;
    transition: all ease-in-out 500ms;
}

.main-nav--closed .main-nav__toggle:active::before {
    opacity: 0.3;
}

.main-nav--opened .main-nav__toggle::after,
.main-nav--opened .main-nav__toggle::before {
    content: "";
    position: absolute;
    top: 47%;
    right: 30%;
    width: 24px;
    height: 2px;
    background-color: #fff;
    border-radius: 15px;
    transition: all ease-in-out 500ms;
}

.main-nav--opened .main-nav__toggle::before {
    transform: rotate(45deg);
    box-shadow: none;
}

.main-nav--opened .main-nav__toggle::after {
    transform: rotate(-45deg);
}

.main-nav--opened .main-nav__toggle:hover::after,
.main-nav--opened .main-nav__toggle:hover::before {
    opacity: 0.6;
}

.main-nav--opened .main-nav__toggle:active::after,
.main-nav--opened .main-nav__toggle:active::before {
    opacity: 0.3;
}

.home {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    padding-top: 40px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .home {
        flex-direction: column;
    }
}

.home__wrapper {
    display: flex;
    flex-direction: column;
}

.home__wrapper--video {
    min-width: 55%;
    position: relative;
}

@media (max-width: 768px) {
    .home__wrapper--video {
        min-width: unset;
        padding: 0;
    }
}

.home__video-text-wrapper {
    position: absolute;
    bottom: 50px;
    left: 50px;
}

@media (max-width: 768px) {
    .home__video-text-wrapper {
        bottom: 30px;
        left: 10px;
        padding-right: 30px;
    }
}

.home__video-text {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    font-size: 40px;
    font-weight: 300;
    line-height: 40px;
}

.home__video-text span.accent {
    font-size: 128px;
    line-height: 86px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .home__video-text {
        font-size: 21.576px;
        line-height: 21.576px;
    }
    .home__video-text span.accent {
        margin-bottom: 15px;
        font-size: 69.042px;
        line-height: 46.388px;
    }
}

.home__heading {
    display: inline-block;
    max-width: 820px;
    margin-bottom: 18px;
    font-size: 82px;
    font-style: normal;
    font-weight: 400;
    line-height: 86px;
}

.home__heading span {
    font-style: italic;
    font-weight: 600;
    color: #4d6bfe;
}

@media (max-width: 768px) {
    .home__heading {
        font-size: 44px;
        line-height: 52px;
    }
}

.home__about {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .home__about {
        font-size: 16px;
    }
}

.home__video-bcg {
    box-sizing: border-box;
    height: -moz-max-content;
    height: max-content;
    background: url(../img/bcg/video-bcg-2.webp) 100% 100% / auto no-repeat, url(../img/bcg/video-bcg.webp) center/cover no-repeat;
}

@media (max-width: 768px) {
    .home__video-bcg {
        width: 100%;
        height: 346px;
        background: url(../img/bcg/video-bcg-2-mob.webp) 100% 100% / auto no-repeat, url(../img/bcg/video-bcg-mob.webp) center/cover no-repeat;
    }
}

.home__video {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 1;
    overflow: hidden;
}

.home__btn span,
.home__video button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.home__video button {
    z-index: 3;
    position: absolute;
    top: 34px;
    right: 34px;
    padding: 0;
    width: 80px;
    height: 80px;
    border: 0;
    background: #4d6bfe;
    animation: wiggle 0.2s ease-in-out infinite;
}

.home__video button svg {
    margin-left: 8px;
    fill: #fff;
}

.home__video button:hover {
    background: #fff;
}

@media (max-width: 768px) {
    .home__video button {
        top: 14px;
        right: 14px;
        width: 50px;
        height: 50px;
    }
    .home__video button svg {
        width: 30px;
        height: 30px;
    }
}

.home__btn {
    justify-content: space-between;
    height: 82px;
    max-width: 360px;
    padding: 0 0 0 35px;
    font-size: 20px;
    border-radius: 44px;
}

.home__btn span {
    height: 78px;
    width: 78px;
    background: #000;
    border: 1px solid #fff;
}

.home__btn,
.home__btn:hover {
    color: #000;
    background: #fff;
}

.home__btn:hover span {
    background: #4d6bfe;
}

.home__btn:hover svg {
    fill: #fff;
}

@media (max-width: 768px) {
    .home__btn {
        height: 60px;
        max-width: unset;
        margin-bottom: 15px;
    }
    .home__btn span {
        box-sizing: border-box;
        height: 60px;
        width: 60px;
    }
}

.discover {
    display: flex;
    flex-direction: column;
    gap: 62px;
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    .discover {
        padding: 16px;
        gap: 16px;
    }
}

.discover__text-wrapper {
    display: flex;
    gap: 62px;
}

.discover__text-wrapper * {
    width: 50%;
}

@media (max-width: 768px) {
    .discover__text-wrapper {
        flex-direction: column;
        gap: 16px;
    }
    .discover__text-wrapper * {
        width: 100%;
    }
}

.discover__heading {
    font-size: 48px;
    font-weight: 500;
    line-height: 58px;
    letter-spacing: 0.48px;
}

@media (max-width: 768px) {
    .discover__heading {
        font-size: 32px;
        font-style: normal;
        font-weight: 600;
        line-height: 36px;
    }
}

.discover__about {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.24px;
}

.discover__list {
    display: flex;
    gap: 26px;
}

@media (max-width: 768px) {
    .discover__list {
        flex-direction: column;
    }
}

.discover__card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 460px;
    padding: 26px;
    font-size: 24px;
    line-height: 42px;
    letter-spacing: 0.24px;
    color: #101010;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
    background-color: #fff;
    border-radius: 42px;
    overflow: hidden;
}

.discover__card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: 101% 101%;
    background-size: 60%;
    z-index: 0;
    border-radius: inherit;
}

.discover__card--1::before {
    background-image: url(../img/bcg/discover-bcg-1.webp);
}

.discover__card--2::before {
    background-image: url(../img/bcg/discover-bcg-2.webp);
    border-radius: inherit;
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.discover__card--3::before {
    background-image: url(../img/bcg/discover-bcg-3.webp);
}

.discover__card--reverse .discover__text {
    order: 2;
}

.discover__card--reverse .discover__more-info {
    display: flex;
    order: 1;
}

.discover__card--reverse::before {
    background-position: 101% -1%;
}

.discover__card>* {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .discover__card::before {
        content: "";
        position: absolute;
        inset: 0;
        background-repeat: no-repeat;
        background-position: 101% 101%;
        background-size: 48%;
        z-index: 0;
        border-radius: inherit;
    }
    .discover__card--reverse::before {
        background-position: 101% -1%;
    }
}

.discover__more-info {
    font-size: 16px;
    font-style: italic;
    font-weight: 265;
    line-height: 16px;
    letter-spacing: 1.28px;
}

.calculator .btn,
.discover__btn {
    width: -moz-fit-content;
    width: fit-content;
}

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 180px;
}

.about>* {
    width: 48%;
}

@media (max-width: 768px) {
    .about {
        flex-direction: column;
        gap: 26px;
        padding: 16px;
    }
    .about>* {
        width: 100%;
    }
}

.about__list {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}

@media (max-width: 768px) {
    .about__list {
        order: 2;
    }
}

.about__item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 46%;
    padding: 16px 16px 32px;
    color: #101010;
    background: #fff;
    border-radius: 42px;
    border: 1px solid #9e9e9e;
}

@media (max-width: 768px) {
    .about__item {
        max-width: 100%;
    }
}

.about__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    background: #f2f2f2;
}

.about__sub-heading {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.24px;
}

.about__text,
.calculator__potential-wraper p {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.2px;
}

.about__text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 768px) {
    .about__text-wrapper {
        order: 1;
    }
}

.about__about {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.24px;
}

.form {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-width: 470px;
    border-radius: 42px;
    background: #fff;
}

@media (max-width: 768px) {
    .form {
        width: 100%;
    }
}

.form__heading,
input {
    box-sizing: border-box;
    font-weight: 400;
}

.form__heading {
    display: flex;
    padding: 36px 26px 26px;
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.32px;
    background: #4d6bfe;
    border-radius: 42px 42px 0 0;
}

.form__wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 26px;
}

input {
    padding: 16px;
    font-size: 16px;
    line-height: 22px;
    color: #101010;
    border-radius: 12px;
    border: 1px solid #9e9e9e;
}

.form_message {
    margin-right: auto !important;
    margin-left: auto !important;
}

.form_message.error.active {
    display: block;
    color: #0a0a0a;
}

.error {
    color: rgba(223, 94, 99, 0.87);
    border-color: rgba(223, 94, 99, 0.87) !important;
}

label.error {
    margin-top: -8px;
    text-align: left;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
}

#phone1-error,
#phone2-error {
    display: flex;
    margin-top: 10px;
}

.calculator {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 180px;
}

@media (max-width: 768px) {
    .calculator {
        flex-direction: column;
        gap: 26px;
        padding: 16px;
    }
    .calculator__heading {
        font-weight: 700;
    }
}

.calculator__text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
}

.calculator__about,
.profit__wrapper label {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0.24px;
}

.calculator__wrapper {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    max-width: 1020px;
    padding: 14px;
    background-color: #fff;
    border-radius: 42px;
    box-shadow: 0 5.662px 14.154px 0 rgba(0, 0, 0, 0.13);
}

.calculator__wrapper>* {
    width: 50%;
}

@media (max-width: 768px) {
    .calculator__wrapper {
        width: unset;
        flex-direction: column;
        gap: 35px;
    }
    .calculator__wrapper>* {
        width: 100%;
    }
}

.calculator__potential-wraper {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.calculator__potential-wraper h3 {
    font-size: 24px;
    font-weight: 600;
    color: #101010;
}

.calculator__potential-wraper span {
    color: #4d6bfe;
    font-size: 39px;
    font-weight: 700;
}

.calculator__potential-wraper p {
    color: #101010;
}

@media (max-width: 768px) {
    .calculator__potential-wraper {
        gap: 15px;
    }
}

.profit__wrapper {
    box-sizing: border-box;
    padding: 21px 28px;
    color: #fff;
    background-color: #4d6bfe;
    border-radius: 32px;
    box-shadow: 0 5.662px 14.154px 0 rgba(0, 0, 0, 0.13);
}

.profit__wrapper span.irs-max,
.profit__wrapper span.irs-min {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.2px;
    opacity: 0.5;
}

.profit__wrapper label {
    font-weight: 500;
    line-height: 28px;
}

@media (max-width: 768px) {
    .profit__wrapper label {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 0.2px;
    }
    .profit__wrapper span.irs-max,
    .profit__wrapper span.irs-min {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.16px;
    }
}

.profit__heading {
    margin-bottom: 30px;
    color: #fff;
}

@media (max-width: 768px) {
    .profit__heading {
        margin-bottom: 15px;
        text-align: center;
        text-shadow: 3px 0 7px gray;
    }
}

.calculator__result {
    display: flex;
    font-size: 48px;
    font-weight: 500;
    line-height: 58px;
    letter-spacing: 0.48px;
}

@media (max-width: 768px) {
    .calculator__result {
        font-size: 28px;
        line-height: 32px;
        letter-spacing: 0.28px;
    }
}

#calcResult {
    margin-bottom: 35px;
}

.discover-about-calculator-wrapper {
    position: relative;
    z-index: 1;
}

.discover-about-calculator-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/bcg/d-a-c-bcg.webp) no-repeat;
    background-size: auto;
    opacity: 0.2;
    z-index: -1;
}

/*!Ion.RangeSlider, 2.3.1, © Denis Ineshin, 2010 - 2019, IonDen.com, Build date: 2019-12-19 16:51:02*/

.irs,
.irs-line {
    position: relative;
    display: block;
}

.irs {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 12px;
    font-family: "Montserrat", "Arial", sans-serif;
}

.irs-line {
    overflow: hidden;
    outline: 0 !important;
}

.irs-bar,
.irs-shadow {
    position: absolute;
    display: block;
    left: 0;
    width: 0;
}

.irs-shadow {
    display: none;
}

.irs-handle {
    box-sizing: border-box;
    z-index: 1;
}

.irs-handle.type_last {
    z-index: 2;
}

.irs-handle,
.irs-max,
.irs-min {
    position: absolute;
    display: block;
    cursor: default;
}

.irs-min {
    left: 0;
}

.irs-max {
    right: 0;
}

.irs-from,
.irs-single,
.irs-to {
    position: absolute;
    display: block;
    bottom: -70px;
    left: 0;
    cursor: default;
    white-space: nowrap;
}

.irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}

.irs-with-grid .irs-grid {
    display: block;
}

.irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000;
}

.irs-grid-pol.small {
    height: 4px;
}

.irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    padding: 0 3px;
    color: #000;
}

.irs-disable-mask {
    position: absolute;
    display: block;
    top: 0;
    left: -1%;
    width: 102%;
    height: 100%;
    cursor: default;
    background: 0 0;
    z-index: 2;
}

.lt-ie9 .irs-disable-mask {
    background: #000;
    filter: alpha(opacity=0);
    cursor: not-allowed;
}

.irs-disabled {
    opacity: 0.4;
}

.irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    outline: 0 !important;
    z-index: -9999 !important;
    background: 0 0 !important;
    border-style: solid !important;
    border-color: transparent !important;
}

.irs--flat {
    height: 40px;
}

.irs--flat.irs-with-grid {
    height: 60px;
}

.irs--flat .irs-line {
    top: 25px;
    height: 12px;
    background-color: #e1e4e9;
    border-radius: 4px;
}

.irs--flat .irs-bar {
    top: 25px;
    height: 12px;
    background-color: #ed5565;
}

.irs--flat .irs-bar--single {
    border-radius: 4px 0 0 4px;
}

.irs--flat .irs-shadow {
    height: 1px;
    bottom: 16px;
    background-color: #e1e4e9;
}

.irs--flat .irs-handle {
    top: 22px;
    width: 16px;
    height: 18px;
    background-color: transparent;
}

.irs--flat .irs-handle>i:first-child {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    background-color: #da4453;
}

.irs--flat .irs-handle.state_hover>i:first-child,
.irs--flat .irs-handle:hover>i:first-child {
    background-color: #a43540;
}

.irs--flat .irs-max,
.irs--flat .irs-min {
    top: 0;
    padding: 1px 3px;
    color: #999;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    background-color: #e1e4e9;
    border-radius: 4px;
}

.irs--flat .irs-from,
.irs--flat .irs-single,
.irs--flat .irs-to {
    color: #fff;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #ed5565;
    border-radius: 4px;
}

.irs--flat .irs-from:before,
.irs--flat .irs-single:before,
.irs--flat .irs-to:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #ed5565;
}

.irs--flat .irs-grid-pol {
    background-color: #e1e4e9;
}

.irs--flat .irs-grid-text {
    color: #999;
}

.irs--big,
.irs--modern {
    height: 55px;
}

.irs--big.irs-with-grid {
    height: 70px;
}

.irs--big .irs-line {
    top: 33px;
    height: 12px;
    background-color: #fff;
    background: linear-gradient(to bottom, #ddd -50%, #fff 150%);
    border: 1px solid #ccc;
    border-radius: 12px;
}

.irs--big .irs-bar {
    top: 33px;
    height: 12px;
    background-color: #92bce0;
    border: 1px solid #428bca;
    background: linear-gradient(to bottom, #fff 0, #428bca 30%, #b9d4ec 100%);
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.5);
}

.irs--big .irs-bar--single {
    border-radius: 12px 0 0 12px;
}

.irs--big .irs-shadow {
    height: 1px;
    bottom: 16px;
    background-color: rgba(66, 139, 202, 0.5);
}

.irs--big .irs-handle {
    top: 25px;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    background-color: #cbcfd5;
    background: linear-gradient(to bottom, #fff 0, #b4b9be 30%, #fff 100%);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), inset 0 0 3px 1px #fff;
    border-radius: 30px;
}

.irs--big .irs-handle.state_hover,
.irs--big .irs-handle:hover {
    border-color: rgba(0, 0, 0, 0.45);
    background-color: #939ba7;
    background: linear-gradient(to bottom, #fff 0, #919ba5 30%, #fff 100%);
}

.irs--big .irs-max,
.irs--big .irs-min {
    top: 0;
    padding: 1px 5px;
    color: #fff;
    text-shadow: none;
    background-color: #9f9f9f;
    border-radius: 3px;
}

.irs--big .irs-from,
.irs--big .irs-single,
.irs--big .irs-to {
    color: #fff;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #428bca;
    background: linear-gradient(to bottom, #428bca 0, #3071a9 100%);
    border-radius: 3px;
}

.irs--big .irs-grid-pol {
    background-color: #428bca;
}

.irs--big .irs-grid-text {
    color: #428bca;
}

.irs--modern.irs-with-grid {
    height: 55px;
}

.irs--modern .irs-line {
    top: 25px;
    height: 5px;
    background-color: #d1d6e0;
    background: linear-gradient(to bottom, #e0e4ea 0, #d1d6e0 100%);
    border: 1px solid #a3adc1;
    border-bottom-width: 0;
    border-radius: 5px;
}

.irs--modern .irs-bar {
    top: 25px;
    height: 5px;
    background: #20b426;
    background: linear-gradient(to bottom, #20b426 0, #18891d 100%);
}

.irs--modern .irs-bar--single {
    border-radius: 5px 0 0 5px;
}

.irs--modern .irs-shadow {
    height: 1px;
    bottom: 21px;
    background-color: rgba(209, 214, 224, 0.5);
}

.irs--modern .irs-handle {
    top: 37px;
    width: 12px;
    height: 13px;
    border: 1px solid #a3adc1;
    border-top-width: 0;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 3px 3px;
}

.irs--modern .irs-handle>i:nth-child(1) {
    position: absolute;
    display: block;
    top: -4px;
    left: 1px;
    width: 6px;
    height: 6px;
    border: 1px solid #a3adc1;
    background: #fff;
    transform: rotate(45deg);
}

.irs--modern .irs-handle>i:nth-child(2) {
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 0;
    left: 0;
    width: 10px;
    height: 12px;
    background: #e9e6e6;
    background: linear-gradient(to bottom, #fff 0, #e9e6e6 100%);
    border-radius: 0 0 3px 3px;
}

.irs--modern .irs-handle>i:nth-child(3) {
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 5px;
    border-left: 1px solid #a3adc1;
    border-right: 1px solid #a3adc1;
}

.irs--modern .irs-handle.state_hover,
.irs--modern .irs-handle:hover {
    border-color: #7685a2;
    background: #c3c7cd;
    background: linear-gradient(to bottom, #fff 0, #919ba5 30%, #fff 100%);
}

.irs--modern .irs-handle.state_hover>i:nth-child(1),
.irs--modern .irs-handle:hover>i:nth-child(1) {
    border-color: #7685a2;
}

.irs--modern .irs-handle.state_hover>i:nth-child(3),
.irs--modern .irs-handle:hover>i:nth-child(3) {
    border-color: #48536a;
}

.irs--modern .irs-max,
.irs--modern .irs-min {
    top: 0;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    color: #fff;
    background-color: #d1d6e0;
    border-radius: 5px;
}

.irs--modern .irs-from,
.irs--modern .irs-single,
.irs--modern .irs-to {
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background-color: #20b426;
    color: #fff;
    border-radius: 5px;
}

.irs--modern .irs-from:before,
.irs--modern .irs-single:before,
.irs--modern .irs-to:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #20b426;
}

.irs--modern .irs-grid {
    height: 25px;
}

.irs--modern .irs-grid-pol {
    background-color: #dedede;
}

.irs--modern .irs-grid-text {
    color: silver;
    font-size: 13px;
}

.irs--sharp {
    height: 50px;
    font-size: 12px;
    line-height: 1;
}

.irs--sharp.irs-with-grid {
    height: 57px;
}

.irs--sharp .irs-line {
    top: 30px;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
}

.irs--sharp .irs-bar {
    top: 30px;
    height: 2px;
    background-color: #ee22fa;
}

.irs--sharp .irs-bar--single {
    border-radius: 2px 0 0 2px;
}

.irs--sharp .irs-shadow {
    height: 1px;
    bottom: 21px;
    background-color: rgba(0, 0, 0, 0.5);
}

.irs--sharp .irs-handle {
    top: 25px;
    width: 10px;
    height: 10px;
    background-color: #a804b2;
}

.irs--sharp .irs-handle>i:first-child {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top-color: #a804b2;
}

.irs--sharp .irs-handle.state_hover,
.irs--sharp .irs-handle:hover {
    background-color: #000;
}

.irs--sharp .irs-handle.state_hover>i:first-child,
.irs--sharp .irs-handle:hover>i:first-child {
    border-top-color: #000;
}

.irs--sharp .irs-max,
.irs--sharp .irs-min {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 4px;
    opacity: 0.4;
    background-color: #a804b2;
    border-radius: 2px;
}

.irs--sharp .irs-from,
.irs--sharp .irs-single,
.irs--sharp .irs-to {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 4px;
    background-color: #a804b2;
    color: #fff;
    border-radius: 2px;
}

.irs--round .irs-from:before,
.irs--round .irs-single:before,
.irs--round .irs-to:before,
.irs--sharp .irs-from:before,
.irs--sharp .irs-single:before,
.irs--sharp .irs-to:before {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    border-top-color: #a804b2;
}

.irs--sharp .irs-grid {
    height: 25px;
}

.irs--sharp .irs-grid-pol {
    background-color: #dedede;
}

.irs--sharp .irs-grid-text {
    color: silver;
    font-size: 13px;
}

.irs--round {
    height: 24px;
    margin-bottom: 45px;
}

.irs--round.irs-with-grid {
    height: 65px;
}

.irs--round .irs-line {
    top: 15px;
    height: 8px;
    background-color: #f4f4f4;
    border: 0.5px solid #a3aebe;
    border-radius: 100px;
}

.irs--round .irs-bar {
    top: 15px;
    height: 14px;
    border-radius: 100px;
}

.irs--round .irs-bar--single {
    border-radius: 4px 0 0 4px;
}

.irs--round .irs-shadow {
    height: 4px;
    bottom: 21px;
    background-color: rgba(222, 228, 236, 0.5);
}

.irs--round .irs-handle {
    top: 9px;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover,
.irs--square .irs-handle.state_hover,
.irs--square .irs-handle:hover {
    background-color: #f0f6ff;
}

.irs--round .irs-max,
.irs--round .irs-min {
    font-size: 16px;
    top: 30px;
    padding: 8px 5px 0;
    border-radius: 4px;
}

.irs--round .irs-from,
.irs--round .irs-single,
.irs--round .irs-to {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 5px;
    background-color: #4d6bfe;
    color: #fff;
    border-radius: 4px;
}

.irs--round .irs-from:before,
.irs--round .irs-single:before,
.irs--round .irs-to:before {
    border-top-color: #4d6bfe;
}

.irs--round .irs-grid {
    height: 25px;
}

.irs--round .irs-grid-pol {
    background-color: #dedede;
}

.irs--round .irs-grid-text {
    color: silver;
    font-size: 13px;
}

.irs--square {
    height: 50px;
}

.irs--square.irs-with-grid {
    height: 60px;
}

.irs--square .irs-line {
    top: 31px;
    height: 4px;
    background-color: #dedede;
}

.irs--square .irs-bar {
    top: 31px;
    height: 4px;
    background-color: #000;
}

.irs--square .irs-shadow {
    height: 2px;
    bottom: 21px;
    background-color: #dedede;
}

.irs--square .irs-handle {
    top: 25px;
    width: 16px;
    height: 16px;
    border: 3px solid #000;
    background-color: #fff;
    transform: rotate(45deg);
}

.irs--square .irs-max,
.irs--square .irs-min {
    color: #333;
    font-size: 14px;
    line-height: 1;
    top: 0;
    padding: 3px 5px;
    background-color: rgba(0, 0, 0, 0.1);
}

.irs--square .irs-from,
.irs--square .irs-single,
.irs--square .irs-to {
    font-size: 14px;
    line-height: 1;
    text-shadow: none;
    padding: 3px 5px;
    background-color: #000;
    color: #fff;
}

.irs--square .irs-grid {
    height: 25px;
}

.irs--square .irs-grid-pol {
    background-color: #dedede;
}

.irs--square .irs-grid-text {
    color: silver;
    font-size: 11px;
}

.answers {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    .answers {
        gap: 26px;
        padding: 16px;
    }
}

.answers__heading {
    align-self: flex-start;
    color: #101010;
    font-weight: 600;
    line-height: 56px;
}

.answers__heading span {
    color: #fff;
    font-style: italic;
}

@media (max-width: 768px) {
    .answers__heading {
        font-size: 48px;
    }
}

.answers__card,
.answers__list {
    display: flex;
    flex-direction: column;
}

.answers__list {
    gap: 26px;
}

.answers__card {
    box-sizing: border-box;
    padding: 8px 8px 32px;
    color: #101010;
    background-color: #fff;
    border-radius: 36px;
    backdrop-filter: blur(6px);
}

.answers__img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    margin-bottom: 32px;
    border-radius: 36px;
}

@media (max-width: 768px) {
    .answers__img {
        height: 187px;
    }
}

.answers__sub-heading {
    margin-bottom: 16px;
    padding: 0 8px;
    font-size: 24px;
    font-weight: 600;
}

.answers__text {
    padding: 0 8px;
    line-height: 26px;
}

.slick-slider {
    min-width: 0;
    width: 100%;
}

.slider__item {
    display: flex;
    margin: 0 15px;
    min-width: 0;
}

@media (max-width: 768px) {
    .slider__item {
        margin: 0 5px;
    }
}

.slick-list {
    overflow: hidden;
}

.slick-dots,
.slick-track {
    display: flex;
}

.slick-dots {
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.slick-dots li {
    display: flex;
    font-size: 0;
    line-height: 0;
    width: 10px;
    height: 10px;
}

.slick-dots li.slick-active {
    width: 14px;
    height: 14px;
}

.slick-dots li.slick-active button {
    background: #4d6bfe;
}

.slick-dots li button {
    padding: 0;
    font-size: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #4d6bfe;
    border: 0;
}

.success {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .success {
        padding: 16px;
    }
}

.success__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 44px;
}

@media (max-width: 768px) {
    .success__wrapper {
        flex-direction: column;
    }
}

.success__heading {
    max-width: 50%;
}

@media (max-width: 768px) {
    .success__heading {
        max-width: unset;
    }
}

.faq {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 710px;
    gap: 36px;
    padding: 36px;
    color: #101010;
    border-radius: 42px;
    background: #fff;
}

.faq::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/bcg/faq-bcg.webp) no-repeat;
    background-size: auto;
    opacity: 0.4;
    z-index: -1;
}

.faq__heading {
    margin-bottom: 36px;
}

.faq__container {
    display: flex;
    gap: 36px;
    align-items: start;
}

@media (max-width: 768px) {
    .faq__container {
        flex-direction: column;
        gap: 15px;
    }
}

.faq__btn-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 12px;
    width: 340px;
}

@media (max-width: 768px) {
    .faq__btn-wrapper {
        width: 100%;
    }
}

.faq__question {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.faq__dropdown {
    width: 262px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .faq__dropdown {
        width: 100%;
    }
}

.faq__dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    padding: 0;
}

.faq__dropdown-content.show {
    max-height: 350px;
    padding: 10px 0;
}

.faq__toggle-btn,
.faq__toggle-btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__toggle-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    background: white;
}

.faq__toggle-btn span {
    width: 14px;
    height: 14px;
}

.faq__toggle-btn span svg {
    fill: #4d6bfe;
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
    transition: transform 0.5s ease-in-out;
}

.faq__toggle-btn.show {
    background: #4d6bfe;
}

.faq__toggle-btn.show>span svg {
    fill: white;
    transform: rotate(0deg);
    transition: transform 0.5s ease-in-out;
}

.faq__sub-heaading {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.faq__sub-heaading.show {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .faq__sub-heaading.show {
        margin-bottom: 15px;
    }
}

.faq__job {
    font-size: 12px;
}

.advantages {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 916px;
}

.advantages__heading {
    font-size: 64px;
    font-style: italic;
    font-weight: 700;
    line-height: 68px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .advantages__heading {
        font-size: 32px;
        font-weight: 600;
        line-height: 36px;
    }
}

.advantages__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 10px;
}

.advantages__item {
    display: flex;
    gap: 12px;
    padding: 10px;
    width: 30%;
}

@media (max-width: 768px) {
    .advantages__item {
        width: 100%;
    }
}

.advantages__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: #4d6bfe;
    border-radius: 50%;
}

.advantages__text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advantages__sub-heading {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.advantages__about {
    padding-right: 30px;
    font-weight: 600;
    line-height: 24px;
}

.advantages__img {
    margin-top: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 768px) {
    .advantages__img {
        width: 100%;
        height: 377px;
    }
}

.advantages__btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
}

.come-on {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.come-on .logo {
    fill: #fff;
}

@media (max-width: 768px) {
    .come-on {
        flex-direction: column;
        align-items: start;
        gap: 26px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.come-on__wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 150px;
}

@media (max-width: 768px) {
    .come-on__wrapper {
        gap: 16px;
        margin-top: 0;
    }
}

.come-on__about {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0.4px;
}

.come-on__about span {
    font-style: italic;
    font-weight: 700;
}

.answers-success-come-on-wrapper {
    position: relative;
}

.answers-success-come-on-wrappe__top {
    z-index: -1;
    position: absolute;
    top: 0;
    height: 580px;
    width: 100%;
    background: #4d6bfe;
}

@media (max-width: 768px) {
    .answers-success-come-on-wrappe__top {
        height: 420px;
    }
}

.answers-success-come-on-wrappe__wrappe__bottom {
    z-index: -1;
    position: absolute;
    bottom: 0;
    height: 494px;
    width: 100%;
    background: #4d6bfe;
}

@media (max-width: 768px) {
    .answers-success-come-on-wrappe__wrappe__bottom {
        height: 454px;
    }
}

.iti {
    color: black;
}

#phone1 {
    box-sizing: border-box;
    max-width: 418px !important;
    width: 100% !important;
}

.iti__country-list {
    position: relative;
    max-width: 418px !important;
}

.iti__selected-flag {
    border-radius: 12px 0 0 12px;
}

.submit_btn {
    height: 74px;
}