:root {
    --main_margin: 10.5vw;
    --main_wrap: 0 var(--main_margin);
    --gray: #F2F3F7;
    --green: #52B147;
    --black: #323C55;
    --footer_bg: #FFFFFF;
    --filter_icons: invert(100%) contrast(400%);
    --main_indent-top: 120px;
}

* {
    font-family: 'Gilroy';
    font-style: normal;
    font-weight: normal;
    color: var(--black);
    text-decoration: none;
    outline: none;
    margin: 0;
    padding: 0;
    border: none;
}

html {
    font-size: 20px;
}

html.big_text {
    font-size: 24px;
}

body.grayscale>* {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
}

section>div:not(.headPage_wrap),
.swiper-slide_content {
    margin: var(--main_wrap);
    display: flex;
    flex-direction: column;
}

.menu {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    --color_line: #FFFFFF;
    --color_text: #FFFFFF;
}

.menu_wrap-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    position: relative;
}

.menu_wrap__contact {
    display: flex;
}

.menu_wrap__contact a {
    margin-right: 10px;
}

.menu_wrap__contact a:last-child {
    margin-right: 0;
}

.menu_wrap>.menu_wrap-row:first-child {
    margin-bottom: 23px;
}

.menu_wrap>.menu_wrap-row:first-child::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: -13px;
    opacity: 0.2;
    background-color: var(--color_line);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.menu_wrap-row a {
    color: var(--color_text);
}

.menu_wrap__logo {
    margin-right: 63px;
    transition: ease .1s;
    -webkit-transition: ease .1s;
    -moz-transition: ease .1s;
    -ms-transition: ease .1s;
    -o-transition: ease .1s;
}

.menu_wrap__links-main {
    display: grid;
    row-gap: 40px;
    grid-template-columns: repeat(3, auto);
    margin-right: auto;
    align-items: center;
    column-gap: 40px;
}

.menu_wrap__links-main a {
    opacity: 0.5;
    font-weight: 600;
    font-size: 0.6rem;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.menu_wrap__links-main a.active {
    opacity: 1;
}

.menu_wrap-row .menu-phone {
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 21px;
}

.menu_wrap__links-extra {
    --wrap_links: 17.5px;
    display: flex;
    position: relative;
}

.menu_wrap__links-extra_wrap {
    display: flex;
    margin: auto calc(-1 * var(--wrap_links));
}

.menu_wrap__links-extra_wrap>a,
.menu_wrap__links-extra_wrap .dropmenu_button {
    margin: 0 var(--wrap_links);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.6rem;
    line-height: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: .3s;
}

.dropmenu_list a:hover,
.menu_wrap__links-extra_wrap>a:hover {
    opacity: .6;
}

.dropmenu {
    position: relative;
    display: flex;
    margin: auto;
}

.dropmenu_wrap {
    position: absolute;
    z-index: 11;
    top: 12px;
    width: max-content;
    padding-top: 28px;
    opacity: 0;
    visibility: hidden;
    /* overflow: hidden; */
}

.dropmenu_list {
    display: grid;
    row-gap: 20px;
    padding: 20px 28px;
    background-color: #fff;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropmenu_list a {
    font-weight: 600;
    font-size: 0.6rem;
    line-height: 20px;
    color: var(--black);
    width: fit-content;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: .3s;
}

.dropmenu_button:hover+.dropmenu_wrap,
.dropmenu_wrap:hover {
    opacity: 1;
    visibility: visible;
}

.menu_wrap__links-extra_help {
    margin-left: 35px;
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 41px;
}

.menu_wrap__links-extra_help a,
.color_chema img,
.font_chema p {
    cursor: pointer;
}

.menu_wrap__links-open_mobile>img,
.menu_wrap__links-extra_help a>img {
    filter: var(--filter_icons);
    -webkit-filter: var(--filter_icons);
}

.menu_wrap__links-open_mobile {
    display: none;
    cursor: pointer;
    order: 3;
}

.dropmenu_list_row {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    align-items: center;
}

.dropmenu_list_row>p {
    font-weight: 600;
    font-size: 0.6rem;
    line-height: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
}

.color_chema,
.font_chema {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px;
    align-items: center;
}

.color_chema--active {
    border: 5px solid var(--green);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.font_chema p {
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 20px;
    letter-spacing: 1.5px;
    color: var(--black);
}

.font_chema p:last-child {
    font-size: 1.1rem;
    line-height: 24px;
}

.font_chema p.font_chema--active {
    color: var(--green);
}

.search-box {
    position: absolute;
    width: 100%;
    display: flex;
    top: -11.5px;
    opacity: 0;
    visibility: hidden;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.menu_wrap__links-extra--show_search>.search-box {
    opacity: 1;
    visibility: visible;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.menu_wrap__links-extra--show_search>.menu_wrap__links-extra_wrap,
.menu_wrap__links-extra--show_search>.menu_wrap__links-extra_help {
    opacity: 0;
    visibility: hidden;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.search-box__input {
    display: flex;
    width: 100%;
    position: relative;
    margin-right: 15px;
}

.search-box__input input {
    width: 100%;
    padding: 11px 32px 10px 47px;
    background-color: var(--gray);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 21px;
    height: max-content;
    color: var(--black);
    border: 1px solid #D7D9DB;
}

/* убирает крестик в поле поиска */
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
    display: none;
}

.search-box__input input::placeholder {
    opacity: 0.7;
}

.search-box__input-decoration {
    position: absolute;
    left: 15px;
    top: 14px;
}

.search-hide {
    position: absolute;
    right: 15px;
    top: 13px;
    cursor: pointer;
}

.default_input-green {
    background-color: var(--green);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 19px;
    color: #FFFFFF;
    padding: 12px 20px;
    cursor: pointer;
}

.menu_wrap__buttons {
    display: flex;
    grid-template-columns: auto auto;
    gap: 15px;
    margin-left: auto;
}

.menu-mobil_wrap__buttons a,
.menu_wrap__buttons a {
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 19px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: flex;
    align-items: center;
    text-transform: none;
    justify-content: center;
}

.menu_wrap__buttons-enter {
    color: var(--color_text, var(--black));
    border: 2px solid var(--color_text, var(--gray));
    padding: 10px 18px;
}

.footer_wrap__contacts_buttons-enter::before,
.menu_wrap__buttons-request::before {
    content: "";
    filter: var(--filter_icons);
    -webkit-filter: var(--filter_icons);
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background-image: url('../icons/profile.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.menu_wrap__buttons-request::before {
    --filter_icons: invert(100%) contrast(400%);
}

.menu_wrap__buttons-request {
    color: #fff !important;
    background-color: var(--black);
    padding: 12px 20px;
}

.menu_wrap__buttons-request.green {
    background: var(--green);
}

.headPage {
    --color_text: #FFFFFF;
}

.headPage_wrap {
    height: 626px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
}

.headPage_wrap.about {
    height: 450px;
}


.swiper_plug,
.mainSwaper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.swiper-pagination-bullet {
    background: #FFFFFF;
    border-radius: 10px;
    height: 5px;
    width: 50px;
    opacity: 1;
    position: relative;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet-active~.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, .3);
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
}

.swiper-pagination {
    --progress_bar: 0%;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) var(--progress_bar), rgba(255, 255, 255, 0.3) var(--progress_bar));
}

.headPage .swiper-slide_content {
    display: flex;
    flex-direction: row;
    z-index: 9;
    background-color: transparent;
    height: 100%;
}

.swiper-slide_content>* {
    z-index: 9;
}

.swiper-slide_circle {
    z-index: 9;
    min-width: 490px;
    height: 370px;
    overflow: hidden;
    margin-top: 164px;
}

.swiper-slide_circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.swiper-slide_bg {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-block {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
}
.video-block video {
    width: 100%;
}

.swiper-slide_bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 8;
}

h1 {
    font-weight: 700;
    font-size: 3.0rem;
    line-height: 70px;
    color: var(--color_text);
}

.swiper-slide_text {
    margin: auto 0;
}

.mainSwaper .swiper-navigation {
    display: grid;
    grid-template-columns: 50px 50px;
    column-gap: 10px;
    position: absolute;
    right: var(--main_margin);
    bottom: 25px;
}

.mainSwaper .swiper-button-prev,
.mainSwaper .swiper-button-next {
    position: unset;
}

.mainSwaper .swiper-button-prev,
.mainSwaper .swiper-button-next,
.slider-block .swiper-button-prev,
.slider-block .swiper-button-next {
    background-color: #fff;
    width: 50px;
    height: 50px;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    opacity: .5;
    user-select: none;
}

.mainSwaper .swiper-button-prev:active,
.mainSwaper .swiper-button-next:active,
.slider-block .swiper-button-prev:active,
.slider-block .swiper-button-next:active {
    opacity: 1;
}

.mainSwaper .swiper-button-prev img,
.slider-block .swiper-button-prev img {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.mainSwaper .swiper-button-prev::after,
.mainSwaper .swiper-button-next::after,
.slider-block .swiper-button-prev::after,
.slider-block .swiper-button-next::after  {
    content: none;
}


.swiper-slide_text {
    display: flex;
    flex-direction: column;
}

.swiper-slide_text_button {
    display: flex;
    border-radius: 10px;
    margin-right: auto;
    margin-top: 40px;
    overflow: hidden;
}

.swiper-slide_text_button a {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    font-size: 0.7rem;
    line-height: 20px;
    padding: 18px 35px;
    background-color: #00CCFE;
}

.questions_wrap h2 {
    margin-bottom: 34px;
}

.questions_wrap_content {
    display: grid;
    grid-template-columns: 418px auto;
    column-gap: 74px;
    position: relative;
}

.questions_wrap_content__img {
    position: sticky;
    top: 15px;
    display: flex;
    width: 418px;
    height: 418px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.questions_wrap_content__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.drop-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #D7D9DB;
    padding: 26px 0;
}

.drop-list-label {
    display: grid;
    grid-template-columns: auto 50px;
    column-gap: 40px;
    align-items: center;
    cursor: pointer;
}

.drop-list-label p {
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 36px;
}

.drop-list-label_icon {
    display: flex;
    width: 50px;
    height: 50px;
    background-color: #fff;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: relative;
    justify-self: flex-end;
}

.drop-list-label_icon::before {
    content: "";
    width: 1.85px;
    height: 12px;
    position: absolute;
    background-color: var(--black);
    left: calc(50% - 0.925px);
    top: calc(50% - 6px);
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.drop-list-label_icon--show::before {
    transition: ease .3s;
    opacity: 0;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.drop-list-label_icon::after {
    content: "";
    height: 1.85px;
    width: 12px;
    position: absolute;
    background-color: var(--black);
    top: calc(50% - 0.925px);
    left: calc(50% - 6px);
}

.drop-list-content {
    width: 100% !important;
    margin-top: 15px;
}

.drop-list-content a {
    color: var(--green);
}

.drop-list-content p {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 26px;
    margin-bottom: 10px;
}

.drop-list-content p a {
    color: var(--green);
}

h3 {
    font-weight: 600;
    font-size: 1.7rem;
    line-height: 41px;
    margin-bottom: 50px;
}

.default_button-green,
.btn-more {
    display: flex;
    width: max-content;
    background-color: var(--green);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    align-self: flex-end;
    float: right;
    margin-top: 30px;
}

.default_button-green *,
.btn-more{
    font-weight: 800;
    font-size: 0.7rem;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 18px 32px;
    color: #fff;
}

.newsList_wrap .btn-more {
    width: auto;
    margin-top: 25px;
    cursor: pointer;
    float: initial;
}

.about_wrap {
    padding-top: 36px;
}

.about_wrap_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.card-about {
    display: flex;
    flex-direction: column;
    padding: 35px 36px;
    background-color: var(--gray);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.card-about_img {
    display: flex;
    width: 80px;
    height: 80px;
    background-color: var(--green);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    justify-content: center;
    margin-bottom: 35px;
}

.card-about_img img {
    object-fit: contain;
}

.card-about_text {
    display: flex;
    flex-direction: column;
}

.card-about span {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 36px;
    margin-bottom: 20px;
}

.card-about p {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 30px;
    opacity: .7;
}

.news {
    margin-top: 65px;
    background-color: var(--gray);
}

.news_wrap {
    padding-top: 80px;
}

.news_wrap_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minmax(333px, 1fr);
    gap: 30px;
    padding-bottom: 80px;
    background-color: var(--gray);
}

.modal-video {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #10131ae3;
    top: 0;
    z-index: 999;
    display: none;
}

.modal-video .modal-video__content{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    align-content: center;
}

.modal-video .modal-video__block {
    position: relative;
}

.modal-video .modal-video__content button {
    padding: 10px;
    border-radius: 50%;
    position: absolute;
    right: -40px;
    top: -40px;
    cursor: pointer;
}

body.fixed {
    overflow: hidden;
}
.card-img {
    display: flex;
    flex-direction: column;
    /* padding: 30px 25px; */
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    --color_text: var(--black);
    --color_tags: var(--green);
    cursor: pointer;
    order: 4;
    overflow: hidden;
}

.card-img img {
    object-fit: cover;
    height: 100%;
}
  

.card-news {
    display: flex;
    flex-direction: column;
    /* padding: 30px 25px; */
    background-color: #fff;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    --color_text: var(--black);
    --color_tags: var(--green);
    cursor: pointer;
    order: 4;
    overflow: hidden;
    transition: .3s;
}

.card-news .card-news__content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
}

.card-news_content>*,
.card-news>* {
    color: var(--color_text);
}

.card-news_date {
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 102.4%;
    opacity: 0.6;
    margin-bottom: 15px;
    color: inherit;
}

.card-news_title {
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 36px;
    margin-bottom: 15px;
    color: inherit;
}

.card-news p {
    font-weight: 500;
    font-size: 1rem;
    line-height: 30px;
    opacity: 0.6;
    margin-bottom: 23px;
    color: inherit;
}

.card-news_tags {
    display: flex;
    margin-top: auto;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-bottom: -5px;
}

.card-news_tags>span {
    border: 1px solid var(--color_tags);
    padding: 4px 9px;
    color: var(--color_tags);
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.card-news--plug {
    order: 2;
    cursor: default;
}

.card-news--plug.card-news .card-news__content {
    height: 100%;
}

.card-news--plug_button {
    width: max-content;
    margin-top: auto;
    background: rgba(0, 204, 254, 0.1);
    display: flex;
    border-radius: 84px;
    -webkit-border-radius: 84px;
    -moz-border-radius: 84px;
    -ms-border-radius: 84px;
    -o-border-radius: 84px;
}

.card-news--plug_button a {
    font-weight: 800;
    font-size: 0.7rem;
    line-height: 20px;
    color: #00CCFE;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 18px 35px;
}

.card-news--with_img {
    order: 1;
    grid-column: 1/3;
    padding: 0;
    display: grid;
    grid-template-columns: 50% auto;
}

.card-news_img {
    display: flex;
    height: 100%;
}

.card-news_img img {
    object-fit: cover;
    width: 100%;
}

.card-news_content {
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
}

.card-news:not(.card-news--plug):hover {
    background-color: var(--green);
}

.card-news:not(.card-news--plug):hover .card-news__content {
    --color_tags: #fff;
    --color_text: #fff;
}

.card-news:not(.card-news--plug):hover {
    --color_tags: #fff;
    --color_text: #fff;
}

a.card-news.card-news--plug {
    cursor: pointer;
}

a.card-news.card-news--plug:hover .card-news_title {
    color: var(--green);
}

.wrap-numerically {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #D7D9DB;
    border-radius: 20px;
    justify-content: center;
}

.wrap-numerically>.wrap-numerically-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    background-color: #D7D9DB;
    width: 1px;
    height: calc(100% - 60px);
    top: 30px;
}

.wrap-numerically-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: center;
}

.wrap-numerically-item_wrap {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 5px 37px;
    max-width: 260px;
    margin: 0 auto;
    align-items: baseline;
}

.wrap-numerically-item-number {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 56px;
    color: var(--green);
    margin-right: 10px;
}

.wrap-numerically-item-name {
    font-weight: 500;
    font-size: 1.0rem;
    line-height: 24px;
    margin-right: auto;
}

.wrap-numerically-item p {
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 19px;
    width: 100%;
    
}

.footer {
    margin-top: 120px;
    --color_text: var(--black);
    --button-enter_bg: var(--gray);
    --filter_icons: none;
}

.footer>.footer_wrap {
    display: grid;
    grid-template-columns: 193px auto 243px;
    column-gap: 87px;
    padding-top: 50px;
    border-top: 1px solid #D7D9DB;
}

.footer_wrap__logo {
    display: flex;
    flex-direction: column;
}

.footer_wrap__logo__company {
    display: flex;
    width: 190px;
    height: 34px;
    margin-bottom: 27px;
}

.footer_wrap__logo__company img {
    object-fit: contain;
}

.footer_wrap__logo__company>.footer-logo-white {
    display: none;
}

.footer_wrap__logo__text {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
}

.footer_wrap__logo__text>* {
    font-weight: 400;
    font-size: 0.6rem;
    line-height: 14px;
    margin-right: 3px;
    margin-bottom: 10px;
    color: var(--color_text);
}

.footer_wrap__logo__text p::before {
    content: "\00A9";
    font-family: 'Gilroy';
    font-weight: 400;
    font-size: 0.6rem;
    line-height: 14px;
    margin-right: 3px;
}

.footer_wrap__logo__region {
    display: flex;
    width: 73px;
    height: 89.2px;
}

.footer_wrap__logo__region img {
    object-fit: contain;
}

.footer_wrap__links {
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-auto-rows: min-content;
    gap: 10px 88px;
}

.footer_wrap__links>a {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 21px;
    justify-self: baseline;
    padding: 5px 0;
    height: min-content;
    color: var(--color_text);
    transition: .3s;
}

.footer_wrap__links>a:hover {
    opacity: .6;
}

.footer_wrap__contacts {
    display: flex;
    flex-direction: column;
}

.footer_wrap__contacts-tel {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 39px;
    color: var(--green);
    width: max-content;
}

.footer_wrap__contacts-address {
    color: var(--color_text);
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 23px;
    margin-top: 10px;
    margin-left: auto;
}

.footer_wrap__contacts_buttons {
    display: grid;
    margin-top: 27px;
    gap: 15px;
    justify-items: flex-end;
}

.footer_wrap__contacts_buttons-enter {
    display: flex;
    align-items: center;
    width: min-content;
    padding: 12px 39.5px;
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 19px;
    color: var(--color_text);
    background-color: var(--button-enter_bg);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.footer_wrap__contacts_buttons-request {
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 19px;
    padding: 12px 20px;
    background-color: var(--black);
    color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.footer>.studio3387 {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding-bottom: 50px;
    margin-top: 15px;
}

.studio3387>p {
    color: var(--color_text);
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 19px;
}

.studio3387>a {
    color: var(--green);
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 19px;
    position: relative;
    display: flex;
    margin-left: 5px;
}

.studio3387>a::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    background-color: var(--green);
    width: 0;
    left: 50%;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.studio3387>a:hover::after {
    width: 100%;
    left: 0;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.menu-mobil {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 20;
    left: 100%;
    right: -100%;
    top: 0;
    transition: ease-out .3s;
    -webkit-transition: ease-out .3s;
    -moz-transition: ease-out .3s;
    -ms-transition: ease-out .3s;
    -o-transition: ease-out .3s;
}

.menu-mobil--active {
    left: 0;
    right: 0;
    transition: ease-out .3s;
    -webkit-transition: ease-out .3s;
    -moz-transition: ease-out .3s;
    -ms-transition: ease-out .3s;
    -o-transition: ease-out .3s;
}

.menu-mobil_wrap {
    display: flex;
    flex-direction: column;
    padding: 21px var(--main_margin);
    height: calc(100% - 42px);
}

.menu-mobil_wrap__exit {
    display: flex;
    margin-left: auto;
}

.menu-mobil_wrap__exit img {
    width: 23px;
    height: 22.32px;
    cursor: pointer;
}

.menu-mobil_wrap__content {
    display: flex;
    flex-direction: column;
    overflow: auto;
    width: 100%;
    margin-top: 12px;
}

.menu-mobil-content__main_links {
    display: grid;
    row-gap: 25px;
    padding-bottom: 20px;
    position: relative;
}

.menu-mobil-content__main_links a {
    display: flex;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 24px;
    letter-spacing: 0.01em;
    width: max-content;
}

.menu-mobil-content__main_links::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    opacity: .2;
    background-color: #323C55;
    bottom: 0;
}

.menu-mobil-content__links {
    display: grid;
    row-gap: 20px;
    margin-top: 20px;
}

.menu-mobil-content__links a {
    display: flex;
    font-weight: 400;
    font-size: 0.85rem;
    line-height: 24px;
    letter-spacing: 0.01em;
    width: max-content;
}

.menu-mobil_wrap__buttons {
    display: flex;
    grid-template-columns: repeat(2, auto);
    gap: 15px 15px;
    margin-top: auto;
    padding-top: 8px;
    flex-direction: column;
}

.menu-mobil-content__links .menu-phone {
    color: var(--green);
    font-weight: 500;
    font-size: 1.0rem;
    line-height: 24px;
    margin-bottom: 58px;
}

.footer_wrap__links-main {
    display: none;
}

.footer_wrap__contacts_links {
    display: flex;
    flex-direction: column;
}

.swiper-slide_text p {
    margin-top: 35px;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 36px;
    color: var(--color_text);
}

.swiper-slide_text p a {
    color: var(--green)
}

.mainSwaper .swiper-slide--black_style,
.headPage-black_style,
.menu-black_style {
    --color_line: var(--black);
    --color_text: var(--black);
    --filter_icons: none;
}

.menu_wrap__links-main a:hover {
    opacity: 1;
}

.documents>.documents_wrap {
    flex-direction: row;
}

.documents>.documents_wrap {
    flex-direction: row;
    position: relative;
    padding-top: var(--main_indent-top);
}

.documents-menu {
    margin-right: 132px;
    margin-bottom: auto;
    min-width: 317px;
    display: flex;
    flex-direction: column;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.documents-menu_nav {
    min-width: 400px;
    margin-top: 58px;
    display: grid;
    /* gap: 25px; */
    position: relative;
    -webkit-box-shadow: 0 5px 15px rgba(1,0,61,.07);
    box-shadow: 0 5px 15px rgba(1,0,61,.07);
    padding: 10px 0;
    background: #fff;

}

.documents-menu_nav>* {
    display: flex;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 21px;
    color: var(--black);
    align-items: center;
    margin-right: auto;
    position: relative;
    flex-wrap: wrap;
    padding: 10px 20px;
}

.documents-menu_nav a,
.documents-menu_nav span {
    font-size: 15px;
    max-width: 350px;
    font-weight: 500;
    opacity: 0.7;
    transition: .3s;
}

.documents-menu_nav a:hover, 
.documents-menu_nav span:hover {
    opacity: 1;
}

.documents-menu_nav>*::before {
    content: "";
    width: 3px;
    height: 100%;
    margin-right: 10px;
    z-index: 3;
    position: absolute;
}

.documents-menu_nav span {
    cursor: pointer;
}

.documents-menu_nav .documents-menu_nav_link--active::before {
    width: 3px;
    height: 100%;
    background-color: #52b147;
    left: 0;
    position: absolute;
}

.documents-menu_nav_link--active a,
.documents-menu_nav_link--active span {
    font-weight: 600;
    opacity: 1;
}

.documents-menu_nav_link-years {
    display: none;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    margin-left: 51px;
}

.documents-menu_nav_link-years>span {
    display: flex;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 21px;
    margin-right: auto;
}

.documents-menu_nav_link--active .documents-menu_nav_link-years {
    display: grid;
}

.documents-menu_nav_link-years--active {
    color: var(--green);
    align-items: center;
}

.documents-menu_nav_link-years--active::before {
    content: "";
    width: 18px;
    height: 2px;
    margin-right: 10px;
    background-color: var(--green);
}

h4 {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 33px;
    letter-spacing: 1px;
    color: var(--black);
}

.documents_wrap__content {
    display: flex;
    flex-direction: column;
}

.documents_wrap__content>div:not(.documents_wrap__content__years-select) {
    display: none;
    row-gap: 60px;
}

.documents_wrap__content>.documents_wrap__content--active {
    display: grid !important;
}

.documents_wrap__content__text>p {
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 30px;
    margin-top: 25px;
}

.documents_wrap__content__text p a {
    color: var(--green);
}

.documents_wrap__content__text ul,
.documents_wrap__content__text ol {
    list-style: none;
}

.documents_wrap__content__text ul li::before,
.documents_wrap__content__text ol li::before {
    color: var(--green);
    content: "•";
    padding-right: 10px;
    width: 5px;
    height: 5px;

}

.documents_wrap__content__text a {
    color: var(--green);
}

.documents_wrap__content__downloads {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.documents_wrap__content__downloads a {
    display: flex;
    padding: 30px 38px;
    border: 1px solid #D7D9DB;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    justify-content: space-between;
    align-items: center;
}

.documents_wrap__content__downloads a::after {
    content: url('../icons/download.svg');
}

.documents_wrap__content__img {
    width: 100%;
    height: 600px;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.documents_wrap__content__img img {
    object-fit: cover;
    width: 100%;
}

.documents_wrap__content__numerically {
    display: grid;
    row-gap: 30px;
}

.wrap-addition {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.addition-card {
    display: flex;
    background-color: var(--green);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 31px 24px;
}

.addition-card_img {
    display: flex;
    width: 100px;
    height: 100px;
    background: #76C56D;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-right: 22px;
}

.addition-card_img img {
    object-fit: contain;
    width: 48px;
    margin: auto 26px;
}

.addition-card p {
    font-weight: 600;
    font-size: 1.0rem;
    line-height: 24px;
    letter-spacing: 1px;
    color: #fff;
}

.documents_wrap__content__text-row {
    display: grid;
    grid-template-columns: 334px auto;
    gap: 30px;
}

.documents_wrap__content__text-row p {
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 30px;
}

.documents_wrap__content__video {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.documents_wrap__content__video video {
    width: 100%;
    height: 100%;
}

.documents_wrap__content__years-select {
    display: none;
    margin-bottom: 40px;
}

.documents_wrap__content__years-select select {
    width: 100%;
    height: 56px;
    background-color: #fff;
    border: 1px solid #D7D9DB;
    font-weight: 400;
    font-size: 0.8rem;
    line-height: 30px;
    appearance: none;
    padding: 0 18px;
    background-image: url('../icons/arrow-select.svg');
    background-repeat: no-repeat;
    background-position: top 23.5px right 18px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    cursor: pointer;
}

.headPage-overflow .headPage_wrap {
    height: max-content;
}

.headPage-overflow .swiper-slide_circle {
    display: none;
}

.headPage.headPage-overflow .swiper-slide_content {
    flex-direction: column;
}

.headPage.headPage-overflow .swiper-slide_bg {
    height: 626px;
}

.headPage.headPage-overflow .swiper_plug {
    height: 717px;
}

.headPage.headPage-overflow .swiper-slide_text {
    margin-bottom: 53px;
}

.headPage .headPage_content-out {
    display: grid;
    grid-template-columns: 309px auto;
    gap: 70px;
    padding: 30px 60px;
    z-index: 12;
    background-color: #fff;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    margin-bottom: 30px;
}

.headPage_content-out__img {
    display: flex;
    width: 100%;
    height: 309px;
    overflow: hidden;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.headPage_content-out__img img {
    object-fit: cover;
    width: 100%;
}

.headPage_content-out__text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.headPage_content-out__text span {
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 38px;
}

.headPage_content-out__text p {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 30px;
}

.managers_wrap {
    padding: calc(var(--main_indent-top) - 30px) 0;
    padding-bottom: 94px;
}

.managers_wrap_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 30px;
}

.card-manager {
    display: flex;
    flex-direction: column;
}

.card-manager_img {
    display: flex;
    width: 100%;
    height: 630px;
    border-radius: 10px;
    overflow: hidden;
}

.card-manager_img img {
    width: 100%;
    object-fit: cover;
}

.card-manager span {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 33px;
    margin-top: 25px;
}

.card-manager p {
    font-weight: 500;
    font-size: 1.0rem;
    line-height: 24px;
    color: #BEC1C2;
    margin-top: 10px;
}

section.after-menu>div {
    padding-top: 181px;
}

.table {
    margin-top: 40px;
}

.table.table_contact {
    overflow: auto;
}

.table.table_contact td {
    border: 1px solid #D7D9DB;
    padding: 10px;
}

.table .table-tbody {
    border: 1px solid #D7D9DB;
    border-radius: 10px;
}

.table .table-tbody .table-group {
    transition: .3s;
    cursor: pointer;
}

.table .table-tbody .table-group.header {
    position: sticky;
    top: 0;
    background: #fff;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.table .table-tbody .table-group:nth-child(even)  {
    background: #F2F3F7;
}

.table .table-tbody .table-group:not(.header):hover {
    background: #edf7ec;
}

/*.table .table-tbody .table-group .td {*/
/*    width: 50%;*/
/*}*/

.table .table-tbody .table-group .td {
    display: flex;
    align-items: center;
}

.table .table-tbody .table-group .td.row p {
    margin-right: 20px;
}

.table .table-tbody .table-group.header .td p {
    font-size: 14px;
    color: #BEC1C2;
}

.table .table-tbody .table-group:not(.header) .td p,
.table.table_contact td p {
    font-size: 16px;
    color: #323C55;
    font-weight: 500;
}

.table .table-tbody .table-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: min-content;
    gap: 10px 10px;
    padding: 22px;
    border-bottom: 1px solid #D7D9DB;
}

.table .table-tbody .table-group:last-child {
    border-bottom: none;
}

section.destroi-bottom>div {
    margin-bottom: -121px;
}

.jobs_wrap__content,
.newsList_wrap_content {
    margin: 40px calc(-1 * var(--main_margin)) 0;
    padding: 40px var(--main_margin) 120px;
    background-color: var(--gray);
}

.newsList_wrap_content__tabs {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
    margin-bottom: 60px;
    margin-right: calc(-1 * var(--main_margin));
    overflow-x: auto;
}

.newsList_wrap_content__tabs span {
    font-size: 0.9rem;
    line-height: 21px;
    opacity: 0.5;
    white-space: nowrap;
    cursor: pointer;
}

.newsList_wrap_content__tabs--active {
    padding: 9px 14px;
    border: 1px solid var(--green);
    color: var(--green);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.newsList_wrap_content__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.newsList_wrap_content__items .card-news {
    display: none;
}

.card-news:not(.card-news--with_img) img {
    height: 55%;
    object-fit: cover;
}

.newsList_wrap_content__items .card-news--show {
    display: flex;
}


.crumbs {
    margin-top: 161px;
}

.crumb_wrap_content {
    display: flex;
    width: 100%;
    overflow-x: auto;
    gap: 23px;
}

.crumb_wrap_content>* {
    font-weight: 600;
    font-size: 0.55rem;
    line-height: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .8;
    align-items: center;
    display: flex;
    position: relative;
    white-space: nowrap;
}

.crumb_wrap_content>span {
    font-weight: 600;
    font-size: 0.55rem;
    line-height: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .3;
}

.crumb_wrap_content>a::after {
    content: "";
    position: absolute;
    right: -13px;
    top: calc(50% - 1.5px);
    display: flex;
    width: 3px;
    height: 3px;
    background-color: var(--black);
    opacity: .8;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    cursor: default;
    pointer-events: none;
}

h2 {
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 48px;
    letter-spacing: 1px;
    word-break: break-word;
}

.newsPage>.newsPage_wrap {
    display: grid;
    grid-template-columns: auto 446px;
    gap: 109px;
    padding-top: 60px;
    position: relative;
}

.newsPage_wrap__content {
    display: flex;
    flex-direction: column;
}

.newsPage_wrap__content p a {
    color: var(--green);
    font-weight: 500;
}

.newsPage_wrap__content h2 {
    margin-bottom: 40px;
}

.newsPage_wrap__content>span {
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 102.4%;
    letter-spacing: 1px;
    color: #88919D;
    margin-bottom: 20px;
}

.newsPage_wrap__content__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin: 30px 0 55px;
}

.newsPage_wrap__content__tags span {
    padding: 5px 10px;
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 16px;
    border: 1px solid var(--green);
    color: var(--green);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.newsPage_wrap__content p {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 36px;
}

.newsPage_wrap__content__img {
    display: flex;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 40px;
}

.newsPage_wrap__content__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.newsPage_wrap__addNews {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 20px;
    margin-bottom: auto;
}

.newsPage_wrap__addNews>span {
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 26px;
}

.newsPage_wrap__addNews_news {
    display: grid;
    gap: 15px;
    margin-top: 40px;
}

.newsPage_wrap__addNews_news .card-news {
    padding: 0 0 20px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-bottom: 1px solid #D7D9DB;
}

.newsPage_wrap__addNews_news .card-news:last-child {
    border-bottom: none;
}

.newsPage_wrap__addNews_news .card-news_title {
    font-size: 1.0rem;
    line-height: 24px;
    transition: .3s;
}

.newsPage_wrap__addNews_news .card-news_tags,
.newsPage_wrap__addNews_news .card-news p {
    display: none;
}

.newsPage_wrap__addNews_news .card-news_date {
    order: 2;
    margin-bottom: 0;
}

.jobs_wrap__content {
    counter-reset: counterLines;
    display: grid;
    gap: 10px;
}

.card-job {
    padding: 30px 42px 30px 91px;
    background-color: #fff;
    border-radius: 10px;
}

.card-job__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.card-job__head::before {
    content: counter(counterLines);
    counter-increment: counterLines;
    position: absolute;
    left: -41px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 24px;
    opacity: .5;
}

.card-job_head__title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-job_head__title p {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 33px;
}

.card-job_head__title span {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 21px;
    opacity: 0.4;
}

.card-job_head__price {
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 26px;
    color: var(--green);
}

.card-job__content {
    display: flex;
    flex-direction: column;
    width: 100% !important;
}

.card-job__content span {
    font-weight: 500;
    font-size: 1.0rem;
    line-height: 24px;
}

.card-job__content__demand li,
.card-job__content p {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 24px;
    opacity: .7;
}

.card-job__content__description {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

.card-job__content__demand {
    display: flex;
    gap: 68px;
    margin-top: 40px;
}

.card-job__content__demand ul {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    list-style-position: outside;
    margin-left: 16px;
    gap: 10px;
}

.card-job__content__demand li::marker {
    font-size: 0.7rem;
}

.card-job__content .default_button-green {
    margin-top: 20px;
}

.card-job__content .default_button-green * {
    padding: 18px 55.5px;
}

.modal-job {
    z-index: 20;
    display: flex;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
    overflow: hidden;
}

.modal-job .modal-job_successful {
    display: none;
    right: 0;
}

.modal-job--show {
    opacity: 1;
    visibility: visible;
    position: fixed;
}

.modal-job--show .modal-job_wrap {
    right: 0;
}

.modal-job--submit .modal-job_wrap {
    display: none;
}

.modal-job--submit .modal-job_successful {
    display: flex;
}

.modal-job_successful,
.modal-job_wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 40px 40px 40px auto;
    z-index: 22;
    background-color: #fff;
    padding: 60px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    max-width: 400px;
    width: 100%;
    right: -100%;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
    overflow-y: auto;
}

.shadow {
    display: flex;
    background-color: var(--black);
    opacity: .5;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 21;
}

.modal-job_wrap__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.selection_daefault,
.input_daefault {
    position: relative;
    display: flex;
    width: 100%;
}

.input_daefault label {
    position: absolute;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 30px;
    left: 20px;
    top: 14px;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
    white-space: nowrap;
    cursor: text;
    pointer-events: none;
}

.selection_daefault select,
.input_daefault textarea,
.input_daefault input {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 30px;
    padding: 13px 19px;
    border: 1px solid #D7D9DB;
    border-radius: 5px;
    width: 100%;
    resize: none;
    height: max-content;
}

.input_daefault textarea:focus,
.input_daefault input:focus {
    border-color: var(--green);
}

.input_daefault textarea:not(:placeholder-shown)~label,
.input_daefault textarea:focus~label,
.input_daefault input:not(:placeholder-shown)~label,
.input_daefault input:focus~label {
    top: -15px;
    left: 10px;
    font-weight: 500;
    font-size: 0.7rem;
    line-height: 30px;
    color: var(--green);
    padding: 0 10px;
    background-color: #fff;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.input_daefault textarea:not(:focus, :placeholder-shown)~label,
.input_daefault input:not(:focus, :placeholder-shown)~label {
    color: #BEC1C2;
}

.input_file {
    background-color: #fff;
    overflow: hidden;
}

.input_file label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 30px;
    padding: 13px 19px;
    border: 1px dashed #D7D9DB;
    border-radius: 5px;
    white-space: nowrap;
}

.input_file label::before {
    content: url("../icons/clip.svg");
    margin-right: 10px;
}

.input_file label span.description {
        display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
    line-height: 8px;
}

.input_file input[type=file] {
    display: none;
}

.file-list {
    grid-column: span var(--count_col);
}

.upload-file {
    align-items: center;
    padding: 10px 0;
    position: relative;
    display: flex;
    margin-bottom: 10px;
}

.upload-file::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #d7d9db;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.upload-file p {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
    line-height: 19px;
}

.upload-file p::before {
    content: url('../icons/upload-doc.svg');
    margin-right: 15px;
}

.upload-file span {
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 19px;
    color: #BEC1C2;
    margin-left: 5px;
    white-space: nowrap;
    margin-right: 10px;
}

.upload-file_del {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
}

.upload-file_del button {
color: var(--black);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
}

.upload-file_del img {
    width: 12px;
    height: 12px;
    opacity: .5;
}

.modal-job_wrap__form button[type=submit] {
    margin-top: 15px;
}

button[type=submit] {
    cursor: pointer;
    border: none;
    background-color: var(--green);
    padding: 18px 0;
    font-weight: 800;
    font-size: 0.7rem;
    line-height: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

button[type=submit]:disabled {
    opacity: 0.2;
}

.modal-job_wrap>p {
    margin-top: 15px;
    font-weight: 400;
    font-size: 0.7rem;
    line-height: 18px;
    color: #88919D;
}

.modal-job_wrap>p>a {
    font-weight: 400;
    font-size: 0.7rem;
    line-height: 18px;
    color: var(--green);
}

.modal-job__close {
    display: flex;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    background-color: var(--gray);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-job__close img {
    width: 12px;
    height: 12px;
    opacity: .7;
}

.input_hidden {
    display: none;
}

.input_daefault .input-error {
    position: absolute;
    bottom: -20px;
    font-weight: 500;
    font-size: 0.65rem;
    line-height: 15px;
    color: #FF5756;
}

.ajax_form .input-error .error {
    color: #d9241c;
    font-size: 13px;
    z-index: 10;
    position: relative;
}

.modal-job_successful {
    align-items: center;
}

.modal-job_successful_img {
    width: 110px;
    height: 110px;
    margin-bottom: 30px;
}

.modal-job_successful p {
    margin-top: 20px 0;
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 28px;
    text-align: center;
    color: #88919D;
}

.modal-job_successful .default_button-green {
    align-self: center;
}

.policy_wrap {
    gap: 40px;
}

.policy_wrap__el h3 {
    margin-bottom: 25px;
}

.policy_wrap__el p {
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 26px;
}

.regulations_wrap>p,
.jobs_wrap>p {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 38px;
    letter-spacing: 1px;
    margin-top: 35px;
}

.regulations_wrap p img {
    width: auto;
    height: auto;
    object-fit: cover;
}

.regulations_wrap strong {
    font-weight: 600;
}

.documents-block {
    display: grid;
    grid-template-columns: max-content 1fr;
    /*gap: 240px;*/
    gap: 40px;
    margin-top: var(--main_indent-top);
}

.documents-block .documents-menu {
    margin-right: 0;
}

.documents-block .documents-menu_nav {
    margin-top: 0;
}

.documents-block_content h3 {
    margin-bottom: 35px;
}

.documents-block_content_items {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.card-document {
    position: relative;
    border: 1px solid #D7D9DB;
    display: flex;
    flex-direction: column;
    padding: 25px 60px 25px 25px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    justify-content: center;
}

.card-document::after {
    content: "";
    position: absolute;
    display: flex;
    right: 25px;
    background-image: url('../icons/download.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 23.25px;
    height: 23.26px;
}

.card-document span {
    font-weight: 600;
    font-size: 1.0rem;
    line-height: 30px;
    margin-right: 18px;
    max-width: 965px;
}

.card-document p {
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 30px;
    margin-top: 20px;
    margin-right: 18px;
    max-width: 965px;
}

.newsOnRow {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: max-content;
}

.rowImage_wrap_content {
    display: grid;
    grid-template-columns: 33.98% auto;
    gap: 62px;
    margin-top: 21px;
}

.slider-block .swiper {
    width: 100%;
    max-height: 800px;
    height:800px;
}

.slider-block .swiper .swiper-slide {
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.slider-block .swiper .swiper-slide img {
    width: 100%;
    object-fit: cover;
}

.rowImage:not(.after-menu):first-child .rowImage_wrap{
    padding-top: 50px;
}

.rowImage_wrap_content__img {
    display: flex;
    width: 100%;
    overflow: hidden;
    height: 451px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.rowImage_wrap_content__img img {
    object-fit: cover;
    width: 100%;
}

.rowImage_wrap_content__text {
    display: flex;
    margin-top: 30px;
    flex-direction: column;
    margin-bottom: auto;
    gap: 25px;
}

.rowImage_wrap_content__text p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 30px;
}

.rowImage_wrap_content__text p a {
    color: var(--green)
}

.rowImage_wrap_content__text h2 {
    font-weight: 500;
    margin-top: 32px;
}

.rowImage_wrap_content--reverse {
    grid-template-columns: auto 33.98%;
}

.rowImage_wrap_content--reverse .rowImage_wrap_content__text {
    order: 2;
}

.rowImage_wrap_content--reverse.swith {
    grid-template-columns: 35% auto;
}

.rowImage_wrap_content--reverse.swith .rowImage_wrap_content__text {
    order: 1;
}

.rowImage_wrap_content--reverse .rowImage_wrap_content__img {
    order: 1;
    height: 600px;
}

.video_wrap_content {
    height: 600px;
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    position: relative;
}

.video_wrap_content video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* ПОМЕНЯТЬ НА КАРТУ ---> */
.map_wrap_content {
    /* height: 735px; */
    overflow: hidden;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.map_wrap_content img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* <--- ПОМЕНЯТЬ НА КАРТУ */

.complaint {
    background-color: var(--gray);
    margin-top: var(--main_indent-top);
    padding-top: 60px;
}

.complaint_wrap_content {
    padding-bottom: 60px;
    background-color: var(--gray);
}

.complaint_wrap_content form {
    --count_col: 8;
    counter-reset: countEl;
    display: grid;
    grid-template-columns: repeat(var(--count_col), 1fr);
    gap: 29px;
    margin-top: 35px;
}

.complaint_wrap_content form .input_daefault {
    grid-column: span 2;
}

.complaint_wrap_content form .input_daefault:nth-child(5),
.complaint_wrap_content form .input_daefault:nth-child(6) {
    grid-column: span calc(var(--count_col) / 4 + 1);
}

.complaint_wrap_content form .input_file {
    grid-column: span calc(var(--count_col) / 2);
}

.complaint_wrap_content form button[type=submit] {
    grid-column: span 2;
}

.complaint_wrap_content form .form-btn p a {
    color: var(--green);
}
.complaint_wrap_content form .form-btn button {
    width: 300px;
    margin-top: 15px;
}

.complaint_wrap_content form .input-multiline,
.complaint_wrap_content form .form-btn{
    grid-column: span var(--count_col);
}

.complaint_wrap_content .input-multiline {
    grid-column: 1/calc(var(--count_col) + 1);
}

.complaint_wrap h3 {
    margin-bottom: 33px;
}

.complaint_wrap_content>p {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 38px;
    letter-spacing: 1px;
}

.input-multiline textarea {
    height: 116px;
}

.complaint_wrap_content .upload-file {
    grid-column: 1/calc(var(--count_col) + 1);
}

.video-paused {
    position: relative;
}

.video-paused::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    margin: auto;
    background-image: url('../icons/play.svg');
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    cursor: pointer;
}

.video-playing::after {
    content: none;
}

.rowImage:not(.after-menu) .rowImage_wrap,
.map_wrap,
.video_wrap,
.numerically_wrap,
.questions_wrap,
.separate-documents_wrap,
.instagram_wrap,
.rates_wrap {
    padding-top: var(--main_indent-top);
}

.rates_wrap_content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rates_wrap_content .rates_item {
    border-radius: 20px;
    border: 1px solid #D7D9DB;
    overflow: hidden;
}

.rates_wrap_content .rates_item .rates_title {
    padding: 25px;
    background-color: #F2F3F7;
}

.rates_wrap_content .rates_item .rates_title .title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
}

.rates_wrap_content .rates_item .rates_title .date {
    font-size: 16px;
    font-weight: 500;
    color: #88919D;
}

.rates_wrap_content .rates_item .rates_description {
    padding: 25px;
}

.rates_wrap_content .rates_item .rates_description > .title {
    font-size: 18px;
    font-weight: 500;
}

.rates_wrap_content .rates_item .rates_description .price_row {
    display: flex;
    margin-top: 20px;
}

.rates_wrap_content .rates_item .rates_description .price_row .price_item {
    margin-right: 25px;
}

.rates_wrap_content .rates_item .rates_description .price_row .sum {
    font-size: 24px;
    font-weight: 500;
}

.rates_wrap_content .rates_item .rates_description .price_row .sum > span {
    font-size: 18px;
    font-weight: 500;
}

.rates_wrap_content .rates_item .rates_description .price_row .description {
    font-size: 16px;
    font-weight: 500;
    color: #88919D;
}

.rates_wrap_content .rates_item .rates_description .download_btn {
    text-align: center;
    margin-top: 25px;
    padding: 24px 24px 0 24px;
    border-top: 1px solid #D7D9DB;
}

.rates_wrap_content .rates_item .rates_description .download_btn a {
    color: #52B147;
    font-weight: 600;
    font-size: 16px;
    transition: .3s;
}

.rates_wrap_content .rates_item .rates_description .download_btn a:hover {
    opacity: .5;
}

.instagram_wrap__header {
    margin-top: 55px;
    display: flex;
    gap: 78px;
    align-items: center;
}

.instagram_wrap__header_logo {
    width: 150px;
    height: 150px;
    display: flex;
}

.instagram_wrap__header_logo img {
    object-fit: cover;
}

.instagram_wrap__header_numerically {
    display: flex;
    gap: 5px;
    align-items: flex-end;
}

.instagram_wrap__header_numerically p {
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 23.54px;
}

.instagram_wrap__header_numerically span {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 29px;
    color: var(--green);
    text-transform: uppercase;
}

.instagram_wrap__content {
    margin-top: 55px;
    display: flex;
    gap: 74px;
}

.card-instagram {
    display: flex;
    width: 100%;
    height: 370px;
}

.card-instagram img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.map_wrap_content {
    margin: 0 calc(-1 * var(--main_margin) + 40px);
}

.small-padding>.numerically_wrap {
    padding-top: 60px;
}

.search-static {
    display: grid;
    grid-template-columns: auto 230px;
    gap: 15px;
    margin-top: 40px;
}

.search-static .search-box__input input {
    background-color: #fff;
    box-shadow: 0px 8px 24px rgba(50, 60, 85, 0.1);
    border: none;
    padding: 18px 20px 18px 61px;
}

.search-static .search-box__input img {
    top: 19px;
    left: 22px;
}

.searchResult_wrap_content {
    counter-reset: resultSearch;
    display: flex;
    gap: 40px;
    flex-direction: column;
    margin-top: 70px;
}

.searchResult_wrap_content>span {
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 19px;
    opacity: 0.6;
    width: 100%;
    padding-bottom: 15px;
    border-bottom: 1px solid #D7D9DB;
}

.result-search {
    display: flex;
    padding-bottom: 40px;
    border-bottom: 1px solid #D7D9DB;
}

.result-search_content {
    display: flex;
    flex-direction: column;
    margin-right: auto;
    max-width: 1000px;
    gap: 20px;
}

.result-search_content a {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 42px;
    cursor: pointer;
}

.result-search_content p {
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 28px;
    opacity: 0.6;
}

.result-search span {
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 21px;
    opacity: 0.6;
    margin-left: 20px;
    margin-bottom: auto;
}

.result-search::before {
    content: counter(resultSearch);
    counter-increment: resultSearch;
    width: 70px;
    opacity: 0.6;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 21px;
    margin-bottom: auto;
    min-width: 70px;
}

.result-search_content a:focus {
    color: var(--green);
}

.request_wrapper {
    display: flex;
    flex-direction: column;
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
}

.request_wrapper h2 {
    text-align: center;
}

.request_wrap_content {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.request_wrap_content__nav {
    display: flex;
    position: relative;
}

.request_wrap_content__nav div {
    width: 50%;
    justify-content: center;
    display: flex;
    padding-bottom: 29px;
    position: relative;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    font-weight: 500;
}

.request_wrap_content__nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #D7D9DB;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.request_wrap_content__nav::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 3px;
    width: calc(50% - 15px);
    background-color: var(--green);
    border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    -moz-border-radius: 5px 5px 0px 0px;
    -ms-border-radius: 5px 5px 0px 0px;
    -o-border-radius: 5px 5px 0px 0px;
    z-index: 2;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.request_wrap_content form {
    --count_col: 6;
    display: none;
    grid-template-columns: repeat(var(--count_col), 1fr);
    gap: 30px;
    margin-top: 40px;
}

.request_wrap_content form div {
    grid-column: span calc(var(--count_col)/2);
}

.request_wrap_content.active-entity form#entity,
.request_wrap_content.active-individual form#individual {
    display: grid;
}

.request_wrap_content.active-individual .request_wrap_content__nav-individual,
.request_wrap_content.active-entity .request_wrap_content__nav-entity {
    color: var(--green);
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.request_wrap_content.active-individual .request_wrap_content__nav::before {
    left: 0;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.request_wrap_content.active-entity .request_wrap_content__nav::before {
    left: calc(50% + 15px);
    right: 0;
    transition: ease .3s;
    -webkit-transition: ease .3s;
    -moz-transition: ease .3s;
    -ms-transition: ease .3s;
    -o-transition: ease .3s;
}

.selection_daefault select {
    cursor: pointer;
    appearance: none;
    width: 100%;
}

.request_wrap_content form button[type=submit] {
    margin-top: 20px;
}

.request_wrap_content form .input-multiline,
.request_wrap_content form .policy-row,
.request_wrap_content form button[type=submit],
.request_wrap_content form .upload-file,
.request_wrap_content form .input_file {
    grid-column: span var(--count_col);
}

/* .request_wrap_content form .input_daefault:not(.input-multiline):nth-child(n+9) {
    grid-column: span calc(var(--count_col) / 3);
} */

.policy-row {
    display: flex;
    justify-content: center;
}

.policy-row a,
.policy-row p {
    font-weight: 500;
    font-size: 0.6rem;
    line-height: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.policy-row a {
    color: var(--green);
}

.request_wrap_content form#entity .upload-file,
.request_wrap_content form#entity .input_file {
    margin-top: 20px;
}

.shedule_wrap>p {
    margin-top: 25px;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 38px;
    letter-spacing: 1px;
}

.contacts_wrap_content {
    margin-TOP: 40px;
}

.contacts_wrap_content p {
    margin-bottom: 10PX;
}

.shedule_wrap__search {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.shedule_wrap__result {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 60px;
}

.sheduleResult-card {
    border: 1px solid #F2F3F7;
    box-shadow: 0px 8px 24px rgba(50, 60, 85, 0.1);
    border-radius: 15px;
    padding: 35px 43px 40px;
}

.sheduleResult-card h3 {
    color: var(--green);
    margin-bottom: 23px;
}

.sheduleResult-card_row {
    margin-bottom: 30px;
    display: flex;
    gap: 10px 39px;
    flex-wrap: wrap;
}

.sheduleResult-card_row * {
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 24px;
}

.sheduleResult-card>p {
    font-weight: 400;
    font-size: 1.0rem;
    line-height: 30px;
}

.sheduleResult-card_row__time {
    display: flex;
    gap: 5px;
}

.documents-menu_title {
    display: none;
}

/* костыль для формы на странице ликвидации (градиент ) */
.complaint_wrap textarea:not(:placeholder-shown)~label,
.complaint_wrap .input_daefault textarea:focus~label,
.complaint_wrap .input_daefault input:not(:placeholder-shown)~label,
.complaint_wrap .input_daefault input:focus~label {
    background: rgb(255, 255, 255);
    background: linear-gradient(0, rgba(255, 255, 255, 1) 45%, rgba(242, 243, 247, 1) 45%);
}

@media (max-width:1600px) {
    .menu_wrap__links-main {
        column-gap: 18px;
    }

    .menu_wrap__links-extra {
        --wrap_links: 11px;
    }

    .about_wrap_content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer_wrap__links {
        column-gap: 50px;
    }
}

@media (max-width:1400px) {
    :root {
        --main_margin: 8vw;
    }

    .newsPage>.newsPage_wrap {
        grid-template-columns: auto 400px;
        gap: 60px;
    }

    .newsPage_wrap__addNews_news {
        margin-top: 20px;
    }

    h2 {
        font-size: 1.9rem;
        line-height: 38px;
    }

    .menu_wrap__logo {
        margin-right: 30px;
    }

    h1 {
        font-size: 2.0rem;
        line-height: 50px;
    }

    .swiper-slide_circle {
        margin-top: 294px;
        min-width: 500px;
        height: 500px;
    }

    .footer>.footer_wrap {
        column-gap: 50px;
    }

    .documents_wrap__content__numerically .wrap-numerically {
        grid-template-columns: repeat(2, 1fr);
    }

    .documents_wrap__content__numerically .wrap-numerically-item:nth-child(2)::after {
        content: none;
    }

    .managers_wrap_content {
        grid-template-columns: repeat(2, 1fr);
    }

    .headPage .headPage_content-out {
        grid-template-columns: 250px 1fr;
    }

    .headPage_content-out__img {
        height: 250px;
    }

    .documents-block {
        gap: 110px;
    }

    .instagram_wrap__content {
        gap: 50px;
    }

    .shedule_wrap__search {
        grid-template-columns: repeat(2, 1fr);
    }

    .documents-menu {
        min-width: unset;
    }
}


@media (max-width:1300px) {
    .rates_wrap_content {
        grid-template-columns: repeat(2, 1fr);
    }    
}

@media (max-width:1200px) {
    
    
    .menu_wrap__contact {
        display: none;
    }
    
    .menu-mobil__contact {
        display: flex;
    }
    
    .menu-mobil__contact a {
        margin-right: 10px;
    }
    
    .crumbs {
        margin-top: 86px;
    }

    .newsPage>.newsPage_wrap {
        padding-top: 40px;
        display: flex;
        flex-direction: column;
    }

    .newsPage_wrap__content>span {
        margin-bottom: 15px;
    }

    .newsPage_wrap__content__tags {
        margin: 25px 0 40px;
    }

    .newsPage_wrap__addNews {
        display: none;
    }

    .menu_wrap .menu_wrap-row:last-child,
    .menu_wrap__links-extra {
        position: unset;
    }

    .menu_wrap__links-extra_help {
        grid-template-columns: repeat(3, auto);
        margin-left: 0;
        column-gap: 25px;
        align-items: center;
    }

    .menu_wrap__links-open_mobile {
        display: flex;
    }

    .menu_wrap__buttons-enter {
        background-color: var(--gray);
    }

    .menu_wrap-row>.menu-phone,
    .menu_wrap__buttons,
    .menu_wrap__links-extra_wrap,
    .menu_wrap__links-main {
        display: none;
    }

    .menu::after {
        content: "";
        position: absolute;
        bottom: -17px;
        height: 1px;
        width: 100%;
        background-color: #fff;
        opacity: .2;
    }

    .menu {
        top: 16px;
    }

    .menu>.menu_wrap {
        flex-direction: row;
        justify-content: space-between;
    }

    .menu_wrap>.menu_wrap-row:first-child {
        margin-bottom: 0;
    }

    .menu_wrap>.menu_wrap-row:first-child::after {
        content: none;
    }

    .search-show {
        order: 2;
    }

    .search-show img {
        width: 21px;
        height: 21px;
    }

    .menu_wrap__links-extra_help .dropmenu_button img {
        width: 30.03px;
        height: 21px;
    }

    .menu_wrap__logo img {
        width: 183px;
    }

    .menu_wrap__links-extra_help .dropmenu_wrap {
        right: 0;
    }

    .search-box {
        left: 0;
        right: 0;
        top: -400%;
        opacity: 1;
        visibility: visible;
        background-color: #fff;
    }

    .menu_wrap__links-extra--show_search>.search-box {
        top: -16px;
        transition: ease .3s;
        -webkit-transition: ease .3s;
        -moz-transition: ease .3s;
        -ms-transition: ease .3s;
        -o-transition: ease .3s;
    }

    .documents-menu {
        border-radius: 0;
    }

    .documents-menu_nav {
        display: none;
    }

    .documents-menu_title {
        display: block;
        background: #f6f7fb;
        border-color: #ebecee;
        border-width: 1px;
        border-style: solid;
        padding: 20px 20px;
        cursor: pointer
    }

    .search-box input[type=submit] {
        display: none;
    }

    .search-box .search-box__input {
        margin: 7px var(--main_margin);
    }

    .search-box .search-box__input input {
        padding: 11px 15px 11px 47px;
    }

    .search-hide {
        opacity: .2;
    }

    .menu_wrap__links-extra--show_search .search-box::after {
        content: "";
        position: fixed;
        top: 57px;
        background-color: #000;
        opacity: .7;
        width: 100vw;
        height: 100vh;
    }

    .headPage_wrap {
        height: 548px;
    }

    .swiper-slide_circle {
        margin: auto 0;
        min-width: 350px;
        height: 350px;
    }

    .questions_wrap_content {
        grid-template-columns: 1fr;
    }

    .questions_wrap_content__img {
        display: none;
    }

    h3 {
        margin-bottom: 35px;
    }

    .news_wrap_content {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-news_title {
        font-size: 1.35rem;
        line-height: 31px;
        margin-bottom: 20px;
    }

    .card-news p {
        display: none;
    }

    .wrap-numerically {
        height: unset;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .wrap-numerically>.wrap-numerically-item:nth-child(2)::after {
        content: unset;
    }

    .footer>.footer_wrap {
        grid-template-columns: 193px auto;
    }

    .footer_wrap__contacts {
        grid-column: 1/3;
        flex-direction: row;
        align-items: center;
        margin-top: 25px;
        flex-wrap: wrap;
    }

    .footer_wrap__contacts-tel {
        margin-right: auto;
    }

    .footer_wrap__contacts_buttons {
        grid-template-columns: auto auto;
        margin-top: 0;
        margin-left: auto;
    }

    .footer_wrap__contacts-address {
        order: 3;
        margin-right: auto;
        margin-left: 0;
    }

    .footer>.studio3387 {
        margin-top: 25px;
    }

    .footer_wrap__links {
        column-gap: 30px;
    }

    .menu_wrap__buttons-enter::before {
        filter: unset;
        -webkit-filter: unset;
    }

    .documents>.documents_wrap {
        flex-direction: column;
    }

    .documents-menu {
        margin-right: 0;
        overflow: hidden;
        position: relative;
        top: 0;
        box-shadow: 0 5px 15px rgba(1,0,61,.07);
        border-radius: 10px;
    }

    .documents-menu_nav {
        /* gap: 40px; */
        margin-top: 0;
        width: 100%;
    }

    .documents-menu_nav::after {
        content: none;
    }

    .documents-menu_nav>* {
        display: flex;
        margin-right: 0;
        padding-bottom: 10px;
        /* white-space: nowrap; */
        display: block;
    }

    .documents-menu_nav .documents-menu_nav_link--active::before {
        content: "";
        width: 100%;
        height: 2px;
        border: none;
        background-color: var(--green);
        position: absolute;
        bottom: 0;
    }

    .documents-menu_nav>*::before {
        content: none;
    }

    .documents-menu_nav_link--active .documents-menu_nav_link-years {
        display: none;
    }

    .documents-menu h3 {
        display: none;
    }

    .documents_wrap__content {
        margin-top: 32px;
    }

    .addition-card {
        padding: 20px;
    }

    .addition-card_img {
        width: 65px;
        height: 65px;
    }

    .addition-card_img img {
        margin: auto 17px;
        width: 31px;
    }

    .documents_wrap__content>div {
        row-gap: 30px;
    }

    .wrap-addition {
        gap: 15px;
    }

    .documents_wrap__content__years-select {
        display: flex;
    }

    .headPage .headPage_content-out {
        grid-template-columns: 1fr;
    }

    .headPage_content-out__img {
        display: none;
    }

    .headPage.headPage-overflow .swiper_plug {
        height: auto;
    }

    .headPage.headPage-overflow .swiper-slide_bg {
        height: 303px;
    }

    .headPage.headPage-overflow .swiper-slide_text {
        margin-top: 93px;
        margin-bottom: 20px;
    }

    .newsList_wrap_content__items {
        grid-template-columns: repeat(2, 1fr);
    }

    section.after-menu>div {
        padding-top: 107px;
    }

    .jobs_wrap__content {
        grid-template-columns: 1fr 1fr;
        padding-bottom: 50px;
        gap: 15px;
    }

    .card-job {
        padding: 20px;
    }

    .card-job__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-job__head::before {
        content: none;
    }

    .card-job_head__title {
        gap: 10px;
    }

    .card-job_head__price {
        margin-top: 20px;
    }

    .documents-block {
        margin-top: 40px;
    }

    .documents-block {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .documents-block_content h3 {
        display: none;
    }

    .card-document {
        justify-content: flex-start;
    }

    .rowImage_wrap_content__img {
        height: 300px;
    }

    .rowImage_wrap_content--reverse .rowImage_wrap_content__img {
        height: 400px;
    }

    .instagram_wrap__content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .rowImage_wrap_content,.rowImage_wrap_content--reverse.swith {
        grid-template-columns: 1fr;
    }

    .rowImage_wrap_content,
    .rowImage_wrap_content__text h2,
    .rowImage_wrap_content__text {
        margin-top: 0;
    }

    .rowImage_wrap_content__img {
        height: 400px;
    }

    .rowImage_wrap_content--reverse .rowImage_wrap_content__text {
        order: 1;
    }

    .instagram_wrap__header {
        display: none;
    }

    .complaint_wrap_content form {
        --count_col: 4;
    }
}

@media (max-width:900px) {
    :root {
        --main_indent-top: 60px;
    }

    .mainSwaper .swiper-navigation {
        display: none;
    }

    h1 {
        font-size: 1.5rem;
        line-height: 40px;
    }

    .swiper-slide_text {
        margin-right: 0;
        margin-top: 94px;
    }

    .swiper-slide_circle {
        position: absolute;
        min-width: unset;
        width: 340px;
        height: 340px;
        bottom: 20px;
        right: var(--main_margin);
    }

    .swiper_plug-width_text .swiper-slide_circle {
        bottom: -20px;
    }

    .swiper-slide_text_button a {
        font-size: 0.6rem;
        line-height: 20px;
        padding: 14px 20px;
    }

    .drop-list-label p {
        font-size: 0.8rem;
        line-height: 19px;
    }

    .drop-list-label_icon {
        width: 35px;
        height: 35px;
    }

    .drop-list-label_icon::before {
        width: 2px;
        height: 10px;
        left: calc(50% - 1px);
        top: calc(50% - 5px);
    }

    .drop-list-label_icon::after {
        width: 10px;
        height: 2px;
        left: calc(50% - 5px);
        top: calc(50% - 1px);
    }

    .result-search_content a {
        font-size: 1.0rem;
        line-height: 24px;
    }

    h3 {
        font-size: 1.2rem;
        line-height: 29px;
    }

    .default_button-green * {
        padding: 14px 20px;
        font-size: 0.6rem;
        line-height: 20px;
    }

    .drop-list {
        padding: 20px 0;
    }

    .card-about span {
        font-size: 0.9rem;
        line-height: 21px;
        margin-bottom: 10px;
    }

    .card-about p {
        font-size: 0.8rem;
        line-height: 24px;
    }

    .card-about_img {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .card-about_img img {
        padding: 13.5px 13px;
    }

    .about_wrap_content {
        gap: 17px;
    }

    .news_wrap {
        padding-top: 50px;
    }

    .news_wrap_content {
        grid-template-rows: auto;
        gap: 10px;
        padding-bottom: 50px;
    }

    .card-news--with_img {
        grid-column: 1/2;
        grid-template-columns: 1fr;
    }

    /* .card-news_img {
        display: none;
    } */

    .card-news--plug {
        display: none;
    }

    .newsPage_wrap__addNews_news .card-news_title,
    .card-news_title {
        font-size: 1.0rem;
        line-height: 24px;
    }

    .small-padding>.numerically_wrap {
        padding-top: 30px;
    }

    .drop-list-content p {
        font-size: 0.8rem;
        line-height: 18px;
    }

    .footer {
        margin-top: 60px;
        --color_text: #fff;
        --button-enter_bg: transparent;
        background-color: var(--black);
        --filter_icons: unset;
    }

    .footer>.footer_wrap {
        grid-template-columns: 1fr;
        padding: 40px 0;
        border: none;
        row-gap: 30px;
    }

    .footer_wrap__contacts {
        grid-column: auto;
        order: 1;
    }

    .footer_wrap__links {
        order: 3;
    }

    .footer_wrap__logo {
        order: 4;
    }

    .footer_wrap__contacts {
        margin-top: 0;
    }

    .footer_wrap__contacts_buttons-request {
        background-color: var(--green);
        padding: 12px 39.5px;
    }

    .footer_wrap__contacts_buttons-enter {
        border: 2px solid var(--color_text);
    }

    .footer_wrap__logo__company>.footer-logo-green {
        display: none;
    }

    .footer_wrap__logo__company>.footer-logo-white {
        display: block;
    }

    .footer>.studio3387 {
        padding: 0 var(--main_margin) 30px;
        background-color: #262D40;
        margin: 0;
        justify-content: center;
    }

    .footer>.footer_wrap__logo {
        background-color: #262D40;
        margin: 0;
        padding: 40px var(--main_margin) 10px;
        flex-direction: row;
        justify-content: space-between;
    }

    .footer_wrap__logo__text {
        display: none;
    }

    .footer_wrap__logo__company {
        margin-bottom: 30px;
    }

    .footer_wrap__contacts {
        align-items: flex-start;
    }

    .footer_wrap__contacts_buttons {
        grid-template-columns: auto;
    }

    .documents_wrap__content__video,
    .documents_wrap__content__img {
        height: 390px;
    }

    .addition-card p {
        font-size: 0.65rem;
        line-height: 16px;
    }

    .documents_wrap__content__downloads {
        gap: 15px;
    }

    .documents_wrap__content__downloads a {
        padding: 27px 20px;
    }

    .documents_wrap__content__text-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .swiper-slide_text p {
        font-weight: 400;
        font-size: 0.8rem;
        line-height: 20px;
        margin-top: 9px;
    }

    .headPage.headPage-overflow .swiper-slide_bg {
        height: 303px;
    }

    .headPage.headPage-overflow .swiper-slide_circle {
        display: none;
    }

    .managers {
        padding-top: 60px;
    }

    .headPage_content-out__text span {
        font-size: 1.1rem;
        line-height: 32px;
    }

    .headPage .headPage_content-out {
        padding: 20px;
    }

    .managers_wrap_content {
        display: flex;
        margin-right: calc(-1 * var(--main_margin));
        overflow-x: auto;
        overflow-y: hidden;
    }

    .managers_wrap {
        position: relative;
    }

    .managers_wrap_content::after {
        content: "";
        position: absolute;
        width: 104px;
        height: 100%;
        background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 57.69%);
        opacity: 0.8;
        right: calc(-1 * var(--main_margin));
        top: 0;
    }

    .card-manager {
        min-width: 300px;
    }

    .card-manager_img {
        height: 370px;
    }

    .card-manager span {
        font-size: 0.8rem;
        line-height: 19px;
        margin-top: 20px;
    }

    .card-manager p {
        font-size: 0.8rem;
        line-height: 19px;
        margin-top: 5px;
    }

    .about_wrap {
        padding-top: 60px;
    }

    section.destroi-bottom>div {
        margin-bottom: -60px;
    }

    .jobs_wrap__content,
    .newsList_wrap_content {
        margin-top: 20px;
        padding-top: 25px;
        padding-bottom: 50px;
    }

    .newsList_wrap_content__tabs {
        margin-bottom: 30px;
    }

    .card-job_head__title p {
        font-weight: 500;
        font-size: 1.1rem;
        line-height: 26px;
    }

    .card-job_head__title span {
        font-weight: 500;
        font-size: 0.8rem;
        line-height: 19px;
    }

    .card-job_head__price {
        font-weight: 600;
        font-size: 0.9rem;
        line-height: 21px;
    }

    .policy_wrap {
        gap: 20px;
    }

    .policy_wrap__el h3 {
        font-weight: 500;
        font-size: 1.0rem;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .policy_wrap__el p {
        line-height: 30px;
    }

    .regulations_wrap>p,
    .jobs_wrap>p {
        font-size: 0.9rem;
        line-height: 30px;
        margin-top: 20px;
    }

    .card-document span {
        font-size: 0.9rem;
        line-height: 21px;
    }

    .card-document p {
        font-size: 0.7rem;
        line-height: 20px;
    }

    .documents-block_content_items {
        gap: 15px;
    }

    .card-document::after {
        width: 18.75px;
        height: 18.76px;
    }

    .instagram_wrap__content,
    .rowImage_wrap_content {
        gap: 30px;
    }

    .complaint_wrap_content form {
        gap: 15px;
    }

    .complaint_wrap_content>p {
        font-weight: 400;
        font-size: 0.9rem;
        line-height: 30px;
    }

    .complaint_wrap_content form button[type=submit] {
        margin-top: 15px;
    }

    .result-search span,
    .result-search::before {
        display: none;
    }

    .request_wrap_content form .input_daefault:not(.input-multiline):nth-child(n+9) {
        grid-column: span calc(var(--count_col) / 2);
    }

    .shedule_wrap>p {
        font-weight: 400;
        font-size: 0.9rem;
        line-height: 30px;
    }

    .shedule_wrap__search {
        margin-top: 40px;
    }

    .shedule_wrap__result {
        margin-top: 40px;
    }
}

@media (max-width:700px) {
    
    .rates_wrap_content {
        grid-template-columns: repeat(1, 1fr);
    } 
    
    h2 {
        font-size: 1.2rem;
        line-height: 29px;
    }

    .newsPage_wrap__content__img {
        height: auto;
    }

    .newsPage_wrap__addNews_news {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .wrap-numerically-item-number {
        width: 100%;
        line-height: 36px;
    }

    .wrap-numerically-item-name {
        margin-bottom: 15px;
    }

    .wrap-numerically-item_wrap {
        max-width: unset;
    }

    .wrap-addition {
        grid-template-columns: 1fr;
    }

    .documents_wrap__content__text-row p {
        font-size: 0.9rem;
        line-height: 24px;
    }

    .newsList_wrap_content__items {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .jobs_wrap__content {
        grid-template-columns: 1fr;
    }

    .modal-job_successful,
    .modal-job_wrap {
        padding: 0 16px;
    }

    .newsOnRow {
        grid-template-columns: 1fr;
    }

    .instagram_wrap__content {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .card-instagram {
        height: 390px;
    }

    .map_wrap_content {
        margin: 0 calc(-1 * var(--main_margin));
        height: 614px;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    .complaint_wrap_content form {
        --count_col: 2;
    }

    .complaint_wrap_content form .input_file {
        grid-column: span 2;
    }

    .search-static {
        grid-template-columns: 1fr;
        margin-top: 14px;
    }

    .search-static input[type="submit"] {
        display: none;
    }

    .searchResult_wrap_content {
        margin-top: 30px;
        gap: 20px;
    }

    .result-search {
        padding-bottom: 20px;
    }

    .result-search_content {
        gap: 15px;
    }

    .request_wrap_content form {
        --count_col: 1;
        gap: 15px;
    }

    .request_wrap_content form button[type=submit] {
        margin-top: 15px;
    }

    .request_wrap_content__nav::before {
        width: 50%;
    }

    .request_wrap_content.active-entity .request_wrap_content__nav::before {
        left: 50%;
    }

    .request_wrap_content {
        margin-top: 30px;
    }

    .shedule_wrap__search {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sheduleResult-card {
        padding: 27px 20px;
    }

    .sheduleResult-card_row * {
        font-weight: 500;
        font-size: 0.8rem;
        line-height: 19px;
    }

    .sheduleResult-card>p {
        font-size: 0.7rem;
        line-height: 20px;
    }
}

@media (max-width:600px) {
    :root {
        --main_margin: 4.2vw;
    }

    h1 {
        font-size: 1.2rem;
        line-height: 28px;
    }

    .default_button-green {
        width: 100%;
        margin-top: 30px;
    }

    .default_button-green * {
        text-align: center;
        width: 100%;
    }

    .card-about {
        display: grid;
        grid-template-columns: max-content 1fr;
        gap: 15px;
        background-color: #fff;
        border: 1px solid #D7D9DB;
        padding: 15px;
    }

    .about_wrap_content {
        grid-template-columns: 1fr;
    }

    .card-about_img {
        margin-bottom: 0;
    }

    .about_wrap {
        padding-top: 60px;
    }

    .news_wrap_content {
        grid-template-columns: 1fr;
    }

    .footer_wrap__links-main {
        display: grid;
        gap: 25px;
        order: 2;
    }

    .footer_wrap__links-main a {
        margin-right: auto;
        display: flex;
        font-weight: 600;
        font-size: 0.85rem;
        line-height: 24px;
        color: var(--color_text);
        letter-spacing: 0.01em;
    }

    .footer_wrap__links {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .footer_wrap__contacts_links {
        order: 2;
        margin-top: 30px;
    }

    .footer_wrap__contacts_buttons {
        margin: 0;
        width: 100%;
        grid-template-columns: 1fr 1fr;
        justify-items: unset;
    }

    .footer_wrap__contacts_buttons>a {
        width: auto;
        justify-content: center;
        text-align: center;
    }

    .footer_wrap__contacts_buttons-enter {
        padding: 11px 0;
    }

    .footer_wrap__contacts_buttons-request {
        padding: 12px 0;
    }

    .footer_wrap__contacts {
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        padding-bottom: 30px;
    }

    .footer>.footer_wrap__logo {
        flex-direction: column;
        align-items: center;
        padding-bottom: 30px;
    }

    .footer>.studio3387 {
        padding-bottom: 40px;
    }

    .documents_wrap__content__video,
    .documents_wrap__content__img {
        height: 190px;
    }

    .documents_wrap__content__downloads {
        grid-template-columns: 1fr;
    }

    .modal-job_successful,
    .modal-job_wrap {
        max-width: unset;
        width: 100%;
        margin: 0;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }
}

@media (max-width:550px) {
    .swiper-slide_content {
        justify-content: center;
    }

    .swiper-slide_text {
        width: 100%;
    }

    .swiper-slide_text_button {
        width: 100%;
        margin: auto 0 0;
    }

    .swiper-slide_text_button a {
        width: 100%;
        text-align: center;
    }

    .swiper-slide_text {
        margin-bottom: 60px;
        justify-content: space-between;
        z-index: 10;
    }

    .swiper-slide_circle {
        bottom: 60px;
        width: 300px;
        height: 300px;
        z-index: 9;
        right: unset;
    }

    .wrap-numerically-item_wrap {
        max-width: 334px;
    }

    .wrap-numerically-item-number {
        width: min-content;
        line-height: 56px;
    }

    .wrap-numerically-item-name {
        margin-bottom: 0;
    }

    .documents_wrap__content__numerically .wrap-numerically,
    .wrap-numerically {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .wrap-numerically>.wrap-numerically-item:not(:last-child)::after {
        content: "";
        height: 1px;
        width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 0;
        top: unset;
    }

    .footer>.studio3387,
    .footer>.footer_wrap__logo {
        padding: 40px var(--main_margin) 30px;
    }

    .swiper-slide_text p {
        margin-bottom: auto;
    }

    .swiper_plug-width_text .swiper-slide_circle {
        bottom: -40px;
    }

    .video_wrap_content,
    .rowImage_wrap_content--reverse .rowImage_wrap_content__img,
    .rowImage_wrap_content__img {
        height: 190px;
    }
}

@media (max-width:400px) {

    .menu_wrap__links-extra_help {
        column-gap: 15px;
    }

    .menu_wrap__logo img {
        width: 165px;
    }

}