html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

a {
    background: rgba(0, 0, 0, 0)
}

a:active, a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

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

input {
    line-height: normal
}

input[type=checkbox], input[type=radio] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none
}

:root {
    /* Existing variables */
    --prime: #6835B4;
    --white: #fff;
    --black: #000;
    --dark: #000;
    --red: #E61717;
    --green: #78AA2B;
    --bg: #F1F4F9;
    --cont: 1530px;
    --padd: 10px;

    /* New spacing scale variables */
    --spacer-0: 0;
    --spacer-1: 0.5rem;   /* 8px */
    --spacer-2: 1rem;     /* 16px */
    --spacer-3: 1.5rem;   /* 24px */
    --spacer-4: 2rem;     /* 32px */
    --spacer-5: 3rem;     /* 48px */
}

/* Margin */
.m-0 { margin: var(--spacer-0) !important; }
.m-1 { margin: var(--spacer-1) !important; }
.m-2 { margin: var(--spacer-2) !important; }
.m-3 { margin: var(--spacer-3) !important; }
.m-4 { margin: var(--spacer-4) !important; }
.m-5 { margin: var(--spacer-5) !important; }

.mx-0 { margin-left: var(--spacer-0) !important; margin-right: var(--spacer-0) !important; }
.mx-1 { margin-left: var(--spacer-1) !important; margin-right: var(--spacer-1) !important; }
.mx-2 { margin-left: var(--spacer-2) !important; margin-right: var(--spacer-2) !important; }
.mx-3 { margin-left: var(--spacer-3) !important; margin-right: var(--spacer-3) !important; }
.mx-4 { margin-left: var(--spacer-4) !important; margin-right: var(--spacer-4) !important; }
.mx-5 { margin-left: var(--spacer-5) !important; margin-right: var(--spacer-5) !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.my-0 { margin-top: var(--spacer-0) !important; margin-bottom: var(--spacer-0) !important; }
.my-1 { margin-top: var(--spacer-1) !important; margin-bottom: var(--spacer-1) !important; }
.my-2 { margin-top: var(--spacer-2) !important; margin-bottom: var(--spacer-2) !important; }
.my-3 { margin-top: var(--spacer-3) !important; margin-bottom: var(--spacer-3) !important; }
.my-4 { margin-top: var(--spacer-4) !important; margin-bottom: var(--spacer-4) !important; }
.my-5 { margin-top: var(--spacer-5) !important; margin-bottom: var(--spacer-5) !important; }

.mt-0 { margin-top: var(--spacer-0) !important; }
.mt-1 { margin-top: var(--spacer-1) !important; }
.mt-2 { margin-top: var(--spacer-2) !important; }
.mt-3 { margin-top: var(--spacer-3) !important; }
.mt-4 { margin-top: var(--spacer-4) !important; }
.mt-5 { margin-top: var(--spacer-5) !important; }

.mb-0 { margin-bottom: var(--spacer-0) !important; }
.mb-1 { margin-bottom: var(--spacer-1) !important; }
.mb-2 { margin-bottom: var(--spacer-2) !important; }
.mb-3 { margin-bottom: var(--spacer-3) !important; }
.mb-4 { margin-bottom: var(--spacer-4) !important; }
.mb-5 { margin-bottom: var(--spacer-5) !important; }

.ml-0 { margin-left: var(--spacer-0) !important; }
.ml-1 { margin-left: var(--spacer-1) !important; }
.ml-2 { margin-left: var(--spacer-2) !important; }
.ml-3 { margin-left: var(--spacer-3) !important; }
.ml-4 { margin-left: var(--spacer-4) !important; }
.ml-5 { margin-left: var(--spacer-5) !important; }

.mr-0 { margin-right: var(--spacer-0) !important; }
.mr-1 { margin-right: var(--spacer-1) !important; }
.mr-2 { margin-right: var(--spacer-2) !important; }
.mr-3 { margin-right: var(--spacer-3) !important; }
.mr-4 { margin-right: var(--spacer-4) !important; }
.mr-5 { margin-right: var(--spacer-5) !important; }

/* Padding */
.p-0 { padding: var(--spacer-0) !important; }
.p-1 { padding: var(--spacer-1) !important; }
.p-2 { padding: var(--spacer-2) !important; }
.p-3 { padding: var(--spacer-3) !important; }
.p-4 { padding: var(--spacer-4) !important; }
.p-5 { padding: var(--spacer-5) !important; }

.px-0 { padding-left: var(--spacer-0) !important; padding-right: var(--spacer-0) !important; }
.px-1 { padding-left: var(--spacer-1) !important; padding-right: var(--spacer-1) !important; }
.px-2 { padding-left: var(--spacer-2) !important; padding-right: var(--spacer-2) !important; }
.px-3 { padding-left: var(--spacer-3) !important; padding-right: var(--spacer-3) !important; }
.px-4 { padding-left: var(--spacer-4) !important; padding-right: var(--spacer-4) !important; }
.px-5 { padding-left: var(--spacer-5) !important; padding-right: var(--spacer-5) !important; }

.py-0 { padding-top: var(--spacer-0) !important; padding-bottom: var(--spacer-0) !important; }
.py-1 { padding-top: var(--spacer-1) !important; padding-bottom: var(--spacer-1) !important; }
.py-2 { padding-top: var(--spacer-2) !important; padding-bottom: var(--spacer-2) !important; }
.py-3 { padding-top: var(--spacer-3) !important; padding-bottom: var(--spacer-3) !important; }
.py-4 { padding-top: var(--spacer-4) !important; padding-bottom: var(--spacer-4) !important; }
.py-5 { padding-top: var(--spacer-5) !important; padding-bottom: var(--spacer-5) !important; }

.pt-0 { padding-top: var(--spacer-0) !important; }
.pt-1 { padding-top: var(--spacer-1) !important; }
.pt-2 { padding-top: var(--spacer-2) !important; }
.pt-3 { padding-top: var(--spacer-3) !important; }
.pt-4 { padding-top: var(--spacer-4) !important; }
.pt-5 { padding-top: var(--spacer-5) !important; }

.pb-0 { padding-bottom: var(--spacer-0) !important; }
.pb-1 { padding-bottom: var(--spacer-1) !important; }
.pb-2 { padding-bottom: var(--spacer-2) !important; }
.pb-3 { padding-bottom: var(--spacer-3) !important; }
.pb-4 { padding-bottom: var(--spacer-4) !important; }
.pb-5 { padding-bottom: var(--spacer-5) !important; }

.pl-0 { padding-left: var(--spacer-0) !important; }
.pl-1 { padding-left: var(--spacer-1) !important; }
.pl-2 { padding-left: var(--spacer-2) !important; }
.pl-3 { padding-left: var(--spacer-3) !important; }
.pl-4 { padding-left: var(--spacer-4) !important; }
.pl-5 { padding-left: var(--spacer-5) !important; }

.pr-0 { padding-right: var(--spacer-0) !important; }
.pr-1 { padding-right: var(--spacer-1) !important; }
.pr-2 { padding-right: var(--spacer-2) !important; }
.pr-3 { padding-right: var(--spacer-3) !important; }
.pr-4 { padding-right: var(--spacer-4) !important; }
.pr-5 { padding-right: var(--spacer-5) !important; }

/* Responsive utility classes for screens >= 768px */
@media screen and (min-width: 768px) {
    .m-md-0 { margin: var(--spacer-0) !important; }
    .m-md-1 { margin: var(--spacer-1) !important; }
    .m-md-2 { margin: var(--spacer-2) !important; }
    .m-md-3 { margin: var(--spacer-3) !important; }
    .m-md-4 { margin: var(--spacer-4) !important; }
    .m-md-5 { margin: var(--spacer-5) !important; }
    .mx-md-auto { margin-left: auto !important; margin-right: auto !important; }

    .mt-md-0 { margin-top: var(--spacer-0) !important; }
    .mt-md-1 { margin-top: var(--spacer-1) !important; }
    .mt-md-2 { margin-top: var(--spacer-2) !important; }
    .mt-md-3 { margin-top: var(--spacer-3) !important; }
    .mt-md-4 { margin-top: var(--spacer-4) !important; }
    .mt-md-5 { margin-top: var(--spacer-5) !important; }

    .mb-md-0 { margin-bottom: var(--spacer-0) !important; }
    .mb-md-1 { margin-bottom: var(--spacer-1) !important; }
    .mb-md-2 { margin-bottom: var(--spacer-2) !important; }
    .mb-md-3 { margin-bottom: var(--spacer-3) !important; }
    .mb-md-4 { margin-bottom: var(--spacer-4) !important; }
    .mb-md-5 { margin-bottom: var(--spacer-5) !important; }

    .p-md-0 { padding: var(--spacer-0) !important; }
    .p-md-1 { padding: var(--spacer-1) !important; }
    .p-md-2 { padding: var(--spacer-2) !important; }
    .p-md-3 { padding: var(--spacer-3) !important; }
    .p-md-4 { padding: var(--spacer-4) !important; }
    .p-md-5 { padding: var(--spacer-5) !important; }

    .pt-md-0 { padding-top: var(--spacer-0) !important; }
    .pt-md-1 { padding-top: var(--spacer-1) !important; }
    .pt-md-2 { padding-top: var(--spacer-2) !important; }
    .pt-md-3 { padding-top: var(--spacer-3) !important; }
    .pt-md-4 { padding-top: var(--spacer-4) !important; }
    .pt-md-5 { padding-top: var(--spacer-5) !important; }

    .pb-md-0 { padding-bottom: var(--spacer-0) !important; }
    .pb-md-1 { padding-bottom: var(--spacer-1) !important; }
    .pb-md-2 { padding-bottom: var(--spacer-2) !important; }
    .pb-md-3 { padding-bottom: var(--spacer-3) !important; }
    .pb-md-4 { padding-bottom: var(--spacer-4) !important; }
    .pb-md-5 { padding-bottom: var(--spacer-5) !important; }
}

body, html {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
    background-color: var(--bg);
    color: var(--dark)
}

body {
    min-height: 100vh;
    position: relative;
    z-index: 1
}

body.active {
    overflow: hidden
}

.container {
    max-width: var(--cont);
    width: -webkit-calc(100% - var(--padd) * 2);
    width: -moz-calc(100% - var(--padd) * 2);
    width: calc(100% - var(--padd) * 2);
    margin: 0 auto
}

img {
    display: block;
    max-width: 100%
}

h3, .h3 {
    font-weight: 500;
    font-size: 22px;
    line-height: 100%
}

h1, .h1 {
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    margin: 0;
    text-transform: uppercase
}

h2, .h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    text-align: center;
    margin: 0 0 40px
}

mark {
    color: var(--prime);
    background-color: rgba(0, 0, 0, 0)
}

mark.green {
    color: #8fd721
}

a, button, p, ul, ol {
    font-family: inherit;
    color: inherit;
    line-height: 130%
}

p {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%
}

p:last-child {
    margin-bottom: 0
}

a, button {
    text-decoration: none;
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    -moz-transition: all ease .3s;
    transition: all ease .3s;
    background-color: rgba(0, 0, 0, 0)
}

a:hover, button:hover {
    opacity: .7
}

a:active, button:active {
    opacity: 1;
    -webkit-transform: scale(0.98);
    -moz-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
    transform: scale(0.98)
}

.btn {
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    vertical-align: middle;
    text-align: center;
    color: var(--white);
    min-width: 230px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 6px;
    min-height: 53px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: var(--prime)
}

.btn--sm {
    padding: 4px;
    min-width: 228px;
    min-height: 40px;
    font-size: 18px
}

.btn-green {
    background-color: var(--green)
}

.btn-magenta {
    background-color: var(--prime)
}

.btn-white {
    color: var(--prime);
    background-color: #fff
}

.btn-gray:not(:hover) {
    color: #000;
    background-color: #ededed
}

.btn:disabled {
    background-color: #e7e7f0;
    cursor: progress
}

ul {
    list-style: none
}

.btn, ol li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.fx-ac, .btn {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.fx-jc, .btn {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

label {
    display: block;
    line-height: 100%
}

input {
    display: block;
    height: 52px;
    width: 100%;
    color: var(--black);
    padding: 0 25px;
    background-color: #fff;
    border: 1px solid #bfbfbf;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

input:focus {
    border-color: var(--prime)
}

input::-webkit-input-placeholder {
    color: #9e9e9e
}

input:-moz-placeholder {
    color: #9e9e9e
}

input::-moz-placeholder {
    color: #9e9e9e
}

input:-ms-input-placeholder {
    color: #9e9e9e
}

input::-ms-input-placeholder {
    color: #9e9e9e
}

input::placeholder {
    color: #9e9e9e
}

@media screen and (max-width: 1199px) {
    .tb-hide {
        display: none
    }
}

@media screen and (min-width: 1200px) {
    .tb-show {
        display: none
    }
}

@media screen and (max-width: 700px) {
    .mob-hide {
        display: none
    }
}

@media screen and (min-width: 700px) {
    .mob-show {
        display: none
    }
}

section {
    overflow: hidden;
    padding: 100px 0
}

@media screen and (max-width: 1199px) {
    section {
        padding: 90px 0
    }
}

@media screen and (max-width: 992px) {
    section {
        padding: 55px 0
    }
}

.inp-wrap label {
    display: block;
    margin: 0 0 9px
}

@media screen and (max-width: 1298px) {
    .inp-wrap label {
        padding: 0 25px
    }
}

.btn_more, .form-row, .form-flex, .tabs-buttons, .tabs-btn, .form-doble {
    gap: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.form-row, .tabs-buttons {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.form-row > *, .tabs-buttons > * {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    width: -webkit-calc((100% - 150px) / 6);
    width: -moz-calc((100% - 150px) / 6);
    width: calc((100% - 150px) / 6)
}

.tabs-btn {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 13px;
    background-color: #ededed;
    text-align: center;
    opacity: 1 !important;
    position: relative;
    z-index: 1;
    margin-top: 34px;
    color: var(--prime);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    min-height: 138px
}

.tabs-btn img {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.tabs-btn:hover, .tabs-btn.active {
    background-color: var(--prime);
    color: var(--white)
}

@media screen and (max-width: 890px) {
    .tabs-btn {
        font-size: 18px;
        padding: 14px 10px
    }
}

@media screen and (max-width: 1298px) {
    .tabs-buttons > * {
        width: -webkit-calc((100% - 90px) / 4);
        width: -moz-calc((100% - 90px) / 4);
        width: calc((100% - 90px) / 4)
    }
}

@media screen and (max-width: 990px) {
    .tabs-buttons {
        gap: 20px
    }

    .tabs-buttons > * {
        width: -webkit-calc((100% - 60px) / 4);
        width: -moz-calc((100% - 60px) / 4);
        width: calc((100% - 60px) / 4)
    }
}

@media screen and (max-width: 890px) {
    .tabs-buttons > * {
        width: -webkit-calc((100% - 20px) / 2);
        width: -moz-calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2)
    }
}

.btn_more {
    gap: 7px;
    color: var(--prime);
    margin: 20px 0 30px
}

.form-doble > * {
    width: -webkit-calc((100% - 30px) / 2);
    width: -moz-calc((100% - 30px) / 2);
    width: calc((100% - 30px) / 2)
}

.form-flex, .form-doble {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.form-flex input {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media screen and (max-width: 1298px) {
    .form-row {
        gap: 24px
    }

    .form-row > * {
        width: -webkit-calc((100% - 120px) / 6);
        width: -moz-calc((100% - 120px) / 6);
        width: calc((100% - 120px) / 6)
    }
}

@media screen and (max-width: 990px) {
    .form-flex {
        gap: 20px;
        -webkit-box-pack: end;
        -webkit-justify-content: end;
        -moz-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end
    }

    .form-flex input {
        -webkit-box-flex: 0;
        -webkit-flex: none;
        -moz-box-flex: 0;
        -ms-flex: none;
        flex: none
    }

    .form-row {
        gap: 20px
    }

    .form-row > * {
        width: -webkit-calc((100% - 40px) / 3);
        width: -moz-calc((100% - 40px) / 3);
        width: calc((100% - 40px) / 3)
    }
}

@media screen and (max-width: 890px) {
    .form-flex input {
        width: 100%
    }

    .form-persons > * {
        width: -webkit-calc((100% - 20px) / 2);
        width: -moz-calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2)
    }

    .form-doble > * {
        width: 100%
    }
}

@media screen and (max-width: 1930px) {
    :root {
        --cont: 1278px
    }
}

@media screen and (max-width: 1298px) {
    :root {
        --cont: 942px;
        --padd: 20px
    }
}

@media screen and (max-width: 942px) {
    h1, h2 {
        font-size: 40px;
        line-height: 100%;
        text-wrap: balance
    }

    p {
        font-weight: 500;
        font-size: 16px;
        line-height: 100%
    }
}

@media screen and (max-width: 700px) {
    :root {
        --padd: 7px
    }
}

[data-tab-content]:not(.active) {
    display: none
}

[data-tab-content].active {
    -webkit-animation: fadeIn .3s ease forwards;
    -moz-animation: fadeIn .3s ease forwards;
    -o-animation: fadeIn .3s ease forwards;
    animation: fadeIn .3s ease forwards
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10%);
        transform: translateY(10%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
        -moz-transform: translateY(10%);
        transform: translateY(10%)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
        -o-transform: translateY(10%);
        transform: translateY(10%)
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10%);
        -moz-transform: translateY(10%);
        -o-transform: translateY(10%);
        transform: translateY(10%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%)
    }
}

.header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 13.62px 0;
    background-color: #fff
}

.header .nav, .header .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header .container {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.header .nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px
}

.header .nav-list {
    display: none
}

.header .btn-menu {
    position: relative;
    z-index: 9999;
    color: #fff;
    display: none
}

@media screen and (max-width: 942px) {
    .header .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10;
        background-color: #f1f4f9;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 70px 20px 90px;
        gap: 19px;
        -webkit-transition: all ease .3s;
        -o-transition: all ease .3s;
        -moz-transition: all ease .3s;
        transition: all ease .3s;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    .header .nav-list {
        display: block;
        margin-top: 31px
    }

    .header .nav__link {
        display: block;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        color: var(--prime);
        margin: 0 auto;
        font-weight: 600;
        font-size: 20px;
        line-height: 28px;
        text-align: center;
        background-repeat: no-repeat;
        background-position: center left;
        padding: 2px 30px
    }

    .header .nav__link.active {
        text-decoration: underline;
        color: var(--green);
        background-image: url("../img/link_active.svg")
    }

    .header .nav.active {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }

    .header .btn-menu {
        display: inline-block;
        width: 42px;
        height: 42px;
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url("../img/menu.svg");
        position: relative;
        z-index: 40
    }

    .header .btn-menu.active {
        background-image: url("../img/close.svg")
    }
}

.logo {
    display: block;
    max-width: 205px
}

.logo img {
    width: 100%
}

.hero {
    color: #fff
}

.hero .container {
    padding: 53px 100px 53px 73px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: var(--prime);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../img/hero__bg.jpg")
}

.hero-rate, .hero .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.hero-title {
    max-width: 650px
}

.hero h1 {
    margin-bottom: 35px
}

.hero p {
    margin-bottom: 35px
}

.hero-rate {
    max-width: 367px
}

.hero-rate span {
    color: #fff700
}

.hero-rate .btn {
    min-width: 164px
}

@media screen and (max-width: 1950px) {
    .hero .container {
        padding: 90px 47px 90px 56px
    }

    .hero-img {
        max-width: 460px
    }

    .hero-title {
        max-width: 637px
    }
}

@media screen and (max-width: 1298px) {
    .hero .container {
        padding: 90px 37px 90px 22px
    }

    .hero-img {
        max-width: 305px
    }

    .hero-title {
        max-width: 530px
    }

    .hero h1 {
        margin-bottom: 25px
    }
}

@media screen and (max-width: 942px) {
    .hero .container {
        display: block;
        padding: 69px 20px;
        background-image: url("../img/hero__bg-mob.jpg")
    }

    .hero-img {
        max-width: 91%;
        margin: 0 auto
    }

    .hero h1 {
        text-transform: none;
        margin-bottom: 15px
    }

    .hero p {
        margin-bottom: 24px
    }
}

.perfect {
    background-color: #fff
}

.steps {
    background-image: url("../img/why_bg.jpg")
}

.steps-wrap {
    gap: 31px
}

@media screen and (max-width: 1298px) {
    .steps-wrap {
        gap: 28px
    }

    .steps h2 {
        text-wrap: balance
    }
}

@media screen and (max-width: 900px) {
    .steps {
        padding: 65px 0;
        background-image: url("../img/why_bg-mob.jpg")
    }

    .steps-wrap {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 58px 20px
    }
}

.step {
    text-align: center;
    width: 314px;
    position: relative;
    z-index: 1
}

.step::after {
    content: "";
    display: block;
    width: 191px;
    height: 47px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-image: url("../img/arr_up.svg");
    position: absolute;
    left: 73%;
    top: 68px
}

.step:nth-child(even)::after {
    top: 20px;
    background-image: url("../img/arr_down.svg")
}

.step:last-child::after {
    display: none
}

.step__img {
    display: block;
    margin: 0 auto 40px
}

.step__heading {
    font-weight: 600;
    font-size: 26px;
    line-height: 100%;
    margin: 0 auto 20px
}

.step__text {
    font-weight: 200;
    font-size: 16px;
    line-height: 100%
}

@media screen and (max-width: 1298px) {
    .step {
        width: 214px
    }

    .step::after {
        top: 55px;
        background-image: url("../img/arr_up-md.svg");
        width: 104px;
        left: 80%;
        height: 28px
    }

    .step:nth-child(even)::after {
        top: 38px;
        background-image: url("../img/arr_down-md.svg")
    }

    .step__img {
        max-width: 150px
    }

    .step__heading {
        font-size: 22px
    }

    .step__text {
        font-size: 16px;
        font-weight: 200
    }
}

@media screen and (max-width: 900px) {
    .step {
        width: -webkit-calc((100% - 20px) / 2);
        width: -moz-calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2)
    }

    .step::after {
        width: 48%;
        height: unset;
        aspect-ratio: 104/28
    }

    .step:nth-child(4n+2)::after {
        display: none
    }

    .step:nth-child(1n+2)::after {
        top: 30px;
        background-image: url("../img/arr_down-md.svg")
    }

    .step__heading {
        font-size: 20px
    }
}

.why, .steps {
    background-color: var(--prime);
    color: #fff;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

.reviews-wrap, .steps-wrap, .works-wrap, .work-head, .review, .review-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.reviews-wrap, .works-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px
}

.reviews-wrap > *, .works-wrap > * {
    width: -webkit-calc((100% - 60px) / 3);
    width: -moz-calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3)
}

.reviews h2, .works h2 {
    text-align: center
}

.reviews .col, .works .col {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end
}

.reviews .btn, .works .btn {
    width: 100%
}

@media screen and (max-width: 1298px) {
    .works-wrap {
        gap: 30px 20px
    }

    .works-wrap > * {
        max-width: 403px;
        width: -webkit-calc((100% - 20px) / 2);
        width: -moz-calc((100% - 20px) / 2);
        width: calc((100% - 20px) / 2)
    }

    .works .col {
        margin: 0 0 0 auto
    }
}

@media screen and (max-width: 700px) {
    .works .col {
        max-width: 500px;
        width: 100%;
        margin: 0 auto
    }
}

.work, .review {
    background-color: #fff;
    padding: 15px 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-transition: -webkit-box-shadow .3s ease;
    transition: -webkit-box-shadow .3s ease;
    -o-transition: box-shadow .3s ease;
    -moz-transition: box-shadow .3s ease, -moz-box-shadow .3s ease;
    transition: box-shadow .3s ease;
    transition: box-shadow .3s ease, -webkit-box-shadow .3s ease, -moz-box-shadow .3s ease
}

.work--main, .review--main {
    color: var(--prime)
}

.work-head, .review-head {
    gap: 10px;
    margin: 0 0 18px
}

.work__subg, .review__subg {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--prime);
    margin: 0 auto 0 0
}

.work__tag, .review__tag {
    white-space: nowrap;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 2px 6px 4px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background-color: var(--prime)
}

.work__text, .review__text {
    font-weight: 500
}

.work:hover, .review:hover {
    -webkit-box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, .1019607843);
    -moz-box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, .1019607843);
    box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, .1019607843)
}

@media screen and (max-width: 1298px) {
    .work:nth-child(4n+2), .work:nth-child(4n+3) {
        margin: 0 auto
    }

    .work:nth-child(n+10) {
        display: none
    }
}

@media screen and (max-width: 700px) {
    .work {
        max-width: 500px;
        width: 100%;
        margin: 0 auto
    }

    .work:nth-child(n+6) {
        display: none
    }

    .work__text {
        font-size: 20px
    }
}

.why {
    background-image: url("../img/why_bg.jpg")
}

.why-head, .why-col, .why-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.why-img {
    margin: 0 auto
}

.why-wrap {
    gap: 30px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.why-wrap > * {
    width: -webkit-calc((100% - 60px) / 3);
    width: -moz-calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3)
}

.why-col {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.why-col:nth-child(3) .why-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -moz-box-orient: horizontal;
    -moz-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.why-col:nth-child(3) .why-head span {
    margin: 0 auto 0 0
}

.why-item {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #fff;
    max-width: 100%
}

.why-head {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    color: var(--prime)
}

.why-head span {
    display: block;
    padding: 20px;
    margin-left: auto
}

.why__text {
    color: var(--black);
    padding: 16px 20px 20px
}

@media screen and (max-width: 1298px) {
    .why-img {
        display: none
    }

    .why-wrap {
        gap: 30px 130px
    }

    .why-wrap > * {
        width: -webkit-calc((100% - 130px) / 2);
        width: -moz-calc((100% - 130px) / 2);
        width: calc((100% - 130px) / 2)
    }
}

@media screen and (max-width: 900px) {
    .why-wrap {
        gap: 30px
    }

    .why-wrap > * {
        width: -webkit-calc((100% - 30px) / 2);
        width: -moz-calc((100% - 30px) / 2);
        width: calc((100% - 30px) / 2)
    }
}

@media screen and (max-width: 992px) {
    .why {
        padding: 60px 0
    }
}

@media screen and (max-width: 700px) {
    .why {
        background-image: url("../img/why_bg-mob.jpg")
    }
}

@media screen and (max-width: 740px) {
    .why-wrap {
        gap: 30px
    }

    .why-wrap > * {
        width: 100%
    }

    .why-head span {
        padding: 16px
    }

    .why__text {
        font-size: 18px
    }
}

@media screen and (max-width: 390px) {
    .why-head {
        font-size: 26px
    }

    .why-head img {
        max-height: 76px
    }
}

@media screen and (max-width: 1298px) {
    .reviews-wrap {
        gap: 30px 50px
    }

    .reviews-wrap > * {
        width: -webkit-calc((100% - 130px) / 2);
        width: -moz-calc((100% - 130px) / 2);
        width: calc((100% - 130px) / 2)
    }

    .reviews .col {
        margin: 0 auto
    }
}

@media screen and (max-width: 800px) {
    .reviews-wrap {
        gap: 30px
    }

    .reviews-wrap > * {
        width: -webkit-calc((100% - 30px) / 2);
        width: -moz-calc((100% - 30px) / 2);
        width: calc((100% - 30px) / 2)
    }
}

@media screen and (max-width: 700px) {
    .reviews-wrap > * {
        width: 100%
    }
}

.review {
    padding: 23px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.review-head {
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.review-head > * {
    color: var(--prime);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    margin: 0
}

.review__text {
    margin-bottom: 25px
}

.review__stars {
    margin-top: auto;
    max-width: 120px
}

@media screen and (max-width: 1298px) {
    .review:nth-child(n+6) {
        display: none
    }
}

@media screen and (max-width: 700px) {
    .review {
        padding: 20px
    }

    .review__text {
        margin-bottom: 16px
    }
}

.article {

}

.article__title {
    font-weight: 600;
    font-size: 36px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 40px;
}

.article p {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 20px;
}

.article p:last-of-type {
    margin-bottom: 0;
}

@media screen and (max-width: 942px) {
    .article__title {
        font-size: 30px;
    }

    .article p {
        font-size: 16px;
    }
}

@media screen and (max-width: 700px) {
    .article__title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .article p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

.faq {
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq .container h2 {
    text-align: center;
    margin-bottom: 60px;
}

/* Стили для логики аккордеона */
.accordion-collapse {
    transition: height 0.35s ease;
}

.collapse {
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.collapse.show {
    height: auto; /* Для раскрытия элемента */
    visibility: visible;
}

/* Стили для внешнего вида аккордеона */
.faq .accordion-item {
    border: none;
    border-bottom: 1px solid var(--gray);
    background-color: transparent;
    border-radius: 0;
}

.faq .accordion-item:last-of-type {
    border-bottom: none;
}

.faq .accordion-item:first-of-type {
    border-top: 1px solid var(--gray);
}

.faq .accordion-header {
    background-color: transparent;
}

.faq .accordion-button {
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
    color: var(--dark-blue);
    padding: 25px 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--green);
    background-color: transparent;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-button::after {
    content: '';
    width: 20px;
    height: 20px;
    background-size: 20px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2334A853' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 8h12'/%3E%3Cpath fill='none' stroke='%2334A853' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 2v12'/%3E%3C/svg%3E");
    transition: transform 0.2s ease-in-out;
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2334A853' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 8h12'/%3E%3C/svg%3E");
    transform: rotate(0deg);
}

.faq .accordion-body {
    padding-top: 0;
    padding-bottom: 25px;
    font-size: 16px;
    line-height: 150%;
    color: var(--dark-blue);
    font-weight: 500;
}

@media (max-width: 942px) {
    .faq {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 700px) {
    .faq {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .faq .container h2 {
        margin-bottom: 40px;
    }

    .faq .accordion-button {
        font-size: 18px;
    }
}


.two-column-section {
    padding: 100px 0;
    background-color: var(--white);
}

.two-column-section h2 {
    margin-bottom: 60px;
}

.two-column-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.main-content {
    flex: 2;
}

.main-content p {
    font-size: 18px;
    line-height: 150%;
    margin-bottom: 20px;
    font-weight: 500;
}

.main-content p:last-of-type {
    margin-bottom: 0;
}

.sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-block {
    background-color: var(--bg);
    padding: 30px;
    border-radius: 10px;
}

.sidebar-block h3 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}

.sidebar-block p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 10px;
}

.sidebar-list a {
    font-size: 16px;
    color: var(--prime);
    text-decoration: underline;
}

/* Адаптация для экранов меньше 942px */
@media screen and (max-width: 942px) {
    .two-column-section {
        padding: 80px 0;
    }

    .two-column-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .two-column-section h2 {
        margin-bottom: 40px;
    }
}

/* Адаптация для экранов меньше 700px */
@media screen and (max-width: 700px) {
    .two-column-section {
        padding: 60px 0;
    }

    .two-column-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .main-content p {
        font-size: 14px;
    }

    .sidebar-block {
        padding: 20px;
    }

    .sidebar-block h3 {
        font-size: 20px;
    }

    .sidebar-block p, .sidebar-list a {
        font-size: 14px;
    }
}


.tabs-block {
    margin-top: 40px;
    margin-bottom: 40px;
}

.tabs-buttons-block {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.tabs-block .tabs-btn {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: var(--bg);
    color: var(--dark-blue);
    cursor: pointer;
    transition: all ease 0.3s;
}

.tabs-block .tabs-btn.active {
    background-color: var(--prime);
    color: var(--white);
}

.tabs-block .tabs-btn:hover {
    opacity: 0.8;
}

.tabs-content-block {
    position: relative;
}

.tabs-content {
    display: none;
    animation: fadeIn 0.3s ease forwards;
    padding: 0;
    border-radius: 10px;
}

.tabs-content.active {
    display: block;
}

.tabs-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tabs-content p {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 15px;
}

.tabs-content ul {
    margin-left: 20px;
    list-style-type: disc;
}

.tabs-content ul li {
    font-size: 16px;
    line-height: 150%;
    margin-bottom: 5px;
}

/* Адаптация для мобильных устройств */
@media screen and (max-width: 700px) {
    .tabs-block .tabs-btn {
        font-size: 16px;
        padding: 8px 16px;
    }

    .tabs-content h3 {
        font-size: 20px;
    }

    .tabs-content {
        padding: 0;
    }

    .tabs-content p, .tabs-content ul li {
        font-size: 14px;
    }
}


.help {
    padding: 0
}

.help .container {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: var(--prime);
    color: #fff;
    padding: 0 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../img/help_bg.jpg")
}

.help h2 {
    text-align: left;
    min-width: 685px;
    margin: 0
}

.help .btn {
    min-width: 310px
}

@media screen and (max-width: 1930px) {
    .help h2 {
        min-width: unset;
        text-wrap: balance
    }

    .help .container {
        gap: 60px;
        padding: 20px 80px
    }
}

@media screen and (max-width: 1298px) {
    .help h2 {
        font-size: 40px
    }

    .help .container {
        gap: 40px;
        padding: 20px 30px
    }

    .help-img {
        max-width: 180px
    }

    .help .btn {
        min-width: 290px
    }
}

@media screen and (max-width: 850px) {
    .help .container {
        display: block;
        padding: 100px 50px;
        max-width: 560px;
        background-image: url("../img/help_bg-mob.jpg")
    }

    .help-img {
        max-width: 60%;
        margin: 0 auto 20px
    }

    .help h2 {
        text-align: center;
        margin: 0 auto 45px
    }

    .help .btn {
        width: 100%;
        min-width: unset
    }
}

.footer {
    background-color: #fff;
    padding-top: 27px;
    margin-top: 100px
}

.footer .logo {
    margin-bottom: 42px
}

.footer-top, .footer-bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.footer-top > *, .footer-bottom > * {
    min-width: 270px
}

.footer-top > *:first-child, .footer-bottom > *:first-child {
    min-width: 320px
}

.footer .nav__link {
    display: block;
    color: var(--prime);
    font-weight: 600;
    font-size: 14px;
    line-height: 28px;
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 30px
}

.footer .nav__link.active {
    text-decoration: underline;
    color: var(--green);
    background-image: url("../img/link_active.svg")
}

.footer-bottom {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 14px;
    border-top: 1px solid var(--prime);
    padding: 27px 0
}

.footer__sup, .footer__text, .footer__link {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%
}

.footer__sup {
    color: var(--prime);
    margin-top: 32px
}

.footer__link {
    color: var(--prime);
    text-decoration: underline
}

@media screen and (max-width: 1298px) {
    .footer .logo {
        margin-bottom: 15px
    }

    .footer__sup {
        margin-top: 12px
    }

    .footer__text {
        max-width: 230px
    }

    .footer-top > *, .footer-bottom > * {
        min-width: unset
    }

    .footer-top > *:first-child, .footer-bottom > *:first-child {
        min-width: unset
    }
}

@media screen and (max-width: 992px) {
    .footer-top, .footer-bottom {
        gap: 20px 40px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .footer-top > *, .footer-bottom > * {
        width: -webkit-calc((100% - 40px) / 2);
        width: -moz-calc((100% - 40px) / 2);
        width: calc((100% - 40px) / 2)
    }

    .footer-top > *:first-child {
        padding-left: 30px
    }
}

@media screen and (max-width: 600px) {
    .footer {
        margin-top: 55px;
        padding-top: 17px
    }

    .footer .logo {
        display: none
    }

    .footer-top, .footer-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 27px
    }

    .footer-top > *, .footer-bottom > * {
        width: 100%;
        margin: 0 auto;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .footer-top > *:first-child, .footer-bottom > *:first-child {
        padding: 0;
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -moz-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .footer__text {
        margin: 0 auto;
        max-width: 400px
    }

    .footer .nav__link {
        padding: 0;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto
    }

    .footer .nav__link.active {
        padding: 0 30px
    }

    .footer__sup {
        margin-top: 30px
    }

    .footer-bottom {
        padding-top: 16px;
        margin-top: 17px;
        gap: 13px
    }
}

.custom-grid-section {
    padding: 100px 0;
    background-color: var(--white);
}

.custom-grid-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.custom-grid-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px; /* компенсируем padding колонок */
    margin-right: -15px;
}

[class*="custom-col-"] {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.custom-col-12 {
    width: 100%;
}

.custom-col-6 {
    width: 50%;
}

.custom-col-4 {
    width: 33.33333%;
}

.custom-col-3 {
    width: 25%;
}

.grid-card {
    background-color: var(--bg);
    padding: 30px;
    border-radius: 10px;
    height: 100%; /* чтобы карточки были одинаковой высоты */
}

.grid-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.grid-card p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Адаптивность для средних экранов (Bootstrap: md) */
@media screen and (min-width: 768px) {
    .custom-col-md-6 {
        width: 50%;
    }

    .custom-col-md-4 {
        width: 33.33333%;
    }

    .custom-col-md-3 {
        width: 25%;
    }
}

/* Адаптивность для больших экранов (Bootstrap: lg) */
@media screen and (min-width: 992px) {
    .custom-col-lg-4 {
        width: 33.33333%;
    }

    .custom-col-lg-3 {
        width: 25%;
    }
}

/* Адаптивность для мобильных устройств */
@media screen and (max-width: 767px) {
    .custom-grid-section {
        padding: 60px 0;
    }

    .custom-grid-row {
        margin-left: 0;
        margin-right: 0;
    }

    [class*="custom-col-"] {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
