:root {
	--color-pallet-primary: #A78664;
	--color-pallet-primary-dark: #6d5c4a;
	--color-pallet-secondry: #B6774A;
	--color-pallet-accent: #af3606;
	--color-pallet-light: #ecd186;
	--color-pallet-lighter: #fdf1d1;

	
	--color-black: #222;
	--color-gray-darker: #333;
	--color-gray-dark: #444;
    --color-gray: #555;
	--color-gray-semilight: #777;
	--color-gray-light: #aaa;
	--color-gray-lighter: #ccc;
    --color-white: #fff;
    --color-white-gray: #f1f1f1;
    --color-white-gray-light: #fafafa;

    --transition-duration: 0.6s;
	--swiper-pagination-bullet-inactive-color: var(--color-pallet-primary);
	--swiper-pagination-color: var(--color-pallet-secondry);
	--swiper-navigation-size: 30px;
	--swiper-navigation-color: var(--color-pallet-secondry);
	--swiper-pagination-bullet-size: 15px;
}

html{
    scroll-behavior: smooth;
    font-size: 16px;
    height:100%;
}

body{
    height:100%;
    font-size: 0.95rem;
    font-family: basefont;
	color: var(--color-black);
	/*background-image: url(../images/header.jpg);*/
	background-position: center 20px;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.hidden{
    display: none !important;
}

.mobile{
	display: none;
}

.display-inline-block{
	display: inline-block !important;
}

.ltr{
	direction: ltr;
}

.rtl{
	direction: rtl;
}

.align-right{
	text-align: right;
}

.align-left{
	text-align: left;
}

.fit-width{
	width: fit-content;
}

p{
	line-height: 2;
}

.prevent-select {
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */
}

.grecaptcha-badge { opacity:0;}

span[em-user]:before{
    content: attr(em-user) "\0040" attr(em-website);
}

.animated{
    transition: all 0.6s ease-in-out;
}

.safe-area{
    width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.block{
	display: block;
}

.center-me{
	margin-left: auto;
	margin-right: auto;
}

a img{
	border:none;
}

a{
	outline : none;
	text-decoration: none;
	color: var(--color-pallet-primary);
	transition: all 0.4s ease-in-out;
}

a.underline{
	display: inline-block;
	border-bottom: solid 1px transparent;
}

a.btn{
	display: block;
	background-color: var(--color-pallet-secondry);
	color: var(--color-white-gray);
	font-weight: bold;
	width: max-content;
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

a.btn:hover{
	background-color: var(--color-pallet-accent);
	color: var(--color-white);
}

a.btn.accent{
	background-color: var(--color-pallet-accent);
}

a.btn.accent:hover{
	background-color: var(--color-pallet-secondry);
	color: var(--color-white);
}

a.btn.outline{
	background-color: transparent;
	border: solid 2px var(--color-white);
}

a.btn.outline:hover{
	background-color: var(--color-white);
	color: var(--color-gray-dark);
}

a.btn.large{
	font-size: 1.2rem;
	padding: 20px;
}

a.btn.medium{
	font-size: 1rem;
	padding: 12px;
}

a.btn.loading{
	background-image: url(../images/loading.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 24px 24px;
	min-width: 50px;
}

i.icon{
    display: inline-block;
	width: 24px;
	height: 24px;
	-webkit-mask:  no-repeat 50% 50%;
	mask: no-repeat 50% 50%;
	-webkit-mask-size: cover;
	mask-size: cover;
}

i.icon.color-white{
	background-color: var(--color-white);
}

i.icon.color-secondry{
	background-color: var(--color-pallet-secondry);
}

i.icon.color-accent{
	background-color: var(--color-pallet-accent);
}

i.icon.menu{-webkit-mask-image: url(../images/menu.svg);mask-image: url(../images/menu.svg);}
i.icon.back{-webkit-mask-image: url(../images/back.svg);mask-image: url(../images/back.svg);}
i.icon.location{-webkit-mask-image: url(../images/location.svg);mask-image: url(../images/location.svg);}
i.icon.phone{-webkit-mask-image: url(../images/phone-black.svg);mask-image: url(../images/phone-black.svg);}
i.icon.email{-webkit-mask-image: url(../images/email.svg);mask-image: url(../images/email.svg);}
i.icon.instagram{-webkit-mask-image: url(../images/instagram.svg);mask-image: url(../images/instagram.svg);}
i.icon.whatsapp{-webkit-mask-image: url(../images/whatsapp.svg);mask-image: url(../images/whatsapp.svg);}
i.icon.zoom{-webkit-mask-image: url(../images/zoom.svg);mask-image: url(../images/zoom.svg);}
i.icon.telegram{-webkit-mask-image: url(../images/telegram.svg);mask-image: url(../images/telegram.svg);}
i.icon.arrow-circled-up{-webkit-mask-image: url(../images/arrow-circled-up.svg);mask-image: url(../images/arrow-circled-up.svg);}
i.icon.certificate{-webkit-mask-image: url(../images/certificate.svg);mask-image: url(../images/certificate.svg);}
i.icon.lab{-webkit-mask-image: url(../images/lab.svg);mask-image: url(../images/lab.svg);}
i.icon.ship{-webkit-mask-image: url(../images/ship.svg);mask-image: url(../images/ship.svg);}
i.icon.standard{-webkit-mask-image: url(../images/standard.svg);mask-image: url(../images/standard.svg);}
i.icon.transport{-webkit-mask-image: url(../images/transport.svg);mask-image: url(../images/transport.svg);}

a.logo img{
	height: 140px;
}

.ham-menu{
	display: none;
}

.header{
	background-color: var(--color-white);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease-in-out;
}

section.header.hideout{
	position: fixed;
	z-index: 2000;
	width: 100%;
	top: -100px;
	background-color: var(--color-pallet-lighter);
}

section.header.floated{
	top: 0;
}

section.header.floated .header-bar-content > ul > li:last-child > div{
	display: none;
}

section.header.floated a.logo img{
	height: 100px;
}

.header-bar-content{
	padding: 30px 0px 30px 0px;
}

section.header.floated .header-bar-content{
	padding: 10px 0px 10px 0px;
}

.header-bar-content > ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-bar-content > ul > li:last-child > div{
	display: flex;
	justify-content: flex-end;
	margin-bottom: 40px;
}

.header-bar-content > ul > li:last-child > div > a{
	display: block;
	padding: 10px;
	font-weight: bold;
	font-size: 0.85rem;
	background-color: var(--color-white-gray-light);
	min-width: 80px;
	text-align: center;
}

.header-bar-content > ul > li:last-child > div > a:hover{
	background-color: var(--color-pallet-secondry);
	color: var(--color-white);
}

.header-bar-content > ul > li:last-child > div > a.sel{
	background-color: var(--color-pallet-primary);
	color: var(--color-white);
}

.header-bar-content > ul > li:last-child > div > a:first-child{
	border-radius: 7px 0px 0px 7px;
}

.header-bar-content > ul > li:last-child > div > a:last-child{
	border-radius: 0px 7px 7px 0px;
}

nav.menu-desktop{
	display: flex;
	align-items: center;
}

nav.menu-desktop > a{
	display: block;
	position: relative;
	font-size: 1.3rem;
	font-weight: bold;
	margin-left: 50px;
	padding-bottom: 5px;
}

nav.menu-desktop > a:hover{
	color: var(--color-pallet-secondry);
}

nav.menu-desktop > a::after {
	left: 0;
  }

nav.menu-desktop > a::after {
	bottom: -5px;
	content: "";
	height: 3px;
	position: absolute;
	width: 20px;
	transition: all 0.5s ease 0s;
	background-color: var(--color-pallet-primary);
}

nav.menu-desktop > a:hover::after{
	width: 100%;
	background-color: var(--color-pallet-secondry);
}

.header-pic{
	height: 700px;
}

.header-quote{
	position: absolute;
	left: 0;
	right: 0;
	top: 350px;
	margin-inline: auto;
	width: 1250px;
	display: block;
	line-height: 1.5;
	font-size: 2rem;
	font-weight: bold;
	color: var(--color-white);
	text-align: center;
	background-color: rgba(0, 0, 0, 0.1);
	transition: all 0.5s ease 0s;
}

.header-quote.hideout{
	top: -50px;
	z-index: 10;
}

ul.process-titles{
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}

ul.process-titles > li{
	width: 32%;
	background-color: var(--color-pallet-primary);
	padding: 0px;
	color: var(--color-white);
	border-radius:  0px 0px 12px 12px;
}

ul.process-titles > li > img{
	width: 100%;
}

ul.process-titles > li > strong{
	display: block;
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: 10px;
	padding: 15px 15px 0px 15px;
}

ul.process-titles > li > p{
	line-height: 1.4;
	padding: 15px;
}

div.page-content{
	background-color: var(--color-white);	
}

.process-pics{
	padding-bottom: 20px;
}

.process-pics > ul{
	display: flex;
	justify-content: space-between;
}

.process-pics > ul > li{
	width: 32%;	
	height: 200px;
	overflow: hidden;
	border-radius: 0 0 12px 12px;
}

section.common{
	padding: 100px 0px 100px 0px;
}

section.aboutus .caption,
section.features .caption,
section.process .caption,
section.gallery .caption{
	display: block;
	position: relative;
	font-weight: bold;
	font-size: 1.6rem;
	margin-bottom: 20px;
	color: var(--color-pallet-primary);
}

section.aboutus .caption::before,
section.features .caption::before,
section.process .caption::before,
section.gallery .caption::before{
	top: -15px;
	content: "";
	height: 7px;
	position: absolute;
	width: 15%;
	background-color: var(--color-pallet-primary);
}

section.aboutus p {
	font-size: 1rem;
}

ul.about-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

ul.about-content:last-child{
	flex-direction: row-reverse;
}

ul.about-content > li:first-child{
	width: 60%;
}

ul.about-content > li:last-child{
	text-align: right;
}

ul.about-content > li:last-child > img{
	border-radius: 12px 0px 12px 0px;
}

ul.about-content > li:last-child > span{
	font-size: 0.90rem;
	font-style: italic;
	font-weight: bold;
	color: var(--color-pallet-primary);
	display: block;
	text-align: center;
	margin-top: 15px;
}

section.common.gallery,
section.common.features{
	background-color: #f7f7f7;
}

.swiper.gallerySwiper {
	padding-top: 25px;
	padding-bottom: 25px;
    width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.swiper.gallerySwiper .swiper-slide-next img{
	transform: scale(1.2);
}

.gallery-group{
	margin-top: 60px;
}

.gallery-group > h3{
	font-weight: bold;
	font-style: italic;
	font-size: 1.4rem;
	color: var(--color-pallet-secondry);
	margin-bottom: 30px;
}

.gallery-group > div{
	display: flex;
	justify-content: space-between;
}

.gallery-item{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.gallery-item > img{
	width: 360px;
	border: solid 2px var(--color-pallet-primary);
	border-radius: 15px;
	margin-bottom: 40px;
	overflow: hidden;
	pointer-events: none;
	transition: all 0.6s ease-in-out;
}

.gallery-item > span{
	display: block;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 40px;
	pointer-events: none;
	color: #A78664;
}

.gallery-item > i.zoom{
	position: absolute;
	background-color: #fff;
	width: 48px;
	height: 48px;
    left: 50%;
	top: 50%;
    transform: translate(-50%, -45%);	
	transition: all 0.3s ease-in-out;
	opacity: 0;
	pointer-events: none;
}

.gallery-item > i.zoom.hideout{
	top: 100px;
	opacity: 1;
}

.swiper-button-next{
    right: 500px;
    top: 380px;	
}

.swiper-button-prev{
    left: 500px;
    top: 380px;	
}

ul.features-items{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin-top: 50px;
}

ul.features-items > li{
	width: 27%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	margin: 30px;
}

ul.features-items > li > i{
	width: 80px;
	height: 80px;
	background-color: var(--color-pallet-secondry);
	margin-bottom: 30px;
}

ul.features-items > li:nth-child(3) > i,
ul.features-items > li:nth-child(4) > i,
ul.features-items > li:nth-child(5) > i{
	width: 90px;
	height: 90px;
}

ul.features-items > li > strong{
	font-weight: bold;
	font-size: 1.2rem;
	color: var(--color-pallet-secondry);
	margin-bottom: 10px;
}

ul.features-items > li > p{
	text-align: center;
}

section.contacts{
	background-color: var(--color-pallet-primary);
	padding: 20px;
	color: var(--color-white);
}

section.contacts > ul{
	display: flex;
}

section.contacts > ul > li{
	display: flex;
	font-size: 1.2rem;
	font-weight: bold;
	padding-right: 40px;
	align-items: center;
}

section.contacts > ul > li > i{
	width: 32px;
	height: 32px;
	margin-right: 10px;
}

section.contacts > ul > li:first-child{
	flex-grow: 1;
	padding-right: 0px;
}

section.footer{
	background-color: var(--color-pallet-primary-dark);
}

section.footer > ul{
	display: flex;
	justify-content: space-between;
	padding: 40px 0px 40px 0px;
	color: #e1e1e1;
}

section.footer > ul.footer-content{
	align-items: flex-start;
}

section.footer > ul.footer-content > li{
	width: 45%;
}

.footer-links{
	margin-bottom: 50px;
}

.footer-links > a{
	color: #e1e1e1;
}

.footer-links > a:hover{
	color: #fff;
}

.footer-logo{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 50px;
}

.footer-logo > img{
	width: 100px;
}

.footer-logo > p{
	color: #e1e1e1;
	line-height: 2;
	width: calc(95% - 100px);
}

section.footer > ul.footer-bottom{
	display: block;
	border-top: solid 1px #8F7461;
	padding: 20px 0px 20px 0px;
}

section.footer > ul.footer-bottom > li > ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

section.footer > ul.footer-bottom a{
	color: #e1e1e1;
	text-decoration: underline;
}

section.footer > ul.footer-bottom a:hover{
	color: var(--color-white);
}

#map_canvas{
	height: 300px;
}

form#contact-form{
	display: flex;
	flex-direction: column;
}

form#contact-form > *{
	margin-bottom: 15px;
}

form#contact-form input,
form#contact-form textarea{
	outline: none;
	font-family: basefont;
	font-size: 1rem;
	background-color: #896F5D;
	border: solid 1px #44352c;
	border-radius: 10px;
	line-height: 2;
	padding: 5px;
	color: #dbd0c8;
	resize: none;
}

form#contact-form input:focus,
form#contact-form textarea:focus{
	border: solid 1px #442e20;
	color: #fff;
}


form#contact-form input::placeholder, form#contact-form textarea::placeholder{ 
	color: #dbd0c8;
	opacity: 1;
}

form#contact-form input:focus::placeholder, form#contact-form textarea:focus::placeholder{ 
	color: #beafa4;
	opacity: 1;
}

form#contact-form > div{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

form#contact-form > div > p{
	direction: ltr;
	text-align: left;
	width: 60%;
}

form#contact-form > div > p a{
	color: #e1e1e1;
	text-decoration: underline;
}

form#contact-form > div > p a:hover{
	color: #fff;
}

.footer-social{
	display: flex;
}

.footer-social > a{
	width: 48px;
	height: 48px;
	background-color: var(--color-pallet-secondry);
	margin-right: 15px;
	border-radius: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.footer-social > a:hover{
	background-color: var(--color-pallet-accent);
}

.footer-social > a > i{
	background-color: var(--color-white);
}

a.page-goto-top > img{
    width: 45px;
    height: 45px;
}

a.page-goto-top{
    display: block;
    position: fixed;
    cursor: pointer;
    bottom: -500px;
	left: 20px;
    z-index: 1000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
	overflow: hidden;
}

a.page-goto-top.visible{
    bottom: 20px;
}

.slide-menu{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background-color: var(--color-pallet-primary);
    top: 1500px;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
}

.slide-menu.visible{
    top: 0;
}

.slide-menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.slide-menu > img{
	width: 48px;
	height: 48px;
    display: block;
    margin-top: 30px;
    cursor: pointer;
}

.slide-menu > nav{
    display: block;
    margin-top: 30px;
}

.slide-menu > nav a{
    display: block;
    color: var(--color-white);
    font-size: 1.4rem;
    font-weight: bold;
    padding: 15px;
	border-bottom: solid 1px var(--color-pallet-lighter);
}

.slide-menu > nav a:last-child{
	border-bottom: none;
}

.slide-menu > nav a:hover{
    color: var(--color-pallet-secondry);
}

.dlg_title{
	font-weight: bold;
	font-size: 1.1rem;
	padding-bottom: 20px;
}

.err_line{
	line-height: 1.5;
	color: var(--color-pallet-secondry)
}

.btn.dlg{
	padding: 10px 20px 10px 20px;
	margin-top: 15px;
	margin-left: auto;
}