

/*
<?php if( $detect->isMobile() && !$detect->isTablet() ){ ?><!--mobile--><?php } ?> 
<?php if( $detect->isTablet() ){ ?><!--tablet--><?php } ?>
<?php if( !$detect->isTablet() && !$detect->isMobile() ){ ?><!--desktop--><?php } ?>

<jdoc:include type="component" />
<jdoc:include type="modules" name="contact-form" />
					
					
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&display=swap');





body,html{
	margin:0px;
	padding:0px;
	width:100%;
	min-height:100%;
	height:100%;
	background:#FFF;
	font-weight:400;
	color: #2F2F2F;
	scroll-behavior: smooth;
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

body{
	
}

ul,li{
  list-style:none;
  padding:0;
  margin:0;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
	outline: none;
}
	
.overFlowXHidden{
 overflow-x:hidden;
}


:root {
  --cl-white: #fff;
  --cl-dark: #4F4F4F;
  --cl-dark: #000;
  --cl-light-brown: #F0E4D4;
  --cl-dark-brown: #AB8E66;
  --menu-hover: #AB8E66;
}




/*********
FONTS 
**************/
h1,h2,h3,h4,h5,h6,span,article,p,a,ul,li,nav,button,div{
	padding:0px;
	margin:0px;
	text-decoration:none;
	color: var(--cl-dark);
	font-family: 'Montserrat', sans-serif;
	font-weight: normal;
}

a{
	color:var(--cl-dark);
	cursor:pointer
}

a:hover{
	color:var(--cl-dark-brown);
}

p,
.article ul li{
    font-size: 110%;
    line-height: 160%;
}

.cl-white{
	color:var(--cl-white)
}

.section-title-Playfair{
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	font-size: 36px;
	font-size: calc(14px + 2vh);
}
 
.small-fonts{
	font-size:12px;
}

h4{
	font-weight:300
}

.text-bg-1{
	background:var(--cl-dark-brown);
	color:var(--cl-white);
	padding:5px;
}




/************************
Main components
*************************/

.wrp{
  max-width:1920px;
  width:96%;
  margin:auto;
  position:relative
}

.wrp-small-1200{
	max-width:1200px;
	margin:auto;
	width:90%;
}


.wrp-800{
	max-width:800px;
	margin:auto;
	width:90%;
}

.wrp-1000{
	max-width:1000px;
	margin:auto;
	width:90%;
}

.container{
	max-width:1200px;
	margin:auto;
	width:90%;
}



.cd-main-content {
  /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
  min-height: 100%;
  position: relative;
  background-color: #ffffff;
  z-index: 3;
  padding-top: 100px;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.cd-main-content.lateral-menu-is-open {
  /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
  -webkit-transform: translateX(-300px);
  -moz-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  -o-transform: translateX(-300px);
  transform: translateX(-300px);
}

header.lateral-menu-is-open {
  /* translate to show the lateral menu */
  -webkit-transform: translateX(0);
  -moz-transform: translateX(-0);
  -ms-transform: translateX(-0);
  -o-transform: translateX(-0);
  transform: translateX(-0);
}

.body-top{
	margin-top:0px;
	min-height: 60vh;
}




/************************
INTRO POPUP
*************************/
#intro-hp.bts-popup-intro {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1.3s 0s, visibility 0s 0.8s;
  -moz-transition: opacity 1.3s 0s, visibility 0s 0.8s;
  transition: opacity 1.3s 0s, visibility 0s 0.8s;
  z-index: 99999999999999999999999999;
	height: 100vh;
}

#intro-hp.bts-popup-intro.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.0s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.0s 0s, visibility 0s 0s;
  transition: opacity 0.0s 0s, visibility 0s 0s;
}

#intro-hp .bts-popup-intro-container {
  position: absolute;
  width: 90%;
  max-width: 800px;
  height:400px;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin: auto;
  background: #fff;
  border-radius: none;
  text-align: center;
}

#intro-hp .left-side{
 position: relative;
 height:400px;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

#intro-hp .is-visible .left-side {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

#intro-hp .right-side{
	 position: relative;
	 height:400px;
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  transform: translateY(40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 3.8s;
  -moz-transition-duration: 3.8s;
  transition-duration: 3.8s;
  opacity:0;
  transition:all ease 3s
}

#intro-hp .is-visible .right-side {
	opacity:1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition:all ease 2s
}

#intro-hp .bts-popup-intro-container img {
  padding: 20px 0 0 0;
}

#intro-hp .bts-popup-intro-container p {
  color: white;
  padding: 10px 40px;
}

#intro-hp .bts-popup-intro-container .bts-popup-intro-button {
  padding: 5px 25px;
  border: 2px solid black;
  display: inline-block;
  margin-bottom: 10px;
}















/************************
HEADER
*************************/
header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  /* Force Hardware Acceleration in WebKit */
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  transition:all ease 0.4s;
}




header.header{
	height:100px;
	background:#fff;
	display:block;
    z-index: 5;
    position: fixed;
	transition:all box-shadow 0.4s;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}


body.frontpage header{
	box-shadow: rgba(149, 157, 165, 0.0) 0px 8px 24px
}

header.header.scroll{
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	transition:all box-shadow 0.4s;
}
 

header .logo-pos{
	position:absolute;
	left:0;
	width:272px;
	height:66px;
	display:block;
	top:17px;
}
 
header .logo{
	background:url(../background/temp-img/svg/gala-logo.png)no-repeat;
	width:272px;
	height:66px;
	display:block;
	background-size: 272px 66px;
}




header .menu-horizontal-pos {
	position:absolute;
	top:42px;
	right:350px;
	height:40px;
	width:670px;
	display:block;
}


header .book-appointment-pos {
	position:absolute;
	top:30px;
	right:120px;
	height:40px;
	display:block;
}

header .search-pos{
	position:absolute;
	top:36px;
	right:60px;
	height:32px;
	width:32px;
	display:block;
	cursor:pointer;
}

.header-search-icon{
	background:url(../background/temp-img/svg/search-icon.svg)no-repeat;
	width:32px;
	height:32px;
	display:block;
	background-size: 32px 32px;
	transition:all ease .3s;
}



header .social-pos {
	position:absolute;
	top:10px;
	right:0;
	height:60px;
	width:40px;
	display:block;
}

header .social-ctn .social-icon {
    text-align: center;
    margin: auto;
}

header .social-ctn li {
	width:100%;
	display:block;
	margin-bottom:5px
}

header .social-ctn li:last-child {
	margin-bottom:0px
}


header .phone-ctn{
	width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    right: 50px;
    top: 14px;
	background:url(../background/temp-img/svg/call-icon.svg)no-repeat;
	width:22px;
	height:30px;
	display:block;
	background-size: 22px 30px;
}

/************************
ICONS
*************************/
.social-icon.social-facebook{
	background:url(../background/temp-img/svg/social-facebook.svg)no-repeat;
	width:24px;
	height:24px;
	display:block;
	background-size: 24px 24px;
	transition:all ease .3s;
}

.social-icon.social-facebook:hover{
	background:url(../background/temp-img/svg/social-facebook-hover.svg)no-repeat;
	transition:all ease .3s;
}

.social-icon.social-instagram{
	background:url(../background/temp-img/svg/social-instagram.svg)no-repeat;
	width:24px;
	height:24px;
	display:block;
	background-size: 24px 24px;
	transition:all ease .3s;
}

.social-icon.social-instagram:hover{
	background:url(../background/temp-img/svg/social-instagram-hover.svg)no-repeat;
	width:24px;
	height:24px;
	display:block;
	background-size: 24px 24px;
	transition:all ease .3s;
}

.social-icon.social-youtube{
	background:url(../background/temp-img/svg/youtube-icon.svg)no-repeat;
	width:24px;
	height:24px;
	display:block;
	background-size: 24px 24px;
	transition:all ease .3s;
}


.social-icon.social-youtube:hover{
	background:url(../background/temp-img/svg/youtube-icon-hover.svg)no-repeat;
	width:24px;
	height:24px;
	display:block;
	background-size: 24px 24px;
	transition:all ease .3s;
}



/************************
FOOTER
*************************/
footer{
  width:100%;
  display:block;
  background:var(--cl-light-brown);
  padding:50px 0 30px 0;
  margin-top:100px;
}


body.footer-no-margin-top footer{
	margin-top:0px;
}

footer .logo-contact-ctn{
	max-width:600px;
	margin:auto;
	text-align:center;
	border-bottom: 1px solid #d5cdc2;
	height: 180px;
}

footer .logo-contact-ctn .border-right{
	border-right:1px solid #d5cdc2
}


footer .logo-contact-ctn .footer-logo-ctn{
	margin:auto;
	width: 142px;
	margin-top: 20px;
}

footer .logo-contact-ctn .footer-contact-ctn{
	margin-top: 20px;
}

footer .social{
	margin:15px auto 0 auto
}

footer .footer-button-pos {
    width: 100%;
    text-align: center;
    margin: 30px auto;
}

footer .border-line {
	background:#d5cdc2;
	margin:30px 0;
	height:1px;
	display:block;
}


.contact-page footer  {
	margin-top: 0;
}


.footer-logo-ctn .footer-logo{
	background:url(../background/temp-img/svg/footer-logo.png)no-repeat;
	width:142px;
	height:140px;
	display:block;
	background-size: 142px 140px;
}



/************************
INSIDE ARTICLES CSS
*************************/
.article p:after{
	content:"";
	display:block;
	padding:0 0 20px 0;
}

.article h2,
.article h3{
	font-size:26px;
	font-weight:bold;
	margin-bottom:20px;
}

.article ul li{
	margin-bottom:20px;
} 

/************************
IMAGES STYLES
*************************/
.images-full-width img{
	width:100%;
	height:100%;
	object-fit:cover;
}

.images-width-80 img{
	width:80%;
	height:100%;
	object-fit:cover;
}

.image-thumb-carousel img{
	display: block;
    width: 460px;
    height: 700px!important;
    width: 100%;
    object-fit: cover;
}
 

.brans-logos-ctn{
	text-align: center;
    margin: auto;
    display: table;
}

.brans-logos-ctn .brands-logo-img{
	width:200px!important;
	height:auto!important;
}


/************************
INTRO
*************************/
.intro-homepage{
	width: 100%;
    max-height: 800px;
    display: block;
    position: relative;
    min-height: 800px;
    max-width: 1980px;
    margin: 0 auto 100px auto;
}

@media (max-width:1480px) {
	.intro-homepage{
		min-height: 750px;
	}
}


@media (max-width:1280px) {
	.intro-homepage{
		min-height: 700px;
	}
}

@media (max-width:980px) {
	.intro-homepage{
		min-height: 540px;
	}
}

@media (max-width:768px) {
	.intro-homepage{
		min-height: 430px;
	}
}

@media (max-width:680px) {
	.intro-homepage{
		min-height: 390px;
	}
}

@media (max-width:480px) {
	.intro-homepage{
		min-height: 200px;
	}
}



.video-overflow{
	overflow:hidden;
	max-height:800px;
	max-width:1980px;
	width: 100%;
}

.intro-homepage .arc-pos{
    width: 460px;
    height: auto;
    display: block;
    position: absolute;
    right: 0;
    margin: auto;
    bottom: -330px;
    z-index: 2;
    left: 0;
}








.arc-pos .top-arc{
	width: 100%;
    height: 775px;
    background: #AB8E66;
    display: block;
    border-radius: 130% 130% 0 0;
}

.ctn-arc{
	background: #AB8E66;
    background: url(../background/temp-img/svg/intro-door.svg) no-repeat;
    background-size: 460px 680px;
    width: 460px;
    height: 680px;
    padding: 160px 60px 0px 60px;
}

.fonts-arc h1,
.fonts-arc p{
	color:#fff;
	text-align:center;
}


.zoom-in-zoom-out--- {
  animation: zoom-in-zoom-out 8s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
	letter-spacing:1px
  }
  50% {
    transform: scale(2.5, 2.5);
  }
  100% {
    transform: scale(1, 1);
	letter-spacing:6px
  }
}


.fonts-arc h1{
	font-size: 28px;
    margin-bottom: 26px;
	line-height:36px;
	width: 100%;
    margin: 0 auto 15px auto;
}
 
.fonts-arc p{
	font-size:16px;
}

.ctn-arc .arc-key{
background: url(../background/temp-img/svg/arc-key.svg) no-repeat;
    background-size: 100px auto;
    width: 100px;
    height: 46px;
    display: block;
    -webkit-animation: mover--- 1s infinite alternate;
    animation: mover--- 1s infinite alternate;
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.intro-homepage .video-pos{
	position:absolute;
	left: 0;
	right:0;
	margin:auto;
	max-height:800px;
}

.intro-homepage .video{
	height: auto;
    width: 100%;
    margin: auto;
    text-align: center;
	
}


.intro-homepage .video-overlay .overlay{
	position:absolute;
	z-index:1;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0);
	display:block;
	left:0;
	right:0;
	top:0;
	bottom:0
}


.intro-homepage .video-overlay .overlay.dark{
	background:rgba(255,255,255,0.5);
}




/************************
SECTION STYLE 1
*************************/
.section-style-1 {
	position:relative;
	height:700px
}

.section-style-1 .image-size{
	display: flex;
    height: 720px!important;
}

.section-style-1 .image-size img{
	height: 720px!important;
    width: 90%;
    width: 100%;
    object-fit: cover;
}

.section-style-1 .section-box-center{
    position: absolute;
    margin: auto;
    width: 80%;
    display: table;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}

.section-style-1-video {
	position:relative;
	height:650px
}



/************************
SECTION FULL IMAGE WIDTH
*************************/
.section-full-image-width-1{
	width:100%;
	height:600px;
	display:block;
	position:relative;
}

.section-full-image-width-1 .contain-wrp{
  max-width:1800px;
  width:96%;
  margin:auto;
}

.section-full-image-width-1 .text-pos{
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    max-width: 50%;
    height: 100px;
    margin: auto;
}

.section-full-image-width-1 .image-overlay{
	position:relative;
	z-index:1;
	position:absolute;
	left:0;
	right:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.)
}

.section-full-image-width-1 .image-full-width {
	width:100%;
	height:100%;
	position:relative;
}

.section-full-image-width-1 .image-full-width img{
	width:100%;
	height:100%;
}

.section-slider-thumbs .item {
	align-items: center;
	justify-content: center;
	height: 600px;
	overflow:hidden;
	transition:all ease .3s;
}

.section-slider-thumbs .images-size a img{
	width: 100%;
    object-fit: cover;
    height: 100%;
	transform: scale(1.0);
	transition:all ease 4s;
}

.section-slider-thumbs .images-size a img:hover{
	transform: scale(1.1);
}

.slider-dots-color.owl-theme .owl-dots .owl-dot.active span,
.slider-dots-color.owl-theme .owl-dots .owl-dot:hover span {
    background: #ab8e66;
}

/*************
HEADER PAGES
******************/
.header-in-pages{
	width:100%;
	padding:30px 0;
	display:block;
	border-bottom:1px solid var(--cl-light-brown);
	margin-bottom:60px
}

.header-in-pages-font h1{
	color:var(--cl-dark-brown);
}

.contact-page .header-in-pages{
	margin-bottom:0;
}

/*************
VIDEOS
******************/
.section-video-1 {
	width:100%;
	display:block;
}

.movie-ctn{
	max-width:1920px;
	margin:auto
}

.movie-ctn .overlay-video{
	position:absolute;
	z-index:2;
	width:100%;
	height:100%;
	background:rga(0,0,0,0.5);
	top:0;
	bottom:0;
	left:0;
	right:0;
}

.movie-ctn .video{
	width:100%;
	height:100%;
	max-height:700px
}

.movie-ctn.movie-ctn-full-width .video{
	max-width:1920px;
	margin:auto;
	max-height:100%
}

.movie-ctn .details-pos{
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: rgba(255,255,255,0.2);
    display: block;
    width: auto;
    max-width: 560px;
    left: 10%;
    display: table;
    padding: 20px;
    border: 0px solid #fff;
	z-index:3;
	height:200px
}

.movie-ctn .details-pos h3,
.movie-ctn .details-pos p{
	color:#fff;
}

/*************
CATEGORIES MAIN PAGE STRUCTURE (products.php)
******************/
.categories-main-page {
	  display: flex;
	flex-direction: row;
	flex-wrap:nowrap;
	width: 100%;
}

.categories-main-page .left-sidebar{
	width:300px;
	display:block;
	margin-right:30px;
}

.mobile-filter {
	display:none;
}

.categories-main-page .main-body-category-items{
	width:100%;
	height:100%;
	display:block
}

.categories-main-page .no_products_filter {
    background: #f7f7f7;
    text-align: center;
    padding: 50px;
    max-width: 400px;
    margin: auto;
    border: 1px solid #ccc;
}

/**********
PRODUCTS ITEM ROW LAYOUT
****************/
.product-item-layout{
	max-height:700px;
	height:700px;
	height:100%;
	display:block;
	position:relative;
	margin-bottom:20px;
	cursor:pointer;
	overflow:hidden;
	border-radius:40px;
	border-radius:20px;
	border-radius:00px;
}

.product-item-layout .title{
	position:absolute;
	bottom:30px;
	left:0;
	right:0;
	width:auto;
	text-align:center;
	height:30px;
	margin:auto;
	z-index:4;
	transition:all ease 0.3s;
	background:transparent;
	display:table;
	padding:10px 20px;
}
 
.product-item-layout .title h3{
	font-size:22px;
	color:#fff;
	transition:all ease 0.3s
}


.product-item-layout:hover .title{
	bottom:50%;
	transition:all ease 0.3s;
	background:#AB8E66;
}

.product-item-layout:hover .title h3{
	font-size:26px;
	transition:all ease 0.3s;
	font-weight:normal;
}


.product-item-layout .image-overlay{
    position: absolute;
    z-index: 3;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    height: 100%;
	background:rgba(255,255,255,.2);
	transition:all ease 0.3s
}

.product-item-layout:hover .image-overlay{
	background:rgba(255,255,255,.0);
	transition:all ease 0.3s
}

.product-item-layout img{
	max-height:700px;
	height:100%;
	height:700px;
	width: 100%;
	border-radius:40px;
	border-radius:20px;
	border-radius:0px;
	transition: transform .8s ease;
	transform: scale(1.0);
	object-fit:cover
}

.product-item-layout:hover  img{
	transform: scale(1.02);
}




/*************
PAGINATION
******************/
.pagination {
	display:flex;
	padding:20px 0;
	border-top:1px solid #d7d7d7;
	border-bottom:1px solid #d7d7d7;
}

.pagination .pagination-list{
	display:flex;
	margin: auto;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.pagination .pagination-list li{
	float:left;
	margin-right:10px
}

.pagination .pagination-list li a{
    width: 28px;
    display: table;
    border: 1px solid var(--cl-dark-brown);
    height: 28px;
    text-align: center;
    padding: 5px 0 5px 0;
}

.pagination .pagination-list li a:hover{
    color:var(--cl-white);
	background:var(--cl-dark-brown);
}



.pagination_result_counter{
	margin-top:20px;
	font-size:12px
}




/*************
BRANDS 
******************/
.brands-logos-ctn .brands-logos-col{
	margin-bottom:30px;
}

.brands-logos-ctn .brands-logos-layout{
	text-align: center;
    padding: 20px 0 20px 0;
    height: 100px;
    display: table;
}

.brands-logos-ctn .brands-logos-layout img{
	text-align:center;
	width:200px;
	height:auto;
	transition:all ease 0.3s;
	filter: grayscale(100%);
}

.brands-logos-ctn .brands-logos-layout img:hover{
	-webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
	filter: grayscale(0%);
	transition:all ease 0.3s
}


@media (max-width:767px) {
	
	
}



/*************
PRODUCT PAGE 
******************/
.product-page-wrp{
 	display:block;
	width:100%;
	max-width:1200px;
	margin:auto
}


.product-page-layout {
	display: flex;
	flex-direction: row;
	flex-wrap:nowrap;
	width: 90%;
	margin:30px auto 0 auto
}

.product-page-layout .images-ctn{
	display:block;
	width:100%;
	max-width:60%;
	margin-right:50px;
} 

.product-page-layout .details-ctn{
	display:block;
	width:100%;
	max-width:40%;
} 

.border-top-sep{
	border-top:1px solid var(--cl-light-brown);
	height:1px;
	display:block;
	width:100%;
}

.product-page-layout .images-ctn img.main-image{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

@media (max-width:767px) {
	
	.product-page-layout {
		display: inherit;
	}

	.product-page-layout .images-ctn {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 100px;
	}
	
	.product-page-layout .details-ctn {
		max-width: 100%;
	}
	
}


/*************
BRAND PAGE
******************/
.brand-ctn{
	height:600px;
	display:block;
	border-radius:20px;
	margin-bottom:20px;
	position: relative;
	cursor:pointer;
}

.brand-overlay .overlay{
    position: absolute;
    z-index: 3;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
    height: 100%;
	background:rgba(255,255,255,.5);
	transition:all ease 0.3s
} 

.brand-ctn:hover .overlay{
	background:rgba(255,255,255,.0);
	transition:all ease 0.3s
}


.brand-ctn .brand-logo {
    position: absolute;
    z-index: 4;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 80%;
    text-align: center;
    height: 100px;
}

.brand-ctn .brand-logo img{
	width: 100%;
	max-width:200px;
	max-height:130px
}

.brand-ctn .brand-image-bg{
	width:100%;
	height:600px;
}


.brand-ctn .brand-image-bg img{
	width:100%;
	height:600px;
	border-radius:20px;
	object-fit:cover;
}
 
 



/***********
PRODUCT SLIDER
************/
.products-slider .swiper-container {
  width: 100%;
  height: 100%;
}
.slider__flex {
  display: flex;
  align-items: flex-start;
}
.slider__col {
  display: flex;
  flex-direction: column;
  width: 150px;
  margin-right: 32px;
  top: -0px;
	position: relative;
}

.slider__prev,
.slider__next {
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    height: 18px;
    display: table;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    bottom: -40px;
     width: 50%;
}

.slider__prev{
   width:50%;
}
.slider__next {
   width:50%;
  right: 0;
}


.slider_arrows {
	font-size:10px;
	color:#d8d8d8;
}


.slider__prev:focus,
.slider__next:focus {
  outline: none;
}
.slider__thumbs {
  height: calc(600px - 0px);
}
.slider__thumbs .slider__image {
  transition: 0.25s;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
}
.slider__thumbs .slider__image:hover {
  opacity: 1;
}
.slider__thumbs .swiper-slide-thumb-active .slider__image {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 1;
}
.slider__images {
  height: 600px;
}
.slider__images .slider__image img {
  transition: 3s;
}
.slider__images .slider__image:hover img {
  transform: scale(1.1);
}
.slider__image {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border-radius: 0px;
  overflow: hidden;
}
.slider__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor:pointer;
}

.slider__image .thumbs-height{
	height:360px!important;
}

@media (max-width: 1200px) {
  .slider__flex {
    flex-direction: column-reverse;
  }
  .slider__col {
    flex-direction: row;
    align-items: center;
    margin-right: 0;
    margin-top: 24px;
    width: 100%;
	top: 0px;
  }
  .slider__images {
    width: 100%;
  }
  .slider__thumbs {
	height: 100px;
    width: 100%;
    margin: 0;
  }
  .slider__prev,
  .slider__next {
    height: auto;
    width: 32px;
  }
}




 
 /************
 Modals MANUFACTURER ($modals)
************/
/* 1. Ensure this sits above everything when visible */
.modal {
    position: absolute;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.modal.is-visible {
    visibility: visible;
}

.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 1);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.style-white .modal-overlay {
	background: rgba(255,255,255,0.9);
}


.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.modal-wrapper {
  position: fixed;
  z-index: 9999;
  top: 6em;
  left: 50%;
  width: 32em;
  margin-left: -16em;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
}


.modal.style-white .modal-wrapper{
	position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
     background-color:transparent;
    box-shadow: 0 0 1.5em hsl(0deg 0% 0% / 0%); 
    max-width: 400px;
    margin: auto;
    height: 200px;
	width:90%;
}
	
	
.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}

.modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}

.modal-header,
.modal-content {
  padding: 1em;
}

.modal-header{
	background:#fff;
	 box-shadow: 0 0 1.5em hsl(0deg 0% 0% / 10%);
}




.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1em;
  color: #aaa;
  background: none;
  border: 0;
}

.modal-close:hover {
  color: #777;
}

.modal-heading {
    font-size: 2rem;
	color: var(--cl-dark-brown);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
	font-family: 'Playfair Display', serif;
}

 

.modal-content > *:first-child {
  margin-top: 0;
}

.modal-content > *:last-child {
  margin-bottom: 0;
}


.modal.style-white h3{
	font-size:26px
}

/**************
FILTER LEFT SIDE
*************/
ul.filter-ctn{}

ul.filter-ctn li{
	width:100%;
	margin-bottom: 10px;
}


/************************
CONTACT PAGE
*************************/
.contact-pos{
    max-width: 600px;
    width: 90%;
    position: absolute;
    display: block;
    right: 5%;
    top: 60px;
}

.contact-details h2{
	margin-bottom:20px;
}

.contact-details h4,
.contact-details p{
}

.contact-details p{
	font-size:14px;
}

.contact-details a{
	color:var(--cl-dark-brown)
}







/******
 accordion-1 
 ***********/
#accordion-1 .head{
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:20px;
}

#accordion-1 .head h3{
	cursor:pointer;
	width: 95%;
}

#accordion-1.accordion-bottom-space{
    margin-bottom: 50px;
    border-bottom: 1px solid #d0ab85;
    padding-bottom: 20px;
}

#accordion-1 .arrow{
  background:url(../background/temp-img/svg/arrow-down.png) no-repeat;
  width:12px;
  height:6px;
  transition: 0.25s ease;
  opacity: 0.3;
  transform: rotate(-90deg);
}

#accordion-1 .head:hover .arrow{
  opacity: 1;
}

#accordion-1 .head:hover, 
#accordion-1 .active{
}

#accordion-1 .arrow-animate{
  transform: rotate(0deg);
  opacity: 1;
}

#accordion-1 .content{
  display: none;
}















#expand-div .expand-title{
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:20px;
}

#expand-div .expand-title h3{
	
}

#expand-div.accordion-bottom-space{
    margin-bottom: 50px;
    border-bottom: 1px solid #d0ab85;
    padding-bottom: 20px;
}

#expand-div .arrow{
  background:url(../background/temp-img/svg/arrow-down.png) no-repeat;
  width:12px;
  height:6px;
  transition: 0.25s ease;
  opacity:1;
  transform: rotate(-90deg);
}

#expand-div .toogle-expand:hover, 
#expand-div .active{
}

#expand-div .arrow-animate{
  transform: rotate(0deg);
  opacity: 1;
}

#expand-div .content{
	display: none;
	width: 100%;
}




























  
  
  
  
/**************
INPUT STYLE
***************/
.input-style-1{
	width: 100%;
    padding: 5px 5px;
	border: 1px solid #ab8e66;
	height:40px
}

.google-map{
	width:100%;
	height:800px;
}





/***********
BOOK APPOINTMENT PAGE
***********/

ul.info-vertical li{
	margin-bottom:20px;
	
}



/***********
INPUT STYLE
***********/
.input-style-v1 .input-ctn{
	width:100%;
	position:relative;
}

.input-style-v1 .input-ctn input{
	width:100%;
	padding:15px 15px 15px 55px;
	border: 1px solid #ab8e66;
	height:40px;
}


.input-style-v1 input:focus{
	font-size:80%;
	line-height: 100%;
  	font-family: 'Montserrat', sans-serif;
	font-weight: normal;
	width:100%;
}


.input-style-v1 .input-ctn input:focus{
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.input-style-v1 label.title {
    height: 40px;
    display: table;
    position: relative;
}

.input-style-v1 label.title h3 {
    cursor: pointer;
    position: relative;
    top: -2px;
}

.input-style-v1 .form-group-label{
	width:40px;
	height:100%;
	display:block;
	background:#ab8e66;
	position:absolute;
}

.input-style-v1 .form-group-label:focus .form-group-label{
	background:#000;
}

.input-style-v1 .input-ctn .form-group-label .icon{
	position: relative;
    top: 8px;
    width: 100%;
    height: 40px;
    text-align: center;
    display: table;
}

.input-style-v1 .input-ctn .form-group-label .icon {
	color: #fff;
	font-size: 20px;
}
	

.input-style-v1 .toogle-input {
	float:left;
	margin-right:10px;
	position: relative;
    top: 3px;
}

.input-style-v1 .main-expand-head,
.input-style-v1 .expand-title{
	display:flex;
}

.input-style-v1 .arrow-pos {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
    float: right;
    position: relative;
    top:-30px;
}

.input-style-v1 h4{
	font-size:14px;
	margin-bottom:10px;
}


.input-style-v1 .arrow{
  background:url(../background/temp-img/svg/arrow-down.png) no-repeat;
  width:12px;
  height:6px;
  transition: 0.25s ease;
  opacity: 0.3;
  transform: rotate(-90deg);
}

.input-style-v1 .expand-head:hover .arrow{
  opacity: 1;
}
 
.input-style-v1 .arrow-animate{
  transform: rotate(0deg);
  opacity: 1;
}

.input-style-v1 .vip-slider-images .item{
	height:200px;
}

.input-style-v1 .image-caroulel .item img{
	height:200px;
	object-fit:cover
}

.input-style-v1 input.checkbox-style-1[type=checkbox] {
  display: none;
  cursor: pointer;
}

.input-style-v1 label.title h3{
	cursor: pointer;
}

.input-style-v1 input.checkbox-style-1[type=checkbox] + label:before {
    content: '';
    -webkit-appearance: none;
    background-color: #fff;
    border: 1px solid #ab8e66;
    border-radius: 0;
    /* box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%); */
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 15px;
    float: left;
}

.input-style-v1 input.checkbox-style-1[type=checkbox]:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 8px;
    width: 7px;
    height: 14px;
    border: 1px solid #ab8e66;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.input-style-v1 textarea{
	width:100%;
	height:100px;
	padding: 15px;
    border: 1px solid #ab8e66;
	font-size:80%;
	line-height: 100%;
  	font-family: 'Montserrat', sans-serif;
	font-weight: normal;
}

.input-style-v1 .input-ctn input:focus::placeholder,
.input-style-v1 textarea:focus::placeholder{
	font-size:0
}








/*****
CHECKBOX
*******/
.checkbox-layout .label--checkbox {
  position: relative;
  cursor: pointer;
}

.checkbox-layout .checkbox {
  position: relative;
  top: 1px;
  margin: 0 1rem 0 0;
  cursor: pointer;
}

.checkbox-layout .checkbox:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  border: 1px solid #ab8e66;
}

.checkbox-layout .checkbox:checked:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: 0.5rem;
  border-color: #ab8e66;
  border-top-style: none;
  border-right-style: none;
}

.checkbox-layout .checkbox:after {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  background: #fff;
  cursor: pointer;
}

.checkbox-layout label.label--checkbox {
    font-size: 12px;
    line-height: 22px;
}


.mobile-filter .checkbox-layout .checkbox:after,
.mobile-filter .checkbox-layout .label--checkbox-select-all .checkbox:after{
	background: #f3f3f3;
}






/*****
CHECKBOX SELECT ALL
*******/
.checkbox-layout .label--checkbox-select-all {
  position: relative;
  cursor: pointer;
}

.checkbox-layout .label--checkbox-select-all .checkbox {
  position: relative;
  top: 1px;
  margin: 0 1rem 0 0;
  cursor: pointer;
}

.checkbox-layout .label--checkbox-select-all .checkbox:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 1rem;
  height: 1rem;
  border: 1px solid #323232;
}

.checkbox-layout .label--checkbox-select-all .checkbox:checked:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: 0.5rem;
  border-color: #323232;
  border-top-style: none;
  border-right-style: none;
}

.checkbox-layout .label--checkbox-select-all .checkbox:after {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  background: #fff;
  cursor: pointer;
}











/*****
EMAILS ALERT
*******/
#emails-alert.alert-overlay {
    width: 100%;
    min-height: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9999999999999999;
    background: rgba(0,0,0,0.5);
}

#emails-alert.alert-overlay.display_none{
  display:none;
}

#emails-alert .emails-alert {
  position: fixed;
  bottom: 0;
  z-index: 9999999999999;
  width: 100%;
  -webkit-animation: alert-in 0.5s;
  -moz-animation: alert-in 0.5s;
  -o-animation: alert-in 0.5s;
  animation: alert-in 0.5s;
  width: 100%;
  max-width: 400px;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  height: 400px;
  padding: 20px;
  border-radius: 0;
}

#emails-alert .emails-alert .top-row{
  display:block;
  width:100%;
  padding:20px 10px 10px 10px;
  border-radius:0 ;
}

#emails-alert .emails-alert .top-row.success{
  background:#7b9e42;
}
 
#emails-alert .emails-alert .top-row.error{
  background:#e75e60;
}

#emails-alert .emails-alert .top-row .image-icon{
  width:66px;
  height:66px;
  margin:0 auto 25px auto;
}


#emails-alert .emails-alert .top-row .image-icon img{
  width:66px;
  height:66px;
  margin:auto;
}

#emails-alert .emails-alert .top-row h3{
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
}

#emails-alert .emails-alert .top-row h4{
  color:#fff;
  text-align:center;
  font-size:12px;
  line-height:20px
}

#emails-alert .emails-alert .top-row h4 a{
  color:#fff;
  font-weight:700
}

#emails-alert .emails-alert .top-row h4 a:hover{
  color:#000;
}

#emails-alert .emails-alert .top-row hr{
  margin:10px 0;
  border:0px solid #fff;
  height:1px;
  width:100%;
  background:#fff;
  
}

#emails-alert .emails-alert .bottom-row{
  background:#fff;
  height:80px;
  display:block;
  width:100%;
   border-radius:0;
  padding:20px 0 20px 0;
  text-align:center;
}



@-webkit-keyframes alert-in {
0% {
opacity:0;
top:-100px
}

100% {
opacity:1;
top:0
}
}

@-moz-keyframes alert-in {
0% {
opacity:0;
top:-100px
}

100% {
opacity:1;
top:0
}
}

@-o-keyframes alert-in {
0% {
opacity:0;
top:-100px
}

100% {
opacity:1;
top:0
}
}

@keyframes alert-in {
0% {
opacity:0;
top:-100px
}

100% {
opacity:1;
top:0
}
}
 
#emails-alert .alert.alert-success-ctn,
#emails-alert .alert.alert-error {
margin:auto;
height:auto;
text-align:center
}

#emails-alert .alert.alert-error {
background:#c73537
}


#emails-alert .close-button  {
    line-height: 40px;
    transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    width: 100%;
    border-width: 2px;
    border-style: solid;
    position: relative;
    display: block;
    height: 40px;
    font-size: 16px;
    position: relative;
    font-weight: normal;
    border-radius: 0;
    line-height: 36px;
    letter-spacing: 1px;
    max-width: 260px;
    margin:auto;
}

#emails-alert .alert.alert-error h4,
#emails-alert .alert.alert-success-ctn h4 {
color: #fff;
font-weight: 400;
line-height: 20px;
font-size: 14px;
width: 90%;
margin: auto;
}

#emails-alert .alert.alert-success-ctn a {
color:#fff;
border-color:#23282b;
font-weight:700;
background:#000;
box-shadow: 0px 5px 10px #2d2d2d;
}

#emails-alert .alert.alert-error-ctn a {
color:#fff;
border-color:#e75e60;
font-weight:700
}


#emails-alert .close-button.error{
  background:#23282b;
}

#emails-alert .close-button.success{
  background:#23282b;
}





/***********
MODAL
***************/
.modal-v1.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 200ms;
  visibility: hidden;
  opacity: 0;
}

.modal-v1.overlay .cancel {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: default;
}
.modal-v1.overlay:target {
  visibility: visible;
  opacity: 1;
}

.modal-v1 .popup {
margin: 20% auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #666;
    width: 90%;
    box-shadow: 0 0 50px rgb(0 0 0 / 50%);
    position: absolute;
    height: auto;
    z-index: 999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 200px;
    display: table;
    max-width: 600px;
}
 
.modal-v1 .popup .close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
  opacity: 0.8;
  transition: all 200ms;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #666;
}
.modal-v1 .popup .close:hover {
  opacity: 1;
}
.modal-v1 .popup .content {
  overflow: auto;
}
.modal-v1 .popup p {
  margin: 0 0 1em;
}
.modal-v1 .popup p:last-child {
  margin: 0;
}

/***********
NEWSLETTER
***************/
.newsletter-style-ctn{
	max-width:800px;
	margin-top:30px;
}

.newsletter-style.input-style-v1 .input-ctn input{
	width:100%;
	padding:15px 15px 15px 15px;
	border: 1px solid #fff;
	height:40px;
	background:transparent;
	border-radius:4px;
	color:#fff; 
}

.newsletter-style.input-style-v1 .input-ctn input::placeholder{
	color:#fff;
	font-size:14px
}



.newsletter-style.input-style-v1 .input-ctn input:focus::placeholder {
	font-size:0
}














body.frontpage.white-header header.white-colors {
    height: 100px;
    background: transparent; 
    display: block;
    z-index: 5;
    position: fixed;
    transition: all box-shadow 0.4s;
    box-shadow: rgb(149 157 165 / 0%) 0px 8px 24px;
}

body.frontpage.white-header header.white-colors #cssmenu > ul > li > a {
    color: #fff;
}

body.white-header.frontpage .cd-main-content {
    padding-top:0;
}






/************************
INTRO POPUP
*************************/

/****
fontpage classes
body.hide-intro 
*************************/
#intro-hp.bts-popup-intro {
	opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.0s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.0s 0s, visibility 0s 0s;
    transition: opacity 0.0s 0s, visibility 0s 0s;
    height: 100%;
    overflow: hidden;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    
    max-width: 100%;
	display:none
}

#intro-hp.bts-popup-intro.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.0s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.0s 0s, visibility 0s 0s;
  transition: opacity 0.0s 0s, visibility 0s 0s;
	overflow:hidden;
 	box-shadow: 0px 22px 22px rgb(0 0 0 / 35%);
	display:inherit
}

#intro-hp .bts-popup-intro-container {
  position: absolute;
  width: 100%;
  max-width: 1020px;
  height:380px;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin: auto;
  border-radius: none;
  text-align: center;
  padding:20px;
  border: 1px solid #ab8e66;
    padding: 30px;
    max-width: 700px;
}

#intro-hp .left-side{
 position: relative;
 height:300px;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

#intro-hp.is-visible .left-side {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

#intro-hp .right-side{
	 position: relative;
	 height:300px;
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  transform: translateY(40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 3.8s;
  -moz-transition-duration: 3.8s;
  transition-duration: 3.8s;
  opacity:0;
  transition:all ease 3s;
}

#intro-hp.is-visible .right-side {
	opacity:1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition:all ease 2s
}

#intro-hp .bts-popup-intro-close{
	cursor: pointer;
	position: absolute;
    right: 20px;
    top: 20px;
    background: var(--cl-dark-brown);
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    line-height: 32px;
    color: #fff;
    opacity: 0.5;
	transition: all ease .3s
}

#intro-hp .bts-popup-intro-close:hover{
    opacity: 1;
	transition: all ease .3s
}



#intro-hp .intro-arc-pos .intro-arc-ctn{
	background: url(../background/temp-img/svg/intro-arc-2.svg) no-repeat;
    background-size: 216px 320px;
    width: 216px;
    height: 320px;
    padding: 0;
	margin:auto;
}

#intro-hp .intro-colors h1,
#intro-hp .intro-colors p{
	color:#AB8E66
}

#intro-hp .intro-colors h1{
	font-family: 'Playfair Display', serif;
    font-weight: normal;
    font-size: 24px;
}	
	
#intro-hp .intro-colors p{
	font-size:14px;
	text-align:left
}

#intro-hp .button-pos {
	position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}

#intro-hp .button-pos .btn{
	font-size:10px;
	padding: 10px 10px;
	padding: 2px 12px;
}

#intro-hp .key-pos {
	position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    display: block;
    width: 96px;
    height: 42px;
    margin: auto;
}
 
#intro-hp .intro-arc-pos .intro-key-ctn{
	background: url(../background/temp-img/svg/intro-key.svg) no-repeat;
    background-size: 90px auto;
    width: 90px;
    height: 42px;
    padding: 0;
    margin: auto;
    display: block;
	cursor:pointer;
}

#intro-hp .logo-arc-pos{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: table;
    bottom: 180px;
	width: 80px;
}

 #intro-hp .logo-arc-pos .logo{
	background:url(../background/temp-img/svg/gala-circle-logo.svg)no-repeat;
	width: 90px;
    height:90px;
    display: block;
    background-size: 90px 90px;
}

/***********
ANIMATION TEXT TITLE INTRO
*******************/
.animation-intro {
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  animation: fadeIn 1.5s forwards;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  display: table;
    margin: auto;
}

.animation-intro .first {
  display: inline-block;
  animation: firstSpan 1.5s forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
  position: relative;
  color: #ab8e66;
	text-align: center;
    width: 100%;
}

.animation-intro .oh {
  display: inline-flex;
  overflow: hidden;
}

.animation-intro .second {
  animation: secondSpan 1.5s forwards cubic-bezier(0.785, 0.135, 0.15, 0.86);
  font-weight: 100;
  z-index: -1;
  display: inline-block;
  color: #ab8e66;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1);
  } 
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes firstSpan {
 0% {
    transform: translateY(-100%);
  }
  60% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-0%);
  }
}

@keyframes secondSpan {
 0% {
    transform: translateY(-100%);
  }
  60% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-0%);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(200px);
  } 
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}









@media (max-width:768px) {
	#intro-hp .bts-popup-intro-container {
    height: auto;
    padding: 10px;
    display: table;
	}

	#intro-hp .intro-arc-pos .intro-arc-ctn {
		background-size: 216px 260px;
		width: 216px;
		height: 260px;
	}
		
	#intro-hp .logo-arc-pos {
		bottom: 190px;
	}
	
	#intro-hp .intro-arc-pos .intro-key-ctn {
    background: url(../background/temp-img/svg/intro-key.svg) no-repeat;
    background-size: 74px 34px;
    width: 74px;
    height: 34px;
	}

#intro-hp .logo-arc-pos .logo {
    background: url(../background/temp-img/svg/gala-circle-logo.svg)no-repeat;
    width: 80px;
    height: 80px;
    display: block;
    background-size: 80px 80px;
}

	#intro-hp .key-pos {
		bottom: 130px;
		width: 86px;
		height: 35px;
	}
	
	#intro-hp .button-pos {
		position: absolute;
		bottom: 60px;
		left: 0;
		right: 0;
	}

	#intro-hp .button-pos .btn {
		font-size: 12px;
		padding: 5px 5px;
		font-size: 10px;
	}
	
	#intro-hp .bts-popup-intro-container p {
    padding: 4px 10px;
	}


}









