@font-face {
    font-family: 'SFRounded';
    src: url('../fonts/SFRounded-Regular.eot');
    src: url('../fonts/SFRounded-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SFRounded-Regular.woff2') format('woff2'),
    url('../fonts/SFRounded-Regular.woff') format('woff'),
    url('../fonts/SFRounded-Regular.ttf') format('truetype'),
    url('../fonts/SFRounded-Regular.svg#SFRounded-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFRounded';
    src: url('../fonts/SFRounded-Medium.eot');
    src: url('../fonts/SFRounded-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SFRounded-Medium.woff2') format('woff2'),
    url('../fonts/SFRounded-Medium.woff') format('woff'),
    url('../fonts/SFRounded-Medium.ttf') format('truetype'),
    url('../fonts/SFRounded-Medium.svg#SFRounded-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFRounded';
    src: url('../fonts/SFRounded-Semibold.eot');
    src: url('../fonts/SFRounded-Semibold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SFRounded-Semibold.woff2') format('woff2'),
    url('../fonts/SFRounded-Semibold.woff') format('woff'),
    url('../fonts/SFRounded-Semibold.ttf') format('truetype'),
    url('../fonts/SFRounded-Semibold.svg#SFRounded-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFRounded';
    src: url('../fonts/SFRounded-Bold.eot');
    src: url('../fonts/SFRounded-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/SFRounded-Bold.woff2') format('woff2'),
    url('../fonts/SFRounded-Bold.woff') format('woff'),
    url('../fonts/SFRounded-Bold.ttf') format('truetype'),
    url('../fonts/SFRounded-Bold.svg#SFRounded-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/**************** Basic ****************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    background: #fff;
    line-height: normal;
    font-family: 'SFRounded', sans-serif;
    font-weight: 400;
    color: #202228;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1170px;
    padding: 0 15px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

button {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.section {
    width: 100%;
    position: relative;
}

.section-title {
    font-family: 'SFRounded', sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 62px;
    color: #202228;
}

/***************************/

/********** Header *********/

.header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.header-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 44px;
    padding: 20px 0;
}

.header-logo {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 16px;
    margin-right: auto;
}

.header-logo img {
    width: 44px;
    height: 44px;
}

.header-logo span {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #202228;
}

.header-nav {
    position: relative;
    display: flex;
}

.nav-menu {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.nav-menu__item {
    position: relative;
    display: flex;
}

.nav-menu__link {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    text-align: left;
    color: #202228;
}

.nav-menu__link:hover {
    color: #3c68ff;
}

.header__button {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    border: 1px solid #3C68FF;
    color: #3c68ff;
    border-radius: 12px;
    padding: 17px 40px;
    background-color: #fff;
}

.header__button:hover {
    background-color: #3c68ff;
    color: #ffffff;
}

/********************************/

/************* Main *************/

.hero {
    padding: 170px 0 80px;
    background-color: #F2F8FF;
    background-image: url("../img/main/stars-bg.svg");
    background-position: center top;
    background-repeat: no-repeat;
    border-radius: 0 0 0 200px;
}

.hero:after {
    content: '';
    position: absolute;
}

.hero-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.hero-left {
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
}

.hero-left__title {
    font-size: 64px;
    font-weight: 700;
    line-height: 76px;
    text-align: left;
    color: #202228;
}

.hero-left__text {
    max-width: 430px;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: left;
    color: #202228;
}

.hero-left__button {
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    border-radius: 12px;
    padding: 20px 24px;
    background-color: #3c68ff;
    border: 1px solid #3c68ff;
}

.hero-left__button:hover {
    background-color: #fff;
    color: #3c68ff;
}

.hero-left__button svg path {
    transition: all 0.3s ease-in-out;
}

.hero-left__button:hover svg path {
    stroke: #3c68ff;
}

.hero-right {
    width: 50%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding-top: 160px;
}

.hero-right__img {
    width: 60%;
    z-index: 1;
}

.hero-right__lines {
    width: 130%;
    position: absolute;
    top: -40px;
    left: 0;
}

.hero-block {
    max-width: 260px;
    position: absolute;
    padding: 13px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    gap: 11px;
}

.hero-block__wrap__1 {
    width: 260px;
    left: 30px;
    top: 30px;
    transform: rotate(-12deg);
    position: absolute;
    z-index: 2;
}

.hero-block__wrap__2 {
    width: 260px;
    right: -50px;
    top: 60px;
    transform: rotate(12deg);
    position: absolute;
    z-index: 2;
}

.hero-block__wrap__3 {
    width: 230px;
    left: -30px;
    top: 210px;
    transform: rotate(12deg);
    position: absolute;
    z-index: 2;
}

.hero-block__wrap__4 {
    width: 230px;
    left: -60px;
    bottom: 150px;
    transform: rotate(-12deg);
    position: absolute;
    z-index: 2;
}

.hero-block__avatar {
    width: 42px;
    height: 42px;
}

.hero-block__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-block__content-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.hero-block__content-top h5 {
    font-weight: 600;
    font-size: 14px;
    color: #202228;
    line-height: 17px;
}

.hero-block__content-top span {
    font-weight: 400;
    font-size: 12px;
    color: #9a9faf;
    line-height: 17px;
}

.hero-block__content-text {
    width: 100%;
    position: relative;
}

.hero-block__content-text p {
    font-weight: 400;
    font-size: 12px;
    color: #202228;
}

.about {
    padding: 150px 0;
    background-image: url("../img/main/about-line.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.about-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.about-left {
    width: 50%;
    position: relative;
    border-radius: 12px;
    padding: 40px 28px;
    background-color: #f2f8ff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-left__title {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    color: #202228;
}

.about-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-form__top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    border-radius: 12px;
    padding: 8px;
    background-color: #fff;
}

.about-form__top label {
    width: 50%;
    position: relative;
    display: flex;
}

.about-form__top span {
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    border-radius: 12px;
    padding: 17px 22px;
    background-color: #fff;
    color: #3c68ff;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.about-form__top input {
    display: none;
}

.about-form__top input:checked ~ span {
    background-color: #3c68ff;
    color: #fff;
}

.about-form__main {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.about-form__main-block {
    width: calc(50% - 10px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.about-form__main-block-full {
    width: 100%;
}

.about-form__main-block span {
    font-weight: 600;
    font-size: 14px;
    color: #202228;
}

.about-form__main-block label {
    width: 100%;
    position: relative;
    background-color: #fff;
    border-radius: 12px;
    padding: 16px;
}

.about-form__main-block select {
    width: 100%;
    border: none;
    cursor: pointer;
    background-color: #fff;
}

.about-form__main-block select:focus {
    outline: none;
}

.about-form__range {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #dae2ec;
}

.about-form__range__title {
    font-weight: 600;
    font-size: 14px;
    color: #202228;
}

.about-form__range__label {
    width: 100%;
    position: relative;
}

.about-form__range__input {
    width: 100%;
    -webkit-webkit-ap: none;
    -moz-webkit-ap: none;
    -ms-webkit-ap: none;
    -o-webkit-ap: none;
    -khtml-webkit-ap: none;
    webkit-ap: none;
    appearance: none;
    cursor: pointer;
    height: 4px;
    background: linear-gradient(to right, rgb(60, 104, 255) 27.3109%, rgb(204, 204, 204) 27.3109%);
}

.about-form__range__input::-webkit-slider-thumb {
    -webkit-webkit-ap: none;
    -moz-webkit-ap: none;
    -ms-webkit-ap: none;
    -o-webkit-ap: none;
    -khtml-webkit-ap: none;
    webkit-ap: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #3c68ff;
    background-color: #fff;
    z-index: 10;
}

.about-form__range__count {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about-form__range__count-min,
.about-form__range__count-max {
    font-weight: 400;
    font-size: 12px;
    color: #202228;
}

.about-form__result {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.about-form__result__title {
    font-weight: 400;
    font-size: 16px;
    color: #202228;
}

.about-form__result__sum {
    font-weight: 600;
    font-size: 16px;
    color: #202228;
}

.about-right {
    width: 45%;
    max-width: 430px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-right__title {
    text-align: center;
}

.about-right__text {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #202228;
}

.work {
    padding: 120px 0;
}

.work-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.work__key {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    padding: 16px 23px;
    background-color: #3c68ff;
    border-radius: 42px;
}

.work-slider {
    width: 100%;
    position: relative;
    margin-top: 25px;
}

.work-block {
    height: 100% !important;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 32px 50px;
    border-radius: 12px;
}

.work-block:nth-child(4n + 1) {
    background-color: #f2f3ff;
}

.work-block:nth-child(4n + 2) {
    background-color: #f2faff;
}

.work-block:nth-child(4n + 3) {
    background-color: #fff5e5;
}

.work-block:nth-child(4n + 4) {
    background-color: #ebfced;
}

.work-block__icon {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    margin-bottom: 75px;
}

.work-block:nth-child(4n + 1) .work-block__icon {
    background-color: #e6e8fe;
}

.work-block:nth-child(4n + 2) .work-block__icon {
    background-color: #d9e8f2;
}

.work-block:nth-child(4n + 3) .work-block__icon {
    background-color: #f0dec1;
}

.work-block:nth-child(4n + 4) .work-block__icon {
    background-color: #d3f2d7;
}

.work-block__icon img {
    width: 32px;
    height: 32px;
}

.work-block__title {
    font-weight: 700;
    font-size: 24px;
    color: #202228;
    margin-top: auto;
}

.work-block__text {
    font-weight: 500;
    font-size: 16px;
    color: #202228;
}

.clients {
    width: calc(100% - 60px);
    margin: 0 30px;
    padding: 90px 0;
    background-color: #3c68ff;
    border-radius: 30px;
    background-image: url("../img/main/stars-white-bg.svg");
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 1;
}

.clients-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.clients__key {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 42px;
    padding: 17px 32px;
    background-color: #ffb38f;
}

.clients__title {
    max-width: 800px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 25px;
}

.clients-content {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.clients-block {
    width: calc(100% / 3 - 20px);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px 32px 50px;
    background-color: #fff;
    border-radius: 12px;
    gap: 10px;
}

.clients-block__icon {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffb38f;
    border-radius: 12px;
    margin-bottom: 45px;
}

.clients-block__title {
    font-weight: 700;
    font-size: 20px;
    color: #202228;
    margin-top: auto;
}

.clients-block__text {
    font-weight: 500;
    font-size: 16px;
    color: #202228;
}

.leads {
    padding: 120px 0;
    border-radius: 0 0 0 200px;
    background-color: #f2f8ff;
}

.leads:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -400px;
    width: 100%;
    height: 400px;
    background-color: #f2f8ff;
}

.leads .container {
    max-width: 1060px;
}

.leads-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.leads-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leads-left__text {
    font-weight: 400;
    font-size: 16px;
    color: #202228;
}

.leads-tab {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.leads-tab__button {
    font-weight: 600;
    font-size: 14px;
    color: #202228;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 22px;
    border-radius: 12px;
    background-color: #fff;
}

.leads-tab__button.active,
.leads-tab__button:hover {
    background-color: #ffb38f;
}

.leads-tab__button svg path {
    transition: all 0.3s ease-in-out;
}

.leads-tab__button.active svg path,
.leads-tab__button:hover svg path {
    stroke: #fff;
}

.leads-panel {
    width: 50%;
    border-radius: 12px;
    background-color: #fff;
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease-in-out;
    visibility: hidden;
}

.leads-panel.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.leads-panel__img {
    width: 100%;
    border-radius: 12px;
}

.leads-panel__content {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 12px;
    background-color: #fff;
    margin-top: -20px;
    padding: 28px;
}

.leads-panel__content__sum {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: #202228;
    border-radius: 12px 0 0 12px;
    background-color: #f2f8ff;
    padding: 17px 22px;
    position: absolute;
    right: 0;
    top: -30px;
}

.leads-panel__content__title {
    font-weight: 700;
    font-size: 24px;
    color: #202228;
}

.leads-panel__content__list {
    position: relative;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #dae2ec;
}

.leads-panel__content__list li {
    width: 100%;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    color: #202228;
    padding-left: 30px;
}

.leads-panel__content__list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url("../img/icons/check.svg");
    background-size: 100% 100%;
}

.leads-panel__content__check {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.leads-panel__content__check p {
    font-weight: 400;
    font-size: 16px;
    color: #202228;
}

.leads-panel__content__check span {
    font-weight: 600;
    font-size: 16px;
    color: #202228;
}

.leads-panel__content__button {
    width: 100%;
    padding: 20px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    background-color: #3c68ff;
    border: 1px solid #3c68ff;
}

.leads-panel__content__button:hover {
    background-color: #fff;
    color: #3c68ff;
}

.payment {
    padding: 170px 0;
}

.payment-row {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.payment-left {
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.payment-left__key {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 42px;
    padding: 17px 30px;
    background-color: #ffb38f;
    text-align: center;
}

.payment-left__title {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    color: #202228;
}

.payment-left__text {
    max-width: 430px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #202228;
}

.payment-left__button {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    padding: 22px;
    border-radius: 12px;
    background-color: #3c68ff;
    border: 1px solid #3c68ff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.payment-left__button:hover {
    background-color: #fff;
    color: #3c68ff;
}

.payment-left__button svg path {
    transition: all 0.3s ease-in-out;
}

.payment-left__button:hover svg path {
    stroke: #3c68ff;
}

.payment-right {
    width: 40%;
    position: relative;
}

.payment-right__img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.payment-right__lines {
    width: 150%;
    position: absolute;
    left: 0;
    top: -210px;
}

.faq {
    padding: 120px 0;
    background-color: #f2f8ff;
    border-radius: 200px 0 0 0;
}

.faq-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.faq-left {
    width: 43%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-left__text {
    font-weight: 400;
    font-size: 16px;
    color: #202228;
}

.faq-right {
    width: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 23px 32px;
    background-color: #fff;
    border-radius: 12px;
}

.faq-block__top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
}

.faq-block__top h5 {
    max-width: 400px;
    font-weight: 600;
    font-size: 18px;
    color: #202228;
}

.faq-block__top.active span {
    transform: rotate(45deg);
    color: #eb6322;
    background-color: rgba(235, 99, 34, 0.5);
}

.faq-block__top span {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(60, 104, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    padding-bottom: 2px;
    color: #3c68ff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.faq-block__panel {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    transition: all 0.3s ease-in-out;
}

.faq-block__panel.active {
    max-height: 1000px;
    padding-top: 20px;
}

.faq-block__panel p {
    font-weight: 400;
    font-size: 16px;
    color: #202228;
}

/**********************************/

/************* Footer *************/

.footer {
    width: 100%;
    position: relative;
    padding: 20px 0;
    border-top: 1px solid #d9e3ee;
    background-color: #f2f8ff;
}

.footer-row {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-logo {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 16px;
    margin-right: auto;
}

.footer-logo img {
    width: 44px;
    height: 44px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    text-align: left;
    color: #202228;
}

.footer-block {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.footer-block__text {
    font-weight: 500;
    font-size: 14px;
    color: #202228;
    margin-right: 30px;
    text-align: center;
}

.footer-block__button {
    width: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    padding: 17px;
}

.footer-block__button_white {
    border: 1px solid #3c68ff;
    border-radius: 12px;
    background-color: #fff;
    color: #3c68ff;
}

.footer-block__button_white:hover {
    background-color: #3c68ff;
    color: #ffffff;
}

.footer-block__button_button {
    border: 1px solid #3c68ff;
    border-radius: 12px;
    background-color: #3c68ff;
    color: #fff;
}

.footer-block__button_button:hover {
    background-color: #fff;
    color: #3c68ff;
}

/************** Modal **************/

.modal-bg {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: -50%;
    transform: rotate(180deg) scale(.1);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(242, 248, 255, 0.9);
    opacity: 0;
    z-index: -1;
    padding: 20px;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
}

.modal-bg.active {
    opacity: 1;
    transform: rotate(0) scale(1);
    left: 0;
    z-index: 15;
    pointer-events: auto;
}

.login-content {
    width: 100%;
    max-width: 800px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 12px;
}

.login-close {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(154, 159, 175, 0.5);
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
}

.login-close:hover {
    background-color: rgba(154, 159, 175, 0.7);
}

.login-left {
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 50px 0 50px 60px;
}

.login__title {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #202228;
}

.login-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form__top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 8px;
    background-color: #f2f8ff;
    border-radius: 8px;
}

.login-form__top > label {
    width: 50%;
    position: relative;
    display: flex;
}

.login-form__top > label span {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    color: #202228;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

.login-form__top > label input {
    display: none;
}

.login-form__top > label input:checked ~ span {
    border: 1px solid #3c68ff;
    color: #3c68ff;
    background-color: #fff;
}

.login-form > label {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.login-form > label span {
    font-weight: 600;
    font-size: 14px;
    color: #202228;
}

.login-form > label input {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background-color: #f2f8ff;
    border: none;
    transition: all 0.3s ease-in-out;
}

.login-form > label input:focus {
    outline: none;
    background-color: #deedfd;
}

.login-form__button {
    width: 100%;
    max-width: 200px;
    align-self: center;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    background-color: #3c68ff;
    border: 1px solid #3c68ff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.login-form__button:hover {
    background-color: #fff;
    color: #3c68ff;
}

.login-form__button svg path {
    transition: all 0.3s ease-in-out;
}

.login-form__button:hover svg path {
    stroke: #3c68ff;
}

.login-right {
    width: 50%;
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 50px 60px 50px 0;
}

.login-right__img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.login-right__lines {
    width: 130%;
    position: absolute;
    top: -110px;
    left: 30px;
}

.order-content {
    width: 100%;
    max-width: 800px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 12px;
}

.order-close {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(154, 159, 175, 0.5);
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2;
}

.order-close:hover {
    background-color: rgba(154, 159, 175, 0.7);
}

.order-left {
    width: 45%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 50px 0 50px 50px;
}

.order__title {
    font-weight: 700;
    font-size: 32px;
    text-align: center;
    color: #202228;
}

.order-form {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-form__top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 8px;
    background-color: #f2f8ff;
    border-radius: 8px;
}

.order-form__top > label {
    width: 50%;
    position: relative;
    display: flex;
}

.order-form__top > label span {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    font-size: 14px;
    color: #202228;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
}

.order-form__top > label input {
    display: none;
}

.order-form__top > label input:checked ~ span {
    border: 1px solid #3c68ff;
    color: #3c68ff;
    background-color: #fff;
}

.order-form > label {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.order-form > label span {
    font-weight: 600;
    font-size: 14px;
    color: #202228;
}

.order-form > label input {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background-color: #f2f8ff;
    border: none;
    transition: all 0.3s ease-in-out;
}

.order-form > label input:focus {
    outline: none;
    background-color: #deedfd;
}

.order-form > label select {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background-color: #f2f8ff;
    border: none;
    transition: all 0.3s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

.order-form > label select::-ms-expand {
    display: none;
}

.order-form > label select:focus {
    outline: none;
}

.order-form > label select ~ svg {
    position: absolute;
    right: 15px;
    bottom: 20px;
    pointer-events: none;
}

.order-form__button {
    width: 100%;
    max-width: 200px;
    align-self: center;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    background-color: #3c68ff;
    border: 1px solid #3c68ff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.order-form__button:hover {
    background-color: #fff;
    color: #3c68ff;
}

.order-form__button svg path {
    transition: all 0.3s ease-in-out;
}

.order-form__button:hover svg path {
    stroke: #3c68ff;
}

.order-right {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 50px 60px 50px 0;
}

.order-right__img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.order-right__lines {
    width: 130%;
    position: absolute;
    top: -110px;
    left: 30px;
}

/********************************/

/************* Media ************/

@media only screen and (max-width: 992px) {

    .header-nav {
        display: none;
    }

    .hero-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-left {
        width: 100%;
    }

    .hero-right {
        width: 100%;
        align-self: flex-end;
        max-width: 550px;
    }

    .about-row {
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }

    .about-right,
    .about-left {
        width: 100%;
        max-width: 500px;
    }

    .clients-content {
        justify-content: center;
    }

    .clients-block {
        width: 100%;
        max-width: 500px;
    }

    .leads-left {
        width: 45%;
    }

    .faq-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .faq-left,
    .faq-right {
        width: 100%;
        max-width: 500px;
    }

}

@media only screen and (max-width: 768px) {

    .hero {
        border-radius:  0 0 0 90px;
        padding: 120px 0;
    }

    .hero-left__title {
        font-size: 56px;
    }

    .section-title {
        font-size: 44px;
    }

    .about {
        padding: 90px 0;
    }

    .work {
        padding: 90px 0;
    }

    .payment-row {
        flex-direction: column;
        gap: 50px;
    }

    .payment-left,
    .payment-right {
        width: 100%;
        max-width: 480px;
    }

    .payment-right__img {
        margin-top: 150px;
    }

    .payment-right__lines {
        top: 0;
    }

    .leads {
        border-radius: 0 0 0 90px;
    }

    .leads-row {
        flex-direction: column;
        align-items: center;
    }

    .leads-left {
        width: 100%;
        max-width: 500px;
    }

    .leads-tab__button.active svg {
        transform: rotate(90deg);
    }

    .leads-panel {
        width: 100%;
        position: relative;
        right: unset;
        top: unset;
        max-height: 0;
        overflow: hidden;
    }

    .leads-panel.active {
        max-height: 1000px;
    }

    .faq {
        border-radius: 90px 0 0 0;
    }

    .footer-row {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin-right: unset;
    }

    .footer-block {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-block__text {
        width: 100%;
        order: 3;
    }

    .order-content,
    .login-content {
        max-width: 500px;
        justify-content: center;
    }

    .login-right,
    .order-right {
        display: none;
    }

    .login-left,
    .order-left {
        width: 100%;
        padding: 50px;
    }

}

@media only screen and (max-width: 660px) {

    .hero-right {
        max-width: 100%;
    }

    .hero-block__wrap__1 {
        left: 0;
    }

    .hero-block__wrap__3 {
        left: 0;
    }

    .hero-block__wrap__4 {
        left: -10px;
        bottom: 60px;
    }

}

@media only screen and (max-width: 480px) {

    .section-title {
        font-size: 32px;
        line-height: 36px;
    }

    .header-row {
        gap: 10px;
    }

    .header__button {
        padding: 15px 30px;
    }

    .hero-row {
        gap: 30px;
    }

    .hero-left {
        align-items: center;
        gap: 20px;
    }

    .hero-left__title {
        max-width: 290px;
        font-size: 36px;
        line-height: 42px;
        text-align: center;
    }

    .hero-left__text {
        text-align: center;
    }

    .hero-right {
        justify-content: center;
        align-items: center;
        padding-top: 120px;
    }

    .hero-right__img {
        width: 70%;
    }

    .hero-right__lines {
        top: 0;
        left: -50px;
    }

    .hero-block {
        padding: 8px;
        gap: 6px;
    }

    .hero-block__wrap__1 {
        left: -30px;
    }

    .hero-block__wrap__2 {
        max-width: 220px;
        right: -30px;
        top: 100px;
    }

    .hero-block__wrap__3 {
        left: 0;
        top: unset;
        bottom: -50px;
    }

    .hero-block__wrap__4 {
        max-width: 240px;
        left: unset;
        right: -40px;
        bottom: 20px;
    }

    .hero-right__img {
        width: 60%;
        margin-top: 40px;
    }

    .hero-block__avatar {
        width: 36px;
        height: 36px;
    }

    .hero-block__content {
        gap: 2px;
    }

    .hero-block__content-top h5 {
        font-size: 12px;
        line-height: 14px;
    }

    .hero-block__content-text p {
        font-size: 10px;
    }

    .about {
        padding: 70px 0;
        background-position: 0 -110px;
    }

    .about-right {
        gap: 20px;
    }

    .about-left {
        padding: 40px 20px;
    }

    .about-form__main {
        flex-direction: column;
    }

    .about-form__main-block {
        width: 100%;
    }

    .about-form__top span {
        padding: 15px 5px;
    }

    .work {
        padding: 30px 0 60px;
    }

    .work-block__icon {
        margin-bottom: 30px;
    }

    .clients {
        width: calc(100% - 30px);
        margin: 0 15px;
    }

    .clients-block__icon {
        margin-bottom: 30px;
    }

    .leads-panel__content__title {
        font-size: 20px;
    }

    .leads-panel__content__sum {
        font-size: 16px;
    }

    .leads-panel__content__check span,
    .leads-panel__content__check p {
        font-size: 14px;
    }

    .payment {
        padding: 90px 0;
    }

    .payment-left__title {
        font-size: 28px;
        line-height: 32px;
    }

    .payment-right__img {
        width: 80%;
    }

    .faq {
        padding: 60px 0;
        border-radius: 50px 0 0 0;
    }

    .faq-block__top h5 {
        font-size: 16px;
    }

    .faq-block__panel p {
        font-size: 14px;
        line-height: 17px;
    }

    .login-left, .order-left {
        padding: 50px 20px;
    }

}
