@charset "UTF-8";
/*Общие */
@-webkit-keyframes lockFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes lockFade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

html.lock {
    overflow: hidden;
}

html.burger-lock {
    overflow: hidden;
}

@-webkit-keyframes piyan {
    0% {
        -webkit-transform: rotate3d(0);
                transform: rotate3d(0);
    }

    100% {
        -webkit-transform: rotate3d(10, 5, 2, 6.302rad);
                transform: rotate3d(10, 5, 2, 6.302rad);
    }
}

@keyframes piyan {
    0% {
        -webkit-transform: rotate3d(0);
                transform: rotate3d(0);
    }

    100% {
        -webkit-transform: rotate3d(10, 5, 2, 6.302rad);
                transform: rotate3d(10, 5, 2, 6.302rad);
    }
}

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

body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(51, 51, 51, 0.862745098);
    font-family: "ProximaNova", sans-serif;
    background-color: #fff;
}

body.lock {
    overflow: hidden;
}

body.burger-lock {
    overflow: hidden;
}

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

a,
button {
    text-decoration: none;
    color: inherit;
    -webkit-transition: color 0.35s linear, background-color 0.35s linear, border-color 0.35s linear;
    transition: color 0.35s linear, background-color 0.35s linear, border-color 0.35s linear;
    cursor: pointer;
    background: none;
    font-weight: inherit;
    font-size: inherit;
}

select {
    background-color: inherit;
}

section, footer, header {
    clear: both;
}

blockquote {
    margin: 0;
}

button {
    border: none;
    font-family: inherit;
    margin: 0;
    padding: 0;
    font-size: inherit;
}

textarea {
    outline: none;
    border: none;
    resize: none;
}

textarea:focus {
    outline-width: 0;
}

input::-webkit-input-placeholder {
    font-size: inherit;
    font-weight: 400;
    font-family: inherit;
    border: none;
    outline: none;
}

input::-moz-placeholder {
    font-size: inherit;
    font-weight: 400;
    font-family: inherit;
    border: none;
    outline: none;
}

input:-ms-input-placeholder {
    font-size: inherit;
    font-weight: 400;
    font-family: inherit;
    border: none;
    outline: none;
}

input::-ms-input-placeholder {
    font-size: inherit;
    font-weight: 400;
    font-family: inherit;
    border: none;
    outline: none;
}

input,
input::placeholder {
    font-size: inherit;
    font-weight: 400;
    font-family: inherit;
    border: none;
    outline: 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;
}

picture {
    display: block;
}

picture img {
    width: 100%;
    max-width: 100%;
}

ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    -webkit-margin-after: 0;
            margin-block-end: 0;
    -webkit-margin-before: 0;
            margin-block-start: 0;
}

ul li {
    list-style-type: none;
}

ol li {
    list-style-type: none;
}

ol {
    margin: 0;
    padding: 0;
}

ol li {
    list-style-position: inside;
}

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

.section-offset {
    margin-bottom: 120px;
}

.section-title {
    display: block;
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: #333;
}

.section-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
}

.section-top .section-title {
    margin-bottom: 0;
}

.section-subtitle {
    display: block;
    margin-bottom: 40px;
    max-width: 750px;
}
.section-subtitle--services{
    max-width: 100%;
}

.main-title {
    font-size: 48px;
    color: #E24247;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

.page-title {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.3;
    font-size: 42px;
}

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

.scale-item {
    scale: 0.6;
    opacity: 0;
    -webkit-transition: scale 0.4s ease, opacity 0.2s ease;
    transition: scale 0.4s ease, opacity 0.2s ease;
}

.rotate-item {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
    opacity: 0;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: opacity 0.2s ease, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
    transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease, -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rotate-item:nth-child(2n) {
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: opacity 0.2s ease, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rotate-item:nth-child(3n) {
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: opacity 0.2s ease, -webkit-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease, -webkit-transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.rotate-item:nth-child(5n) {
    -webkit-transition: opacity 0.2s ease, -webkit-transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: opacity 0.2s ease, -webkit-transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s ease;
    transition: transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1), opacity 0.2s ease, -webkit-transform 1.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.transform-item {
    opacity: 0;
}

.animation-active.scale-item {
    opacity: 1;
    scale: 1;
}

.animation-active.rotate-item {
    -webkit-transform: rotateY(0);
            transform: rotateY(0);
    opacity: 1;
}

.animation-active.transform-item {
    opacity: 1;
    -webkit-animation: transformItem 0.4s forwards;
            animation: transformItem 0.4s forwards;
}

.animation-active.transform-item:nth-child(2n) {
    -webkit-animation: transformItem 0.45s forwards;
            animation: transformItem 0.45s forwards;
}

.animation-active.transform-item:nth-child(3n) {
    -webkit-animation: transformItem 0.55s forwards;
            animation: transformItem 0.55s forwards;
}

.animation-active.transform-item:nth-child(5n) {
    -webkit-animation: transformItem 0.65s forwards;
            animation: transformItem 0.65s forwards;
}

.animation-active.transform-item:nth-child(7n) {
    -webkit-animation: transformItem 0.75s forwards;
            animation: transformItem 0.75s forwards;
}

/* btn */
.standart-btn {
    padding: 15px 20px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid transparent;
    overflow: hidden;
    position: relative;
}

.standart-btn span {
    position: relative;
    z-index: 3;
    -webkit-transition: color 0.35s linear;
    transition: color 0.35s linear;
}

.standart-btn::before, .standart-btn::after {
    display: block;
    content: "";
    position: absolute;
    inset: 0;
    -webkit-transition: -webkit-clip-path 0.35s linear;
    transition: -webkit-clip-path 0.35s linear;
    transition: clip-path 0.35s linear;
    transition: clip-path 0.35s linear, -webkit-clip-path 0.35s linear;
}

.standart-btn::before {
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
    z-index: 1;
}

.standart-btn::after {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    z-index: 2;
    background-color: #000;
}

.standart-btn:hover::after {
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
}

.opacity-btn {
    border-color: #13569D;
}

.opacity-btn span {
    color: #13569D;
}

.opacity-btn::after {
    background: linear-gradient(96.24deg, #13569D 0%, #2298D7 100%);
}

.opacity-btn::before {
    display: none;
}

.opacity-btn:hover span {
    color: #fff;
}

.blue-btn {
    border-color: #13569D;
}

.blue-btn span {
    color: #fff;
}

.blue-btn::before {
    background: linear-gradient(96.24deg, #13569D 0%, #2298D7 100%);
}

.blue-btn::after {
    background: #fff;
}

.blue-btn:hover span {
    color: #13569D;
}

.red-btn {
    border-color: #E24247;
}

.red-btn span {
    color: #fff;
}

.red-btn::before {
    background: #E24247;
}

.red-btn::after {
    background: #fff;
}

.red-btn:hover span {
    color: #E24247;
}

/* breadcrumbs */
.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    padding-top: 20px;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
}

.breadcrumbs li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(51, 51, 51, 0.5137254902);
}

.breadcrumbs li a:hover {
    color: #E24247;
}

.breadcrumbs li::after {
    content: "/";
    display: block;
    font-size: inherit;
}

.breadcrumbs li:last-of-type {
    color: #333;
}

.breadcrumbs li:last-of-type::after {
    display: none;
}

/* animation photo */
.img-animation img {
    -webkit-transition: scale 3s ease;
    transition: scale 3s ease;
}

.img-animation {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.img-animation picture {
    border-radius: 12px;
    overflow: hidden;
}

.img-animation picture::before {
    border-radius: 12px;
    display: block;
    pointer-events: none;
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    -webkit-clip-path: circle(0% at 100% 100%);
            clip-path: circle(0% at 100% 100%);
    z-index: 2;
    -webkit-transition: -webkit-clip-path 0.4s ease-in-out;
    transition: -webkit-clip-path 0.4s ease-in-out;
    transition: clip-path 0.4s ease-in-out;
    transition: clip-path 0.4s ease-in-out, -webkit-clip-path 0.4s ease-in-out;
    background: #E24247;
}

.img-animation:hover img {
    scale: 1.3;
}

.img-animation:hover picture::before {
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
}

/* tabs */
.tab__content {
    display: none;
}

.tab__content.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.hide-item__content {
    overflow: hidden;
    height: 0;
    -webkit-transition: height 0.35s linear;
    transition: height 0.35s linear;
    pointer-events: none;
}

.hide-item__content.active {
    pointer-events: all;
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    width: 100%;
    max-width: 196px;
}

.logo__text {
    color: rgba(28, 116, 188, 0.7254901961);
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.social__link {
    width: 38px;
    height: 38px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #3995C8;
    border-radius: 2px;
}

.social__link:hover {
    background-color: #4B9FCD;
}

@media (max-width: 1023px) {
    .section-title {
        font-size: 30px;
    }

    .main-title {
        font-size: 34px;
    }

    .main {
        margin-top: 201px;
    }

    .section-offset {
        margin-bottom: 60px;
    }
}

@media (max-width: 748px) {
    .main {
        margin-top: 220px;
    }
}

@media (max-width: 687px) {
    .main {
        margin-top: 240px;
    }
}

@media (max-width: 550px) {
    .page-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .main-title {
        font-size: 30px;
    }

    .main {
        margin-top: 196px;
    }

    .logo {
        max-width: 100px;
    }

    .logo__text {
        display: none;
    }

    .standart-btn {
        padding: 10px;
    }
}

@media (max-width: 401px) {
    .main {
        margin-top: 216px;
    }
}

@media (max-width: 360px) {
    .main {
        margin-top: 236px;
    }
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

main {
    display: block;
    overflow-x: hidden;
}

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

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

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
}

b,
strong {
    font-weight: 600;
}

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

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;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

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;
}

textarea {
    overflow: auto;
}

[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;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

@font-face {
    font-family: "ProximaNova";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: local("ProximaNova"), url("../fonts/ProximaNova/ProximaNova-Regular.woff2") format("woff2"), url("../fonts/ProximaNova/ProximaNova-Regular.woff") format("woff");
}

@font-face {
    font-family: "ProximaNova";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: local("ProximaNova"), url("../fonts/ProximaNova/ProximaNova-Semibold.woff2") format("woff2"), url("../fonts/ProximaNova/ProximaNova-Semibold.woff") format("woff");
}

@font-face {
    font-family: "ProximaNova";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: local("ProximaNova"), url("../fonts/ProximaNova/ProximaNova-Bold.woff2") format("woff2"), url("../fonts/ProximaNova/ProximaNova-Bold.woff") format("woff");
}
/* swiper CUSTOM */
.swiper {
    width: 100%;
    position: relative;
}

.swiper__container {
    max-width: 1300px;
}

.swiper-wrapper {
    position: relative;
    z-index: 10;
}

.swiper__wrapper {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
}

.swiper-pag {
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.slider-button {
    width: 46px;
    pointer-events: all;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 46px;
    cursor: pointer;
    position: relative;
    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;
    border-radius: 50%;
    background-color: #F7F9FB;
    border: 1px solid #F7F9FB;
    -webkit-transition: background-color 0.35s linear, border-color 0.35s linear, opacity 0.35s linear;
    transition: background-color 0.35s linear, border-color 0.35s linear, opacity 0.35s linear;
}

.slider-button::after {
    width: 12px;
    height: 12px;
    display: block;
    content: "";
    border-right: 2px solid #5F799F;
    border-bottom: 2px solid #5F799F;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: border-color 0.35s linear;
    transition: border-color 0.35s linear;
    margin-right: 3px;
}

.slider-button:hover {
    background-color: #E7EDF3;
}

.swiper-button-disabled {
    cursor: auto;
    pointer-events: none;
    opacity: 0.6;
}

.slider-button_prev::after {
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
    margin-right: 0;
    margin-left: 3px;
}

.swiper-pagination-bullets {
    display: none;
}

/* swiper media */
@media (max-width: 1300px) {
    .swiper-pag {
        display: none;
    }

    .swiper-pagination-bullets {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        row-gap: 10px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-top: 30px;
    }

    .swiper-pagination-bullet {
        background-color: #B2DCEF;
        -webkit-transition: background-color 0.3s linear;
        transition: background-color 0.3s linear;
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background-color: #13559C;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

.header {
    -webkit-box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: 100;
}

.header__plashka {
    background-color: #00A6C0;
    color: #FFFFFF;
    overflow: hidden;
    -webkit-transition: height 0.35s linear;
    transition: height 0.35s linear;
    font-size: 18px;
    padding: 0 10px;
    text-align: center;
}

.header__inner {
    color: #333;
}

.header__plashka-height {
    padding: 15px 0;
}

.header__top {
    padding-top: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header__picture {
    border-radius: 50%;
    background-color: rgba(28, 116, 188, 0.2039215686);
    padding: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 40px;
    width: 40px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.header__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
}

.header__city {
    font-weight: 700;
    text-align: left;
    position: relative;
}

.header__city::before {
    display: block;
    content: "";
    width: 0;
    position: absolute;
    left: 50%;
    bottom: -2px;
    height: 2px;
    -webkit-transition: left 0.35s linear, width 0.35s linear;
    transition: left 0.35s linear, width 0.35s linear;
    background-color: #00A6C0;
}

.header__city:hover {
    color: #00A6C0;
}

.header__city:hover::before {
    width: 100%;
    left: 0;
}

.header__text-decor {
    color: #00A6C0;
}

.header__phone-decor {
    font-weight: 600;
}

.header__phone {
    font-weight: 700;
    white-space: nowrap;
    position: relative;
}

.header__phone::before {
    display: block;
    content: "";
    width: 0;
    position: absolute;
    left: 50%;
    bottom: -2px;
    height: 2px;
    -webkit-transition: left 0.35s linear, width 0.35s linear;
    transition: left 0.35s linear, width 0.35s linear;
    background-color: #00A6C0;
}

.header__phone:hover {
    color: #00A6C0;
}

.header__phone:hover::before {
    width: 100%;
    left: 0;
}

.header__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header__nav-item {
    padding: 25px 5px 20px;
    position: relative;
}

.header__nav-item::before {
    display: block;
    content: "";
    width: 0;
    height: 5px;
    background: linear-gradient(96.24deg, #13569D 0%, #2298D7 100%);
    position: absolute;
    bottom: 0;
    left: 5px;
    -webkit-transition: width 0.35s linear;
    transition: width 0.35s linear;
}

.header__link {
    font-size: 17px;
    line-height: 1.1;
    position: relative;
}

.header__link::before {
    display: block;
    content: "";
    width: 0;
    position: absolute;
    left: 50%;
    bottom: -2px;
    height: 2px;
    -webkit-transition: left 0.35s linear, width 0.35s linear;
    transition: left 0.35s linear, width 0.35s linear;
    background-color: #00A6C0;
}

.header__link:hover {
    color: #00A6C0;
}

.header__link:hover::before {
    width: 100%;
    left: 0;
}

.header__submenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
}

.header__sublink a {
    font-size: 14px;
    position: relative;
}

.header__sublink a::before {
    display: block;
    content: "";
    width: 0;
    position: absolute;
    left: 50%;
    bottom: -1px;
    height: 1px;
    -webkit-transition: left 0.35s linear, width 0.35s linear;
    transition: left 0.35s linear, width 0.35s linear;
    background-color: #00A6C0;
}

.header__sublink a:hover {
    color: #00A6C0;
}

.header__sublink a:hover::before {
    width: 100%;
    left: 0;
}

.burger__menu {
    display: none;
}

@media (min-width: 1024px) {
    .header__bottom.active {
        display: none;
    }

    .header__nav-item:hover::before {
        width: calc(100% - 10px);
    }

    .header__nav-item:hover .header__content {
        opacity: 1;
        pointer-events: all;
    }

    .header__nav-item:last-child .header__content {
        right: 0;
    }

    .header__nav-item:nth-last-child(2) .header__content {
        right: 0;
    }

    .header__content {
        height: auto;
        padding: 20px 10px;
        pointer-events: all;
        position: absolute;
        top: 100%;
        background-color: #fff;
        border: 1px solid #00A6C0;
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        min-width: 300px;
        max-width: 350px;
        border-radius: 0 0 2px 2px;
        opacity: 0;
        pointer-events: none;
        z-index: 15;
        -webkit-transition: opacity 0.35s linear;
        transition: opacity 0.35s linear;
    }

    .header__mobile {
        display: none;
    }
}

@media (max-width: 1023px) {
    .header {
        position: fixed;
    }

    .header__plashka {
        font-size: 14px;
    }

    .header__plashka-height {
        padding: 8px 0;
    }

    .burger__menu {
        width: 40px;
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        height: 40px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -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;
        background-color: #fff;
        padding: 10px;
        position: relative;
        justify-content: center;
        gap: 4px;
        justify-self: flex-end;
    }

    .burger__menu::before, .burger__menu::after {
        content: "";
        position: relative;
        left: 0;
        right: 0;
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transition: width 0.3s ease, top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
        transition: width 0.3s ease, top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
        transition: width 0.3s ease, transform 0.3s ease, top 0.3s ease, bottom 0.3s ease;
        transition: width 0.3s ease, transform 0.3s ease, top 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease;
    }

    .burger__menu::before, .burger__menu::after, .burger__menu span {
        display: block;
        width: 20px;
        border-radius: 4px;
        height: 2px;
        background-color: #333;
    }

    .burger__menu::before {
        bottom: 0;
    }

    .burger__menu::after {
        top: 0;
    }

    .burger__menu span {
        position: relative;
        -webkit-transition: width 0.3s ease, right 0.3s ease;
        transition: width 0.3s ease, right 0.3s ease;
    }

    .burger__menu.active::before {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        bottom: -6px;
    }

    .burger__menu.active::after {
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
        top: -6px;
    }

    .burger__menu.active span {
        width: 0;
    }

    .header__top {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .header__btns {
        width: 100%;
        -webkit-box-ordinal-group: 5;
            -ms-flex-order: 4;
                order: 4;
    }

    .header__btn {
        -ms-flex-preferred-size: calc((100% - 15px) / 2);
            flex-basis: calc((100% - 15px) / 2);
    }

    .header__item_hide {
        display: none;
    }

    .header__logo {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .header__item_phone {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }

    .header__inner {
        position: relative;
    }

    .header__bottom {
        -webkit-box-shadow: -2px 0px 0 0 rgba(0, 166, 192, 0.2);
                box-shadow: -2px 0px 0 0 rgba(0, 166, 192, 0.2);
        position: absolute;
        right: -10px;
        border-top: 2px solid #00A6C0;
        overflow-y: auto;
        top: 100%;
        background-color: #fff;
        width: 100%;
        max-width: 400px;
        z-index: 1000;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 10px;
        padding: 10px;
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        -webkit-transition: -webkit-transform 0.3s linear;
        transition: -webkit-transform 0.3s linear;
        transition: transform 0.3s linear;
        transition: transform 0.3s linear, -webkit-transform 0.3s linear;
        padding-bottom: 80px;
    }

    .header__bottom.active {
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }

    .header__menu {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .header__nav-item {
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 10px;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        width: 100%;
    }

    .header__nav {
        margin-bottom: 10px;
    }

    .header__link {
        text-align: left;
        width: 100%;
        display: block;
        max-width: calc(100% - 40px);
    }

    .header_hide-item__title {
        width: 30px;
        height: 30px;
        border: 1px solid #1C75BC;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        border-radius: 4px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-transition: -webkit-transform 0.3s linear;
        transition: -webkit-transform 0.3s linear;
        transition: transform 0.3s linear;
        transition: transform 0.3s linear, -webkit-transform 0.3s linear;
    }

    .header_hide-item__title::before {
        display: block;
        margin-bottom: 6px;
        content: "";
        width: 10px;
        height: 10px;
        border-bottom: 2px solid #1C75BC;
        border-right: 2px solid #1C75BC;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        -webkit-transition: -webkit-transform 0.3s linear;
        transition: -webkit-transform 0.3s linear;
        transition: transform 0.3s linear;
        transition: transform 0.3s linear, -webkit-transform 0.3s linear;
    }

    .header_hide-item__title.active {
        -webkit-transform: scale(1, -1);
                transform: scale(1, -1);
    }
}

@media (max-width: 550px) {
    .header__btn {
        font-size: 12px;
        padding: 9px;
    }

    .header__top {
        gap: 10px;
    }

    .header__picture {
        width: 25px;
        height: 25px;
        padding: 4px;
    }

    .header__phone, .header__city {
        font-size: 14px;
    }

    .header__text {
        gap: 0;
    }

    .header__text-decor {
        font-size: 12px;
    }

    .header__bottom {
        width: 100vw;
        max-width: 100vw;
        right: -10px;
    }

    .header__link {
        font-size: 14px;
    }
}

@media (max-width: 350px) {
    .header__item_phone .header__picture {
        display: none;
    }

    .header__btns {
        gap: 10px;
    }

    .header__btn {
        -ms-flex-preferred-size: calc(50% - 5px);
            flex-basis: calc(50% - 5px);
        font-size: 10px;
    }
}
/* form */
@-webkit-keyframes bntGradientAnimation {
    0% {
        opacity: 0.1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    16% {
        opacity: 1;
        -webkit-transform: translate(35%, 0);
        transform: translate(35%, 0);
    }

    22% {
        opacity: 0.7;
        -webkit-transform: translate(55%, 0);
        transform: translate(55%, 0);
    }

    40% {
        opacity: 0.7;
        -webkit-transform: translate(120%, 0);
        transform: translate(120%, 0);
    }

    100% {
        opacity: 0.5;
        -webkit-transform: translate(120%, 0);
        transform: translate(120%, 0);
    }
}
@keyframes bntGradientAnimation {
    0% {
        opacity: 0.1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

    16% {
        opacity: 1;
        -webkit-transform: translate(35%, 0);
        transform: translate(35%, 0);
    }

    22% {
        opacity: 0.7;
        -webkit-transform: translate(55%, 0);
        transform: translate(55%, 0);
    }

    40% {
        opacity: 0.7;
        -webkit-transform: translate(120%, 0);
        transform: translate(120%, 0);
    }

    100% {
        opacity: 0.5;
        -webkit-transform: translate(120%, 0);
        transform: translate(120%, 0);
    }
}

.form__btn {
    padding: 15px 60px;
    background: linear-gradient(96.24deg, #13569D 0%, #2298D7 100%);
}

.form__btn::before {
    -webkit-clip-path: circle(0 at 50% 50%);
            clip-path: circle(0 at 50% 50%);
    background: #fff;
}

.form__btn::after {
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
    background: linear-gradient(110deg, hsla(0, 0%, 100%, 0) 15%, hsla(0, 0%, 100%, 0.75) 25%, hsla(0, 0%, 100%, 0) 35%);
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: 2.5s linear infinite bntGradientAnimation;
            animation: 2.5s linear infinite bntGradientAnimation;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}

.form__btn:hover::before {
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
}

.form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

.form__input {
    padding: 15px 25px;
    border-radius: 2px;
    line-height: 1;
    width: 100%;
    color: #000;
    border: 2px #ff000000 solid;
}

.form__input::-webkit-input-placeholder {
    color: #b9b9b9;
}

.form__input::-moz-placeholder {
    color: #b9b9b9;
}

.form__input:-ms-input-placeholder {
    color: #b9b9b9;
}

.form__input::-ms-input-placeholder {
    color: #b9b9b9;
}

.form__input::placeholder {
    color: #b9b9b9;
}

.form__politic {
    color: #C4C4C4;
    font-size: 12px;
}

.form__politic a:hover {
    color: #000;
}

@media (max-width: 550px) {
    .form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 10px;
    }
}
/* standart-form */
.standart-form__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.standart-form {
    position: relative;
}

.standart-form::before {
    background-color: #F5F7FA;
    display: block;
    content: "";
    width: 100%;
    height: calc(100% - 60px);
    position: absolute;
    bottom: 0;
    pointer-events: all;
    left: 0;
    right: 0;
    z-index: -1;
}

.standart-form__item {
    padding-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
}

.standart-form__title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #333;
}

.standart-form__title span {
    color: #00A6C0;
}

.standart-form__subtitle {
    margin-bottom: 5px;
}

.standart-form__text {
    font-weight: 600;
    margin-bottom: 15px;
}

.standart-form__text span {
    color: #E24247;
}

.standart-form__text a {
    position: relative;
    white-space: nowrap;
}

.standart-form__text a::before {
    display: block;
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    -webkit-transition: width 0.35s linear;
    transition: width 0.35s linear;
    background-color: #E24247;
}

.standart-form__text a:hover::before {
    width: 100%;
}

.standart-form__form {
    max-width: 500px;
}

/* standart-form media */
@media (max-width: 1140px) {
    .standart-form__item {
        padding-bottom: 20px;
        gap: 6px;
    }
}

@media (max-width: 1023px) {
    .standart-form__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .standart-form__item {
        padding-bottom: 0;
    }

    .standart-form {
        background-color: #F5F7FA;
        padding-top: 40px;
    }

    .standart-form:before {
        display: none;
    }

    .standart-form__picture {
        max-width: 290px;
    }
}
/* text */
.text__content > * {
    margin-bottom: 15px;
}

.text__content > *:last-child {
    margin-bottom: 0;
}

.text__content > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
}

.text__content > ul li {
    padding-left: 20px;
    position: relative;
}

.text__content > ul li::before {
    display: block;
    content: "";
    width: 9px;
    height: 9px;
    position: absolute;
    left: 0;
    top: 7px;
    border-radius: 50%;
    background-color: #13559C;
}

.text__content ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    counter-reset: list 0;
}

.text__content ol li {
    padding-left: 30px;
    position: relative;
}

.text__content ol li::before {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    content: counter(list);
    counter-increment: list 1;
    width: 22px;
    height: 22px;
    position: absolute;
    color: #fff;
    line-height: 1;
    font-size: 14px;
    font-weight: 700;
    border-radius: 2px;
    left: 0;
    top: 0;
    background-color: #13559C;
}

.text__content h2, .text__content h3, .text__content h4, .text__content h5 {
    color: #333;
    line-height: 1.3;
}

.text__content h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 40px;
}

.text__content h2:first-child {
    margin-top: 0;
}

.text__content h3 {
    font-size: 28px;
    margin-top: 35px;
}

.text__content h4 {
    font-size: 22px;
    margin-top: 30px;
}

.text__content h5 {
    font-size: 18px;
    margin-top: 25px;
}

.text__content b {
    color: #333;
}

.text__content picture img {
    border-radius: 2px;
}

.text__content a {
    color: #1C75BC;
    text-decoration: underline;
    text-decoration-color: transparent;
    -webkit-transition: text-decoration-color 0.35s linear, color 0.35s linear;
    transition: text-decoration-color 0.35s linear, color 0.35s linear;
}

.text__content a:hover {
    color: #2297D6;
    text-decoration-color: #2297D6;
}

.text__content table {
    display: block;
}

/* .text__content table thead {
    display: block;
    width: 100%;
}

.text__content table thead tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 2px;
    overflow: hidden;
}

.text__content table thead tr th {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 15px 20px;
    text-align: left;
    color: #fff;
    background-color: #13559C;
    border-right: 1px solid #fff;
}

.text__content table thead tr th:last-child {
    border-right: none;
}

.text__content table tbody {
    display: block;
}

.text__content table tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
} */

.text__content table {
    border-collapse: collapse;
}

.text__content table tbody tr td {
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 20px; */
    background-color: #F5F7FA;
    border-right: 1px solid #13559C;
    padding: 10px 20px;
}

.text__content table tbody tr td:last-child {
    border-right: none;
}

.float-right {
    float: right;
    margin-left: 50px;
}

.text__checked {
    background-color: #F5F7FA;
    border-radius: 2px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.text__checked-picture {
    width: 100%;
    max-width: 140px;
    height: 100%;
    max-height: 140px;
    border-radius: 2px;
    overflow: hidden;
}

.text__checked-picture img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    border-radius: 2px;
}

.text__checked-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    line-height: 1.3;
}

.text__checked-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.text__author {
    color: #1C75BC;
    font-size: 22px;
    font-weight: 600;
}

.text__checked-job {
    display: block;
    margin-bottom: 25px;
}

.text__date {
    font-size: 14px;
    color: rgba(51, 51, 51, 0.5019607843);
}

@media (max-width: 1023px) {
    .text .container {
        padding: 0;
    }

    .text__content > * {
        padding: 0 10px;
    }

    .text__content h2 {
        font-size: 26px;
    }

    .text__content h3 {
        font-size: 24px;
    }

    .text__content h4 {
        font-size: 20px;
    }

    .text__content h5 {
        font-size: 16px;
    }

    .text__content table {
        overflow-x: auto;
    }

    .text__content table thead tr {
        overflow: visible;
    }

    .text__content table th, .text__content table td {
        min-width: 250px;
    }

    .text__content ol li:before {
        font-size: 12px;
        width: 20px;
        height: 20px;
    }

    .text__content > ul li {
        padding-left: 15px;
    }

    .text__content > ul li:before {
        width: 6px;
        height: 6px;
    }

    .float-right {
        margin-left: 20px;
    }
}

@media (max-width: 550px) {
    .text__content img {
        float: none !important;
        margin: 20px !important;
        max-width: calc(100% - 20px) !important;
    }
    .float-right {
        float: none;
        margin-left: 0;
    }

    .text__checked {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
    }

    .text__checked-item {
        gap: 3px;
    }

    .text__checked-title {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .text__author {
        font-size: 20px;
    }

    .text__checked-job {
        margin-bottom: 9px;
        font-size: 14px;
    }

    .text__date {
        font-size: 12px;
    }
}

.intro {
    padding: 60px 0;
    background: url("../img/intro/bg.webp") center right no-repeat;
    background-size: cover;
}

.intro__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    max-width: 680px;
}

.intro__item_big {
    max-width: 100%;
}

.intro__list {
    font-size: 18px;
    margin-bottom: 20px;
}

.intro__list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.intro__form {
    padding: 30px 40px;
    width: 100%;
    border-radius: 2px;
    background: #F5F7FA;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-shadow: 0px 0px 15px rgba(48, 51, 58, 0.12);
            box-shadow: 0px 0px 15px rgba(48, 51, 58, 0.12);
}

.intro__form-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #333;
}

.intro .breadcrumbs {
    padding-top: 0;
}

@media (max-width: 1023px) {
    .intro {
        /*background: url("../img/intro/bg_mobile.webp") center right no-repeat;*/
        background: linear-gradient(to bottom, rgba(240,244,250,1) 0%,rgba(195,219,241,1) 100%);
        background-size: cover;
        padding: 30px 0;
    }

    .intro__item {
        max-width: 100%;
    }

    .intro__form {
        padding: 20px;
    }

    .intro__list {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .intro__form-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
}
/* service */
.service__title {
    margin-bottom: 20px;
}

.service__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}

.service__item {
    -ms-flex-preferred-size: calc((100% - 40px) / 3);
        flex-basis: calc((100% - 40px) / 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    padding: 30px;
    background-color: #F5F7FA;
    border-radius: 2px;
    line-height: 1.3;
}

.service__description {
    margin-bottom: 30px;
}

.service__picture {
    margin-bottom: 10px;
}

.service__name {
    font-size: 18px;
    font-weight: 700;
}

.service__link {
    color: #00A6C0;
    position: relative;
    padding-right: 30px;
    -webkit-transition: padding 0.35s ease-out;
    transition: padding 0.35s ease-out;
}

.service__link::after {
    position: absolute;
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    content: "";
    width: 14px;
    height: 9px;
    background: url("../img/icons/arrow.svg") center center no-repeat;
}

.service__link:hover {
    padding-right: 40px;
}

/* service media */
@media (max-width: 1200px) {
    .service__item {
        padding: 20px;
    }
}

@media (max-width: 1023px) {
    .service__item {
        -ms-flex-preferred-size: calc(50% - 10px);
            flex-basis: calc(50% - 10px);
        gap: 6px;
    }

    .service__description {
        margin-bottom: 12px;
    }
}

@media (max-width: 550px) {
    .service__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 15px;
    }

    .service__item {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    }

    .service__name {
        text-transform: uppercase;
        font-size: 16px;
    }
}
/* stage */
.stage__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    counter-reset: list 0;
}

.stage__item {
    -ms-flex-preferred-size: calc((100% - 40px) / 3);
        flex-basis: calc((100% - 40px) / 3);
    background-color: #F5F7FA;
    border-radius: 2px;
    line-height: 1.3;
    padding: 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
}

.stage__item::after {
    display: block;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: #1C75BC;
    margin-right: auto;
    content: "0" counter(list);
    counter-increment: list 1;
}

.stage__picture {
    max-width: 100px;
}

.stage__name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

/* stage media */
@media (max-width: 1023px) {
    .stage__item {
        -ms-flex-preferred-size: calc((100% - 20px) / 2);
            flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 500px) {
    .stage__item {
        padding: 12px;
        -ms-flex-preferred-size: calc((100% - 10px) / 2);
            flex-basis: calc((100% - 10px) / 2);
    }

    .stage__inner {
        gap: 10px;
    }

    .stage__picture {
        max-width: 80px;
    }

    .stage__name {
        font-size: 14px;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    .stage__item:after {
        font-size: 30px;
    }
}
/* why-we */
.why-we__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
    row-gap: 50px;
}

.why-we__item {
    -ms-flex-preferred-size: calc((100% - 60px) / 3);
        flex-basis: calc((100% - 60px) / 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 1.3;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    text-align: center;
}

.why-we__name {
    font-size: 18px;
    font-weight: 600;
    max-width: 300px;
}

.why-we__picture {
    max-width: 58px;
    margin-bottom: 10px;
}

/* why-we media */
@media (max-width: 1023px) {
    .why-we__inner {
        gap: 20px;
        row-gap: 25px;
    }

    .why-we__item {
        -ms-flex-preferred-size: calc((100% - 40px) / 2);
            flex-basis: calc((100% - 40px) / 2);
    }
}

@media (max-width: 550px) {
    .why-we__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 25px;
    }

    .why-we__item {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        gap: 10px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: left;
    }

    .why-we__picture {
        max-width: 40px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }

    .why-we__name {
        max-width: calc(100% - 50px);
    }

    .why-we__name {
        font-size: 16px;
    }
}
/* doctors */
.doctors__item {
    padding: 20px;
    border: 1px solid rgba(35, 153, 217, 0.3882352941);
    border-radius: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.3;
}

.doctors__picture {
    max-height: 240px;
    min-height: 240px;
    width: 100%;
    border-radius: 2px;
    display: block;
    overflow: hidden;
}

.doctors__picture img {
    max-height: 240px;
    border-radius: 2px;
    min-height: 240px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
}

.doctors__name {
    font-size: 18px;
    font-weight: 600;
}

.doctors__jobs {
    padding-bottom: 5px;
    border-bottom: 1px solid #E24247;
    width: 100%;
    font-size: 14px;
    margin-bottom: 3px;
}

.doctors__stage {
    font-size: 14px;
    margin-bottom: 15px;
}

.doctors__stage span {
    font-weight: 600;
    color: #00A6C0;
}

.doctors__link {
    width: 100%;
}

.doctors__container {
    padding: 0;
}

.doctors__container > * {
    padding: 0 10px;
}

@media (max-width: 550px) {
    .doctors__item {
        padding: 15px;
    }

    .doctors__name {
        font-size: 16px;
    }
}
/* main-doctors */
.main-doctors__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    row-gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.main-doctors__item {
    -ms-flex-preferred-size: calc((100% - 60px) / 4);
        flex-basis: calc((100% - 60px) / 4);
}

@media (max-width: 1180px) {
    .main-doctors__item {
        -ms-flex-preferred-size: calc((100% - 40px) / 3);
            flex-basis: calc((100% - 40px) / 3);
    }
}

@media (max-width: 900px) {
    .main-doctors__item {
        -ms-flex-preferred-size: calc((100% - 20px) / 2);
            flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .main-doctors__item {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    }
}
/* doctor */
.doctor__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    gap: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 30px;
}

.doctor__wrapper {
    padding: 30px;
    border-radius: 10px;
    background-color: #F5F7FA;
}

.doctor__picture {
    width: 100%;
    max-width: 370px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.doctor__picture img {
    border-radius: 5px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.doctor__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    color: #333;
}

.doctor__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.doctor__elem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 2px 15px;
    border-left: 2px solid #E24247;
}

.doctor__elem span {
    font-weight: 700;
}

.doctor__bio {
    margin-bottom: 10px;
}

.doctor__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.doctors__cost {
    padding: 15px 20px;
    color: #13569D;
    font-size: 14px;
    line-height: 1;
    border: 1px solid #13569D;
    border-radius: 2px;
}

/* doctor media */
@media (max-width: 840px) {
    .doctor__bio {
        margin-bottom: 0;
    }
}

@media (max-width: 700px) {
    .doctor__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .page-intro_doctor {
        margin-bottom: 40px;
    }

    .doctors__picture {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .doctors__picture img {
        width: auto;
        border-radius: 12px;
    }
}

@media (max-width: 450px) {
    .doctor__elem {
        width: 100%;
    }

    .doctor__btn {
        width: 100%;
    }
}
/* graffic */
.doctor__graffic {
    padding: 20px;
    border-radius: 5px;
    background-color: #fff;
}

.doctor__graffic-title {
    font-weight: 700;
    margin-bottom: 15px;
}

.doctor__graffic ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}

.doctor__graffic-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
}

.doctor__graffic-item:nth-child(odd) {
    background-color: rgba(28, 116, 188, 0.1215686275);
}

.doctor__graffic-item:nth-child(even) {
    background-color: #F5F7FA;
}

.doctor__graffic-item span {
    font-weight: 500;
    font-size: 18px;
}

/* doctor media */
@media (max-width: 840px) {
    .doctor__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .doctor__picture {
        max-width: 272px;
    }

    .doctor__graffic ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        white-space: nowrap;
    }

    .doctor__graffic-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 15px 10px;
    }

    .doctor__top {
        gap: 10px;
    }
}

@media (max-width: 550px) {
    .doctors__cost {
        width: 100%;
        text-align: center;
    }

    .doctor__wrapper {
        padding: 20px 10px;
    }
}
/* scientific */
.scientific__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.scientific__item {
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
    padding-left: 30px;
    position: relative;
}

.scientific__item::before {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url("/netcat_template/redesign/assets/img/icons/microscope.svg") center center no-repeat;
    position: absolute;
    left: 0;
    top: 5px;
}

@media (max-width: 840px) {
    .scientific__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 15px;
    }
}
/* reviews */
.reviews__wrapper {
    padding: 10px 0;
}

.reviews__inner {
    padding: 0 5px;
}

.reviews__item {
    padding: 30px;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
}

.reviews__name {
    line-height: 1.3;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #E24247;
}

.reviews__container {
    padding: 0;
    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;
}

.reviews__container > * {
    padding: 0 10px;
}

.reviews__container > .reviews__btn {
    padding: 15px 30px;
    margin-top: 20px;
}

.reviews__pagination {
    margin-top: 20px;
}

/* reviews media */
@media (max-width: 550px) {
    .reviews__name {
        font-size: 20px;
        padding-bottom: 8px;
    }

    .reviews__item {
        padding: 20px;
        gap: 15px;
    }
}
/* main-reviews */
.main-reviews__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}

.main-reviews__item {
    -ms-flex-preferred-size: calc((100% - 40px) / 3);
        flex-basis: calc((100% - 40px) / 3);
}

.main-reviews__btn {
    margin: 40px auto 0;
}

/* main-reviews media */
@media (max-width: 950px) {
    .main-reviews__item {
        -ms-flex-preferred-size: calc((100% - 20px) / 2);
            flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .main-reviews__item {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    }
}
/* price */
.price__title {
    margin-bottom: 20px;
}

.price__btn::before {
    background: #01539C;
}

.price__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px;
    border-radius: 2px;
    -webkit-box-shadow: 0px 5px 35px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 5px 35px rgba(0, 0, 0, 0.1);
}

.price__table {
    display: block;
}

.price__head {
    text-align: left;
    width: 100%;
    display: block;
    background-color: #F2F2F2;
    color: #555;
}

.price__head th {
    padding: 10px 20px;
    display: block;
}

.price__body {
    display: block;
}

.price__body td {
    display: block;
    border-spacing: 0;
}

.price__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px transparent solid;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.price__item:hover {
    border-bottom-color: #01539c;
}

.price__name {
    width: 100%;
    max-width: 700px;
}

.price__cost {
    white-space: nowrap;
}

@media (max-width: 1023px) {
    .price__item {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 5px;
        padding-top: 15px;
    }

    .price__name {
        max-width: 100%;
        font-weight: 600;
    }

    .price__body {
        padding-bottom: 15px;
    }

    .price__inner {
        padding: 15px;
    }

    .price__head th {
        padding: 10px;
        font-weight: 600;
        font-size: 16px;
    }
}
/* faq */
.faq__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.faq__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
}

.faq__item {
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 10px rgba(19, 85, 156, 0.1);
            box-shadow: 0px 0px 10px rgba(19, 85, 156, 0.1);
    border-radius: 5px;
}

.faq__item-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    padding-right: 50px;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 600;
    font-size: 18px;
    -webkit-transition: color 0.35s linear;
    transition: color 0.35s linear;
    cursor: pointer;
    position: relative;
}

.faq__item-title::after, .faq__item-title::before {
    display: block;
    content: "";
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background-color: #239AD9;
    position: absolute;
    top: 50%;
    right: 20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: background-color 0.35s linear;
    transition: background-color 0.35s linear;
}

.faq__item-title::after {
    width: 3px;
    height: 22px;
    right: 30px;
    -webkit-transition: height 0.2s linear, background-color 0.35s linear;
    transition: height 0.2s linear, background-color 0.35s linear;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
}

.faq__item-title.active::after {
    height: 0;
}

.faq__item-title:hover {
    color: #1C75BC;
}

.faq__text {
    padding: 20px 20px;
    background-color: #ECF5FA;
}

.faq__text > * {
    margin-bottom: 15px;
    padding: 0;
}

.faq__text > *:last-child {
    margin-bottom: 0;
}

.faq__text > ol, .faq__text > ul {
    padding-left: 20px;
    color: #13559C;
}

.faq__text > ul li {
    padding-left: 0;
}

.faq__text > ul li::before {
    display: none;
}

@media (max-width: 550px) {
    .faq__item-title {
        font-size: 16px;
        padding: 15px 45px 15px 15px;
    }

    .faq__item-title:before {
        width: 18px;
    }

    .faq__item-title:after {
        height: 18px;
        right: 28px;
    }

    .faq__inner {
        gap: 10px;
    }

    .faq__text {
        padding: 20px 15px;
    }

    .faq__text > ol, .faq__text > ul {
        padding-left: 10px;
        gap: 5px;
    }
}
/* certificates */
.certificates__picture {
    width: 100%;
    border-radius: 2px;
    overflow: hidden;
    max-width: 100%;
}

.certificates__picture img {
    min-height: 100px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
}

.certificates__container {
    padding: 0;
}

.certificates__container > * {
    padding: 0 10px;
}

/* certificates media */
/* main-certificates */
.main-certificates__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}

.main-certificates__item {
    -ms-flex-preferred-size: calc((100% - 60px) / 4);
        flex-basis: calc((100% - 60px) / 4);
}

/* main-certificates media */
@media (max-width: 1080px) {
    .main-certificates__item {
        -ms-flex-preferred-size: calc((100% - 40px) / 3);
            flex-basis: calc((100% - 40px) / 3);
    }
}

@media (max-width: 750px) {
    .main-certificates__item {
        -ms-flex-preferred-size: calc((100% - 20px) / 2);
            flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 450px) {
    .main-certificates__picture {
        max-height: none;
        min-height: auto;
    }

    .main-certificates__picture img {
        max-height: none;
        min-height: auto;
        width: auto;
        margin: 0 auto;
    }

    .main-certificates__item {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    }
}
/* articles */
.articles__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}

.articles__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding: 20px;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    -ms-flex-preferred-size: calc((100% - 40px) / 3);
        flex-basis: calc((100% - 40px) / 3);
    text-align: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.articles__item > * {
    position: relative;
    z-index: 2;
}

.articles__item::before {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
    -webkit-transition: -webkit-clip-path 0.5s linear;
    transition: -webkit-clip-path 0.5s linear;
    transition: clip-path 0.5s linear;
    transition: clip-path 0.5s linear, -webkit-clip-path 0.5s linear;
    -webkit-clip-path: circle(0 at 0% 100%);
            clip-path: circle(0 at 0% 100%);
    background-color: #1C75BC;
}

.articles__item:hover::before {
    -webkit-clip-path: circle(100%);
            clip-path: circle(100%);
}

.articles__item:hover .articles__name {
    color: #fff;
}

.articles__name {
    -webkit-transition: color 0.3s linear;
    transition: color 0.3s linear;
}

.articles__picture {
    max-height: 220px;
    min-height: 220px;
    border-radius: 12px;
    overflow: hidden;
}

.articles__picture img {
    max-height: 220px;
    min-height: 220px;
    border-radius: 12px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
}

/* articles media */
@media (max-width: 1023px) {
    .articles__item {
        -ms-flex-preferred-size: calc((100% - 20px) / 2);
            flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .articles__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .articles__item {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    }
}

.article__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 30px;
}

.article__title {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.article__picture {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.article__picture img {
    border-radius: 12px;
}

.navigation__title_article {
    background-color: transparent;
    padding: 0;
    font-weight: 500;
    font-size: 22px;
}

@media (max-width: 1023px) {
    .article__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .article__item {
        display: contents;
    }

    .article__title {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
    }

    .navigation_article {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        width: 100%;
    }

    .article__picture {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
    }
}

@media (max-width: 600px) {
    .article__title {
        font-size: 30px;
        margin-bottom: 0;
    }

    .article__picture {
        max-width: 100%;
    }
}

.navigation__title {
    background-color: #145da3;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
}

.navigation__item {
    background-color: #ebf8fd;
    border-radius: 0 0 10px 10px;
    padding: 20px 30px;
}

.navigation__item ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    color: #1b4655;
    counter-reset: list 0;
    -ms-flex-direction: column;
    flex-direction: column;
}

.navigation__item ul, .navigation__item ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.navigation__item ul li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navigation__item ul li a:hover {
    color: #ff192f;
}

.navigation__item ul li:before {
    background-color: #145da3;
    border-radius: 50%;
    content: "";
    display: block;
    height: 8px;
    width: 8px;
}

.navigation__item ul li.title-h2 {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-weight: 700;
    padding-left: 0;
}

.navigation__item ul li.title-h2:first-child {
    margin-top: 0;
}

.navigation__item ul li.title-h2:before {
    background-color: transparent;
    border-radius: 0;
    content: counter(list) ".";
    counter-increment: list 1;
    display: block;
    height: auto;
    width: auto;
}

.navigation__item ul li.title-h3 {
    padding-left: 18px;
}

.navigation__item ul li.title-h4 {
    padding-left: 25px;
}

.navigation__item ul li.title-h5 {
    padding-left: 35px;
}

@media (max-width: 650px) {
    .navigation__item {
        padding: 15px;
    }

    .navigation__title {
        font-size: 16px;
        padding: 15px;
    }

    .navigation__item ul li.title-h3 {
        padding-left: 10px;
    }

    .navigation__item ul li.title-h4 {
        padding-left: 15px;
    }

    .navigation__item ul li.title-h5 {
        padding-left: 20px;
    }
}
/* education */
.education__list {
    margin-bottom: 35px;
}

.education__list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.education__list ul li {
    -ms-flex-preferred-size: calc(50% - 7.5px);
        flex-basis: calc(50% - 7.5px);
    padding-left: 30px;
    position: relative;
}

.education__list ul li::before {
    display: block;
    content: "";
    width: 20px;
    height: 16px;
    background: url("../img/icons/book.svg") center center no-repeat;
    position: absolute;
    left: 0;
    top: 5px;
}

.education__picture {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.education__picture img {
    min-height: 270px;
    max-height: 270px;
    -o-object-fit: cover;
       object-fit: cover;
    width: auto;
}

/* education media */
@media (min-width: 951px) {
    .education__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 30px;
    }

    .education__item {
        -ms-flex-preferred-size: calc((100% - 60px) / 3);
            flex-basis: calc((100% - 60px) / 3);
    }
}

@media (max-width: 600px) {
    .education__list {
        margin-bottom: 20px;
    }

    .education__list ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .education__container {
        padding: 0;
    }

    .education__container > * {
        padding: 0 10px;
    }
}
/* gallery */
.main-gallery__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
}

.main-gallery__item {
    -ms-flex-preferred-size: calc((100% - 40px) / 3);
        flex-basis: calc((100% - 40px) / 3);
}

/* gallery media */
@media (max-width: 900px) {
    .main-gallery__item {
        -ms-flex-preferred-size: calc((100% - 20px) / 2);
            flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .main-gallery__item {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    }
}
/* contact */
.contact {
    position: relative;
    padding: 215px 0;
}

.contact__container {
    position: relative;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.contact__map {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.contact__inner {
    padding: 40px;
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.contact__inner::before {
    display: block;
    content: "";
    width: 180px;
    height: 6px;
    background-color: #13559C;
}

.contact__title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
}

.contact__item p b {
    font-size: 18px;
    color: #333;
}

.contact__phone {
    color: #13559C;
    font-weight: 700;
    font-size: 20px;
    white-space: nowrap;
}

.contact__phone:hover {
    color: #E24247;
}

.contact__mail {
    font-size: 18px;
    color: #333;
    font-weight: 700;
}

.contact__mail:hover {
    color: #E24247;
}

.contact__phone-text {
    font-size: 14px;
}

/* contact media */
@media (max-width: 600px) {
    .contact {
        padding: 40px 0 290px;
    }

    .contact__container {
        width: 100%;
    }

    .contact__inner {
        width: 100%;
        padding: 20px;
        gap: 12px;
    }

    .contact__title {
        font-size: 22px;
        margin-bottom: 8px;
    }
}
/* footer */
.footer {
    background-color: #13559C;
    color: #fff;
    line-height: 1.3;
}

.footer__plashka {
    background-color: #00A6C0;
    padding: 15px 0;
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.plashka__text-footer span {
    padding: 3px 8px;
    border: 1px solid #fff;
    border-radius: 3px;
    margin-left: 3px;
}

.footer__wrapper {
    padding: 60px 0;
}

.footer__inner {
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    max-width: 600px;
}

.footer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.footer__list-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer__link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8549019608);
}

.footer__link a {
    position: relative;
}

.footer__link a::before {
    display: block;
    content: "";
    width: 0;
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    -webkit-transition: width 0.35s linear;
    transition: width 0.35s linear;
    background-color: #fff;
}

.footer__link a:hover {
    color: #fff;
}

.footer__link a:hover::before {
    width: 100%;
}

.footer__logo {
    max-width: 300px;
    margin-bottom: 5px;
}

.footer__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 450px;
}

.footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
}

.footer__info-title {
    font-size: 18px;
    font-weight: 700;
}

.footer__info-text {
    font-size: 14px;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
}

.footer__info-text:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.footer__info-text a {
    position: relative;
}

.footer__info-text a::before {
    display: block;
    content: "";
    width: 0;
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    -webkit-transition: width 0.35s linear;
    transition: width 0.35s linear;
    background-color: #fff;
}

.footer__info-text a:hover::before {
    width: 100%;
}

.footer__address {
    position: relative;
}

.footer__address::before {
    display: block;
    content: "";
    width: 0;
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    -webkit-transition: width 0.35s linear;
    transition: width 0.35s linear;
    background-color: #fff;
}

.footer__address:hover::before {
    width: 100%;
}

.footer__btn {
    font-weight: 400;
}

.footer__text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7176470588);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
}

/* footer media */
@media (max-width: 900px) {
    .footer__item {
        max-width: 350px;
    }
}

@media (max-width: 750px) {
    .footer__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .footer__item {
        max-width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .footer__info, .footer__btn {
        width: 100%;
    }

    .footer__info {
        gap: 10px;
    }

    .footer__info-text {
        padding-bottom: 10px;
    }

    .footer__logo {
        max-width: 190px;
    }

    .footer_nav {
        max-width: 100%;
    }
}

@media (max-width: 550px) {
    .plashka__text-footer {
        font-size: 14px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 5px;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .plashka__text-footer span {
        font-size: 16px;
    }

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

    .footer__list {
        gap: 6px;
    }
}

.popup {
    height: 100vh;
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
    width: 100%;
    z-index: 1000;
    -webkit-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.7);
}

.popup__body {
    width: 100%;
    min-height: 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;
    padding: 60px 15px 20px;
}

.popup.open {
    opacity: 1;
    pointer-events: all;
}

.popup__content {
    width: 100%;
    max-width: 450px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 6px;
    gap: 10px;
    padding: 40px;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    -webkit-transform: translateY(100vh);
            transform: translateY(100vh);
    text-align: center;
}

.popup.open .popup__content {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.popup__title {
    width: 100%;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: #13559C;
}

.popup__subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    display: block;
}

.popup__input {
    width: 100%;
    background-color: #F5F7F9;
    font-weight: 500;
    border-radius: 4px;
}

.popup__textarea {
    width: 100%;
    background-color: #F5F7F9;
    color: #A0A0A0;
    font-weight: 500;
    padding: 15px 25px;
    border-radius: 6px;
    min-height: 150px;
    max-height: 150px;
    overflow-y: auto;
}

.popup__textarea::-webkit-input-placeholder {
    color: #A0A0A0;
}

.popup__textarea::-moz-placeholder {
    color: #A0A0A0;
}

.popup__textarea:-ms-input-placeholder {
    color: #A0A0A0;
}

.popup__textarea::-ms-input-placeholder {
    color: #A0A0A0;
}

.popup__textarea::placeholder {
    color: #A0A0A0;
}

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

.popup__form > * {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
}

.popup__btn {
    margin-top: 0;
}

.popup__btn {
    width: 100%;
}

.close-popup {
    cursor: pointer;
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 15px;
    right: 15px;
    z-index: 1000;
    width: 30px;
    height: 30px;
    -webkit-transition: -webkit-transform 0.4s linear;
    transition: -webkit-transform 0.4s linear;
    transition: transform 0.4s linear;
    transition: transform 0.4s linear, -webkit-transform 0.4s linear;
}

.close-popup img {
    height: 100%;
}

.close-popup:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

@media (max-width: 950px) {
    .popup__content {
        padding: 50px 20px 30px;
    }

    .popup__title {
        font-size: 26px;
    }

    .popup__subtitle {
        margin-bottom: 15px;
    }

    .form__politic_popup {
        margin-top: 0;
    }
}
.popup-regions__wiew {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.popup-content__regions {
    background-color: #f5f7fa;
    margin: 15% auto;
    padding: 20px;
    width: 945px;
}

.popup__title-section {
    font-weight: 400;
}

@media (max-width: 991px) {
    .popup-content__regions {
        width: 94%;
    }
}

.close-regions {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-regions:hover,
.close-regions:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#searchInputRegions {
    width: 100%;
    font-size: 16px;
    padding: 12px 20px 12px 40px;
    border: 1px solid #e5e5e5;
    margin-bottom: 12px;
}

#searchInputRegions::placeholder {
    color: #a0a0a0;
}

.regions__city_names {
    display: inline-block;
    font-size: 16px;
    color: #4e4e4e;
    margin: 0 15px 15px;
    text-decoration: underline;
    position: relative;
}

.regions__city_names:hover {
    text-decoration: underline;
}

.cityListRegions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    list-style: none;
    padding: 0;
}

.cityListRegions li {
    text-align: center;
}

.logo__text-bottom{
  font-size: 13px;
  color: rgba(28, 116, 188, 0.7254901961);
}
@media (max-width: 920px) {
  .logo__text-bottom{
      display: none;
  }
}
.footer__text-bottom{
  -ms-user-select: none; 
  -moz-user-select: none; 
  -webkit-user-select: none; 
  user-select: none; 
}

.price__head .price__head-th{
    display: none;
}

.none {
    padding-top: 60px;
}
.none__title {
    margin: 0 auto 30px;
    font-size: 60px;
    background: linear-gradient(96.24deg, #13569D 0%, #2298D7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0B2349;
    text-align: center;
}
.none__subtitle {
    font-size: 24px;
    text-align: center;
    margin: 0 auto;

}
.none__subtitle a {
    color: #2298D7;
    font-weight: 700;
}
.none__subtitle a:hover {
    color: #13569D;
}

.text__content blockquote {
    background-color: #ebf8fd;
    padding: 20px;
    color: #1b4c6b;
}
.text__content:not(:last-child) {
    margin-bottom: 20px;
}

.cities_list{
    display: block;
    column-count: 4;
    padding-left: 85px;
}

.cities_title{
    text-align:center;
    margin-bottom: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
  .cities_list{
    display: block;
    column-count: 3;
    padding-left: 5px;
  }
  .сities_elements{
      margin: 0 0 10px;
      font-size: 14px;
  }
  .cities_title{
    margin-top: -90px;
}
}

.cheking-container {
  display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.anchor__title {
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  color: #333;
}

.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  padding-block-start: 15px;
  padding-inline-start: 15px;
  gap: 12px;
  flex-wrap: wrap;
  max-height: 360px;
}

.navigation__list .navigation__list-item {
  padding-left: 15px;
  position: relative;
}

.navigation__list .navigation__list-item::before {
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  top: 7px;
  border-radius: 50%;
  background-color: #13559C;
}

@media screen and (max-width: 1024px) {
  .navigation__title {
    font-size: 30px;
  }
  .main {
    margin-block-start: 150px;
  }
}

@media screen and (max-width: 594px) {
  .main {
    margin-block-start: 208px;
  }
}

@media screen and (max-width: 550px) {
  .main {
    margin-block-start: 104px;
  }
}


@media screen and (max-width: 426px) {
  .main {
    margin-block-start: 154px;
  }
}

@media screen and (max-width: 376px) {
  .main {
    margin-block-start: 146px;
  }
}

@media screen and (max-width: 750px) {
  .navigation__list {
    max-height: none;
  }
}

@media screen and (max-width: 550px) {
  .navigation__title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

.new_vidjet {
    width: 44px;
    height: 44px;
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 999999;
}

.new_vidjet__wrap {
    position: relative;
    width: 44px;
    height: 44px;
}

.new_vidjet__hidden {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(150%, -115%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: 0.5s ease;
}

.new_vidjet__hidden.active {
    transform: translatey(-115%);
}

.new_vidjet__btn.new_vidjet__btn--item {
    width: 44px;
    height: 44px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 100%;
}

.new_vidjet__btn.new_vidjet__btn--item.new_vidjet__btn--tg {
    background-color: white;
}

.new_vidjet__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    width: 230px;
    background: linear-gradient(90deg, rgba(19, 85, 156, 1) 0%, rgba(35, 154, 217, 1) 100%);
    border-radius: 20px;
    padding: 5px 10px;
    color: white;
    cursor: pointer;
    transition: 0.5s ease;
}

.new_vidjet__item:hover {
    background: linear-gradient(90deg, rgba(35, 154, 217, 1) 0%, rgba(19, 85, 156, 1) 100%);
}

.new_vidjet__item span {
    font-size: 16px;
    font-weight: 600;
    font-family: 'ProximaNova';
}

.new_vidjet__visible {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    background: linear-gradient(90deg, rgba(19, 85, 156, 1) 0%, rgba(35, 154, 217, 1) 100%);
    padding: 10px;
    border-radius: 100%;
}

.new_vidjet__visible:hover::before {
    width: 44px;
    height: 44px;
    border-color: #baccdf;
}

.new_vidjet__visible.active::before {
    width: 44px;
    height: 44px;
    border-color: #baccdf;
}

.new_vidjet__visible::before {
    content: "";
    width: 64px;
    height: 64px;
    position: absolute;
    border: 1px rgba(19, 85, 156, 1) solid;
    border-radius: 100%;
    transition: 0.3s ease;
}

.new_vidjet__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
}

.new_vidjet__close.active {
    z-index: 2;
    opacity: 1;
}

.new_vidjet__close svg {
    width: 44px;
    height: 44px;
    padding: 15px;
    background-color: #baccdf;
    border-radius: 100%;
}

.header__max-link{
    order: 2;
    width: 40px;
    height: 40px;
}

.header__max-link img{
    width: 100%;
    height: 100%;
}
button.header__social-link.social__link {
    border-radius: 50%;
    width: 34px;
    height: 34px;
    padding: 0;
    display: flex;
}

.header__max-link {
    padding-top: 3px;
}
@media (max-width: 600px) {
    .header__max-link img {
        max-width: 34px;
    }
}

.reviews__stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
