/* normalize */
* {
    box-sizing: border-box;
}
html {
    line-height: 1.3; 
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;    
}
body {
    margin: 0;
}
main {
    display: block;
}
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    margin: 0;
}
a {
    text-decoration: none;
}
b, 
strong {
    font-weight: bolder;
}
img {
    display: block;
    max-width: 100%;
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    outline: none;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit; 
}
/* fonts */
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Regular.woff") format('woff');
    font-weight: 400;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
    src: url("../fonts/Gilroy-Bold.woff") format('woff');
    font-weight: 700;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'CodecPro';
    src: url("../fonts/Codec-Pro-News.woff") format('woff');
    font-weight: 400;
    font-style: normal; 
    font-display: swap;
}
@font-face {
    font-family: 'CodecPro';
    src: url("../fonts/Codec-Pro-Bold.woff") format('woff');
    font-weight: 700;
    font-style: normal; 
    font-display: swap;
}
/* main styles */
::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: var(--theme-color);
    border-radius: 10px;
    border: 4px solid transparent;
    background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
    background-color: var(--theme-color);
}
@keyframes stickyReveal {
    0% {
        transform: translateY(-137px);
    }
    100% {
        transform: translateY(0px);
    }
}
@keyframes zoomInOut {
    0% {
        transform: translate(-50%,-50%) scale(1);
    }
    50% {
        transform: translate(-50%,-50%) scale(1.2);
    }
    100% {
        transform: translate(-50%,-50%) scale(1);
    }
}
html {
    overflow-x: hidden;
}
body {
    position: relative;
    background: #fff;
    font-family: 'Gilroy';
    font-size: 16px;
    color: #2B2A29;
    overflow-x: hidden;
}
body.locked {
    overflow-y: hidden;
}
.container {
    width: 100%;
    max-width: 1310px;
    padding: 0 15px;
    margin: 0 auto;
}
.pt25 {
    padding-top:25px;
    text-align: center;
}
.wa-plan {
    width: 18px;
    display: inline-block;
    padding-right: 5px;
}
.d-flex {
    display: flex;
}
.bg-light {
    background: #f8f8f8;
}
.bg-theme {
    background: var(--alter-color);
}
.section {
    padding: 90px 0;
}
.section-title {
    font-size: 40px;    
    margin-bottom: 40px;
}
.section-title > span {
    color: var(--title-color);
}
.bg-theme .section-title {
    color: #fff;
}
.btn {
    display: block;
    border: none;
    padding: 15px 25px;
    background-image: linear-gradient(to right, #44a161, #54b772, #44a161, #54b772);
    background-size: 300% 100%;
    color: #fff;
    font-family: 'Gilroy';
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.35s all ease;
}
.btn.btn-dark {
    background: #2B2A29;
}
.btn:hover {
    background-position: 100% 0;
}
.btn.btn-dark:hover {
    background: #444240;
}
.hidden {
    display: none;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
    border: 1px solid #ebebeb;
    border-radius: 5px;
    transition: 0.3s all ease;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    border-color: var(--theme-color);
}
header {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    width: 100%;
    perspective: 1000px;
    z-index: 4;
}
header.sticky {
    position: fixed;  
    background: var(--theme-color);
    animation: 1s forwards stickyReveal;
    transition: 0.5s all ease;
    box-shadow: 0px 10px 20px 0 rgba(0,0,0,0.22);  
    backdrop-filter: blur(3px);  
    z-index: 99;
}
.header-row {
    align-items: center;
    gap: 40px;
    padding: 15px 0;
}
.logo {
    width: 120px;
}
.logo span {
    font-size: 16px;
    font-weight: 700;
}
.header-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
    font-size: 14px;
}
.header-menu li a {
    color: #fff;
    border-bottom: 2px solid transparent;
    transition: 0.3s border-color ease;
}
.header-menu li a:hover,
.header-menu li a.active {
    border-color: #fff;
}
.header-contacts {
    gap: 15px;
    align-items: center;
    margin-left: auto;
}
.header-tg {
    width: 28px;
    height: 28px;
}
.header-wp {
    width: 28px;
    height: 28px;
}
.header-contacts > div {
    flex-direction: column;
    gap: 5px;
}
.header-phone {
    font-size: 18px;
    font-weight: 700;
    color: #fff;    
}
.header-callback {
    color: #fff;
    font-size: 13px;
}
.header-callback:hover {
    text-decoration: underline;
}
.burger-toggler {
    display: none;
}
.hero {
    position: relative;
    height: 770px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    clip-path: ellipse(125% 100% at 50% 0%);
}
.hero:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(96deg, rgba(18, 24, 30, 0.8), rgba(16, 32, 46, 0.38) 61%, rgba(17, 35, 48, 0.38));
    z-index: 1;
}
.hero-crop {
    position: absolute;
    left: -3px;
    right: -3px;
    top: 0px;
    bottom: -1px;
    z-index: 2;
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}
.hero > .container {
    position: relative;    
    height: 100%;
    z-index: 3;
}
.hero-content {
    height: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 170px;
}
.hero-text {
    width: 70%;
    color: #fff;
}
.hero-text h1 {
    color: #fff;
    font-size: 58px;
}
.hero-subtitle {
    font-size: 20px;
    line-height: 1;
}
.hero-sales {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}
.hero-sales li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}
.hero-sales li:last-child {
    margin-bottom: 0;
}
.hero-sales li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-color);
    flex-shrink: 0;
}
.hero-callback {
    margin-top: 60px;
    display: inline-block;
    width: 250px;
    text-align: center;
}
.hero-about-section {
    position: relative;
    margin-top: -120px;    
}
.hero-about {
    width: 100%;
    gap: 100px;
    justify-content: center;
}
.hero-about-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    height: 200px;
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(35, 35, 35, 0.25);
}
.hero-about-item__icon {
    display: block;
    height: 50px;    
}
.hero-about-item__icon img {
    width: auto;
    height: 100%;
    margin: 0 auto;
}
.hero-about-item p {
    font-size: 18px;    
    margin: 15px 0 0;
}
.hero-about-item p span {
    font-weight: 600;
}
.offer-wrap {
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.offer-img {
    position: relative;
    height: 350px;
    width: auto;
}
.offer-img img {
    height: 100%;
}
.offer-info {
    width: 50%;
}
.offer-title .section-title {
    margin-bottom: 0;
}
.offer-title > span {
    font-weight: 700;
    font-size: 32px;
}
.offer-title > span b {
    font-size: 80px;
}
.offer-description {
    margin: 0;
    line-height: 1.5;
}
.offer-form {
    width: 100%;
    margin-top: 30px;
}
.offer-form > input {
    flex-grow: 1;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px 0 0 5px;
}
.offer-form .btn {
    height: 100%;
    border-radius: 0 5px 5px 0;
}
.form-action {
    position: relative;
}
.form-action > span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    font-size: 9px;
    text-align: center;
    margin-top: 3px;
}
.services-row {
    gap: 20px;
}
.service-item {
    flex-basis: 0;
    flex-grow: 1;
    padding: 40px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: -4px 4px 5px 0 rgba(22,22,22,0.12);
    transition: 0.3s ease;
}
.service-item-icon {
    height: 40px;
}
.service-item-icon img {
    display: block;
    width: auto;
    height: 100%;
}
.service-item-info {
    margin-top: 15px;
}
.service-item-info p {
    font-weight: 700;
    margin: 0 0 10px 0;
}
.section-about {
    padding: 0;
}
.about-wrap {
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    padding: 90px 0;
}
.about-wrap:before {
    content: '';
    display: block;
    background: url(../images/sd-icon.png) no-repeat;
    background-size: contain;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 50px;
    right: 0;
    filter: grayscale(1);
    opacity: 0.1;
    z-index: -1;
}
.about-nums {
    flex-basis: 40%;
    flex-shrink: 0;
}
.about-nums-item {
    position: relative;
    max-width: 250px;
    padding: 25px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0 rgba(22,22,22,0.12);
}
.about-nums-item:first-child {
    margin-bottom: 40px;
}
.about-nums-item:last-child {
    margin-top: 40px;
}
.about-nums-item:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: #ebebeb;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
}
.about-nums-item > div {
    font-weight: 700;
    font-family: 'CodecPro';
    font-size: 55px;
    color: var(--theme-color);
}
.about-img-wrap {
    position: absolute;
    bottom: 0;
    top: 50px;
    left: 150px;
    /*left: 250px;*/
    align-items: flex-end;
    gap: 5px;
    z-index: -1;
}
.about-img-wrap img {
    height: 100%;
}
.about-img-info {
    font-size: 13px;
    margin-bottom: 30px;
}
.about-img-info > p {
    margin: 0;
}
.about-img-info > span {
    color: #9f9f9f;
}
.about-content {
    flex-basis: 50%;
    flex-shrink: 0;
}
.about-content-actions {
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}
.about-video-btn {
    align-items: center;
    gap: 10px;
    max-width: 180px;
    color: #333;
}
.about-video-btn:before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: url(../images/icons/icon-play2.svg) no-repeat;
    background-size: contain;
    background-position: center center;
    flex-shrink: 0;
    transition: 0.3s ease;
}
.about-video-btn:hover:before {
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}
.masonry {
    position: relative;
    overflow: hidden;
}
.masonry.loading {
    opacity: 0.2;
}
.masonry.loading:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/spinner.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
    z-index: 99;
}
.masonry-item {
    border-radius: 5px;
    overflow: hidden;
}
.masonry-item:before {
    content: '';
    display: block;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    position: absolute;
    top: 10px;
    left: 10px;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: 0.3s all ease;
}
.masonry-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;    
}
.masonry-item:hover:before {
    width: 100%;
    height: 100%;
    top: -2px;
    left: 0;
}
#pdopage .btn-more {
    width: auto;
}
.planning-wrap {
    align-items: flex-start;
    gap: 50px;
}
.planning-filters {
    position: relative;
    width: 270px;
    flex-shrink: 0;
}
.filter-block {
    margin-bottom: 30px;
}
.filter-block-title {
    font-weight: 700;
}
.filters-row {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.filter-item {
    width: calc((100% - 10px) / 2);
    flex-grow: 1;
}
.filter-item > label {
    display: block;
    padding: 12px;
    font-size: 14px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--theme-color);
    border-radius: 5px;
    cursor: pointer;
    box-shadow: -4px 4px 5px 0 rgba(22,22,22,0.12);
    transition: 0.3s all ease;
}
.filter-item > input:checked + label,
.filter-item > label:hover {
    background: var(--theme-color);
    color: #fff;
}
.filter-item > input:disabled + label {
    opacity: 0.85;
    background: #efefef;
    border-color: #efefef;
    color: #bdbdbd;
    box-shadow: none;
    pointer-events: none;
}
.planning-filters .btn {
    width: 100%;
}
.planning-row {
    position: relative;
    flex-wrap: wrap;
    gap: 20px;
    overflow: hidden;
}
.planning-filters.loading:before,
.planning-row.loading:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(5px);
    z-index: 2;
}
.planning-item {
    position: relative;
    width: calc((100% - 20px) / 2);
    gap: 15px;
    padding: 15px;
    border: 1px solid #ebebeb;
    border-radius: 5px;  
    cursor: pointer;  
    transition: 0.3s all ease;    
}
.planning-item:hover {
    box-shadow: -4px 4px 5px 0 rgba(22,22,22,0.12);
}
.hit-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--title-color);
    color: #fff;
    padding: 7px;
    font-size: 12px;
    border-radius: 5px 0;
    z-index: 2;
}
.mfp-container {
    overflow-y: hidden;
}
.plan-item-slider,
.planning-item > img {
    width: 50%;
    margin: 0;
    overflow: hidden;
    flex-shrink: 0;
}
.plan-item-img {
    display: block;
    width: 100%;
    aspect-ratio: 1.77;
}
.plan-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.planning-item-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.planning-item-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--theme-color);
}
.planning-item-info > div span {
    display: block;
    font-size: 14px;
    line-height: 18px;
}
.planning-item-info > div p {
    align-items: center;
    gap: 8px;
    margin: 5px 0 0;
    font-weight: 700;
    color: var(--theme-color);
}
.planning-item-info > div p:before {
   /* content: '';
    display: block;
    width: 14px;
    height: 14px;
    background: url(../images/icons/icon-square.svg) no-repeat;*/
    background-size: cover;
    flex-shrink: 0;
    color: var(--theme-color);
}
.planning-item-info .btn {
    font-size: 14px;
    padding: 12px;
}
.swiper-wrapper.plan-item-gal {
    height: auto;
}
.swiper-pagination.plan-pagination {
    position: static;
}
.plan-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 7px;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    border: 1px solid #b1b1b1;
}
.plan-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color);
}
.section-cta {
    position: relative;
    background: url(../images/land.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
}
.section-cta:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(22, 22, 22, 0.4), rgba(255, 255, 255, 0.15));
    z-index: 1;
}
.pricelist-offer {
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 100px;
    color: #fff;
    z-index: 2;
}
.pricelist-offer-info {
    width: 55%;
    max-width: 55%;
}
.pricelist-offer-info .section-title {
    margin-bottom: 10px;
    line-height: 1.12;
}
.pricelist-offer-info .section-title span {
    display: block;
}
.pricelist-offer-subtitle {
    margin: 0;
}
.pricelist-offer-form {
    margin-top: 40px;
}
.pricelist-offer-form > span {
    display: block;
    margin-bottom: 10px;
}
.msg-list {
    gap: 10px;
    margin-bottom: 10px;
}
.msg-list-item {
    flex-basis: 0;
    flex-grow: 1;
}
.msg-list-item > label {
    padding: 12px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff;
    background: #333;
    border-radius: 5px;
    cursor: pointer;
    filter: grayscale(1);
    transition: 0.3s all ease;
}
.msg-list-item > label:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.msg-list-item > label.wp-label:before {    
    background-image: url(../images/icons/icon-whatsapp2.svg);
}
.msg-list-item > label.tg-label:before {
    background-image: url(../images/icons/icon-telegram.svg);
}
.msg-list-item > label.sms-label:before {
    background-image: url(../images/icons/icon-sms.svg);
}
.msg-list-item > label.phone-label:before {
    background-image: url(../images/icons/icon-phone.svg);
}
.msg-list-item > label.wp-label:hover,
.msg-list-item > input:checked + label.wp-label {
    filter: none;
    background: #25D366;
}
.msg-list-item > label.tg-label:hover,
.msg-list-item > input:checked + label.tg-label {
    filter: none;
    background: #0088cc;
}
.msg-list-item > label.sms-label:hover,
.msg-list-item > input:checked + label.sms-label {
    filter: none;
    background: #345e62;
}
.msg-list-item > label.phone-label:hover,
.msg-list-item > input:checked + label.phone-label {
    filter: none;
    background: #006699;
}
.pricelist-offer-form-fields {
    gap: 10px;
}
.pricelist-offer-form-fields input {
    flex-grow: 1;
    padding: 12px 15px;
}
.pricelist-offer-form-fields .form-action {
    width: calc((100% - 20px) / 3);
}
.pricelist-offer-form-fields .btn {
    width: 100%;
}
.swiper-pagination.process-steps {
    position: static;
    gap: 20px;
    margin-bottom: 30px;
}
.swiper-pagination-bullet.process-step-item {
    width: auto;
    height: auto;
    flex-basis: 0;
    flex-grow: 1;
    border-radius: 4px;
    font-weight: 700;
    color: #333;
    background: #d7d7d7;
    padding: 10px;
    margin: 0 !important;
    opacity: 1;
}
.swiper-pagination-bullet.process-step-item.swiper-pagination-bullet-active {
    background: var(--theme-color);
    color: #fff;
}
.process-item-content {
    gap: 30px;
}
.process-item-img {
    flex-grow: 1;
    border-radius: 4px;
    overflow: hidden;
}
.process-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.process-item-info {
    width: 50%;
    flex-shrink: 0;
}
.process-item-top {
    align-items: center;
    gap: 50px;
    margin-bottom: 30px;
}
.step-num {
    padding: 7px 15px;
    background: var(--title-color);
    border-radius: 4px;
    color: #fff;
}
.step-time {
    align-items: center;
    gap: 5px;
    font-size: 14px;
    line-height: 1;
}
.process-item-title {
    font-size: 23px;
    font-weight: 700;
    font-family: 'CodecPro';
}
.process-item-includes-wrap {
    margin-top: 20px;
}
.process-item-includes {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    flex-direction: column;
    gap: 12px;
}
.process-item-includes li {
    align-items: flex-start;
    gap: 8px;
    line-height: 1;
}
.process-item-includes li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--theme-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.process-item-desc {
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    background: #eee;
    padding: 25px;
    border-radius: 4px;
}
.process-item-desc > svg {
    flex-shrink: 0;
}
#section-warranty {
    position: relative;
}
#section-warranty > .container {
    position: relative;
    z-index: 2;
}
#section-warranty:before {
    content: '';
    display: block;
    background: url(../images/sd-icon.png) no-repeat;
    background-size: auto 100%;
    width: 70%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 30%;
    filter: grayscale(1);
    opacity: 0.1;
    z-index: 1;
}
.advant-row {
    gap: 30px;
    flex-wrap: wrap;
}
.advant-item {
    width: calc((100% - 90px) / 4);
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: -4px 4px 5px 0 rgba(22,22,22,0.5);
}
.advant-item-info {
    margin-top: 10px;
}
.advant-item-info > p {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
}
.advant-item-info > span {
    font-size: 14px;
}
.portfolio-item {
    align-items: flex-start;
    gap: 30px;
}
.portfolio-item-gallery {
    flex-basis: 50%;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 15px;
}
.portfolio-item-gallery-image {
    width: calc((100% - 45px) / 4);
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
}
.portfolio-item-gallery-image:first-child {
    width: 100%;
    height: 320px;
}
.portfolio-item-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-item-title {
    font-size: 28px;
    margin-bottom: 15px;
}
.portfolio-item-top {
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.portfolio-item-time {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    padding: 10px 20px;
    background: var(--title-color);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
}
.portfolio-item-top .btn {
    padding: 14px 25px;
    line-height: 1;
}
.portfolio-item-includes {
    margin-top: 20px;
}
.portfolio-item-info h5 {
    font-size: 20px;
}
.portfolio-item-includes ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    flex-wrap: wrap;
    gap: 15px;
}
.portfolio-item-includes ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: calc((100% - 15px) / 2);
    line-height: 1;
}
.portfolio-item-includes ul li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--theme-color);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.portfolio-item-review-wrap {
    margin-top: 25px;
}
.portfolio-item-review {
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #ededed;
    border-radius: 4px;
    margin-top: 10px;
}
.portfolio-item-review > img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
}
.portfolio-item-review-text {
    flex-direction: column;
    gap: 3px;
    font-size: 14px;
}
.portfolio-item-review-text p {
    margin: 7px 0 0;
}
.portfolio-pagination {
    position: static;
    margin-top: 30px;
}
.portfolio-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 12px;
    border-radius: 4px;
    background: #ededed;
    opacity: 1;
}
.portfolio-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color);
}
.portfolio-slider .swiper-button-next, 
.portfolio-slider .swiper-button-prev {
    color: var(--title-color);
}
.reviews-slider {
    padding-bottom: 30px;
}
.reviews-slider > .reviews-scrollbar.swiper-scrollbar {
    bottom: 0 !important;
}
.video-section {
    align-items: center;
    gap: 50px;
}
.popup-video {
    position: relative;
    width: 440px;
    height: 280px;
    flex-shrink: 0;
    border-radius: 5px;
    box-shadow: -15px 15px 9px 1px rgba(255,255,255,0.25);
    overflow: hidden;
}
.popup-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup-video:before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;    
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: url(../images/icons/icon-play.svg) no-repeat;
    background-size: contain;
    background-position: center center;    
    background-color: #fff;
    cursor: pointer;
    animation: zoomInOut 2s infinite;
    animation-timing-function: linear;  
    z-index: 2;
}
.popup-video:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(22,22,22,0.2);
    z-index: 1;
}
.swiper-scrollbar-drag {
    background: var(--theme-color);
    opacity: 0.75;
}
.section#section-contacts {
    padding: 0;
}
.contacts-wrap {
    position: relative;
}
.contacts-map {
    width: 100%;
    height: 480px;
    overflow: hidden;
}
.contacts-info {
    flex-direction: column;
    gap: 40px;
    background: var(--theme-color);
    color: #fff;
    position: absolute;
    top: 40px;
    left: 40px;
    border-radius: 10px;
    padding: 40px;
}
.contacts-info-item > span {
    font-size: 20px;
    display: block;
    margin-bottom: 7px;
}
.contacts-phone {
    font-size: 20px;
    gap: 8px;
    color: #fff;
}
.contacts-phone:before {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 15%;
    background-color: #277e41;
    background-image: url(../images/icons/icon-phone.svg);
    background-repeat: no-repeat;
    background-size: 16px 16px;    
    background-position: center center;
}
.contacts-soc {
    gap: 10px;
}
.contacts-soc > a img {
    width: 30px;
}
.contacts-address {
    align-items: center;
    gap: 8px;
    font-size:18px;
}
.contacts-address:before {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 15%;
    background-color: #277e41;
    background-image: url(../images/icons/icon-map-pin.svg);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    background-position: center center;
}
.contacts-info .btn {
    text-align: center;
}
.section.section-consultation  {
    padding: 0;
}
.consultation-wrap {
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}
.consultation-info {
    position: relative;    
    width: 45%;
    flex-shrink: 0;
    margin-bottom: 80px;
}
.consultation-info:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 15px;
    left: -15px;
    background: transparent;
    border: 2px solid var(--title-color);
    border-radius: 5px;
    z-index: 1;
}
.consultation-info-inner {
    position: relative;
    background: #fff;
    padding: 40px 50px 70px;
    border-radius: 5px;
    z-index: 2;
}
.consultation-info .section-title {
    margin-bottom: 10px;
    line-height: 1.2;
}
.consultation-info-subtitle {
    margin-bottom: 10px;
    line-height: 1.2;
}
.consultation-form {
    margin-top: 40px;
}
.consultation-form > span {
    display: block;
    margin-bottom: 5px;
}
.consultation-form-fields {
    gap: 10px;
}
.consultation-form-fields > input {
    flex-grow: 1;
    padding: 12px 15px;
}
.consultation-form-fields .btn {
    width: 100%;
}
.consultation-img {
    position: relative;
    height: 580px;
   /* height: 480px;*/
}
.consultation-img img {
    height: 100%;
    max-height: 100%;
    width: auto;
}
.interior-item {
    display: block;
    width: 360px;
    padding: 0;
    text-align: center;
}
.interior-item > a {
    display: block;
    width: 100%;
    height: 460px;
}
.interior-item > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.interior-item > span {
    display: block;
    font-weight: 700;
    margin-top: 10px;
}
.infrastructure-container {
    padding-left: calc((100% - 1120px) / 2);
}
.infrastructure-wrap {    
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}
.infrastructure-info > p {
    margin: 0;
    line-height: 1.5;
}
.infrastructure-slider-wrap {
    position: relative;
    width: 40%;
    flex-shrink: 0;
}
.infrastructure-slider-wrap:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--theme-color);
    opacity: 0.26;
    z-index: -1;
    left: -12px;
    top: 15px;
    filter: blur(5px);
}
.infrastructure-slider {
    max-width: 420px;
    height: 660px;
}
.infrastructure-slide {
    position: relative;
    border-radius: 5px 0 0 5px;
    overflow: hidden;
}
.infrastructure-slide:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--theme-color);
    opacity: 0.3;
    z-index: 1;
}
.infrastructure-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.infrastructure-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}
.infrastructure-slider-btn {
    color: #fff;
    z-index: 2;
}
.payments-row {
    gap: 20px;
    padding-top: 20px;
}
.payment-item {
    flex-direction: column;
    align-items: flex-start;
    flex-basis: 0;
    flex-grow: 1;
    padding: 25px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: -4px 4px 5px 0 rgba(22,22,22,0.12);
    transition: 0.3s all ease;
}
.payment-item:hover {
    border-color: var(--alter-color);
    box-shadow: none;
}
.payment-item-icon {
    height: 40px;
}
.payment-item-icon svg {
    height: 100%;
    width: auto;
}
.payment-item-icon svg,
.payment-item-icon svg path {
    fill: var(--title-color);
}
.payment-item-info {
    flex-direction: column;
    flex-grow: 1;
    margin-top: 20px;
}
.payment-item-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
}
.payment-item-info > span {
    font-size: 14px;
    margin-bottom: 20px;
}
.payment-item-info > .btn {
    font-size: 14px;
    margin-top: auto;
}
.calc-wrap {
    align-items: center;
    gap: 50px;
    justify-content: space-between;
}
.calc-wrap-img {
    height: 320px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: -10px 10px 10px 0 rgba(22,22,22,0.12);
}
.calc-wrap-img img {
    height: 100%;
    max-height: 100%;
    width: auto;
}
.calc-form-desc {
    display: block;
    font-size: 18px;
    margin-bottom: 30px;
}
.calc-form-wrap {
    position: relative;
    width: 60%;
    flex-shrink: 0;
}
.calc-form {   
    position: relative;    
    background: #fff;
    padding: 25px;
    border-radius: 5px;
}
.calc-form-fields {
    flex-wrap: wrap;
    gap: 30px;
}
.calc-form-field {
    width: calc((100% - 30px) / 2);
}
.calc-form-field > label {
    font-size: 14px;
    font-weight: 700;
}
.range-wrap {
    margin-top: 10px;
}
.range-wrap > input {
    padding: 8px 10px;
    width: 100%;
}
.irs--round {
    margin-top: -5px;
}
.irs--round .irs-min,
.irs--round .irs-max {
    top: 40px;
    background: var(--theme-color);
    color: #fff;
}
.irs--round .irs-line {
    top: 20px;
    background-color: #ebebeb;
    border-radius: 5px;
}
.irs--round .irs-bar {
    top: 20px;
    border-radius: 5px 0 0 5px;
    background-color: var(--title-color);
}
.irs--round .irs-handle {
    top: 10px;
    border-color: var(--theme-color);
}
.calc-form-types {
    margin-top: 40px;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.cal-form-type {
    flex-basis: 0;
    flex-grow: 1;
}
.cal-form-type > label {
    align-items: center;
    gap: 5px;
    font-size: 13px;
    padding: 5px 10px;
    background: #ebebeb;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s all ease;
}
.radio-custom {
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid var(--theme-color);
    border-radius: 50%;
    transition: 0.3s all ease;
}
.radio-custom:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: var(--title-color);
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s all ease;
}
.cal-form-type > input:checked + label {
    color: #fff;
    background: var(--title-color);
}
.cal-form-type > input:checked + label .radio-custom {
    border-color: var(--title-color);
}
.cal-form-type > input:checked + label .radio-custom:before {
    opacity: 1;
}
.calc-total {
    position: relative;
    margin-top: 50px;    
}
.calc-total:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 15px;
    left: -15px;
    background: transparent;
    border: 2px solid var(--title-color);
    border-radius: 5px;
}
.calc-total-inner {
    position: relative;
    border-radius: 5px;
    padding: 25px 25px 40px;
    background: #fff;
}
.calc-total-inner > h3 {
    color: var(--title-color);
    font-size: 24px;
}
.calc-total-info {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.calc-total-item {
    flex-basis: 0;
    flex-grow: 1;
    background: var(--theme-color);
    color: #fff;
    border-radius: 5px;
    padding: 10px;
}
.calc-total-item > span {
    font-weight: 700;
}
.calc-total-item p {
    margin: 5px 0 0;
}
.calc-total-form {
    margin-top: 20px;
    border-top: 1px solid #ebebeb;
    padding-top: 20px;
    gap: 10px;
}
.calc-total-form > input {
    flex-grow: 1;
    padding: 12px 15px;
}
.banks-slider {
    padding-bottom: 20px;
}
.banks-slide {
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    overflow: hidden;
}
.banks-slide img {
    width: 100%;
    height: auto;
    max-height: 100%;
}
.cert-wrap {
    justify-content: space-between;
    align-items: center;
    gap: 50px;    
}
.cert-img {
    width: auto;
    height: 325px;
    flex-shrink: 0;
    border-radius: 5px;
    box-shadow: -15px 15px 9px 1px rgba(255,255,255,0.25);
    overflow: hidden;
}
.cert-img img {
    height: 100%;
    width: auto;
}
.cert-form > input {
    flex-grow: 1;
    padding: 12px 15px;
    border-radius: 5px 0 0 5px;
}
.cert-form > .form-action {
    width: 180px;
}
.cert-form .btn {
    width: 100%;
    border-radius: 0 5px 5px 0;
}
.cert-form > .form-action span {
    color: #fff;
}
.section#description {
    padding: 50px 0;
}
.description-text {
    font-size: 18px;
    line-height: 1.5;
}
.description-text p:first-child {
    margin-top: 0;
}
.description-text p:last-child {
    margin-bottom: 0;
}
footer {
    padding: 50px 0;
    background: #333;
}
.footer-row {
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}
.footer-menu li a {
    color: #fff;
}
.footer-phone {
    color: #fff;
    font-weight: 700;
}
.footer-menu li a:hover,
.footer-phone:hover {
    text-decoration: underline;
}
.modal {
    visibility: hidden;
    display: block;
    opacity: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 888;
    padding: 30px;
    overflow-y: auto;
    transition: opacity .4s;
}
.modal:before {
    content: '';
    display: none;
    background: rgba(0,0,0,0.6);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.modal,
.modal:before {
    position: fixed;
    top: 0;
}
.modal-dialog {
    position: static;
    width: 400px;
    max-width: 95%;
    padding: 40px 40px 60px;
    margin: 50px auto;
    background: #fff;
    z-index: 11;
    border-radius: 5px;
    transform: translate(0,-500%);
    transition: transform .3s ease-out;
}
.modal-dialog.dialog-wide {
    width: 880px;
}
.modal-header {
    text-align: center;
}
.modal-header .modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    padding: 0;
    width: 25px;
    height: 25px;
    line-height: 0;
    cursor: pointer;
}
.modal-close svg {
    width: 100%;
    height: 100%;
}
.modal-close svg rect {
    transition: 0.3s ease;
}
.modal-close:hover svg rect {
    fill: var(--theme-color);
}
.modal-body {
    margin-top: 30px;
    text-align: center;
}
.modal.opened {
    visibility: visible;
    opacity: 1;
    left: 0;
}
.modal.opened .modal-dialog {
    transform: translate(0,0);
}
.modal.opened:before {
    display: block;
}
.callback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.callback-form > input {
    padding: 15px;
}
.callback-form .btn {
    width: 100%;
}
.modal-dialog.dialog-wide .modal-body {
    margin-top: 0;
    text-align: left;
}
.planmodal-wrap {
    gap: 40px;
}
.planmodal-slider {
    width: 60%;
    max-width: 60%;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    overflow: hidden;
}
.planmodal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.planmodal-slider-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 7px;
    border-radius: 4px;
    background: #fff;
    opacity: 1;
    border: 1px solid #b1b1b1;
}
.planmodal-slider-pagination .swiper-pagination-bullet-active {
    background: var(--theme-color);
}
.planmodal-info {
    display: flex;
    flex-direction: column;
}
.planmodal-wp-write {
    display: block;
    margin-top: 40px;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    background: #46a746;
    color: #fff;
    transition: 0.3s background ease;
}
.planmodal-wp-write:hover {
    background: #3a8d3a;
}
.planning-specs {
    margin: 20px 0;
}
.planning-specs-item {
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.planning-specs-item__title {
    display: flex;
    flex-grow: 1;
    opacity: 0.7;
    line-height: 1;
}
.planning-specs-item__title:after {
    content: '';
    display: block;
    border-bottom: 1px dotted #333;
    flex-grow: 1;
    margin: 0 10px;
}
.planning-specs-item__val {
    flex-shrink: 0;
    width: auto;
    font-weight: 700;
    color: var(--title-color);
    line-height: 1;
}
.planmodal-form {
    margin-top: auto;
}
.planmodal-form > span {
    display: block;
    margin-bottom: 10px;
}
.planmodal-form .msg-list {
    flex-wrap: wrap;
}
.planmodal-form-fields {
    flex-direction: column;
    gap: 10px;
}
.planmodal-form-fields {
    flex-direction: column;
    gap: 10px;
}
.planmodal-form-fields > input {
    padding: 15px;
}
.planmodal-form-fields .btn {
    width: 100%;
}
.jGrowl.center {
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999;
}
.jGrowl-notification {
    text-align: center !important;
    padding: 25px 40px !important;
    font-size: 14px !important;
    position: relative !important;
}
.jGrowl-notification .jGrowl-close {
    position: absolute !important;
    top: 5px !important;
    right: 5px !important;
}
.af-message-error {
    background-color: #ff534e !important;
    opacity: 1;
}
.af-message-error {
    background-color: #ff534e !important;
    opacity: 1 !important;
}
.af-message-success {
    background-color: #149946 !important;
    opacity: 1 !important;
}
.includes-row {
    flex-wrap: wrap;
    gap: 25px;
}
.include-item {
    width: calc((100% - 50px) / 3);
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(35, 35, 35, 0.25);
}
.include-item-icon {
    margin-bottom: 10px;
}
.preim-slider,
.infra-slider {
    padding-bottom: 30px;
}
.preim-slider > .preim-scrollbar.swiper-scrollbar,
.infra-slider > .infra-scrollbar.swiper-scrollbar {
    bottom: 0 !important;
}
.preim-slide {
    align-items: flex-end;
    width: 370px;
    height: 350px;
    border-radius: 10px;
    position: relative;
    background-size: cover;
    background-position: center center;
}
.infra-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 370px;
    height: 350px;
    border-radius: 10px;
    position: relative;
    background-size: cover;
    background-position: center center;
}
.preim-slide:before,
.infra-slide:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.15);
    z-index: -1;
}
.preim-slide-title,
.infra-title {
    padding: 30px 20px;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}
.infra-title-2 {
    padding: 30px 20px;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}
.infra-text {
    padding: 0px 20px 15px 20px;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}
.infra-link {
    padding: 0px 0px 10px 20px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}
.infra-link a{    
    top: 0;
    left: 0;
    background: var(--theme-color);
    color: #fff;
    padding: 7px;
    font-size: 14px;
    font-weight: 100;
    border-radius: 5px 0;
}
.infra-mins {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    padding: 6px 15px 6px 5px;
    border-radius: 0 10px 10px 0;
}

/* Media */
@media (max-width: 1160px) {
    .sales-slider-wraper {
        padding-left: 20px;
    }
    .infrastructure-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media (max-width: 992px) {
    .hero-about {
        gap: 30px;
    }
    .hero-about-item {
        width: auto;
        height: auto;
        padding: 50px 30px;
    }
    .hero-text h1 {
        font-size: 44px;
    }
    .services-row {
        flex-wrap: wrap;
    }
    .service-item {
        flex-basis: 100%;
    }
    .about-wrap {
        flex-wrap: wrap;
        padding: 0;
    }
    .about-wrap:before {
        width: 80%;
    }
    .about-img-wrap {
        display: none;
    }
    .about-nums {
        flex-basis: 100%;
        display: flex;
        gap: 30px;
    }
    .about-nums-item:first-child {
        margin-bottom: 0;
    }
    .about-nums-item:last-child {
        margin-top: 0;
    }
    .about-content {
        flex-basis: 100%;
    }
    .about-content .section-title {
        margin-bottom: 20px;
    }
    .include-item {
        width: calc((100% - 25px) / 2);
    }
    .process-item-img {
        display: none;
    }
    .process-item-info {
        width: 100%;
    }
    .advant-item {
        width: calc((100% - 30px) / 2);
    }
    .portfolio-item {
        flex-wrap: wrap;
    }
    .portfolio-item-gallery {
        flex-basis: 100%;
    }
    .portfolio-item-gallery-image:first-child {
        height: 380px;
    }
    .popup-video {
        width: 40%;
    }
    .section {
        padding: 40px 0;
    }
    .section br {
        display: none;
    }
    .header-row {
        padding: 10px 0;
        gap: 30px;
    }
    .header-menu {        
        position: absolute;
        top: 100%;
        left: 0;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        background: var(--theme-color);       
        width: auto; 
        max-width: 100%;
        font-size: 18px;
        transform: translateX(-110%);
        transition: 0.4s all ease;
    }  
    .header-menu.shown {
        transform: translateX(0);
    }  
    .header-contacts {
        margin-left: auto;
    }
    .header-callback {
        display: none;
    }
    .burger-toggler {
        display: block;
        background: rgba(0,0,0,0);
        border: none;
        width: 24px;
        height: auto;
        padding: 0;
        font-size: 0;
        line-height: 0;
        cursor: pointer;
    }
    .burger-toggler span {
        display: block;
        width: 24px;
        height: 2px;
        background:  #fff;
        margin: 4px auto;
        transition: all 0.3s ease-in-out;
    }
    .burger-toggler.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .burger-toggler.active span:nth-child(2) {
        opacity: 0;
    }
    .burger-toggler.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    .offer-wrap {
        flex-direction: column;
        gap: 30px;
    }
    .masonry {
        gap: 10px;
    }
    .masonry-item {
        width: calc((100% - 30px) / 4);
    }
    .planning-wrap {
        align-items: stretch;
        gap: 30px;
        flex-direction: column;
    }
    .planning-filters {
        width: 100%;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .filter-block {
        width: 100%;
    }
    .filter-item {
        width: auto;
        flex-grow: 1;
    }
    .pricelist-offer-img {
        display: none;
    }
    .pros-top-row {
        align-items: flex-start;
        gap: 0;
        flex-direction: column;
    }
    .pros-top-text {
        width: 100%;;
    }
    .pros-item-info {
        padding: 20px;
    }
    .video-section {
        align-items: flex-start;
        gap: 30px;
        flex-direction: column;
    }
    .popup-video {
        box-shadow: none;
    }
    .location-row {
        align-items: flex-start;
        gap: 30px;
        flex-direction: column;
    }
    .location-row-left {
        width: 100%;
    }
    .location-row-left .section-title {
        margin-bottom: 10px;
    }
    .map {
        height: 400px;
        margin-top: 50px;
    }
    .consultation-wrap {
        justify-content: center;
    }
    .consultation-img {
        display: none;
    }
    .consultation-info {
        width: 420px;
        max-width: 100%;
        margin-bottom: 55px;
    }
    .section-interior .consultation-wrap {
        flex-wrap: wrap;
    }
    .section-interior .consultation-info {
        order: 2;
        width: 90%;
        margin-bottom: 0;
    }
    .infrastructure-wrap {
        align-items: stretch;
        gap: 30px;
        flex-direction: column;
    }
    .infrastructure-slider-wrap {
        width: 100%;
    }
    .infrastructure-slider-wrap:before {
        display: none;
    }
    .payments-row {
        flex-wrap: wrap;
    }
    .payment-item {
        flex-basis: calc((100% - 20px) / 2);
    }
    .calc-form-wrap {
        width: 100%;
    }
    .calc-wrap-img {
        display: none;
    }
    .calc-total-item {
        flex-basis: calc((100% - 20px) / 2);
    }
    .cert-wrap {
        gap: 30px;
        flex-direction: column;
    }
    .cert-img {
        height: 270px;
    }
}   
@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 25px;
    }
    .hero {
        min-height: 500px;
        height: auto;
    }
    .hero-crop {
        display: none;
    }
    .hero-content {
        padding-bottom: 50px;
    }
    .hero-text h1 {
        font-size: 54px;
    }
    .hero-subtitle {
        font-size: 20px;
    }    
    .hero-about-section {
        margin-top: 0;
    }
    .hero-about {
        flex-wrap: wrap;
        padding: 0;
        margin-top: 50px;
    }
    .hero-about-item {
        flex-basis: 100%;
        padding: 30px;
    }
    .pricelist-offer-info {
        width: 100%;
        max-width: 100%;
    }
    .offer-info {
        width: 100%;
    }
    .offer-title > span {
        font-size: 28px;
    }
    .offer-title > span b {
        font-size: 60px;
    }
    .masonry {
        gap: 10px;
        height: 550px;
    }
    .pros-row {
        margin-top: 50px;
    }
    .pros-item-info h3 {
        font-size: 24px;
    }    
    .planning-item {
        width: 100%;
    }
    .consultation-info:before {
        display: none;
    }
    .calc-total-form,
    .pricelist-offer-form-fields {
        flex-wrap: wrap;
    }
    .calc-total:before {
        display: none;
    }
    footer {
        padding: 30px 0;
    }
    .footer-row {
        align-items: center;
        gap: 30px;
        flex-direction: column;
    }
    .footer-menu {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    .modal-dialog {
        padding: 20px;
    }
    .modal-header .modal-close {
        top: 5px;
        right: 5px;
    }
    .planmodal-wrap {
        gap: 30px;
        flex-direction: column;
    }
    .planmodal-img {
        width: 100%;
        height: 300px;
    }
    .planmodal-img img {
        width: auto;
        height: 100%;
    }
    .contacts-wrap {
        display: flex;
        align-items: stretch;
        flex-direction: column;
    }
    .contacts-map {
        width: 100%;
        height: 360px;
        order: 2;
    }
    .contacts-info {
        position: static;
        gap: 30px;
        padding: 15px;
        align-items: flex-start;
        flex-shrink: 0;
        border-radius: 0;
    }
    .swiper-pagination.process-steps {
        flex-wrap: wrap;
    }
    .planmodal-slider {
        width: 100%;
        max-width: 100%;
    }
    .hero-text {
        width: 100%;
    }
    .about-nums {
        flex-wrap: wrap;
    }
    .about-nums {
        gap: 15px;
    }
    .about-nums-item {
        flex-basis: 0;
        flex-grow: 1;
        padding: 10px;
        max-width: none;
    }
}
@media (max-width: 540px) {
    body {
        font-size: 14px;
    }
    .planning-item {
        flex-wrap: wrap;
    }
    .plan-item-slider, 
    .planning-item > img,
    .planning-item-info {
        width: 100%;
    }
    .planning-item > img {
        height: 150px;
        object-fit: cover;
    }
    .about-content-actions {
        gap: 20px;
        margin-top: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-content-actions .btn {
        width: 100%;
        text-align: center;
    }
    .about-nums-item {
        padding: 15px;
        font-size: 14px;
    }
    .service-item {
        padding: 20px;
    }
    .hero-text h1 {
        font-size: 26px;
    }
    .header-phone {
        font-size: 16px;
        line-height: 1;
    }
    .header-wp,
    .header-tg {
        width: 20px;
        height: 20px;
    }
    .hero-text h1 {
        font-size: 40px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-sales {
        margin-top: 20px;
        font-size: 14px;
    }
    .hero-about-item {
        font-size: 14px;
    }
    .offer-img {
        height: auto;
        width: 100%;
    }
    .offer-img:before {
        display: none;
    }
    .offer-img img {
        width: 100%;
        height: auto;
    }
    .offer-form,
    .msg-list,
    .consultation-form-fields,
    .cert-form {
        flex-wrap: wrap;
        gap: 10px;
    }
    .form-action {
        width: 100% !important;
    }
    .form-action .btn {
        width: 100% !important;
    }
    .masonry-item {
        border-radius: 10px;
    }
    .masonry-item:before {
        width: calc(100% - 12px);
        height: calc(100% - 12px);
        top: 5px;
        left: 5px;
        border: 2px solid #fff;
        border-radius: 10px;
    }
    .planning-item-info > div {
        margin-top: auto;
        margin-bottom: 15px;
    }
    .pros-item {
        flex-wrap: wrap;
    }
    .pros-item-img {
        width: 100%;
        height: 220px;
    }
    .pros-item:nth-child(2n) .pros-item-img {
        order: 0;
    }
    .popup-video {
        height: 120px;
    }
    .popup-video:before {
        width: 32px;
        height: 32px;
    }
    .sales-slide {
        width: 200px;
        height: 200px;
    }
    .sales-slide-text {
        font-size: 14px;
    }
    .map {
        height: 300px;
    }
    .infrastructure-slider {
        height: 270px;
        aspect-ratio: 3 / 4;
    }
    .infrastructure-slide-text {
        padding: 15px;
        font-size: 14px;
    }
    .infrastructure-slider-btn:after {
        font-size: 30px;
    }
    .payment-item {
        flex-basis: 100%;
    }
    .calc-form {
        padding: 20px;
    }
    .calc-form-field {
        width: 100%;
    }
    .calc-form-types {
        gap: 10px;
    }
    .cal-form-type {
        flex-basis: auto;
        width: auto;
    }
    .calc-total {
        margin-top: 30px;
    }
    .calc-total-info {
        gap: 10px;
    }
    .calc-total-item {
        flex-basis: auto;
    }
    .cert-img {
        width: 100%;
        height: auto;
        box-shadow: none;
    }
    .cert-img img {
        width: 100%;
        height: auto;
    }
    .includes-row {
        gap: 15px;
    }
    .include-item {
        width: calc((100% - 15px) / 2);
        padding: 15px;
    }
    .swiper-pagination.process-steps {
        gap: 10px;
    }
    .swiper-pagination-bullet.process-step-item {
        flex-basis: 25%;
    }
    .advant-row {
        gap: 15px;
    }
    .advant-item {
        width: 100%;
    }
    .portfolio-item-includes ul {
        gap: 10px;
    }
    .portfolio-item-includes ul li {
        width: 100%;
    }
    .portfolio-item-gallery {
        gap: 10px;
    }
    .portfolio-item-gallery-image {
        width: calc((100% - 30px) / 4);
        height: 60px;
    }
    .portfolio-item-gallery-image:first-child {
        height: 250px;
    }
    .portfolio-item-review {
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .modal {
        padding: 20px 10px;
    }
    .modal-dialog {
        max-width: 100%;
        padding-top: 30px;
    }
    .modal-header .modal-close {
        width: 18px;
        height: 18px;
    }
    .section-interior .consultation-wrap {
        gap: 25px;
    }
    .section-interior .consultation-info {
        width: 100%;
    }
    .consultation-info-inner {
        padding: 10px 10px 35px;
    }
    .interior-item {
        width: 290px;
    }
    .interior-item > a {
        height: 360px;
    }
    .preim-slide,
    .infra-slide {
        width: 270px;
        height: 270px;
    }
}
@media (max-width: 360px) {
    .logo {
        font-size: 12px;
        line-height: 16px;
    }
    .logo br {
        display: none;
    }    
    .logo span {
        font-size: 12px;
    }    
    .header-wp {
        display: none;
    }
    .section-title {
        font-size: 24px;
    }
    .about-nums-item > div {
        font-size: 35px;
    }
    .about-nums-item span {
        font-size: 12px;
    }
}

.cookie-modal {
    background: #fff;
    box-shadow: 2px 0 6px 2px rgba(0, 0, 0, 0.12);
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999999;
    display: inline-block;
    border-radius: 8px;
    margin: 10px;
}
.cookie-modal__content {
    font-size: 10px;
    padding: 5px 5px;
    text-align: center;
}
.cookie-modal__content p {
    margin: 0;
}
.cookie-modal__close {
    background: var(--theme-color);
    font-size: 12px;
    color:#fff;
    line-height: 1;
    border: none;
    padding: 3px 15px;
    margin-top: 5px;
    cursor: pointer;
    border-radius: 4px;
}
.cookie-modal__content a {
    color: var(--theme-color);
}
@media (max-width: 992px) {
    .cookie-modal__content {
        font-size: 8px;
        padding: 5px 5px;
    }
}
@media (max-width: 768px) {
    .cookie-modal {
        bottom: 70px;
        width: 80vw;
    }
}