@font-face {
    font-family: 'FuturaPT';
    src: url('FuturaPT-Light.eot');
    src:
        local('FuturaPT Light'),
        local('FuturaPT-Light'),
        url('../fonts/FuturaPT-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FuturaPT-Light.woff') format('woff'),
        url('../fonts/FuturaPT-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT';
    src: url('FuturaPT-Book.eot');
    src:
        local('FuturaPT Book'),
        local('FuturaPT-Book'),
        url('../fonts/FuturaPT-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FuturaPT-Book.woff') format('woff'),
        url('../fonts/FuturaPT-Book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'FuturaPT';
    src: url('FuturaPT-Medium.eot');
    src:
        local('FuturaPT Medium'),
        local('FuturaPT-Medium'),
        url('../fonts/FuturaPT-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FuturaPT-Medium.woff') format('woff'),
        url('../fonts/FuturaPT-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'FuturaPT';
    src: url('FuturaPT-Demi.eot');
    src:
        local('FuturaPT Demi'),
        local('FuturaPT-Demi'),
        url('../fonts/FuturaPT-Demi.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FuturaPT-Demi.woff') format('woff'),
        url('../fonts/FuturaPT-Demi.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'FuturaPT';
    src: url('FuturaPT-Bold.eot');
    src:
        local('FuturaPT Bold'),
        local('FuturaPT-Bold'),
        url('../fonts/FuturaPT-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FuturaPT-Bold.woff') format('woff'),
        url('../fonts/FuturaPT-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --default-main-color: #4974ff;
    --default-hover-color: #4974ff;

    --dark-main-color: #1f1f1f;
    --dark-hover-color: #000000;

    --light-main-color: #9bb3ff;
    --light-hover-color: #9bb3ff;
    --text-color: #2b2b2b;
    --text-color-light: #fff;

    --alt-color: #e5ebff;
    --green-main-color: #50b46b;

    --header-height: 80px;

    --iti-spacer-horizontal: 18px;
    --iti-arrow-height: 5px;
    --iti-arrow-width: 10px;
    --iti-arrow-padding: 10px;
}

body {
    font-family: 'FuturaPT', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-color);
}
body.no-scroll {
    margin: 0;
    height: 100%;
    overflow: hidden;
}
a {
    text-decoration: none;
    color: var(--default-main-color);
}
a:hover {
    color: var(--default-hover-color);
}
p {
    font-weight: 400;
    margin-bottom: 20px;
}
p b {
    font-weight: 500;
}

.container {
    display: block;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
.mob-only {
    display: none !important;
}

.btn {
    font-family: 'FuturaPT', sans-serif;
    display: inline-block;
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    line-height: 50px;
    border: 1px solid transparent;
    border-radius: 140px;
    padding: 0;
    width: 100%;
    max-width: 294px;
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}
.btn-default {
    color: #fff;
    border-color: #fff;
    background-color: #000;
}

.btn-default:hover {
    color: #000;
    background-color: #fff;
    border-color: #000;
}
.btn-light {
    color: #000;
    background-color: #fff;
    border-color: #000;
}
.btn-light:hover {
    color: #fff;
    border-color: #fff;
    background-color: #000;
}

@media screen and (max-width: 998px) {
    body {
        font-size: 14px;
        line-height: 18px;
    }
    header {
        position: fixed !important;
    }
    .container {
        padding: 0 20px;
    }
    .header-logo {
        flex-grow: 1;
    }
    .desktop-only {
        display: none !important;
    }
    .mob-only {
        display: block !important;
    }
    .mob-menu {
        position: fixed;
        left: -100%;
        top: 81px;
        background-color: #000;
        width: 100%;
        text-align: center;
        -webkit-box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 30px 25px;
        height: 100vh;
        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: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        z-index: 998;
        transition: all 0.3s ease-in-out;
    }
    .mob-menu.active {
        left: 0;
    }
    .mob-menu .nav-link {
        padding: 16px 0;
    }
    .mob-menu .social-links {
        margin-top: 24px;
        text-align: left;
    }
    .mob-menu .social-links a {
        margin-bottom: 2px;
    }
    .nav-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: left;
    }
    .nav-link {
        font-size: 24px;
        line-height: 1;
        padding: 24px 0;
        height: auto;
    }
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .ham-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .ham-line:nth-child(1) {
        -webkit-transform: translateY(9px) rotate(45deg);
        -ms-transform: translateY(9px) rotate(45deg);
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .ham-line:nth-child(3) {
        -webkit-transform: translateY(-9px) rotate(-45deg);
        -ms-transform: translateY(-9px) rotate(-45deg);
        transform: translateY(-9px) rotate(-45deg);
    }
    .header-block > .header-button::after {
        display: none;
    }
    .mob-menu .header-button {
        max-width: 100%;
        height: 50px;
        font-size: 18px;
        line-height: 45px;
    }
}

header {
    position: fixed;
    top: 0;
    background-color: #000;
    width: 100%;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(21, 22, 31, 0.1);
    box-shadow: 0px 0px 20px 0px rgba(21, 22, 31, 0.1);
    border-bottom: 1px solid #fff;
}
.header-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    background-color: #000;
    position: relative;
    z-index: 999;
}
.header-block nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-block nav .logo {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 60px;
}
.header-block > .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 170px;
}
.header-menu {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    /* column-gap: 20px; */
}
.nav-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    color: var(--text-color-light);
    white-space: nowrap;
    font-size: 16px;
}
.header-menu .nav-link {
    padding: 10px 28px;
    border-radius: 10px;
}
.header-block .lang-switch {
    border: 1px solid var(--text-color-light);
    border-radius: 6px;
    padding: 0 10px;
}
.header-block .lang-switch .nav-link {
    padding: 10px 0;
}
.header-menu .nav-link:hover {
    text-decoration: underline;
}
.nav-link:hover {
    color: #fff;
}
.nav-link.current {
    font-weight: 700;
}
.header-button {
    font-size: 22px;
    height: 48px;
    line-height: 48px;
    min-width: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: unset;
}
.header-button::after {
    transform: rotate(45deg);
    width: 24px;
    height: 24px;
}
.ham-line {
    display: block;
    width: 24px;
    height: 2.5px;
    margin: 6.5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-color-light);
}

main {
    margin-top: var(--header-height);
    min-height: 60vh;
}
section {
    padding: calc(var(--header-height)) 0 0;
}

h2 {
    font-family: 'El Messiri', sans-serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 32px;
}

.hero-section {
    background: #000;
    color: #fff;
    padding: 0;
    position: relative;
}
.hero-logo {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 380px;
}
.hero-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.hero-block p i {
    font-weight: 300;
}
.hero-text {
    width: 50%;
    padding-right: 24px;
}
.hero-title {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    position: relative;
    width: 120%;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 24px;
    margin-bottom: 112px;
}
.hero-block .btn {
    margin-bottom: 20px;
}
.hero-image {
    width: 50%;
    text-align: right;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.hero-image p {
    position: absolute;
    top: 190px;
    right: 0;
    font-weight: 300;
    width: 200px;
}

.history-section h2,
.price-section h2 {
    text-align: center;
}

.history-section {
    padding: 80px 0;
}
.history-block {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 26px;
}
.history-section button,
.faq-section button {
    margin: 10px auto 0;
    cursor: pointer;
}
.history-block .history-item {
    flex: 0 0 calc(33.3333% - 18px);
    border: 1px solid #000;
    border-radius: 6px;
    padding: 23px;
}
.history-item {
    overflow: hidden;
}
.history-item .indikator {
    margin-bottom: 24px;
}
.history-block .history-item:last-child {
    padding: 0;
}
.history-item img {
    object-fit: cover;
}

.section-quote {
    background-color: #000000;
    color: #fff;
    padding: 18px 0;
}
.quote-block {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.quote-block .quote-img {
    flex: 0 0 45%;
    padding: 0 20px;
}
.quote-block .quote-img img {
    margin: 40px auto 24px;
}
.quote-block .quote-text {
    flex: 0 0 55%;
    font-weight: 400;
}

.article-section {
    padding: 0;
}
.article-item h2 {
    font-size: 30px;
    position: relative;
    margin-bottom: 20px;
}
.article-item h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: -2px;
}
.article-item {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.article-item > div {
    flex: 0 0 50%;
}
.article-item .article-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 25px;
    padding: 14px;
}
.article-item .article-text p {
    margin: 0;
}
.article-item:nth-child(even) {
    text-align: right;
}
.article-item:nth-child(even) .article-text {
    align-items: flex-end;
}
.article-info {
    margin-right: 100px;
    display: inline-block;
    border: 1px solid #000;
    padding: 30px 21px;
    text-align: left;
}
.article-item:nth-child(even) .article-info {
    margin-right: 0;
    margin-left: 100px;
}
.article-title {
    display: inline-block;
    position: relative;
    font-size: 30px;
    line-height: 40px;
    font-weight: 400;
    border-bottom: 1px solid #000;
    text-transform: uppercase;
}
.article-title::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../images/icons/arrow-diag.svg) center / contain no-repeat;
    vertical-align: bottom;
}
.article-info .article-title {
    margin-bottom: 26px;
}
.article-info ul {
    list-style: disc;
    padding-left: 20px;
}
.article-info.audit ul {
    list-style: decimal;
}
.article-image {
    position: relative;
}
.article-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.article-image p {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.about-section {
    background-color: #000;
    color: #fff;
    padding: 10px 0 0;
}
.about-section .container {
    background: #000 url(../images/about-bg.png) right/contain no-repeat;
}
.about-section .about-info > p {
    text-transform: uppercase;
}
.about-info {
    max-width: 800px;
    padding: 40px 0;
}
.about-block {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 24px;
}

.about-block .about-item {
    flex: 0 0 calc(50% - 12px);
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 22px;
}
.about-item img {
    max-width: 220px;
    margin-bottom: 10px;
}
.about-item a {
    color: #fff;
    text-decoration: underline;
}
.about-block .about-item:last-child {
    flex: 0 0 100%;
}

.price-section {
    padding: var(--header-height) 0;
}
.price-block {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
}
.price-block .price-item {
    flex: 0 0 calc(50% - 12px);
    background: #000;
    color: #fff;
    border-radius: 10px;
    padding: 54px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    align-items: center;
    justify-content: center;
}
.price-block .price-item {
    background: #000 url(../images/price-block-1.jpg) center/cover no-repeat;
}
.price-block .price-item:nth-child(2) {
    background: #000 url(../images/price-block-2.jpg) center/cover no-repeat;
}
.price-block .price-item:nth-child(3) {
    background: #000 url(../images/price-block-3.jpg) center/cover no-repeat;
}
.price-block .price-item .price-title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}
.price-block .price-item .price-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -2px;
}
.price-block .price-item ul li {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    text-align: left;
    margin-bottom: 20px;
}
.price-block .price-item ul li:before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../images/icons/arrow-diag.svg) center / contain no-repeat;
    vertical-align: middle;
    filter: invert(1);
    flex: 0 0 30px;
}
.price-block-about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
.price-block-about .price-about-info {
    flex: 0 0 60%;
}
.price-block-about .price-about-action {
    flex: 0 0 30%;
}
.price-block-about .price-about-action a {
    max-width: 100%;
    margin-bottom: 24px;
}
.form-section {
    background: #000 url(../images/form-bg.jpg) center/cover no-repeat;
    color: #fff;
    padding: 50px 0;
}
.form-block {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.form-block > div {
    flex: 0 0 50%;
}
.form-block .form-info h2 span {
    font-size: 30px;
    line-height: 1;
    background-color: #fff;
    color: #000;
    border-radius: 40px;
    padding: 10px 20px;
    display: inline-block;
}
.form-block .form-info p {
    font-size: 24px;
    line-height: 32px;
    text-transform: uppercase;
    font-weight: 700;
}
.form-block .form-info p span.old-price {
    text-decoration: line-through;
    display: block;
}

.form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    align-content: space-around;
    flex-wrap: wrap;
    align-items: stretch;
}
.form-group {
    margin-bottom: 8px;
}
.field,
textarea {
    font-family: 'FuturaPT', sans-serif;
    display: block;
    width: 100%;
    max-width: 300px;
    height: 46px;
    background-color: #fff;
    border: 1px solid #9a9a9a;
    border-radius: 60px;
    padding: 0 18px;
    font-size: 18px;
    color: #000;
}
.form .btn-default {
    display: block;
    margin-top: 24px;
}

.faq-block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 24px;
}
.faq-section {
    padding: 80px 0;
}
.faq-table {
    flex: 0 0 calc(50% - 12px);
}
.faq-table ul li {
    border: 1px solid #000;
    padding: 10px 20px;
    margin-bottom: -1px;
}

footer {
    background-color: #000;
    color: #fff;
    text-align: left;
    padding: 55px 0;
    font-size: 16px;
}
footer img {
    display: block;
    margin: 0 auto 10px;
    max-height: 150px;
}
.footer-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-info {
    width: 100%;
    max-width: 330px;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    color: #fff;
    display: block;
    text-decoration: underline;
}
.footer-info {
    margin-top: 25px;
}
.footer-contacts p {
    position: relative;
    top: -23px;
    font-size: 14px;
    line-height: 18px;
    min-width: 150px;
}
.footer-contacts p b {
    font-size: 18px;
    display: block;
    text-decoration: underline;
    margin-bottom: 7px;
}
.copyright {
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .history-block .history-item {
        flex: 0 0 calc(50% - 13px);
    }
}

@media screen and (max-width: 998px) {
    .article-item > div {
        flex: 0 0 100%;
    }
    .article-item .article-text {
        order: 2;
    }
    .article-item .article-image {
        order: 1;
        min-height: 440px;
    }
    .about-section .container {
        background: none;
    }
}
@media screen and (max-width: 797px) {
    h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    .btn {
        font-size: 14px;
        line-height: 35px;
        max-width: 220px;
    }
    .hero-block {
        position: relative;
        margin: 0 -20px;
    }
    .hero-title,
    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
        width: 100%;
    }
    .hero-text {
        position: relative;
        padding: 25px 20px;
        z-index: 30;
    }
    .hero-text .btn-default {
        max-width: 50%;
    }
    .hero-text p:last-child {
        max-width: 70%;
    }
    .hero-image {
        position: absolute;
        height: 100%;
        width: 100%;
        z-index: 10;
        bottom: 0;
    }
    .hero-image p {
        top: 200px;
        right: auto;
        left: 20px;
        text-align: left;
    }
    .hero-image img {
        position: absolute;
        width: 280px;
        bottom: 0;
        right: -50px;
    }

    .hero-block > div,
    .history-block .history-item,
    .quote-block > div,
    .about-block .about-item,
    .price-block .price-item,
    .price-block-about > div,
    .form-block > div,
    .faq-block .faq-table {
        flex: 0 0 100% !important;
    }
    .history-section {
        padding: 16px 0;
    }
    .history-section h2 {
        margin-bottom: 12px;
    }
    .history-block {
        gap: 10px;
        max-height: 326px;
        overflow: hidden;
    }
    .history-block.is-open {
        max-height: 100%;
        overflow: visible;
    }
    .history-block .history-item {
        padding: 8px;
    }
    .history-block .history-item p {
        margin-bottom: 0;
    }
    .history-block .history-item .indikator {
        max-width: 100px;
        margin-bottom: 10px;
    }
    .quote-block .quote-img img {
        margin: 0 auto 24px;
    }
    .quote-block .quote-text .btn-default {
        display: block;
        margin: 0 auto 5px;
    }
    .article-item {
        margin: 0 -20px;
    }
    .article-item h2 {
        font-size: 18px;
    }
    .article-item .article-text {
        padding: 24px 20px;
        row-gap: 12px;
    }
    .article-item .article-info {
        margin: 0 !important;
        width: 100%;
    }
    .article-item .article-text .btn {
        margin-bottom: 20px;
    }
    .article-image p {
        top: 16px;
        font-size: 16px;
        line-height: 20px;
    }

    .about-section .about-info > p {
        max-width: 60%;
        text-transform: lowercase;
    }
    .about-block {
        row-gap: 10px;
    }
    .about-block .about-item {
        padding: 10px 7px;
    }
    .about-block .about-item:nth-child(1) {
        flex: 0 0 60% !important;
    }
    .about-info {
        padding: 20px 0;
    }
    .price-section {
        padding: 24px 0;
    }
    .price-block .price-item {
        padding: 25px 17px;
        min-height: 180px;
        row-gap: 8px;
    }
    .price-block .price-item .price-title {
        font-size: 18px;
    }
    .price-block .price-item ul li {
        margin-bottom: 0;
    }
    .price-block .price-item ul li:before {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
    }
    .price-about-action {
        margin-top: 26px;
    }
    .price-block-about .price-about-action a {
        max-width: 220px;
        margin: 0 auto 20px;
        display: block;
    }
    .form-block .form-info h2,
    .form-block .form-info p {
        text-align: center;
        margin-bottom: 10px;
    }
    .form-block .form-info p {
        font-size: 16px;
    }
    .form-block .form-info p span.old-price {
        display: inline-block;
    }
    .form-block .form-info p .mob-only.time {
        display: inline-block !important;
        text-decoration: none;
        background: #fff;
        color: #000;
        padding: 0 15px;
        border-radius: 40px;
        font-weight: 400;
        margin-left: 20px;
    }
    .form {
        margin-top: 24px;
    }
    .field,
    textarea,
    .form .btn-default {
        max-width: 100%;
    }
    .form .btn-default {
        line-height: 46px;
    }
    .faq-section {
        padding: 20px 0;
    }
    .faq-block {
        max-height: 136px;
        overflow: hidden;
    }
    .faq-block.is-open {
        max-height: 100%;
        overflow: visible;
    }
    footer {
        padding: 24px 0;
    }
    .footer-block {
        justify-content: center;
    }
    .footer-logo img {
        width: 90%;
        max-height: none;
        max-width: 330px;
    }
    .footer-info {
        justify-content: space-between;
    }
    .social-links a {
        font-size: 14px;
    }
}
@media screen and (max-width: 500px) {
    .hero-subtitle {
        max-width: 70%;
    }
    .about-section .container {
        background: #000 url(../images/about-bg.png) right/contain no-repeat;
        background-position-y: 2%;
        background-size: 35%;
    }
}

.js-open-modal {
    cursor: pointer;
}
.js-overlay-modal {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.5);
    z-index: 20;
}
.modal {
    opacity: 0;
    visibility: hidden;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-box-shadow: 0 3px 10px -0.5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 10px -0.5px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-radius: 3px;
    -webkit-transition: 0.2s all;
    -o-transition: 0.2s all;
    transition: 0.2s all;
    z-index: 999;
}
.modal.active,
.js-overlay-modal.active {
    opacity: 1;
    visibility: visible;
}
.modal-title {
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 32px;
    line-height: 36px;
}
.modal-content {
    background: #fff;
    max-width: 1100px;
    width: calc(100% - 30px);
    position: absolute;
    z-index: 30;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 50px;
    border-radius: 10px;
}
.modal.success .modal-content .section-title {
    margin-bottom: 20px;
}
.js-modal-close {
    position: absolute;
    z-index: 30;
    top: 24px;
    right: 24px;
    display: block;
    width: 30px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}
.js-modal-close::before {
    content: '';
    display: block;
    width: 30px;
    aspect-ratio: 1 / 1;
    background: url('../images/icons/close.svg') center/cover no-repeat;
}
@media screen and (max-width: 998px) {
    .modal-content {
        padding: 40px 20px;
    }
    .js-modal-close {
        top: 20px;
        right: 20px;
        width: 25px;
    }
    .js-modal-close::before {
        width: 25px;
    }
    .modal-title {
        font-size: 24px;
        line-height: 30px;
        padding: 0 20px;
    }
}
