:root {
	--font-size-14: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
	/*14px*/
	--font-size-main: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
	/*16px*/
	--font-size-18: clamp(0.875rem, 0.784rem + 0.45vw, 1.125rem);
	/*18px*/
	--font-size-20: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
	/*20px*/
	--font-size-22: clamp(1.125rem, 1.034rem + 0.45vw, 1.375rem);
	/*22px*/
	--font-size-24: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
	/*24px*/
	--font-size-26: clamp(1.125rem, 0.943rem + 0.91vw, 1.625rem);
	/*26px*/
	--font-size-28: clamp(1.125rem, 0.898rem + 1.14vw, 1.75rem);
	/*28px*/
	--font-size-30: clamp(1.5rem, 1.364rem + 0.68vw, 1.875rem);
	/*30px*/
	--font-size-32: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
	/*32px*/
	--font-size-34: clamp(1.5rem, 1.273rem + 1.14vw, 2.125rem);
	/*34px*/
	--font-size-36: clamp(1.625rem, 1.398rem + 1.14vw, 2.25rem);
	/*36px*/
	--font-size-38: clamp(1.625rem, 1.352rem + 1.36vw, 2.375rem);
	/*38px*/
	--font-size-40: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
	/*40px*/
	--font-size-42: clamp(2rem, 1.773rem + 1.14vw, 2.625rem);
	/*42px*/
	--font-size-44: clamp(2rem, 1.727rem + 1.36vw, 2.75rem);
	/*44px*/
	--font-size-46: clamp(2.125rem, 1.852rem + 1.36vw, 2.875rem);
	/*46px*/
	--font-size-48: clamp(2.25rem, 1.977rem + 1.36vw, 3rem);
	/*48px*/
	--font-family-main: "Raleway";
	--font-family-title: "Montserrat", sans-serif;
	--main-color: #2b2823;
	--trans-all: ease all .3s;
	--margin-top-clamp: clamp(30px, calc(30px + 30 * ((100vw - 370px) / 880)), 60px);
	--container-width: 1440px;
	/* --container-padding: 15px; */
}

html {
	font-size: 16px;
}

body {
	font-size: 16px;
	line-height: 1.3;
	font-weight: 400;
	font-family: var(--font-family-main);
	color: var(--main-color);
	font-variant-numeric: lining-nums;
}

.section-margin {
	margin-top: var(--margin-top-clamp);
	margin-bottom: 60px;
}

.container {
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
}

.container::before,
.container::after {
	display: none;
}

.btn-main {
	cursor: pointer;
	width: fit-content;
	height: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: var(--trans-all);
	font-weight: 400;
	background: transparent;
	text-align: center;
	background: #fff;
	padding: 14px 40px;
	color: var(--main-color);
	min-height: 47px;
}

.btn-bordered {
	cursor: pointer;
	width: fit-content;
	height: fit-content;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: var(--trans-all);
	font-weight: 400;
	text-align: center;
	color: #fff;
	background: transparent;
	border: 1px solid #fff;
	padding: 14px 40px;
	min-height: 47px;
}

.btn-main:hover {
	background: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.btn-bordered:hover {
	opacity: 0.5;
	color: #fff;
}

.btn-bordered-green {
	border: 1px solid #5f6c5a;
	color: #5f6c5a;
}

.btn-bordered-green:hover {
	border: 1px solid #8d9377;
	color: #8d9377;
}

.link-underline {
	border-bottom: 3px solid #fff;
	transition: var(--trans-all);
}

.link-underline:hover {
	border-color: transparent;
}

.link-hov {
	text-decoration: none;
}

.link-hov:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-title);
	font-size: var(--font-size-42);
	color: var(--main-color);
	line-height: 1.0;
	font-weight: 700;
}

h2,
h3 {
	margin-bottom: 50px;
}

/* HEADER */
@media (min-width: 992px) {
	.sticky-header {
		transition: var(--trans-all);
	}

	.home .sticky-header {
		background: transparent;
	}

	.sticky-wrapper.is-sticky .sticky-header {
		background: rgba(95, 108, 90, 1);
		transform: translateY(-100px);
		box-shadow: 0 0 30px 0 rgba(57, 60, 57, 1);
	}
}

.home .header-menubar {
	position: absolute;
	width: 100%;
	z-index: 99;
}

.header-menubar {
	width: 100%;
	z-index: 99;
}

.sticky-header {
	transition: var(--trans-all);
	background: rgba(95, 108, 90, 1);
}

.sticky-header {
	transition: var(--trans-all);
}

.sticky-header * {
	color: #fff;
}

.sticky-header p {
	margin-top: 0;
	margin-bottom: 0;
}

.header-top-inner {
	padding: 20px 0;
	display: flex;
	flex-flow: wrap;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
}

.address {
	max-width: 420px;
}

.header-inner-block-right {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
}

.iq-social {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	gap: 20px;
}

.iq-social__link {
	transition: var(--trans-all);
	font-weight: 500;
}

.iq-social__link:hover svg path {
	fill: #2b2823
}

.contacts-block {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
}

.contacts-link:hover {
	color: #8d9377;
}

.callback-order {
	border-bottom: 3px solid #fff;
	transition: var(--trans-all);
	max-width: max-content;
}

.callback-order:hover {
	border-color: transparent;
	color: #fff;
}

.iq-header {
	position: relative;
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}

.menu-list {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
}

.menu-list li:hover>a {
	opacity: 0.5;
}

.mobile-only {
	display: none;
}

.iq-search-form {
	display: flex;
	justify-content: end;
	background: #8d9377;
	height: 44px;
	padding: 0 30px
}

@media (max-width: 991px) {
	.mobile-only {
		display: flex;
	}

	.header-top-inner {
		display: none;
	}

	.sticky-header,
	.menu-list {
		background: #5F6C5A;
	}

	.cssmenu.small-screen ul {
		position: static;
	}
}

/* FOOTER */
.footer-main {
	background: #2b2823;
	color: #fff;
}

.footer-main p {
	margin-top: 0;
	margin-bottom: 0;
}

.footer-top-inner {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
}

.footer-top-inner .iq-social__link:hover svg path {
	fill: #fff;
	opacity: 0.5;
}

.footer-mid-inner {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	gap: 120px;
	padding: 50px 0;
}

.footer-mid-col.left {
	max-width: 382px;
	display: flex;
	flex-flow: column;
	gap: 35px;
}

.footer-contacts {
	display: flex;
	flex-flow: column;
	gap: 10px;
}

.footer-contacts-title {
	font-weight: 700;
}

.footer-mid-col.right {
	display: flex;
	flex-flow: column;
	gap: 30px;
	flex: 1;
}

.footer-menu {
	display: flex;
	flex-flow: column;
	gap: 10px;
}

.footer-menu-list {
	display: flex;
	flex-flow: wrap;
	gap: 10px 30px;
}

.footer-menu-title {
	font-size: var(--font-size-20);
	text-transform: uppercase;
	font-weight: 700;
}

.footer-menu-link,
.footer-menu-title {
	transition: var(--trans-all);
}

.footer-menu-link:hover,
.footer-menu-title:hover {
	opacity: 0.5;
	color: inherit;
}

.footer-bottom-inner {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
}

.date {
	opacity: 0.5;
}

@media (max-width: 991px) {
	.footer-mid-inner {
		gap: 50px;
	}
}

/* HERO BLOCK */
.hero-section {
	background: url('/templates/template13/images/hero-image.jpg') no-repeat;
	background-size: cover;
	padding-top: 420px;
	padding-bottom: 540px;
	color: #fff;
}

.hero-inner {
	display: flex;
	flex-flow: column;
	max-width: 870px;
}

.hero-title {
	font-weight: 700;
	color: #fff;
	font-size: var(--font-size-42);
}

.hero-subtitle {
	padding-top: 30px;
}

.hero-btn {
	margin-top: 50px;
	display: flex;
	flex-flow: wrap;
	gap: 30px;
}

.hero-callback {
	padding-top: 20px;
}

@media (max-width: 1200px) {
	.hero-section {
		padding-bottom: 100px;
	}
}

/* ADVANTAGES */
.advantages-section p {
	margin: 0;
}

.advantages-section {
	padding-top: 120px;
	padding-bottom: 150px;
	background: #8d9377;
	color: #fff;
}

.advantages-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
	gap: 100px;

}

.advantages-item {
	display: flex;
	flex-flow: column;
	gap: 10px;
}

.advantages-item-title {
	font-weight: 700;
	font-size: 24px;
}

@media (max-width: 1200px) {
	.advantages-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.advantages-inner {
		gap: 50px;
	}
}

/* MICRO-CEMENT */
.micro-cement-section {
	padding-top: 120px;
	padding-bottom: 120px;
	background: url('/templates/template13/images/catalog.jpg') no-repeat;
	background-size: cover;
	color: #fff;
}

.micro-cement-inner {
	display: flex;
	flex-flow: column;
	gap: 30px;
	max-width: 990px;
}

.micro-cement-title {
	color: #fff;
	font-weight: 400;
	margin-bottom: 0;
}

@media (max-width: 1200px) {
	.micro-cement-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}

/* CATALOG BLOCK */
.catalog-section {
	color: #fff;
}

.catalog-section p {
	margin: 0;
}

.catalog-inner {
	display: grid;
	grid-template-columns: repeat(24, minmax(0, 1fr));
	gap: 30px;
}

.catalog-item {
	padding: 30px 94px 30px 30px;
	background-color: rgba(0, 0, 0, 0.4);
	background-blend-mode: multiply;
	background-repeat: no-repeat;
	display: flex;
	flex-flow: column;
	grid-column: span 8;
	min-height: 480px;
}

:where(.catalog-item):nth-child(1) {
	grid-column: span 18;
	min-height: 390px;
}

:where(.catalog-item):nth-child(2) {
	grid-column: span 6;
	min-height: 390px;
}


.catalog-item-title {
	font-weight: 700;
	font-size: var(--font-size-24);
}

.catalog-products {
	background-image: url('/templates/template13/images/catalog.jpg');
	background-size: cover;
}

.catalog-brands {
	background-image: url('/templates/template13/images/brands.jpg');
	background-size: cover;
}

.catalog-rooms {
	background-image: url('/templates/template13/images/rooms.jpg');
	background-size: cover;
}

.catalog-effects {
	background-image: url('/templates/template13/images/effects.jpg');
	background-size: cover;
}

.catalog-microcement {
	background-image: url('/templates/template13/images/microcement.jpg');
	background-size: cover;
}

.catalog-item-links-wrapper {
	list-style: none;
	margin-top: auto;
}

.catalog-item-links-wrapper li {
	list-style: none;
	display: inline;
	line-height: 1.6;
}

.catalog-item-links-wrapper li a {
	display: inline;
}

.catalog-item-links-wrapper li:not(:last-child)::after {
	content: " / ";
}

.catalog-item-link:hover {
	color: #fff;
	opacity: 50%;
}

@media (max-width: 1200px) {
	.catalog-inner {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.catalog-item {
		grid-column: span 1;
		padding: 15px;
	}
}

/* SILK */
.silk-section {
	padding-top: 120px;
	padding-bottom: 120px;
	background-image: url('/templates/template13/images/effects.jpg');
	background-repeat: no-repeat;
	background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
	background-size: cover;
	color: #fff;
}

.silk-inner {
	display: flex;
	flex-flow: column;
	text-align: right;
	margin-left: auto;
	align-items: flex-end;
	gap: 30px;
	max-width: 970px;
}

.silk-title {
	color: #fff;
	font-size: var(--font-size-48);
	line-height: 1.4;
	font-weight: 400;
	margin-bottom: 0;
}

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

@media (max-width: 1200px) {
	.silk-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.silk-inner {
		text-align: left;
		align-items: flex-start;
	}
}

/* SERVICES */

.services-inner {
	display: flex;
	flex-flow: wrap;
}

:where(.services-inner).reverse {
	flex-flow: row-reverse;
}

.services-image {
	max-height: 330px;
	flex-basis: 50%;
	overflow: hidden;
}

.services-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.services-item {
	display: flex;
	flex-flow: column;
	gap: 30px;
	padding: 30px 30px 30px 30px;
	flex-basis: 50%;
}

.services-item-title {
	font-weight: 400;
	font-size: var(--font-size-24);
}

.services-item-text {
	opacity: 0.7;
}

@media (max-width: 1200px) {
	.services-inner {
		flex-flow: column;
	}

	.services-image,
	.services-item {
		flex-basis: 100%;
	}

	.services-item {
		padding: 10px 0;
	}
}

/* BRANDS */

.brands-section {
	background: #5f6c5a;
	padding-top: 120px;
	padding-bottom: 120px;
	color: #fff;
}

.brands-inner {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
}

.brands-title {
	color: #fff;
	margin-bottom: 0;
	flex: 1;
	max-width: 410px;
}

.brands-item {
	display: flex;
	flex-flow: column;
	align-items: flex-end;
	gap: 50px;
	flex: 1;
}

.brands-item-logos {
	display: flex;
	flex-flow: wrap;
	gap: 50px;
	align-items: center;
}

.item-logo {
	transition: var(--trans-all);
}

.item-logo:hover {
	opacity: 0.5;
}

@media (max-width: 1200px) {
	.brands-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.brands-item {
		flex: auto;
		align-items: flex-start;
	}
}

/* OUR WORKS */
.swiper-initialized {
	overflow: hidden;
}

.our-works-section {
	padding-top: 120px;
	padding-bottom: 120px;
	background: #8d9377;
	color: #fff;
}

.our-works-title-wrapper {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
	justify-content: space-between;
	margin-bottom: 50px;
}

.our-works-title {
	color: #fff;
	margin-bottom: 0;
	flex: 1;
}

.our-works-inner {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
}

.our-works-tabs-nav {
	display: flex;
	flex-flow: column;
	flex: 1;
	max-width: 270px;
}

.tabs-content-wrapper {
	min-width: 0;
	flex: 1;
}

.our-works-slider .swiper-slide img,
.our-works-slider-thumbs .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.our-works-btn {
	transition: var(--trans-all);
	background: unset;
	outline: unset;
	padding: 20px 30px;
	border: unset;
	text-align: left;
}

.our-works-btn:not(:last-child) {
	border-bottom: 1px solid #fff;
}

.our-works-btn.active,
.our-works-btn:hover {
	background: #5f6c5a;
}

.our-works-tab-content {
	display: none;
}

.our-works-tab-content.active {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
}

.our-works-slider {
	flex: 1;
}

.our-works-slider-thumbs {
	flex: 1;
	max-width: 200px;
	max-height: 600px;
	min-height: 0
}

@media (max-width: 1200px) {
	.our-works-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.our-works-title {
		flex: auto;
	}

	.our-works-tabs-nav {
		max-width: 100%;
		width: 100%;
		flex-flow: wrap;
	}

	.tabs-content-wrapper {
		flex: auto;
		width: 100%;
	}

	.our-works-slider {
		flex: auto;
	}

	.our-works-slider-thumbs {
		flex: auto;
		max-width: 100%;
	}
}

/* FAQ BLOCK  */
.faq-title-wrapper {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}

.faq-title {
	margin-bottom: 0;
}

.faq-callback {
	border-bottom: 3px solid #2b2823;
}

.faq-callback:hover {
	color: #5f6c5a;
}

.faq-image {
	max-height: 720px;
	overflow: hidden;
}

.faq-image img {
	width: 100%;
	height: 100%;
	object-position: 0px -100px;
	object-fit: cover;
}

.faq-inner {
	display: flex;
	flex-flow: wrap;
	gap: 50px;
}

.faq-left-block {
	flex: 1;
	max-width: 720px;
}

.faq-right-block {
	display: flex;
	flex-flow: column;
	flex: 1;
}

.accordion {
	display: flex;
	flex-flow: column;
}

.accordion-item {
	padding: 30px 30px;
}

.accordion-item.active {
	box-shadow: 0 0 60px 0 rgba(51, 51, 51, 0.25);
	background: #fff;
	transition: var(--trans-all);
}

.accordion-header {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	background: transparent;
	font-weight: 400;
	font-size: var(--font-size-24);
}

.accordion-header p {
	flex: 1;
}

.accordion-icon {
	width: 30px;
	height: 30px;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='7' viewBox='0 0 16 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.6973 0.697266L7.69727 5.69727L0.697265 0.697265' stroke='%236A4C34' stroke-linecap='square' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all linear .2s;
}

.accordion-item.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	transition: all linear .3s;
	display: grid;
	grid-template-rows: 0fr;
}

.accordion-item.active .accordion-content {
	grid-template-rows: 1fr;
	padding-top: 20px;
}

.accordion-inner {
	overflow: hidden;
}

@media (max-width: 1200px) {
	.faq-inner {
		gap: 10px;
	}

	.faq-left-block {
		flex: auto;
		max-width: max-content;
	}

	.faq-image img {
		object-position: inherit;
	}

	.faq-right-block {
		flex-grow: 1;
	}

	.accordion-item {
		padding: 15px;
	}
}

/* STYLES BLOCK */
.styles-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
	gap: 50px;
}

.styles-item {
	display: flex;
	flex-flow: column;
	position: relative;
	transition: var(--trans-all);
}

.styles-image img {
	filter: grayscale(1);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.styles-item-description {
	background: #686256;
	padding: 30px;
	color: #fff;
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	transition: var(--trans-all);
	margin-top: -100px;
	height: 100%;
}

.styles-item-title {
	min-height: 72px;
	padding-bottom: 30px;
}

.styles-item-title {
	transition: .3s;
}

.styles-item-title:hover {
	color: #fff;
	opacity: 0.5;
}

.styles-item-text {
	font-size: 14px;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
	opacity: 0.5;
}

.styles-item:hover .styles-item-description {
	background: #5f6c5a;
}

@media (max-width: 1200px) {
	.styles-item-description {
		padding: 15px;
	}
}