@font-face {
	font-family: 'Icon';
	src:url('fonts/Icon.eot');
	src:url('fonts/Icon.eot?#iefix') format('embedded-opentype'),
		url('fonts/Icon.woff') format('woff'),
		url('fonts/Icon.ttf') format('truetype'),
		url('fonts/Icon.svg#Icon') format('svg');
	font-weight: normal;
	font-style: normal;
}

.menu_bottom li{
	list-style-type: none;
	
}

.menu_lvl1{
	-webkit-padding-start: 10px;
}

.menu_lvl2{
	-webkit-padding-start: 15px;
	font-size: 14px;
}

.menu_bottom a{
	text-decoration: none;
	
}

.menu_bottom li {
    border-right:none;
}

.card_content {
    padding: 10px 0;
}

.flex-head {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-head-img {
    display: flex;
    justify-content: end;
}
.grid-head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    max-width: 400px;
}
.card_title {
    position: relative;
    margin: 0 auto;
    max-width: 230px;
}

.card_title > div:first-child {
    padding: 20px 20px 10px 20px;
    margin-left: auto;
    box-sizing: border-box;
    height: 95px;
}

.card_title > .desc {
    color: #000000;
    padding: 10px 20px 20px 20px;
    box-sizing: border-box;
    height: 95px;
}
.card_title > hr {
    height: 2px;
    background: #E6E6E6;
    margin: 15px 20px;
    max-width: 230px;
}

.card_title > div:first-child > p {
    font-size: 30px;
    line-height: 30px;
    font-weight: bold;
}

.card_title p {
    margin: 0;
    margin-left: auto;
    width: 178px;
    line-height: 25.88px;
    font-size: 20px;
    font-weight: 400;
}

.card_title > img {
    position: absolute;
    height: 100%;
    left: 0;
    bottom: 0;
}

.link_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 22px;
}

.link_container .phone_block {
    width: 100%;
}

.link_container > div {
    border-radius: 7px;
    border: 1px solid #E6E6E6;
    background: #F2F2F2;
}

.link_container > div:not(.phone_block) {
    flex-grow: 1;
}

.link_container > div > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
    text-decoration: none;
    color: #355C7D;
}

.phone_block > a > span:first-child::before {
    width: 20px;
    height: 20px;
}

.phone_block > a > span:first-child {
    position: relative;
    margin-bottom: 20px;
}

.phone_block > a > span:first-child::before {
    position: absolute;
    animation: phone 2s 1s infinite;
    top: 0;
    left: -8px;
}

@keyframes phone {
    0%, 35% {
        transform: translate(0);
    }
    40% {
        transform: translateX(2px);
    }
    45% {
     transform: translateX(-2px);
    }

    50% {
        transform: translateX(2px);
    }
    55% {
        transform: translateX(-2px);
    }
    60% {
        transform: translateX(2px);
    }
    65% {
        transform: translateX(-2px);
    }
    75% {
        transform: translateX(2px);
    }
    80%, 100% {
        transform: translate(0);
    }
}

.link_title {
    margin: 25px 0 30px 0;
}

.delimeter {
    display: flex;
    column-gap: 30px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.delimeter_line {
    height: 3px;
    width: 70px;
    background: #355C7D;
    border-radius: 2px;
}

.delimeter > span {
    font-size: 48px;
    color: #355C7D;
}

.answer_title_main {
    font-weight: 600;
    margin: 25px 0 30px 0;
}

.answer_title {
    position: relative;
    font-weight: 600;
    margin: 0 15px;
    cursor: pointer;
}

.answer_title::after {
    content: "+";
    position: absolute;
    right: 0;
}

.answer_container {
    border-top: 1px solid #D8D8D8;
    border-bottom: 1px solid #D8D8D8;
}

.answer_container > div {
    padding: 20px 0;
}

.answer_container > div:not(:last-child) {
    border-bottom: 1px solid #D8D8D8;
}

.answer_description {
    margin: 15px 25px 0 25px;
    display: none;
}

.answer_container > div[data-active="1"] > .answer_description {
    display: block;
}

.answer_container > div[data-active="1"] > .answer_title::after {
    content: "-";
}

.answer_container > div[data-active="1"] > .gallerey_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.gallerey_container > a > img {
    max-height: 200px;
    /* cursor: pointer; */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.footer-grid-img img{
    max-width: 100%;
}

@media (min-width: 768px){
	.col-sm-2 {
		width: 16.666667%;
	}
}

@media (max-width: 768px){
    .link_container {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }

    .link_container > div:nth-child(2),
    .link_container > div:nth-child(3) {
        grid-column: span 3;
    }

    .link_container > div:nth-child(n+4) {
        grid-column: span 2;
    }

    .link_container .phone_block {
        grid-column: span 6 !important;
    }

    .link_container > div {
        width: 100%;
    }
    .footer-grid {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .footer-grid-text {
        padding: 0 10px;
    }
    .check-map {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
        padding: 20px;
    }
    .bg-gray {
        padding: 0;
    }
}

@media (max-width: 600px){
	.container.relative{
		min-height: 0!important;
		background-size: cover;
	}
}

@media (max-width: 375px){
    .flex-head-img {
        justify-content: center;
    }
    .flex-head-img img {
        height: 120px;
    }
    .grid-head {
        max-width: 100%;
    }
    .card_title > div:first-child > p {
        font-size: 20px;
    }
    .card_title p {
        width: auto;
        font-size: 15px;
    }
    .card_title {
        max-width: 200px;
    }
}

.header{

    background: linear-gradient(180deg, #FDF7F1 0%, rgba(253, 247, 241, 0.00) 100%);

    .header__wrapper{
        padding-top: 16px;
    }

    .header__content{
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
        padding: 24px;
        border-radius: 10px;
        background: #FFF;
        box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
        margin-bottom: 16px;
    }

    .header__logo{
        width: 313px;
        height: 38.003px;

        img{
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    .header__address{
        padding: 10px;
        color: #575757;
        text-align: center;
        font-family: "PT Sans", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }

    .header__links p {
        margin-bottom: 0;
    }

    .header__links a{
        font-size: 26px;
        font-weight: 700;
        line-height: 26px;

        span{
            font-size: 18px!important;
            font-weight: 400;
            line-height: 18px;
        }
    }

    a.header__mail{
        margin-top: 16px;
        color: #DE5726;
        font-size: 14px;
        font-weight: 400;
        line-height: 14px;
    }

    .header__menu{
        padding: 4px;
        border-radius: 10px;
        border-top: 0.5px solid #FFF;
        border-bottom: 0.5px solid #FFF;
        background: #F7F1E9;
    }

    .header__list{
        display: flex;
        padding: 0;
        margin: 0;
        list-style-type: none;
        align-items: center;
        gap: 4px;

        li{
            flex: 1 0 0;
            transition: all .4s;
            text-align: center;
            display: flex;
            align-items: center;

        }

        a{
            padding: 17px 16px 19px 16px;
            text-decoration: none;
            color: #575757;
            font-size: 18px;
            font-weight: 400;
            line-height: 100%;
            white-space: nowrap;
            transition: all .4s;
            border-radius: 8px;
            background: #FFF;
            flex: 1;

            &:focus,
            &:focus-visible{
                outline: none;
            }

            &:hover{
                color: #DE5726;
            }

            &.active{
                background: #F87B25;
                font-size: 20px;
                font-weight: 700;
                color: #fff;
            }
        }
    }
}

.front-page{

    .hero{
        padding: 154px 0;
    }

    .hero__wrapper{
        display: flex;
        align-items: center;
        position: relative;
    }

    .hero__image{
        position: absolute;
        z-index: -1;
        transform: translateX(45%);
        right: 0;

        &:before{
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: url("../img/hero-bg.png");
            background-repeat: no-repeat;
            background-size: cover;
            z-index: -1;
            background-position: right;
        }
    }

    .hero__content{
        width: 571px;
    }

    .hero__content h1{
        text-align: start;
        font-size: 32px!important;
        line-height: 36px;
        margin-bottom: 16px;

        span{
            font-weight: 700;
            color: #F87B25;
        }
    }

    .hero__content p{
        color: #575757;
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        margin-bottom: 32px;
    }

    .hero__content .btn{
        height: auto;
        border: 1.5px solid #F87B25;
        padding: 21px 24px 23px 24px;
        font-size: 20px;
        font-weight: 400;
        line-height: 20px;
    }

    .advantages{
        padding-bottom: 40px;
    }

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

    .advantages__card{
        padding: 24px;
        display: flex;
        gap: 16px;
        border-radius: 10px;
        border: 1px solid #FFF;
        background: #FFF;
        box-shadow: 0 0 4px 0 rgba(222, 87, 38, 0.08), 0 0 16px 0 rgba(248, 123, 37, 0.12);

        svg{
            flex-shrink: 0;
        }
    }

    .advantages__card p{
        color: #000;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
    }


    .services{
        padding: 40px 0;
    }

    .services h2{
        margin-top: 0;
        margin-bottom: 32px;
    }

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

    .services__card{
        height: 300px;
        padding: 32px 24px 24px 24px;
        border-radius: 10px;
        border: 1px solid #E4E4E4;
        background: #FFF;
        position: relative;
        display: flex;
        align-items: flex-end;
        text-decoration: none;
        transition: all .4s;
        overflow: hidden;

        &:hover{
            border-color: #F87B25;
        }
    }

    .services__image-wrapper{
        position: absolute;
        right: 0;
        top: 0;
    }

    .services__card h3{
        color: #000;
        font-size: 22px;
        font-weight: 400;
        line-height: 22px;
        margin: 0;
    }

    .estate{
        padding: 40px 0;
    }

    .estate h2{
        margin-top: 0;
        margin-bottom: 32px;
    }

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

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

    .estate__card img{
        width: 100%;
    }

    .estate__card h3{
        color: #000;
        font-size: 22px;
        font-weight: 400;
        line-height: 22px;
        margin: 0;
    }

    .decor{
        padding: 40px 0;
    }

    .decor h2{
        margin-top: 0;
        margin-bottom: 32px;
    }

    .decor__slide {
        overflow: hidden;
        box-sizing: border-box;
        box-shadow: 0 0 4px 0 rgba(222, 87, 38, 0.08), 0 0 16px 0 rgba(248, 123, 37, 0.12);
        border-radius: 10px;
        overflow: hidden;
    }

    .decor__slide img{
        width: 100%;
    }

    .decor__slide-description{
        display: flex;
        justify-content: space-between;
        gap: 20px;
        align-items: center;
        padding: 20px 24px;
    }

    .decor__slide-description p{
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

    .decor__slide-description p:last-child{
        text-align: right;
    }

    .decor__slide-description p span{
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.72px;
    }

    .decor__slide-description p span.red-strong{
        color: #AF2F00;
        font-size: 17.333px;
        line-height: 26px;
    }

    .decor__wrapper {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .decor__description p span{
        color: #F87B25;
        font-weight: 700;
    }

    .decor__note{
        color: #575757;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }

    .decor__slider {
        width: 657px;
        flex-shrink: 0;
        box-shadow: 0 0 4px 0 rgba(222, 87, 38, 0.08), 0 0 16px 0 rgba(248, 123, 37, 0.12);
        border-radius: 10px;
    }

    .decor__pagination .swiper-pagination-bullet{
        width: 6px;
        height: 6px;

        &.swiper-pagination-bullet-active{
            background: #DE5726;
        }
    }

    .decor__actions{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
    }





    .awards{
        padding: 40px 0;
    }

    .awards h2{
        margin-top: 0;
        margin-bottom: 32px;
    }

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

    .awards__card{
        height: 280px;
        padding: 32px 24px 24px 24px;
        border-radius: 10px;
        background: #FDF2E5;
        display: flex;
        flex-direction: column;

        &:last-child{
            grid-area: 2 / 2 / 3 / 4;
        }
    }

    .awards__year{
        font-size: 36px;
        font-weight: 700;
        line-height: 36px;
        letter-spacing: -1.44px;
        margin-bottom: 16px;

        span{
            color: rgba(0, 0, 0, 0.32);
            font-size: 32px;
            font-weight: 400;
            line-height: 32px;
            letter-spacing: -0.64px;
        }
    }

    .awards__text{
        color: #575757;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
    }

    .awards__star {
        margin-top: auto;
        display: flex;
        justify-content: flex-end;
    }

    .awards__note{
        display: flex;
        align-items: center;
        gap: 21px;
        margin-top: 30px;
    }

    .awards__note img{
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .awards__note span{
        color: #575757;
        font-size: 18px;
        font-style: italic;
        font-weight: 400;
        line-height: 26px;
    }

    .diploms{
        padding: 40px 0;
    }

    .diploms h2{
        margin-top: 0;
        margin-bottom: 32px;
    }

    .diploms__wrapper{
        display: flex;
        align-items: center;
        gap: 40px;
        padding: 16px 24px 16px 32px;
        border-radius: 10px;
        border: 1px solid #E4E4E4;
    }

    .diploms__personal{
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
    }

    .diploms__personal img{
        width: 100px;
        height: 99px;
    }

    .diploms__personal-wrapper{
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .diploms__personal-wrapper span:first-child{
        font-size: 20px;
        font-weight: 400;
        line-height: 24px;
    }

    .diploms__personal-wrapper span:last-child{
        color: #575757;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
    }

    .diploms__certificate{
        cursor: pointer;
    }

    .diploms__certificate a{
        &:focus,
        &:focus-visible{
            outline: none;
        }
    }

    .diploms-slider{
        padding: 40px 0;
    }

    .diploms-slider__slide img{
        opacity: 0.32;
        transition: all .4s;
    }

    .diploms-slider__slide.swiper-slide-active img {
        opacity: 1;
    }

    .diploms-slider__pagination{
        margin-top: 24px;
    }

    .diploms-slider__pagination .swiper-pagination-bullet{
        background: #E4E4E4;
        opacity: 1;
    }

    .diploms-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
        background: #DE5726;
    }

    .diploms-slider__pagination .swiper-pagination{
        position: static;
    }

    .exchange{
        padding: 40px 0;
    }

    .exchange h2{
        margin-top: 0;
        margin-bottom: 32px;
    }

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

    .exchange__card{
        padding: 32px 24px 36px 24px;
        display: flex;
        flex-direction: column;
        border-radius: 10px;
        border: 1px solid #E4E4E4;
        background: #FFF;
        gap: 12px;
    }

    .exchange__card-number{
        display: flex;
        width: 56px;
        height: 56px;
        padding: 11px 24px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 500px;
        border: 1.5px solid #F8B665;
        color: #F87B25;
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        line-height: 26px;
    }

    .exchange__card h3{
        margin-top: 12px;
        margin-bottom: 0;
        color: #000;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
    }

    .exchange__card p{
        color: #575757;
        margin-bottom: 0;
        font-size: 20px;
        font-weight: 400;
        line-height: 28px;
    }

    .callback{
        padding: 40px 0;
    }

    .callback__wrapper{
        border-radius: 10px;
        background: linear-gradient(83deg, #F8F8F8 0%, #FBF7F5 34.79%, #FFE4CA 69.58%);
        display: flex;
        justify-content: space-between;
    }

    .callback__text{
        position: relative;
        display: flex;
        flex-direction: column;
        height: auto;
        justify-content: space-between;
        padding: 44px 24px;
        width: 100%;
    }

    .callback__text h2{
        margin: 0;
    }

    .callback__text p{
        color: #575757;
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        width: 375px;
    }

    .callback__text img{
        position: absolute;
        right: 16px;
        top: -16px;
    }

    .callback__contacts{
        padding: 36px 44px 44px 44px;
        border-radius: 8px;
        background: #F87B25;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }

    .callback__contacts-link{
        display: flex;
        align-items: center;
        gap: 16px;
        color: #FFF;
        font-size: 24px;
        font-weight: 400;
        line-height: 24px;
        text-decoration: none;

        &:first-child{
            margin-bottom: 16px;
        }
    }

    .callback__mail{
        color: #FFF;
        font-size: 16px;
        font-weight: 400;
        line-height: 16px;
        margin-top: 20px;
        text-align: center;
    }

    .callback__contacts .btn{
        margin-top: 44px;
        padding: 11px 24px;
        border-radius: 10px;
        border: 1.5px solid #FFF;
        background: #FFF;
        color: #F87B25;
        text-align: center;
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        height: auto;
    }

    .faq{
        padding: 40px 0;
    }

    .faq h2{
        margin-top: 0;
        margin-bottom: 32px;
    }

    .faq__slide{
        height: 227px;
        padding: 32px 24px 24px 24px;
        border-radius: 10px;
        border: 1px solid #E4E4E4;
        background: #FFF;
        transition: all .4s;
        text-decoration: none;

        &:hover{
            border: 1.5px solid #F87B25;
            background: #FDF7F1;

            h3{
                color: #F87B25;
            }
        }
    }

    .faq__slide h3{
        color: #000;
        font-size: 22px;
        font-weight: 400;
        line-height: 26px;
        margin: 0;
        transition: all .4s;
    }

    .faq__pagination{
        margin-top: 24px;
    }

    .faq__pagination .swiper-pagination-bullet{
        background: #E4E4E4;
        opacity: 1;
    }

    .faq__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
        background: #DE5726;
    }

    .faq__pagination .swiper-pagination{
        position: static;
    }

    .reviews{
        padding: 40px 0;
    }

    .reviews h2{
        margin-top: 0;
        margin-bottom: 32px;
    }
}

.footer{
    background: #F6F6F6;
    padding: 40px 0;
}

.footer a{
    text-decoration: none;
}

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

.footer__content{
    display: flex;
    gap: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E4E4E4;
}

.footer-logo{
    margin-bottom: 21px;
}

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

.footer__link{
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 12px;

}

.footer__address{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 4px 0 16px;
    width: 208px;
}

.footer__mail{
    color: #575757;
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    margin-bottom: 51px;
}

.footer__social{
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__map{
    width: 100%;
}

.footer__bottom{
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__policy{
    color: #A3A3A3;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px;
}

.footer-bottom__social .ya-share2__list_direction_horizontal li{
    margin-top: 0;
}

.footer-bottom__social .ya-share2__list_direction_horizontal .ya-share2__badge{
    border-radius: 50%;
}

.footer__dev .copyright__link{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #A3A3A3;
    text-align: right;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

    &:focus-visible,
    &:focus{
        outline: none;
    }
}

.footer__dev .copyright__link img{
    width: 110px;
    height: 22px;
    margin-bottom: 5px;
}


@media (max-width: 1900px) {
    .front-page{
        .hero__image{
            transform: translateX(22%);

            img{
                width: 540px;
                height: 395px;
            }
        }
    }
}

@media (max-width: 1300px) {

    .front-page{

        .hero__wrapper{
            gap: 10px;
        }

        .hero__image{
            transform: translateX(0);
            position: static;

        }
    }
}

@media (max-width: 992px) {
    .header {
        .header__content {
            justify-content: center;
            padding: 16px;
            flex-wrap: wrap;
        }

        .header__links{
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .header__list{

            a{
                padding: 10px;
                font-size: 16px;

                &.active {
                    font-size: 18px;
                }
            }
        }
    }

    .front-page {
        .hero{
            padding: 80px 0 ;
        }

        .hero__wrapper{
            flex-direction: column;
            gap: 80px;
        }

        .hero__content{
            width: 100%;
        }

        /*.hero__wrapper img{*/
        /*    display: none;*/
        /*}*/

        .decor__wrapper{
            flex-direction: column-reverse;
        }

        .decor__slider{
            width: 100%;
        }

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

        .awards__card {
            &:last-child {
                grid-area: auto;
            }
        }

        .diploms-slider__slide img{
            width: 100%;
        }

        .callback__text img{
            display: none;
        }

        .callback__text p {
            margin-bottom: 0;
            width: 100%;
        }

        .faq__slide{
            padding: 16px;
            height: 160px;
        }

        .faq__slide h3{
            font-size: 16px;
            line-height: normal;
        }
    }
}



@media (max-width: 767px) {

    .header {

        .header__content{
            gap: 10px;
        }


        .header__list {
            flex-wrap: wrap;
        }
    }

    .front-page{

        .hero__content h1 {
            font-size: 28px !important;
            line-height: 32px;
        }

        .hero__content p{
            font-size: 16px;
            line-height: normal;
            margin-bottom: 20px;
        }

        .hero__content .btn {
            padding: 12px;
            font-size: 12px;
            font-weight: 400;
            line-height: normal;
        }

        .hero__image {
            img {
                width: 100%;
                height: auto;
            }
        }

        .advantages{
            padding-bottom: 30px;
        }

        .advantages__cards{
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .advantages__card{
            padding: 16px;
        }

        .advantages__card p{
            font-size: 12px;
            line-height: normal;
        }

        .services {
            padding: 30px 0;
        }

        .services h2 {
            margin-bottom: 25px;
            font-size: 24px;
        }

        .services__cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .services__card{
            height: auto;
            aspect-ratio: 16 / 9;
            padding: 16px;
        }

        .services__card h3 {
            font-size: 18px;
            line-height: normal;
        }

        .services__image-wrapper img{
            width: 100px;
            height: 120px;
        }

        .estate {
            padding: 30px 0;
        }

        .estate h2 {
            margin-bottom: 25px;
            font-size: 24px;
        }

        .estate__card{
            gap: 16px;
        }

        .estate__card h3 {
            font-size: 18px;
            line-height: normal;
        }

        .decor {
            padding: 30px 0;
        }

        .decor h2 {
            margin-bottom: 25px;
            font-size: 24px;
        }


        .reviews{
            padding: 30px 0;
        }

        .reviews h2 {
            margin-bottom: 25px;
            font-size: 24px;
        }

        .awards{
            padding: 30px 0;
        }

        .awards h2 {
            margin-bottom: 25px;
            font-size: 24px;
        }

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

        .awards__note span{
            font-size: 14px;
            line-height: normal;
        }

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

        .awards__card{
            padding: 16px;
            height: auto;
            gap: 20px;
        }

        .awards__year{
            font-size: 28px;
            font-weight: 700;
            line-height: 100%;
        }

        .awards__year {
            span {
                font-size: 24px;
                font-weight: 400;
                line-height: 100%;
            }
        }

        .awards__text {
            font-size: 16px;
            line-height: normal;
        }

        .diploms {
            padding: 30px 0;
        }

        .diploms h2 {
            margin-bottom: 25px;
            font-size: 24px;
        }

        .diploms__wrapper{
            flex-direction: column;
            gap: 16px;
            padding: 16px;
        }

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

        .exchange {
            padding: 30px 0;
        }

        .exchange h2 {
            margin-bottom: 25px;
            font-size: 24px;
        }

        .exchange__cards{
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .exchange__card{
            padding: 16px;
        }

        .callback__wrapper{
            flex-direction: column;
            justify-content: normal;
        }

        .callback__text{
            padding: 16px;
            gap: 16px;
        }


        .callback__text h2 {
            font-size: 24px;
        }

        .callback__text p {
            font-size: 16px;
            line-height: normal;
        }


        .callback__contacts {
            padding: 16px;
        }

        .callback__contacts-link{
            font-size: 18px;
            line-height: 100%;
        }

        .callback__contacts .btn{
            margin-top: 20px;
        }

        .faq {
            padding: 30px 0;
        }

        .faq h2 {
            margin-bottom: 25px;
            font-size: 24px;
        }

    }

    .footer__content{
        flex-direction: column;
        gap: 40px;
        padding-bottom: 20px;
    }

    .footer__mail{
        margin-bottom: 30px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer__info{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__policy{
        width: 100%;
        text-align: center;
    }

    .footer__dev .copyright__link{
        align-items: center;
    }

}



.sl-container {
    overflow: hidden;
    width: 657px;
    box-sizing: border-box;
    box-shadow: 0 0 4px 0 rgba(222, 87, 38, 0.08), 0 0 16px 0 rgba(248, 123, 37, 0.12);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.view__container {
    position: relative;
    height: 382px;
}

.sl-container .view {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    height: 100%;
}

.sl-container .view img {
    width: 657px;
    max-width: 657px;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
}

.sl-container .view-before {
    z-index: 100;
    width: 100%;
}

.sl-container .view-after {
    width: 50%;
    z-index: 200;
}

.sl-container .dragme {
    position: absolute;
    height: 100%;
    top: 0;
    cursor: ew-resize;
    z-index: 300;
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.sl-container .dr-circle {
    position: absolute;
    top: calc(50% - 30px);
    left: -33px;
    text-align: center;
    cursor: pointer;
    z-index: 300;
}

.view-before .view__text{
    right: 16px;
}

.view-after .view__text{
    left: 16px;
}

.view__text{
    top: 16px;
    position: absolute;
    padding: 4px 8px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(4px);
    color: #FFF;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: -0.12px;
    text-transform: capitalize;
}

.view__description{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 20px 24px;
}

.view__description p{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.view__description p:last-child{
    text-align: right;
}

.view__description p span{
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.72px;
}

.view__description p span.red-strong{
    color: #AF2F00;
    font-size: 17.333px;
    line-height: 26px;
}

.separate-decor-page{
    padding-bottom: 50px;
}

.separate-decor-page .sl-container{
    margin-bottom: 50px;
}


@media (max-width: 500px) {

    .sl-container .view img {
        width: 500px!important;
    }

}



@media (max-width: 767px) {
    .sl-container{
        width: 100%;
    }

    .sl-container .view img {
        width: 767px;
    }

    /*.view__container {*/
    /*    height: 280px;*/
    /*}*/

    .view.view-after img{
        object-position: left center;
    }
}