@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.eot');
    src: local('Lato Regular'), local('../fonts/Lato-Regular'),
        url('../fonts/Lato-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Regular.woff') format('woff'),
        url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Italic.eot');
    src: local('Lato Italic'), local('../fonts/Lato-Italic'),
        url('../fonts/Lato-Italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Italic.woff') format('woff'),
        url('../fonts/Lato-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Medium.eot');
    src: local('Lato Medium'), local('../fonts/Lato-Medium'),
        url('../fonts/Lato-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Medium.woff') format('woff'),
        url('../fonts/Lato-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.eot');
    src: local('Lato Bold'), local('../fonts/Lato-Bold'),
        url('../fonts/Lato-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Bold.woff') format('woff'),
        url('../fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-BoldItalic.eot');
    src: local('Lato Bold Italic'), local('../fonts/Lato-BoldItalic'),
        url('../fonts/Lato-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-BoldItalic.woff') format('woff'),
        url('../fonts/Lato-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Black.eot');
    src: local('Lato Heavy'), local('../fonts/Lato-Black'),
        url('../fonts/Lato-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lato-Black.woff') format('woff'),
        url('../fonts/Lato-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

html{
    scroll-behavior: smooth;
}

body {
    color: #000;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all .3s ease;
}

body.fix {
    overflow: hidden;
}

body.fix::before {
    content: '';
    position: fixed;
    top: 98px;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.project__btn a.btn,
.btn {
    display: inline-block;
    padding: 18px 36px;
    border-radius: 50px;
    background: #597548;
    border: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
    transition: all .3s ease;
}
.project__btn a.btn:hover,
.btn:hover {
    background: #2D241F;
}

.menu-btn {
    position: relative;
    bottom: 24px;
    width: 25px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}

.menu-btn span {
    display: block;
    width: 100%;
    background: #2D241F;
    height: 3px;
    border-radius: 20%;
}

.menu-btn span:before,
.menu-btn span:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    background-color: #2D241F;
    height: 3px;
    border-radius: 20%;
}

.menu-btn span:before {
    top: 4px;
    transition: all 0.3s;
}

.menu-btn span:after {
    bottom: 4px;
    transition: all 0.3s;
}

.menu-btn.active span {
    height: 0;
}

.menu-btn.active span:before {
    content: "";
    top: 50%;
    transform: rotate(135deg);
}

.menu-btn.active span:after {
    content: "";
    top: 50%;
    transform: rotate(-135deg);
}

.header {
    position: relative;
}

.header__wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
    padding: 0 15px;
}

.header__wrap__logo {
    position: relative;
    z-index: 999;
    display: flex;
    flex: 1;
    padding: 24px 0;
    background: #fff;
}

.header__wrap__logo img {
    display: block;
}

.header__wrap__menu {
    position: fixed;
    width: 320px;
    height: 100%;
    z-index: 100;
    top: 0;
    right: -100%;
    transition: all 0.7s;
    background-color: #fff;
    overflow: auto;
}

.header__wrap__menu.active {
    right: 0;
}

.menu {
    padding: 0 25px;
    padding-top: 98px;
}

.menu li {
    margin: 15px 0;
}

.menu a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.menu a:hover {
    color: #597548;
}

.banner {
    padding: 0 15px;
}

.banner-container {
    padding: 32px 24px 160px 24px;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    background: url(../img/header-img.png) right 0 bottom 0px no-repeat, #F3F3F3;
    background-size: auto 150px;
    border-radius: 24px;
}

.banner__block {
    max-width: 655px;
    width: 100%;
}

.banner__text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #2D241F;
    margin-bottom: 12px;
}

.banner__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #2D241F;
    margin-bottom: 16px;
}

.banner__list {
    margin-bottom: 24px;
}

.banner__list li {
    font-size: 16px;
    padding-left: 24px;
    color: #2D241F;
    position: relative;
    margin: 0 0 8px 0;
}

.banner__list li:last-child {
    margin: 0;
}

.banner__list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background: url(../img/check.svg) 50% no-repeat;
}

.main-phone a {
    display: inline-block;
    padding-left: 40px;
    font-size: 22px;
    font-weight: 900;
    position: relative;
}

.main-phone a:hover {
    opacity: .9;
}

.main-phone a::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 32px;
    height: 32px;
}

.banner__phone a {
    color: #597548;
}

.banner__phone a::before {
    background: url(../img/phone.svg) 50% no-repeat;
    background-size: 30px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #2D241F;
}

.section-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
}

.services,
.assist, 
.project,
.areas,
.faq,
.single,
.customer,
.testimonials,
.footer  {
    margin-top: 32px;
}


.services__slider {
    position: relative;
    margin: 0 -15px;
}

.services__slider::before,
.services__slider::after {
    content: '';
    position: absolute;
    z-index: 9;
    top:0;
    width: 10%;
    height: 100%;

}

.services__slider::before {
    left: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 70%, #FFFFFF 100%);
}
.services__slider::after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 70%, #FFFFFF 100%);
}

.services__slider .services-card {
    flex-shrink: 0;
    max-width: 360px;
    opacity: .5;
    transition: opacity 0.3s ease-in-out;
}

.services__slider .swiper-slide-prev,
.services__slider .swiper-slide-next,
.services__slider .swiper-slide-active {
    opacity: 1;
}


.services__wrap .services-card {
    margin-bottom: 16px;
}

.services-card__inner {
    display: block;
    padding: 24px 24px 66px;
    height: 100%;
    border: 1px solid #CED4DA;
    border-radius: 24px;
    position: relative;
    transition: all .3s ease;
}

.services-card__inner:hover {
    border: 1px solid #597548;
}

.services-card__inner::after {
    content: '';
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: url(../img/arrow.svg) 50% no-repeat;
}

.services-card__inner:hover::after {
    background: url(../img/arrow-white.svg) 50% no-repeat, #597548;
}

.services-card__img {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
}

.services-card__img img {
    display: block;
    max-width: 100%;
    width: 100%;
}

.services-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #2D241F;
    transition: all .3s ease;
}

.services-card__inner:hover .services-card__title {
    color: #597548;
}

.services-card__text {
    font-size: 15px;
    line-height: 1.4;
    color: #000;
}

.services__slider-btns {
    display: flex;
    justify-content: center;
    margin: 24px 0 32px;
}
.services__slider-prev,
.services__slider-next {
    width: 60px;
    height: 40px;
    margin: 0 8px;
    background: #fff;
    border-radius: 32px;
    border: 1px solid #CED4DA;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.services__slider-prev:hover,
.services__slider-next:hover {
    border-color: #597548;
}
.services__slider-prev {
    background: #fff url(../img/prev-arr-green.svg) 50% no-repeat;
}
.services__slider-next {
    background: #fff url(../img/next-arr-green.svg) 50% no-repeat;
}

.hot {
    padding: 0 15px;
}

.hot-container {
    width: 100%;
    max-width: 1140px;
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid #CED4DA;
    border-radius: 24px;
}

.hot__block {
    width: 100%;
    padding: 24px;
}

.hot__banner {
    padding: 24px 24px 0 24px;
}

.hot__banner img {
    display: block;
    max-width: 100%;
    border-radius: 12px;
}

.hot__img {
    display: block;
    max-width: 100%;
 
}

.hot__pre-title {
    margin-bottom: 16px;
}

.hot__pre-title span {
    display: inline-block;
    padding: 9px 24px 8px;
    background: #597548;
    border-radius: 48px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}


.hot__wrap {
    margin-bottom: 24px;
}

.hot__text {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 16px;
}

.hot__text:last-child {
    margin-bottom: 0;
}

.hot__adress a {
    display: inline-block;
    padding-right: 22px;
    font-size: 18px;
    font-weight: 600;
    line-height: 100%;
    color: #597548;
    position: relative;
}

.hot__adress a:hover {
    opacity: .7;
}

.hot__adress a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 3px;
    width: 13px;
    height: 12px;
    background: url(../img/arrow.svg) 50% no-repeat;
}

.assist {
    padding: 0 15px;
}

.assist-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
}

.assist__photo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.assist__info {
    padding: 24px;
    background: #2D241F;
}
.assist__section-title {
    color: #fff;
    margin-bottom: 16px;
}

.assist__info__list {
    margin-bottom: 16px;
}

.assist__info__list li {
    display: block;
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    padding: 5px 0 5px 35px;
    margin-bottom: 16px;
}

.assist__info__list li:last-child {
    margin-bottom: 0;
}

.assist__info__list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: url(../img/check-brown.svg) 50% no-repeat, #fff;
}

.assist__info__text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 16px;
}

.assist__info__text:last-child {
    margin-bottom: 0;
}

.project-slider {
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}

.project-slider__item__img::after {
    content: '';
    position: absolute;
    z-index: 8;
    left: 0;
    bottom: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.project-slider__item__img {
    overflow: hidden;
    height: 250px;
}
.project-slider__item__img img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
}

.project-slider__item__block {
    position: absolute;
    z-index: 9;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
}

.project-slider__item__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-slider__item__text {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.project-slider__btn {
    position: absolute;
    z-index: 9;
    width: 35px;
    height: 35px;
    top: 50%;   
    transform: translate(0, -50%);
    background: rgba(0, 0, 0, 0.5);
    border: transparent;
    cursor: pointer;
    transition: all .3s ease;
}

.project-slider__btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.project-slider__btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
}

.project-slider__prev {
    border-radius: 0 8px 8px 0;
    left: 0;
}
.project-slider__next {
    border-radius: 8px 0 0 8px;
    right: 0;
}

.project-slider__prev::after {
    background: url(../img/prev-arr.svg) 50% no-repeat;
}
.project-slider__next::after {
    background: url(../img/next-arr.svg) 50% no-repeat;
}
.project__btn {
    margin-top: 32px;
}



.areas__map {
    position: relative;
}

.areas__block__map {
    overflow: hidden;
    border-radius: 24px;
}

.areas__map__box {
    margin-bottom: 16px;
}

#gmap  {
    width: 100%;
    height: 250px;
    border-radius: 24px;
}

.areas__block__list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    margin: 0 -8px;
}

.areas__block__list li {
    display: flex;
    width: 50%;
    padding: 0 8px;
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 500;
}

.areas__block__list li::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background: url(../img/check.svg) 50% no-repeat;
}


.faq__title {
    margin-bottom: 24px;
}

.faq-list__item {
    padding: 24px 24px 16px 24px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid #CED4DA;
}

.faq-list__item:last-child {
    margin-bottom: 0;
}

.faq-list__question {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    padding-right: 24px;
    padding-bottom: 8px;
    cursor: pointer;
}
.faq-list__question::before,
.faq-list__question::after {
    content: '';
    position: absolute;
    border-radius: 2px;
    background: #000;
    transition: all .2s ease-in-out;
}
.faq-list__question::after {
    top: 10px;
    right: 0;
    width: 14px;
    height: 2px;
}
.faq-list__question::before {
    opacity: 1;
    top: 4px;
    right: 6px;
    width: 2px;
    height: 14px;
}
.faq-list__item.active .faq-list__question::before {
    opacity: 0;
}

.faq-list__answer {
    height: 0;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.4;
    color: #474747;
    transition: all 0.5s ease-in-out;
}
.faq-list__answer p:not(:last-child) {
    margin-bottom: 12px;
}


.testimonials__text {
    margin-bottom: 24px;
}
.testimonials__blocks-column {

}
.testimonials__blocks-column .review-card:not(:last-child) {
    margin-bottom: 16px;
}
.testimonials__blocks-column:last-child {
    display: none;
}

.customer__row > .review-card {
    margin-bottom: 24px;
}

.review-card__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #CED4DA;
    position: relative;
}

.review-card__inner::before {
    content: '';
    position: absolute;
    bottom: 24px; 
    right: 24px;
    width: 20px;
    height: 20px;
    background: url(../img/google.svg) 50% no-repeat;
}

.review-card__text {
    font-size: 16px;
    line-height: 24px;
}

.review-card__stars {
    display: flex;
    margin-bottom: 8px;
}

.icon__star {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    background-size: 100%;
    background: url(../img/star.svg) 50% no-repeat;
}
.icon__star:last-child {
    margin-bottom: 0;
}

.review-card__info {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.review-card__info-wrap {
    padding-top: 8px;
}

.review-card__photo {
    margin-right: 16px;
}

.review-card__photo img {
    display: block;
    border-radius: 50%;
}

.review-card__name {
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

.review-card__date {
    font-size: 14px;
    line-height: 26px;
}

.customer__btn {
    display: flex;
    justify-content: center
}



.contact__section .contact__row {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #CED4DA;
}

.contact__section .contact__info {
    margin-bottom: 0;
}

.contact__img {
    display: block;
    max-width: 100%;
    border-radius: 12px;
}

.contact {
    margin-top: 32px;
}

.contact__col {
    margin-bottom: 20px;
}

.contact__col:last-child {
    margin-bottom: 0;
}

.contact__info {
    margin: 25px 0;
}

.contact__info li{
    padding: 4px 0 4px 32px;
    margin-bottom: 15px;
    position: relative;
}

.contact__info li:last-child {
    margin-bottom: 0;
}

.contact__info li::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 24px;
    height: 24px;
}

.info-time::before {
    background: url(../img/contact-time.svg) 50% no-repeat;
    background-size: 24px;
}

.info-mail::before {
    background: url(../img/contact-mail.svg) 50% no-repeat;
    background-size: 24px;
}

.info-phone::before {
    background: url(../img/contact-phone.svg) 50% no-repeat;
    background-size: 24px;
}

.contact__info li, .contact__info a {
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    color: #2D241F;
    word-wrap: break-word;
}

.contact__info a:hover {
    color: #597548;
}

.contact__follow {
    font-size: 16px;
    font-weight: 700;
    color: #2D241F;
    margin-bottom: 16px;
}

.contact__social {
    display: flex;
}

.contact__social li {
    position: relative;
    margin-right: 16px;
}

.contact__social li:last-child {
    margin: 0;
}

.contact__social a::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
}

.contact__social .fb a::before {
    background: url(../img/facebook.svg) 50% no-repeat;
}

.contact__social .yt a::before {
    background: url(../img/youtube.svg) 50% no-repeat;
}

.contact__social .in a::before {
    background: url(../img/instagram.svg) 50% no-repeat;
}

.contact__social a {
    display: block;
    width: 48px;
    height: 48px;
    background: #597548;
    border-radius: 50%;
}

.contact__social a:hover {
    background: #2D241F;
}

.contact__col {
    width: 100%;
    margin: 0 auto 32px;
}

.contact-block {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid #CED4DA;
}

.contact-block__title {
    font-size: 18px;
    font-weight: 700;
    color: #2D241F;
    margin-bottom: 12px;
}

.contact-block__text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.contact-form__input {
    margin-bottom: 16px;
}

.contact-form__input input, .contact-form__input textarea{
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    border: 1px solid #CED4DA;
    background: #fff;
    border-radius: 30px;
    box-sizing: border-box;
    outline: none;
}

.contact-form__input input::placeholder, .contact-form__input textarea::placeholder {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #CED4DA;
}

.contact-form__input input::placeholder {
    padding: 10px 0 0;
}

.contact-form__input input {
    padding: 15px 25px 15px;
}

.contact-form__input textarea {
    padding: 15px 25px;
    height: 150px;
    resize: none;
}

.contact-form__btn button {
    font-size: 20px;
    font-weight: 700;
    height: 72px;
    border-radius: 50px;
    border: transparent;
    max-width: 250px;
    width: 100%;
    padding: 0 25px;
    background: #597548;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease;
}

.contact-form__btn button:hover {
    background: #2D241F;
}


.categories {
    padding: 32px;
    border-radius: 24px;
    margin-bottom: 24px;
    border: 1px solid #CED4DA;
}

.categories__title {
    color: #2D241F;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.categories__list li {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
}

.categories__list li a {
    padding-right: 16px;
    color: #000;
}
.categories__list li a:hover {
    color: #597548;
}

.articles-related {
    margin-top: 24px;
}
.articles .post-card {
    margin-bottom: 32px;
}

.post-card a {
    display: block;
}
.post-card__img {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
    margin-bottom: 16px;
    transition: all .3s ease;
}
.post-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #2D241F;
    transition: all .3s ease;
}
.post-card a:hover .post-card__title {
    color: #597548;
}
.post-card a:hover .post-card__img {
    opacity: 0.9;
}
.post-card__meta {
    font-size: 16px;
    font-weight: 500;
    color: #999;
    margin: 12px 0;
}
.post-card__excerpt {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
}

.pagination-wrap {
    margin: 24px 0 52px;
}
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item {
    margin: 0 4px;
}
.page-numbers {
    display: block;
    width: 38px;
    height: 38px;
    background-color: transparent;
    margin: 0;
    border: 1px solid #CED4DA;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1;
    color: #597548;
    padding: 12px 6px;
    text-align: center;
}
a.page-numbers:hover {
    color: #fff;
    background: #597548;
}
.current {
    color: #000000;
    background: #F3F3F3;
}
.page-item:has(.dots) {
    display: none;
}
.prev {
    background: #fff url('../img/prev-arr-green.svg') 50% no-repeat;
}
a.page-numbers.prev:hover {
    background: #597548 url('../img/prev-arr.svg') 50% no-repeat;
}
.next {
    background: #fff url('../img/next-arr-green.svg') 50% no-repeat;
}
a.page-numbers.next:hover {
    background: #597548 url('../img/next-arr.svg') 50% no-repeat;
}
.prev,
.next {
    background-size: 10px;
}


.projects-list__item {
    margin-top: 32px;
}
.project-info {
    margin-bottom: 12px;
}
.project-info__title {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: #2D241F;
}
.project-info__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
}
.project-info__text:last-of-type {
    margin-bottom: 0;
}

.project-images {
    position: relative;
    height: 250px;
    margin: 0 -15px;
}
.project-images .swiper-wrapper {
    height: 100%;
}
.project-images__item {
    overflow: hidden;
    height: 100%;
}
.project-images__img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
}




.footer {
    padding: 42px 0 0;
    background: #2D241F;
    border-radius: 24px 24px 0 0;
}

.footer__phone {
    margin-top: 24px;
    text-align: center;
}

.footer__phone a {
    color: #fff;
}

.footer__phone a::before {
    background: url(../img/phone-white.svg) 50% no-repeat;
    background-size: 30px;
}

.footer__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.footer__col {
    padding: 0 10px;
    margin-bottom: 24px;
}

.footer__col-contacts,
.footer__col-qmenu {
    flex: 1 1 50%;
}

.footer__col-contacts ul li a {
    word-wrap: break-word;
}

.footer__col-smenu {
    flex: 1 1 100%;
}

.footer__services-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.footer__services-list li {
    flex: 1 1 50%;
    padding: 0 10px;
}

.footer__col-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 32px;
}
.footer__logo img {
    display: block;
    margin: 0 auto;
}
.footer__block__logo {
    max-width: 290px;
    margin: 0 auto 32px;
}
.footer__logo {
    margin-bottom: 24px;
}
.footer__text {
    font-size: 12px;
    line-height: 22px;
    color: #fff;
    opacity: .5;
    margin-bottom: 24px;
}
.footer__social {
    display: flex;
    justify-content: center;
    margin: 0 -8px;
}
.footer__social li {
    padding: 0 8px;
}
.footer__social a {
    display: block;
    width: 48px;
    height: 48px;
    background: #271E19;
    border-radius: 50%;
    position: relative;
}
.footer__social a:hover {
    background: #597548;
}
.footer__social a::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
}
.footer__social .fb a::before {
    background: url(../img/facebook.svg) 50% no-repeat;
}
.footer__social .yt a::before {
    background: url(../img/youtube.svg) 50% no-repeat;
}
.footer__social .in a::before {
    background: url(../img/instagram.svg) 50% no-repeat;
}

.footer-col__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.5);
}

.footer-col__lists li {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #fff;
}

.footer-col__lists a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.footer-col__lists a:hover {
    color: #597548;
}

.footer-col__lists li:last-child {
    margin: 0;
}

.footer-copyright {
    padding: 24px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid #3C3532;
}


.aside {
    display: none;
}

.single__thumb {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.single__thumb img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 24px;
}

.entry-content {
    font-size: 16px;
    line-height: 1.4;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content p,
.entry-content ul,
.entry-content ol{
    margin-bottom: 16px;
}

.entry-content p:last-child,
.entry-content ul:last-child,
.entry-content ol:last-child{
    margin-bottom: 0;
}

.entry-content img {
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin-left: 24px;
}

.entry-content ul li {
    position: relative;
    padding-left: 22px;
    background: url(../img/li.svg) no-repeat 0 5px;
}
.entry-content ol {
    padding-left: 22px;
}

.entry-content a {
    color: #597548;
    border-bottom: 1px solid #597548;
}
.entry-content a:hover {
    border-color: transparent;
}

.entry-content a img {
    transition: all 0.3s ease;
}
.entry-content a:hover img {
    opacity: 0.9;
}
.entry-content img {
    display: block;
    max-width: 100%;
    border-radius: 24px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #2D241F;
    line-height: 1.2;
}

.entry-content h1 {font-size: 28px;}
.entry-content h2 {font-size: 24px;}
.entry-content h3 {font-size: 20px;}
.entry-content h4 {font-size: 18px;}

.entry-content__meta {
    color: #999;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.share-box {
    border-top: 1px solid #CED4DA;
    padding-top: 24px;
    margin-top: 24px;
}
.share-box__title {
    color: #2D241F;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}
.share-box__social {
    display: flex;
}
.share-box__social > a {
    display: block;
    height: 32px;
    margin-right: 12px;
    transition: all 0.3s ease;
    border: 0;
}
.share-box__social > a:hover {
    opacity: 0.9;
}


.content-gallery {
    overflow: auto;
    margin: 0 -15px;
    padding: 0 15px;
}
.content-gallery,
.gallery-row:has(> :nth-child(4)) { 
    display: flex;
} 
.gallery-row:has(> :nth-child(4)) .gallery-item {
    width: 200px;
    margin-right: 20px;
}
.gallery-item {
    height: 200px;
    margin: 20px 0;
}

.gallery-item a{ 
    position: relative;
    overflow: hidden;
    display: block;
    height: 100%;
    width: 100%;
    border: 0;
}
.gallery-item img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
}


@media screen and (min-width: 420px) {
    .banner-container {
        background-size: auto 180px;
    }


    .footer-col__title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .footer-col__lists li,
    .footer-col__lists li a {
        font-size: 16px;
    }

    .page-item {
        margin: 0 6px;
    }
    .page-numbers {
        display: block;
        width: 42px;
        height: 42px;
        line-height: 1.5;
    }
}

@media screen and (min-width: 480px) {
    .banner-container {
        padding-bottom: 240px;
        background-size: auto 220px;
    }

    .banner__text {
        font-size: 21px;
    }

    .banner__title {
        font-size: 28px;
    }

    .main-phone a::before {
        width: 48px;
        height: 48px;
        background-size: 48px;
    }

    .main-phone a {
        padding-left: 60px;
        font-size: 36px;
    }


    .customer__row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 0 -10px;
    }

    .customer__row>.review-card {
        width: 50%;
        padding: 0 10px;
    }

    .areas__block__list li {width: 33.333%;}


    .content-gallery-2 .gallery-row,
    .content-gallery-4 .gallery-row {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin: 0 -8px 20px -8px;
    }
    .gallery-row:has(> :nth-child(4)) .gallery-item,
    .content-gallery-2 .gallery-item,
    .content-gallery-4 .gallery-item {
        width: 50%;
        height: 240px;
        padding: 0 8px;
        margin: 8px 0;
    }

    .content-gallery-1 .gallery-item {
        height: 250px;
    }

    .project-slider__item__img {
        height: 300px;
    }

}

@media screen and (min-width: 560px) {
    .banner-container {
        background-size: auto 250px;
    }
    
    .banner__title {
        font-size: 32px;
    }

    .banner__list {
        display: flex;
    }

    .banner__list li {
        font-size: 18px;
        margin: 0 20px 0 0;
    }

    .banner__list li::before {
        top: 2px;
    }

    .services__wrap {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -8px;
    }

    .services__wrap .services-card {
        width: 50%;
        padding: 0 8px;
    }

    .hot__image {
        position: relative;
        overflow: hidden;
        height: 250px;
    }
    .hot__img {
        position: absolute;
        width: 100%;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .project-slider__item__img img {
        height: auto;
    }

    .areas__block__list li {
        font-size: 16px;
    }

    .categories__title {
        margin-bottom: 8px;
    }
    .categories__list {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -16px;
    }
    .categories__list li {
        width: 50%;
        padding: 0 16px;
    }

    .articles {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -8px;
    }
    .articles .post-card {
        width: 50%;
        padding: 0 8px;
    }

    .articles-related .post-card:nth-child(3) {
        display: none;
    }

    .page-numbers {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        font-size: 18px;
        line-height: 2;
    }
    .prev, .next {
        background-size: 12px;
    }

    .project-images {
        height: 300px;
    }
}

@media screen and (min-width: 768px) {
    .single__thumb img {
        border-radius: 32px;
    }

    .header__wrap {
        padding: 32px 15px;
    }

    .header__wrap__logo {
        flex: auto;
        padding: 0 24px 0 0;
    }

    .menu-btn {
        display: none;
    }

    .header__wrap__menu {
        padding: 0;
        position: relative;
        left: 0;
        top: 5px;
        overflow: hidden;
        width: auto;
    }

    .menu {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        margin: 0 -10px;
    }

    .menu li {
        margin: 0;
        padding: 1px 10px;
    }

    .banner-container {
        padding: 72px 52px;
        border-radius: 32px;
        background-size: 50%;
    }

    .banner__text {
        margin-bottom: 16px;
    }
    
    .banner__title{
        font-size: 42px;
        line-height: 1.2;
    }

    .banner__list {
        margin-bottom: 32px;
    }

    .footer-col__title {
        font-size: 20px;
        line-height: 100%;
    }

    .section-title,
    .project-info__title {
        font-size: 32px;
    }

    .section-text,
    .project-info__text {
        font-size: 18px;
        line-height: 30px;
    }
    
    .services {
        padding: 00 20px;
    }

    .services-card__title {
        font-size: 24px;
        line-height: 32px;
    }

    .services-card__text {
        font-size: 18px;
        line-height: 24px;
    }


    .hot__block {
        position: relative;
        max-width: 400px;
        padding: 32px;
        background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 30%, #FFFFFF 100%)
    }

    .hot__banner {
        position: absolute;
        right: 0;
        top:0;
        height: 100%;
        padding: 0;
    }

    .hot__banner::before {
        content: '';
        width: 50%;
        height: 100%;
        position: absolute;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%)
    }
    .hot__banner img {
        height: 100%;
        max-height: none;
        border-radius: 0;
    }

    .hot-container {
        position: relative;
        border-radius: 32px;
    }

    .hot__pre-title span {
        font-size: 18px;
    }

    .hot__text {
        font-size: 18px;
        line-height: 30px;
    }

    .services,
    .assist, 
    .project,
    .areas,
    .faq,
    .customer,
    .single,
    .testimonials,
    .footer {
        margin-top: 52px;
    }

    .assist-container {
        display: flex;
        flex-wrap: wrap;
        border-radius: 32px;
    }

    .assist__photo,
    .assist__info {
        width: 50%;
    }

    .assist__info__text {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .assist__info__list {
        margin: 24px 0;
    }
    
    .assist__info__list li {
        font-size: 18px;
        line-height: 100%;
        margin-bottom: 16px;
    }

    .testimonials__blocks {
		overflow:hidden;
        display: flex;
        margin: 0 -12px
    }
    .testimonials__blocks-column {
        flex: 1 1 50%;
        padding: 0 12px;
    }
    .testimonials__blocks-column:last-child {
        display: block;
    }
    .testimonials__blocks-column .review-card:not(:last-child) {
        margin-bottom: 24px;
    }

    .areas__map__box {
        position: absolute;
        z-index: 9;
        padding: 32px;
        width: 100%;
        margin: 0;
    }

    .areas__block__list {
        margin: 0;
        padding: 16px 8px 8px 8px;
    }

    #gmap  { 
        height: 400px;
    }

    .project-slider__item__block {
        padding: 30px;
        max-width: 768px;
    }

    .project-slider__item__title {
        font-size: 24px;
    }

    .project-slider__item__text {
        font-size: 18px;
        line-height: 30px;
    }
    .project-slider__item__img {
        height: 350px;
    }
    .project-slider__btn {
        width: 42px;
        height: 75px;
    }

    .faq-list__question {
        font-size: 18px;
        line-height: 30px;
    }

    .faq-list__question::before {
        top: 8px
    }

    .faq-list__question::after {
        top: 14px;
    }

    .faq-list__answer {
        font-size: 16px;
        line-height: 28px;
    }

    .footer {
        padding: 52px 0 0px;
        border-radius: 32px 32px 0 0;
    }

    .footer__col-contacts {
        order: 9;
    }

    .footer__col-contacts, .footer__col-qmenu {
        flex: 1 1 auto
    }
    .footer__col-smenu {
        flex: 1 1 50%;
    }
    .footer-copyright {
        margin-top: 32px;
    }


    .customer__row {
        margin: 0 -12px;
    }
    .customer__row>.review-card {
        width: 33.33%;
        padding: 0 12px;
    }



    .contact{margin-top: 52px;}

    .contact__row {
        display: flex;
        justify-content: space-between;
        margin: 0 -10px;
    }
    .contact__col {
        padding: 0 10px;
        margin: 0;
    }

    .contact__section .contact__row {
        align-items: center;
        border-radius: 32px;
        padding: 32px;
        margin: 0;
    }
    .contact__section  .contact__col {
        padding: 0;
    }
    .contact__section  .contact__col:first-child {
        padding-right: 24px;
    }
    .contact__section .contact__info {
        margin-bottom: 0;
    }
    .contact__img {
        border-radius: 24px;
    }


    .categories {
        margin-bottom: 32px;
    }
    .categories__list li {
        font-size: 18px;
    }

    .post-card__title {
        font-size: 24px;
        line-height: 32px;
    }
    .post-card__excerpt {
        font-size: 18px;
        line-height: 24px;
    }

    .entry-content h1 {font-size: 32px;}
    .entry-content h2 {font-size: 28px;}
    .entry-content h3 {font-size: 24px;}
    .entry-content h4 {font-size: 20px;}
}

@media screen and (min-width: 960px) {
    .menu {
        margin: 0 -15px;
    }

    .menu li {
        padding: 1px 15px;
    }

    .banner-container {
        border-radius: 52px;
        background-size: auto 250px
    }

    .banner__title,
    .main-phone a {
        font-size: 48px;
        line-height: 1.2;
    }

    .main-phone a::before {
        top: 5px;
    }

    .banner__list {
        margin-bottom: 42px;
    }

    .banner__list li {
        font-size: 20px;
    }

    .services__wrap .services-card {
        width: 33.333%
    }

    .hot__img {
        height: 100%;
    }

    .footer__phone a::before {
        background-size: 48px;
    }

    .banner__list li {
        margin: 0 32px 0 0;
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 16px;
    }

    .section-text {
        margin-bottom: 32px;
    }

    .services {
        padding: 0 0 40px;
    }

    .hot-container {
        border-radius: 52px;
    }

    .hot__block {
        max-width: 560px;
        padding: 72px 52px;
    }

    .services,
    .assist, 
    .project,
    .areas,
    .faq,
    .customer,
    .single,
    .testimonials,
    .footer {
        margin-top: 72px;
    }

    .assist-container {
        border-radius: 52px;
    }

    .assist__info {
        padding: 32px;
    }
    .assist__info__list {
        margin: 32px 0;
    }


    .testimonials__row {
        display: flex;
        justify-content: space-between;
    }

    .testimonials__text {
        flex: 0 0 420px;
        margin-right: 32px;
    }

    .areas__map__box {
        padding: 50px;
    }
    .areas__block__list {
        padding: 16px 16px 8px 16px;
    }
    .areas__block__list li {
        font-size: 18px;
    }
    .areas__block__list li::before {
        position: relative;
        top: 1px;
    }


    .faq__title {
        margin-bottom: 32px;
    }

    .footer {
        border-radius: 52px 52px 0 0;
    }



    .contact{margin-top: 72px;}

    .contact__row .contact__col:first-child {
        max-width: 440px;
    }

    .contact__row .contact__col:last-child {
        max-width: 560px;
    }

    .contact__info li {padding: 4px 0 4px 44px;}

    .contact__info li::before {
        width: 32px;
        height: 32px;
        top: -5px;
    }

    .contact__section .contact__row {
        padding: 52px;
        border-radius: 52px;
    }

    .contact__section  .contact__col:first-child {
        max-width: none;
        padding-right: 32px;
    }

    .contact__section .contact__info {
        margin: 24px 0 0;
    }

    .info-time::before,
    .info-mail::before,
    .info-phone::before {
        background-size: 27px;
    }

    .contact-block {padding: 32px;}

    .contact-block__text {
        font-size: 18px;
        line-height: 30px;
    }

    .contact__info {
        margin: 50px 0;
    }

    .contact__info li, .contact__info a, .contact__follow {
        font-size: 18px;
        line-height: 100%;
    }

    .contact__follow, .contact-block__text {margin-bottom: 24px;}

    .contact-block__title {
        font-size: 24px;
        line-height: 130%;
    }

    .categories {
        max-width: 66%;
    }
    .articles .post-card {
        width: 33.333%;
    }

    .articles-related {
        margin-top: 32px;
    }
    .articles-related .post-card:nth-child(3) {
        display: block;
    }

    .projects-list__item {
        display: flex;
        min-height: 400px;
    }
    .projects-list__item:nth-child(even) {
        flex-direction: row-reverse;
    }
    .project-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 50%;
        padding: 32px;
        margin: 0;
        border-radius: 24px;
        border: 1px solid #CED4DA;
    }
    .project-images {
        width: 50%;
        height: auto;
        margin: 0;
        border-radius: 24px;
        margin: 0 0 0 32px;
    }
    .projects-list__item:nth-child(even) .project-images {
        margin: 0 32px 0 0;
    }

    .single__thumb img {
        border-radius: 52px;
    }

    .is-flex {
        display: flex;
    }
    .is-flex .entry-content {
        flex: 1;
    }
    .is-flex .aside {
        display: block;
        flex: 0 0 360px;
        margin-left: 32px;
    }
    .aside-title {
        color: #2D241F;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .entry-content h1,
    .entry-content h2,
    .entry-content h3,
    .entry-content h4,
    .entry-content p,
    .entry-content ul,
    .entry-content ol {
        margin-bottom: 20px;
    }

    .entry-content h1 {font-size: 42px;}
    .entry-content h2 {font-size: 32px;}
    .entry-content h3 {font-size: 28px;}
    .entry-content h4 {font-size: 22px;}

    .entry-content img {
        margin-bottom: 24px;
    }

    .entry-content {
        font-size: 18px;
        line-height: 30px;
    }

    .gallery-row:has(> :nth-child(4)) .gallery-item,
    .content-gallery-4 .gallery-item {
        width: 25%
    }

    .content-gallery-1 .gallery-item {
        height: 350px;
    }

    .entry-content ul li {
        background: url(../img/li.svg) no-repeat 0 9px;
    }


    .project-slider__item__img {
        height: 450px
    }
}

@media screen and (min-width: 1140px) {
    .header__wrap {
        padding: 32px 0;
    }

    .services {
        overflow: hidden;
    }

    .services__slider {
        margin: 0 -80px;
    }

    .areas__block__list li {
        flex: 0 1 20%
    }

    .banner-container {
        padding: 130px 80px;
        background-size: auto 400px
    }

    .project-slider__item__block {
        padding: 40px 50px;
    }

    .project-slider__item__img {
        height: 500px
    }

    .footer {
        padding-top: 100px;
    }
    .footer__row {
        position: relative;
        padding-top: 140px;
    }
    .footer__phone {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
    }
    .footer__col-logo {
        width: auto;
        max-width: 290px;
        text-align: left;
        margin-right: 32px;
    }
    .footer__logo img {
        margin: 0;
    }
    .footer__social {
        justify-content: start;
    }
    .footer-col__title {
        margin-bottom: 24px;
    }
    .footer-col__lists li {
        margin-bottom: 12px;
    }
    .footer-col__lists li, .footer-col__lists li a {
        font-size: 18px;
    }
    .footer__col-contacts, .footer__col-qmenu {
        flex: 1;
        min-width: 140px;
    } 
    .footer__col-smenu {
        flex: 1 1 25%
    }
/*     .footer__col-contacts {
        flex: 0;
    } */

}

@media screen and (min-width: 1240px) {

    .services__slider {
        margin: 0 -100px;
    }

    .articles,
    .services__wrap {
        margin: 0 -16px;
    }

    .services__wrap .services-card{
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .articles .post-card {
        padding: 0 16px;
        margin-bottom: 48px; 
    }

    .hot {
        padding: 0;
    }
    .contact__section .contact__row {
        padding: 72px;
    }
    .hot__block {
        padding: 72px;
        max-width: 650px;
    }
    .testimonials__text {
        margin-right: 52px;
    }
    .assist__info {
        padding: 80px;
    }

    .project-info {
        padding: 48px;
    }
    .project-info__title {
        margin-bottom: 16px;
    }

    .footer {
        border-radius: 120px 120px 0 0;
    }

}

@media screen and (min-width: 1366px) {
    .services__slider {
        margin: 0 -180px;
    }

    .banner,
    .assist,
    .single__thumb {
        padding: 0;
    }

    .banner-container {
        background-size: auto 420px;
    }
}