@charset "UTF-8";
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:focus, :active {
    outline: none;
}

a:focus, a:active {
    outline: none;
}

nav, footer, header, aside {
    display: block;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: #37b4e6;
}

html, body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
}

input, button, textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

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

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1540px;
    padding: 0 20px;
    margin: 0 auto;
}

@media only screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
}

/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('./fonts/montserrat-italic-cyr.woff2') format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('./fonts/montserrat-italic-lat.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* cyrillic */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('./fonts/montserrat-normal-cyr.woff2') format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

/* latin */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('./fonts/montserrat-normal-lat.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html {
    font-size: 62.5%;
}

body {
    background-color: #fff;
    font-size: 1.6rem;
    line-height: 1.2;
    color: #1A1A1A;
    font-family: "Montserrat";
}

.footer {
    margin: auto 0 0;
}

.page-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-x: hidden;
    min-height: 100%;
}

.header {
    height: 120px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: rgba(8, 20, 29, 0.5019607843);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header._active {
    background-color: #0C1B27;
}

.header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 120px;
}

.header__logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 233px;
    flex: 0 0 233px;
    height: 77px;
    width: 233px;
    margin-right: 20px;
}

@media only screen and (max-width: 768px) {
    .header__logo {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 154px;
        flex: 0 0 154px;
        height: 51px;
        width: 154px;
    }
}

.header__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.header__contacts {
    margin-left: auto;
    text-align: end;
    color: #fff;
}

.header__contacts p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 9px 0;
}

@media only screen and (max-width: 768px) {
    .header__contacts p {
        display: block;
        position: relative;
        padding-left: 20px;
    }

    .header__contacts p svg {
        position: absolute;
        bottom: 0;
        left: 0;
    }
}

@media only screen and (max-width: 768px) {
    .header__contacts p:first-child {
        display: none;
    }
}

.header__contacts p a {
    margin-left: 10px;
}

@media only screen and (max-width: 768px) {
    .header__contacts p a {
        display: block;
        margin-top: 6px;
        margin-left: 0;
    }
}

.header__contacts p a:hover {
    text-decoration: underline;
}

.header__contacts p svg {
    margin-right: 9px;
}

.footer {
    background-color: #1B1B1B;
    padding-top: 40px;
}

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
}

@media only screen and (max-width: 992px) {
    .footer__top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer__logo {
    height: 120px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 360px;
    flex: 0 0 360px;
    width: 360px;
    margin-right: 20px;
}

@media only screen and (max-width: 992px) {
    .footer__logo {
        margin: 0 auto 20px;
        max-width: 100%;
    }
}

.footer__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer__content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 20px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #333333;
    border-radius: 3px;
}

@media only screen and (max-width: 992px) {
    .footer__content {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        max-width: 360px;
        margin: 0 auto;
        padding: 24px;
    }
}

.footer__content > a {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    white-space: nowrap;
    line-height: 52px;
    border: 1px solid #fff;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    margin-right: 30px;
}

@media only screen and (max-width: 992px) {
    .footer__content > a {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin: 0 0 20px;
    }
}

.footer__content > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: end;
}

@media only screen and (max-width: 992px) {
    .footer__content > div {
        text-align: start;
    }
}

.footer__content > div p {
    text-align: end;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media only screen and (max-width: 992px) {
    .footer__content > div p {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position: relative;
        padding-left: 25px;
    }
}

.footer__content > div p svg {
    margin-right: 6px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 14px;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

@media only screen and (max-width: 992px) {
    .footer__content > div p svg {
        position: absolute;
        left: 0;
        top: 3px;
    }
}

.footer__content > div p a {
    text-decoration: underline;
    margin-left: 10px;
}

@media only screen and (max-width: 992px) {
    .footer__content > div p a {
        display: block;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-left: 0;
    }
}

.footer__content > div p:nth-child(2) {
    margin: 12px 0;
}

@media only screen and (max-width: 992px) {
    .footer__content > div p:nth-child(2) {
        margin: 24px 0;
    }
}

.footer__bottom {
    border-top: 1px solid #484848;
}

.footer__bottom a {
    display: block;
    text-decoration: underline;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    margin: 40px auto;
    color: #9C9C9C;
    font-size: 14px;
    font-weight: 500;
}

section.section {
    margin-bottom: 80px;
}

@media only screen and (max-width: 768px) {
    .footer__bottom a {
        white-space: unset;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    section.section {
        margin-bottom: 40px;
    }
}

section.section .section__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 40px;
    text-align: center;
    color: #225F93;
    margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
    section.section .section__title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

.sec-3 {
    background-color: #333333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 720px;
    padding: 50px 0;
    position: relative;
}

.sec-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 720px;
    background-image: url("./img/bckg_frame.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    z-index: 1;
}

@media only screen and (max-width: 992px) {
    .sec-3::before {
        background-size: cover;
        background-position: left center;
    }
}

.sec-3__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 992px) {
    .sec-3__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.sec-3__content img {
    width: 632px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 632px;
    flex: 0 0 632px;
    max-width: 50%;
    margin-right: 128px;
}

@media only screen and (max-width: 992px) {
    .sec-3__content img {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 992px) {
    .sec-3__content div {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}

.sec-3__content div .section__title {
    text-align: start;
    color: #38B5E6;
}

@media only screen and (max-width: 992px) {
    .sec-3__content div .section__title {
        text-align: center;
    }
}

.sec-3__content div .section__title span {
    display: block;
    font-weight: 800;
    color: #fff;
}

.sec-3__content div ul li {
    position: relative;
    padding-left: 31px;
    background-image: url("./img/plus_light.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left top;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #38B5E6;
}

.sec-3__content div ul li span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-top: 4px;
}

.sec-2 {
    background-color: #1B1B1B;
}

.sec-2.section {
    margin-bottom: 0;
}

.sec-2__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 992px) {
    .sec-2__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.sec-2__content img {
    height: 740px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-right: 20px;
}

@media (max-width: 1500px) {
    .sec-2__content img {
        max-width: 40%;
    }
}

@media only screen and (max-width: 992px) {
    .sec-2__content img {
        height: unset;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }
}

.sec-2__content > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 20px 0;
}

@media only screen and (max-width: 992px) {
    .sec-2__content > div {
        padding: 20px 0;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.sec-2__content > div .section__title {
    text-align: start;
    color: #38B5E6;
    max-width: 600px;
    line-height: 1.2;
}

.sec-2__content > div .section__title span {
    font-weight: 800;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .sec-2__content > div .section__title {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
}

.sec-2__content > div ._box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 1px solid #818181;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    color: #fff;
}

.sec-2__content > div ._box > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    border-bottom: 1px solid #818181;
}

.sec-2__content > div ._box > div > div {
    min-height: 61px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

@media only screen and (max-width: 992px) {
    .sec-2__content > div ._box > div > div {
        font-size: 14px;
    }
}

.sec-2__content > div ._box > div > div:first-child {
    border-right: 1px solid #818181;
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 115px;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 992px) {
    .sec-2__content > div ._box > div > div:first-child {
        padding-right: 10px;
        white-space: break-spaces;
        max-width: 50%;
        padding-left: 10px;
    }

    .sec-2__content > div ._box > div > div:first-child span {
        white-space: break-all;
        word-break: break-all;
    }
}

.sec-2__content > div ._box > div > div:first-child::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 9px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    background-image: url("./img/plus_light.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
}

@media only screen and (max-width: 992px) {
    .sec-2__content > div ._box > div > div:first-child::before {
        margin-right: 5px;
    }
}

.sec-2__content > div ._box > div > div:last-child {
    padding: 12px 12px 12px 24px;
}

.sec-2__content > div ._box > div > div:last-child ul li {
    list-style: disc;
}

.sec-2__content > div ._box > div > div {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

@media screen and (max-width: 768px) {
    .sec-2__content > div ._box > div > div {
        word-break: break-all;
    }
}

.sec-2__content > div a {
    display: block;
    width: 100%;
    margin-top: 40px;
    line-height: 70px;
    background-color: #38B5E6;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border-radius: 3px;
    -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
    transition: background-color 0.3s, -webkit-transform 0.2s;
    transition: background-color 0.3s, transform 0.2s;
    transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
}

.sec-2__content > div a:hover {
    background-color: #2a9fd4;
}

.sec-2__content > div a:active {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
}

@media only screen and (max-width: 992px) {
    .sec-2__content > div a {
        margin-bottom: 40px;
    }
}

.sec-4__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #EDEDED;
    background-color: #FAFAFA;
    border-radius: 3px;
    margin-top: 80px;
}

@media only screen and (max-width: 992px) {
    .sec-4__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 24px 20px;
    }
}

@media only screen and (max-width: 768px) {
    .sec-4__content {
        margin-top: 40px;
    }
}

.sec-4__content img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 633px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-left: auto;
    max-width: 50%;
}

@media only screen and (max-width: 992px) {
    .sec-4__content img {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 24px;
    }
}

@media only screen and (max-width: 768px) {
    .sec-4__content img {
        max-width: 100%;
        margin-left: 0;
    }
}

.sec-4__content div:not(.section__title) {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 127px;
    max-width: 613px;
    margin-right: 20px;
    padding: 60px 0;
}

@media only screen and (max-width: 992px) {
    .sec-4__content div:not(.section__title) {
        padding: 0;
        margin: 0 0 20px;
        text-align: center;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
    }
}

@media only screen and (max-width: 992px) {
    .sec-4__content div:not(.section__title) ul {
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 24px;
    }
}

.sec-4__content div:not(.section__title) ul li {
    position: relative;
    padding-left: 31px;
    background-image: url("./img/plus_dark.svg");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left top;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

@media only screen and (max-width: 992px) {
    .sec-4__content div:not(.section__title) ul li {
        text-align: start;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
    }
}

.sec-4__content div:not(.section__title) .section__title {
    text-align: start;
}

@media only screen and (max-width: 992px) {
    .sec-4__content div:not(.section__title) .section__title {
        text-align: center;
    }
}

.sec-1__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #EDEDED;
    background-color: #FAFAFA;
    border-radius: 3px;
    margin-top: 80px;
}

@media only screen and (max-width: 992px) {
    .sec-1__content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 24px 20px;
    }
}

@media only screen and (max-width: 768px) {
    .sec-1__content {
        margin-top: 40px;
    }
}

.sec-1__content img {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 692px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-left: auto;
    max-width: 50%;
}

@media only screen and (max-width: 992px) {
    .sec-1__content img {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 24px;
    }
}

@media only screen and (max-width: 768px) {
    .sec-1__content img {
        max-width: 100%;
        margin-left: 0;
    }
}

.sec-1__content .sec-1__content_text {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 127px;
    max-width: 613px;
    margin-right: 20px;
    padding: 60px 0;
}

@media only screen and (max-width: 992px) {
    .sec-1__content .sec-1__content_text {
        padding: 0;
        margin: 0 0 20px;
        text-align: center;
        max-width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        width: 100%;
    }
}

.sec-1__content .sec-1__content_text span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #225F93;
    margin-bottom: 12px;
}

.sec-1__content .sec-1__content_text p {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 400;
    max-width: 360px;
}

@media only screen and (max-width: 992px) {
    .sec-1__content .sec-1__content_text p {
        max-width: 100%;
    }
}

.sec-1__content .sec-1__content_text p b {
    font-weight: 600;
    color: #225F93;
}

.sec-1__content .sec-1__content_text .section__title {
    text-align: start;
}

@media only screen and (max-width: 992px) {
    .sec-1__content .sec-1__content_text .section__title {
        text-align: center;
    }
}

.sec-1 .sec-1__why .sec-1__why_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.sec-1 .sec-1__why .sec-1__why_row .sec-1__why_item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 287px;
    background-color: #333333;
    text-align: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 218px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 25px;
    border-radius: 3px;
}

.sec-1 .sec-1__why .sec-1__why_row .sec-1__why_item svg, .sec-1 .sec-1__why .sec-1__why_row .sec-1__why_item img {
    width: 52px;
    height: 49px;
    margin: 0 auto 16px;
}

.sec-1 .sec-1__why .sec-1__why_row .sec-1__why_item span {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.sec-1 .sec-1__why .sec-1__why_row .sec-1__why_item p {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #fff;
}

.intro {
    width: 100%;
    background-image: url("./img/intro_banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 80px;
}

@media only screen and (max-width: 768px) {
    .intro {
        margin-bottom: 40px;
        background-size: auto 100%;
        background-position: 20% center;
    }
}

.intro__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 1080px;
    padding-top: 120px;
    color: #fff;
    max-width: 750px;
}

@media only screen and (max-width: 768px) {
    .intro__content {
        min-height: unset;
        padding-top: 170px;
        max-width: 100%;
        text-align: center;
    }
}

.intro__content .intro__title {
    font-size: 96px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

@media only screen and (max-width: 768px) {
    .intro__content .intro__title {
        font-size: 36px;
    }
}

.intro__content strong {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #38B5E6;
    margin-bottom: 16px;
    display: block;
}

@media only screen and (max-width: 768px) {
    .intro__content strong {
        font-size: 24px;
    }
}

.intro__content p {
    display: block;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
}

@media only screen and (max-width: 768px) {
    .intro__content p {
        font-size: 20px;
    }
}

.intro__content a {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-top: 40px;
    line-height: 70px;
    width: 360px;
    background-color: #38B5E6;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border-radius: 3px;
    -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
    transition: background-color 0.3s, -webkit-transform 0.2s;
    transition: background-color 0.3s, transform 0.2s;
    transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
    text-transform: uppercase;
}

.intro__content a:hover {
    background-color: #2a9fd4;
}

.intro__content a:active {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
}

@media only screen and (max-width: 768px) {
    .intro__content a {
        width: 100%;
        margin-top: 24px;
        margin-bottom: 72px;
    }
}

.modal-form {
    max-width: 1056px;
    width: 100%;
    padding: 40px;
    background: #1a1a1a;
    border-radius: 8px;
}

.modal-form--success {
    max-width: 400px;
    padding: 50px 40px;
}

@media only screen and (max-width: 768px) {
    .modal-form--success {
        max-width: 100%;
        padding: 40px 30px;
    }
}

.modal-form__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.modal-form__title {
    font-size: 36px;
    font-weight: 700;
    color: #38B5E6;
    text-align: center;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.modal-form__title.success {
    color: #4CAF50;
}

.modal-form__title.error {
    color: red;
}

.modal-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media only screen and (max-width: 768px) {
    .modal-form__fields {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.modal-form__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.modal-form__col p, .modal-form__content p {
    font-size: 13px;
    color: #fff;
}

.modal-form__col p b, .modal-form__content p b {
    color: red;
}

@media only screen and (max-width: 768px) {
    .modal-form__col {
        gap: 12px;
    }
}

.modal-form input[type=text] {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.modal-form input[type=text]::-webkit-input-placeholder, .modal-form input[type=tel]::-webkit-input-placeholder, .modal-form input[type=email]::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.modal-form input[type=text]::-moz-placeholder, .modal-form input[type=tel]::-moz-placeholder, .modal-form input[type=email]::-moz-placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.modal-form input[type=text]:-ms-input-placeholder, .modal-form input[type=tel]:-ms-input-placeholder, .modal-form input[type=email]:-ms-input-placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.modal-form input[type=text]::-ms-input-placeholder, .modal-form input[type=tel]::-ms-input-placeholder, .modal-form input[type=email]::-ms-input-placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.modal-form input[type=text]::placeholder,
.modal-form input[type=tel]::placeholder,
.modal-form input[type=email]::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.modal-form input[type=text]:focus,
.modal-form input[type=tel]:focus,
.modal-form input[type=email]:focus {
    border-color: #38B5E6;
}

.modal-form__textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    outline: none;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.modal-form__textarea::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.modal-form__textarea::-moz-placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.modal-form__textarea:-ms-input-placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.modal-form__textarea::-ms-input-placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.modal-form__textarea::placeholder {
    color: #ffffff;
    opacity: 0.7;
}

.modal-form__textarea:focus {
    border-color: #38B5E6;
}

.modal-form__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.modal-form__submit {
    width: 100%;
    max-width: 700px;
    padding: 14px 24px;
    background: #38B5E6;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    min-height: 70px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    -webkit-transition: background-color 0.3s, -webkit-transform 0.2s;
    transition: background-color 0.3s, -webkit-transform 0.2s;
    transition: background-color 0.3s, transform 0.2s;
    transition: background-color 0.3s, transform 0.2s, -webkit-transform 0.2s;
}

.modal-form__submit:hover {
    background: #2a9fd4;
}

.modal-form__submit:active {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    transform: scale(0.98);
}

.modal-form__checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    width: 100%;
    max-width: 700px;
}

.modal-form__checkbox input[type=checkbox] {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #38B5E6;
}

.modal-form__checkbox span {
    font-size: 12px;
    line-height: 1.4;
    color: #7D7D7D;
}

.modal-form__checkbox span a {
    text-decoration: underline;
}

.modal-form__success-icon {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
}

.modal-form__success-icon svg {
    width: 100%;
    height: 100%;
}

.modal-form__success-text {
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.modal-form__privacy-content {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    max-height: 70vh;
    overflow-y: auto;
}

@media only screen and (max-width: 768px) {
    .modal-form__privacy-content {
        font-size: 13px;
        max-height: 60vh;
    }
}

.modal-form__privacy-content p {
    margin: 0 0 16px 0;
    color: #ffffff;
}

.modal-form__privacy-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #38B5E6;
    margin: 24px 0 12px 0;
}

.modal-form__privacy-content h3:first-child {
    margin-top: 0;
}

.modal-form__privacy-content ul {
    margin: 12px 0;
    padding-left: 24px;
    list-style-type: disc;
}

.modal-form__privacy-content ul li {
    margin: 8px 0;
    color: #ffffff;
}

.modal-form__privacy-content strong {
    font-weight: 600;
    color: #ffffff;
}

.fancybox-container .fancybox__backdrop {
    background: rgba(0, 0, 0, 0.8);
}

.fancybox-container .fancybox-content {
    padding: 20px;
}

@media only screen and (max-width: 768px) {
    .fancybox-container .fancybox-content {
        padding: 15px;
    }
}

.fancybox-container .fancybox-close-small {
    color: #ffffff;
    background: transparent;
}

.fancybox-container .fancybox-content {
    background: transparent;
    padding: 0;
}

.fancybox-container .fancybox-content > .fancybox-close-small.is-close {
    top: 5px;
    right: 5px;
}

.fancybox-container .fancybox-content:not(#modal-success) {
    max-width: 1056px;
    width: 100%;
}

.fancybox-container .fancybox-content:not(#modal-success) .modal-form__fields {
    width: 100%;
}

/* loader */
.spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    background: #FFF;
    box-shadow: -24px 0 #FFF, 24px 0 #FFF;
    box-sizing: border-box;
    animation: shadowPulse 2s linear infinite;
}

@keyframes shadowPulse {
    33% {
        background: #FFF;
        box-shadow: -24px 0 #37b4e6, 24px 0 #FFF;
    }
    66% {
        background: #37b4e6;
        box-shadow: -24px 0 #FFF, 24px 0 #FFF;
    }
    100% {
        background: #FFF;
        box-shadow: -24px 0 #FFF, 24px 0 #37b4e6;
    }
}

.spinner-container {
    z-index: 10000 !important;
    position: fixed;
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.spinner-container span.spinner {
    position: relative;
    top: 50%;
}

.openModal {
    cursor: pointer;
}

@media screen and (min-width: 993px) {
    .footer__content > div {
        white-space: nowrap;
    }
}
