* {
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat';
    color: #101F33;
}

a {
    color: #2967F6;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
}

.body-main_opened {
    overflow: hidden;
}

.body-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FFFFFF;
}

.wrapper-l {
    position: relative;
    max-width: 1200px;
    padding: 0 16px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .wrapper-l {
        padding: 0 40px;
    }
}

.modal {
    background-color: rgba(0, 0, 0, 0.32);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 0;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.25s;
    overflow: auto;
}

.modal_active {
    z-index: 999;
    opacity: 1;
}

.modal__wrapper {
    margin: 0 auto;
    height: 100%;
    display: grid;
}

.modal__wrapper__container {
    display: flex;
    align-self: center;
}

.succes-modal {
    margin: 0 10px;
    padding: 10px;
    border-radius: 20px;
    background: #FFFFFF;
    font-weight: 600;
    font-size: 20px;
    position: relative;
    display: flex;
}

.succes-modal__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 15px;
    margin: 15px;
    justify-content: space-between;
    gap: 24px;
}

.order-form {
    margin: 10px;
    border-radius: 20px;
    background: #FFFFFF;
    display: flex;
}

.order-form__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 30px;
    justify-content: space-between;
}

.form-close-button {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 38px;
    height: 38px;
    transform: rotate(45deg);
    cursor: pointer;
}

.form-close-button::after, .form-close-button::before {
    position: absolute;
    top: 50%;
    display: inline-block;
    content: '';
    width: 38px;
    height: 2px;
    border-radius: 2px;
    background-color: #626262;
}

.form-close-button::before {
    transform: rotate(90deg);
}

.order-form__title h2{
    font-size: 32px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 0px;
}

.order-form__inputs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.order-form__rules {
    margin-top: 20px;
    font-size: 12px;
}

.order-form__send-button {
    width: 100%;
}

.h2_def {
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 34px;
    margin-top: 0;
    word-break: break-word;
}

body.header-menu_opened {
    overflow: hidden;
}

header {
    padding: 16px 0;
    box-shadow: 0px 3px 8px -2px rgba(34, 60, 80, 0.1);
    position: relative;
    z-index: 998;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-menu {
    display: flex;
    justify-content: space-between;
    flex-basis: 100%;
}

.header-links {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    gap: 20px;
}

.header-link {
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    transition: color ease-in-out 320ms;
    color:#101F33;
}

.header-link:hover {
    color:#135ec3;
}

.header-buttons {
    display: flex;
    justify-content: space-between;
    gap: 32px;
}

.button {
    padding: 0;
    border: none;
    font: inherit;
    background-color: transparent;
    cursor: pointer;
}

.button_header {
    height: 43px;
    padding: 0px 18px;
    border: 1px solid #101F33;
    border-radius: 39px;
    font-size: 16px;
    width: 180px;
    font-weight: 500;
}

.button_header:hover {
    background-color: #000000;
    color: #FFFFFF;
}

.button_tg {
    height: 42px;
    width: 42px;
}

.button_tg svg rect {
    fill: transparent;
}

.button_form {
    width: 100%;
    background-color: #3776F0;
    padding: 12px 16px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 16px;
    color: #FFFFFF;
}

.button_form:hover {
    background-color: #3875f0d9;
}

.button_form:disabled {
    background-color: #3875f080;
}

.button_footer {
    color: #101F33;
    background-color: inherit;
    border: 1px solid #101F33;
    width: 200px;
}

.main-content__block {
    background-color: #FFFFFF;
    position: relative;
}

.main-content__block_main {
    background-color: #f4f7fa;
    box-shadow: 0px 11px 10px -7px rgba(34, 60, 80, 0.15);
}

.main-info__background {
    position: absolute;
    right: 25px;
    z-index: 0;
    height: 100%;
}

.main-info__background__img {
    height: 100%;
}

.main-info {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.main-info__content {
    position: relative;
    z-index: 100;
    width: calc(100% - 550px);
}

.main-info__content__title {
    margin: 0;
    font-weight: 600;
    font-size: 40px;
}

.main-info__content__text {
    margin: 0;
    margin-top: 30px;;
    font-size: 22px;
    font-weight: 500;
    color: #101f33cc;
    line-height: 1.6em;
}

.investor-info {
    margin-top: 80px;
}

.investor-info__content {
    background-color: #f4f7fa;
    padding: 30px 50px;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    box-shadow: 0px 11px 10px -7px rgba(34, 60, 80, 0.15);
}

.investor-info__content__title {
    position: relative;
    z-index: 100;
    width: calc(100% - 206px);
}

.investor-info__content__h3 {
    margin: 0;
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 600;
}

.investor-info__content__text {
    font-size: 22px;
    line-height: 1.6em;
    font-weight: 500;
    color: #101f33cc;

}

.investor-info__content__img {
    position: absolute;
    right: 50px;
    z-index: 0;
}

.benefits {
    margin-top: 80px;
}

.benefits__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit__h3 {
    margin: 0;
    margin-top: 20px;
    font-weight: 600;
    font-size: 23px;
    color: #101F33;
}

.benefit__h3_about {
    font-size: 20px;
}

.benefit__text {
    width: 100%;
}

.benefit__text__description {
    margin-top: 10px;
    color: #101f33cc;
    font-weight: 500;
    font-size: 18px;
}

.benefit__icon {
    border-radius: 20px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit__icon img {
    width: 100%;
    height: 100%;
}

.benefit_main {
    width: 320px;
    text-align: center;
}

.benefit_default {
    padding: 20px 15px;
    width: 350px;
    background-color:#f4f7fa;
    border-radius: 20px;
    box-shadow: 0px 11px 10px -7px rgba(34, 60, 80, 0.15);
}

.benefit_default h3 {
    margin-top: 0px;
}

.strategy {
    margin-top: 80px;
}

.pipeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.pipeline::after {
    content: '';
    position:absolute;
    width: 75%;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    height: 2px;
    background-color: #bac3cf;
    top: 40px;
    z-index: 0;
}

.pipeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 370px;
    position: relative;
    z-index: 100;
    height: inherit;
}

.pipeline-item__step {
    padding: 0 30px;
    margin-bottom: 28px;
    background-color: #FFFFFF;
}

.pipeline-item__step__wrapper {
    height: 64px;
    width: 64px;
    background-color: #E4EFFF;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 500;
    box-shadow: 0px 10px 10px -8px rgba(34, 60, 80, 0.15);
    border: 1px solid #FFFFFF;
}

.pipeline-item__text {
    text-align: center;
    height: 100%;
}

.pipeline-item__title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    height: calc(50% - 12px);
}

.pipeline-item__title_def {
    height: auto;
}

.pipeline-item__description {
    color: #101f33cc;
    font-size: 16px;
    font-weight: 500;
    height: 50%;
}

.request {
    display: flex;
    margin-top: 80px;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.request h2 {
    margin: 0;
}

.request__title {
    width: 50%;
}

.contact-form {
    background-color: #f4f7fa;
    box-shadow: 0px 11px 10px -7px rgba(34, 60, 80, 0.15);
    border-radius: 20px;
    width: 100%;
}

.contact-form__wrapper {
    padding: 30px;
}

.contact-form__inputs {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 12px;
}

.partners-info {
    margin-top: 80px;
}

.partners {
    margin-top: 80px;
}

.partners-info__content {
    font-size: 22px;
    font-weight: 500;
    color: #101f33cc;
    line-height: 1.5em;
}

.about {
    margin-top: 80px;
}

.about__content__p {
    font-size: 22px;
    font-weight: 500;
    color: #101f33cc;
    line-height: 1.5em;
    margin-bottom: 50px;
}

.about__content b {
    color: #000000;
    font-weight: 600;
}

.about__benefits {
    display: flex;
    gap: 20px;
}

.contacts {
    margin-top: 80px;
    margin-bottom: 100px;
}

.contacts__content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 15px;
}

.contacts__content__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    width: 50%;
}

.contact {
    height: auto;
}

.contact__title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}

.contact__text {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

.form-textarea {
    height: 100px;
}

.text-area {
    outline: none;
    border: none;
    background-color: inherit;
    font-family: Montserrat;
    padding: 0;
    resize: none;
}

.text-area::placeholder {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
}

.text-area_default {
    background-color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 16px;
    border: 2px solid #101f3226;
    font-size: 18px;
    font-weight: 500;
    width: calc(100% - 32px);
    height: calc(100% - 24px);
}

.form-textarea textarea::-webkit-scrollbar {
    width: 5px;
    opacity: 1;
}

.form-textarea textarea::-webkit-scrollbar-track {
    margin: 15px 0px;
    border-radius: 10px;
}

.form-textarea textarea::-webkit-scrollbar-thumb {
    background: #3776f0;
    border-radius: 10px;
}

.input {
    outline: none;
    border: none;
    background-color: inherit;
    font-family: Montserrat;
    padding: 0;
}

.input::placeholder {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
}

.input_default {
    background-color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 16px;
    border: 2px solid #101f3226;
    font-size: 18px;
    font-weight: 500;
    width: calc(100% - 36px);
}

.checkbox {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 12px;
    position: relative;
    user-select: none;
    cursor: pointer;
}

.checkbox input {
    height: 0;
    opacity: 0;
    position: absolute;
    width: 0
}

.checkmark {
    background: #FFFFFF;
    border-radius: 8px;
    border: 2px solid #101f3226;
    height: 20px;
    width: 20px;
    min-width: 20px;
    position: relative;
    top: 0;
    left: 0;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkbox__label {
    display: flex;
    align-items: center;
    word-break: break-word;
}

.checkbox:hover input ~ .checkmark {
    background-color: #E4EFFF;
}
  
.checkbox input:checked ~ .checkmark {
    background-color: #3776F0;
    border: 2px solid #101f3226;
}
  
.checkbox input:checked ~ .checkmark:after {
    display: block;
}
  
.checkbox input:focus ~ .checkmark {
    outline: 1px solid #806ec979;
}

.checkbox_default .checkbox__label {
    font-size: 18px;
    font-weight: 500;
}

.contact-form__button {
    margin-top: 32px;
}

footer {
    background-color: #d9e8f6;
    color: #101F33
}

.footer__wrapper {
    padding-top: 32px;
    padding-bottom: 32px; 
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 24px;
}

.mailing-form__title {
    color: #101F33;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}

.mailing-form__input {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.mailing-form__input input {
    width: 100%;
}

.footer-contacts {
    width: 30%;
}

.footer-contacts__title {
    color: #101F33;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-contacts__link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.footer-rules {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    gap: 32px;
}

.footer-rules a {
    color: inherit;
}

.footer-rules a:hover {
    color: #2967F6;
}

.map {
    width: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.form-input {
    width: 100%;
}


@media (max-width: 1050px) {
    .main-info__content__title {
        font-size: 36px;
    }

    .main-info__content__text {
        font-size: 18px;
    }

    .logo {
        font-size: 18px;
    }
    .header-links {
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .header-links a {
        font-size: 14px;
    }
    .header-buttons {
        gap: 15px;
    }
}

@media (max-width: 767px) {
    header {
        position: fixed;
        width: 100%;
        background-color: #FFFFFF;
    }

    .header__menu-button {
        position: relative;
        height: 48px;
        width: 48px;
        min-width: 48px;
        cursor: pointer;
    }

    .header__menu-button::before,
    .header__menu-button::after,
    .header__menu-button > * {
        content: '';
        position: absolute;
        height: 3px;
        width: 44px;
        left: 2px;
        background-color: #101F33;
        border-radius: 2px;
    }

    .header__menu-button::before {
        top: 12px;
    }

    .header__menu-button::after {
        top: 23px;
    }

    .header__menu-button > * {
        top: 34px;
    }

    body.header-menu_opened .header__menu-button::before {
        top: 23px;
        transform: rotate(45deg);
    }

    body.header-menu_opened .header__menu-button::after {
        top: 23px;
        transform: rotate(-45deg);
    }

    body.header-menu_opened .header__menu-button > * {
        display: none;
    }

    .header-links a {
        font-size: 20px;
    }

    .header-links {
        gap: 24px
    }

    .header-menu, .header-buttons {
        display: none ;
    }

    body.header-menu_opened .header-menu {
        display: block;
        position: fixed;
        z-index: 998;
        overflow-x: hidden;
        overflow-y: auto;
        text-align: center;
        top: 80px;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: red;
        background-color: #FFFFFF;
        padding: 40px 24px 20px;
    }

    body.header-menu_opened .header-buttons {
        display: flex;
        position: fixed;
        justify-content: center;
        z-index: 998;
        overflow-x: hidden;
        overflow-y: auto;
        top: 270px;
        left: 0;
        bottom: 0;
        right: 0;
        padding: 0px 24px 20px;
        margin-top: 40px;
    }

    .header-links {
        flex-direction: column;
    }

    .h2_def {
        font-size: 28px;
        text-align: center;
    }

    .main-content {
        margin-top: 80px;
    }

    .main-content__block_main {
        background: linear-gradient(0deg, rgb(244, 247, 250), rgba(130, 186, 246, 0.3));
    }

    .main-info {
        padding: 50px 30px;
        height: auto;
    }

    .main-info__content {
        width: 100%;
    }

    .main-info__content__title {
        text-align: center;
        font-size: 30px;
    }

    .main-info__background {
        display: none;
    }

    .investor-info__content {
        padding: 30px;
    }

    .investor-info__content__title {
        width: 100%;
    }

    .investor-info__content__img {
        display: none;
    }

    .request {
        flex-direction: column;
    }

    .request__title {
        width: 100%;
    }

    .contact-form__inputs input {
        width: calc(100% - 35px);
    }

    .pipeline {
        flex-direction: column;
        gap: 20px;
    }

    .pipeline::after {
        display: none;
    }

    .pipeline-item {
        width: 100%;
        flex-direction: row;
        align-items: start;
        gap: 15px;
    }

    .pipeline-item__text {
        text-align: start;
    }

    .pipeline-item__step {
        padding: 0;
    }

    .pipeline-item__step__wrapper {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 20px;
    }
    
    .pipeline-item__title {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .pipeline-item__description {
        font-size: 16px;
    }

    .about__benefits {
        flex-direction: column;
        align-items: center;
        gap: 30px
    }

    .contacts__content {
        flex-direction: column;
        align-items: center;
    }

    .contacts__content__wrapper {
        width: 100%;
        align-items: center;
        justify-content: space-around;
        text-align: center;
    }

    .benefit_default {
        width: calc(100% - 30px);
    }

    .map {
        width: 100%;
    }
    .mailing-form__title {
        text-align: center;
    }

    .mailing-form__input {
        flex-direction: column;
    }

    .mailing-form__input input{
        width: auto;
    }

    .button_footer {
        width: 100%;
        font-size: 16px;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-contacts {
        width: 100%;
    }

    .footer-links {
        flex-direction: row-reverse;
    }

    .footer-rules {
        flex-direction: column;
        gap: 10px;
    }

    .investor-info__content__h3 {
        font-size: 22px;
    }

    .investor-info__content__text {
        font-size: 18px;
    }

    .modal {
        transition: none;
    }
}

@media (max-height: 750px) {
    .modal {
        transition: none;
    }
}