/*
Theme Name: Betty
Theme URI: betty.md
Author: 2bros Agency
Author URI: 2bros.md
Description:
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: betty
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================== */
/* ================ general styles ============== */
/* ============================================== */
@import url('https://fonts.googleapis.com/css2?family=Baskervville:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

:root {
	/* Fonts */
	--primary-font: 'Geist', sans-serif;
	--secondary-font: 'Baskervville', serif;

	/* Colors */
	--black-color: #000;
	--white-color: #fff;
	--grey-color: #595959;
	--main-color: #b88b5c;
	--hover-color: rgba(184, 139, 92, 0.1);
	--border-color: rgba(184, 139, 92, 0.35);
	--bg-color: #fdfbf7;

	/* Transition */
	--basic-transition: all 0.3s ease;

	/* Transition */
	--transform-Y50: translateY(-50%);
	--transform-X50: translateX(-50%);
	--transform-50-50: translate(-50%, -50%);

	/* Border */
	--border-basic: 1px solid;

	/* Border Radius */
	--border-r-5: 5px;
	--border-r-10: 10px;
	--border-r-12: 12px;
	--border-r-15: 15px;
	--border-r-20: 20px;
	--border-r-25: 25px;
	--border-r-30: 30px;
	--border-r-40: 40px;
	--border-r-50: 50px;
	--border-r-100: 100px;

	/* Dimension */
	--width-100: 100%;
	--height-100: 100%;

	/* Gap */
	--gap-10-clamp: 5px 10px;
	--gap-15-clamp: 5px 15px;
	--gap-20-clamp: 15px 20px;
	--gap-25-clamp: 15px 25px;
	--gap-30-clamp: 15px 30px;
	--gap-50-clamp: 15px 50px;
	--gap-50-0-clamp: 0px 50px;
	--gap-60-clamp: 15px 60px;
	--gap-70-0-clamp: 0px 70px;
	--gap-70-clamp: 15px 70px;
	--gap-90-clamp: 15px 90px;
	--gap-100-clamp: 15px 100px;
	--gap-120-clamp: 15px 120px;
	--gap-150-clamp: 15px 150px;
	--gap-180-clamp: 15px 180px;
	--gap-200-clamp: 15px 200px;

	/* Font Size */
	--font-h1-clamp: 32px 60px;
	--font-h2-clamp: 26px 50px;
	--font-h3-clamp: 22px 28px;
	--font-h4-clamp: 18px 24px;
	--font-h5-clamp: 16px 18px;
	--font-p-clamp: 14px 17px;
	--font-14px-clamp: 12px 14px;

	/* Space / Margin / Padding */
	--s-10-clamp: 10px 10px;
	--s-15-clamp: 15px 15px;
	--s-20-clamp: 15px 20px;
	--s-25-clamp: 15px 25px;
	--s-30-clamp: 15px 30px;
	--s-35-clamp: 15px 35px;
	--s-40-clamp: 15px 40px;
	--s-50-clamp: 15px 50px;
	--s-70-clamp: 35px 70px;
	--s-80-clamp: 60px 80px;
	--s-100-clamp: 35px 100px;
	--s-135-clamp: 0px 135px;
	--s-140-clamp: 35px 140px;
	--s-200-clamp: 35px 200px;
	--s-header-clamp: 96px 121px;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body {
	font-family: var(--primary-font);
	color: var(--black-color);
	font-size: var(--font-p-clamp);
	font-weight: 400;
	margin: 0;
	padding: 0;
	background-color: var(--bg-color);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
main {
	display: block;
	overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
	font-weight: normal;
	line-height: normal;
}
figure,
img {
	padding: 0;
	margin: 0;
}
img {
	vertical-align: middle;
	border-style: none;
}
a:hover {
	text-decoration: none;
}
a {
	text-decoration: none;
	color: var(--black-color);
	transition: all 0.2s ease-in;
}
p {
	padding: 0;
	margin: 0;
	line-height: 1.7;
}
button,
input,
select,
textarea {
	font-family: var(--primary-font);
}
.btn:focus,
.btn:active,
a:focus,
a:active,
input:focus,
input:active,
textarea:focus,
textarea:active,
select:focus,
select:active,
button:focus,
button:active,
span:focus,
span:active {
	outline: 0;
	box-shadow: none;
}
*,
::after,
::before {
	box-sizing: border-box;
}

/* Helper Styles */
.site-container {
	max-width: 1440px;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.site-row {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.site-align-center {
	align-items: center;
	justify-content: center;
}
.site-col-12 {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}
.site-col-11 {
	-ms-flex: 0 0 91.666667%;
	flex: 0 0 91.666667%;
	max-width: 91.666667%;
}
.site-col-10 {
	-ms-flex: 0 0 83.333333%;
	flex: 0 0 83.333333%;
	max-width: 83.333333%;
}
.site-col-9 {
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}
.site-col-8 {
	-ms-flex: 0 0 66.666667%;
	flex: 0 0 66.666667%;
	max-width: 66.666667%;
}
.site-col-7 {
	-ms-flex: 0 0 58.333333%;
	flex: 0 0 58.333333%;
	max-width: 58.333333%;
}
.site-col-6 {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.site-col-5 {
	-ms-flex: 0 0 41.666667%;
	flex: 0 0 41.666667%;
	max-width: 41.666667%;
}
.site-col-4 {
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}
.site-col-3 {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}
.site-col-2 {
	-ms-flex: 0 0 16.666667%;
	flex: 0 0 16.666667%;
	max-width: 16.666667%;
}
.site-col-1 {
	-ms-flex: 0 0 8.333333%;
	flex: 0 0 8.333333%;
	max-width: 8.333333%;
}
.site-col-1,
.site-col-2,
.site-col-3,
.site-col-4,
.site-col-5,
.site-col-6,
.site-col-7,
.site-col-8,
.site-col-9,
.site-col-10,
.site-col-11,
.site-col-12 {
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}
.site-col-offset-4 {
	margin-left: 33.333333%;
}
.site-col-offset-3 {
	margin-left: 25%;
}
.site-col-offset-2 {
	margin-left: 16.666667%;
}
.site-col-offset-1 {
	margin-left: 8.333333%;
}
.img-fluid {
	width: var(--width-100);
	height: var(--height-100);
	object-fit: cover;
	object-position: center center;
}

/* Site Headings */
.text-center {
	justify-content: center;
	text-align: center;
}
.text-right {
	text-align: right;
	justify-content: flex-end;
}
.text-left {
	text-align: left;
	justify-content: flex-start;
}
.site-heading-white.site-heading p {
	color: #7e7e7e;
}
.site-heading-white {
	color: var(--white-color);
}
.site-heading p {
	color: var(--grey-color);
	margin-top: 15px;
}
.site-heading h2 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
	line-height: 1.2;
}
.site-heading h2 em {
	font-style: normal;
	color: var(--main-color);
}
.site-heading h3 {
	font-size: 24px;
	font-weight: 500;
}
.site-heading h4 {
	font-size: 26px;
	font-weight: 300;
	text-transform: uppercase;
}
.site-heading h5 {
	font-size: 14px;
	font-weight: 500;
	color: #6490f7;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.site-heading div {
	display: inline-flex;
	background-color: var(--red-color);
	border-radius: 5px;
}

/* Site Buttons */
.custom-button {
	display: flex;
}
.site-button {
	display: flex;
}
.btn {
	cursor: pointer;
	gap: 10px;
	height: 50px;
	display: flex;
	align-items: center;
	text-decoration: none;
	justify-content: center;
	padding: 0 var(--s-20-clamp);
	background-color: transparent;
	border-radius: var(--border-r-50);
	transition: var(--basic-transition);
	border: var(--border-basic) var(--white-color);
}
.btn span {
	font-size: 15px;
	font-weight: 500;
	color: var(--white-color);
	transition: var(--basic-transition);
}
.btn svg {
	width: auto;
	height: 12px;
}
.btn:hover {
	background-color: var(--main-color);
	border-color: var(--main-color);
}

.btn.second-btn {
	border-color: var(--white-color);
	background: var(--white-color);
}
.btn.second-btn span {
	color: var(--main-color);
}
.btn.second-btn:hover {
	background: var(--main-color);
	border-color: var(--main-color);
}
.btn.second-btn:hover span {
	color: var(--white-color);
}

/* Sections Spacing */
.site-row-p20x {
	padding-top: 20px;
	padding-bottom: 20px;
}
.site-row-pt20x {
	padding-top: 20px;
}
.site-row-pb20x {
	padding-bottom: 20px;
}
.site-row-p25x {
	padding-top: 25px;
	padding-bottom: 25px;
}
.site-row-pt25x {
	padding-top: 25px;
}
.site-row-pb25x {
	padding-bottom: 25px;
}
.site-row-p30x {
	padding-top: 30px;
	padding-bottom: 30px;
}
.site-row-pt30x {
	padding-top: 30px;
}
.site-row-pb30x {
	padding-bottom: 30px;
}
.site-row-p35x {
	padding-top: 35px;
	padding-bottom: 35px;
}
.site-row-pt35x {
	padding-top: 35px;
}
.site-row-pb35x {
	padding-bottom: 35px;
}
.site-row-p50x {
	padding-top: 50px;
	padding-bottom: 50px;
}
.site-row-pt50x {
	padding-top: 50px;
}
.site-row-pb50x {
	padding-bottom: 50px;
}
.site-row-p40x {
	padding-top: 40px;
	padding-bottom: 40px;
}
.site-row-pt40x {
	padding-top: 40px;
}
.site-row-pb40x {
	padding-bottom: 40px;
}
.site-row-p70x {
	padding-top: 70px;
	padding-bottom: 70px;
}
.site-row-pt70x {
	padding-top: 70px;
}
.site-row-pb70x {
	padding-bottom: 70px;
}
.site-row-p100x {
	padding-top: 100px;
	padding-bottom: 100px;
}
.site-row-pt100x {
	padding-top: 100px;
}
.site-row-pb100x {
	padding-bottom: 100px;
}
.site-row-p140x {
	padding-top: 140px;
	padding-bottom: 140px;
}
.site-row-pt140x {
	padding-top: 140px;
}
.site-row-pb140x {
	padding-bottom: 140px;
}
.site-row-p180x {
	padding-top: 180px;
	padding-bottom: 180px;
}
.site-row-pt180x {
	padding-top: 180px;
}
.site-row-pb180x {
	padding-bottom: 180px;
}
.site-row-p200x {
	padding-top: 200px;
	padding-bottom: 200px;
}
.site-row-pt200x {
	padding-top: 200px;
}
.site-row-pb200x {
	padding-bottom: 200px;
}

/* Separator */
.block-separator {
	width: 100%;
	height: 1px;
	display: inline-block;
	background-color: #dedede;
}

/* VC Styles */
.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid > li {
	margin-bottom: 0 !important;
}
.vc_col-has-fill > .vc_column-inner,
.vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner,
.vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner,
.vc_row-has-fill > .vc_column_container > .vc_column-inner {
	padding-top: 0 !important;
}
.vc_section.vc_section-has-fill,
.vc_section.vc_section-has-fill + .vc_row-full-width + .vc_section,
.vc_section.vc_section-has-fill + .vc_section {
	padding-top: 0 !important;
}
.wpb_text_column h1,
.wpb_text_column h2,
.wpb_text_column h3,
.wpb_text_column h4,
.wpb_text_column h5,
.wpb_text_column h6 {
	margin-bottom: 15px;
}
.wpb_text_column h4 {
	font-size: 32px;
}
.wpb_text_column p {
	margin-bottom: 15px;
}
.wpb_text_column p strong {
	color: var(--main-color);
	font-weight: 600 !important;
}
.wpb_text_column iframe {
	width: 100% !important;
	height: 500px !important;
}
.wpb_text_column ul,
.wpb_text_column ol {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
}
.wpb_text_column ul li,
.wpb_text_column ol li {
	padding: 0 0 20px 25px;
	margin-bottom: 20px;
	border-bottom: var(--border-basic) #d9d9d9;
	line-height: normal;
	list-style: none;
	background-size: 15px 15px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: url('data:image/svg+xml,<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill-rule="evenodd" clip-rule="evenodd" d="M20.176 5.263a1 1 0 0 1 .061 1.413l-11 12a1 1 0 0 1-1.444.031l-4.5-4.5a1 1 0 1 1 1.414-1.414l3.762 3.761 10.294-11.23a1 1 0 0 1 1.413-.061Z" fill="%232260F3"/></svg>');
}
.wpb_text_column p a,
.wpb_text_column li a {
	color: #313132;
	text-decoration: underline;
}
.wpb_text_column .wp-video {
	width: 100% !important;
}

/* 404 Page Styles */
.error404 .main-header {
	position: static;
}
.no-result-page {
	text-align: center;
	padding-top: 70px;
	padding-bottom: 70px;
}
.no-result-page h1 {
	font-family: var(--secondary-font);
	font-size: var(--font-h1-clamp);
	font-weight: 500;
	margin: 0 0 15px 0;
}
.no-result-page p {
	margin-bottom: 25px;
}
.no-result-page .site-button {
	margin-top: 35px;
	justify-content: center;
}
.no-result-page .site-button .btn {
	color: var(--white-color);
	background-color: var(--main-color);
}
.no-result-page img {
	height: 60px;
	margin-bottom: 25px;
}

/* CF7 Styles */
.wpcf7-spinner {
	display: none;
}
.wpcf7-response-output {
	display: none;
}
.wpcf7 .sent .wpcf7-response-output {
	font-size: 14px;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	padding: 10px 0 0 0;
}
.wpcf7-not-valid-tip {
	font-size: 14px;
	position: absolute;
	left: auto;
	right: 0;
}
.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output .wpcf7 form .wpcf7-response-output {
	padding: 0;
	margin: 0;
	border: none;
}

/* ============================================== */
/* ================ header styles =============== */
/* ============================================== */
.main-header {
	position: fixed;
	width: auto;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9;
	padding: 10px 0;
	transition: var(--basic-transition);
}
.main-header-fixed,
.inner-page {
	background-color: #b48655;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.inner-page .nav-menu ul li a,
.main-header-fixed .nav-menu ul li a {
	color: var(--white-color);
}

.main-header-fixed .nav-lang,
.inner-page .nav-lang{
	background-color: #FBF7EF;
}

.main-header-fixed .nav-lang ul.language-chooser li a,
.inner-page ul.language-chooser li a{
	color: var(--main-color);
}
.main-header-fixed ul.language-chooser li.active,
.inner-page ul.language-chooser li.active{
	background-color: var(--main-color);
}

.main-header-fixed ul.language-chooser li.active a,
.inner-page ul.language-chooser li.active a{
	color: var(--white-color) !important;
}

.main-nav {
	display: flex;
	align-items: center;
}
.nav-logo {
	width: 20%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav-logo a {
	display: flex;
}
.nav-logo img {
	width: auto;
	height: 80px;
}
.nav-menu {
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.nav-menu ul {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: var(--gap-30-clamp);
	list-style: none;
}
.nav-menu ul li {
	position: relative;
	cursor: pointer;
	text-decoration: none;
	transition: var(--basic-transition);
}
.nav-menu ul li:last-of-type {
	margin-right: 0;
}
.nav-menu ul li a {
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
	color: var(--white-color);
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
}
.nav-menu ul li:hover a {
	opacity: .7;
}
.nav-menu ul li.menu-item-has-children > a {
	padding-right: 15px;
}
.nav-menu ul li.menu-item-has-children > a::after {
	position: absolute;
	top: 50%;
	right: 0;
	content: '';
	width: 9px;
	height: 15px;
	transform: var(--transform-Y50);
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('data:image/svg+xml,<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 5"><path d="M4.5 5a.401.401 0 0 1-.29-.122L.12.71a.422.422 0 0 1 0-.589.404.404 0 0 1 .578 0L4.5 3.994 8.302.122a.404.404 0 0 1 .578 0c.16.163.16.427 0 .59L4.79 4.877A.407.407 0 0 1 4.5 5Z" fill="%23000"/></svg>');
}
.nav-menu ul li.menu-item-has-children .sub-menu {
	display: block;
	padding: 15px;
	margin: 0;
	position: absolute;
	top: 40px;
	left: 0;
	width: 220px;
	z-index: 9;
	background-color: var(--bg-color);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
	opacity: 0;
	-webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 6%);
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 6%);
}
.nav-menu ul li.menu-item-has-children .sub-menu li.menu-item-has-children > .sub-menu {
	display: block;
	padding: 15px;
	margin: 0;
	position: absolute;
	top: 0;
	left: 210px;
	width: 220px;
	z-index: 9;
	background-color: var(--bg-color);
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	visibility: hidden;
	opacity: 0;
	-webkit-box-shadow: 0 0 20px 0 rgb(0 0 0 / 6%);
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 6%);
}
.nav-menu ul li.menu-item-has-children .sub-menu li {
	padding: 0;
	display: block;
	margin: 0 0 10px 0;
}
.nav-menu ul li.menu-item-has-children .sub-menu li:last-of-type {
	margin-bottom: 0;
}
.nav-menu ul li.menu-item-has-children .sub-menu li a {
	width: var(--width-100);
	display: block;
	margin: 0;
	padding: 0;
	color: var(--black-color);
	background-color: transparent;
}
.nav-menu ul li.menu-item-has-children .sub-menu li a:hover {
	color: var(--main-color);
}
.nav-menu ul li.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
}
.nav-menu ul li.menu-item-has-children .sub-menu li.menu-item-has-children:hover > .sub-menu {
	visibility: visible;
	opacity: 1;
}
.nav-tools {
	width: 40%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.nav-lang {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	background-color: var(--main-color);
	border-radius: var(--border-r-50);
	border: none;
}
ul.language-chooser {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 5px;
}
ul.language-chooser li {
	background-color: transparent;
	border-radius: var(--border-r-50);
	padding: 3px;
}
ul.language-chooser li.active {
	background-color: var(--white-color);
	color: var(--main-color);
}
ul.language-chooser li a {
	display: flex;
	width: 18px;
	height: 18px;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--white-color);
}
ul.language-chooser li.active a {
	color: var(--main-color);
}
/* Mobile Navigation */
.nav-tools-mobile {
	display: none;
}
.menu-open-mobile {
	cursor: pointer;
	color: var(--white-color);
	display: flex;
	flex-direction: column;
}
.inner-page .menu-open-mobile span,
.main-header-fixed .menu-open-mobile span {
	background-color: var(--main-color);
}
.menu-open-mobile span {
	width: 25px;
	height: 1px;
	background-color: var(--white-color);
}
.menu-open-mobile span:nth-child(2) {
	margin-top: 5px;
}
.menu-open-mobile span:nth-child(3) {
	margin-top: 5px;
}
.site-overlay {
	cursor: pointer;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s linear;
	background: rgba(0, 0, 0, 0.6);
}
.mobile-menu {
	position: fixed;
	right: auto;
	left: 0;
	top: 0;
	margin: 0;
	bottom: 0;
	width: 330px;
	z-index: 11;
	overflow: auto;
	transform: none;
	background-color: #ffffff;
	transform: translate3d(-100%, 0, 0);
	transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-menu-header {
	padding: 25px 0 0 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.mobile-menu-inner {
	padding: 0 15px;
}
.mobile-menu-logo img {
	width: auto;
	height: 80px;
}
.mobile-menu-logo {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mobile-menu-active .mobile-menu {
	transform: none;
	right: 0;
}
body.mobile-menu-open {
	overflow: hidden;
}
.mobile-menu-open .site-overlay {
	opacity: 1;
	visibility: visible;
}
.menu-close {
	display: block;
	width: 18px;
	height: 18px;
	text-align: center;
	margin-left: auto;
}
.menu-close::before,
.menu-close::after {
	position: absolute;
	content: ' ';
	height: 18px;
	width: 1px;
	background-color: var(--main-color);
}
.menu-close::before {
	transform: rotate(45deg);
}
.menu-close::after {
	transform: rotate(-45deg);
}
.mobile-menu-close {
	position: absolute;
	top: 15px;
	right: 0;
}
.mobile-menu-close-inner {
	cursor: pointer;
	display: flex;
	color: #313132;
	align-items: center;
}
.mobile-menu-content {
	padding: 20px 0;
	margin: 20px 0;
	border-top: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
}
.mobile-menu-content ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.mobile-menu-content ul li {
	position: relative;
	margin-bottom: 15px;
	text-align: center;
}
.mobile-menu-content ul li:last-of-type {
	margin-bottom: 0;
}
.mobile-menu-content ul li a {
	position: relative;
	color: var(--black-color);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}
.mobile-menu-content .sub-menu {
	display: none;
	margin-top: 10px;
	padding-left: 0;
}
.mobile-menu-content .sub-menu li a {
	opacity: 0.5;
}
.mobile-menu-content .sub-menu .sub-menu {
	display: block;
}
.mobile-menu-content li.sub-menu-parent::after {
	content: none !important;
}
.mobile-menu-content li.sub-menu-parent .sub-menu {
	padding-left: 0;
}
.mobile-menu-content li.sub-menu-separator {
	margin: 0 0 10px 0;
	padding: 0 0 10px 0;
}
.mobile-menu-content li.sub-menu-parent > a {
	opacity: 1 !important;
}
.mobile-menu-content ul .is-active.menu-item-has-children > a::after {
	transform: rotate(-180deg);
}
.mobile-menu-content ul li.menu-item-has-children > a::after {
	position: absolute;
	top: 2px;
	right: -17px;
	left: auto;
	content: '';
	width: 14px;
	height: 14px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
	background-color: transparent;
	transition: transform 0.3s ease;
	background-position: center center;
	background-image: url('data:image/svg+xml,<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="m7 11.667 3.5-3.5m-3.5 3.5-3.5-3.5m3.5 3.5V5.542m0-3.209v1.459" stroke="%23000" stroke-width=".875" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.mobile-menu-footer {
	text-align: center;
}
.mobile-menu-footer .nav-cta {
	display: block !important;
}
.mobile-menu-footer .nav-cta .site-button a {
	height: 45px;
	padding: 0 20px;
}
.mobile-menu-footer .nav-cta .site-button {
	justify-content: center;
}

/* Magnific Settings */
body.mfp-zoom-out-cur {
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
	height: 100% !important;
	touch-action: none !important;
	-webkit-overflow-scrolling: touch !important;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	font-size: 32px;
	font-weight: 300;
	opacity: 1 !important;
	font-family: inter, sans-serif;
}
.mfp-arrow {
	opacity: 1 !important;
}
.mfp-arrow-right:before {
	margin-right: 50px !important;
}
.mfp-arrow:before,
.mfp-arrow:after {
	opacity: 1 !important;
	border: none !important;
}
.mfp-bottom-bar {
	display: block !important;
}
.mfp-arrow-left:before {
	width: 25px !important;
	height: 25px !important;
	background: url('assets/images/magnific-arrow-prev.svg') no-repeat;
}
.mfp-arrow-right:before {
	width: 25px !important;
	height: 25px !important;
	background: url('assets/images/magnific-arrow-next.svg') no-repeat;
}
.mfp-arrow-left:before,
.mfp-arrow-left:after {
	border: none !important;
}

/* Site Header with Background */
.site-header {
	padding: 70px 0;
	margin-top: 100px;
	position: relative;
	border-bottom: var(--border-basic) var(--border-color);
}
/*
.site-header::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.3);
}
*/
.site-header__content {
	position: relative;
	z-index: 2;
}
.site-header__content {
	height: var(--height-100);
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}
.site-header__caption {
	gap: 15px;
	width: 80%;
	display: flex;
	margin: 0 auto;
	text-align: center;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	color: var(--white-color);
}
.site-header__caption h1 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
}
.site-header__caption h1 em {
	font-weight: 400;
}
.site-header__description p {
	color: var(--black-color);
	font-size: var(--font-h5-clamp);
}
.site-header__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--s-15-clamp);
	border-radius: var(--border-r-15);
	background-color: var(--white-color);
}
.site-header__logo figure {
	height: 50px;
}
.site-header__logo figure img {
	object-fit: contain;
}
.site-header__scroll {
	position: absolute;
	bottom: 30px;
	left: 50%;
	z-index: 3;
	display: flex;
	justify-content: center;
	width: var(--width-100);
	transform: var(--transform-X50);
}
.site-header__scroll a {
	color: var(--main-color);
	gap: 10px;
	display: inline-flex;
	cursor: pointer;
	align-items: center;
	justify-content: center;
}
.site-header__scroll a span {
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: normal;
	color: var(--main-color);
}
.site-header__scroll a svg path {
	stroke: var(--main-color);
}
.site-header__scroll a svg {
	width: 24px;
	height: 24px;
	animation: scroll 1.5s ease infinite;
}
@keyframes scroll {
	0% {
		transform: translateY(-15px);
		opacity: 0;
	}
	50% {
		transform: translateY(0px);
		opacity: 1;
	}
	100% {
		transform: translateY(15px);
		opacity: 0;
	}
}

.site-header .page-breadcrumbs a,
.site-header .page-breadcrumbs span {
	color: var(--main-color);
}
.site-header .page-breadcrumbs span.breadcrumbs-current {
	color: #2c2116;
}

/* Single Page Header Default */
.page-header-default {
	padding: 20px 0 5px 0;
	margin-top: 115px;
}
.page-header-content-holder {
	display: grid;
	align-items: center;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.page-header-content h1 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h1-clamp);
	text-align: center;
}
.page-header-desc {
	gap: 15px;
	display: flex;
	flex-direction: column;
}
.page-header-desc p {
	font-size: 16px;
	font-weight: 400;
	opacity: 0.3;
	color: var(--hover-color);
}

/* Breadcrumbs */
.page-breadcrumbs {
	text-align: center;
}
.page-breadcrumbs span.breadcrumbs-separator {
	padding: 0 2px;
}
.page-breadcrumbs a,
.page-breadcrumbs span {
	margin: 0;
	padding: 0;
	font-size: 14px;
	text-decoration: none;
	color: var(--white-color);
}
.page-breadcrumbs span.breadcrumbs-current {
	color: rgba(255, 255, 255, 0.7);
}

/* ============================================== */
/* =============== elements styles ============== */
/* ============================================== */

/* Contact Block */
.contact-block__heading h2 {
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
	text-align: center;
}
.contact-block__wrapper {
	display: grid;
	align-items: center;
	gap: var(--gap-30-clamp);
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.contact-block__col {
	display: flex;
	flex-direction: column;
	gap: var(--gap-30-clamp);
	padding: var(--s-30-clamp);
	border-radius: var(--border-r-20);
	border: var(--border-basic) rgba(184, 139, 92, 0.2);
}
.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
.contact-item svg {
	min-width: 36px;
	height: 36px;
}
.contact-item__title span {
	font-family: var(--secondary-font);
	font-size: var(--font-h4-clamp);
	margin-bottom: 5px;
	display: block;
}
.contact-block__map iframe {
	height: 500px;
	width: var(--width-100);
	border-radius: var(--border-r-20);
}

/* Offer Grid */
.offer-grid {
	margin-top: var(--s-50-clamp);
}
.offer-grid__wrapper {
	display: grid;
	gap: var(--gap-30-clamp);
	grid-template-columns: repeat(12, 1fr);
}
.offer-grid__item {
	grid-column: span 5;
	position: relative;
}
.offer-grid__item:nth-of-type(1),
.offer-grid__item:nth-of-type(4) {
	grid-column: span 7;
}
.offer-grid__image::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--border-r-20);
	background: linear-gradient(180deg, rgba(102, 102, 102, 0) 35.67%, rgba(44, 33, 22, 0.97) 100%);
}
.offer-grid__image video {
	height: 450px;
	width: var(--width-100);
	object-fit: cover;
	object-position: center center;
}
.offer-grid__image figure {
	height: 450px;
}
.offer-grid__image video,
.offer-grid__image figure img {
	border-radius: var(--border-r-20);
}
.offer-grid__content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: var(--width-100);
	color: var(--white-color);
	padding: var(--s-30-clamp);
}
.offer-grid__content h3 {
	font-family: var(--secondary-font);
	font-size: var(--font-h3-clamp);
	margin-bottom: 10px;
}

/* Brand Products */
.brand-tab-content {
	display: none;
}
.brand-tab-content.active {
	display: block;
}
.brand-products__title {
	margin-bottom: var(--s-25-clamp);
}
.brand-products__title h2 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
	text-align: center;
}
.brand-products__tabs {
	text-align: center;
	margin-bottom: var(--s-35-clamp);
}
.brand-products__tabs-holder {
	gap: 15px;
	display: inline-flex;
	align-items: center;
	padding: var(--s-10-clamp);
	border-radius: var(--border-r-50);
	background-color: var(--white-color);
	filter: drop-shadow(0px 15px 25px rgba(89, 89, 89, 20%));
}
.brand-products__tabs-holder button {
	cursor: pointer;
	position: relative;
	display: flex;
	height: 40px;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	border: none;
	color: var(--grey-color);
	padding: 0 var(--s-20-clamp);
	flex-direction: column;
	justify-content: center;
	border-radius: var(--border-r-50);
	transition: var(--basic-transition);
	background-color: var(--white-color);
}
.brand-products__tabs-holder button.active {
	color: var(--white-color);
	background-color: var(--main-color);
}

/* Product grid */
.product-grid__wrapper {
	display: grid;
	gap: var(--gap-30-clamp);
	grid-template-columns: repeat(3, 1fr);
}
.product-grid__item {
	display: flex;
	flex-direction: column;
	gap: var(--gap-20-clamp);
	padding: var(--s-20-clamp);
	border-radius: var(--border-r-20);
	transition: var(--basic-transition);
	background-color: var(--white-color);
	filter: drop-shadow(0px 10px 10px rgba(89, 89, 89, 20%));
}
.product-grid__item:hover {
	transform: translateY(-15px);
	background-color: var(--hover-color);
}
.product-grid__image {
	position: relative;
}
.product-grid__image figure {
	height: 270px;
	text-align: center;
}
.product-grid__image figure img {
	max-width: 50%;
	object-fit: contain;
}
.product-grid__content {
	display: flex;
	flex-direction: column;
	height: var(--height-100);
}
.product-grid__content h3 {
	font-family: var(--secondary-font);
	font-size: 24px;
	margin-bottom: 15px;
}
.product-grid__description {
	margin-bottom: 15px;
	margin-top: auto;
}
.product-grid__description p {
	color: var(--grey-color);
}
.product-grid__info-bullets {
	gap: 10px;
	display: flex;
	margin-top: auto;
	align-items: center;
}
.product-grid__info-bullet {
	height: 40px;
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	border-radius: var(--border-r-50);
	background-color: var(--hover-color);
}
.product-grid__info-bullet svg {
	width: 15px;
	height: 15px;
}
.product-grid__info-bullet p {
	font-size: 13px;
	font-weight: 500;
	color: var(--main-color);
}

/* Custom Tab */
.custom-tabs-wrapper .custom-tabs-wrapper-heading {
	position: relative;
	margin-bottom: 25px;
}
.custom-tabs-wrapper .custom-tabs-wrapper-heading h2 {
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
	text-align: center;
}
.custom-tabs-wrapper .tab-header-content-number {
	position: absolute;
	top: 0;
	left: 0;
}
.custom-tabs-wrapper .tab-header-content-number h4 {
	font-size: 100px;
	color: var(--main-color);
	text-transform: uppercase;
	text-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
}
.custom-tabs-wrapper .tab-header-content-image {
	display: flex;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: var(--basic-transition);
}
.custom-tabs-wrapper .tab-header-content-image figure {
	width: 24px;
	height: 24px;
}
.custom-tabs-wrapper .tab-header-content-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.custom-tabs-wrapper .tab-header-content-caption h2 {
	font-size: 16px;
	text-align: center;
	color: var(--grey-color);
}
.custom-tabs-wrapper .tab-header-content-caption p {
	font-size: 20px;
	text-align: center;
	color: var(--black-color);
}
.tab-header {
	text-align: center;
	margin-bottom: 35px;
}
.tab-header .tab-header-content {
	cursor: pointer;
	position: relative;
	display: flex;
	height: 45px;
	padding: 0 var(--s-40-clamp);
	flex-direction: column;
	justify-content: center;
	border-radius: var(--border-r-50);
	transition: var(--basic-transition);
	background-color: var(--white-color);
	border: var(--border-basic) var(--border-color);
}
.tab-header .tab-header-content:hover {
	background-color: var(--hover-color);
}
.tab-header .tab-header-content.active {
	background-color: var(--main-color);
}
.tab-header .tab-header-content.active h2 {
	color: var(--white-color);
}
.tab-header .tab-header-content.active .tab-header-content-image {
	visibility: visible;
	opacity: 1;
}
.tab-header .tab-header-content-holder {
	gap: 15px;
	display: inline-flex;
	align-items: center;
	padding: 10px var(--s-20-clamp);
	border-radius: var(--border-r-50);
	background-color: var(--white-color);
	filter: drop-shadow(0px 15px 25px rgba(89, 89, 89, 20%));
}
.tab-header-content {
	position: relative;
	cursor: pointer;
	text-align: center;
	padding: var(--s-20-clamp);
}

/* Product Block */
.product-block__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.product-block__heading h2 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
}
.product-block__heading p {
	text-align: right;
	color: var(--grey-color);
}
.product-block__wrapper {
	display: grid;
	gap: var(--gap-30-clamp);
	margin-top: var(--s-50-clamp);
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}
.product-block__item {
	display: flex;
	flex-direction: column;
	gap: var(--gap-20-clamp);
	padding: var(--s-20-clamp);
	border-radius: var(--border-r-20);
	background-color: var(--white-color);
}
.product-block__image {
	position: relative;
}
.product-block__image figure {
	height: 270px;
}
.product-block__image figure img {
	object-fit: contain;
}
.product-block__logo {
	position: absolute;
	top: 10px;
	right: 10px;
}
.product-block__logo figure {
	height: 35px;
}
.product-block__logo img{
	width: auto;
}
.product-block__content {
	text-align: center;
}
.product-block__content .site-button {
	justify-content: center;
}
.product-block__content h3 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h3-clamp);
	margin-bottom: 15px;
}
.product-block__content p {
	color: var(--grey-color);
}
.product-block__info-bullets {
	gap: 10px;
	display: flex;
	margin-top: 15px;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--s-25-clamp);
}
.product-block__info-bullet {
	height: 40px;
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: center;
	padding: 0 var(--s-15-clamp);
	border-radius: var(--border-r-50);
	background-color: var(--hover-color);
}
.product-block__info-bullet svg {
	width: 15px;
	height: 15px;
}
.product-block__info-bullet p {
	font-size: 13px;
	font-weight: 500;
	color: var(--main-color);
}
.product-block__content .btn {
	height: 40px;
	background-color: var(--main-color);
	border-color: var(--main-color);
}
.product-block__content .btn:hover {
	background-color: transparent;
}
.product-block__content .btn:hover span {
	color: var(--main-color);
}
.product-block__content .btn:hover svg path {
	stroke: var(--main-color);
}

/* Portfolio Block */
.portfolio-block {
	display: grid;
	gap: var(--gap-30-clamp);
	margin-top: var(--s-50-clamp);
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.portfolio-block__item {
	display: flex;
	flex-direction: column;
}
.portfolio-block__image figure {
	height: auto;
}
.portfolio-block__image figure img {
	object-fit: contain;
	border-radius: var(--border-r-20) var(--border-r-20) 0 0;
}
.portfolio-block__content {
	display: flex;
	flex-direction: column;
	height: var(--height-100);
	padding: var(--s-20-clamp);
	background-color: var(--white-color);
	border-radius: 0 0 var(--border-r-20) var(--border-r-20);
}
.portfolio-block__content h3 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h3-clamp);
	margin-bottom: 10px;
}
.portfolio-block__content p {
	color: var(--grey-color);
}
.portfolio-block__logos{
	gap: 20px;
	display: grid;
	margin-top: 15px;
	align-items: center;
	grid-template-columns: repeat(4, 1fr);
}
.portfolio-block__logos figure {
	height: 35px;
}
.portfolio-block__logos figure img {
	object-fit: contain;
}

/* Brand Block */
.brand-block-home .brand-block__item {
	padding: 20px 0;
	height: auto;
	background-color: #ffffff;
}
.brand-block-home .brand-block__item a {
	padding: 0;
}
.brand-block-home .brand-block__item figure {
	height: 65px;
}
.brand-block {
	display: grid;
	gap: var(--gap-20-clamp);
	margin-top: var(--s-50-clamp);
	grid-template-columns: repeat(6, 1fr);
}
.brand-block__item {
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--border-r-20);
	transition: var(--basic-transition);
	border: var(--border-basic) var(--border-color);
}
.brand-block__item a {
	display: flex;
	align-items: center;
	height: var(--height-100);
	flex-direction: column;
	padding: var(--s-20-clamp);
}
.brand-block__item:hover {
	background-color: var(--hover-color);
	border-color: var(--hover-color);
}
.brand-block__item figure {
	height: 50px;
}
.brand-block__item figure img {
	object-fit: contain;
}
.brand-block__content {
	margin-top: 15px;
}
.brand-block__content ul {
	gap: 5px;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}
.brand-block__content ul li {
	font-size: 15px;
	position: relative;
	display: flex;
	gap: 10px;
	align-items: center;
}

.brand-block__content ul li::before {
	font-size: 20px;
	content: '•';
	display: block;
	color: var(--main-color);
}

.brand-block.catalog-page {
	margin-bottom: var(--s-70-clamp);
}
.brand-block.catalog-page .brand-block__item {
	height: auto;
	background-color: var(--white-color);
}
.brand-block.catalog-page .brand-block__item:hover {
	background-color: var(--hover-color);
	border-color: var(--hover-color);
}

/* Home Hero */
.site-hero {
	position: relative;
}
.site-hero__background-image {
	position: relative;
	height: 100vh;
}
.site-hero__background-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(360deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.52) 100%);
}
.site-hero__background-image video,
.site-hero__background-image img {
	width: var(--width-100);
	height: var(--height-100);
	object-fit: cover;
	object-position: center center;
}
.site-hero__content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: var(--width-100);
	transform: var(--transform-50-50);
}
.site-hero__caption {
	text-align: center;
	display: flex;
	align-items: center;
	flex-direction: column;
	color: var(--white-color);
}
.hero-title {
	margin-bottom: 15px;
}
.hero-title h1 {
	font-family: var(--secondary-font);
	font-size: var(--font-h1-clamp);
	line-height: 1;
}
.hero-title h1 em {
	color: var(--white-color);
	font-style: normal;
}
.hero-desc p {
	font-size: var(--font-p-clamp);
	font-weight: 300;
}
.site-hero__btn {
	gap: 15px;
	display: flex;
	margin-top: var(--s-25-clamp);
}

/* Icon Boxes */
.icons-block-heading {
	display: flex;
	text-align: center;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	margin-bottom: var(--s-50-clamp);
}
.icons-block .icons-block-heading h2 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
}
.icons-block .icons-block-heading h2 em {
	font-style: normal;
	color: var(--main-color);
}
.icons-block .icons-block-heading h5 {
	font: 400 14px var(--primary-font);
	color: var(--main-color);
	margin-bottom: 10px;
}
.icons-block-heading p {
	margin-top: 15px;
	opacity: 0.6;
}
.icons-block .icons-block-list {
	display: grid;
	gap: var(--gap-30-clamp);
	margin-top: var(--s-50-clamp);
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.icon-block-item {
	display: flex;
	align-items: center;
	text-align: center;
	flex-direction: column;
	gap: var(--gap-25-clamp);
}
.icon-block-item .icon-block-image figure {
	width: 60px;
	height: 60px;
}
.icon-block-item .icon-block-image figure img {
	object-fit: contain;
}
.icon-block-item .icon-block-content h3 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h3-clamp);
	margin: 0 0 10px 0;
}
.icon-block-item .icon-block-content ul {
	margin: 0;
	padding: 0 0 0 var(--s-20-clamp);
}
.icon-block-item .icon-block-content ul li,
.icon-block-item .icon-block-content p {
	color: var(--grey-color);
	margin-bottom: 15px;
}
.icon-block-item .icon-block-content ul li:last-of-type,
.icon-block-item .icon-block-content p:last-of-type {
	margin: 0;
}

/* Logo Marque */
:root {
	--logo-h-clamp: 25px 55px;
	--logo-item-clamp: 70px 100px;
}
.logo-marque__heading-holder {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--s-50-clamp);
}
.logo-marque__heading-holder h2 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
}
.logo-marque__heading-holder h2 em {
	font-style: normal;
	color: var(--main-color);
}
.logo-marque__heading-holder p {
	color: var(--grey-color);
	text-align: right;
}
.logo-marque__content-wrapper {
	overflow: hidden;
	width: 100%;
}
.logo-marque__content {
	display: flex;
	flex-direction: row;
	width: max-content;
	gap: var(--gap-30-clamp);
	animation: scrolling 100s linear infinite;
}
.logo-marque__content-item {
	height: var(--logo-item-clamp);
	display: flex;
	flex: 1;
	border-radius: var(--border-r-20);
	border: var(--border-basic) var(--border-color);
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background-color: #ffffff;
}
.logo-marque__content-item figure {
	height: var(--logo-h-clamp);
	padding: 0 var(--s-35-clamp);
}
.logo-marque__content-item figure img {
	width: auto;
	object-fit: contain;
}
@keyframes scrolling {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
.logo-marque__content:hover {
	animation-play-state: paused;
}

/* info block (multiple page) */
.info-block {
	position: relative;
}
.info-block-left .site-row {
	flex-direction: row-reverse;
}
/* .info-block-content {
	padding-right: 70px;
	padding-left: 0;
} */
.info-block-left.param-group .info-block-content {
	padding-right: 0;
	padding-left: var(--s-70-clamp);
}
.info-block-content .info-block-subtitle {
	margin-bottom: 15px;
}
.info-block-content .info-block-subtitle h5 {
	font-weight: 500;
	color: var(--main-color);
}
.info-block-content h2 {
	font-size: var(--font-h2-clamp);
	font-weight: 500;
	margin: 0 0 var(--s-20-clamp) 0;
}
.info-block-content h2 em {
	color: var(--main-color);
	font-weight: 400;
}
.info-block-content .info-block__buttons {
	gap: 10px;
	display: flex;
	margin-top: var(--s-25-clamp);
}
.info-block-content p {
	margin-bottom: 15px;
	opacity: 0.6;
}
.info-block-content p:last-of-type {
	margin-bottom: 0;
}
.info-block-content p:has(strong) {
	font-size: var(--font-h5-clamp);
	text-transform: uppercase;
	opacity: 1;
	color: var(--black-color);
}
.info-block-content p:has(strong) strong {
	font-weight: 400;
}
.info-block-image {
	position: relative;
}
.info-block-image figure {
	position: relative;
	height: auto;
}
.info-block-image figure img {
	border-radius: var(--border-r-20);
	object-fit: contain;
}
.info-block-content ul {
	gap: 15px;
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 15px 0 0;
	padding: 0;
}
.info-block-content ul li {
	padding: 0 0 0 25px;
	line-height: normal;
	list-style: none;
	background-size: 15px 15px;
	background-repeat: no-repeat;
	background-position: 0;
	background-image: url('data:image/svg+xml,<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><g clip-path="url(%23image 12 [Vectorized]__a)"><path d="M6.51 0h.991c.054.03.176.038.242.043 2.676.241 5.03 2.145 5.893 4.68.147.431.249.849.31 1.3.016.114.007.353.054.447v1.068c-.044.121-.045.383-.064.517a7.017 7.017 0 0 1-5.62 5.828 7.596 7.596 0 0 1-.351.06c-.123.017-.28.02-.396.057H6.456c-.146-.056-.633-.09-.829-.131C2.981 13.325.956 11.41.225 8.809a4.843 4.843 0 0 1-.149-.704C.06 7.977.032 7.668.002 7.563L0 7.558v-1.11c.027-.066.03-.164.037-.235A6.985 6.985 0 0 1 5.774.106c.12-.021.672-.074.736-.106Z" fill="%23C9000A"/><path d="M9.45 3.686c.078.018 1.115.762 1.272.866-.144.178-.34.48-.474.674L9.373 6.49l-2.935 4.23c-.163-.107-.493-.383-.663-.514L4.398 9.132 3.124 8.14c.101-.11.251-.313.347-.435l.601-.773c.177.155.462.364.654.513L6.104 8.52c.113-.178.26-.378.38-.553l.704-1.015L9.45 3.686Z" fill="%23FEFEFE"/></g><defs><clipPath id="image 12 [Vectorized]__a"><path fill="%23fff" d="M0 0h14v14H0z"/></clipPath></defs></svg>');
}
.info-block-group {
	display: grid;
	gap: var(--gap-30-clamp);
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.info-block-group__item h4 {
	font-size: var(--font-h5-clamp);
	color: var(--main-color);
	margin-bottom: 10px;
}

/* cta */
.cta {
	position: relative;
}
.cta-image {
	height: 550px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	overflow: hidden;
}
.cta-image::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.2);
}
.cta-caption {
	position: absolute;
	bottom: 50px;
	left: 50%;
	width: 100%;
	text-align: center;
	transform: var(--transform-X50);
}
.cta-content {
	padding: var(--s-30-clamp);
	color: var(--black-color);
	border-radius: var(--border-r-15);
	background-color: var(--white-color);
}
:root {
	--cta-fz-clamp: 24px 32px;
}
.cta-content h2 {
	font-size: var(--cta-fz-clamp);
	font-weight: 500;
	margin-bottom: 15px;
}
.cta-content h2 em {
	font-style: normal;
	color: var(--main-color);
}
.cta-content p {
	opacity: 0.6;
}
.cta-button {
	gap: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--s-20-clamp);
}
.cta-button .second-btn {
	background-color: var(--white-color);
}
.cta-button .second-btn span {
	color: var(--black-color);
}
.cta-button .second-btn svg path {
	fill: var(--black-color);
}
.cta-button .second-btn:hover {
	background-color: var(--main-color);
}
.cta-button .second-btn:hover span {
	color: var(--white-color);
}
.cta-button .second-btn:hover svg path {
	fill: var(--white-color);
}

/* page bottom cta */
.page-bottom-cta {
	position: relative;
	overflow: hidden;
}
.page-bottom-cta-image {
	height: 650px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	overflow: hidden;
}
.page-bottom-cta-image::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(102, 102, 102, 0) 0%, #b48655 100%);
}
.page-bottom-cta-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	z-index: 3;
	text-align: center;
	transform: var(--transform-50-50);
}
.page-bottom-cta-content {
	color: var(--white-color);
}
.page-bottom-cta-content h2 {
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
	line-height: 1.2;
	margin-bottom: 15px;
}
.page-bottom-cta-content h2 em {
	font-style: normal;
	color: var(--main-color);
}
.page-bottom-cta-button {
	gap: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--s-20-clamp);
}
.page-bottom-cta-button .second-btn {
	background-color: var(--white-color);
}
.page-bottom-cta-button .second-btn span {
	color: var(--black-color);
}
.page-bottom-cta-button .second-btn svg path {
	fill: var(--black-color);
}
.page-bottom-cta-button .second-btn:hover {
	background-color: var(--main-color);
}
.page-bottom-cta-button .second-btn:hover span {
	color: var(--white-color);
}
.page-bottom-cta-button .second-btn:hover svg path {
	fill: var(--white-color);
}

/* Gallery */
.gallery {
	position: relative;
}
.gallery-heading {
	gap: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: var(--s-50-clamp);
}
.gallery-heading h5 {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--main-color);
}
.gallery-heading h2 {
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
}
.gallery-heading h2 em {
	font-style: normal;
	color: var(--main-color);
}
.gallery-heading p {
	text-align: right;
	color: var(--grey-color);
}
.gallery-holder {
	gap: var(--gap-30-clamp);
	display: grid;
}
.gallery-holder.gallery-holder-1-column {
	grid-template-columns: repeat(1, 1fr);
}
.gallery-holder.gallery-holder-2-column {
	grid-template-columns: repeat(2, 1fr);
}
.gallery-holder.gallery-holder-3-column {
	grid-template-columns: repeat(3, 1fr);
}
.gallery-holder.gallery-holder-4-column {
	grid-template-columns: repeat(4, 1fr);
}
.gallery-holder.gallery-holder-5-column {
	grid-template-columns: repeat(5, 1fr);
}
.gallery-holder.gallery-holder-6-column {
	grid-template-columns: repeat(6, 1fr);
}
.gallery-holder.gallery-holder-7-column {
	grid-template-columns: repeat(7, 1fr);
}
.gallery-holder.gallery-holder-8-column {
	grid-template-columns: repeat(8, 1fr);
}
.gallery-holder.gallery-holder-9-column {
	grid-template-columns: repeat(9, 1fr);
}
.gallery-holder.gallery-holder-10-column {
	grid-template-columns: repeat(10, 1fr);
}
.gallery-holder.gallery-holder-11-column {
	grid-template-columns: repeat(11, 1fr);
}
.gallery-holder.gallery-holder-12-column {
	grid-template-columns: repeat(12, 1fr);
}
.gallery .gallery-button {
	display: flex;
	align-items: center;
	justify-content: center;
}
.gallery .gallery-item-video,
.gallery .gallery-item figure {
	height: 450px;
}
.gallery .gallery-item-video video,
.gallery .gallery-item figure img {
	width: var(--width-100);
	height: var(--height-100);
	object-fit: cover;
	border-radius: var(--border-r-20);
	object-position: center center;
}
.gallery-holder.gallery-holder-12-column .gallery-item {
	grid-column: span 3;
}
.gallery-holder.gallery-holder-12-column .gallery-item:nth-of-type(2) {
	grid-column: span 6;
}

/* Accordion Block */
.accordion-block {
	margin-top: var(--s-50-clamp);
}
.accordion-block__wrapper {
	gap: 15px;
	display: flex;
	flex-direction: column;
}
.accordion-block .accordion-block__wrapper .accordion-block__item {
	gap: 10px;
	display: flex;
	flex-direction: column;
	padding: var(--s-25-clamp);
	border-radius: var(--border-r-20);
	background-color: var(--bg-color);
}
.accordion-block__item .accordion-block__title {
	position: relative;
	cursor: pointer;
	transition: var(--basic-transition);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.accordion-block__item .accordion-block__title::after {
	content: '';
	width: 36px;
	height: 36px;
	transition: var(--basic-transition);
	background: url('assets/images/plus.svg') no-repeat center center / contain;
}
.accordion-block__item.is-active .accordion-block__title::after {
	background: url('assets/images/minus.svg') no-repeat center center / contain;
}
.accordion-block__item .accordion-block__title h3 {
	font-size: var(--font-h4-clamp);
	font-weight: 500;
	position: relative;
}
.accordion-block__item .accordion-block__content ul {
	margin: 0;
	padding: 0 0 0 15px;
}
.accordion-block__item .accordion-block__content ul li,
.accordion-block__item .accordion-block__content p {
	margin-bottom: 15px;
	color: rgba(0, 0, 0, 0.6);
}
.accordion-block__item .accordion-block__content a {
	font-weight: 500;
	color: var(--main-color);
	text-decoration: underline;
}
.accordion-block__item .accordion-block__content ul li:last-of-type,
.accordion-block__item .accordion-block__content p:last-of-type {
	margin: 0;
}
.accordion-block__item .accordion-block__content em {
	font-style: normal;
	color: var(--main-color);
}

/* ============================================== */
/* ================ cristi styles =============== */
/* ============================================== */

/* Contact Page */
.call-back-form {
	background-color: var(--bg-color);
	border-radius: 0;
}
.call-back-form h3 {
	text-align: center;
	margin-bottom: var(--s-30-clamp);
	font: 500 var(--font-h3-clamp)/1 var(--primary-font);
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output .wpcf7 form .wpcf7-response-output {
	display: none;
	padding: 0;
	margin: 0;
	border: none;
}
.contact-block-content h4 {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
}
.contact-block-item {
	margin-bottom: 30px;
}
.contact-block-item:last-of-type {
	margin-bottom: 0;
}
.contact-block-content a {
	color: var(--main-color);
	text-decoration: underline;
}
.site-contact-form br,
.site-contact-form .wpcf7-spinner,
.site-contact-form .wpcf7-response-output {
	display: none;
}
.site-contact-form .wpcf7 .sent .wpcf7-response-output {
	color: #46b450;
	font-size: 16px;
	font-weight: 400;
	display: block;
	position: absolute;
	left: 15px;
	right: 0;
	text-align: left;
	padding: 10px 0 0 0 !important;
}
.site-contact-form .wpcf7-not-valid-tip {
	font-size: 14px;
	position: absolute;
	left: auto;
	right: 0;
}
.site-contact-form .wpcf7 form.sent .wpcf7-response-output,
.site-contact-form .wpcf7 form.invalid .wpcf7-response-output,
.site-contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.site-contact-form
	.wpcf7
	form.payment-required
	.wpcf7-response-output
	.site-contact-form
	.wpcf7
	form
	.wpcf7-response-output {
	padding: 0;
	margin: 0;
	border: none;
}
.site-contact-form label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: var(--main-color);
	margin-bottom: 5px;
}
.site-contact-form-input {
	margin-bottom: 15px;
}
.site-contact-form-input:last-of-type {
	margin-bottom: 0;
}
.site-contact-form label span {
	color: var(--black-color);
	font-size: 12px;
}
.site-contact-form {
	display: flex;
	flex-wrap: wrap;
	column-gap: 15px;
}
.site-contact-form-input {
	width: calc(50% - 7.5px);
}
.site-contact-form-textarea {
	width: var(--width-100);
}
.site-contact-form-input input {
	font-size: 15px;
	height: 45px;
	line-height: 50px;
	font-weight: 400;
	padding: 0 15px;
	width: var(--width-100);
	color: rgba(0, 0, 0, 0.7);
	border: none;
	background-color: var(--white-color);
	border-radius: var(--border-r-10);
}
.site-contact-form textarea {
	font-size: 15px;
	height: 140px;
	font-weight: 400;
	resize: none;
	padding: 15px;
	width: var(--width-100);
	color: rgba(0, 0, 0, 0.7);
	border: none;
	background-color: var(--white-color);
	border-radius: var(--border-r-10);
}
.site-contact-form .site-contact-form-submit {
	display: flex;
	margin-top: 15px;
	width: var(--width-100);
	justify-content: center;
}
.site-contact-form .site-contact-form-submit p {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--width-100);
}
.site-contact-form input.wpcf7-submit {
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	border: none;
	width: var(--width-100);
	height: 50px;
	line-height: 50px;
	box-shadow: none;
	text-shadow: none;
	color: var(--white-color);
	padding: 0 var(--s-25-clamp);
	border-radius: var(--border-r-10);
	transition: var(--basic-transition);
	background-color: var(--main-color);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.site-contact-form input.wpcf7-submit:hover {
	background-color: var(--main-color);
}

/* Posts Page Related Posts */
.related.posts {
	padding: 70px 0;
	background-color: rgba(34, 96, 170, 0.045);
}
.related.posts .post-item .post-details-holder {
	background-color: #ffffff;
}
.related.posts h2 {
	font-size: 42px;
	font-weight: 400;
	text-align: center;
	margin-bottom: 50px;
}
.related.posts .posts-loop {
	gap: 30px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.related.posts .posts-loop .posts-item {
	background-color: var(--white-color);
	border-radius: 25px;
}
.related.posts .posts-loop .posts-item .posts-item-caption {
	padding: 25px;
}
.related.posts .posts-loop .posts-item .posts-item-caption h4 {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 10px;
	color: var(--blue-color);
	text-transform: capitalize;
}
.posts-item .posts-item-image figure {
	height: 300px;
}
.posts-item .posts-item-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	object-position: center center;
}
.posts-item .posts-item-caption h3 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
}
.posts-item .posts-item-caption p {
	font-size: 16px;
	font-weight: 400;
	color: var(--gray-color);
	margin-bottom: 10px;
}
.posts-item .posts-item-caption .post-link {
	display: flex;
}

/* Posts Single Page */
.posts-single-content {
	padding: 70px 0;
}
.posts-single-content p {
	margin-bottom: 15px;
	font-weight: 400;
}
.posts-single-content strong {
	font-weight: 500;
}
.posts-single-content h1,
.posts-single-content h2,
.posts-single-content h3,
.posts-single-content h4,
.posts-single-content h5,
.posts-single-content h6 {
	margin-bottom: 15px;
}
.posts-single-content ul,
.posts-single-content ol {
	margin: 0;
	padding: 0 0 0 20px;
}
.posts-single-content ul li,
.posts-single-content ol li {
	margin-bottom: 15px;
	line-height: 1.7;
}

/* resources block */
.posts-page {
	padding-top: var(--s-70-clamp);
	padding-bottom: var(--s-70-clamp);
}
.posts-page .site-row {
	row-gap: var(--gap-30-clamp);
}
.home-posts__heading {
	display: grid;
	gap: var(--gap-30-clamp);
	align-items: center;
	margin-bottom: var(--s-50-clamp);
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.home-posts__heading h2 {
	font-family: var(--secondary-font);
	line-height: 1.2;
	font-size: var(--font-h2-clamp);
}
.home-posts__heading h2 em {
	font-style: normal;
	color: var(--main-color);
}
.home-posts__heading p {
	color: var(--grey-color);
	text-align: right;
}
.post-item {
	height: var(--height-100);
	display: flex;
}
.post-item .post-details-holder {
	display: flex;
	height: var(--height-100);
	flex-direction: column;
	border-radius: var(--border-r-20);
	border: var(--border-basic) var(--border-color);
}
.post-image figure {
	height: auto;
}
.post-image img {
	width: var(--width-100);
	height: var(--height-100);
	object-fit: cover;
	object-position: center center;
	border-radius: var(--border-r-20) var(--border-r-20) 0 0;
}
.post-details {
	display: flex;
	flex-direction: column;
	height: var(--height-100);
	padding: var(--s-20-clamp);
}
.post-data {
	gap: 10px;
	display: flex;
	align-items: center;
}
.post-data .post-category p,
.post-data .post-date p {
	font-size: 16px;
	font-weight: 400;
	color: var(--main-color);
}
.post-data span {
	font-size: 12px;
	color: var(--main-color);
}
.post-data .post-category p a {
	text-decoration: none;
	color: var(--main-color);
}
.post-title h4 {
	color: #431c1b;
	font-family: var(--secondary-font);
	font-size: var(--font-h4-clamp);
}
.post-title {
	margin: 10px 0 15px 0;
}
.post-title a {
	color: inherit;
	text-decoration: none;
}
.post-except {
	margin-top: auto;
	margin-bottom: var(--s-25-clamp);
}
.post-except p {
	overflow: hidden;
	display: -webkit-box;
	line-clamp: 2;
	color: var(--grey-color);
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}
.post-link-holder {
	margin-top: auto;
}
.post-link a {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 500;
	color: var(--main-color);
	text-decoration: none;
}
.post-link svg {
	width: auto;
	height: 10px;
}

/* Blog Single Post */
.post-single-header {
	position: relative;
	margin-top: 100px;
	padding-top: 70px;
	padding-bottom: 70px;
	background-color: #fbf7ef;
}
.post-single-image figure {
	height: 450px;
}
.post-single-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	object-position: center center;
}
.post-single-header h1 {
	color: #431c1b;
	line-height: 1.2;
	margin-bottom: 20px;
	font-family: var(--secondary-font);
	font-size: var(--font-h2-clamp);
}
.post-single-header p {
	font-size: 16px;
	font-weight: 400;
	color: var(--main-color);
}
.post-single-text {
	padding-top: 70px;
	padding-bottom: 70px;
}
.post-single-text h1,
.post-single-text h2,
.post-single-text h3,
.post-single-text h4,
.post-single-text h5,
.post-single-text h6 {
	margin-bottom: 15px;
}
.post-single-text p {
	margin-bottom: 15px;
	line-height: 1.8;
}
.post-single-text p a {
	color: var(--main-color);
	text-decoration: underline;
}
.post-single-text p:last-of-type {
	margin-bottom: 0;
}
.post-single-text blockquote {
	margin: 0 0 15px 0;
	padding: 0 0 0 20px;
	border-left: 3px solid var(--main-color);
}
.post-single-text ul,
.post-single-text ol {
	margin: 0 0 15px 0;
	padding: 0 0 0 20px;
}
.post-single-text li strong,
.post-single-text p strong {
	font-weight: 500;
}
.post-single-text li {
	line-height: 1.8;
}
.post-single-text .gallery {
	margin-top: 15px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px;
}
.post-single-text .gallery .gallery-item {
	margin-bottom: 10px;
}
.post-single-text .gallery .gallery-icon {
	height: 300px;
	margin-bottom: 0;
}
.post-single-text .gallery img {
	object-fit: cover;
	height: 100%;
	width: 100%;
	object-position: center center;
}
.post-single-text .gallery figcaption {
	display: none;
}
.post-single-text .gallery-columns-5 .gallery-item .gallery-icon {
	height: 150px;
}
.post-single-text .gallery-columns-2 .gallery-item {
	position: relative;
	width: 100%;
	padding-right: 5px;
	padding-left: 5px;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
.post-single-text .gallery-columns-3 .gallery-item {
	position: relative;
	width: 100%;
	padding-right: 5px;
	padding-left: 5px;
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
}
.post-single-text .gallery-columns-4 .gallery-item {
	position: relative;
	width: 100%;
	padding-right: 5px;
	padding-left: 5px;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}
.post-single-text .gallery-columns-5 .gallery-item {
	position: relative;
	width: 100%;
	padding-right: 5px;
	padding-left: 5px;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}
.post-single-text .wp-video {
	width: 100% !important;
}
.post-single-text .wp-video video {
	width: 100% !important;
	height: 100% !important;
}
.post-single-footer {
	padding-top: 70px;
	padding-bottom: 35px;
	background-color: #e8f1fe;
}
.post-single-footer h2 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 35px;
	text-align: center;
}

/* ============================================== */
/* ================ footer styles =============== */
/* ============================================== */
.main-footer {
	position: relative;
	background-color: #b48655;
}
.footer-top {
	padding: var(--s-70-clamp) 0;
}
.footer-text p {
	font-family: var(--secondary-font);
	font-size: var(--font-h5-clamp);
	color: var(--white-color);
	margin-top: var(--s-30-clamp);
}
.footer-logo img {
	height: 80px;
	width: auto;
}
.footer-navigation h4 {
	font-family: var(--secondary-font);
	font-size: var(--font-h5-clamp);
	margin-bottom: var(--s-20-clamp);
	color: var(--white-color);
}
.footer-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-navigation ul li {
	margin-bottom: 10px;
}
.footer-navigation ul li:last-of-type {
	margin-bottom: 0;
}
.footer-navigation ul li a {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}
.footer-navigation ul li a:hover {
	color: var(--white-color);
}
.footer-contact-block {
	display: flex;
	flex-direction: column;
	gap: var(--gap-15-clamp);
}
.footer-contact-block-item {
	gap: 10px;
	display: flex;
	flex-direction: column;
}
.footer-contact-block-item a {
	font-size: 15px;
	cursor: pointer;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: underline;
}
.footer-contact-block-item a:hover {
	color: var(--white-color);
}
.footer-contact-block-item p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
}

.footer-social-block ul {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0;
	list-style: none;
	margin: var(--s-25-clamp) 0 0 0;

	li {
		margin: 0;

		a {
			svg {
				width: 26px;
				height: 26px;
			}
		}
	}
}
.footer-bottom {
	padding: 0 0 var(--s-25-clamp) 0;
}
.footer-copyright p {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
}
.footer-privacy {
	gap: 10px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.footer-privacy a {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
}
.footer-privacy a:first-of-type {
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-privacy a:first-of-type::after {
	content: '';
	width: 1px;
	height: 15px;
	background-color: rgba(255, 255, 255, 0.7);
}
.footer-privacy a:hover {
	color: var(--white-color);
}

/* ============================================== */
/* ================ betty styles =============== */
/* ============================================== */

/* ============================================== */
/* ================ responsive styles =========== */
/* ============================================== */

@media (max-width: 1440px) {
	.site-container {
		max-width: 1300px;
	}
}

/*end*/

@media (max-width: 1300px) {
	.site-container {
		max-width: 1200px;
	}
}

/*end*/

@media (max-width: 1200px) {
	.footer-top {
		padding-top: 35px;
		padding-bottom: 35px;
	}
	.site-row-pt70x {
		padding-top: 35px;
	}
	.site-row-pb70x {
		padding-bottom: 35px;
	}
	.site-row-p70x {
		padding-top: 35px;
		padding-bottom: 35px;
	}
	.site-row-pt50x {
		padding-top: 35px;
	}
	.site-row-pb50x {
		padding-bottom: 35px;
	}
	.site-row-p50x {
		padding-top: 35px;
		padding-bottom: 35px;
	}
	.gallery .gallery-item-video,
	.gallery .gallery-item figure {
		height: 350px;
	}
	.site-header{
		padding: 35px 0;
	}
	.post-single-header{
		padding-top: 35px;
		padding-bottom: 35px;
	}
	.post-single-text {
		padding-top: 35px;
		padding-bottom: 35px;
	}
}

/*end*/

@media (max-width: 1100px) {
	.post-single-header{
		margin-top: 80px;
	}
	.brand-block {
		grid-template-columns: repeat(4, 1fr);
	}
	.nav-logo img {
		height: 60px;
	}
	.product-grid__image figure {
		height: 250px;
	}
	.product-grid__content {
		text-align: center;
	}
	.product-grid__info-bullets {
		flex-direction: column;
	}
	.product-grid__image figure img {
		max-width: 70%;
	}
	.footer-logo img {
		height: 70px;
	}
	.footer-text p br {
		display: none;
	}
	.site-header{
		margin-top: 80px;
	}
}

/*end*/

@media (max-width: 1024px) {
	.offer-grid__image video,
	.offer-grid__image figure {
		height: 350px;
	}
	.offer-grid__content p br {
		display: none;
	}
}

/*end*/

@media (max-width: 768px) {
	.post-single-image figure{
		height: auto;
	}
	.site-header__scroll {
		bottom: 15px;
	}
	.product-grid__wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
	.icons-block .icons-block-list {
		grid-template-columns: repeat(2, 1fr);
	}
	.page-bottom-cta-image {
		height: 450px;
	}
	.logo-marque__heading-holder {
		flex-direction: column;
	}
	.logo-marque__heading-holder p {
		text-align: center;
		margin-top: 15px;
	}
	.footer-top .site-col-3 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.footer-top .site-row .site-col-3:nth-child(1),
	.footer-top .site-row .site-col-3:nth-child(2) {
		margin-bottom: 35px;
	}
	.brand-block {
		grid-template-columns: repeat(3, 1fr);
	}
	.site-hero__background-image {
		height: 80vh;
	}
	.portfolio-block {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	}
	.product-block__image figure {
		height: 230px;
	}
	.product-block__logo figure {
		height: 35px !important;
	}
	.product-block__heading p {
		text-align: center;
		margin-top: 15px;
	}
	.gallery-heading p {
		text-align: center;
	}
	.product-block__info-bullets {
		flex-direction: column-reverse;
	}
	.gallery-heading {
		flex-direction: column;
	}
	.product-block__heading {
		flex-direction: column;
	}
	.home-posts__heading {
		text-align: center;
	}
	.home-posts__heading p {
		text-align: center;
	}
	.home-posts .site-row {
		row-gap: 30px;
	}
	.home-posts .site-col-4 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.nav-menu {
		display: none;
	}
	.nav-logo {
		width: 20%;
	}
	.nav-tools {
		width: 40%;
	}
	.nav-tools-mobile {
		width: 40%;
		display: block;
	}
	.offer-grid__item:nth-of-type(1),
	.offer-grid__item:nth-of-type(2),
	.offer-grid__item:nth-of-type(3),
	.offer-grid__item:nth-of-type(4) {
		grid-column: span 6;
	}
	.contact-block__col {
		height: auto;
	}
	.contact-block__map iframe {
		height: 350px;
	}
	.posts-page .site-col-4{
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}

/*end*/

@media (max-width: 576px) {
	.site-hero__btn {
		flex-direction: column;
	}
	.site-button .btn {
		width: 100%;
	}
	.brand-block-home .brand-block__item {
		padding: 15px 0;
	}
	.gallery-holder.gallery-holder-12-column {
		gap: 0;
		row-gap: 15px;
		grid-template-columns: repeat(1, 1fr);
	}
	.home-posts .site-col-4 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.gallery .gallery-item-video video,
	.gallery .gallery-item figure img {
		width: 100%;
	}
	.brand-block-home .brand-block__item figure {
		height: 50px;
	}
	.main-header {
		margin: 0;
	}
	.main-header .site-container {
		padding: 0;
	}
	.main-nav {
		padding: 0 10px;
		border-radius: 0;
	}
	.brand-block {
		grid-template-columns: repeat(2, 1fr);
	}
	.page-header-default {
		margin-top: 80px;
	}
	.page-header-content-holder {
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
	}
	.site-header__logo figure {
		height: 35px;
	}
	.site-header__logo {
		padding: 10px;
	}
	.site-header__caption {
		width: 100%;
	}
	.brand-products__tabs {
		display: flex;
	}
	.brand-block__content ul li {
		font-size: 14px;
	}
	.brand-block__item a {
		padding: 10px;
	}
	.brand-block__content {
		margin-top: 10px;
	}
	.brand-products__tabs-holder {
		white-space: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.product-grid__wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
	.product-grid__image figure {
		height: 200px;
	}
	.icon-block-item .icon-block-image figure {
		width: 50px;
		height: 50px;
	}
	.icon-block-item .icon-block-content h3 {
		font-size: 20px;
	}
	.logo-marque__content-item figure {
		height: 25px;
		padding: 0 15px;
	}
	.page-bottom-cta-image {
		height: 350px;
	}
	.logo-marque__heading-holder h2 br,
	.logo-marque__heading-holder p br,
	.page-bottom-cta-content p br {
		display: none;
	}
	.logo-marque__heading-holder h2 {
		text-align: center;
	}
	.btn span {
		font-size: 14px;
	}
	.footer-top .site-col-3,
	.footer-bottom .site-col-6 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		text-align: center;
	}
	.footer-top .site-row .site-col-3:nth-child(1),
	.footer-top .site-row .site-col-3:nth-child(2),
	.footer-top .site-row .site-col-3:nth-child(3) {
		margin-bottom: 35px;
	}
	.footer-social-block ul {
		justify-content: center;
	}
	.footer-privacy {
		margin-top: 10px;
		flex-direction: column;
		justify-content: center;
	}
	.footer-privacy a:first-of-type::after{
		content: none;
	}
	.offer-grid__item:nth-of-type(1),
	.offer-grid__item:nth-of-type(2),
	.offer-grid__item:nth-of-type(3),
	.offer-grid__item:nth-of-type(4) {
		grid-column: span 12;
	}
	.offer-grid__image video,
	.offer-grid__image figure {
		height: 300px;
	}
	.offer-grid__content {
		text-align: center;
	}
	.contact-block__col {
		height: auto;
	}
	.posts-page .site-col-4{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.post-single-header .site-col-6{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.post-single-image{
		margin-bottom: 20px;
	}
	.post-single-header h1,
	.post-single-header p{
		text-align: center;
	}
	.post-single-text .site-col-offset-2 {
		margin-left: 0;
	}
	.post-single-text .site-col-8{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.portfolio-block__logos{
		
	}
	
}

/*end*/
