@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --main-bg-color: #3D8146;
    --alt-bg-color: #2A689E;
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol,
p,
ul {
    margin: 0;
}

ol,
ul {
    list-style: none;
    padding: 0;
}

details,
main {
    display: block;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: inherit;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
input,
select {
    outline: 0;
}

button {
    border: none;
    padding: 0;
    background: 0 0;
    cursor: pointer;
    color: inherit;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
    outline: ButtonText dotted 1px;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

:root {
    --vh: 100vh;
    --scrollWidth: 0;
    --containerPadding: 1.5rem;
    --fontBase: 1.2rem;
}

html {
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}

body {
    font-family: 'Mulish', sans-serif;
    font-size: var(--fontBase);
    font-weight: 400;
    line-height: 1.2;
    background-color: #fff;
    color: #000;
    min-width: 32rem;
    min-height: var(--vh, 100vh);
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input {
    border: none;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input::-webkit-input-placeholder {
    color: inherit;
}

input::-moz-placeholder {
    color: inherit;
}

input:-ms-input-placeholder {
    color: inherit;
}

input::-ms-input-placeholder {
    color: inherit;
}

input::placeholder {
    color: inherit;
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
}

input:focus::-moz-placeholder {
    opacity: 0;
}

input:focus:-ms-input-placeholder {
    opacity: 0;
}

input:focus::-ms-input-placeholder {
    opacity: 0;
}

input:focus::placeholder {
    opacity: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

textarea {
    overflow: auto;
    resize: none;
    -webkit-appearance: none;
}

section {
    position: relative;
    margin: 100px 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

button,
input,
select,
textarea {
    font: inherit;
}

.spinner__overlay .spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid rgb(61 129 70);
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#spinnerOverlay {
    height: 100%;
    width: 100%;
    background: rgb(61 129 70);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}

.visually-hidden {
    position: absolute;
    overflow: hidden;
    margin: -1px;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
}

.new-line {
    display: block;
}

body.blocked {
    overflow: hidden;
    height: var(--vh, 100vh);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
}

.page {
    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: var(--vh, 100vh);
    overflow-x: hidden;
}

.content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

.container {
    width: 100%;
    max-width: calc(1581px + (var(--containerPadding) * 2));
    padding: 0 var(--containerPadding);
    margin: 0 auto;
    position: relative;
}

.icon {
    width: 1rem;
    height: 1rem;
}

.icon-arrow {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 500;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.22;
    margin-bottom: 1em;
}

a:focus,
a:hover {
    cursor: pointer;
    text-decoration: none;
}

@-webkit-keyframes fadeInUp {
    0% {
        -webkit-transform: translateY(3rem);
        transform: translateY(3rem);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        -webkit-transform: translateY(3rem);
        transform: translateY(3rem);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes fadeOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(3rem);
        transform: translateY(3rem);
        opacity: 0;
    }
}

@keyframes fadeOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(3rem);
        transform: translateY(3rem);
        opacity: 0;
    }
}

.btn,
.btn--blue,
.btn--yellow,
.btn--transparent {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    height: auto;
    text-align: center;
    border-radius: 5px;
    padding: 18px 10px;
    min-width: 214px;
    -webkit-transition: background-color 0.4s;
    -o-transition: background-color 0.4s;
    transition: background-color 0.4s;
    text-transform: uppercase;
}

.btn--yellow {
    background-color: #ffdb35;
    color: #000;
}

.btn--yellow:focus.focus-visible {
    background-color: #e8be00;
}

.btn--blue {
    background-color: #2A689E;
    color: #fff;
}

.btn--blue:focus.focus-visible {
    background-color: #2A689E;
}

.btn--transparent {
    background-color: #2A689E;
    color: #fff;
    border: 2px solid #fff;
}

.btn--transparent:focus.focus-visible {
    background-color: #2A689E;
}

div.search_result {
    display: none;
    position: absolute;
    background: #2a689e;
    width: 300px;
    padding: var(--containerPadding);
    right: 0;
    top: 49px;
}

div.search_result ul {
    height: 300px;
    overflow-y: scroll;
}

/* width */
div.search_result ul::-webkit-scrollbar {
    width: 5px;
}

/* Track */
div.search_result ul::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
div.search_result ul::-webkit-scrollbar-thumb {
    background: var(--main-bg-color);
}

/* Handle on hover */
div.search_result ul::-webkit-scrollbar-thumb:hover {
    background: var(--main-bg-color);
}

div.search_result ul li {
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    padding: 5px 0;
    font-size: 14px;
}

div.search_result a {
    display: block;
}

.form {
    background: -webkit-gradient(
            linear,
            left bottom,
            left top,
            from(rgba(16, 28, 95, 0.77)),
            to(rgba(16, 28, 95, 0.77))
    );
    background: -o-linear-gradient(
            bottom,
            rgba(16, 28, 95, 0.77),
            rgba(16, 28, 95, 0.77)
    );
    background: linear-gradient(
            0deg,
            rgba(16, 28, 95, 0.77),
            rgba(16, 28, 95, 0.77)
    );
    color: #fff;
    padding: 2.5rem 2.2rem;
    border-radius: 1rem;
}

.form__title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.form__descr {
    max-width: 52rem;
    margin-bottom: 2.4rem;
}

.form__content {
    margin-bottom: 1.6rem;
}

.form__field {
    display: block;
    margin-bottom: 1rem;
}

.form__input {
    width: 100%;
    padding: 0 1.9rem;
    line-height: 5.5rem;
    height: 5.5rem;
    border-radius: 1rem;
    background-color: #fff;
}

.form__input::-webkit-input-placeholder {
    opacity: 0.5;
}

.form__input::-moz-placeholder {
    opacity: 0.5;
}

.form__input:-ms-input-placeholder {
    opacity: 0.5;
}

.form__input::-ms-input-placeholder {
    opacity: 0.5;
}

.form__input::placeholder {
    opacity: 0.5;
}

.form__text {
    opacity: 0.5;
}

.form .form__submit {
    width: 100%;
    line-height: 6.9rem;
    height: 6.9rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.swiper {
    overflow: hidden;
}

.swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.swiper-navigation {
    width: 2.9rem;
    height: 2.9rem;
    background-color: #35438c;
    border-radius: 50%;
    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;
}

.swiper-navigation svg {
    width: 1.3rem;
    height: 1.3rem;
    stroke-width: 2;
    stroke: #fff;
    -webkit-transform: translateX(-5%);
    -ms-transform: translateX(-5%);
    transform: translateX(-5%);
}

.swiper-navigation.next svg {
    -webkit-transform: rotate(180deg) translateX(-5%);
    -ms-transform: rotate(180deg) translateX(-5%);
    transform: rotate(180deg) translateX(-5%);
}

.swiper-pagination {
    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: 0 auto;
    overflow: hidden;
}

.swiper-pagination-bullet {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background-color: #ececec;
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 0 0.7rem;
}

.swiper-pagination-bullet.act {
    background-color: #35438c;
}

.post-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 3 ];
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.post-list__item {
    padding-bottom: 135px;
}

.post {
    position: relative;
}

.post__link {
    display: block;
    position: relative;
    overflow: visible;
    border-radius: 1.5rem;
}

.post__content {
    width: 77%;
    padding: 20px 24px 30px 20px;
    position: absolute;
    background-color: #FAFAFA;
    z-index: 2;
    bottom: -95px;
    left: 0;
}

.post__content p {
    font-size: 16px;
    line-height: 1.5;
    color: #434343;
    margin-bottom: 20px;
}

.post__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.4s !important;
    -o-transition: 0.4s !important;
    transition: 0.4s !important;
}

.post__title {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: #0A2647;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.post__date {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    color: #0A2647;
    font-weight: 700;
}

.burger {

}

.footer {
    color: #fff;
    background-color: #3D8146;
    padding: 2.8rem 0;
}

.footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 4rem;
}


.footer__contacts-wrap {
    max-width: 58%;
}

.footer__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
    line-height: 1.22;
    margin-left: auto;
    margin-bottom: 40px;
}

.footer__contacts-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    gap: 0.7rem;
}

.footer__contacts-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    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;
}

.footer__contacts-icon svg {
    width: 15px;
    height: 15px;
    fill: #fff;
    margin-top: 1px;
}

.footer__contacts-label {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.footer__contacts-value {
    font-size: 1.4rem;
    font-weight: 500;
}

.footer__contacts-value[href] {
    -webkit-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
    white-space: nowrap;
}

.footer__contacts-value[href]:focus.focus-visible {
    color: #ffdb35;
}

.footer__socials {
    width: 100%;
    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;
    gap: 0.9rem;
}

.footer__socials-link {
    display: block;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.footer__socials-link:focus.focus-visible {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.footer__copyrights {
    font-size: 1.4rem;
}

.footer__logo {
    margin-left: auto;
    margin-bottom: 42px;
    max-width: 208px;
    height: auto;
}

.popup-form__wrap {
    display: none;
}

.popup-form__wrap {
    background: #fff;
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    border-radius: 5px;
    position: relative;
}

.mfp-wrap.mfp-ready .popup-form__wrap {
    display: block;
}

.popup-form__wrap .callback__form-title {
    padding: 0;
    text-align: center;
}

.popup-form__wrap .callback__form-descr {
    padding: 0;
    text-align: center;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

.popup-form__wrap form.wpcf7-form input.wpcf7-submit {
    margin: 0 auto 10px auto;
}

.popup-form__wrap .callback__text {
    text-align: center;
    padding: 0;
}

.header {
    background: #ffffff;
    color: #0A2647;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6%;
    padding: 33px var(--containerPadding);
    height: auto;
}

.header__container {
    transition: .25s;
}

.header.scrolled .header__container {
    padding: 10px var(--containerPadding);
    transition: .25s;
}

.header.scrolled .header__container .header__logo {
    width: 150px;
    transition: .25s;
}

.header__logo {
    transition: .25s;
}

.page__scrolled main.content {
    padding-top: 50px;
    transition: .25s;
}

.header.scrolled .header-burger nav.header-nav .header-nav__list li .header-nav__link {
    padding: 10px 0;
}

main.content {
    transition: .25s;
}

.header__logo {
    width: 290px;
    -o-object-fit: contain;
    object-fit: contain;
}

.header__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2%;
    line-height: 1.22;
    margin-left: auto;
}

.header__contacts-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
}

.header__contacts-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    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;
}

.header__contacts-icon svg {
    width: 16px;
    height: 20px;
    fill: #2A689E;
}

.header__contacts-value {
    font-size: 14px;
    line-height: 1.255;
    font-weight: 500;
    color: #0A2647;
}

.header__contacts-value[href] {
    -webkit-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
}

.header__contacts-value[href]:focus.focus-visible,
.header__contacts-value[href]:focus.focus-visible {
    color: #0A2647;
}

.header__contacts-phone {
    -webkit-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
    white-space: nowrap;
}

.header__contacts-item.header__messengers {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.header__messengers a {
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    width: 23px;
}

.header__messengers a svg {
    width: 100%;
    fill: #2A689E;
    height: 23px;
}

.header__phone {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-burger {
    background-color: var(--main-bg-color);
    color: #fff;
    z-index: 5;
}

.header-burger__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.7rem;
}

.header-burger__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
}

.header-burger__close-btn {
    width: 2.2rem;
    height: 2.2rem;
    position: relative;
}

.header-burger__close-btn::after,
.header-burger__close-btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.2rem;
    background-color: #fff;
    border-radius: 2rem;
    position: absolute;
    top: 50%;
    left: 0;
}

.header-burger__close-btn::before {
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.header-burger__close-btn::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
}

.header-burger__logo {
    width: 6rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -o-object-fit: contain;
    object-fit: contain;
}

.header-burger__messengers {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    margin-right: 0;
}

.header-burger__contacts {
    margin-bottom: 3.2rem;
}

.header-burger__contact {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.22;
}

.header-burger__contact:not(:last-child) {
    margin-bottom: 0.9rem;
}

.header-burger__contact--phone {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.7rem !important;
}

.header-burger .header-burger__btn {
    width: 100%;
    max-width: 34.5rem;
    margin: 0 auto;
    line-height: 7.5rem;
    height: 7.5rem;
}

nav.header-nav form.search-form {
    max-width: 243px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

nav.header-nav form.search-form label,
nav.header-nav form.search-form label input {
    display: block;
    max-width: 100%;
}

nav.header-nav form.search-form label input {
    font-size: 14px;
    color: #3F4446;
    padding: 10px 10px;
}

nav.header-nav form.search-form input.search-submit {
    position: absolute;
    right: 10px;
    background: url('../img/search.png') #ffffff no-repeat;
    background-position: center center;
    background-size: contain;
    font-size: 0;
    width: 19px;
    height: 100%;
}

.header-nav__link {
    display: block;
    padding: 2rem 0;
    -webkit-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.header-nav__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-nav__link {
    display: block;
    padding: 2rem 0;
    -webkit-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
}

.header-nav__link:focus.focus-visible {
    color: #ffdb35;
}

.header .header__btn {
    display: none;
    line-height: normal;
    height: auto;
    white-space: nowrap;
}

.hero {
    background: url("../img/img.jpg") center top 15% / cover no-repeat;
    overflow: hidden;
    margin: 0;
}

.hero .hero__content {
    position: relative;
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 300px;
}

.hero .hero__content:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #2a689e;
    left: -75%;
}

.hero__content-text {
    z-index: 1;
    position: relative;
    padding: 90px 60px 80px 0;
}

.hero__content-text h1 {
    text-transform: uppercase;
    margin-bottom: 33px;
}

.hero__content-text p {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 80px;
    color: #ffffff;
}

.hero__title {
    font-size: 36px;
    line-height: 45.18px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
}

.hero__title span {
    color: #35438c;
}

.hero__descr {
    font-size: 1.4rem;
    max-width: 50.7rem;
    margin-bottom: 3.8rem;
}

.hero__text {
    font-size: 1.2rem;
    color: #35438c;
}

.hero__content {
    margin-bottom: 0;
}

.hero__img {
    display: none;
}

.hero__link {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    border-radius: 5px;
    display: block;
    width: 100%;
    background-color: transparent;
    color: #fff;
    padding: 16px 2.4rem;
    text-align: center;
    max-width: 215px;
    margin-bottom: 0;
    border: 2px solid #fff;
    text-transform: uppercase;
}

.hero__link:focus.focus-visible {
    background-color: var(--main-bg-color);
}

.hero__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 1 ];
    grid-template-columns: repeat(1, 1fr);
    gap: 1.1rem;
}

.hero__item {
    font-size: 1.4rem;
    background-color: rgba(255, 255, 255, 0.62);
    -webkit-backdrop-filter: blur(1.25rem);
    backdrop-filter: blur(1.25rem);
    border-radius: 1rem;
    padding: 3.2rem 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3.2rem;
}

.hero__icon {
    width: 3.1rem;
    height: 3.1rem;
    padding: 1rem;
    background-color: #ffdb35;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

h1.page-title {
    margin-bottom: 50px;
    color: #0A2647;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
}

/* Каталог товаров */
.categories__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.categories__title {
    margin-bottom: 50px;
    color: #0A2647;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
}

.categories__descr {
    font-size: 16px;
    line-height: 1.18;
    font-weight: 400;
    color: #0A2647;
    margin-bottom: 0;
    max-width: 588px;
}

.category__items {
    margin-top: 80px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 3 ];
    grid-template-columns: repeat(3, 1fr);
    gap: 2.1rem;
    margin-bottom: 0;
}

.category__items .category__item {
    border: 1px solid #3D8146;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}

.category__items .category__item .category__img,
.category__items .category__item img {
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: 4px 4px 22px rgb(40, 62, 103, 0.16);
}

.category__items .category__item .category__name,
.category__items .category__item h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0A2647;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 10px;
}

.category__items .category__item h2 .count {
    display: none;
}

.category__items .category__item .category__price {
    font-size: 16px;
    color: #0A2647;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 24px;
}

.category__items .category__item .category__link {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #2A689E;
    display: flex;
    align-items: center;
}

.category__items .category__item .category__link span {
    margin-right: 10px;
    text-decoration: underline;
}

/* Категория товаров */
.single__category-title {
    margin-bottom: 50px;
    color: #0A2647;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
}

.single__category-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 100px;
}

.single__category-header img {
    display: block;
    position: relative;
    border-radius: 5px;
    box-shadow: 4px 4px 22px rgb(40 62 103 / 16%);
    width: calc(50% - 7%);
}

.single__category-descr {
    font-size: 16px;
    line-height: 1.18;
    font-weight: 400;
    color: #0A2647;
    margin-bottom: 0;
    max-width: 50%;
}

.single__category-descr p {
    margin-bottom: 18px;
}

.single__category-descr p:last-child {
    margin-bottom: 0;
}

.single__category-descr ul {
    list-style: disc;
    list-style-position: outside;
    margin-bottom: 18px;
    padding: 0 0 0 40px;
    line-height: 1.255;
}

.single__category-container h2 {
    font-weight: 800;
    text-transform: uppercase;
    color: #0A2647;
    line-height: 1.255;
    font-size: 26px;
}

.single__category-products {
    margin-top: 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 4 ];
    grid-template-columns: repeat(4, 1fr);
    gap: 2.1rem;
    margin-bottom: 0;
}

.single__category-products .product {
    border: 1px solid #3D8146;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
}

.single__category-products .product .product__img,
.single__category-products .product img {
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 4px 4px 22px rgb(40, 62, 103, 0.16);
}

.single__category-products .product .product__name,
.single__category-products .product h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0A2647;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 20px;
}

.single__category-products .product .woocommerce-LoopProduct-link .price * {
    font-size: 16px;
    color: #0A2647;
    font-weight: 400;
    line-height: 1.25;
}

.single__category-products .product .product__link,
.single__category-products .product .product__link:hover,
.single__category-products .product .product__link:focus {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: #2A689E;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    margin-top: 34px;
}

.single__category-products .product .product__link span {
    margin-right: 10px;
    text-decoration: underline;
}

/* Объем без ущерба качеству */
.quality__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 83px;
}

.quality__container .col {
    max-width: 50%;
}

.quality__video-link {
    display: block;
    overflow: hidden;
    position: relative;
    height: 568px;
}

.quality__video-link:focus.focus-visible .quality__video-icon svg {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.quality__video-link::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.52);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.quality__video-icon {
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    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;
    z-index: 2;
}

.quality__video-icon svg {
    width: 20px;
    height: 24px;
    fill: #06163A;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.quality__video-preview {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.quality__text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0A2647;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 50px;
}

.quality__text p {
    font-size: 18px;
    line-height: 1.18;
    color: #3F4446;
    margin-bottom: 20px;
    font-weight: 500;
}

.quality__text p:last-child {
    margin: 0;
}

/* Преимущества */
.benefits__wrap {
    padding: 90px 0 211px 0;
    background: #3D8146;
}

.benefits__title {
    margin-bottom: 50px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.255;
}

.benefits__title span {
    display: block;
    color: #fff;
}

.benefits__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 4 ];
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.benefits__item {
    padding: 40px 35px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 4px 4px 22px rgb(40 62 103 / 16%);
}

.benefits__icon {
    margin-bottom: 30px;
    padding: 0;
}

.benefits__icon img {
    width: auto;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
}

.benefits__name {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2777;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #0A2647;
}

.benefits__text {
    font-size: 16px;
    text-align: center;
    color: #0A2647;
    font-weight: 400;
    line-height: 1.25;
}

.benefits__cta {
    display: flex;
    justify-content: flex-end;
    margin-top: calc(var(--benefits-cta-height) / -2);
}

.benefits__cta-container {
    display: flex;
    justify-content: flex-end;
}

.benefits__cta .benefits__cta-wrap {
    max-width: 50%;
    background: #2A689E;
    padding: 28px 85px 40px 90px;
    color: #fff;
}

.benefits__cta-title {
    font-size: 18px;
    line-height: 1.333;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.benefits__cta-subtitle {
    font-size: 18px;
    line-height: 1.333;
    font-weight: 400;
    margin-bottom: 30px;
}

.benefits__cta form {
    position: relative;
}

.benefits__cta form input[type="tel"] {
    font-size: 16px;
    color: #65677C;
    padding: 10px;
    line-height: 1.75;
    display: block;
    width: 100%;
    border: 1px solid #CDD6DB;
    border-radius: 5px;
}

.benefits__cta form input[type="submit"] {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    border-radius: 5px;
    background: #2A689E;
    color: #fff;
    height: 100%;
    border: 2px solid #fff;
    max-width: 214px;
    width: 100%;
    text-transform: uppercase;
    cursor: pointer;
}

/* Наши новости */
.blog__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.blog__title {
    margin-bottom: 50px;
    color: #0A2647;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
}

.blog__form {
    margin-bottom: 4.4rem;
}

.blog__list {
    margin-bottom: 2.5rem;
}

.blog__link {
    margin: 0 auto;
    max-width: 40rem;
}

.single__post-type article.post {
    display: flex;
    justify-content: space-between;
    gap: 7%;
}

.single__post-type article.post aside.widget-area {
    width: 30.614%;
    flex-shrink: 0;
}

.single__post-type article.post aside.widget-area .subscribe__form {
    background: #2A689E;
    width: 100%;
    display: block;
    padding: 46px 30px 70px;
    border-radius: 4px;
}

.subscribe__form h3 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    max-width: 73%;
    margin: 0 auto 57px;
}

.subscribe__form form span.wpcf7-form-control-wrap {
    max-width: 100%;
    display: block;
    width: 100%;
}

.subscribe__form form span.wpcf7-form-control-wrap input {
    width: 100%;
    border: 1px solid #CDD6DB;
    font-size: 16px;
    line-height: 1.75;
    padding: 10px;
    border-radius: 4px;
}

.subscribe__form form .wpcf7-submit {
    margin: 50px auto 0;
}

.subscribe__form form span.wpcf7-spinner {
    position: absolute;
    bottom: -30px;
    left: calc(50% - 12px);
    margin: 0;
}

.post, .page {
    margin: 0 !important;
}

.inner__page h1 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0A2647;
    line-height: 1.255;
    margin-bottom: 84px;
}

.inner__page .woocommerce-breadcrumb {
    margin-top: 40px;
    margin-bottom: 60px;
}

.inner__page .woocommerce-breadcrumb, .inner__page .woocommerce-breadcrumb * {
    font-size: 16px;
    color: #0A2647 !important;
}

/* Объем без ущерба качеству */
.about-company__container, .shipping__container .shipping__cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 83px;
}

.about-company__container .col, .shipping__container .col {
    max-width: 50%;
}

.about-company__video-link {
    display: block;
    overflow: hidden;
    position: relative;
    height: 568px;
}

.about-company__video-link:focus.focus-visible .about-company__video-icon svg {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.about-company__video-link::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.52);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-company__video-icon {
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    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;
    z-index: 2;
}

.about-company__video-icon svg {
    width: 20px;
    height: 24px;
    fill: #06163A;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.about-company__video-preview {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
}

.about-company__text h2, .shipping__text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0A2647;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 50px;
}

.about-company__text p, .shipping__text p {
    font-size: 18px;
    line-height: 1.18;
    color: #3F4446;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-company__text p:last-child, .shipping__text p:last-child {
    margin: 0;
}

.about-company__slider .d-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 84px;
}

.about-company__slider h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.255;
    color: #0A2647;
    font-weight: 800;
    text-transform: uppercase;
}

.mob-slider-nav__btns {
    display: none;
}

.slider-nav__btns button {
    width: 60px;
    height: 60px;
}

.slider-nav__btns button svg {
    display: block;
    width: 100%;
    height: auto;
}

.about-company__slider .slider.swiper .slide.swiper-slide {
    width: 1186px;
}

.callback {
    margin-bottom: 0;
}

.callback__frame {
    position: relative;
    width: 100%;
}

.callback__frame iframe {
    width: 100%;
    height: 731px;
}

.ymap-container {
    position: relative;
    margin: 0;
    overflow: hidden;
    cursor: pointer;
    background: url('../img/yandex-before-load.png') #ffffff repeat;
    background-position: center center;
    background-size: auto;
}

#map-yandex {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 730px;
    cursor: pointer;
    background-color: transparent;
}

.ymap-container .loader {
    position: absolute;
    z-index: 2;
    top: -100%;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: #000000;
    transition: opacity .7s ease;
    opacity: 0;
    background-color: rgba(0, 0, 0, .55);
}

.ymap-container .loader:after,
.ymap-container .loader:before {
    box-sizing: border-box;
}

.ymap-container .loader.is-active {
    top: 0;
    opacity: 1;
}

.ymap-container .loader-default:after {
    position: absolute;
    top: calc(50% - 24px);
    left: calc(50% - 24px);
    width: 48px;
    height: 48px;
    content: '';
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    border: solid 8px #ffffff;
    border-left-color: transparent;
    border-radius: 50%;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@-webkit-keyframes blink {
    from {
        opacity: .5;
    }
    to {
        opacity: 1;
    }
}

@keyframes blink {
    from {
        opacity: .5;
    }
    to {
        opacity: 1;
    }
}

.callback__container {
    z-index: 3;
}

.callback__form-wrap {
    max-width: 585px;
    padding: 0;
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
    margin: 0;
    position: absolute;
    bottom: -154px;
    z-index: 1;
    box-shadow: 4px 4px 22px rgb(40 62 103 / 16%);
}

.callback__form-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0A2647;
    padding: 120px 54px 0 54px;
}

.callback__form-descr {
    font-size: 18px;
    line-height: 1.255;
    margin-bottom: 43px;
    color: #0A2647;
    padding: 0 54px;
}

.callback__form {
    max-width: 66%;
    margin: 0 auto;
}

.callback__form .callback__input[type="text"], .callback__form .callback__input[type="tel"] {
    padding: 10px 20px;
    font-size: 12px;
    line-height: 1.55;
    border: 1px solid #D1E0F9;
    border-radius: 5px;
    background: #fff;
    margin-bottom: 12px;
    font-weight: 500;
    height: 50px;
    width: 100%;
    color: #0A2647;
}

.callback__input::-webkit-input-placeholder {
    opacity: 0.75;
}

.callback__input::-moz-placeholder {
    opacity: 0.75;
}

.callback__input:-ms-input-placeholder {
    opacity: 0.75;
}

.callback__input::-ms-input-placeholder {
    opacity: 0.75;
}

.callback__input::placeholder {
    opacity: 0.75;
}

.callback__text {
    font-size: 13px;
    margin: 0 auto;
    width: 66%;
    padding-bottom: 54px;
}

.callback .callback__submit {
    width: 100%;
    margin-bottom: 18px;
    margin-top: 20px;
}

/* Наша команда */
.team__container .team__title {
    margin: 0;
    font-size: 32px;
    line-height: 1.255;
    color: #0A2647;
    font-weight: 800;
    text-transform: uppercase;
}

.team__members {
    margin-top: 60px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 4 ];
    grid-template-columns: repeat(4, 1fr);
    gap: 2.1rem;
    margin-bottom: 0;
}

.team__members .team__member {
    border: 1px solid #3D8146;
    border-radius: 10px;
    overflow: hidden;
    padding: 28px 21.5px 52px 21.5px;
}

.team__members .team__member .team__member-img {
    border-radius: 10px;
    margin-bottom: 28px;
    box-shadow: 4px 4px 22px rgb(40, 62, 103, 0.16);
}

.team__members .team__member .team__member-name {
    font-size: 20px;
    font-weight: 700;
    color: #0A2647;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 20px;
}

/* документы */
.documents-list__items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.documents-list__items .documents-list__item {
    width: calc(50% - 7.5px);
    border: 1px solid #3D8146;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.documents-list-item__icon {
    background: #3D8146;
    padding: 19px 22px;
}

.documents-list-item__elements {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 30px;
    margin-right: 38px;
}

.documents-list-item__name {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    margin-right: 20px;
}

.documents-list-item__link {
    display: flex;
    color: #2A689E;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
}

.documents-list-item__link span {
    text-decoration: underline;
}

.documents-list-item__link svg {
    margin-left: 10px;
}

/* документы */
/* Медиа */
.media__items {
    margin-top: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 3 ];
    grid-template-columns: repeat(3, 1fr);
    gap: 43px;
    margin-bottom: 0;
}

.media__items .media__item {
    border: 1px solid #3D8146;
    border-radius: 10px;
    overflow: hidden;
    padding: 28px;
}

.media__item-video {
    display: block;
    position: relative;
    margin-bottom: 40px;
}

.media__item-video-icon {
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    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;
    z-index: 2;
}

.media__item-video-icon svg {
    width: 20px;
    height: 24px;
    fill: #3D8146;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.media__items .media__item .media__item-img {
    border-radius: 10px;
    box-shadow: 4px 4px 22px rgb(40, 62, 103, 0.16);
}

.media__items .media__item .media__item-title {
    font-size: 20px;
    font-weight: 700;
    color: #0A2647;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 20px;
}

.media__items .media__item .media__item-date {
    font-size: 14px;
    font-weight: 700;
    color: #0A2647;
    line-height: 1.5;
    margin-bottom: 8px;
}

.contacts__container .header__contacts {
    justify-content: space-between;
}

.contacts__container .header__contacts .header__contacts-item {
    max-width: 28%;
}

main.services__page h1 {
    margin-bottom: 50px;
}

main.services__page .page-description {
    font-size: 16px;
    line-height: 1.625;
    color: #0A2647;
    margin-bottom: 70px;
    max-width: 63%;
}

.shipping__cols {
    margin-bottom: 20px;
}

.shipping__cols:last-child {
    margin-bottom: 0;
}

.shipping__cols:nth-child(odd) {
    flex-direction: row-reverse;
}

.shipping__img img {
    box-shadow: 4px 4px 22px rgb(40 62 103 / 16%);
    border-radius: 4px;
}

main#primary nav.woocommerce-pagination {
    margin-top: 20px;
}

main#primary nav.woocommerce-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    gap: 5px;
}

main#primary nav.woocommerce-pagination ul.page-numbers li {
    border: 1px solid #3d8146;
    line-height: 1;
    width: 50px;
    border-radius: 4px;
}

main#primary nav.woocommerce-pagination ul li a:focus,
main#primary nav.woocommerce-pagination ul li a:hover,
main#primary nav.woocommerce-pagination ul li span.current {
    background: #3d8146;
    color: #fff;
}

#jckqv {
    max-width: calc(1581px + (var(--containerPadding) * 2));
}

ul li.product {
    position: relative;
}

.woocommerce span.onsale {
    border-radius: 5px;
    z-index: 1;
    background: #3d8146;
    min-height: auto;
    min-width: auto;
    padding: 10px;
    line-height: 1.2;
    top: 10px;
    left: 10px;
}

#jckqv:after, #jckqv:before {
    display: none;
}

#jckqv {
    background: #fff;
    padding: 30px;
    max-width: calc(1130px + (var(--containerPadding) * 2));
    text-align: left;
    margin: 30px auto;
    position: relative;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    font-family: unset;
}

#jckqv h1 {
    font-size: 23px;
    font-weight: 800;
    color: #0A2647 !important;
    margin: 0 0 15px;
    line-height: 1.25;
    text-transform: uppercase;
}

#jckqv .price {
    overflow: hidden;
    display: block;
    color: #333;
    display: none;
}

#jckqv_summary table.product-attributes p {
    margin: 0;
}

#jckqv .cart {
    margin: 35px 0;
    box-shadow: 10px 0px 20px rgb(0 0 0 / 6%);
    border-radius: 4px;
    max-width: 50%;
    padding: 18px 15px;
}

#jckqv .cart .single-product__add-to-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

#jckqv .cart .woocommerce-Price-amount {
    font-size: 22px;
    line-height: 1;
    color: #0A2647;
    font-weight: 800;
}

#jckqv .cart .single-product__add-to-cart .quantity {
    position: relative;
    display: flex !important;
    justify-content: center;
    width: 100px;
    border: 1px solid #F2F2F2;
    border-radius: 5px;
    float: none;
    margin: 0 !important;
}

#jckqv .cart .single-product__add-to-cart .quantity input {
    background: transparent !important;
    color: #333333 !important;
    border: 0 !important;
    font-weight: 400;
}

#jckqv .cart .single-product__add-to-cart .quantity .jckqv-qty-spinners {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
    width: 100%;
}

#jckqv .cart .single-product__add-to-cart .quantity .jckqv-qty-spinners input {
    height: 100%;
    width: 30px;
    line-height: 1;
    color: #333 !important;
}

#jckqv_images_wrap {
    width: 48%;
    float: left;
    display: inline;
    margin: 0;
    overflow: hidden;
}

div#jckqv_images .slick-track .slick-slide {
    border-radius: 5px;
    overflow: hidden;
}

div#jckqv_thumbs {
    margin-top: 0;
    max-width: 75%;
}

div#jckqv_thumbs button.slick-arrow {
    display: none !important;
}

.sadiya_slider-wrap {
    margin-top: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.sadiya_slider-wrap .btn-wrap {
    display: flex;
    justify-content: center;
    width: auto;
    align-items: center;
    gap: 7px;
}

.sadiya_slider-wrap .btn-wrap button {
    width: 20px;
    height: 20px;
    background: #fff;
    font-size: 0;
}

.sadiya_slider-wrap .btn-wrap button svg {
    width: 20px;
    height: 20px;
}

div#jckqv_thumbs .slick-list {
    margin: 0 -10px;
}

div#jckqv_thumbs .slick-slide {
    margin: 0 10px;
    display: flex !important;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

#jckqv_summary {
    float: right;
    width: 48%;
    display: inline;
}

button.single_add_to_cart_button {
    background: #2A689E !important;
    width: 170px !important;
}

#jckqv .cart .single-product__add-to-cart button.minus, #jckqv .cart .single-product__add-to-cart button.plus {
    display: none;
}

.woocommerce-shipping-methods li {
    margin: 0 0 0.5em;
    line-height: 1.5em;
    list-style: none outside;
    display: flex;
    align-items: center;
}
.woocommerce-shipping-methods li input[type="radio"] {
    width: 24px;
    height: 24px;
    border: 1px solid #C4C4C4;
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.woocommerce-shipping-methods li input[checked="checked"]:after {
    content: "";
    position: relative;
    width: 13px;
    height: 13px;
    background: #3D8146;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 22px;
}

.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method {
    margin: 0 0 0.5em;
    line-height: 1.5em;
    list-style: none outside;
    display: flex;
    align-items: center;
}
.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type="radio"] {
    width: 24px;
    height: 24px;
    border: 1px solid #C4C4C4;
    border-radius: 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method.is-checked input[type="radio"]:after {
    content: "";
    position: relative;
    width: 13px;
    height: 13px;
    background: #3D8146;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 22px;
}

form.checkout.woocommerce-checkout input {
    border: 1px solid;
}
p#billing_country_field {
    display: none;
}
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    float: none;
}
.woocommerce-additional-fields h3 {
    display: none;
}

form.checkout.woocommerce-checkout1 {
    max-width: 500px;
    margin: 0 auto;
}
form.checkout.woocommerce-checkout .col-111, form.checkout.woocommerce-checkout .col-222 {
    width: 100%;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    font-size: 14px;
    border-color: #D1E0F9;
    padding: 10px;
    border-radius: 4px;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: #ffffff;
    border-radius: 5px;
}
form.checkout.woocommerce-checkout h2 {
    margin-bottom: 20px;
    margin-top: 50px;
    text-transform: uppercase;
    font-size: 22px;
    color: #0A2647;
    font-weight: 700;
    line-height: 1.59;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    background-color: #0A2647;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}
#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
    width: 180px;
    box-shadow: none;
    border-radius: 4px;
}

.faq {
    padding: 4rem 0 5.3rem;
    background: url("../img/content/faq-bg.jpg") center/cover no-repeat;
}

.faq__item {
    background-color: #fff;
    border-radius: 1rem;
}

.faq__item.act .faq__content {
    padding-top: 1.4rem;
    padding-bottom: 2.4rem;
    border-top-color: #f9f9f9;
}

.faq__item.act .faq__icon svg {
    -webkit-transform: rotate(90deg) translateX(-7%);
    -ms-transform: rotate(90deg) translateX(-7%);
    transform: rotate(90deg) translateX(-7%);
}

.faq__item:not(:last-child) {
    margin-bottom: 0.8rem;
}

.faq__btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 2rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: left;
    padding: 1.55rem 1.5rem;
}

.faq__icon {
    width: 1.9rem;
    height: 1.9rem;
    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;
    background-color: #35438c;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.faq__icon svg {
    width: 0.9rem;
    height: 0.9rem;
    -webkit-transform: rotate(-90deg) translateX(-7%);
    -ms-transform: rotate(-90deg) translateX(-7%);
    transform: rotate(-90deg) translateX(-7%);
    stroke: #ffdb35;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.faq__content {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    height: 0;
    overflow: hidden;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-top: 2px solid transparent;
}

.faq__content p:not(:last-child),
.faq__content ul:not(:last-child) {
    margin-bottom: 1.5em;
}

.pretend {
    padding: 4.7rem 0 2.5rem;
}

.pretend__title {
    margin-bottom: 1.6rem;
}

.pretend__descr {
    font-size: 1.4rem;
    font-weight: 500;
    color: #35438c;
    margin-bottom: 2.4rem;
}

.pretend__swiper {
    width: calc(100% - 6.8rem);
    margin: 0 auto 4.3rem;
}

.pretend__wrapper {
    margin-bottom: 1.9rem;
}

.pretend__slide {
    padding: 1.8rem 2rem 2.5rem;
    background-color: #f0f3f4;
    border-radius: 1.5rem;
}

.pretend__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.pretend__navigation {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.pretend__navigation.prev {
    left: 1.6rem;
}

.pretend__navigation.next {
    right: 1.6rem;
}

.pretend__img {
    aspect-ratio: 1/0.88;
    border-radius: 1.5rem;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 2.1rem;
}

.pretend__name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.pretend__quote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 1.6rem;
    color: #fff;
    background-color: #35438c;
    font-size: 1.4rem;
    padding: 2.4rem 1.8rem 3rem;
    border-radius: 1.5rem;
}

.pretend__quote-icon {
    width: 4.2rem;
    height: 4.2rem;
    background-color: #ffdb35;
    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;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
}

.pretend__quote-icon svg {
    width: 2.3rem;
    height: 2.3rem;
    fill: #000;
}

.reviews {
    padding: 5rem 0 6rem;
}

.reviews__tabs {
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
    z-index: 3;
    margin-bottom: 1rem;
}

.reviews__tabs.act .reviews__tabs-list {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem);
}

.reviews__tabs-current {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    line-height: 5.6rem;
    height: 5.6rem;
    color: #fff;
    background-color: #35438c;
    border-radius: 1rem;
    padding: 0 1.6rem;
}

.reviews__tabs-current::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 0.7rem solid #fff;
    border-right: 0.7rem solid transparent;
    border-left: 0.7rem solid transparent;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.reviews__tabs-btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 1rem 0;
    -webkit-transition: background-color 0.4s, color 0.4s;
    -o-transition: background-color 0.4s, color 0.4s;
    transition: background-color 0.4s, color 0.4s;
}

.reviews__tabs-btn:focus.focus-visible {
    background-color: rgba(53, 67, 140, 0.2);
}

.reviews__video {
    font-size: 1.6rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr) [ 1 ];
    grid-template-columns: repeat(1, 1fr);
    gap: 2.6rem 1.7rem;
}

.reviews__video-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 1/0.67;
    border-radius: 1rem;
    position: relative;
    margin-bottom: 1.9rem;
}

.reviews__video-link:focus.focus-visible .reviews__video-icon svg {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.reviews__video-link::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.52);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.reviews__video-icon {
    width: 6.3rem;
    height: 6.3rem;
    background-color: #ffdb35;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    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;
    z-index: 2;
}

.reviews__video-icon svg {
    width: 1.7rem;
    height: 1.7rem;
    fill: #35438c;
    -webkit-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.reviews__video-preview {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.reviews__video-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.reviews__video-subject {
    margin-bottom: 0.9rem;
    font-weight: 500;
    color: #35438c;
}

.reviews__video-date {
    color: #35438c;
}

.services {
    padding: 5.1rem 0 6.6rem;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.services__title {
    text-align: center;
    margin-bottom: 5.5rem;
}

.services__icon {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: #ffdb35;
    padding: 1.2rem;
}

.services__icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.services__item {
    padding: 5.3rem 3.2rem 3.4rem;
    background-color: #fff;
    border-radius: 1.5rem;
    color: #000;
    text-align: center;
    position: relative;
}

.services__item:not(:last-child) {
    margin-bottom: 4.3rem;
}

.services__name {
    font-size: 1.4rem;
    margin-bottom: 0.9rem;
}

.stages {
    padding: 6.1rem 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.stages__tabs {
    counter-reset: count;
    width: 100%;
}

.stages__tabs-item:not(:last-child) {
    margin-bottom: 1rem;
}

.stages__tabs-btn {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.278;
    padding: 1.7rem 1.4rem;
    border-radius: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2.7rem;
    width: 100%;
    margin-bottom: 0.8rem;
    background-color: #fff;
    text-align: left;
    -webkit-transition: background-color 0.4s;
    -o-transition: background-color 0.4s;
    transition: background-color 0.4s;
}

.stages__tabs-btn:focus.focus-visible {
    background-color: rgba(53, 67, 140, 0.15);
}

.stages__tabs-btn::before {
    counter-increment: count;
    content: counter(count);
    width: 2.2rem;
    height: 2.2rem;
    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;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 50%;
    background-color: #35438c;
    color: #fff;
    -webkit-transition: background-color 0.4s, color 0.4s;
    -o-transition: background-color 0.4s, color 0.4s;
    transition: background-color 0.4s, color 0.4s;
}

.stages__tabs-btn.act {
    background-color: #35438c;
    color: #fff;
}

.stages__tabs-btn.act::before {
    color: #000;
    background-color: #fff;
}

.stages__tabs-btn.act .stages__tabs-icon {
    fill: #000;
    background-color: #fff;
}

.stages__tabs-icon {
    display: none;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    background-color: #35438c;
    fill: #fff;
    padding: 0.75rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transition: fill 0.4s, background-color 0.4s;
    -o-transition: fill 0.4s, background-color 0.4s;
    transition: fill 0.4s, background-color 0.4s;
}

.stages__content {
    display: none;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #fff;
    border-radius: 1rem;
    padding: 2rem 1.4rem;
}

.stages__content.act {
    display: block;
}

.stages__content p:not(:last-child) {
    margin-bottom: 1.2em;
}

.tariffs {
    font-size: 1.4rem;
    padding: 5.7rem 0 7.6rem;
    background: url("../img/content/tariffs-bg.jpg") center/cover no-repeat;
}

.tariffs__title {
    margin-bottom: 1.1rem;
}

.tariffs__descr {
    font-weight: 500;
    margin-bottom: 2.9rem;
    color: #35438c;
}

.tariffs__swiper {
    color: #fff;
}

.tariffs__wrapper {
    margin-bottom: 2.5rem;
}

.tariffs__slide {
    border-radius: 1rem;
    overflow: hidden;
}

.tariffs__service {
    padding: 2.8rem 2.3rem 2rem;
}

.tariffs__content {
    background-color: #35438c;
    padding: 2.8rem 2.3rem 2rem;
}

.tariffs__name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.2rem;
}

.tariffs__name--hidden {
    display: none;
    opacity: 0;
}

.tariffs__text {
    font-weight: 600;
    color: #ffdb35;
    margin-bottom: 1.3rem;
}

.tariffs__text-content {
    font-size: 1.2rem;
    margin-bottom: 2.7rem;
}

.tariffs__text-content ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.tariffs__text-content ul li::before {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #ffdb35;
    margin-right: 1rem;
    margin-top: 0.25em;
}

.tariffs__text-content ul li:not(:last-child) {
    margin-bottom: 0.8em;
}

.tariffs__text-small {
    color: #ffdb35;
    margin-bottom: 1.2rem;
}

.tariffs__price {
    font-size: 3rem;
    font-weight: 600;
}

.tariffs__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.1rem;
}

.tariffs__inner-text {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.tariffs__pagination .swiper-pagination-bullet {
    background-color: #a9a9a9;
}

.tariffs__pagination .swiper-pagination-bullet.act {
    background-color: #35438c;
}

.tariffs .tariffs__btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 3.8rem;
    line-height: 6.5rem;
    height: 6.5rem;
}

.error-404 p {
    margin-bottom: 15px;
}

.error-404 ul {
    margin: 15px;
}

.maintenance {
    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;
    text-align: center;
    position: relative;
    color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.maintenance--dark::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
}

.maintenance__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
}

.maintenance__title {
    font-size: 5rem;
    text-transform: uppercase;
}

.maintenance__descr {
    font-size: 2rem;
}

.page-content {
    padding: 2em 0;
}

.page-content__title {
    font-size: 3rem;
    margin-bottom: 1em;
}

.page-content__text h2 {
    font-size: 1.4em;
}

.page-content__text h3 {
    font-size: 1.3em;
}

.page-content__text h4 {
    font-size: 1.2em;
}

.page-content__text h5 {
    font-size: 1.1em;
}

.page-content__text h2,
.page-content__text h3,
.page-content__text h4,
.page-content__text h5,
.page-content__text h6 {
    margin: 1.2em 0;
}

.page-content__text h2:first-child,
.page-content__text h3:first-child,
.page-content__text h4:first-child,
.page-content__text h5:first-child,
.page-content__text h6:first-child {
    margin-top: 0;
}

.page-content__text h2:last-child,
.page-content__text h3:last-child,
.page-content__text h4:last-child,
.page-content__text h5:last-child,
.page-content__text h6:last-child {
    margin-bottom: 0;
}

.page-content__text blockquote,
.page-content__text ol,
.page-content__text p,
.page-content__text ul {
    margin: 1em 0;
}

.page-content__text blockquote:first-child,
.page-content__text ol:first-child,
.page-content__text p:first-child,
.page-content__text ul:first-child {
    margin-top: 0;
}

.page-content__text blockquote:last-child,
.page-content__text ol:last-child,
.page-content__text p:last-child,
.page-content__text ul:last-child {
    margin-bottom: 0;
}

.page-content__text ol,
.page-content__text ul {
    list-style: initial;
    padding-left: 1.5rem;
}

.page-content__text ol {
    list-style: auto;
    padding-left: 1.7rem;
}

.page-content__text blockquote {
    border-left: 0.2em solid;
    padding-left: 0.75em;
}

.page-content__text a {
    text-decoration: underline;
    color: #4169e1;
}

.page-content__text a:focus.focus-visible {
    text-decoration: none;
}

.page-content__text img {
    display: block;
    max-width: 100%;
}

.page-content__text img.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.page-content__text img.alignright {
    margin-left: auto;
}
