/* ===== IMPORTED STYLE ===== */
@import url("jquery.fancybox.min.css");

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat/Montserrat-Light.woff') format('woff');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat/Montserrat-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat/Montserrat-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
@font-face {
    font-family: 'Arturo';
    src: url('../fonts/arturo/arturo-bold.woff2') format('woff2'), url('../fonts/arturo/arturo-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
	font-display: swap;
}
/* ===== IMPORTED STYLE END ===== */

/* ===== RESET STYLE ===== */
* {box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; margin:0; padding:0;}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, cite, code, img, strong, sub, sup, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tr, th, td, article, aside, canvas, figure, figcaption, footer, header, main, menu, nav, section, audio, video  {
	font: inherit; border: 0px currentColor; border-image: none; vertical-align: baseline; font-size-adjust: inherit; font-stretch: inherit;}
article, aside, figcaption, figure, footer, header, menu, nav, section, body, main, section, picture {display: block;}
sub, sup {font-size:75%; line-height:0; position:relative;} sup {top: -0.5em;} sub {bottom: -0.25em;}
ol[class], ul[class], ol li[class], ul li[class] {list-style:none;}
blockquote {quotes: none; } blockquote::before, blockquote::after {content:none;}
table {border-collapse:collapse; border-spacing:0;}
a {text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color: transparent;outline:none!important;}
a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {text-decoration: none;outline: none;}
body {-webkit-text-size-adjust:none;-webkit-overflow-scrolling: touch;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: 100%;	}
input, button, select {border:none;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;}
select::ms-expand {display:none;}
input::-ms-clear {display:none;}
img {display:block; max-width:100%;}
/* ===== RESET STYLE END ===== */

/* ===== Theme default ===== */
:root {
	--black: #1c1c1c;
	--white: #fff;
	--main-color: #ef9c3e;
	--brown: #31180d;
	--main-font:'Montserrat';
	--title-font:'Arturo';
}
html {font-size:10px;height:100%;}
body {
    background: #fff;
    font-weight: normal;
	font-family: var(--main-font);
	font-size: 1.8rem;
    letter-spacing: 0.1px;
    line-height: 1.5;
    overflow-x: hidden;
	color: var(--black);
    height:100%;
}
.page-wrapper {display:flex;flex-direction: column;justify-content: space-between;height:100%;}

svg {width:100%;height:100%;display:block;}

input, textarea {width:100%;border:1px solid transparent;outline:none;resize:none;display:block;}
input:-webkit-autofill {transition: all 5000s ease-in-out 0s;}
/* Убираем стрелочки в input type="number"
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {-webkit-appearance: none;}
input[type='number'], input[type="number"]:hover, input[type="number"]:focus {appearance: none;-moz-appearance: textfield;}
*/
a {position:relative;color:inherit;transition:0.25s;}
a:hover {transition:0.25s;}

b, strong {font-weight:bold;}
p:not(:last-child) {margin-bottom: 1em;}
ul:not([class]) li, ol:not([class]) li {margin-bottom: 1em;}
ul:not([class]),
ol:not([class]) {padding-left: 20px;margin-bottom: 20px;}

p a:hover, ul:not([class]) li a:hover, ol:not([class]) li a:hover {text-decoration: none;}
p a, ul:not([class]) li a, ol:not([class]) li a {color: red;text-decoration: underline;}

table {width: 100%;margin:3rem 0;}
table tr {border: 1px solid #ddd;}
table th, table td {padding: 1rem;text-align: center;border-right: 1px solid #ccc;}
table th {text-transform: uppercase;background: rgba(0, 0, 0, 0.12);font-weight: bold;}

/* Flexbox */
.flex {display: flex;}
.inline-flex {display: inline-flex;}
.flex-wrap {flex-wrap: wrap;}
.flex-column {flex-direction: column;}
.align-center {align-items: center}
.align-end {align-items: flex-end;}
.align-start {align-items: flex-start;}
.justify-center {justify-content: center;}
.justify-end {justify-content: flex-end;}
.justify-start {justify-content: flex-start;}
.justify-between {justify-content: space-between;}
/* // Flexbox */

/* CSS Grid */
.grid {display:grid;}
.col-2 {grid-template-columns: repeat(2, 1fr);}
.col-3 {grid-template-columns: repeat(3, 1fr);}
.col-4 {grid-template-columns: repeat(4, 1fr);}
.col-5 {grid-template-columns: repeat(5, 1fr);}
.col-6 {grid-template-columns: repeat(6, 1fr);}
.grid-col-1 {grid-column: span 1;}
.grid-row-1 {grid-row: span 1;}
.grid-col-2 {grid-column: span 2;}
.grid-row-2 {grid-row: span 2;}
.grid-col-3 {grid-column: span 3;}
.grid-row-3 {grid-row: span 3;}
.grid-col-4 {grid-column: span 4;}
.grid-row-4 {grid-row: span 4;}
.grid-col-5 {grid-column: span 5;}
.grid-row-5 {grid-row: span 5;}

.gap-1 {gap:1rem;}
.gap-2 {gap:2rem;}
.gap-3 {gap:3rem;}
.gap-4 {gap:4rem;}
.gap-5 {gap:5rem;}
/* // CSS Grid */

.container {
	width: 100%;
	max-width:1480px;
	margin:0 auto;
	padding:0 20px;
	position:relative;
}

.red {border:1px solid red;}
.blue {border:1px solid blue;}
.green {border:1px solid green;}

.mobile-btn {display:none;}
.noscroll {overflow: hidden;}
.mobile-menu__content {display:none;border-top:1px solid silver;padding-top:3rem;}

.text--uppercase {text-transform:uppercase;}
.text--center {text-align:center;}
.text--left {text-align:left;}
.text--right {text-align:right;}
.text--black {color:var(--black);}
.text--white {color:var(--white);}
.text--colored {color:var(--main-color);}
.text--bold {font-weight: bold;}
.bg--main-color {background: var(--main-color);}
.resp--img img {width: 100%;height:100%;object-fit: cover;}

.position-relative {position: relative;}
.position-absolute {position: absolute;}

.sm-show, .svg-library {display:none;}

.section {padding:max(7vw, 50px) 0;}
.section__title {margin-bottom:1em;}

.input-wrapper input, .input-wrapper textarea {
	display:block;
	font-size: 1.6rem;
	font-weight: normal;
	font-family: var(--main-font);
	color:var(--black);
	background: #f3f3f3;
	height:5rem;
	padding:0 1em;
	border-radius: 5px;
}
.input-wrapper textarea {
	height: 10rem;
	padding: 1em;
}
.input-wrapper input::placeholder, .input-wrapper textarea::placeholder {
	font-size: 1.6rem;
	color:var(--black);
	font-family: var(--main-font);
	font-weight: normal;
}

.w-5 {width:5%;}
.w-10 {width:10%;}
.w-15 {width:15%;}
.w-20 {width:20%;}
.w-25 {width:25%;}
.w-30 {width:30%;}
.w-33 {width:33.33%;}
.w-35 {width:35%;}
.w-40 {width:40%;}
.w-45 {width:45%;}
.w-50 {width:50%;}
.w-55 {width:55%;}
.w-60 {width:60%;}
.w-65 {width:65%;}
.w-70 {width:70%;}
.w-75 {width:75%;}
.w-80 {width:80%;}
.w-85 {width:85%;}
.w-90 {width:90%;}
.w-95 {width:95%;}
.w-100 {width:100%;}

.pt-0 {padding-top:0;}
.pt-1 {padding-top:1rem;}
.pt-2 {padding-top:2rem;}
.pt-3 {padding-top:3rem;}
.pt-4 {padding-top:4rem;}
.pt-5 {padding-top:5rem;}
.pb-0 {padding-bottom:0;}
.pb-1 {padding-bottom:1rem;}
.pb-2 {padding-bottom:2rem;}
.pb-3 {padding-bottom:3rem;}
.pb-4 {padding-bottom:4rem;}
.pb-5 {padding-bottom:5rem;}

.mt-0 {margin-top:0;}
.mt-1 {margin-top:1rem;}
.mt-2 {margin-top:2rem;}
.mt-3 {margin-top:3rem;}
.mt-4 {margin-top:4rem;}
.mt-5 {margin-top:5rem;}
.mb-0 {margin-bottom:0;}
.mb-1 {margin-bottom:1rem;}
.mb-2 {margin-bottom:2rem;}
.mb-3 {margin-bottom:3rem;}
.mb-4 {margin-bottom:4rem;}
.mb-5 {margin-bottom:5rem;}

/* Buttons */
.btn {
	font-family: var(--title-font);
	font-size: 2.2rem;
	font-weight: bold;
	display:inline-block;
	position:relative;
	text-transform: uppercase;
	cursor:pointer;
	color:var(--main-color);
	text-shadow: 1px 1px 0 silver;
	background: none;
}
.btn::after {
	content:'';
	display: block;
	left:0;
	bottom:-2px;
	position: absolute;
	width: 30%;
	height: 3px;
	background: var(--main-color);
	border-radius: 2px;
	transition: all 0.25s;
}
.btn:hover::after {
	width: 100%;
	transition: all 0.25s;
}
.btn--center::after {
	left:50%;
	transform: translateX(-50%);
}

/* Icons */
.icon {display:block;}

.arrow-icon {
    width: 4rem;
    height: 2.6rem;
    color: var(--main-color);
}
.icon-phone {
	width: 2.5rem;
	height: 2.5rem;
	color:var(--main-color);
}
.icon-social {
	width: 2.3rem;
	height: 2.3rem;
	color:var(--gray);
	transition: all 0.25s;
}
.icon-contact {
	color:#fff;
	margin-right:1rem;
	flex:none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: var(--main-color);
	padding:1rem;
}
.icon-address {
	width: 2.5rem;
	height: 2.5rem;
	color:var(--main-color);
}


/* Titles */
.h1,.h2,.h3,.h4,.h5,.h6, h1,h2,h3,h4,h5,h6 {display:block;font-family: var(--title-font);color:var(--brown);}
.h1, h1 {
	line-height: 1;
	font-size: clamp(30px, 2.7vw, 52px); /* 5.2rem */
}
.h2, h2 {
	line-height: 1.2;
	font-size: clamp(25px, 2.4vw, 46px); /* 4.6rem */
}
.h3, h3 {
	line-height: 1.3;
	font-size: clamp(22px, 1.8vw, 30px); /* 3rem */
}
.h4, h4 {
	line-height: 1.3;
	font-size: clamp(20px, 1.6vw, 25px); /* 2.5rem */
}
.h5, h5 {
	line-height: 1.3;
	font-size: clamp(18px, 1.4vw, 20px); /* 2.5rem */
}

/* Marker list */
.marker--list li {
	display: flex;
	align-items: flex-start;
}
.marker--list li::before {
	content:'';
	display: block;
	min-width: 5px;
	height:5px;
	background: red;
	border-radius: 50%;
	margin:0.8rem 1rem 0 0;
}

/* Slick Slider - Default Style */
.slick-slider {
	position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	overflow: hidden;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand; 
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); 
}
.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto; 
}
.slick-loading .slick-track {
	visibility: hidden; 
}
.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	outline: none;
	display: none; 
}
.slick-initialized .slick-slide {
	display: block; 
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

/* Slick Slider - Arrows */
.prev-slide,
.next-slide {
	flex: none;
	width: 4em;
	height: 4em;
	color: #fff;
	background-color: blue;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s; 
}
.prev-slide:hover, .next-slide:hover {
	background-color: #898183;
}
.prev-slide:hover svg, .next-slide:hover svg {
	color:var(--white);
	transition: all .3s; 
}
.prev-slide svg, .next-slide svg {
	width: 1em;
	height: 2.5em; 
	color:var(--black);
}

/* Slick Slider - Dots */
.slick-dotted.slick-slider {
	margin-bottom: 30px; 
}
.slick-dots {
	position: absolute;
	bottom: -25px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%; 
}
.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	padding: 0;
	cursor: pointer; 
}
.slick-dots li button {
	border: 0;
	background: #413680;
	display: block;
	height: 20px;
	width: 20px;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	color: transparent;
	padding: 5px;
	cursor: pointer; 
}
.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none; 
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
	opacity: 1; 
}
.slick-dots li.slick-active button{
	background: green;
}

/* Select */
.select {
	position: relative;
	text-align: left;
	user-select: none;
	-webkit-touch-callout: none;
	font-weight: 400;
	margin: 0;
	outline: none;
	cursor: pointer;
	text-indent: 0.01px;
	color: #000;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 30rem;
}
.select .placeholder {
	position: relative;
	background: transparent;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-align: left;
	padding: 0 2rem 0 0;
	text-transform: uppercase;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
.select-arrow {
	display: block;
	width: 12px;
	margin-left:15px;
	position: absolute;
    right: 0;
}
.select-arrow img {
	width: 100%;
}
.select-left-icon {
    position: absolute;
    left: 0;
    z-index: 0;
}
.select.is-open .select-arrow {
	transform: rotate(180deg);
	top: auto;
}
.select.is-open ul {
	display: block;
}
.select ul {
	display: none;
	position: absolute;
	overflow: hidden;
	overflow-y: auto;
	width: auto;
	background: #fff;
	border-radius: 2px;
	top: 100%;
	left: 0;
	list-style: none;
	margin: 5px 0 0 0;
	padding: 0;
	z-index: 4;
	box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.10);
}
.select ul li {
	display: block;
	text-align: left;
	padding:0.7rem 1rem;
	cursor: pointer;
	word-wrap: break-word;
	text-transform: uppercase;
	white-space: nowrap;
	margin:0;
	border-top:1px solid #efefef;
}
.select ul li:hover {
	background: var(--main-color);
	color: #fff;
}
.select ul li a {
	text-decoration: none;
	color:#000;
}
.select ul li:hover a {
	transition:none;
	color:#fff;
}

/* Popup  */
.popup-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(49, 49, 49, 0.62);
	z-index: 5;
	display: none;
}
.popup-window, .thanks-window {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	visibility: hidden;
	z-index: 110;
	transition: all .3s;
	background: #fff;
	padding: 3rem;
	border-radius: 10px;
	width: 35em;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.popup-window.active {
	transform: translate(-50%, -50%) scale(1);
	visibility: visible;
}
.close-popup {
	position: absolute;
	top: 0.5em;
	right: 0.5em;
	display: block;
	overflow: visible;
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}
.close-popup::before, .close-popup::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 1px;
	display: block;
	width: 20px;
	height: 1px;
	border-bottom: 1px solid #000;
	transform: rotate(45deg);
}
.close-popup::after {
	left: 0;
	transform: rotate(-45deg);
}

/* Thanks window */
.thanks-window {
	z-index: 120;
}
.thanks-window.active {
	transform: translate(-50%, -50%) scale(1);
	visibility: visible;
}
.thanks-window__title {
	margin-bottom:0.3em;
}
.thanks-window p {
	text-align: center;
}

/* ===== Custom Styles =====*/
.header{
	top:0;
	left:0;
	padding: 2rem 0;
	z-index: 1;
}
.header .container {
	max-width: 100%;
	padding: 0 5rem;
}
.phone {
	color:var(--main-color);
	font-weight: bold;
	font-size: 2rem;
}
.logo {
	display: block;
	width: 7rem;
	margin-right: 5rem;
}
.logo img {
	width: 100%;
}
.menu li {
	margin:0 1em;
}
.menu li a {
	text-transform: uppercase;
	&:hover {
		color:var(--main-color);
	}
}
.hero {
	height: 100vh;
}
.hero__img {
	bottom:0;
	left:50%;
	width: 60%;
	height: 90%;
	transform: translateX(-50%);
	z-index: 0;
}
.hero__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: bottom;
}
.hero__bg {
	width: 50%;
	height: 100%;
	top:0;
	right:0;
	filter: grayscale(100%);
}
.hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero__bg::before {
	content:'';
	width: 100%;
	height:100%;
	position: absolute;
	top:0;
	left:0;
	background: rgba(255,255,255,0.8);
}
.brand {
    display: block;
    font-size: 11vw;
    color: #e9dfc8;
    line-height: 1;
    font-family: var(--title-font);
    text-shadow: rgb(255, 255, 255) 2px 2px 0px;
    opacity: 0.65;
	letter-spacing: 0.08em;
}
.hero__content {
	top:0;
	left:50%;
	transform: translateX(-50%);
	position: absolute;
	width: 75%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero__content__row {
	z-index: 1;
}
.hero__content__item {
	position: relative;
	z-index: 1;
}
.main__title {
	display: block;
	font-size: 8rem;
	line-height: 1;
	font-family: var(--title-font);
}
.main__title span {
	display: block;
	text-shadow: 2px 2px 0 #fff;
	color:var(--brown);
}
.main__title span:nth-child(2) {
	text-align: center;
}
.main__title span:last-child {
	font-size: 1.3em;
	color: var(--main-color);
	text-transform: uppercase;
	text-align: right;
	line-height: 1.2;
}
.hero__content__descript {
	padding:4rem 3rem;
	background: rgba(255,255,255,0.5);
	backdrop-filter: blur(4px);
	border-radius: 15px;
	align-self: flex-start;
	margin-bottom:4rem;
	box-shadow: -5px 5px 10px rgba(0,0,0,0.2);
}
.footprint__img {
	bottom:30px;
	left:0;
	width: 20rem;
	opacity: 0.07;
	transform: rotate(20deg);
}
.footprint__img img, .footprint__img__1 img  {
	width: 100%;
}
.footprint__img__1 {
	top:0;
	right:0;
	width: 30%;
	height: 100%;
	opacity: 0.07;
}
.about {
	padding: 7vw 0 4vw;
}
.about__img__1 img {
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
    border-radius: 20px;
}
.img__docor {
	top:-2rem;
	left:-2rem;
	width: 25rem;
	height: 25rem;
	border-radius: 20px;
	background: var(--main-color);
	opacity: 0.3;
}
.exp__block {
    position: absolute;
    bottom: -7rem;
    right: 0;
	background: var(--main-color);
	border:7px solid #fff;
	border-radius: 20px;
	padding: 3rem;
	overflow: hidden;
}
.exp__text {
	display: block;
}
.exp__index {
	display: block;
	font-size: 10rem;
	line-height: 1;
	font-weight: bold;
} 
.decor__patern {
    position: absolute;
    width: 130rem;
    height: 130rem;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-radius: 5rem;
    background: linear-gradient(90deg, #fff, #dfdfdf 30%, transparent 30%, transparent 100%);
    background-size: 6px;
    opacity: 0.15;
    z-index: 0;
}
.decor__title {
    font-size: 6vw;
    font-weight: 500;
    display: block;
    -webkit-text-stroke: 1px var(--main-color);
    -webkit-text-fill-color: transparent;
    line-height: 1;
    opacity: 0.4;
    top: 2rem;
    font-family: var(--title-font);
}
.decor__title.right {
    right: 5rem;
}
.decor__title.left {
    left: 5rem;
}
.advantages {
    padding: 8rem 0;
    background: var(--main-color);
	overflow: hidden;
}
.advantages p {
	color:#fff;
}
.adv__icon {
    width: 5rem;
    margin-right: 2rem;
}
.adv__icon img {
    width: 100%;
}
.adv__item, .h4 {
	color:#e9dfc8;
	text-shadow: 1px 1px 0 #6a6a6a;
}
.principle__wrap {
	justify-content: space-between;
}
.principle__wrap .item {
	padding: 2rem 0 0 0;
}
.principle__num {
	display: block;
	position: absolute;
	font-size: 7rem;
	font-weight: bold;
	top:0;
	left:0;
	color: #e9dfc8;
	opacity: 0.6;
	line-height: 1;
	z-index: -1;
}
.principle__img  {
	margin:0 auto;
}
.principle__img img {
	width: 100%;
}
.sevice__card__content {
	padding: 3rem;
}
.sevice__card {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.sevice__card__content p {
	font-size: 1.5rem;
}
.sevice__title {
	display: block;
	color: var(--main-color);
}
.service__img img {
	width: 100%;
	aspect-ratio: 1.5;
	object-fit: cover;
}	
.sevice__card {
	height: 100%;
	background: #fff;
}
.gallery__wrapper {
	gap:10px 5px;
}
.gallery__img img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}
.gallery-item {
	position: relative;
}
.img__title {
	top:35%;
	right:0;
	background: var(--main-color);
	padding: 0.5rem 2rem;
	text-transform: uppercase;
	font-size: 3rem;
	border-radius: 5px 0 0 5px;
	font-weight: bold;
	width: max-content;
}
.gallery__wrapper .item:nth-child(even) .img__title {
	top:47%;
	left:0;
	border-radius: 0 5px 5px 0;
}
.contact-item {
	font-size: 2.4rem;
	line-height: 1.3;
}
.contact__img img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1.5;
	border-radius: 20px;
}
.seo__section {
	background: linear-gradient(rgba(233,223,200,0.7), rgba(233,223,200,0.7)), url(../images/bg/2.jpg) no-repeat center 20% / cover;
}
.footer {
    padding: 3rem 0;
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}
.footer a {
	text-decoration: underline;
	&:hover {
		text-decoration: none;
	}
}
/* Preloader */
.preloader {
	width:100%;
	height:100%;  
	position:fixed;
	z-index:9999;
	background:#fff;
}
.preloader-wrap {
	overflow:hidden;
	width: 150px;
	height: 168px;
}
.loader {
	display: inline-block;
	height:100%;
	width:100%;
	z-index: 2;
	background:url(../images/logo.png) no-repeat center center / contain;
	overflow:hidden;
}
.loader-inner {
	display: inline-block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	position:absolute;
	z-index:3;
	bottom:0;
	left:0;
}
.loader-inner.active {
	height: 0;
	transition: all 2s;
}

/* ===== Custom Styles END =====*/

