@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Inter-Regular';
    src: url("../fonts/Inter-Regular.eot");
    src: url("../fonts/Inter-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'Inter-Medium';
    src: url("../fonts/Inter-Medium.eot");
    src: url("../fonts/Inter-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-Medium.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'Inter-SemiBold';
    src: url("../fonts/Inter-SemiBold.eot");
    src: url("../fonts/Inter-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter-SemiBold.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}

* {
    padding: 0;
    margin: 0;
}

html {
    margin-top: 0 !important;
}

body {
    font-family: 'Inter-Regular';
    background: var(--white);
    overflow-x: hidden;
}

:root {
    --red: #b30000;
    --black: #000;
    --white: #fff;
}

.hidden {
    display: none;
}

.none {
    display: none !important;
}

.container {
    max-width: 1160px;
    padding: 0px 15px;
    margin: 0 auto;
}

a.back-to-top {
    display: none;
    width: 48px;
    height: 48px;
    text-indent: -9999px;
    position: fixed;
    z-index: 999;
    right: 20px;
    bottom: 20px;
    background: var(--red) no-repeat center 43%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

a.back-to-top:hover {
    background: #cb170b;
}

a.back-to-top svg {
    transform: rotate(-90deg);
}

.videos {
    height: 700px;
    position: relative;
}

#myVideo {
    position: absolute;
    right: 0;
    top: 0;
    min-width: 100%;
    width: 1920px;
    display: block;
    height: auto;
    z-index: -9999;

}

.video {
    position: relative;
    z-index: 1;
    padding-bottom: 56.25%;
    margin-top: 0px;
}

.video__media {
    width: 100%;
    height: 700px;
    position: absolute;
    top: 0;
    left: 0;
}

.header {
    background: rgba(246, 246, 246, 1);
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
}

.header__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 17px 32px;
    gap: 20px;
}

.header__mobile {
    display: none;
}

.header__mobile-container {
    overflow-y: auto;
}

.header__menu {
    display: flex;
    align-items: center;
    max-width: 1350px;
    width: 100%;
    justify-content: space-between;
}

.header__menu ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 0;
    gap: 18px;
    flex-wrap: wrap;
    max-width: 513px;
    width: 100%;
}

.header__red-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media all and (max-width: 1400px) {
    .header__red-links {
        display: none;
    }

    .header__menu ul {
        gap: 4px;
        max-width: 446px;
    }

    .header__menu ul li a {
        font-size: 12px !important;
    }
}

.header__red-links a {
    text-transform: uppercase;
    font-size: 14px;
    line-height: normal;
    color: rgba(179, 0, 0, 1);
}

.header__menu ul li {
    list-style: none;
    position: relative;
}

.header__menu ul li a {
    text-decoration: none;
    font-size: 14px;
    color: var(--black);
    text-transform: uppercase;
    transition: .5s;
}

.header__menu ul li a:hover {
    color: rgba(179, 0, 0, 1);
}

.header__menu ul li .active {
    background: rgba(179, 0, 0, 0.12);
    border-radius: 8px;
}

.header__menu ul li .drop {
    position: relative;
    padding: 12px 25px 12px 0;
}

.header__menu ul li .drop__menu {
    background: var(--white);
    border-radius: 16px;
    padding: 8px;
    position: absolute;
    top: 60px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 220px;
    z-index: 999;
    margin-left: -40px;
    align-items: flex-start;
    display: none;
}

.header__menu ul li .drop__menu::after {
    content: "";
    width: 100%;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(0, -100%);
}

.header__menu ul li .drop__menu li a {
    text-decoration: none;
    font-size: 12px;
    padding: 8px 16px;
    color: var(--black);
    display: flex;
    width: auto;
}

.header__menu ul li:hover .drop__menu {
    display: flex;
}

.header__menu ul li .drop::before {
    content: '';
    position: absolute;
    background: url('../image/drop.svg');
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 8px;
    right: 4px;
    top: 17px;
}

.header__right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header__right a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: none;
    border: none;
    outline: none;
}

.header__burger {
    display: none;
}

.search {
    width: 242px;
    height: 32px;
    box-sizing: border-box;
    position: relative;
}

.search__input {
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: normal;
    padding: 8px 12px;
    border: 1px solid rgba(223, 223, 223, 1);
    background: white;
    border-radius: 8px;
    box-sizing: border-box;
    outline: none;
    padding-right: 34px;
}

.search__btn {
    position: absolute;
    border: none;
    outline: none;
    background: none;
    top: 50%;
    right: 12px;
    transform: translate(0, -50%);
    height: 16px;
    width: 16px;
    cursor: pointer;
}

.search__btn img {
    width: 100%;
    height: 100%;
}

.header__info {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.header__info p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
}

.header__info a {
    color: var(--black);
    text-decoration: none;
    font-family: 'Inter-Medium';
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.header__info a::before {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url("../image/phone.svg");
    background-size: 100%;
    background-repeat: no-repeat;
}

.header__btns a {
    border-radius: 8px;
    padding: 0px 16px;
    min-width: 163px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-left: 16px;
}

.header__btns a:hover {
    background: #cb170b;
}

.header__menu ul li .drop__menu li a.red,
.header a.red {
    color: var(--red);
}

.header__right button {
    cursor: pointer;
}

.breadcrums {
    padding-top: 54px;
    background: rgba(246, 246, 246, 0.9);
}

.breadcrums_no-background {
    background: none;
}

.breadcrums-black {
    margin-top: 37px;
}

.breadcrums-white {
    position: relative;
    z-index: 11;
    background: transparent;
    /* margin-top: 104px; */
}

@media all and (max-width: 630px) {
    
    .breadcrums-white {
        padding-top: 0;
    }
}

.breadcrums__list {
    display: flex;
    flex-direction: row;
    padding-left: 0px;
    margin: 0;
    position: relative;
    z-index: 10;
}

.breadcrums__list li {
    list-style: none;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-right: 24px;
    letter-spacing: -0.02em;
    position: relative;
    opacity: 0.6;
}

.breadcrums__list li:last-child {
    margin-right: 0px;
}

.breadcrums__list li::before {
    content: '/';
    position: absolute;
    top: 0px;
    right: -14px;
    opacity: 0.5;
    color: var(--black);
}

.breadcrums__list li:last-child::before {
    display: none;
}

.breadcrums__list li a {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
}

.breadcrums__block {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.breadcrums-white li a {
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 0, 0.2);
}

.breadcrums-white li::before {
    color: var(--white);
}

.breadcrums-white li:last-child {
    color: var(--white);
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(0, 0, 0.2);
}

.back__link {
    border-radius: 8px;
    padding: 0px 0px;
    width: 110px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-left: 0px;
    margin-right: 20px;
    z-index: 2;
}

.back__link:hover {
    background: #cb170b;
}

.back__link svg {
    margin-right: 10px;
}

.wrapper {
    min-height: 500px;
    margin-top: 58px;
}

.services-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 700px;
    position: relative;
    margin-top: -89px;
}

.services-banner .mains__container {
    display: flex;
    flex-direction: column;
    width: 70%;
    padding-top: 180px;
    position: relative;
    z-index: 1;
}

.mains {
    background: url('../image/main-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 700px;
    position: relative;
    margin-top: 88px;
}

.mains::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65), linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 4;
}

.videos::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.65), linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 4;
}

.mains__container {
    display: flex;
    flex-direction: column;
    padding-top: 230px;
    z-index: 99;
    position: relative;
}

.mains__container h1 {
    text-shadow: 1px 1px 2px #000;
    text-transform: uppercase;
    color: var(--white);
    font-size: 62px;
    line-height: 120%;
    font-family: 'Inter-Medium';
}

.mains__container p {
    max-width: 500px;
    font-size: 24px;
    line-height: 130%;
    color: var(--white);
    margin-top: 24px;
    margin-bottom: 24px;
    text-shadow: 1px 1px 2px #000;
}

@media all and (max-width: 600px) {
    .mains__container p {
        font-size: 16px;
    }

}

.mains__link a {
    border-radius: 8px;
    padding: 0px 16px;
    width: 169px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-left: 0px;
}

.mains__link_dilers a {
    box-sizing: border-box;
}

.mains__link a:hover {
    background: #cb170b;
}

.mains__title {
    margin-bottom: 20px;
}

.news {
    padding: 50px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.news__top {
    font-size: 42px;
    line-height: 100%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-bottom: 42px;
}

.news__top a {
    color: var(--red);
}

.news__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-slide__row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 16px;
}

.news-slide__tag a {
    border-radius: 100px;
    padding: 0px 8px;
    width: auto;
    height: 23px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-decoration: none;
    color: var(--white);
    font-size: 12px;
    font-family: 'Inter-Medium';
}

.news-slide__tag--green a {
    background: #42ce00;
}

.news-slide__tag--blue a {
    background: #237bff;
}

.news-slide__date {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 100%;
}

.news-slide__title a {
    letter-spacing: -0.03em;
    color: var(--black);
    font-size: 24px;
    font-family: 'Inter-Medium';
    text-decoration: none;
    padding: 0px 16px;
    display: block;
}

.news-slide__title a:hover {
    color: #B30000;
    text-decoration: underline;
}

.news-slide__text {
    margin-top: 10px;
    padding: 0px 16px;
    display: block;
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    line-height: 130%;
    white-space: nowrap;
    overflow: hidden;
    height: 40px;
    text-overflow: ellipsis;
}

.news-slide__image img {
    max-width: 100%;
    width: 100%;
    height: 245px;
    object-fit: cover;
    border-radius: 8px;
}

.forms {
    background: url('../image/forms.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 780px; */
    margin-top: -60px;
    position: relative;
    z-index: 11;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
}

.forms__container {
    padding-top: 128px;
}

.forms__content {
    /* width: 45%; */
    max-width: 572px;
    width: 100%;
}

.forms__title {
    font-size: 42px;
    line-height: 100%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-bottom: 20px;
}

.form {
    margin-top: 33px;
}

.forms__title span {
    color: var(--red);
}

.form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form__group label {
    font-size: 16px;
    color: var(--black);
    line-height: 24px;
    font-family: 'Inter-Medium';
    margin-bottom: 6px;
}

.form__group input {
    border-radius: 8px;
    padding: 0px 12px;
    width: 100% !important;
    height: 48px;
    background: #f4f4f4;
    outline: none;
    border: none;
    box-sizing: border-box;
}

.form__group input::placeholder {
    color: #9e9e9e;
    font-size: 14px;
    line-height: 20px;
}

.form button,
.form input[type="submit"] {
    border-radius: 8px;
    padding: 0px 16px;
    max-width: 400px;
    width: 100% !important;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Inter-Medium';
    box-sizing: border-box;
}

.form button:hover,
.form input[type="submit"]:hover {
    background: #cb170b;
}

.form p {
    font-size: 14px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-top: 16px;
    display: block;
    max-width: 572px;
    width: 100%;
}

.forms p {
    text-align: left;
}

.form p a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.forms__preims {
    display: flex;
    flex-direction: row;
    margin-top: 60px;
}

.forms__item {
    border-radius: 1000px;
    padding: 0px 24px 0px 16px;
    width: 376px;
    height: 88px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 16px;
    background: #f6f6f6;
    width: 30%;
}

.forms__item-icon {
    margin-right: 16px;
}

.services {
    padding: 50px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.services__list {
    display: flex;
    flex-direction: column;
}

.services__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px 24px;
    margin-bottom: 42px;
}

.services__item:nth-of-type(2n) {
    flex-direction: row-reverse;
    background: var(--white);
    border-radius: 16px;
}

.services__item-content {
    width: 49%;
    padding-right: 42px;
}

.services__item:nth-of-type(2n) .services__item-content {
    padding-right: 0;
    padding-left: 42px;
}

.services__item-title {
    font-size: 32px;
    letter-spacing: -0.02em;
    color: var(--black);
    font-family: 'Inter-Medium';
    line-height: 110%;
    margin-bottom: 16px;
}

.services__item-text {

}

.services__item-image {
    width: 49%;
}

.sections__name {
    letter-spacing: -0.02em;
    color: var(--black);
    font-size: 32px;
    font-family: 'Inter-Medium';
    line-height: 110%;
    margin-top: 42px;
}

.sections__image img {
    max-width: 100%;
}

.sections__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 24px;
    margin-bottom: 42px;
    gap: 1rem;
}

.sections__blocks {
    width: 45%;
    border-radius: 8px;
    padding: 24px;
    background: var(--white);
}

.sections__blocks-t {
    width: 100%;
    border-radius: 8px;
    padding: 24px;
    background: var(--white);
}

.sections__blocks-t p {
    letter-spacing: -0.02em;
    color: var(--black);
    font-family: 'Inter-Medium';
    font-size: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.sections__blocks-t span {
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--black);
    font-family: 'Inter-Medium';
    line-height: 110%;
}

.sections__blocks-t ol {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 24px;
}

.sections__blocks-t ol li {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 15px;
}

.sections__blocks-t ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 24px;
}

.sections__blocks-t ul li {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 5px;
}

.sections__blocks .red__block {
    background: var(--red);
    padding: 16px 16px;
    border-radius: 8px;
}

.sections__blocks .red__block ul {
    margin-bottom: 0 !important;
}

.sections__blocks .red__block span {
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--white);
    font-family: 'Inter-Medium';
    line-height: 110%;
}

.sections__blocks .red__block ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 24px;
}

.sections__blocks .red__block ul li {
    letter-spacing: -0.02em;
    color: var(--white);
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 5px;
}

.sections__blocks span {
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--black);
    font-family: 'Inter-Medium';
    line-height: 110%;
}

.sections__blocks ol {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 24px;
}

.sections__blocks ol li {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 15px;
}

.sections__blocks ul {
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 24px;
}

.sections__blocks ul li {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 5px;
}

.block__white {
    background: var(--white);
    padding: 50px 0px;
}

.block__grey {
    background: rgba(246, 246, 246, 0.9);
    padding: 42px 0px;
}

.block__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 42px;
}

.block__title {
    width: 48%;
    font-size: 42px;
    line-height: 100%;
    color: var(--black);
    font-family: 'Inter-Medium';
}

.block__title span {
    color: var(--red);
}

.block__description {
    width: 49%;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 130%;
}

.pop {
    background: rgba(246, 246, 246, 0.9);
    padding: 42px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pop__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 24px;
}

.pop__top-title {
    font-size: 42px;
    line-height: 100%;
    color: var(--black);
    font-family: 'Inter-Medium';
}

.news__work-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 252px;
    position: relative;
    right: auto;
    left: 0;
    right: 0;
    bottom: 2%;
    z-index: 9;
}

.news__work-nav .swiper-button-prevNews::after {
    font-size: 0px;
    display: none;
}

.news__work-nav .swiper-button-prevNews {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../image/oprev.svg');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    cursor: pointer;
    left: 0;
}

.news__work-nav .swiper-button-nextNews::after {
    font-size: 0px;
    display: none;
}

.news__work-nav .swiper-button-nextNews {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../image/onext.svg');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    cursor: pointer;
    left: 80%;
}

.news__work-nav .swiper-horizontal > .swiper-pagination-bullets,
.news__work-nav .swiper-pagination-bullets.swiper-pagination-horizontal,
.news__work-nav .swiper-pagination-custom,
.news__work-nav .swiper-pagination-fraction {
    bottom: -40px;
    text-align: center;
    background: var(--white);
    border-radius: 24px;
    padding: 12px 10px;
    width: 124px;
    margin-left: 50px;
}

.swiper-paginationNews {
    text-align: center;

}

.news__work-nav .swiper-pagination-bullet {
    background: #d9d9d9;
    opacity: 1;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.news__work-nav .swiper-pagination-bullet-active {
    background: var(--black);
    border-radius: 50%;
}

.block__lists {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.block__lists .block__one {
    /* width: 49%;
    margin-right: 16px;
    margin-bottom: 16px;
    margin-top: 0px; */
    height: 298px;
    flex-grow: 1;
}

/* .block__lists .block__one:nth-of-type(2n) {
    margin-right: 0px;
} */

.block__lists .block__one-w {
    width: 100%;
    /* margin-right: 0px; */
}

.block__one {
    cursor: pointer;
    /* margin-top: 42px; */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.block__one a {
    position: relative;
}

.block__one img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    display: block;
    transform: scale(1.0);
    transition: 0.3s;
}

.block__one:hover img {
    transform: scale(1.06);
    transition: 0.3s;
    cursor: pointer;
}

.block__one::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, #000 100%);

    z-index: 2;
}

.block__one-link {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    width: auto;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 5;
}

.block__one-content {
    width: 80%;
}

.block__one-content p {
    color: var(--white);
    font-size: 14px;
    margin-top: 10px;
}

.link-name {
    font-size: 24px;
    color: var(--white);
    line-height: 100%;
    font-family: 'Inter-Medium';
    text-decoration: none;
}

.btn-link {
    border-radius: 8px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: var(--red);
    z-index: 2;
}

.white {
    display: block;
    overflow: hidden;
}

.white__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.white__content {
    width: 60%;
    display: flex;
    flex-direction: column;
    padding: 62px 0px;
}

.white-title {
    font-size: 42px;
    line-height: 100%;
    color: var(--black);
    margin-bottom: 16px;
    font-family: 'Inter-Medium';
}

.white-title span {
    color: var(--red);
}

.white-text {
    color: var(--black);
    font-size: 16px;
    line-height: 130%;
}

.white__socials {
    display: flex;
    flex-direction: row;
    margin-top: 126px;
}

.white__social-item {
    margin-right: 16px;
}

.white__social-item a {
    transition: 0.5s;
}

.white__social-item a:hover {
    opacity: 0.5;
}

.white__image {
    width: 35%;
}

.white__image img {
    max-width: 100%;
    margin-bottom: -10px;
}

.numbers {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.numbers__title {
    padding-top: 40px;
    width: 48%;
    font-size: 42px;
    line-height: 100%;
    color: var(--black);
    font-family: 'Inter-Medium';
}

.numbers__title span {
    color: var(--red);
}

.numbers__list {
    display: flex;
    margin-top: 42px;
    gap: 24px;
}

.numbers__item {
    display: flex;
    flex-direction: column;
    /* width: 19.8%; */
    padding: 24px 24px;
    /* margin-right: 16px; */
    flex-grow: 1;
}

@media all and (max-width: 1180px) {

    .numbers__list {
        flex-wrap: wrap;
    }

}

.numbers__item-icon {
    width: 42px;
    height: auto;
}

.numbers__item:last-child {
    margin-right: 0px;
}

.numbers__item-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.numbers__item-top span {
    color: var(--red);
    font-size: 48px;
    margin-left: 9px;
    font-family: 'Inter-Medium';
    white-space: nowrap;
}

.numbers__item-text {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 16px;
    padding-top: 16px;
    line-height: 135%;
}

.mac {
    position: relative;
    height: 540px;
}

.mac__container {
    display: flex;
    flex-direction: row;
}

.mac__image {
    position: absolute;
    right: 0px;
    bottom: -5px;
}

.mac__content {
    width: 45%;
    display: flex;
    flex-direction: column;
    padding: 62px 0px;
}

.mac__title {
    font-size: 42px;
    line-height: 110%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-bottom: 16px;
}

.mac__title span {
    color: var(--red);
}

.mac__text {
    margin-bottom: 120px;
}

.mac__text p {
    color: var(--black);
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 20px;
}

.mac__link a {
    border-radius: 8px;
    padding: 0px 16px;
    width: max-content;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-right: 36px;
    margin-bottom: 16px;
}

.tops {
    padding: 62px 0px 0px 0px;
    background: rgba(246, 246, 246, 0.9);

}

.tops__block {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.tops__title {
    width: 40%;
    font-size: 42px;
    line-height: 110%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-bottom: 16px;
}

.tops__title span {
    color: var(--red);
}

.tops__link a {
    border: 1px solid rgba(179, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0px 16px;
    width: 171px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    font-family: 'Inter-Medium';
}

.tops__link a svg {
    margin-left: 10px;
}

.tops__lists {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    margin-top: 42px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 62px;
}

.tops__item {
    width: 32.4%;
    background: var(--white);
    border-radius: 16px 16px;
    margin-right: 16px;
    overflow: hidden;
}

.tops__item:last-child {
    margin-right: 0px;
}

.tops__item:nth-of-type(4) {
    display: none;
}

.tops__item-image {
    display: block;
    overflow: hidden;
}

.tops__item-image img {
    max-width: 100%;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tops__item-title {
    padding: 16px 24px 0px 24px;
}

.tops__item-title a {
    color: var(--black);
    font-family: 'Inter-Medium';
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
}

.tops__item-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px 0px 24px;
}

.tops__item-price {
    color: rgba(0, 0, 0, 0.5);
    font-size: 24px;
    line-height: 100%;
    font-family: 'Inter-Medium';
    border-bottom: 1px solid var(--red);
    padding-bottom: 4px;
}

.tops__item-price span {
    letter-spacing: -0.03em;
    color: var(--black);
    font-size: 24px;
    font-family: 'Inter-Medium';
    line-height: 100%;
    margin-right: 10px;
}

.tops__item-metr {
    color: rgba(0, 0, 0, 0.5);
    font-size: 24px;
    line-height: 100%;
    font-family: 'Inter-Medium';
}

.tops__item-metr span {
    letter-spacing: -0.03em;
    color: var(--black);
    font-size: 24px;
    font-family: 'Inter-Medium';
    line-height: 100%;
    margin-right: 10px;
}

.tops__prop-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px 0px 24px;
}

.prop-item {
    border-radius: 100px;
    padding: 0px 8px;
    width: 76px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: #f6f6f6;
    margin-right: 8px;
}

.prop-item:last-child {
    margin-right: 0px;
}

.prop-item__icon {
    padding-right: 10px;
}

.prop-item__value {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 7px;
}

.tops__item-link {
    padding: 16px 24px 0px 24px;
}

.tops__item-link a {
    border-radius: 8px;
    padding: 0px 16px;
    width: auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-right: 0px;
    margin-bottom: 16px;
}

.tops__item-link a:hover {
    background: #cb170b;
}

.tops__item-link a svg {
    margin-left: 10px;
}

.garant {
    position: relative;
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.garant__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.garant__image {
    position: relative;
    right: 0px;
    bottom: -5px;
}

@media all and (max-width: 1100px) {
    .garant__image iframe {
        width: 500px;
    }
}

@media all and (max-width: 900px) {
    .garant__image iframe {
        width: 400px;
        height: 350px;
    }
}

@media all and (max-width: 900px) {
    .garant__image iframe {
        width: 100%;
    }
}

.garant__content {
    width: 45%;
    display: flex;
    flex-direction: column;
}

.garant__title {
    font-size: 42px;
    line-height: 110%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-bottom: 16px;
}

.garant__title span {
    color: var(--red);
}

.garant__blocks {
    display: flex;
    flex-direction: column;
}

.garant__text {
    margin-top: 140px;
}

.garant__text p {
    color: var(--black);
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 20px;
    font-family: 'Inter-Medium';
}

.garant__link a {
    border-radius: 8px;
    padding: 0px 16px;
    width: max-content;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-right: 36px;
    margin-bottom: 16px;
}

.article {
    background: rgba(246, 246, 246, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 62px;
    padding-bottom: 38px;
}

.article__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
}

.article__date {
    color: var(--red);
    font-size: 14px;
    font-family: 'Inter-Medium';
    line-height: 100%;
    position: relative;
}

.article__date::before {
    content: '';
    position: absolute;
    height: 24px;
    width: 1px;
    right: -62px;
    top: -5px;
    background: rgba(0, 0, 0, 0.15);
}

.article-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 124px;
}

.article-social p {
    color: var(--red);
    font-size: 14px;
    font-family: 'Inter-Medium';
    line-height: 100%;
}

.article-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.article-socials a {
    text-decoration: none;
    margin-left: 16px;
}

.article__detail {
    width: 74%;
}

.article__detail h1 {
    color: var(--black);
    font-size: 64px;
    font-family: 'Inter-Medium';
    line-height: 100%;
    margin: 0;
    margin-bottom: 24px;
}

.article__detail h3 {
    color: var(--black);
    font-size: 24px;
    font-family: 'Inter-Medium';
    line-height: 100%;
    margin: 0;
    margin-bottom: 24px;
}

.article__detail p {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.75);
    line-height: 150%;
    margin-bottom: 24px;
}

.article__detail img {
    max-width: 100%;
    width: 100%;
    margin: 38px 0px 62px 0px;
}

.article__detail ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.article__detail ul li {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.75);
    line-height: 150%;
    margin-bottom: 10px;
}

.projects__article {
    padding-top: 42px;
    background: rgba(246, 246, 246, 0.9);
}

.projects__article .block__title {
    color: var(--black);
    font-size: 42px;
    font-family: 'Inter-Medium';
    line-height: 100%;
}

.pay {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.pay__list {
    display: flex;
    flex-wrap: wrap;
}

.pay__item {
    margin-right: 16px;
    width: 49%;
    margin-bottom: 16px;
}

.pay__item:nth-of-type(2n) {
    margin-right: 0px;
}

.pay__item-image {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    height: 220px;
    margin-bottom: 4px;
}

.pay__item-image img {
    max-width: 100%;
}

.pay__item-content {
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.pay__item-title {
    letter-spacing: -0.02em;
    color: var(--black);
    font-family: 'Inter-Medium';
    font-size: 24px;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pay__item-numbers {
    display: flex;
    flex-direction: column;
}

.pay__item-number {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 36px;
    position: relative;
}

.pay__item-icon {
    width: 56px;
    height: 56px;
}

.pay__item-text {
    width: 85%;
    margin-left: 16px;
}

.pay__item-number::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 30px;
    background: rgba(0, 0, 0, 0.2);
    top: -32px;
    left: 28px;
}

.pay__item-number:nth-of-type(1)::after {
    display: none;
}

.pay__item-number:nth-of-type(4)::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 30px;
    background: var(--red);
    top: -32px;
    left: 28px;
}

.pay__item-text {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -0.02em;
}

.pay__item-text b {
    color: var(--black);
}

.white-ipoteka {
    display: flex;
    flex-direction: column;
    padding: 82px 0px;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: 0 auto;
}

.white-ipoteka__icon {
    margin-bottom: 20px;
}

.white-ipoteka__title {
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--black);
    line-height: 110%;
    font-size: 42px;
    font-family: 'Inter-Medium';
    margin-bottom: 16px;
}

.white-ipoteka__text {
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    line-height: 130%;
    font-size: 16px;
}

.banks {
    padding: 42px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.banks__block {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 42px;
    padding: 42px;
    background: var(--white);
}

.banks__block-title {
    width: 49%;
}

.banks__block-title h3 {
    text-transform: uppercase;
    color: var(--black);
    font-size: 16px;
    line-height: 100%;
    margin: 0;
    margin-bottom: 16px;
}

.banks__block-title span {
    letter-spacing: -0.02em;
    color: var(--red);
    font-size: 64px;
    font-family: 'Inter-Medium';
    line-height: 100%;
}

.banks__block-text {
    width: 49%;
    color: var(--black);
    font-size: 24px;
    line-height: 130%;
    padding: 42px 24px 42px 40px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.banks__top {
    text-align: center;
    padding: 24px 0px;
}

.banks__top h2 {
    color: var(--black);
    font-size: 16px;
    line-height: 110%;
    font-family: 'Inter-Medium';
}

.banks__top h2 span {
    color: var(--red);
}

.banks__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 0px;
    margin-bottom: 24px;
}

.banks__sliders {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 0;
}

.banks__slider .swiper-slide {
    display: flex;
    align-items: center;
    height: 100px;
    justify-content: center;
    width: 400px;
}

.banks__sliders .swiper-slide {
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: center;
    width: 200px;
}

.banks__sliders .swiper-slide img {
    max-width: 100%;
    max-height: 50px;
    max-width: 200px;
}

.bank-slide {
    display: flex;
    align-items: center;
    height: 100px;
    justify-content: center;
    width: 400px;
}

.bank-slide img {
    max-width: 100%;
    display: block;
}

.forms__grey {
    background: white;
    position: relative;
    /* height: 540px; */
    margin-bottom: 50px;
}

.forms__grey ~ .white .white__social-item:nth-of-type(2),
.news ~ .white .white__social-item:nth-of-type(2) {
    background: none;
}

.forms__grey .forms__container {
    padding-top: 90px;
}

.forms__grey .forms__image {
    position: absolute;
    right: 0;
    bottom: -4px;
    width: 50%;
    margin-top: -50px;
    overflow: hidden;
}

.forms__grey .forms__content {
    width: 45%;
}

.forms__grey .forms__title {
    font-size: 42px;
    line-height: 100%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-bottom: 16px;
}

.form__grey {
    margin-top: 33px;
}

.form__grey .forms__title span {
    color: var(--red);
}

.form__grey .form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form__grey .form__group label {
    font-size: 16px;
    color: var(--black);
    line-height: 24px;
    font-family: 'Inter-Medium';
    margin-bottom: 6px;
}

.form__grey .form__group input {
    border-radius: 8px;
    padding: 0px 12px;
    max-width: 400px;
    width: 100%;
    height: 48px;
    background: #F4F4F4;
    outline: none;
    border: none;
    box-sizing: border-box;
}

.form__grey .form__group input::placeholder {
    color: #9e9e9e;
    font-size: 14px;
    line-height: 20px;
}

.form__grey button,
.form__grey input[type="submit"] {
    border-radius: 8px;
    padding: 0px 16px;
    max-width: 400px;
    width: 100%;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Inter-Medium';
    box-sizing: border-box;
}

.form__grey button:hover,
.form__grey input[type="submit"]:hover {
    background: #cb170b;
}

.form__grey p {
    font-size: 14px;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    /* text-align: center; */
    margin-top: 16px;
    display: block;
    width: 100%;
    max-width: 400px;
}

.form__grey p a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.greys {
    background: #f6f6f6 url('../image/bg-grey.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 145px 0px;
    padding-top: 80px;
}

.greys__container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.greys__content {
    width: 47%;
    display: flex;
    flex-direction: column;
}

.greys__title {
    letter-spacing: -0.02em;
    color: var(--black);
    font-size: 42px;
    font-family: 'Inter-Medium';
    line-height: 100%;
    margin-bottom: 16px;
}

.greys__title span {
    color: var(--red);
}

.greys__text {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    line-height: 130%;
    font-size: 16px;
}

.greys__image {
    width: 47%;
}

.steps {
    position: relative;
}

.steps__list {
    display: flex;
    flex-direction: column;
}

.steps__block {
    position: relative;
}

.steps__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 700px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.steps__item-content {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.steps__item-num {
    border-radius: 100px;
    padding: 0px 16px;
    width: 96px;
    height: 32px;
    background: var(--red);
    text-transform: uppercase;
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 62px;
}

.steps__item-title {
    letter-spacing: -0.02em;
    color: var(--black);
    font-size: 42px;
    font-family: 'Inter-Medium';
    line-height: 100%;
    margin-bottom: 16px;
    padding-right: 40px;
}

.steps__item-text {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 130%;
    padding-right: 40px;
}

.steps__item-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin-top: -50px;
    overflow: hidden;
    transform: translate(50%, 0);
}

.steps__item-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.steps__block-f {
    background: var(--red);
}

.steps__block-f .steps__item-num {
    background: var(--white);
    text-transform: uppercase;
    color: var(--black);
    width: 150px;
}

.steps__block-f .steps__item-title {
    color: var(--white);
}

.steps__block-f .steps__item-text {
    color: var(--white);
}

.steps__finish {
    background: url('../image/steps6.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 700px;
}

.steps__finish .steps__item-num {
    border-radius: 100px;
    padding: 0px 16px;
    width: max-content;
    height: 32px;
    background: var(--white);
    text-transform: uppercase;
    color: var(--black);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 62px;
}

.steps__finish .steps__item-title {
    letter-spacing: -0.02em;
    color: var(--white);
    font-size: 42px;
    font-family: 'Inter-Medium';
    line-height: 100%;
    margin-bottom: 16px;
}

.steps__finish .steps__item-text {
    letter-spacing: -0.02em;
    color: var(--white);
    font-size: 16px;
    line-height: 130%;
}

.home {
    background: rgba(246, 246, 246, 0.9);
    padding-top: 24px;
    padding-bottom: 24px;
}

.home__top {
    margin-bottom: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home__top-text {
    width: 47%;
}

.home-block__title {
    color: var(--black);
    font-size: 42px;
    line-height: 110%;
    font-family: 'Inter-Medium';
    margin-bottom: 8px;
}

.home-block__text {
    font-size: 16px;
    color: var(--black);
    line-height: 130%;
}

.home__sliders {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-slide {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.home-slide__image {
    width: 100%;
    height: 300px;
    display: flex;
    object-fit: cover;
}

.home-slide__image img,
.home-slide__image iframe {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
}

.home-slide__title {
    color: var(--black);
    font-size: 24px;
    line-height: 100%;
    font-family: 'Inter-Medium';
    padding: 16px 24px;
}

.home-slide__descr {
    font-size: 16px;
    line-height: 130%;
    color: rgba(0, 0, 0, 0.5);
    padding: 0px 24px;
}

.home-slide__link {
    padding: 16px 24px 24px 24px;
}

.home-slide__link a {
    border-radius: 8px;
    padding: 0px 0px;
    width: 100%;
    font-size: 16px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
}

.home-slide__link a svg {
    margin-left: 10px;
}

.home__work-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 252px;
    position: relative;
    right: 0%;
    /* top: -10px; */
}

.home__work-nav .swiper-button-prevD::after {
    font-size: 0px;
    display: none;
}

.home__work-nav .swiper-button-prevD {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../image/prev.png');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    left: 0;
    cursor: pointer;
}

.home__work-nav .swiper-button-nextD::after {
    font-size: 0px;
    display: none;
}

.home__work-nav .swiper-button-nextD {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../image/next.png');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    left: 80%;
    cursor: pointer;
}

.home__work-nav .swiper-horizontal > .swiper-pagination-bullets,
.home__work-nav .swiper-pagination-bullets.swiper-pagination-horizontal,
.home__work-nav .swiper-pagination-custom,
.home__work-nav .swiper-pagination-fraction {
    bottom: -40px;
    text-align: center;
    background: var(--white);
    border-radius: 24px;
    padding: 8px 10px;
    width: 124px;
    left: 80px;
    margin-left: 45px;
}

.swiper-paginationD {
    text-align: center;

}

.home__work-nav .swiper-pagination-bullet {
    background: #d9d9d9;
    opacity: 1;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.home__work-nav .swiper-pagination-bullet-active {
    background: var(--black);
    border-radius: 50%;
}

.menus {
    padding: 20px 0px;
    background: rgba(246, 246, 246, 0.9);
    overflow: hidden;
}

.menus__block {
    position: relative;
}

.menus__sliders {
    width: calc(100% - 120px);
    height: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
    padding: 0px 60px;
}

.menus__sliders .swiper-button-prevM::after {
    font-size: 0px;
    display: none;
}

.menus__sliders .swiper-button-prevM {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    background: url('../image/prev.svg');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    left: 0%;
    top: 0%;
    z-index: 10;
    cursor: pointer;
}

.menus__sliders .swiper-button-nextM::after {
    font-size: 0px;
    display: none;
}

.menus__sliders .swiper-button-nextM {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    background: url('../image/next.svg');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    left: auto;
    right: 0%;
    top: 0%;
    z-index: 10;
    cursor: pointer;
}

.menus-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.25);
    padding-bottom: 28px;
}

.menus-slide a {
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    font-family: 'Inter-Medium';
    line-height: 110%;
    text-decoration: none;
}

.menus__sliders .active-link {
    border-bottom: 2px solid var(--red);
}

.menus__sliders .active-link a {
    color: var(--black);
}

.directors {
    background: rgba(246, 246, 246, 0.9);
    padding-top: 82px;
    padding-bottom: 62px;
}

.directors___container {
    display: flex;
    flex-direction: row;
}

.directors__content {
    width: 40%;
}

.directors__names {
    width: 60%;
    text-align: center;
    margin-top: 24px;
}

.directors__names p {
    font-size: 18px;
    color: var(--black);
    font-family: 'Inter-Medium';
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.directors__names span {
    font-size: 14px;
    line-height: 130%;
    color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 8px 0;
}

.directors__citata {
    width: 55%;
    position: relative;
}

.directors__citata::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    background: url('../image/c-1.svg');
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    left: -50px;
}

.directors__citata::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    background: url('../image/c-2.svg');
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 120px;
    right: -50px;
}

.directors__citata p {
    font-size: 24px;
    color: var(--black);
    line-height: 100%;
    margin-bottom: 24px;
}

.directors__link a {
    border-radius: 8px;
    padding: 0px 16px;
    width: max-content;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-top: 62px;
}

.what {
    padding-top: 62px;
    padding-bottom: 42px;
    background: rgba(246, 246, 246, 0.9);
}

.what__top {
    width: 47%;
    font-size: 42px;
    line-height: 110%;
    color: var(--black);
    font-family: 'Inter-Medium';
    /* margin-bottom: 16px; */
}

.what__top span {
    color: var(--red);
}

.what__list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
}

.what__item {
    width: 45%;
    display: flex;
    flex-direction: row;
    height: 208px;
    margin-bottom: 16px;
    margin-right: 16px;
    background: var(--white);
    border-radius: 24px;
    align-items: center;
    padding: 0px 24px;
}

.what__item:nth-of-type(2n) {
    margin-right: 0px;
}

.what__item-red {
    background: var(--red);
}

.what__item-icon {
    width: 13%;
}

.what__item-content {
    width: 80%;
}

.what__item-title {
    font-size: 24px;
    color: var(--black);
    font-family: 'Inter-Medium';
    line-height: 100%;
    margin-bottom: 16px;
}

.what__item-red .what__item-title {
    color: var(--white);
}

.what__item-text {
    font-size: 14px;
    line-height: 130%;
    color: var(--black);
}

.what__item-red .what__item-text {
    color: var(--white);
}

.what__item-link a {
    margin-top: 24px;
    border: 1px solid rgba(179, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0px 16px;
    width: max-content;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    font-family: 'Inter-Medium';
}

.what__item-link a svg {
    margin-left: 10px;
}

.what__item-red .what__item-link a {
    margin-top: 24px;
    border: 1px solid var(--white);
    background: var(--white);
    border-radius: 8px;
    padding: 0px 16px;
    width: max-content;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    font-family: 'Inter-Medium';
}

.what__item-red .what__item-link a svg {
    margin-left: 10px;
}

.sotrud {
    padding: 62px 0px;
}

.sotrud__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sotrud__title {
    width: 47%;
    font-size: 42px;
    line-height: 110%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-bottom: 16px;
}

.sotrud__title span {
    color: var(--red);
}

.sotrud__content {
    display: flex;
    flex-direction: column;
    width: 47%;
}

.sotrud__subtitle {
    font-size: 24px;
    font-family: 'Inter-Medium';
    line-height: 110%;
    color: var(--black);
    margin-bottom: 16px;
}

.sotrud__text {
    font-size: 16px;
    color: var(--black);
    line-height: 130%;
}

.sotrud__link a {
    border-radius: 8px;
    padding: 0px 16px;
    width: max-content;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-top: 19px;
}

.teams {
    padding: 62px 0px;
}

.teams__top {
    width: 47%;
    font-size: 42px;
    line-height: 110%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-bottom: 16px;
}

.teams__top span {
    color: var(--red);
}

.teams__list {
    display: flex;
    flex-wrap: wrap;
}

.teams__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 32.3%;
    margin-bottom: 42px;
    margin-right: 16px;
}

.teams__item:nth-of-type(3n) {
    margin-right: 0px;
}

.teams__item-spec {
    color: var(--white);
    font-size: 16px;
    line-height: 150%;
    font-family: 'Inter-Medium';
    border-radius: 100px;
    padding: 4px 12px;
    background: var(--red);
    width: max-content;
    position: absolute;
    bottom: 116px;
}

.teams__item-image img {
    width: 100%;
    max-width: 100%;
    height: 399px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.teams__item-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin-top: 16px;
}

.teams__item-content span {
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--black);
    font-family: 'Inter-Medium';
    line-height: 100%;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.teams__item-content p {
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 130%;
    margin: 0;
}

.abouts {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.abouts__top {
    display: flex;
    flex-direction: row;
}

.abouts__top-left {
    width: 49%;
}

.abouts__minititle {
    text-transform: uppercase;
    color: var(--black);
    font-size: 16px;
    line-height: 100%;
}

.abouts__title {
    font-size: 42px;
    line-height: 110%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-top: 16px;
}

.abouts__title span {
    color: var(--red);
}

.abouts__top-right {
    width: 49%;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 24px;
}

.abouts__subtitle {
    color: var(--black);
    font-family: 'Inter-Medium';
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 30px;
}

.abouts__description {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 130%;
}

.abouts__lists {
    display: flex;
    flex-wrap: wrap;
    margin-top: 42px;
}

.abouts__item {
    width: 35%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    margin-right: 8px;
    margin-bottom: 8px;
    padding: 24px 24px;
}

.abouts__item:nth-of-type(2) {
    width: 55%;
}

.abouts__item:nth-of-type(3) {
    width: 55%;
}

.abouts__item-title {
    font-size: 24px;
    color: var(--black);
    line-height: 120%;
    font-family: 'Inter-Medium';
    margin-top: 24px;
    margin-bottom: 24px;
}

.abouts__item-text {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 130%;
}

.history {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.history__container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.history__content {
    width: 48%;
}

.history__minititle {
    text-transform: uppercase;
    color: var(--black);
    font-size: 16px;
    line-height: 100%;
}

.history__title {
    font-size: 42px;
    line-height: 110%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-top: 16px;
}

.history__text {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 130%;
    margin-top: 42px;
    margin-bottom: 42px;
}

.history__link a {
    border-radius: 8px;
    padding: 0px 16px;
    width: max-content;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-left: 0px;
}

.history__link a:hover {
    background: #cb170b;
}

.history__link a svg {
    margin-left: 8px;
}

.history__image {
    width: 48%;
}

.history__image img {
    max-width: 100%;
}

.adress {
    background: rgba(246, 246, 246, 0.9);
}

.adress__lists {
    display: flex;
    flex-direction: column;
}

.adress__item {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 62px 0px;
}

.adress__item-slider {
    width: 48%;
    padding-left: 50px;
}

.adress__sliders {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.adress-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.adress__item-content {
    width: 48%;
    display: flex;
    flex-direction: column;
}

.adress__item-top {
    display: flex;
    flex-wrap: wrap;
}

.adress__item-city {
    color: var(--white);
    font-size: 16px;
    line-height: 150%;
    font-family: 'Inter-Medium';
    border-radius: 100px;
    padding: 4px 12px;
    background: var(--red);
    width: max-content;
    margin-right: 8px;
    margin-bottom: 8px;
}

.adress__item-lines--green {
    color: var(--white);
    font-size: 16px;
    line-height: 150%;
    font-family: 'Inter-Medium';
    border-radius: 100px;
    padding: 4px 12px;
    background: var(--red);
    width: max-content;
    background: #8DCE3B;
    margin-bottom: 8px;
    margin-right: 8px;
}

.adress__item-lines {
    color: var(--white);
    font-size: 16px;
    line-height: 150%;
    font-family: 'Inter-Medium';
    border-radius: 100px;
    padding: 4px 12px;
    background: var(--red);
    width: max-content;
    background: #a44398;
    margin-bottom: 8px;
    margin-right: 8px;
}

.adress__item-title {
    color: var(--black);
    font-size: 24px;
    line-height: 100%;
    font-family: 'Inter-Medium';
    margin-bottom: 8px;
    margin-top: 16px;
}

.adress__item-title span {
    color: var(--red);
}

.adress__item-adres {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 8px;
}

.adress__item-time {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 130%;
}

.adress__item-link a {
    margin-top: 16px;
    text-align: center;
    color: var(--black);
    font-size: 16px;
    font-family: 'Inter-Medium';
    border-radius: 8px;
    padding: 8px 16px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: max-content;
    text-decoration: none;
}

.adress__item-metro {
    margin-top: 80px;
}

.adress__item-metro ul {
    padding-left: 30px;
}

.adress__item-metro ul li {
    list-style: none;
    position: relative;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 130%;
}

.adress__item-metro ul li::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--red);
    left: -20px;
    top: 6px;
}

.contact {
    padding: 143px 0px;
    position: relative;
}

.contact__map {
    position: absolute;
    top: -95px;
    right: 0;
    width: 50%;
    height: calc(100% + 95px);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
}

.breadcrums_contact {
    padding-top: 37px;
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.contact__content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact__title {
    color: var(--black);
    font-size: 42px;
    line-height: 100%;
    font-family: 'Inter-Medium';
    margin-bottom: 42px;
}

.contact__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.contact__item p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 100%;
    font-family: 'Inter-Medium';
    margin-bottom: 8px;
}

.contact__item a {
    color: var(--black);
    font-size: 32px;
    line-height: 100%;
    font-family: 'Inter-Medium';
    text-decoration: none;
    word-break: break-all;
}

.contact__item span {
    color: var(--black);
    font-size: 32px;
    line-height: 100%;
    font-family: 'Inter-Medium';
    text-decoration: none;
}

.portfolio {
    padding: 62px 0px;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.portfolio::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    background: url('../image/portfolio-after.png');
    background-repeat: no-repeat;
    width: 685px;
    height: 1067px;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0%;
    right: 0;
    background-repeat: no-repeat;
    background: url('../image/portfolio-before.png');
    width: 685px;
    height: 1067px;
}

.portfolio__list {
    display: flex;
    flex-wrap: wrap;
}

.portfolio__top {
    width: 49%;
    margin-right: 16px;
    display: flex;
    flex-direction: column;
}

.portfolio__top-title {
    font-size: 42px;
    line-height: 100%;
    color: var(--white);
    font-family: 'Inter-Medium';
}

.portfolio__top-text {
    font-size: 14px;
    line-height: 130%;
    color: var(--white);
}

.portfolio__item {
    width: 49%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-right: 16px;
    margin-bottom: 16px;
}

.portfolio__item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, #000 100%);
    z-index: 2;
}

.portfolio__item-image img {
    max-width: 100%;
}

.portfolio__item-title {
    position: absolute;
    bottom: 24px;
    z-index: 99;
    left: 24px;
}

.portfolio__item-title a {
    font-size: 24px;
    font-family: 'Inter-Medium';
    text-decoration: none;
    line-height: 130%;
    color: var(--white);
}

.portfolio__item:nth-of-type(2) {
    margin-right: 0px;
}

.portfolio__item:nth-of-type(4) {
    width: 24%;
}

.portfolio__item:nth-of-type(5) {
    width: 24%;
    margin-right: 0px;
}

.portfolio__item:nth-of-type(6) {
    width: 100%;
}

.blog {
    padding: 62px 0px;
}

.blog__list {
    display: flex;
    flex-wrap: wrap;
}

.news__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin-bottom: 24px;
}

.new .news__top {
    margin-bottom: 45px;
    display: inline-block;
}

.new .news__top a {
    display: inline-block;
}

.news__top-sort {
    width: 26%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;

}

.news__top-sort span {
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    font-family: 'Inter-Medium';
    font-size: 16px;
    line-height: 130%; /* 20.8px */
    display: inline-block;
    width: 50%;
}

.news__top-sort {
    position: relative;
}

.news__top-sort select {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    border-radius: 8px;
    border-radius: 8px;
    border: 0px solid #F5F5F5;
    background: transparent;
    height: 46px;
    padding: 0px 12px;
    width: 140px;
    margin-right: 8px;
    outline: none;
    padding-left: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    position: relative;
    outline: none;
    cursor: pointer;
}

.news__top-sort::after {
    content: '';
    position: absolute;
    display: block;
    width: 14px;
    height: 10px;
    background-image: url('../image/acc.svg');
    background-repeat: no-repeat;
    background-size: contain;
    top: 18px;
    right: 0px;
    z-index: 2;
}

.news__top-sort select option {
    background: transparent;
}

.tags__sliders {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-right: 30px;
    position: relative;
}

.tags__slider-block {
    width: 40%;
    position: relative;
    padding-right: 30px;
    margin-left: 30px;
}

.swiper-button-prevTags {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: url('../image/p-tag.svg');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    cursor: pointer;
    left: -30px;
    top: 4px;
}

.swiper-button-nextTags {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    background: url('../image/n-tag.svg');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    cursor: pointer;
    left: auto;
    top: 4px;
    right: 0;
}

.tags-slide__item a {
    border-radius: 100px;
    padding: 0px 8px;
    width: auto;
    height: 33px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-decoration: none;
    color: var(--white);
    font-size: 12px;
    font-family: 'Inter-Medium';
}

.tags-slide__item--blue a {
    background: #237bff;
}

.tags-slide__item--grey a {
    background: #65b6bb;
}

.tags-slide__item--green a {
    background: #42ce00;
}

.tags-slide__item--kisl a {
    background: #cf0;
}

.blog__item {
    display: flex;
    flex-direction: column;
    width: 32%;
    margin-right: 16px;
    margin-bottom: 42px;
}

.blog__item:nth-of-type(5) {
    margin-right: 0px;
    width: 66%;
}

.blog .blog__item:nth-of-type(5) .blog__item-image {
    height: 245px;
    overflow: hidden;
    border-radius: 8px;
}

.blog .blog__item:nth-of-type(5) .blog__item-image img {
    width: 100%;
    object-fit: cover;
}

.blog .blog__item:nth-of-type(3) {
    margin-right: 0px;
}

.blog .blog__item:nth-of-type(8) {
    margin-right: 0px;
}

.blog .blog__item:nth-of-type(9) {
    margin-right: 16px;
    width: 66%;
}

.blog .blog__item:nth-of-type(9) .blog__item-image {
    height: 245px;
    overflow: hidden;
    border-radius: 8px;
}

.blog .blog__item:nth-of-type(9) .blog__item-image img {
    width: 100%;
    object-fit: cover;
}

.blog .blog__item:nth-of-type(10) {
    margin-right: 0px;
}

.blog__item-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 16px;
}

.blog__item-tag a {
    border-radius: 100px;
    padding: 0px 8px;
    width: auto;
    height: 23px;
    /* background: var(--red); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-decoration: none;
    color: var(--white);
    font-size: 12px;
    font-family: 'Inter-Medium';
}

.blog-slide__tag--green a {
    background: #42ce00;
}

.blog-slide__tag--kisl a {
    background: #cf0;
    color: var(--black);
}

.blog-slide__tag--grey a {
    background: #65b6bb;
}

.blog-slide__tag--blue a {
    background: #237bff;
}

.blog__item-date {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 100%;
}

.blog__item-title a {
    letter-spacing: -0.03em;
    color: var(--black);
    font-size: 24px;
    font-family: 'Inter-Medium';
    text-decoration: none;
    padding: 0px 16px;
    display: block;
}

.blog__item-title a:hover {
    color: var(--red);
    text-decoration: underline;
}

.blog__item-text {
    margin-top: 10px;
    padding: 0px 16px;
    display: block;
    color: rgba(0, 0, 0, 0.5);
    font-size: 13px;
    line-height: 130%;
    white-space: nowrap;
    overflow: hidden;
    height: 40px;
    text-overflow: ellipsis;
}

.blog__item-image img {
    max-width: 100%;
    width: 100%;
    height: 245px;
    object-fit: cover;
    border-radius: 8px;
}

.blog__load {
    margin: 0px 0px 42px 0px;
}

.blog__load button {
    border: none;
    border-radius: 8px;
    padding: 0px 16px;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-right: 36px;
    margin-bottom: 16px;
    font-size: 16px;
    font-family: 'Inter-Medium';
    cursor: pointer;
}

.blog__load button:hover {
    background: #cb170b;
}

.error {
    padding-bottom: 82px;
}

.error__container {
    display: flex;
    flex-direction: column;
    max-width: 570px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.error__image img {
    max-width: 100%;
}

.error__title {
    font-size: 24px;
    line-height: 100%;
    font-family: 'Inter-Medium';
    color: var(--black);
}

.error__text {
    font-size: 16px;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    line-height: 130%;
    text-align: center;
    margin: 16px 0px;
    display: block;
}

.error__link a {
    border-radius: 8px;
    padding: 0px 16px;
    width: max-content;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
}

.error__link a:hover {
    background: #cb170b;
}

.error__link a:focus {
    background: #cb170b;
}

.error__link a:active {
    background: #aa1d14;
}

.winfo {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.winfo__container {
    display: flex;
    flex-direction: row;
    border-radius: 42px;
    padding: 42px;
    background: var(--white);
}

.winfo__l {
    width: 49%;
}

.winfo__title {
    font-size: 62px;
    letter-spacing: -0.02em;
    color: var(--red);
    font-family: 'Inter-Medium';
    margin-bottom: 106px;
}

.winfo__text {
    font-size: 24px;
    color: var(--black);
    line-height: 130%;
}

.winfo__r {
    width: 49%;
    display: flex;
    flex-direction: column;
}

.winfo__item {
    border-radius: 24px;
    padding: 24px;
    background: #f6f6f6;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
}

.winfo__item:last-child {
    margin-bottom: 0px;
}

.winfo__item-icon {
    width: 15%;
}

.winfo__item-text {
    width: 80%;
    color: var(--black);
    font-size: 24px;
    line-height: 130%;
}

.step {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.step__top {
    color: var(--black);
    font-size: 42px;
    font-family: 'Inter-Medium';
    margin-bottom: 24px;
}

.step__list {
    display: flex;
    flex-wrap: wrap;
}

.step__item {
    width: 45%;
    margin-right: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    padding: 24px;
    background: var(--white);
}

.step__item:nth-of-type(2n) {
    margin-right: 0px;
}

.step__item-title {
    line-height: 120%;
    font-size: 24px;
    font-family: 'Inter-Medium';
    margin-top: 12px;
    margin-bottom: 24px;
    color: var(--black);
}

.step__item-title span {

}

.step__item-text ul {
    padding-left: 20px;
}

.step__item-text ul li {
    font-size: 14px;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.step__item-text ul li:last-child {
    margin-bottom: 0px;
}

.video {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.video__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.video__block {
    margin-top: 50px;
}

.video__block img {
    max-width: 100%;
}

.video__title {
    width: 48%;
    font-size: 42px;
    letter-spacing: -0.02em;
    color: var(--black);
    font-family: 'Inter-Medium';
}

.video__title span {
    color: var(--red);
}

.video__text {
    width: 42%;
    font-size: 24px;
    color: var(--black);
    line-height: 120%;
    border-radius: 8px;
    padding: 24px 42px;
    background: var(--white);
}

.master {
    padding: 12px 0px 82px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.master__top {
    color: var(--black);
    font-size: 42px;
    font-family: 'Inter-Medium';
    margin-bottom: 24px;
    text-align: center;
}

.master__top span {
    color: var(--red);
}

.m__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.m__left {
    width: 20%;
    display: flex;
    flex-direction: column;
}

.m__right {
    width: 78%;
}

.m-top__item {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 24px;

}

.m-top__item-title {
    text-align: center;
    color: var(--black);
    font-size: 24px;
    font-family: 'Inter-Medium';
    margin-bottom: 8px;
}

.m-top__item-text {
    text-align: center;
    color: var(--black);
    font-size: 24px;
    font-family: 'Inter-Medium';
    opacity: 0.5;
}

.m__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 24px;
    margin-top: 42px;
    position: relative;
}

.m__item::after {
    content: '';
    position: absolute;
    height: 42px;
    width: 1px;
    background: rgba(0, 0, 0, 0.15);
    bottom: 100%;
    left: 50%;
    z-index: 2;
}

.m__item-title {
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--black);
    font-size: 16px;
    line-height: 130%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.m__item-text {
    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    font-family: 'Inter-Medium';
    line-height: 120%;
}

.m__item-text span {
    color: var(--black);
}

.m-w__row {
    display: flex;
    flex-direction: row;
}

.m-w__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--white);
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    margin-top: 42px;
    position: relative;
    width: 17%;
    margin-right: 16px;
}

.m-w__item:last-child {
    background: var(--red);
    margin-right: 0px;
}

.m-w__item:last-child .m-w__item-title {
    color: var(--white);
}

.m-w__item:last-child .m-w__item-text {
    color: var(--white);
}

.m-w__item:last-child .m-w__item-text span {
    color: var(--white);
}

.m-w__item::after {
    content: '';
    position: absolute;
    height: 42px;
    width: 1px;
    background: rgba(0, 0, 0, 0.15);
    bottom: 100%;
    left: 50%;
    z-index: 2;
}

.m-w__item-title {
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--black);
    font-size: 16px;
    line-height: 130%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 24px;
    margin-bottom: 24px;
    height: 38px;
}

.m-w__item-text {
    color: rgba(0, 0, 0, 0.5);
    font-size: 20px;
    font-family: 'Inter-Medium';
    line-height: 120%;
}

.m-w__item-text span {
    color: var(--black);
}

.m__right .m-top__item {
    border-radius: 8px;
    padding: 24px;
    width: auto;
    background: var(--white);
    border: none;
}

.master__container {
    background: var(--white);
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    margin-top: 82px;
    position: relative;
    overflow: hidden;
}

.master__l {
    width: 50%;
    padding: 94px 62px;
}

.master__l-icon {
    margin-bottom: 24px;
}

.master__l-title {
    color: var(--black);
    font-size: 42px;
    font-family: 'Inter-Medium';
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 24px;
}

.master__l-text p {
    letter-spacing: -0.02em;
    color: var(--black);
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 24px;
}

.master__l-image {
    position: absolute;
    bottom: -10px;
}

.master__l-image img {
    max-width: 100%;
}

.vigod {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.vigod__top {
    color: var(--black);
    font-size: 42px;
    font-family: 'Inter-Medium';
    text-align: center;
    margin-bottom: 82px;
}

.vigod__list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.vigod__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 17%;
}

.vigod__item-icon {
    margin-bottom: 16px;
}

.vigod__item-text {
    padding-top: 16px;
    text-align: center;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.docs {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.docs__top {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: space-between;
}

.docs__top-title {
    color: var(--black);
    font-size: 42px;
    font-family: 'Inter-Medium';
    margin-bottom: 24px;
}

.docs__work-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 252px;
    position: relative;
    right: 0%;
    top: -10px;
}

.docs__work-nav .swiper-button-prevD::after {
    font-size: 0px;
    display: none;
}

.docs__work-nav .swiper-button-prevD {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../image/prev.png');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    left: 0;
    cursor: pointer;
}

.docs__work-nav .swiper-button-nextD::after {
    font-size: 0px;
    display: none;
}

.docs__work-nav .swiper-button-nextD {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../image/next.png');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    left: 80%;
    cursor: pointer;
}

.docs__work-nav .swiper-horizontal > .swiper-pagination-bullets,
.docs__work-nav .swiper-pagination-bullets.swiper-pagination-horizontal,
.docs__work-nav .swiper-pagination-custom,
.docs__work-nav .swiper-pagination-fraction {
    bottom: -40px;
    text-align: center;
    background: var(--white);
    border-radius: 24px;
    padding: 8px 10px;
    width: 124px;
    left: 80px;
    margin-left: 45px;
}

.swiper-paginationD {
    text-align: center;

}

.docs__work-nav .swiper-pagination-bullet {
    background: #d9d9d9;
    opacity: 1;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.docs__work-nav .swiper-pagination-bullet-active {
    background: var(--black);
    border-radius: 50%;
}

.docs__container {
    width: auto;
    overflow: hidden;
    max-width: 1160px;
    margin: 0 auto;
}

.docs__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.docs-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.docs-slide__title {
    color: var(--black);
    text-align: center;
    font-size: 24px;
    margin-top: 16px;
    font-family: 'Inter-Medium';
}

.docs-slide__image {
    display: flex;
    justify-content: center;
}

.docs-slide__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.docs-slide__image-wrapper::before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: url("../image/glass.svg");
    background-size: 56px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .5s;
}

.docs-slide__image-wrapper:hover::before {
    opacity: 1;
}

.docs-slide__image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.prices {
    padding-top: 82px;
    padding-bottom: 70px;
    background: var(--white);
}

.prices__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.prices__top-left {
    max-width: 572px;
}

.prices__top-title {
    color: var(--black);
    font-size: 42px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin-bottom: 16px;
}

.prices__top-text {
    color: var(--black);
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    line-height: 130%;
    font-size: 16px;
}

.prices__list {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
}

.prices__item {
    display: flex;
    flex-direction: column;
    width: 21.8%;
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 16px;
    padding: 16px;
    position: relative;
}

.prices__item:hover {
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.prices__item-title {
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--black);
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 8px;
}

.prices__item-price {
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--red);
    font-size: 32px;
    font-family: 'Inter-Medium';
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 16px;
}

.prices__item-block {
    display: flex;
    flex-direction: column;
    padding-top: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.prices__item-block--title {
    color: var(--black);
    letter-spacing: -0.02em;
    font-size: 14px;
    font-family: 'Inter-SemiBold';
    margin-bottom: 10px;
}

.prices__item-block--text {
    color: var(--black);
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    line-height: 130%;
    font-size: 14px;
    margin-bottom: 16px;
}

.prices__item-doc a {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background: var(--white);
    color: var(--red);
    text-decoration: none;
    margin-top: 8px;
    padding: 0px 16px;
}

.prices__item-link a {
    border-radius: 8px;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-top: 24px;
}

.prices__item-link a:hover {
    background: #cb170b;
}

.price-acc__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 0px;
}

.price-acc__item {
    list-style: none;
    width: 100%;
    margin-right: 0;
    padding-top: 8px;
    cursor: pointer;
}

.price-acc__title {
    color: var(--black);
    font-size: 14px;
    font-family: 'Inter-Medium';
    font-style: normal;
    line-height: 110%;
    position: relative;
    display: flex;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 12px;
}

.price-acc__title img {
    max-width: 100%;
    margin-right: 20px;
}

.open-accordeon {
    transition: 0.3s;
    transition: 0.5s ease-in-out;
}

.price-acc__control {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    width: 100%;
    border: none;
    height: 52px;
    padding: 0px 20px 0px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.5s;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}

.price-acc__icon span {
    color: #323232;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.price-acc__icon {
    position: relative;
    display: inline-block;
    min-width: 14px;
    height: 10px;
    transition: all 0.5s;
    background: url('../image/acc.svg') 0 0/contain no-repeat;
}

.price-acc__list .open-accordeon .price-acc__icon {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: all 0.5s;
}

.price-acc__content {
    padding: 20px;
    display: none;
    opacity: 0;
    animation: ani 1s forwards;
}

.price-acc__list .open-accordeon .price-acc__content {
    display: block;
    transition: 0.3s;
    color: var(--black);
    background: rgba(0, 0, 0, 0.03);
    margin-top: 0px;
    overflow: hidden;
    padding: 16 16px;
    will-change: max-height;
    opacity: 1;
    border-radius: 0px 0px 8px 8px;
    animation: ani 1s forwards;
}

.price-acc__list .open-accordeon .price-acc__content .acc__block-text {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 16px;
}

.price-acc__list .open-accordeon .price-acc__content .acc__block-title {
    color: var(--black);
    font-size: 14px;
    font-style: normal;
    font-family: 'Inter-Medium';
    line-height: 130%;
    margin-bottom: 4px;
}

.prog {
    padding: 22px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.prog__top {
    font-size: 42px;
    line-height: 100%;
    color: var(--black);
    font-family: 'Inter-Medium';
    margin-bottom: 24px;
}

.prog__line {
    background: var(--red);
}

.prog__line-header {
    height: 64px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.prog__line-name {
    color: var(--white);
    line-height: 100%;
    font-family: 'Inter-Medium';
    font-size: 16px;
    width: 25%;
    text-align: left;
}

.prog__line-title {
    color: var(--white);
    line-height: 100%;
    font-family: 'Inter-Medium';
    font-size: 16px;
    width: 25%;
    text-align: center;
}

.prog__list {
    display: flex;
    flex-direction: column;
}

.prog__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 24px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.prog__item:last-child {
    border-bottom: 0px;
}

.prog__item-logo {
    width: 25%;
    height: 50px;
}

.prog__item-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 100%;
}

.prog__item-value {
    width: 25%;
}

.prog__item-value span {
    background: var(--white);
    border-radius: 1000px;
    padding: 16px 24px;
    text-align: center;
    margin-left: 16px;
    display: block;
}

.prog__item-value p {
    display: none;
}

.black {
    background: url('../image/bg-black.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 795px;
    position: relative;
    overflow: hidden;
}

.black__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow: hidden;
}

.black__content {
    width: 45%;
    display: flex;
    flex-direction: column;
    padding-top: 193px;
}

.black__icon {
    margin-bottom: 24px;
}

.black__title {
    color: var(--white);
    font-size: 62px;
    line-height: 110%;
    font-family: 'Inter-Medium';
    margin-bottom: 24px;
}

.black__text {
    color: var(--white);
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 24px;
}

.black__link a {
    border-radius: 8px;
    padding: 0px 16px;
    height: 48px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
}

.black__link a:hover {
    background: #cb170b;
}

.black__image {
    width: 50%;
    position: absolute;
    right: 2%;
    bottom: -10px;
}

.black__image img {
    max-width: 100%;
    width: 740px;
}

.spec {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.spec__container {
    display: flex;
    flex-direction: row;
    max-width: 820px;
    justify-content: space-between;
    margin: 0 auto;
}

.spec__man {
    display: flex;
    flex-direction: column;
    /* width: 30%; */
}

.spec__man-image {
    display: flex;
    width: 248px;
    height: 248px;
    position: relative;
    border-radius: 50%;
}

.spec__man-image::before {
    content: '';
    position: absolute;
    width: 33px;
    height: 33px;
    background: url('../image/online.svg');
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.spec__man-image img {
    max-width: 100%;
}

.spec__man-block {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.spec__man-fio {
    letter-spacing: -0.03em;
    text-align: center;
    color: var(--black);
    font-family: 'Inter-Medium';
    font-size: 18px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.spec__man-dol {
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    line-height: 130%;
}

.spec__content {
    width: 61%;
}

.spec__white {
    padding: 24px 42px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.spec__white-title {
    color: var(--black);
    font-size: 42px;
    line-height: 110%;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 24px;
}

.spec__white-text {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 24px;
}

.spec__white-text span {
    color: black;
}

.spec__white-link a {
    border-radius: 8px;
    padding: 0px 16px;
    height: 48px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    text-align: center;
}

.spec__white-link a:hover {
    background: #cb170b;
}

.block__info-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 998px) {
    .block__info-items {
        grid-template-columns: 1fr;
    }
}

.info-item {
    background: white;
    border-radius: 12px;
    padding: 24px;
}

.info-item__title {
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item__link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
}

.info-item__link {
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: rgba(179, 0, 0, 1);
    text-decoration: none;
}

.info-item__link-arrow {
    width: 24px;
}

.doms {
    padding: 42px 0px;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.doms__top {
    font-size: 42px;
    color: var(--black);
    font-family: "Montserrat", sans-serif;
    margin-bottom: 24px;
}

.doms__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.likeit {
    padding: 42px 0px;
    background: var(--white);
}

.likeit__top {
    font-size: 42px;
    color: var(--black);
    font-family: "Montserrat", sans-serif;
    margin-bottom: 24px;
}

.likeit__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.otziv {
    padding: 42px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.otziv__top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.otziv__top-title {
    font-size: 42px;
    color: var(--black);
    font-family: "Montserrat", sans-serif;
    margin-bottom: 24px;
}

.otziv__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.otziv__item {
    display: flex;
    flex-direction: column;
}

.otziv__item-image img,
.otziv__item-image iframe {
    max-width: 100%;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.otziv__item-title a {
    font-size: 24px;
    color: var(--black);
    font-family: 'Inter-Medium';
    letter-spacing: -0.03em;
    text-decoration: none;
    margin-top: 16px;
    padding: 0px 10px;
    display: block;
}

.otziv__item-title a span {
    color: var(--red);
}

.otziv__work-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 75px;
    position: relative;
    right: 0%;
    top: -10px;
}

.otziv__work-nav .swiper-button-prevO::after {
    font-size: 0px;
    display: none;
}

.otziv__work-nav .swiper-button-prevO {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../image/prev.png');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    cursor: pointer;
    left: 0;
}

.otziv__work-nav .swiper-button-nextO::after {
    font-size: 0px;
    display: none;
}

.otziv__work-nav .swiper-button-nextO {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../image/next.png');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    cursor: pointer;
    left: 80%;
}

.otziv__work-nav .swiper-horizontal > .swiper-pagination-bullets,
.otziv__work-nav .swiper-pagination-bullets.swiper-pagination-horizontal,
.otziv__work-nav .swiper-pagination-custom,
.otziv__work-nav .swiper-pagination-fraction {
    bottom: -40px;
    text-align: center;
    background: var(--white);
    border-radius: 24px;
    padding: 12px 10px;
    width: 124px;
    left: 80px;
    margin-left: 45px;
}

.swiper-paginationO {
    text-align: center;

}

.otziv__work-navv .swiper-pagination-bullet {
    background: #d9d9d9;
    opacity: 1;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.otziv__work-nav .swiper-pagination-bullet-active {
    background: var(--black);
    border-radius: 50%;
}

.coteg {
    background: rgba(246, 246, 246, 0.9);
}

.coteg__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin-top: -100px;
}

.coteg__work-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 252px;
    position: absolute;
    right: auto;
    left: 42%;
    bottom: 2%;
    z-index: 9;
}

.coteg__work-nav .swiper-button-prevC::after {
    font-size: 0px;
    display: none;
}

.coteg__work-nav .swiper-button-prevC {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../image/oprev.svg');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    cursor: pointer;
    left: 0;
}

.coteg__work-nav .swiper-button-nextC::after {
    font-size: 0px;
    display: none;
}

.coteg__work-nav .swiper-button-nextC {
    content: '';
    position: absolute;
    width: 42px;
    height: 42px;
    background: url('../image/onext.svg');
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 0px;
    opacity: 1;
    cursor: pointer;
    left: 80%;
}

.coteg__work-nav .swiper-horizontal > .swiper-pagination-bullets,
.coteg__work-nav .swiper-pagination-bullets.swiper-pagination-horizontal,
.coteg__work-nav .swiper-pagination-custom,
.coteg__work-nav .swiper-pagination-fraction {
    bottom: -40px;
    text-align: center;
    background: var(--white);
    border-radius: 24px;
    padding: 12px 10px;
    width: 124px;
    margin-left: 50px;
}

.swiper-paginationC {
    text-align: center;

}

.coteg__work-nav .swiper-pagination-bullet {
    background: #d9d9d9;
    opacity: 1;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.coteg__work-nav .swiper-pagination-bullet-active {
    background: var(--black);
    border-radius: 50%;
}

.coteg-slide {
    background: rgba(246, 246, 246, 0.9);
}

.coteg__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.coteg__main {
    width: 48%;
}

.coteg__main-info span {
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    line-height: 120%;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 8px;
}

.coteg__main-info p {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 18px;
    line-height: 120%;
    display: inline-block;
}

.coteg__main-title {
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--black);
    font-size: 45px;
    line-height: 120%;
    font-family: "Montserrat";
    font-weight: 500;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.coteg__main-price {
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--red);
    font-size: 62px;
    line-height: 120%;
    font-family: "Montserrat";
    font-weight: 500;
    margin-bottom: 4px;
}

.coteg__main-price-wrap,
.coteg__ipoteka-wrap,
.prices__item-ipoteka-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 4px;
}

.coteg__ipoteka-wrap {
    margin-bottom: 10px;
}

.coteg__main-price-wrap .coteg__main-price,
.coteg__ipoteka-wrap .coteg__ipoteka-price {
    margin-bottom: 0;
}

.coteg__ipoteka-price_del {
    text-decoration: line-through;
}

.coteg__main-old-price,
.coteg__ipoteka-price-old,
.prices__item-price-old,
.prices__ipoteka-price-old {
    display: inline-block;
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.5);
    font-family: "Montserrat";
}

.coteg__ipoteka-price-old,
.prices__item-price-old {
    font-size: 20px;
}

.prices__ipoteka-price-old {
    font-size: 14px;
}

.prices__item-price-old {
    margin-bottom: 20px;
}

.prices__item-ipoteka-wrap .prices__ipoteka-price {
    padding-bottom: 0;
    border-bottom: 0;
}

.prices__item-ipoteka-wrap {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 2px;
}

.prom-date {
    display: inline-block;
    border-radius: 3.12rem;
    padding: 0.25rem 1rem;
    background: #b30000;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: none;
}

.coteg__main-info .prom-date {
    color: #fff;
    margin-bottom: 0;
    text-transform: none;
}

.coteg__main-info .coteg__price-title {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.prom-banner {
    width: 100%;
    padding: 20px;
    border: 2px solid #b30000;
    border-radius: 0.75rem;
    background: linear-gradient(90deg, rgba(179, 0, 0, 0) 60%, rgba(179, 0, 0, 0.17) 100%);
    display: flex;
    align-items: center;
    gap: 8px;
    box-sizing: border-box;
}

.prom-banner__title {
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 1.62rem;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #b30000;
    margin-bottom: 8px;
}

.prom-banner__description {
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
}

.coteg__prom-banner {
    margin-bottom: 24px;
}

.coteg__info .prom-banner__description {
    margin-bottom: 0;
}

.prices__prom-date {
    font-size: 20px;
    margin-top: 16px;
}

.coteg__info {
    width: 48%;
}

.coteg__info-title {
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    line-height: 120%;
    font-size: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.coteg__info p {
    color: var(--black);
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
}

.coteg__stack {
    display: flex;
    flex-direction: column;
}

.coteg__stack-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
}

.coteg__stack-item {
    border-bottom: 1px solid var(--black);
    border-radius: 12px 12px 0 0;
    padding: 16px 0;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin-bottom: 24px;
    justify-content: center;
    align-items: center;
}

.coteg__stack-item:nth-of-type(2n) {
    margin-right: 0px;
}

.stack-item__title span {
    text-align: center;
    color: var(--black);
    text-decoration: none;
    font-family: 'Inter-Medium';
    line-height: 130%;
}

.active-stack .stack-item__icon svg path {
    stroke: #B30000;
    fill: #B30000;
}

.active-stack {
    background: linear-gradient(180deg, rgba(246, 246, 246, 0.05) 0%, rgba(214, 66, 56, 0.05) 100%);
    border-bottom: 3px solid var(--red);
}

.active-stack .stack-item__title span {
    color: var(--red);
}

.coteg__props {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.coteg__props-item {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    padding: 16px 24px;
    background: var(--white);
    /* margin-right: 8px;
    margin-bottom: 8px; */
    /* width: 15.2%; */
    flex-grow: 1;
}

/* .coteg__props-item:last-child {
    margin-right: 0px;
} */

.coteg__props-title {
    color: var(--black);
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-align: center;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.coteg__props-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.coteg__props-value {
    color: var(--black);
    font-size: 32px;
    font-family: 'Inter-Medium';
    line-height: 130%;
    white-space: nowrap;
}

.coteg__stack-title {
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    line-height: 120%;
    font-size: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.tabs {
    position: relative;
    margin-top: 16px;
}

.tabs__content {
    display: none;
}

.tabs__content--active {
    display: grid;
}

.tabs__list-block {
    width: 100%;
    overflow: hidden;
}

.tabs__list::-webkit-scrollbar {
    display: none;
    width: 0;
}

.tabs__list::scrollbar {
    display: none;
}

.tabs__list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 62px;
    position: relative;
    overflow: hidden;
}

.tabs__item {
    position: relative;
    z-index: 9;
}

.tabs__btn {
    padding: 0px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 100px;
    color: #333132;
    opacity: 0.5;
    height: 48px;
    text-decoration: none;
    font-family: 'Inter-Medium';
    font-size: 16px;
    font-style: normal;
    line-height: 110%;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    width: 100%;
    display: block;
    min-width: max-content;
    background: var(--white);

}

.tabs__btn--active {
    position: relative;
    color: var(--white);
    font-family: 'Inter-Medium';
    font-size: 16px;
    background: var(--red);
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -1.24px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    pointer-events: none;
    width: 100%;
    display: block;
    min-width: max-content;
    z-index: 99;
    opacity: 1;
}

.coteg-slide__image img {
    max-height: 78vh;
    object-fit: contain;
}

.tabs__content:first-child .coteg-slide__image img {
    object-fit: cover;
    object-position: center;
}

.uslovie {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.uslovie__top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: 0 auto;
}

.uslovie__top-title {
    font-size: 42px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: var(--black);
    text-align: center;
    margin-bottom: 16px;
    margin-top: 16px;
}

.uslovie__top-text {
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 130%;
}

.uslovie__container {
    width: 100%;
    overflow: hidden;
    margin-top: 24px;
    display: block;
    position: relative;
}

.uslovie__list {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

.uslovie__list-mob {
    display: none;
}

.uslovie__item {
    border-radius: 1000px;
    background: url('../image/u-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-width: 381px;
    height: 381px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.uslovie__item a {
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--black);
}

.uslovie__item span {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    width: 70%;
    margin: 8px auto 0px auto;
}

.uslovie__item svg {
    margin-top: 24px;
}

.uslovie__item:first-child {

}

.uslovie__item:nth-of-type(2) {

}

.uslovie__item:nth-of-type(2):hover {
    background: var(--red);
    color: var(--white);
}

.uslovie__item:nth-of-type(3):hover {
    background: var(--red);
    color: var(--white);
}

.uslovie__item:nth-of-type(2):hover svg path {
    stroke: var(--white);
}

.uslovie__item:nth-of-type(3):hover svg path {
    stroke: var(--white);
}

.uslovie__item:nth-of-type(4):hover svg path {
    stroke: var(--white);
}

.uslovie__item:nth-of-type(4):hover {
    background: var(--red);
    color: var(--white);
}

.uslovie__item:hover a {
    color: var(--white);
}

.uslovie__item:last-child {

}

.calc {
    padding: 60px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.calc__top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
}

.calc__top-title {
    font-size: 42px;
    font-family: 'Inter-Medium';
    color: var(--black);
    text-align: center;
    margin-bottom: 16px;
}

.calc__top-text {
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    line-height: 130%;
}

.quiz {
    min-height: 100px;
    margin: 0 auto;
    padding: 30px 0px;
}

.quiz__questions {
    text-align: center;
    margin-bottom: 20px;
}

.quiz-question__title {
    font-size: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--black);
    text-align: center;
    margin-top: 42px;
    margin-bottom: 42px;
}

.quiz-question__answers {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.quiz-question__answers {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.quiz-question__label-img {
    width: 100%;
    margin-bottom: 24px;
    position: relative;
    margin: 0 10px;
}

.quiz-question__label-img:first-child {
    margin: 0px 10px 0px 0px;
}

.quiz-question__label-img:last-child {
    margin: 0px 0px 0px 10px;
}

.quiz-question__label-img span {
    backdrop-filter: blur(6px);
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    height: 48px;
    border-radius: 100px;
    cursor: pointer;
    position: absolute;
    bottom: 40px;
    left: 10px;
    right: 10px;
    width: 100% s;
}

.quiz-question__label-img span:hover {
    background: var(--red);
    color: var(--white);
}

.quiz-question__label-img [type=checkbox]:checked, .quiz-question__label-img [type=checkbox]:not(:checked), .quiz-question__label-img [type=radio]:checked, .quiz-question__label-img [type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.quiz-question__label-img input:checked + span {
    background: var(--red);
    color: var(--white);
}


.quiz-question__label {
    width: 100%;
    margin-bottom: 24px;
    position: relative;
    margin: 0 10px;
}

.quiz-question__label:first-child {
    margin: 0px 10px 0px 0px;
}

.quiz-question__label:last-child {
    margin: 0px 0px 0px 10px;
}

.quiz-question__label span {
    background: #E3E3E3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    border-radius: 8px;
    cursor: pointer;
}

.quiz-question__label span:hover {
    background: var(--red);
    color: var(--white);
}

.quiz-question__label [type=checkbox]:checked, .quiz-question__label [type=checkbox]:not(:checked), .quiz-question__label [type=radio]:checked, .quiz-question__label [type=radio]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.quiz-question__label input:checked + span {
    background: var(--red);
    color: var(--white);
}

.quiz-question__answers input[type="text"] {
    width: 200px;
    height: 40px;
    padding-left: 10px;
}

.quiz-question__btns {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 200px;
    margin: 0 auto;
    padding-top: 24px;
}

.quiz-question__btn:first-child {
    border: none;
    border-radius: 8px;
    padding: 0px 21px;
    width: max-content;
    height: 48px;
    display: flex;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--white);
    border: 1px solid rgba(214, 66, 56, 0.1);
    color: var(--black);
    text-decoration: none;
    margin-left: 16px;
    cursor: pointer;
}

.quiz-question__btn:first-child:hover {
    border: 1px solid var(--red);
}

.quiz-question__btn.disabled {
    opacity: 0.5;
}

.quiz-question__btn {
    border: none;
    border-radius: 8px;
    padding: 0px 21px;
    width: max-content;
    height: 48px;
    display: flex;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-left: 16px;
    cursor: pointer;
}

.error {
    outline: 3px solid red !important;
}

.footer {
    padding: 62px 0px;
    background: rgba(246, 246, 246, 0.9);
}

.footer__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 24px;
}

.footer__logo {
    margin-bottom: 24px;
}

.footer__socials {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer__social-item {
    margin-right: 16px;
}

.footer__social-item:last-child {
    margin-right: 0px;
}

.footer__menu {

}

.footer__menu span {
    letter-spacing: -0.02em;
    color: var(--black);
    font-family: 'Inter-Medium';
    font-size: 16px;
    margin-bottom: 16px;
    display: block;
}

.footer__menu ul li {
    list-style: none;
    margin-bottom: 8px;
}

.footer__menu ul li:last-child {
    margin-bottom: 0px;
}

.footer__menu ul li a {
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    text-decoration: none;
}

.footer__menu ul li a:hover {
    color: rgba(0, 0, 0, 0.8);
}

.footer__btn a {
    border-radius: 8px;
    padding: 0px 16px;
    width: 163px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    margin-right: 36px;
    margin-bottom: 16px;
    cursor: pointer;
}

.footer__btn a:hover {
    background: #cb170b;
}

.page-template-template-catalog .footer__btn a {
    min-width: 163px;
    width: auto;
    margin-right: 0;
}

.footer__links {
    display: flex;
    flex-direction: column;
}

.footer__links a {
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 8px;
}

.footer__copyright {
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    text-decoration: none;
    line-height: 140%;
}

.footer__bottom {
    padding-top: 24px;
}

.footer__copy p {
    margin: 0;
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    text-align: center;
}

.popup__title {
    font-size: 24px;
    color: var(--black);
    font-family: 'Inter-SemiBold';
    margin-bottom: 8px;
}

.popup__text {
    font-size: 16px;
    color: var(--black);
    font-family: 'Inter-Medium';
    opacity: 0.5;
    line-height: 150%;
    width: 80%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding-bottom: 24px;
}

.popup-modal {
    max-width: 570px;
    width: 570px;
    border-radius: 62px;
}

.popup-modal .fancybox-button {
    background: var(--black);
    border-radius: 100px;
    width: 52px;
    height: 52px;
}

.popup-modal .fancybox-button svg path {
    fill: var(--white);
}

.popup-modal .fancybox-button {
    top: 40px;
    right: 40px;
}

.popup-price {
    max-width: 542px;
    width: 542px;
    border-radius: 64px;
}

.popup-price .fancybox-button {
    background: rgba(214, 66, 56, 0.12);
    border-radius: 8px;
    width: 52px;
    height: 52px;
}

.popup-price .fancybox-button svg path {
    fill: var(--black);
}

.popup-price .fancybox-button {
    top: 40px;
    right: 40px;
}

.popup-price .popup__title {
    letter-spacing: -0.02em;
    color: var(--black);
    font-size: 32px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    width: 70%;
}

.popup-price .popup__text {
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    border-bottom: 0px solid rgba(0, 0, 0, 0.15);
}

.popup__form {
    margin-top: 33px;
}

.popup__form .forms__title span {
    color: var(--red);
}

.popup__form .form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.popup__form .form__group label {
    font-size: 16px;
    color: var(--black);
    line-height: 24px;
    font-family: 'Inter-Medium';
    margin-bottom: 6px;
}

.popup__form .form__group input {
    border-radius: 8px;
    padding: 0px 12px;
    width: 100%;
    height: 48px;
    background: #f4f4f4;
    border: 1px solid #f4f4f4;
    outline: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--black);
    border: none;
    line-height: 20px;
}

.popup__form .form__group input:hover {
    outline: 1px solid rgba(0, 0, 0, 0.15);
}

.popup__form .form__group input:focus {
    outline: 1px solid rgba(0, 0, 0, 0.15);
}

.popup__form .form__group input::placeholder {
    color: #9e9e9e;
    font-size: 14px;
    line-height: 20px;
}

.popup__form button,
.popup__form input[type="submit"] {
    border-radius: 8px;
    padding: 0px 16px;
    width: 100%;
    height: 48px;
    background: var(--red);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.popup__form button:hover {
    background: #cb170b;
}

.popup__form p {
    font-size: 14px;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    margin-top: 16px;
    display: block;
    width: 100%;
}

.popup__form p a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.popup__grey {
    background: #f6f6f6;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
}

.popup__grey-tarif {
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    color: var(--black);
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 8px;
}

.popup__grey-price {
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #23ad00;
    font-size: 32px;
    line-height: 120%;
}

.popup__grey-block--title {
    display: flex;
    align-items: center;
    flex-direction: row;
    letter-spacing: -0.02em;
    color: var(--black);
    font-size: 14px;
    justify-content: center;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 24px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.popup__grey-block--title svg {
    margin-right: 10px;
}

.popup__grey-block--text {
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    text-align: center;
}

.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border-radius: 24px;
    padding: 0px 16px;
    width: 100%;
    height: 48px;
    background: #23ad00;
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

@media all and (max-width: 1180px) {

    .header__menu {
        display: none;
    }

    .header__burger {
        display: block;
    }

    .header__burger button {
        border: none;
        background: transparent;
        margin-left: 16px;
        cursor: pointer;
    }

}

@media (max-width: 1100px) {
    .header__container {
        padding: 17px 20px;
    }

    .mac__image {
        position: absolute;
        right: -340px;
        bottom: -5px;
    }

    .mac__text {
        margin-bottom: 60px;
    }

    .directors__names {
        width: 70%;
    }

    .what__item {
        width: 44%;
    }

    .garant__image img {
        max-width: 100%;
    }

    .garant__text {
        margin-top: 40px;
    }

    .news-slide__image img {
        width: 100%;
        max-width: 100%;
    }

    .white__image {
        width: 54%;
        position: absolute;
        right: -150px;
        height: 100%;
    }

    .white {
        display: block;
        overflow: hidden;
        position: relative;
    }

    .numbers__item {
        width: 18%;
    }

    .block__title {
        margin-bottom: 42px;
    }

    .mac {
        overflow: hidden;
    }

    .abouts__item {
        width: 33%;
    }

    /* .forms {
        height: 840px;
    } */

    .portfolio__item:nth-of-type(4) {
        width: 23%;
    }

    .teams__item {
        width: 48%;
    }

    .otziv__item-image img {
        max-width: 100%;
        width: 100%;
    }

    .block__top {
        margin-bottom: 30px;
    }

    .pay__item-content {
        min-height: 470px;
    }

    .coteg__work-nav {
        left: 38%;
    }

    /* .coteg__stack-item {
		margin-right: 14px;
		width: 37%;
	} */
    .stack-item__title a {
        display: block;
    }

    /* .coteg__props-item {
        width: 14%;
    } */

    .coteg__props-value {
        font-size: 26px;
    }

    .coteg__props-title {
        font-size: 14px;
    }

    .header__mobile {
        background: var(--white);
        width: 100%;
        height: 100vh;
        position: absolute;
        flex-direction: column;
        top: 0px;
        left: 0;
        z-index: 99999;
    }

    .header__mobile-close button {
        border: none;
        cursor: pointer;
        background: transparent;
    }

    .header__mobile-top {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 17px 20px;
        border-bottom: 1px solid rgba(33, 33, 33, 0.30);
    }

    .header__mobile-top .header__logo {
        display: flex;
    }

    .header__mobile-top .header__right-top {
        display: flex;
    }

    .openMobile {
        display: flex;
    }

    .header__mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 0;
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 20px;
        width: 100%;
    }

    .header__mobile-menu li {
        list-style: none;
        position: relative;
        width: 100%;
    }

    .header__mobile-menu li.drop::before {
        content: '';
        position: absolute;
        background: url('../image/drop.svg');
        background-repeat: no-repeat;
        background-size: contain;
        width: 12px;
        height: 8px;
        right: 16px;
        top: 20px;
    }

    .header__mobile-menu li.active::before {
        content: '';
        position: absolute;
        background: url('../image/drop.svg');
        background-repeat: no-repeat;
        background-size: contain;
        width: 12px;
        height: 8px;
        right: 16px;
        top: 20px;
        transform: rotate(-180deg);
    }

    .header__mobile-menu li a:not(.drop-menu__img-link) {
        display: flex;
        padding: 16px 16px;
        font-size: 16px;
        color: var(--black);
        font-family: 'Inter-Medium';
        text-decoration: none;
        margin-bottom: 12px;
        border-radius: 8px;
        width: auto;
    }

    .header__mobile-menu li .drop__menu {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 12px 0px;
        margin-bottom: 12px;
    }

    .header__mobile-menu li .drop__menu li a {
        margin-bottom: 0xp;
    }

    .header__mobile-menu li a:hover {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li a:focus {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li a:active {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li.active a {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li .drop__menu li a {
        background: #fff;
    }

    .header__mobile-container {
        padding: 16px 15px;
    }

    .header__mobile-bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .openMenu {
        display: flex;
        flex-direction: column;
    }

    .closeMenu {
        display: none;
    }

    .video__block iframe {
        width: 100%;
    }
}

@media all and (max-width: 1000px) {

    .video__container {
        flex-direction: column;
        gap: 42px;
    }

    .video__text {
        width: 100%;
        box-sizing: border-box;
    }

    .winfo__container {
        flex-direction: column;
    }

    .winfo__l {
        width: auto;
        margin-bottom: 30px;
    }

    .winfo__r {
        width: auto;
    }

    .winfo__title {
        margin-bottom: 46px;
    }

}

@media (max-width: 800px) {
    .header__container {
        padding: 17px 24px;
    }

    .header__burger {
        display: flex;
    }

    .header__burger button {
        border: none;
        background: transparent;
        margin-left: 16px;
        cursor: pointer;
    }

    .header__mobile {
        background: var(--white);
        width: 100%;
        height: 100vh;
        position: absolute;
        flex-direction: column;
        top: 0px;
        left: 0;
        z-index: 99999;
    }

    .header__mobile-close button {
        border: none;
        cursor: pointer;
        background: transparent;
    }

    .header__mobile-top {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 17px 20px;
        border-bottom: 1px solid rgba(33, 33, 33, 0.30);
    }

    .header__mobile-top .header__logo {
        display: flex;
    }

    .header__mobile-top .header__right-top {
        display: flex;
    }

    .openMobile {
        display: flex;
    }

    .header__mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 0;
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 20px;
        width: 100%;
    }

    .header__mobile-menu li {
        list-style: none;
        position: relative;
        width: 100%;
    }

    .header__mobile-menu li.drop::before {
        content: '';
        position: absolute;
        background: url('../image/drop.svg');
        background-repeat: no-repeat;
        background-size: contain;
        width: 12px;
        height: 8px;
        right: 16px;
        top: 20px;
    }

    .header__mobile-menu li.active::before {
        content: '';
        position: absolute;
        background: url('../image/drop.svg');
        background-repeat: no-repeat;
        background-size: contain;
        width: 12px;
        height: 8px;
        right: 16px;
        top: 20px;
        transform: rotate(-180deg);
    }

    .header__mobile-menu li a:not(.drop-menu__img-link) {
        display: flex;
        padding: 16px 16px;
        font-size: 16px;
        color: var(--black);
        font-family: 'Inter-Medium';
        text-decoration: none;
        margin-bottom: 12px;
        border-radius: 8px;
        width: auto;
    }

    .header__mobile-menu li .drop__menu {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 12px 0px;
        margin-bottom: 12px;
    }

    .header__mobile-menu li .drop__menu li a {
        margin-bottom: 0xp;
    }

    .header__mobile-menu li a:hover {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li a:focus {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li a:active {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li.active a {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li .drop__menu li a {
        background: #fff;
    }

    /* .header__mobile-container {
		padding: 42px 120px;
	} */
    .header__mobile-bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .header__mobile-bottom .company__btn a {
        width: 360px;
    }

    .openMenu {
        display: flex;
        flex-direction: column;
    }

    .closeMenu {
        display: none;
    }

    .company__btn a {
        border-radius: 8px;
        padding: 0px 16px;
        width: 163px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        background: var(--red);
        color: var(--white);
        text-decoration: none;
    }

    .header__mobile-socials {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .header__mobile-socials a {
        width: 48px;
        height: 48px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        margin-left: 8px;
    }

    .header__mobile-socials a.vk {
        background: #0066FF;
    }

    .header__mobile-socials a.yt {
        background: #FF0000;
    }

    .header__mobile-socials a.yz {
        background: rgba(0, 0, 0, 0.05);
    }

    .header__menu {
        display: none;
    }

    .block__lists .block__one {
        width: 48.8%;
        height: 300px;
    }

    .block__lists .block__one-w {
        width: 100%;
        height: 300px;
    }

    .block__one img {
        height: 100%;
        object-fit: cover;
    }

    .block__title {
        font-size: 32px;
        width: 100%;
        margin-bottom: 24px;
    }

    .block__description {
        font-size: 14px;
        width: 100%;
    }

    .news__top-sort {
        width: 46%;
    }

    .blog__item {
        width: 48%;
    }

    .blog__item:nth-of-type(2) {
        margin-right: 0%;
    }

    .blog__item:nth-of-type(3) {
        width: 100%;
    }

    .blog__item:nth-of-type(5) {
        width: 48%;
    }

    .blog__item:nth-of-type(6) {
        width: 100%;
        margin-right: 0%;
    }

    .blog__item:nth-of-type(9) {
        width: 48%;
    }

    .blog__item .blog__item-image {
        height: 245px;
        overflow: hidden;
        border-radius: 8px;
    }

    .blog__item .blog__item-image img {
        width: 100%;
        object-fit: cover;
    }

    .link-name {
        font-size: 18px;
    }

    .block__one .link-name img {
        height: auto;
    }

    .white-title {
        font-size: 24px;
    }

    .white__image {
        width: 44%;
        position: absolute;
        right: -50px;
    }

    .footer__container {
        flex-direction: unset;
        flex-wrap: wrap;
    }

    .footer__column {
        width: 32%;
    }

    .footer__column:nth-of-type(2n) {
        width: 20%;
    }

    .footer__column:nth-of-type(3n) {
        width: 40%;
    }

    .services-banner {
        height: 500px;
    }

    .services-banner .mains__container {
        padding-top: 190px;
    }

    .services__item-image img {
        width: 315px;
        height: 400px;
    }

    .services__item-text {
        color: rgba(0, 0, 0, 0.5);
    }

    .services {
        padding: 22px 0px;
    }

    .news {
        padding: 20px 0px;
        background: rgba(246, 246, 246, 0.9);
    }

    .news__top {
        font-size: 24px;
    }

    .news-slide__image img {
        max-width: 100%;
    }

    .news-slide__title a {

    }

    .forms {
        /* height: 900px; */
        margin-top: 0px;
        background: var(--white) url('../image/home-from.png');
        background-position: top right;
        background-repeat: no-repeat;
        position: relative;
    }

    .forms::before {

    }

    .forms__content {
        width: 50%;
    }

    .forms__title {
        font-size: 32px;
    }

    .form__group input {
        width: 328px;
    }

    .form button {
        width: 352px;
    }

    .forms__item {
        height: 167px;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        padding: 16px 24px 16px 16px;
        align-items: flex-start;
    }

    .forms__item-icon {
        margin-bottom: 16px;
    }

    .pay__item {
        width: 100%;
        margin-right: 0px;
    }

    .pay__item-image {
        width: 100%;
    }

    .pay__item-image img {
        max-width: 100%;
        width: 100%;
        object-fit: cover;
    }

    .pay__item-content {
        min-height: auto;
    }

    .mains {
        height: 300px;
    }

    .mains__container {
        padding-top: 60px;
        width: 100%;
    }

    .mains__container h1 {
        font-size: 18px;
        text-transform: capitalize;
    }

    .mains__link {
        margin-top: 16px;
    }

    .numbers {
        padding: 42px 0px;
        padding-top: 250px;
    }

    .numbers__title {
        width: 100%;
        font-size: 32px;
        text-align: left;
    }

    .numbers__item {
        width: 42.8%;
        margin-right: 0px;
    }

    .teams__top {
        width: 100%;
        font-size: 24px;
    }

    .teams__item {
        width: 48%;
        margin-right: 16px;
    }

    .teams__item:nth-of-type(3n) {
        margin-right: 16px;
    }

    .teams__item:nth-of-type(2n) {
        margin-right: 0px;
    }

    .portfolio__item-image {
        display: block;
        border-radius: 8px;
    }

    .portfolio__item-image img {
        width: 100%;
        height: 300px;
        display: block;
        border-radius: 8px;
        object-fit: cover;
    }

    .tops__title {
        font-size: 32px;
    }

    .tops {
        padding: 42px 0px 0px 0px;
    }

    .tops__lists {
        flex-direction: unset;
        flex-wrap: wrap;
    }

    .tops__item {
        width: 47.8%;
        margin-bottom: 16px;
    }

    .tops__item:nth-of-type(4) {
        display: block;
    }

    .what__top {
        width: 100%;
    }

    .what__item {
        width: 42%;
        align-items: flex-start;
        padding-top: 51px;
        max-height: 208px;
    }

    .what__item-icon {
        width: 20%;
    }

    .what__item-title {
        font-size: 16px;
    }

    .mac__image {
        position: absolute;
        right: -370px;
        bottom: -5px;
    }

    .sotrud__link a {
        margin-top: 100px;
    }

    .directors__names {
        width: 90%;
        text-align: center;
        margin-top: 24px;
    }

    .directors__citata p {
        font-size: 16px;
        width: 80%;
    }

    .directors__citata {
        width: 45%;
    }

    .directors___container {
        justify-content: space-between;
    }

    .directors__citata::before {
        right: 0px;
    }

    .garant__container {
        flex-direction: column;
    }

    .garant__content {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .garant__title {
        width: 48%;
    }

    .garant__text {
        margin-top: 0px;
    }

    .garant__blocks {
        width: 48%;
        justify-content: space-between;
    }

    .garant__image {
        width: 100%;
    }

    .garant__image img {
        width: 100%;
    }

    .greys {
        padding: 42px 0px;
        background-size: contain;
    }

    .greys__container {
        flex-direction: column;
    }

    .greys__content {
        width: 100%;
    }

    .greys__title {
        text-align: center;
    }

    .greys__text {
        text-align: center;
    }

    .greys__image {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .steps__block {
        position: relative;
        overflow: hidden;
    }

    .steps__item {
        /* height: 600px; */
        width: 100%;
    }

    .steps__item-title {
        font-size: 32px;
    }

    .steps__finish {
        height: 500px;
    }

    .steps__finish .steps__item {
        height: 500px;
    }

    .steps__item-content {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .steps__item {
        flex-direction: column;
    }

    .steps__item-content {
        width: 100%;
        padding-top: 24px;
        /* padding-bottom: 24px; */
    }

    .steps__item-image {
        width: 100%;
        position: relative;
        height: 250px;
        margin-top: 24px;
        transform: translate(0, 0);
    }

    .block__top {
        flex-direction: column;
    }

    .contact {
        padding: 68px 0px 0px 0px;
    }

    .services-banner .mains__container h1 {
        font-size: 32px;
        text-transform: capitalize;
    }

    .banks__block {
        flex-direction: column;
    }

    .banks__block-title {
        width: auto;
        margin-bottom: 42px;
    }

    .banks__block-text {
        width: auto;
        border-left: 0px solid rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .white-ipoteka {
        width: auto;
    }

    /* .forms__grey {
        height: 852px;
    } */

    .forms__grey .forms__container {
        padding-top: 0px;
        display: flex;
        flex-direction: column-reverse;
    }

    .forms__grey .forms__content {
        width: 100%;
        display: block;
        margin-top: 443px;
        position: relative;
        z-index: 2;
    }

    /* .form__grey .form__group input {
		width: auto;
	} */
    .form__grey p {
        max-width: 100%;
        text-align: center;
    }

    .forms__grey .forms__image {
        position: absolute;
        width: 100%;
        margin-top: 0px;
        left: 0px;
        top: -23px;
    }

    .forms__grey .forms__image img {
        height: 420px;
        position: relative;
        width: 100%;
        object-fit: cover;
        object-position: top center;
        /* top: -50px; */
        background: rgba(246, 246, 246, 0.9);
    }

    .form__grey button {
        width: 100%;
    }

    .mains__container h1 {
        font-size: 32px;
    }

    .abouts__title {
        font-size: 32px;
    }

    .abouts__item {
        width: 42.5%;
    }

    .abouts__item:nth-of-type(2) {
        width: 42.5%;
    }

    .abouts__item:nth-of-type(3) {
        width: 42.5%;
    }

    .portfolio__top {
        width: 48%;
        margin-right: 16px;
    }

    .portfolio__item:nth-of-type(2) {
        width: 48%;
        margin-right: 0px;
    }

    .portfolio__item {
        width: 48%;
    }

    .portfolio__item:nth-of-type(4) {
        width: 48%;
        margin-right: 0px;
    }

    .portfolio__item:nth-of-type(5) {
        width: 48%;
        margin-right: 16px;
    }

    .portfolio__item:nth-of-type(6) {
        width: 48%;
        margin-right: 0px;
    }

    .videos {
        height: 500px;
    }

    .videos .mains__container {
        width: 100%;
    }

    .videos .mains__container h1 {
        font-size: 42px;
        text-transform: uppercase;
    }

    .video__media {
        height: 500px;
    }

    .mac {
        overflow: hidden;
    }

    .footer {
        position: relative;
    }

    .footer__bottom {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    .footer__copy {
        width: 40%;
        margin-left: 60%;
        text-align: left;
    }

    .footer__btn {
        position: absolute;
        left: 20px;
        bottom: 40px;
    }

    .footer__socials {
        position: absolute;
        left: 250px;
        bottom: 50px;
    }

    .footer__column:nth-of-type(4) .footer__links {
        position: absolute;
        top: 200px;
        left: 20px;
    }

    .footer__column:nth-of-type(4) .footer__copyright,
    .footer__column:nth-of-type(4) {
        /* position: absolute;
        top: 250px;
        left: 20px; */
        width: 100%;
    }

    .footer__container {
        gap: 16px;
    }

    .white {
        position: relative;
    }

    .coteg__slider {
        height: 360px;
        padding-bottom: 100px;
        margin-top: -110px;
    }

    .coteg-slide__image img {
        max-width: 100%;
    }

    .coteg__work-nav {
        left: 32%;
    }

    .coteg__main-title {
        font-size: 42px;
    }

    .coteg__main-price {
        font-size: 42px;
    }

    .coteg__info p {
        font-size: 16px;
    }

    /* .coteg__stack-item {
		margin-right: 16px;
		width: 34%;
	} */
    /* .coteg__props-item {
        width: 26%;
    }

    .coteg__props-item:nth-of-type(3) {
        margin-right: 0px;
    }

    .coteg__props-item:nth-of-type(4) {
        width: 43%;
    }

    .coteg__props-item:nth-of-type(5) {
        margin-right: 0px;
        width: 43%;
    } */

    .prices__list .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .prices__item {
        width: 45%;
    }

    .uslovie__top {
        width: auto;
    }

    .uslovie__list {
        flex-direction: unset;
        flex-wrap: wrap;
        display: none;
    }

    .uslovie__list-mob {
        flex-direction: unset;
        flex-wrap: wrap;
        display: flex;
    }

    .uslovie__list-mob .uslovie__item {
        width: 49%;
    }

    .uslovie__list-mob .uslovie__item:nth-of-type(3) {
        background: var(--white);
    }

    .uslovie__list-mob .uslovie__item:last-child {
        background: var(--red);
    }

    .uslovie__list-mob .uslovie__item:last-child p {
        text-align: center;
        color: var(--white);
        font-size: 24px;
        padding: 0px 40px;
    }

    .uslovie__list-mob .uslovie__item a {
        text-align: center;
        color: var(--black);
        font-size: 24px;
        padding: 0px 40px;
    }

    .uslovie__list-mob .uslovie__item:hover a {
        color: var(--white);
    }

    .uslovie__list-mob .uslovie__item:hover {
        background: var(--red);
    }

    .uslovie__list-mob .uslovie__item:hover svg path {
        stroke: var(--white);
    }

    .otziv__top-title {
        font-size: 32px;
    }

    .doms__top {
        font-size: 32px;
    }

    .likeit__top-title {
        font-size: 32px;
    }

    .mac__text {
        margin-bottom: 20px;
    }

    .m-w__row {
        flex-direction: unset;
        flex-wrap: wrap;
    }

    .m__left {
        width: 26%;
    }

    .m__right {
        width: 70%;
    }

    .m-w__item {
        width: 21%;
    }

    .m-w__item:nth-of-type(3) {
        margin-right: 0px;
    }

    .m-w__item:nth-of-type(5) {
        margin-right: 0px;
        width: 55%;
    }

    .m__item {
        justify-content: center;
        height: 100%;
    }

    .m-w__item:nth-of-type(5)::after {
        content: '';
        position: absolute;
        height: 42px;
        width: 1px;
        background: rgba(0, 0, 0, 0.15);
        bottom: 100%;
        left: 24%;
        z-index: 2;
    }

    .m-w__item:nth-of-type(5)::before {
        content: '';
        position: absolute;
        height: 42px;
        width: 1px;
        background: rgba(0, 0, 0, 0.15);
        bottom: 100%;
        right: 25.5%;
        z-index: 2;
    }

    .black__title {
        font-size: 2rem;
    }

    .what__item:first-child .what__item-link a svg {
        display: none;
    }

    .what__item-red .what__item-link a {
        width: 100%;
        box-sizing: border-box;
    }

    .abouts__lists {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .abouts__item {
        margin: 0;
        width: 100% !important;
        box-sizing: border-box;
    }

    .contact__container {
        grid-template-columns: 1fr;
    }

    .contact__map {
        position: static;
        width: 100%;
        height: 626px;
    }
}

@media (max-width: 760px) {
    .tops__item {
        width: 47.2%;
        margin-bottom: 16px;
    }

    .mac__image {
        position: absolute;
        right: -520px;
        bottom: -5px;
    }

    .what__item-link a {
        display: none;
    }

    .what__item {
        width: 41%;
    }

    .sotrud__subtitle {
        margin-top: 6px;
    }

    .white__image {
        width: 54%;
        position: absolute;
        right: -150px;
        height: 100%;
    }

    .directors__content {
        width: 48%;
    }

    .sections__container {
        display: grid;
        grid-template-areas: "first second"
							 "third third";
    }

    .sections__blocks-t {
        margin: 0;
    }

    .sections__blocks-t:nth-child(1) {
        grid-area: first;
    }

    .sections__blocks-t:nth-child(2) {
        grid-area: second;
    }

    .sections__blocks-t:nth-child(3) {
        grid-area: third;
    }

    .sections__blocks {
        width: auto;
        margin-bottom: 20px;
    }

    .sections__image img {
        height: 350px;
        display: block;
        object-fit: cover;
        border-radius: 12px;
    }

    .sections__blocks-t {
        width: auto;
    }

    .step__item {
        width: 100%;
        margin-right: 0px;
    }

    .docs__container {
        width: auto;
        overflow: hidden;
        margin-left: 15px;
    }

    .video__container {
        flex-direction: column;
    }

    .video__title {
        width: auto;
        text-align: center;
        margin-bottom: 20px;
    }

    .video__text {
        width: auto;
        text-align: center;
    }

    .master__container {
        flex-direction: column-reverse;
    }

    .master__l {
        width: auto;
    }

    .master__r {
        width: auto;
    }

    .master__l-image {
        position: relative;
        bottom: -10px;
        display: block;
        text-align: center;
    }

    .vigod__list {
        flex-wrap: wrap;
        flex-direction: unset;
    }

    .vigod__item {
        width: 49%;
        margin-bottom: 20px;
    }

    .services-banner .mains__container {
        padding-top: 140px;
    }

    /* .winfo__container {
		flex-direction: column;
	}
	.winfo__l {
		width: auto;
		margin-bottom: 30px;
	}
	.winfo__r {
		width: auto;
	}
	.winfo__title {
		margin-bottom: 46px;
	} */
    /* .coteg__props-item {
        width: 25.4%;
    }

    .coteg__props-item:nth-of-type(4) {
        width: 42%;
    } */

    .prices__item {
        width: 44%;
    }

    .coteg__info {
        width: 50%;
    }

    .coteg__stack-item {
        margin-right: 10px;
        width: 34%;
    }

    .uslovie__list-mob .uslovie__item {
        width: 48%;
    }

    .uslovie__item {
        min-width: 281px;
        height: 341px;
        margin-bottom: 16px;
    }

    .uslovie__item img {
        max-width: 100%;
    }

    .stack-item__title a {
        display: block;
    }

    .spec__white-title {
        font-size: 24px;
    }

    .spec__content {
        width: 53%;
    }

    /* .spec__man {
        width: 36%;
    } */

    .uslovie__list-mob {
        justify-content: space-between;
    }

    .coteg__slider {
        padding-bottom: 60px;
    }

    .prices__list .swiper-wrapper {
        display: flex;
        flex-wrap: nowrap;
    }

    .uslovie__item:nth-of-type(2) {
        background: transparent;
    }

    .uslovie__item:nth-of-type(3) {
        background: transparent;
    }

    .footer__btn a {
        margin-right: 16px;
        margin-bottom: 16px;
        font-size: 14px;
        width: 140px;
    }

    .footer__socials {
        position: absolute;
        left: 205px;
        bottom: 52px;
    }

    .footer__copy p {
        margin: 0;
        letter-spacing: -0.01em;
        color: rgba(0, 0, 0, 0.5);
        font-size: 11px;
        text-align: left;
    }

    .m-w__row {
        flex-direction: unset;
        flex-wrap: wrap;
    }

    .m__left {
        width: 26%;
    }

    .m__right {
        width: 70%;
    }

    .m-w__item {
        width: 20%;
    }

    .m-w__item:nth-of-type(3) {
        margin-right: 0px;
    }

    .m-w__item:nth-of-type(5) {
        margin-right: 0px;
        width: 55%;
    }

    .m__item {
        justify-content: center;
        height: 100%;
    }

    .m-w__item:nth-of-type(5)::after {
        content: '';
        position: absolute;
        height: 42px;
        width: 1px;
        background: rgba(0, 0, 0, 0.15);
        bottom: 100%;
        left: 24%;
        z-index: 2;
    }

    .m-w__item:nth-of-type(5)::before {
        content: '';
        position: absolute;
        height: 42px;
        width: 1px;
        background: rgba(0, 0, 0, 0.15);
        bottom: 100%;
        right: 25.5%;
        z-index: 2;
    }
}

@media (max-width: 710px) {
    .numbers__item {
        width: 42%;
    }

    .abouts__item {
        width: 42%;
    }

    .abouts__item:nth-of-type(2n) {
        margin-right: 0px;
        width: 42%;
    }

    .abouts__item:nth-of-type(3) {
        width: 42%;
    }

    .header__info {
        display: none;
    }

    .block__lists .block__one {
        width: 48%;
    }

    .block__lists .block__one-w {
        width: 100%;
    }

    /* .forms {
        height: 940px;
    } */

    .teams__item-image img {
        max-width: 100%;
    }

    .block__one img {
        width: 100%;
        max-width: 100%;
        display: block;
        object-fit: cover;
    }

    .portfolio__item:nth-of-type(2) {
        width: 100%;
    }

    .portfolio__item:nth-of-type(6) {
        width: 100%;
    }

    .adress-slide img {
        height: 360px;
        width: 100%;
        display: block;
    }

    .block__grey .block__title {
        margin-bottom: 30px;
    }

    .block__description {
        margin-bottom: 30px;
    }

    .link-name {
        width: 80%;
    }

    .block__one {
        margin-top: 0px;
        height: 300px;
    }

    .prog__item-logo {
        text-align: center;
    }

    .docs__container {
        width: auto;
        overflow: hidden;
        margin-left: 15px;
    }

    .coteg__slider {
        padding-bottom: 30px;
    }

    .coteg__stack-item {
        margin-right: 10px;
        width: 33%;
    }

    /* .coteg__props-item {
        width: 24.6%;
    }

    .coteg__props-item:nth-of-type(5) {
        margin-right: 0px;
        width: 41%;
    } */

    .m__container {
        flex-direction: column;
    }

    .m__left {
        width: auto;
        display: flex;
        flex-direction: column;
    }

    .m__item-title {
        width: 100%;
    }

    .m__right {
        width: auto;
        margin-top: 24px;
    }

    .m-w__row {
        flex-direction: unset;
        flex-wrap: wrap;
    }

    .m-w__item {
        width: 48%;
    }

    .m-w__item {
        width: 41%;
    }

    .m-w__item:nth-of-type(2n) {
        margin-right: 0px;
    }

    .m-w__item:nth-of-type(5) {
        margin-right: 0px;
        width: 100%;
    }

    .m-w__item:nth-of-type(5)::after {
        content: '';
        position: absolute;
        height: 42px;
        width: 1px;
        background: rgba(0, 0, 0, 0.15);
        bottom: 100%;
        left: 24%;
        z-index: 2;
    }

    .m-w__item:nth-of-type(5)::before {
        content: '';
        position: absolute;
        height: 42px;
        width: 1px;
        background: rgba(0, 0, 0, 0.15);
        bottom: 100%;
        right: 25.5%;
        z-index: 2;
    }
}

@media (max-width: 630px) {
    .coteg__slider {
        /* padding-bottom: 100px; */
        padding-bottom: 15px;
    }

    .portfolio__top {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 42px;
    }

    .abouts__item {
        margin-right: 0px;
    }

    .abouts__item:nth-of-type(2n) {
        width: 100%;
    }

    .portfolio__top-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .portfolio__top-text {
        font-size: 14px;
    }

    .portfolio__item {
        width: 100%;
        margin-right: 0px;
        border-radius: 8px;
        z-index: 99;
    }

    .portfolio__item:nth-of-type(4) {
        width: 100%;
        margin-right: 0px;
    }

    .portfolio__item:nth-of-type(5) {
        width: 100%;
        margin-right: 0px;
    }

    .header__info {
        display: none;
    }

    .header__btns {
        display: none;
    }

    .header__mobile {
        background: var(--white);
        width: 100%;
        height: 100vh;
        position: absolute;
        flex-direction: column;
        top: 0px;
        left: 0;
        z-index: 99999;
    }

    .header__mobile-close button {
        border: none;
        cursor: pointer;
        background: transparent;
    }

    .header__mobile-top {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 17px 20px;
        border-bottom: 1px solid rgba(33, 33, 33, 0.30);
    }

    .header__mobile-top .header__logo {
        display: flex;
    }

    .header__mobile-top .header__right-top {
        display: flex;
    }

    .openMobile {
        display: flex;
    }

    .header__mobile-menu {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-left: 0;
        align-items: flex-start;
        padding-top: 12px;
        padding-bottom: 20px;
        width: 100%;
    }

    .header__mobile-menu li {
        list-style: none;
        position: relative;
        width: 100%;
    }

    .header__mobile-menu li.drop::before {
        content: '';
        position: absolute;
        background: url('../image/drop.svg');
        background-repeat: no-repeat;
        background-size: contain;
        width: 12px;
        height: 8px;
        right: 16px;
        top: 20px;
    }

    .header__mobile-menu li.active::before {
        content: '';
        position: absolute;
        background: url('../image/drop.svg');
        background-repeat: no-repeat;
        background-size: contain;
        width: 12px;
        height: 8px;
        right: 16px;
        top: 20px;
        transform: rotate(-180deg);
    }

    .header__mobile-menu li a {
        display: flex;
        padding: 16px 16px;
        font-size: 16px;
        color: var(--black);
        font-family: 'Inter-Medium';
        text-decoration: none;
        margin-bottom: 12px;
        border-radius: 8px;
        width: auto;
    }

    .header__mobile-menu li .drop__menu {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 12px 0px;
        margin-bottom: 12px;
    }

    .header__mobile-menu li .drop__menu li a {
        margin-bottom: 0xp;
    }

    .header__mobile-menu li a:hover {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li a:focus {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li a:active {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li.active a {
        background: rgba(214, 66, 56, 0.08);
    }

    .header__mobile-menu li .drop__menu li a {
        background: #fff;
    }

    .header__mobile-container {
        padding: 16px 15px;
    }

    .header__mobile-bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .openMenu {
        display: flex;
        flex-direction: column;
    }

    .closeMenu {
        display: none;
    }

    .company__btn a {
        border-radius: 8px;
        padding: 0px 16px;
        width: 163px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        background: var(--red);
        color: var(--white);
        text-decoration: none;
    }

    .header__mobile-socials {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .header__mobile-socials a {
        width: 48px;
        height: 48px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        margin-left: 8px;
    }

    .header__mobile-socials a.vk {
        background: #0066FF;
    }

    .header__mobile-socials a.yt {
        background: #FF0000;
    }

    .header__mobile-socials a.yz {
        background: rgba(0, 0, 0, 0.05);
    }

    /* .breadcrums {
        padding-top: 0px;
    } */

    .breadcrums__block {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        padding-top: 24px;
    }

    .breadcrums__list {
        padding-bottom: 16px;
    }

    .mains__container h1 {
        font-size: 32px;
    }

    .services-banner {
        margin-top: -110px;
        height: 520px;
    }

    .services__item {
        flex-direction: column-reverse;
    }

    .services__item:nth-of-type(2n) {
        flex-direction: column-reverse;
    }

    .services__item-image {
        width: 100%;
        margin-bottom: 42px;
    }

    .services__item-image img {
        width: 100%;
        height: 250px;
    }

    .services__item-content {
        width: 100%;
        padding-right: 0px;
    }

    .forms {
        background: var(--white);
        /* height: 1100px; */
        position: relative;
    }

    .forms__content {
        width: 100%;
    }

    .form__group input {
        width: auto;
    }

    .form button {
        width: 100%;
    }

    .white {
        position: relative;
    }

    .forms__container {
        padding-top: 188px;
    }

    .forms {
        padding-top: 50px;
    }

    .forms::after {
        position: absolute;
        content: '';
        top: 12px;
        width: 320px;
        height: 210px;
        right: 0;
        background: url('../image/home-mobile.png');
        background-position: top right;
        background-repeat: no-repeat;
    }

    .forms__preims {
        flex-direction: column;
    }

    .forms__item {
        width: auto;
        flex-direction: row;
        margin-right: 0px;
        height: 88px;
        align-items: center;
        border-radius: 100px;
        padding: 0px 24px 0px 16px;
        margin-bottom: 16px;
    }

    .forms__item-icon {
        margin-bottom: 0px;
    }

    .footer__container {
        justify-content: flex-start;
        position: relative;
    }

    .footer__column {
        width: 49%;
        margin-bottom: 24px;
    }

    .footer__column:nth-of-type(1) {
        width: 100%;
    }

    .footer__column:nth-of-type(2n) {
        width: 49%;
    }

    .footer__column:nth-of-type(3n) {
        width: 49%;
    }

    .footer__column:nth-of-type(2) {
        top: 226px;
        left: 49%;
        position: absolute;
    }

    .footer__column:nth-of-type(4) {
        top: 0px;
        left: 49%;
        position: absolute;
    }

    .white__content {
        width: 100%;
    }

    .white__image {
        display: none;
    }

    .news {
        padding: 20px 0px 80px;
    }

    .news__top {
        font-size: 24px;
        text-align: center;
    }

    .sections__image img {
        height: 350px;
    }

    .sections__container {
        flex-direction: column;
    }

    .sections__blocks {
        width: auto;
        margin-bottom: 16px;
    }

    .sections__name {
        font-size: 24px;
    }

    .pay__item {
        width: 100%;
        margin-right: 0px;
    }

    .pay__item-image img {
        height: 100%;
    }

    .pay__item-content {
        min-height: auto;
    }

    .white__socials {
        flex-direction: column;
        margin-top: 24px;
    }

    .white__social-item {
        margin-right: 0px;
        margin-bottom: 16px;
        width: 100%;
    }

    .white__social-item:nth-of-type(1) {
        background: #06f;
        border-radius: 8px;
        height: 48px;
        text-align: center;
    }

    .white__social-item:nth-of-type(2) {
        background: #f00;
        border-radius: 8px;
        height: 48px;
        text-align: center;
    }

    .white__social-item:nth-of-type(3),
    .white__social-item:nth-of-type(4) {
        /* background: rgba(0, 0, 0, 0.05); */
        border-radius: 8px;
        height: 48px;
        text-align: center;
    }

    .menus__sliders {
        width: calc(100% - 120px);
    }

    .greys__image img {
        max-width: 100%;
    }

    .contact {
        padding: 68px 0px 0px 0px;
    }

    .contact__content {
        width: 100%;
    }

    .adress__item {
        flex-direction: column;
    }

    .adress__item-content {
        width: 100%;
    }

    .adress__item-slider {
        width: 100%;
        padding-left: 0px;
    }

    .adress__item-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .adress__item-title {
        text-align: center;
    }

    .adress__item-adres {
        text-align: center;
    }

    .adress__item-time {
        text-align: center;
    }

    .adress__item-link a {
        width: auto;
        padding: 14px 16px;
    }

    .adress__item-metro {
        margin-top: 24px;
    }

    /* .forms__grey {
        height: 760px;
    } */

    .forms__grey .forms__container {
        padding-top: 0px;
        display: flex;
        flex-direction: column-reverse;
    }

    .forms__grey .forms__content {
        width: 100%;
        display: block;
        margin-top: 300px;
        position: relative;
        z-index: 2;
    }

    /* .form__grey .form__group input {
		width: auto;
	} */
    .form__grey p {
        max-width: auto;
    }

    .forms__grey .forms__image {
        position: absolute;
        width: 100%;
        margin-top: 0px;
        left: 0px;
        top: -23px;
    }

    .forms__grey .forms__image img {
        height: 270px;
        width: 100%;
    }

    .numbers__item {
        width: 100%;
    }

    .history {
        padding: 0px 0px 42px 0px;
    }

    .history__container {
        flex-direction: column-reverse;
    }

    .history__content {
        width: 100%;
        text-align: center;
        margin-top: 32px;
    }

    .history__link a {
        width: auto;
    }

    .history__title {
        font-size: 24px;
        margin-top: 16px;
        margin-bottom: 24px;
    }

    .history__text {
        margin-top: 0px;
        margin-bottom: 24px;
    }

    .history__image {
        width: 100%;
    }

    .abouts__top {
        flex-direction: column;
    }

    .abouts__title {
        font-size: 24px;
    }

    .abouts__top-left {
        width: 100%;
    }

    .abouts__top-right {
        width: 100%;
        padding-left: 0;
        border-left: 0;
    }

    .abouts__item {
        width: 100%;
    }

    .abouts__item:nth-of-type(2) {
        width: 100%;
    }

    .abouts__item:nth-of-type(3) {
        width: 100%;
    }

    .block__lists .block__one {
        width: 100%;
        margin-right: 0px;
    }

    .block__grey {
        padding: 0 0px 42px 0px;
    }

    .block__grey .block__title {
        text-align: center;
        margin-bottom: 0px;
    }

    .block__top {
        flex-direction: column;
        margin-bottom: 24px;
    }

    .block__title {
        width: 100%;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .block__description {
        width: 100%;
        font-size: 14px;
    }

    .services-banner .mains__container {
        width: 100%;
        padding-top: 160px;
    }

    .winfo__container {
        padding: 20px;
    }

    .numbers__item-top span {
        font-size: 32px;
    }

    /* .breadcrums-white {
        margin-top: 85px;
    } */

    .breadcrums_white {
        padding-top: 30px;
    }

    .banks__block {
        flex-direction: column;
        padding: 42px 24px;
    }

    .banks__block-title {
        width: 100%;
    }

    .banks__block-title span {
        font-size: 42px;
    }

    .banks__block-text {
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0;
        padding-top: 24px;
        margin-top: 24px;
        width: 100%;
        font-size: 16px;
    }

    .white-ipoteka {
        width: 100%;
    }

    .white-ipoteka__title {
        font-size: 24px;
    }

    .forms__grey .forms__title {
        font-size: 32px;
    }

    .form__grey button {
        width: 100%;
    }

    .prog__top {
        font-size: 32px;
        text-align: center;
    }

    .prog__line-header {
        display: none;
    }

    .prog__item {
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 42px;
        padding: 24px 16px;
        margin-bottom: 16px;
    }

    .prog__item-logo {
        width: 60%;
        margin-bottom: 24px;
    }

    .prog__item-logo img {
        margin: 0 auto;
        text-align: center;
    }

    .prog__item-value {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .prog__item-value p {
        display: block;
        width: 58%;
        line-height: 120%;
        font-family: 'Inter-Medium';
        color: var(--black);
        font-size: 14px;
    }

    .prog__item-value span {
        width: 40%;
    }

    .video__media {
        height: 500px;
    }

    .videos {
        height: 500px;
        position: relative;
    }

    .tops__title {
        width: 100%;
        text-align: center;
    }

    .tops__link a {
        display: none;
    }

    .tops__item {
        width: 100%;
        margin-bottom: 16px;
        margin-right: 0px;
    }

    .mac {
        height: auto;
    }

    .mac__container {
        flex-direction: column-reverse;
        position: relative;
    }

    .mac__content {
        width: 100%;
    }

    .mac__image {
        position: relative;
        right: 0;
        bottom: 0;
    }

    .mac__image img {
        max-width: 100%;
    }

    .mac__title {
        font-size: 24px;
        text-align: center;
    }

    .mac__text {
        text-align: center;
        margin-bottom: 24px;
    }

    .mac__link a {
        width: auto;
        margin-right: 0px;
    }

    .directors {

    }

    .directors___container {
        flex-direction: column;
    }

    .directors__content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .directors__citata {
        width: 100%;
        margin-top: 42px;
    }

    .directors__citata p {
        font-size: 16px;
        width: 80%;
        line-height: 130%;
        padding-left: 40px;
    }

    .directors__citata::before {
        bottom: 100px;
    }

    .directors__citata::after {
        left: -5px;
    }

    .directors__link a {
        width: auto;
        margin-top: 50px;
    }

    .what {
        padding-top: 0px;
    }

    .what__top {
        font-size: 24px;
        text-align: center;
    }

    .what__item {
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
        padding-top: 42px;
        margin-right: 0px;
        height: auto;
        padding-bottom: 42px;
    }

    .what__item-content {
        width: 80%;
    }

    .what__item-title {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .home {

    }

    .home__top {
        width: 100%;
    }

    .home-block__title {
        font-size: 32px;
    }

    .sotrud__container {
        flex-direction: column;
    }

    .sotrud__title {
        width: 100%;
        font-size: 24px;
    }

    .sotrud__content {
        width: 100%;
    }

    .sotrud__link a {
        width: auto;
        margin-top: 50px;
    }

    .garant {

    }

    .garant__title {
        font-size: 32px;
    }

    .garant__text {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .garant__link a {
        width: auto;
        margin-right: 0px;
    }

    .winfo__container {
        flex-direction: column;
    }

    .winfo__l {
        width: 100%;
    }

    .winfo__title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .winfo__text {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .winfo__r {
        width: 100%;
    }

    .winfo__item {
        gap: 5px;
    }

    .winfo__item-text {
        font-size: 18px;
    }

    .winfo__item-icon {
        width: 25%;
    }

    .step {
        padding: 22px 0px 22px 0px;
    }

    .step__top {
        font-size: 24px;
        text-align: center;
    }

    .step__item {
        width: 100%;
        margin-right: 0px;
    }

    .docs__top-title {
        font-size: 24px;
        text-align: center;
    }

    .video__container {
        flex-direction: column;
    }

    .video__title {
        width: 100%;
        font-size: 24px;
        text-align: center;
        margin-bottom: 16px;
    }

    .video__text {
        width: auto;
        font-size: 16px;
        text-align: center;
    }

    .master__top {
        font-size: 24px;
        text-align: center;
    }

    .master__container {
        flex-direction: column-reverse;
    }

    .master__l {
        width: auto;
        padding: 16px 16px;
    }

    .master__l-title {
        font-size: 24px;
    }

    .master__r {
        width: auto;
    }

    .master__l-image {
        position: relative;
        bottom: 0px;
        padding: 24px 24px;
        display: block;
        text-align: center;
    }

    .vigod__top {
        font-size: 24px;
    }

    .vigod__list {
        flex-direction: unset;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .vigod__item {
        width: 49%;
        margin-bottom: 24px;
    }

    .coteg-slide__image {
        height: 400px;
    }

    .coteg-slide__image img {
        max-width: 100%;
        display: block;
        height: 100%;
        object-fit: cover;
    }

    .coteg__work-nav {
        top: 420px;
        width: auto;
        left: 10px;
        right: 10px;
    }

    .coteg__work-nav .swiper-horizontal > .swiper-pagination-bullets, .coteg__work-nav .swiper-pagination-bullets.swiper-pagination-horizontal, .coteg__work-nav .swiper-pagination-custom, .coteg__work-nav .swiper-pagination-fraction {
        width: 100%;
        margin-left: 50px;
        margin-right: 50px;
    }

    .coteg__work-nav .swiper-button-nextC {
        left: auto;
        right: 0;
    }

    .tabs {
        margin-top: 80px;
    }

    .tabs__list {
        flex-direction: column;
    }

    .coteg__container {
        flex-direction: column;
    }

    .coteg__main {
        width: auto;
        background: var(--white);
        border-radius: 12px;
        padding: 16px;
        margin-bottom: 24px;
    }

    .coteg__main-title {
        font-size: 24px;
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .coteg__main-info span {
        margin-bottom: 8px;
        display: block;
    }

    .coteg__container .coteg__main-info .coteg__ipoteka-price {
        font-size: 1.25rem;
    }

    .coteg__main-price {
        font-size: 24px;
    }

    .coteg__info p {
        font-size: 16px;
    }

    .coteg__info {
        width: auto;
    }

    .coteg__stack-item {
        width: 37%;
    }

    /* .coteg__props-item {
        width: 21%;
    }

    .coteg__props-item:nth-of-type(3) {
        margin-right: 0px;
    }

    .coteg__props-item:nth-of-type(4) {
        width: 38%;
    }

    .coteg__props-item:nth-of-type(5) {
        width: 38%;
        margin-right: 0px;
    } */

    .tops__item-image img {
        width: 100%;
    }

    .prices {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .prices__top {
        width: 100%;
    }

    .prices__top-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .spec__container {
        flex-direction: column;
    }

    .spec__man {
        width: auto;
        align-items: center;
    }

    .spec__content {
        width: auto;
        margin-top: 24px;
    }

    .spec__white-title {
        font-size: 24px;
    }

    .likeit__top, .doms__top {
        font-size: 24px;
    }

    .otziv__item-image img {
        width: 100%;
        display: block;
    }

    .prices__list {
        display: block;
        flex-direction: unset;
        flex-wrap: nowrap;
    }

    .prices__list .swiper-wrapper {
        display: block;
        flex-wrap: unset;
    }

    .prices__item {
        padding: 16px 0px;
        width: auto;
    }

    .price-acc__title {
        align-items: center;
    }

    .black__container {
        flex-direction: column-reverse;
    }

    .black__content {
        width: auto;
        align-items: center;
        justify-content: center;
        padding-top: 42px;
    }

    .black__title {
        font-size: 24px;
    }

    .black__text {
        text-align: center;
    }

    .black__link a {
        width: auto;
    }

    .black__image {
        width: auto;
        position: relative;
        right: auto;
        bottom: -10px;
        height: 370px;
    }

    .black__image img {
        width: auto;
        height: 370px;
    }

    .coteg-slide__container {
        margin-top: -60px;
    }

    .uslovie__list-mob {
        justify-content: center;
    }

    .uslovie__list-mob .uslovie__item {
        width: auto;
        margin-bottom: 16px;
    }

    .uslovie__list-mob .uslovie__item:nth-of-type(2) {
        display: none;
    }

    .uslovie__list-mob .uslovie__item:nth-of-type(3) {
        display: none;
    }

    .uslovie__list-mob .uslovie__item:nth-of-type(6) {
        display: none;
    }

    .footer__btn {
        position: relative;
        left: auto;
        bottom: auto;
    }

    .footer__copy {
        width: auto;
        margin-left: 0;
    }

    .footer__socials {
        position: relative;
        left: auto;
        bottom: auto;
    }

    .footer__column:nth-of-type(4) .footer__links {
        position: relative;
        top: auto;
        left: auto;
    }

    .footer__column:nth-of-type(4) .footer__copyright {
        position: relative;
        top: auto;
        left: auto;
    }

    .popup-modal {
        width: auto;
    }

    .uslovie__item {
        min-width: 281px;
        height: 281px;
        margin-bottom: 16px;
    }
}

.decor {
    margin-top: 120px;

    .section__title {
        border-bottom: 2px solid #6CC031;
        padding-bottom: 13px;

        h2 {
            color: #0B1E11;
            font-style: normal;
            font-weight: 500;
            font-size: 32px;
            line-height: 44px;
            font-family: 'Rubik-Medium';
            margin: 0;
        }
    }
}

.form-decor {
    display: flex;
    flex-direction: column;
    margin-top: 42px;
    margin-bottom: 100px;
}

.width-50 {
    width: 50%;
}

.group__container {
    display: flex;
    flex-wrap: wrap;
}

.group__container .form__group {
    width: 47%;
    margin-right: 30px;
}

.group__container .form__group:nth-of-type(2n) {
    margin-right: 0px;
}

.group-three__container {
    display: flex;
    flex-wrap: wrap;
}

.group-three__container .form__group {
    width: 30%;
    margin-right: 28px;
}

.group-three__container .form__group:nth-of-type(3n) {
    margin-right: 0px;
}

.ml-auto {
    margin-left: auto;
}

.text-center {
    text-align: center;
}

/* Progressbar */
.progressbar {
    position: relative;
    display: flex;
    counter-reset: step;
    justify-content: space-between;
    margin: 0 auto;
    flex-direction: row;
    width: 500px;
    height: 60px;
    z-index: 1;
}

.progressbar::after {
    content: "";
    position: absolute;
    top: 35%;
    transform: rotate(0deg);
    height: 1px;
    width: 100%;
    background-color: var(--white);
    z-index: -1;
    right: auto;
    width: 255px;
}


.progress {
    content: "";
    position: absolute;
    top: 35%;
    transform: rotate(0deg);
    height: 1px;
    width: 100%;
    background-color: var(--red);
    z-index: -1;
    right: auto;
    width: 255px;
}

.progress {
    background-color: var(--white);
    width: 100%;
    transition: 0.3s;

}

.progress-step {
    width: 32px;
    height: 32px;
    background-color: var(--white);
    border: 6px solid var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 54px;
}

.progress-step::before {
    counter-increment: step;
    content: counter(step);
    left: 12px;
    position: absolute;
    color: var(--black);
    z-index: 9;
    opacity: 0.2;
}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    left: 80px;
    font-size: 0.85rem;
    color: #919294;
    width: 180px;
    display: none;
}

.quiz-question__label #file-input {
    display: none;
}

.quiz-question__label label[for='file-input'] * {
    vertical-align: middle;
    cursor: pointer;
}

.quiz-question__label img {
    position: absolute;
    top: 40px;
    left: 50%;
}

.progress-step-active {
    background-color: var(--red);
    color: var(--white);
    border: 6px solid var(--red);
}

.progress-step-active::before {
    opacity: 1;
}

.progress-step-active::after {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #0B1E11;
    width: 180px;
    display: none;
    opacity: 1;
}

.progress-step-active::before {
    color: var(--white);
    background: var(--red);

}

/* Form */
.form {
    /* width: clamp(320px, 30%, 430px); */
    margin: 0 auto;
    margin-top: 2.0625rem;
    /* border: 1px solid #ccc;
  border-radius: 0.35rem; */
    /* padding: 1.5rem; */
}

.form-step {
    display: none;
    transform-origin: top;
    animation: animate 0.5s;
    width: 100%;
}

.form-step-active {
    display: block;
}

.form-step__call {
    max-width: 600px;
    padding-top: 40px;
    margin: 0 auto;
}

.input-group {
    margin: 2rem 0;
}

@keyframes animate {
    from {
        transform: scale(1, 0);
        opacity: 0;
    }
    to {
        transform: scale(1, 1);
        opacity: 1;
    }
}

/* Button */
.btns-group {
    display: flex;
    flex-direction: row;
}

.btn {
    padding: 0.75rem;
    border: none;
    display: block;
    width: max-content;
    padding: 12px 40px 8px 40px;
    text-decoration: none;
    background: linear-gradient(45deg, #6CC031 0%, #4DC966 100%);
    border-radius: 4px;
    color: #f3f3f3;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #4C9F11;
}

.btn-prev {
    width: 119px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #6CC031;
    border-radius: 4px;
    color: #0B1E11;
    margin-right: 30px;
}

.btn:hover {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

@media (max-width: 776px) {
    .width-50 {
        width: 100%;
    }

    .group__container .form__group {
        width: 100%;
        margin-right: 0px;
    }

    .group-three__container .form__group {
        width: 100%;
        margin-right: 0px;
    }
}

@media (max-width: 576px) {
    .form-decor {
        flex-direction: column;
    }

    .progressbar {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        height: 40px;
    }

    .form-step {
        width: 100%;
    }

    .group__container .form__group {
        width: 100%;
        margin-right: 0px;
    }

    .progress-step:before {
        display: none;
    }

    .progress-step:after {
        display: none;
    }

    .progress-step {
        margin-right: 64px;
    }

    .progress-step:last-child {
        margin-right: 0px;
    }

    .progressbar::before {
        transform: rotate(0deg);
        width: 100%;
        right: 0;
        top: 34%;
    }

    .progress {
        transform: rotate(0deg);
        right: auto;
        top: 33%;
    }

    .group-three__container .form__group {
        width: 100%;
        margin-right: 0px;
    }

    .abouts__lists {
        grid-template-columns: 1fr;
    }
}

.banks__sliders .swiper-wrapper,
.banks__slider .swiper-wrapper {
    transition-timing-function: linear;
}

.filter__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
    align-items: center;
}

.filter__tag-title {
    line-height: normal;
    font-size: 24px;
}

.filter__tag {
    padding: 8px 16px;
    background: #f4f4f4;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: .03em;
    color: black;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 500;
}

.filter__tag:hover {
    background: #B30000;
    color: white;
    opacity: 1;
}

@media all and (max-width: 700px) {

    .filter__tags {
        padding: 0 20px;
    }

}

.tops__item-title p {
    white-space: nowrap; /* Текст не переносится */
    overflow: hidden; /* Обрезаем всё за пределами блока */
    text-overflow: ellipsis; /* Добавляем многоточие */
}

.metrika {
    position: absolute;
    visibility: hidden;
    opacity: 0;
}

.feedbacks__main {
    display: flex;
    justify-content: center;
}

.mac_gray {
    background: #f4f4f4;
}

.garant_white {
    background: white;
}

.catalog {
    padding-bottom: 50px;
}

.categories {
    background: white;
}

.categories .block__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.categories .block__one {
    height: 167px;
    width: 100%;
    margin: 0;
}

.categories .link-name {
    font-size: 20px;
}

.header__menu ul li::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 10px;
}

.footer__menu ul {
    margin-top: 12px;
}

.header__menu ul li .drop__menu_images {
    max-height: calc(100svh - 150px);
    max-width: 1053px;
    width: 1053px;
    padding: 28px;
    box-sizing: border-box;
}

.header__menu ul li .drop__menu-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow: auto;
    flex-wrap: wrap;
    gap: 20px;
    box-sizing: border-box;
}

.header__menu ul li .drop__menu_images::after {
    content: "";
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 40px;
    position: absolute;
    z-index: 2;
}

.drop-menu__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drop-menu__img-item {
    height: 167px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    width: calc(33.33333% - 20px);
}

.drop-menu__img-item:hover {
    outline: 2px solid #B30000;
}

.drop-menu__img-item::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.header__menu ul li .drop-menu__img-link {
    width: calc(100% - 48px);
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    z-index: 2;
    font-weight: 500;
    font-size: 16px;
    color: white;
}

.header__menu ul li .drop-menu__img-link:hover {
    color: white;
}

@media all and (max-width: 1320px) {

    .header__menu ul li .drop__menu_images {
        max-width: 800px;
        width: 800px;
        padding: 20px;
    }

}

.tabs__content {
    grid-template-columns: 1fr;
    height: 590px;
    gap: 24px;
}

.tabs__slider-wrapper-1 {
    position: relative;
}

.tabs__slider {
    max-height: 530px;
    height: 100%;
    padding: 5px;
}

.tabs__slide {
    width: calc(100% - 10px);
    height: 117px;
    border-radius: 16px;
    opacity: 0.5;
    outline: none;
    border: none;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tabs__slide_active {
    outline: 2px solid #B30000;
    opacity: 1;
}

.tabs__slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tabs__slider-btn {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    border: none;
    background: none;
    outline: none;
    width: 24px;
    z-index: 1;
    cursor: pointer;
}

.tabs__slider-btn.swiper-button-disabled {
    display: none;
}

.tabs__slider-btn svg {
    height: auto;
    width: 100%;
}

.tabs__slider-btn_top {
    top: 15px;
}

.tabs__slider-btn_bottom {
    bottom: 5px;
}

.coteg__slider-wrapper {
    display: flex;
    align-items: flex-end;
}

.coteg {
    padding-top: 24px;
    padding-bottom: 62px;
    margin-top: 0;
    background: #EAEAEA;
}

.coteg-slide {
    background: #EAEAEA;
}

.coteg-slide__image {
    max-height: 590px;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.coteg-slide__image img {
    max-height: 100%;
    height: 100%;
    width: 100%;
    /*object-fit: contain;*/
    object-position: top;
}

.tabs {
    margin-top: 32px;
}

.breadcrums_top {
    margin-top: 0;
    /* padding-top: 104px; */
    padding-top: 30px;
    background: #EAEAEA;
}

.coteg__container {
    margin-bottom: 40px;
}

.tabs__list {
    gap: 8px;
}

.tabs__content:first-child .tabs__slide-img {
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1180px) {
    .breadcrums_top {
        padding-top: 50px;
    }
}

@media all and (max-width: 1000px) {
    .tabs__content {
        grid-template-columns: 1fr;
        height: auto;
    }

    .tabs__slider-wrapper-1 {
        display: none;
    }
}

@media (max-width: 800px) {
    .breadcrums_top {
        padding-top: 30px;
        padding-bottom: 110px;
    }
}

@media (max-width: 630px) {
    .tabs {
        margin-top: 80px;
    }

    .breadcrums_top {
        padding-bottom: 90px;
    }
}

.text {
    margin-bottom: 50px;
}

.text__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.text__content * {
    line-height: 140%;
}

.text__content h2, .text__content h3, .text__content h4 {
    font-size: 18px;
    margin-top: 2px;
    font-weight: 700;
}

.akcii {
    margin: 0 10px 16px 10px;
    color: white;
    width: 100%;
}

.akcii_promotions {
    padding-bottom: 100px;
}

.akcii_catalog {
    margin: 0;
}

.akcii_catalog {
    grid-column-start: 1;
    grid-column-end: 3;
}

.akcii-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.akcii-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.akcii-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.akcii-list-item::before {
    content: "";
    display: inline-block;
    height: 20px;
    width: 20px;
    background-image: url("../image/check-icon-banner.svg");
    background-size: 100%;
    background-repeat: no-repeat;
}

.akcii-list-text {
    font-size: 16px;
    font-weight: 500;
}

.akcii-text {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 28px;
}

.akcii-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.akcii-price {
    font-size: 28px;
    font-weight: 700;
}

.akcii-item {
    width: 315px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    background: white;
    color: black;
    position: absolute;
    left: 0;
    top: 37px;
    gap: 8px;
}

.akcii-item::before {
    content: "";
    height: 44px;
    width: 31px;
    position: absolute;
    top: 0;
    left: 100%;
    background-image: url("../image/banner-pseudo.svg");
    background-size: 100%;
    background-repeat: no-repeat;
}

.akcii-square {
    font-size: 24px;
    font-weight: 800px;
    padding: 0 12px;
    border: 2px solid white;
    border-radius: 8px;
}

.akcii h2 {
    font-size: 32px;
    font-weight: 600;
}

.akcii p {
    font-size: 18px;
}

.akcii-wrap {
    position: relative;
    padding: 109px 24px 24px;
    border-radius: 16px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    background-color: #B30000;
    max-width: 100%;
    width: 100% !important;
    color: white;
    background-size: 731px 100%;
    background-repeat: no-repeat;
    background-position: right;
    box-sizing: border-box;
}

.akcii-wrap_favorit {
    background-image: url("../image/favorit-house.png");
}

.akcii-wrap_nord {
    background-image: url("../image/nord-house.png");
}

.akcii-wrap_white {
    background: white !important;
    color: black;
    padding: 0;
    grid-template-columns: 1fr 1.1fr;
}

.akcii-wrap_white .akcii-item::before {
    height: 61px;
    width: 44px;
    background-image: url("../image/banner-pseudo-red.svg");
}

.akcii-wrap_white .akcii-content {
    padding: 117px 0 24px 24px;
}

.akcii-wrap_white .akcii-item {
    height: 61px;
    background: #B30000;
    color: white;
    top: 28px;
}

.akcii-wrap_white .akcii-square {
    border-color: #B30000;
    color: #B30000;
}

.akcii-wrap_white .akcii-text {
    color: #B30000;
}

.akcii-wrap_white .akcii-text {
    color: #B30000;
}

.akcii-wrap_white .akcii-price {
    color: #B30000;
}

.akcii-wrap_white .akcii-list-text {
    color: rgba(0, 0, 0, 0.47);
}

.akcii-wrap_white .akcii-list-item::before {
    content: "";
    display: inline-block;
    height: 20px;
    width: 20px;
    background-image: url("../image/banner-check-red.svg");
    background-size: 100%;
    background-repeat: no-repeat;
}

.akcii_block {
    width: 100%;
    margin: 0;
    background: rgba(246, 246, 246, 0.9);
    padding-top: 62px;
}

.akcii-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.akcii-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
}

.akcii b {
    font-weight: 600;
}

.akcii a {
    /*margin-top: auto;*/
    border-radius: 8px;
    padding: 0px 16px;
    width: auto;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: white;
    color: black;
    text-decoration: none;
    max-width: 250px;
}

.akcii-wrap_white a {
    background: #B30000;
    color: white;
}

@media (max-width: 998px) {
    .akcii h2 {
        font-size: 18px;
    }

    .akcii-wrap {
        border-radius: 10px;
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        padding: 60px 0 20px !important;
    }
}

@media (max-width: 830px) {
    .akcii-wrap {
        background: #B30000;
    }
}

@media all and (max-width: 620px) {
    .form button, .form input[type="submit"] {
        width: 100%;
    }

    .garant__content {
        flex-direction: column;
    }

    .footer__column {
        width: 100% !important;
        position: static !important;
        margin-bottom: 0;
    }

    .footer__container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .footer__menu ul {
        margin-top: 15px;
    }

    .header__mobile-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .header__mobile-bottom .company__btn,
    .header__mobile-bottom .company__btn a {
        width: 100%;
    }

    .sections__container {
        display: grid;
        grid-template-areas: none;
        grid-template-columns: 1fr;
    }

    .sections__blocks {
        margin-bottom: 0;
    }
}

@media all and (max-width: 500px) {

    .akcii-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .akcii-item {
        width: 230px;
        font-size: 16px;
    }

    .akcii-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .akcii-wrap:not(.akcii-wrap_white) {
        padding-right: 0;
    }

}

.numbers {
    padding-top: 0;
}

.ipoteka-banner {
    padding: 24px;
    background: #f6f6f6;
    border-radius: 1rem;
    position: relative;
    background-image: url("../image/banner-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 40px;
}

.ipoteka-banner * {
    position: relative;
    z-index: 2;
}

.ipoteka-banner_fullscreen {
    padding-top: 5.75rem;
    padding-bottom: 2.5rem;
    background-image: none;
    margin-bottom: 0;
}

.ipoteka-banner_fullscreen .container {
    padding: 24px;
    background: white;
    border-radius: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.ipoteka-banner::before {
    content: "";
    height: 221px;
    width: 294px;
    background-image: url("../image/banner-img.png");
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.ipoteka-banner_fullscreen .container::before {
    content: "";
    height: 221px;
    width: 294px;
    background-image: url("../image/banner-img.png");
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.ipoteka-banner_fullscreen::before {
    display: none;
}

.ipoteka-banner__title {
    font-weight: 600;
    font-size: 1.69rem;
    margin-bottom: 8px;
}

.ipoteka-banner__title_marked {
    color: #B30000;
    margin-bottom: 8px;
}

.ipoteka-banner__subtitle {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.ipoteka-banner__bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ipoteka-banner__btn {
    border-radius: 8px;
    padding: 8px 16px;
    min-width: 225px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: #B30000;
    color: white;
    text-decoration: none;
    border: none;
    outline: none;
}

.ipoteka-banner__info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ipoteka-banner__info-list-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ipoteka-banner__info-list-item::before {
    content: "";
    height: 20px;
    width: 20px;
    background-image: url("../image/red-check-icon.svg");
    background-size: 100%;
    background-repeat: no-repeat;
}

.ipoteka-banner__info-text {
    font-size: 1rem;
    font-weight: 500;
}

.programs {
    padding-top: 62px;
    background: #f6f6f6;
}

.ipoteka-banner_red {
    background-color: #B30000;
    color: white;
    background-image: url("../image/ipoteka-banner-bg-2.png");
}

.ipoteka-banner_red .ipoteka-banner__btn {
    background: white;
    color: black;
}

.ipoteka-banner_red .ipoteka-banner__title_marked {
    color: white;
}

.ipoteka-banner_red .ipoteka-banner__btn {
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
}

.ipoteka-banner_red .ipoteka-banner__info-list-item::before {
    background-image: url("../image/white-check-icon.svg");
}

.programs__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.programs__info-row {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 64px;
}

@media all and (max-width: 1000px) {

    .programs__info-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .programs__red-info-subtitle {
        margin-bottom: 16px;
    }

    .programs__red-info-section {
        width: calc(100% - 38px) !important;
    }

}

@media all and (max-width: 600px) {

    .ipoteka-banner__bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .programs__info-section {
        flex-direction: column;
    }

    .programs__info-column:first-child {
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
        padding-bottom: 16px;
        margin-bottom: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

}

.programs__red-info-section {
    width: 100%;
    background-color: #B30000;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 16px;
    color: white;
}

.programs__info-row:first-child .programs__red-info-section {
    background-image: url("../image/ipoteka-info-img-1.png");
}

.programs__info-row:last-child .programs__red-info-section {
    background-image: url("../image/ipoteka-info-img-2.png");
}

.programs__red-info-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    margin-bottom: 12px;
}

.programs__red-info-subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
}

.programs__red-info-btn {
    width: 100%;
    background: white;
    padding: 8px 16px;
    font-size: 16px;
    line-height: 150%;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    outline: none;
    font-family: "Inter-Regular";
    box-sizing: border-box;
    color: black;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.programs__info-section {
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
}

.programs__info-column {
    width: 100%;
}

.programs__info-column:first-child {
    padding-right: 20px;
    margin-right: 20px;
    border-right: 2px solid rgba(0, 0, 0, 0.1);
}

.programs__info-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 110%;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: #B30000;
}

.programs__info-list {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.programs__info-list-text,
.programs__info-text {
    font-size: 0.81rem;
    line-height: 130%;
    color: rgba(0, 0, 0, 0.5);
}

.programs__info-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.programs__info-mini-title {
    font-size: 0.81rem;
    line-height: 130%;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.drop__menu_images-mobile.openMenu {
    display: grid;
}

.drop__menu_images-mobile {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.drop__menu_images-mobile .drop-menu__img-item {
    width: 100%;
}

.drop__menu_images-mobile .drop-menu__img-link {
    font-size: 1rem;
    font-weight: 500;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 8px;
    color: white;
    z-index: 2;
    margin-bottom: 0;
}

@media all and (max-width: 450px) {

    .drop__menu_images-mobile {
        grid-template-columns: 1fr;
    }

}

/* Building Header */

.building-header {
    width: 100%;
    position: absolute;
    top: 2.5rem;
    left: 0;
}

.building-header .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.building-header__logo a {
    display: block;
}

.building-header__right-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-align: right;
}

.building-header__hours {
    font-weight: 300;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.25rem;
}

.building-header__phone {
    font-weight: 500;
    font-size: 1rem;
    color: black;
    text-decoration: none;
}

.building-header__phone-btn {
    height: 2.5rem;
    width: 2.5rem;
    background: #B30000;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.building-header a,
.building-header button,
.building-footer a,
.building-footer button {
    transition: .5s;
}

.building-header a:hover,
.building-header button:hover,
.building-footer a:hover,
.building-footer button:hover {
    opacity: .5;
}

.wrapper_building a,
.wrapper_building button {
    transition: .5s;
}

.wrapper_building a:hover,
.wrapper_building button:hover {
    opacity: .5;
}

/* Other Building Sections */

.process {
    width: 100%;
    min-height: 50rem;
    height: 50rem;
    background-image: url("../image/process-img.png");
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 10.875rem;
}

.wrapper_building {
    margin-top: 0;
}

.wrapper_building .container {
    box-sizing: border-box;
}

.process__title {
    font-weight: 900;
    font-size: 3.44rem;
    line-height: 139%;
    color: #36393c;
    margin-bottom: 1.25rem;
    max-width: 46.375rem;
}

.process__title_red {
    color: #B30000;
}

.process__subtitle {
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 130%;
    color: #B30000;
    margin-bottom: 6.25rem;
}

.process__items {
    display: flex;
    gap: 1.75rem;
}

.process-item {
    max-width: 18.56rem;
    width: 100%;
    height: 8.25rem;
    padding: 4.12rem 1.5rem 1.5rem 1.5rem;
    background: white;
    border-radius: 0.75rem;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
}

.process-item__img {
    position: absolute;
    left: 0;
    top: -50px;
    left: 5px;
    z-index: 1;
}

.process-item:nth-child(2) .process-item__img {
    top: -69px;
}

.process-item__btn {
    padding: 0.25rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: 1.625rem;
    background: #B30000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    animation: pulseBtn 3s ease infinite;
}

@keyframes pulseBtn {
    0% {
        top: 1rem;
    }

    50% {
        top: 0.5rem;
    }

    100% {
        top: 1rem;
    }
}

.process-item__name {
    font-size: 1rem;
    line-height: 130%;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.process-item__name_red {
    color: #B30000;
    font-weight: 700;
}

.approach {
    width: 100%;
    padding-top: 6.25rem;
    background: #f6f6f6;
}

.approach .container {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.approach__row_two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.approach__column {
    width: 100%;
}

.approach__title {
    font-weight: 800;
    font-size: 2rem;
    line-height: 120%;
    color: #36393c;
    margin-bottom: 1.75rem;
}

.approach__title_red {
    color: #B30000;
}

.approach__subtitle {
    font-size: 0.88rem;
    line-height: 170%;
    letter-spacing: -0.02em;
    color: #585b5f;
}

.approach__video,
.approach__img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 0.75rem;
}

.approach__row_items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.approach-item {
    width: 100%;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.approach-item__icon {
    max-width: 2.62rem;
    height: auto;
}

.approach-item__name {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    font-size: 0.94rem;
    line-height: 170%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #585b5f;
}

.approach-item__name_bold {
    font-weight: 700;
}

.places {
    width: 100%;
    padding: 6.25rem 0;
    background: #f6f6f6;
}

.places__header {
    margin-bottom: 2.5rem;
}

.places__title {
    display: inline-block;
    font-weight: 800;
    font-size: 2rem;
    line-height: 120%;
    color: #36393c;
}

.places__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.25rem;
}

.place {
    width: 100%;
    box-sizing: border-box;
}

.place__img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    margin-bottom: 1.25rem;
    border-radius: 0.75rem;
}

.place__title {
    display: inline-block;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    color: black;
    margin-bottom: 0.5rem;
}

.place__title_red {
    color: #B30000;
}

.place__information {
    font-size: 0.88rem;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.5);
}

.place__information + .place__information {
    margin-top: 0.5rem;
}

.place__link {
    display: inline-flex;
    padding: 0.75rem 1rem;
    background: white;
    text-decoration: none;
    color: black;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 150%;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* Building Footer */

.building-footer {
    width: 100%;
    padding: 3.75rem 0;
}

.building-footer .container {
    width: 100%;
    box-sizing: border-box;
}

.building-footer__row:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2.5rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.building-footer__row:first-child .building-footer__column:first-child {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.building-footer__row:last-child .building-footer__column:last-child {
    text-align: right;
}

.building-footer__row:first-child .building-footer__column:last-child {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.building-footer__row:last-child {
    display: flex;
    justify-content: space-between;
}

.building-footer__logo a {
    display: block;
}

.building-footer__info-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.building-footer__hours {
    font-weight: 300;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.25rem;
}

.building-footer__phone {
    font-weight: 500;
    font-size: 1rem;
    color: black;
    text-decoration: none;
}

.building-footer__phone-btn {
    height: 2.5rem;
    width: 2.5rem;
    background: #B30000;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.building-footer__raiting {
    width: 11.38rem;
}

.building-footer__socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.building-footer__info-text {
    font-size: 0.88rem;
    letter-spacing: -0.01em;
    color: rgba(0, 0, 0, 0.5);
}

/* Building Media Queries */

@media all and (max-width: 1000px) {

    .process {
        height: auto;
        padding-bottom: 1.25rem;
        background-position: right -50rem top;
    }

    .process__items {
        flex-wrap: wrap;
        gap: 3rem;
    }

    .approach__row_items {
        grid-template-columns: repeat(2, 1fr);
    }

    .places {
        padding: 3.75rem 0;
    }

    .places__items {
        grid-template-columns: 1fr;
    }

    .building-footer__row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }

    .building-footer__row:last-child {
        align-items: flex-start;
    }

    .building-footer__row:last-child .building-footer__column:last-child {
        text-align: left;
    }

}

@media all and (max-width: 900px) {

    .approach__row_two-column {
        grid-template-columns: 1fr;
    }

}

@media all and (max-width: 600px) {

    .building-footer {
        padding: 1.25rem 0;
    }

    .building-footer__row:first-child .building-footer__column {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem !important;
    }

    .building-footer__row:first-child {
        padding-bottom: 1.25rem;
    }

    .approach {
        padding-top: 3.75rem;
    }

    .approach__row_two-column {
        gap: 1.75rem;
    }

    .approach .container {
        gap: 1.75rem;
    }

    .approach__row_items {
        grid-template-columns: 1fr;
    }

    .building-header__info-column {
        display: none;
    }

    .process__title {
        font-size: 2.12rem;
        margin-bottom: 1rem;
    }

    .process__subtitle {
        font-size: 1.12rem;
        margin-bottom: 4.625rem;
    }

    .process-item {
        max-width: 100%;
        width: 100%;
    }

    .place__link {
        width: calc(100% - 2rem);
        text-align: center;
        justify-content: center;
    }

}

/* Coteg Informations */

.coteg-slide {
    position: relative;
}

.coteg-slide__informations {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: absolute;
}

.coteg-slide__information {
    padding: 0.25rem 1rem 0.25rem 0.25rem;
    background: #B30000;
    border-radius: 3.12rem;
    max-width: 10.81rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coteg-slide__information-icon {
    min-width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coteg-slide__information-name {
    font-weight: 600;
    font-size: 0.75rem;
    color: white;
}

/* Media For Articles */

@media all and (max-width: 900px) {

    .article__detail h1 {
        font-size: 32px;
    }

}

/* Blog Styles */

.block__grey .block__title_blog {
    text-align: left;
}

@media all and (max-width: 630px) {

    .block__grey .block__title_blog {
        margin-bottom: 20px;
    }

    .pop__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}

@media all and (max-width: 700px) {

    .blog .blog__item {
        width: 100%;
        margin-bottom: 20px;
    }

}

/* Promotions */

.breadcrums_promotions {
    background: none;
}

.breadcrums_promotions .breadcrums__current {
    opacity: 1;
    /* margin-bottom: 40px; */
}

.promotions {
    width: 100%;
    margin-bottom: 54px;
    margin-top: 32px;
}

.promotions .banners_promotions {
    padding-top: 0;
}

.promotions__title {
    font-size: 42px;
    font-weight: normal;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.promotions__title svg {
    min-width: 28px;
}

/* .promotions__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
} */

.other-promotions__slider-wrapper {
    align-items: stretch;
}

.promotion {
    height: auto;
    display: flex;
    flex-direction: column;
}

.promotion_full .promotion__text .promotion__left {
    width: 100%;
    position: relative;
    padding-bottom: 46px;
}

.promotion_full .promotion__text .promotion__right {
    display: none;
}

.promotion__img {
    width: 100%;
    height: 255px;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 12px 12px 0 0;
}

.promotion__img_1 {
    background-image: url('../image/promotion-img-3.png');
    background-position: bottom right;
}

.promotion__img_2 {
    background-image: url('../image/promotion-img-4.png');
}

.promotion__img_3 {
    background-image: url('../image/promotion-img-5.png');
}

.promotion__img_4 {
    background-image: url('../image/promotion-img-6.png');
}

.promotion__text {
    height: calc(100% - 280px);
    border-radius: 0 0 12px 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    background: #f4f4f4;
}

.promotion__title {
    display: inline-block;
    font-weight: 500;
    /* font-size: 20px; */
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.promotion__subtitle {
    display: inline-block;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
    font-size: 14px;
}

.promotion__time {
    display: inline-block;
    font-size: 0.88rem;
    color: rgba(179, 0, 0, 0.5);
}

.promotion__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #b30000;
    border-radius: 0.5rem;
    transition: .5s;
}

.promotion__link:hover {
    opacity: 0.5;
}

.promotion__more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 8px 16px;
    background: #b30000;
    border-radius: 0.5rem;
    margin-top: 10px;
    color: white;
    text-decoration: none;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .5s;
}

.promotion__more-btn:hover {
    opacity: 0.5;
    color: white;
}

/* @media all and (max-width: 1080px) {

    .promotions__items {
        grid-template-columns: repeat(2, 1fr);
    }

} */

@media all and (max-width: 650px) {

    /* .promotions__items {
        grid-template-columns: repeat(1, 1fr);
    } */

    .promotions__title {
        font-size: 28px;
    }

}

.promotion-page {
    margin-bottom: 20px;
}

.promotion-page__title {
    font-size: 42px;
    margin-bottom: 28px;
}

.promotion-page__content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 28px;
}

.promotion-page__title-mini,
.promotion-page h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.promotion-page__subtitle,
.promotion-page p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.promotion-page__list,
.promotion-page ul {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    margin-left: 20px;
}

.promotion-page__list-item,
.promotion-page ul li {
    color: rgba(0, 0, 0, 0.5);
}

.promotion-page__list-text,
.promotion-page li span {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.5);
}

.promotion-page__time,
.promotion-page ul + span {
    display: block;
    font-size: 18px;
    color: rgba(179, 0, 0, 0.5);
    margin-bottom: 20px;
}

.promotion-page__btn,
.promotion-page a {
    display: inline-block;
    font-size: 16px;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    background: rgba(179, 0, 0, 1);
    text-align: center;
    text-decoration: none;
}

.promotion-page__img {
    width: 100%;
    height: 304px;
    background-image: url("../image/promotion-img-7.png");
    background-size: cover;
    background-position: bottom right;
    border-radius: 12px;
}

.other-promotions {
    width: 100%;
    margin-bottom: 50px;
}

.other-promotions__title {
    font-size: 32px;
    margin-bottom: 16px;
}

/* .other-promotions__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
} */

.other-promotions_catalog {
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.other-promotions_catalog.other-promotions_main {
    margin-top: 0;
}

.other-promotions_main .

.other-promotions_main .other-promotions__title {
    font-size: 42px;
    font-weight: 500;
}

.other-promotions_catalog .other-promotions__title {
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-weight: normal;
}

.promotion_item .promotion__img {
    /* min-height: 210px; */
    min-height: 170px;
    height: auto;
}

.promotion_item-img {
    height: 300px;
    width: 100%;
    transition: .5s;
}

.promotion_item-img:hover {
    opacity: 0.5;
}

.promotion_item-img .promotion__img {
    min-height: auto;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

@media all and (max-width: 600px) {

    .promotion_item-img {
        height: auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .promotion_item-img .promotion__img {
        height: 300px;
        width: 278px;
    }

}

.promotion_item .promotion__text {
    height: 100% !important;
}

/* .promotion__title {
    word-break: break-all;
} */

.other-promotions_catalog .promotion__title {
    font-size: 16px;
}

.other-promotions_catalog .promotion__subtitle {
    font-size: 14px;
}

.other-promotions_catalog .other-promotions__title svg {
    min-width: 28px;
}

.promotion__img {
    background-position: center;
}

@media all and (max-width: 1080px) {
    .home__top-text {
        width: 100%;
    }

    .promotion-page__content {
        grid-template-columns: 1fr;
    }

    .promotion-page__img {
        height: 400px;
    }

    /* .other-promotions__items {
        grid-template-columns: repeat(2, 1fr);
    } */

}

@media all and (max-width: 600px) {

    .promotion-page__title {
        font-size: 28px;
    }

    /* .other-promotions__items {
        grid-template-columns: 1fr;
    } */

}

.current-tech {
    padding: 4px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 267px;
}

.current-tech__item {
    width: 100%;
    padding: 12px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.current-tech__item svg {
    fill: rgba(0, 0, 0, 0.5);
}

.current-tech__item_active {
    background: white;
    color: #B30000;
}

.current-tech__item_active svg {
    fill: #B30000;
}

.coteg__current-tech {
    margin-top: 24px;
}

.other-promotions_main {
    /* padding-top: 62px; */
    margin-bottom: 0;
    background: rgba(246, 246, 246, 0.9);
}

.other-promotions_main .promotion__text {
    background: white;
}

.other-promotions_main .other-promotions__title_main {
    font-family: "Inter-Regular";
    margin-bottom: 42px;
}

.other-promotions__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 42px;
}

.other-promotions__header .block__title {
    margin-bottom: 0;
}

.other-promotions__header .swiper-pagination-bullets,
.other-promotions__header .swiper-pagination-bullets.swiper-pagination-horizontal,
.other-promotions__header .swiper-pagination-custom,
.other-promotions__header .swiper-pagination-fraction {
    bottom: -40px;
    text-align: center;
    background: var(--white);
    border-radius: 24px;
    padding: 12px 10px;
    width: 124px;
    margin-left: 50px;
}

.other-promotions__header .swiper-paginationPr {
    text-align: center;

}

.other-promotions__header .swiper-pagination-bullet {
    background: #d9d9d9;
    opacity: 1;
    width: 12px;
    height: 12px;
    opacity: 1;
}

.other-promotions__header .swiper-pagination-bullet-active {
    background: #b30000;
    border-radius: 50%;
}

/* Banners */

.banners {
    width: 100%;
    padding: 2.5rem 0;
    overflow: hidden;
}

.banners_card {
    padding-bottom: 0;
}

.banners_catalog {
    grid-column-start: 1;
    grid-column-end: 3;
    padding: 0;
}

/* @media all and (max-width: 600px) {

    .banners_home {
        padding-bottom: 0;
    }

} */

.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s;
}

.banner:hover {
    opacity: 0.5;
}

.banner__img {
    width: 100%;
}

.banner__img_mobile {
    display: none;
    max-width: 100%;
    width: auto;
}

@media all and (max-width: 600px) {

    .banner__img {
        display: none;
    }

    .banner__img_mobile {
        display: block;
    }

}

@media all and (max-width: 600px) {

    .banner__img {
        display: none;
    }

    .banner__img_mobile {
        display: block;
    }

    .m-w__item {
        width: 100%;
        margin-right: 0;
    }

    .breadcrums__list li a, .breadcrums__list li {
        white-space: nowrap;
        font-size: 13px;
    }

    .breadcrums__list {
        overflow: auto;
    }

}

/* Icons Styles */

.footer__social-item a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    width: 48px;
    border-radius: 10px;
    overflow: hidden;
}

.footer__social-item a img {
    height: 100%;
    width: 100%;
}

.white__rutube-icon {
    border-radius: 10px;
}

.coteg__container .coteg__ipoteka-title {
    display: block;
    margin-top: 10px;
}

.coteg__container .coteg__ipoteka-price {
    display: block;
    color: #b30000;
    font-size: 2rem;
    font-family: "Montserrat";
    font-weight: 500;
    margin-bottom: 10px;
}

.prices__item-price_ipoteka {
    padding-bottom: 8px;
    border-bottom: none;
    font-weight: 500;
    font-family: "Montserrat";
}

.prices__ipoteka-title {
    text-transform: uppercase;
    padding-bottom: 6px;
    font-size: 14px;
}

.prices__ipoteka-price {
    text-transform: uppercase;
    font-size: 20px;
    color: #b30000;
    font-weight: 500;
    font-family: "Montserrat";
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Header Mobile Phone */

.header__left .header__phone {
    display: none;
    color: black;
    text-decoration: none;
}

.header__left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.promotions__items, .other-promotions__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}



@media all and (max-width: 1180px) {
    .promotions__items, .other-promotions__items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .header__left .header__phone {
        display: inline-block;
    }

}

@media all and (max-width: 600px) {
    .promotions__items, .other-promotions__items {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .videos video {
        display: none;
    }

    .videos {
        background: url("../image/mobile-bg.png") no-repeat center / cover;
    }

}

.services {
    padding-top: 25px;
}

.services .block__title {
    margin-bottom: 16px;
}

.block__grey_ipoteka .block__title {
    padding: 24px 0 16px 0;
}

@media all and (max-width: 800px) {

    .forms__preims {
        margin-top: 30px;
    }

    .contact {
        padding-top: 30px;
    }

}

/* Change Info */

.change-info {
    padding: 75px 0 150px;
    text-align: center;
}

.change-info .block__title {
    width: auto;
    margin-bottom: 40px;
}

.change-info__text-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.change-info__text-wrap p {
    color: rgba(0, 0, 0, 0.5);
}

.change-info__text-wrap a {
    color: rgba(179, 0, 0, 1);
}

@media all and (max-width: 600px) {

    .change-info {
        padding-bottom: 75px;
    }

    .change-info .block__title {
        width: auto;
        margin-bottom: 20px;
    }
    .garant__title, .garant__blocks {
        width: 100% !important;
    }
}

[data-fancybox-close] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}