/* Импорт шрифтов */
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/1990327378.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/2442591687.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/1411677578.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/3481533639.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/2285311865.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/1331569410.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Основные стили */
body {
	font-family: 'Open Sans',Arial,Helvetica,sans-serif;
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
}

h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

p {
    margin-bottom: 1.2rem;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: rgba(74,144,226,1);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2a6496;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: rgba(74,144,226,1);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #2a6496;
    color: #fff;
}

/* Верхняя панель */
.top-panel {
    background-color: rgba(74,144,226,1);
    color: #fff;
    padding: 10px 0;
}

.phone-link {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.phone-link:hover {
    color: #f8f8f8;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

/* Главное меню */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.logo {
    display: block;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.main-nav .nav-item {
    position: relative;
	margin-left: 10px;
	margin-right: 15px;
    text-transform: uppercase;
}

.main-nav .nav-link {
    display: block;
    color: #333;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
    text-decoration: none;
}

.main-nav .nav-link:hover {
    color: rgba(74,144,226,1);
    text-decoration: none;
}
.main-nav-wrap{
	background: #e5eef3;
	border-color: rgba(232, 232, 232, 1);
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
.dropdown-toggle:after {
    content: "▾";
    margin-left: 5px;
    font-size: 12px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    border-radius: 5px;
    overflow: hidden;
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 8px 15px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    color: rgba(74,144,226,1);
    text-decoration: none;
}
.background-overlay {
	inset: 0;
	position: absolute;
	background-color: #fff;
	opacity: .55;
	transition: background .3s, border-radius .3s, opacity .3s;
}
/* Главная секция */
.hero-section {
	background: url('../images/654654.jpg') #a7a7a7;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
    color: #fff;
    padding: 30px 0;
    text-align: center;
	position: relative;
}

.hero-section h1 {
	font-family: "Poppins", Sans-serif;
	color: #1893d1;
	font-size: 47px;
    margin-bottom: 20px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: 1.5px;
}

.hero-section p {
	font-family: "Open Sans";
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2em;
	color: #000;
}
.hero-section form{
	background-color: #FFFFFF6E;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .5) !important;
	transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
	border-radius: 20px !important;
}

.hero-feature .feature-text{
	color: #242424;
	font-size: 18px;
	font-weight: 700;
}

/* Секции сайта */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

/* Карточки с иконками */
.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(74,144,226,1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-wrapper img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Таблица цен */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.price-table-wrapper{
	overflow-x: auto;
	width: 100%
}
@media (max-width: 992px) {
.price-table-wrapper{
	max-width: 992px
	}
}
.price-table th,
.price-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.price-table th {
	background-color: #0077b6;
	color: #fff;
	text-align: center;
	border: 0;
}

.price-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.price-tabs-wrapper li button{
	font-family: "Poppins", Sans-serif;
	font-size: 18px;
	font-weight: 600;
	fill: #000;
	color: #000;
	border-style: solid;
	border-width: 2px;
	border-color: #3e84d7;
}

.materials-section{
	position: relative;
	background-image: url(../images/2r9bnzgbufbmgab5wuzjlmmvlsttbk4o.jpg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: auto;
}
.materials-section .background-overlay{
    background-color: transparent;
    background-image: linear-gradient(180deg, #fff 64%, #1893d1 100%);
    opacity: .86;
    transition: background .3s, border-radius .3s, opacity .3s;
}
 .materials-section h2,.materials-section h3,.materials-section h4,.materials-section button{
 	position: relative;
 }
/* Примеры работ */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.example-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.example-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.example-item:hover img {
    transform: scale(1.05);
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
	box-shadow: 5px 5px 30px -10px rgba(0, 0, 0, .38);
}

.faq-question {
	background-color: #329fd5;
	padding: 25px;
	color: #000;
	cursor: pointer;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question:after {
    content: "+";
    font-size: 20px;
    font-weight: 400;
}

.faq-question.active:after {
    content: "-";
}

.faq-answer {
    padding: 15px;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Форма контактов */
.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
}

.captcha-container {
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Секция "Готовы установить" */
.ready-install-section {
    background-color: #f0f8ff;
	background-image: url('/images/01.jpg');
    padding: 60px 0;
    position: relative;
}

.ready-install-box {
    padding: 40px;
    text-align: left;
}

.ready-title {
	font-family: "Poppins", Sans-serif;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1em;
	color: #2d2a2a;
}

.ready-consultation {
    max-width: 800px;
    margin: 0 auto;
}
.ready-heading-title {
	font-size: 24px;
	line-height: 1.2em;
	color: #000;
}
.ready-bottom-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2em;
    color: #000;
}
.ready-phone{
	font-family: "Poppins", Sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2em;
	color: #000;
}
.ready-consultation h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.ready-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Секция "Кроме установки заказывают" */
.additional-services-section {
    background-color: #fff;
    padding: 60px 0;
}
.services-section img.border{
	border-width: 3px !important;
}
.service-card {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
	box-shadow: 5px 0px 30px -10px rgba(0, 0, 0, .5);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
	background-color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: center;
}
.service-card-wrap{
	margin-bottom: 25px
}

.service-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #37658e;
}

.service-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Секция "Бренды с которыми мы работаем" */
.brands-section {
    background-color: #f8f8f8;
    padding: 60px 0;
}

.brands-slider {
    padding: 20px 0;
}

.brand-item {
	text-align: center;
	height: 100px ! Important;
	display: flex!important;
	align-items: center;
	justify-content: center;
}

.brand-item:hover {
    transform: scale(1.05);
}

.brand-item img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
}

/* Футер */
.main-footer {
    background-color: #25262f;
    color: #fff;
    padding: 60px 0 30px;
}

.main-footer h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list a {
    color: #fff;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: rgba(74,144,226,1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Секция "Идеальный микроклимат" */
.ideal-climate-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/climate-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.climate-title {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

.question-block {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.phone-note {
    margin-top: 15px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.phone-link-large {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
}

.phone-link-large:hover {
    color: rgba(74,144,226,1);
}

.contacts-section{
	background-image: url(/images/c1944364185ca44e0175e29bce98049a.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.contacts-section .background-overlay{
    background-color: transparent;
    background-image: linear-gradient(180deg, #fff 42%, #1893d1 100%);
    opacity: .7;
    transition: background .3s, border-radius .3s, opacity .3s;
}
.contacts-section .section-title{
	position: relative;
}
.prd-modal-btn:hover .rounded-sm{
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.prd-img{
	position: relative;
}
.prd-modal-btn:hover .prd-img:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: rgba(255,255,255,.7);
	-moz-transition: all 1s ease-in;
	-webkit-transition: all 1s ease-in;
	-o-transition: all 1s ease-in;
	transition: all 1s ease-in;
}
.btn-more{
	display: none!important;
	opacity: 0.7;
	position: absolute;
	top: 40%;
	left: 20%;
	z-index: 999;
}
.prd-modal-btn:hover .btn-more{
	display: block!important
}
.section-title {
	font-family: 'Roboto Condensed', sans-serif;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 32px;
	text-align: center;
	margin-bottom: 10px;
}

.section-underline {
	width: 80px;
	height: 4px;
	background-color: #007bff;
	margin: 0 auto 30px;
	border-radius: 2px;
}

.material-item .material-text h4{
	font-size: 18px
}


/* Медиа-запросы для адаптивности */
@media (max-width: 992px) {
    .nav-list {
        flex-wrap: wrap;
    }

    .nav-item {
        margin-left: 15px;
    }

    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .section {
        padding: 40px 0;
    }

    .examples-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .ready-title {
        font-size: 24px;
    }

    .brand-item {
        height: 60px;
    }

    .brand-item img {
        max-height: 40px;
    }
}

@media (max-width: 576px) {
    .top-panel {
        text-align: center;
    }

    .nav-list {
        justify-content: center;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

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

    .ready-install-box {
        padding: 20px;
    }

    .ready-title {
        font-size: 20px;
    }

    .climate-title {
        font-size: 22px;
    }
}
