@charset "utf-8";
@font-face {
  font-family: 'CormorantGaramond';
/*  src: url('../css/fonts/CormorantGaramond-Bold.ttf'); */
  src: url('../css/fonts/FuturaPTMedium.woff');
  font-weight: 700;
  font-style: normal;
}
@font-face { 
    font-family: "Jost-Regular";
/*	src: url("../css/fonts/Jost-Regular.ttf"); */
	src: url("../css/fonts/SFProDisplay-Regular.woff");
    font-style: normal;
    font-weight: 400;
}
@font-face { 
    font-family: "Jost-Medium";
/*	src: url("../css/fonts/Jost-Medium.ttf"); */
	src: url("../css/fonts/SFProDisplay-Medium.woff");
    font-style: normal;
    font-weight: 400;
}

/*---------------------------------------------*/
:root {
	--body-color: #323232;
	--body-background-color:#fff;
	--body-font-size:24px;	
	--body-font-family:'Jost-Regular',sans-serif;
	--top-height:55px;
	--header-height:86px;
	--footer-height:65px;
}
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  color: var(--body-color);
  background-color: var(--body-background-color);
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  letter-spacing: 0.5px;
  overflow-x: hidden;
  position: relative;
}
button:focus, 
select:focus,
input:focus,
textarea:focus 
{
	outline:0;
}
.wpcf7-spinner{
	display:none !important;
}
.wpcf7-not-valid-tip {
	margin-top:-30px;
}
.form_feedback .wpcf7-not-valid-tip {
  margin-top: 0;
}
dl, ol, ul{
	margin:0;
	padding:0;
	list-style:none;
}
a {
	color: #323232;
	text-decoration: none;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;	
}
a:hover {
	color: #555;
}
p{
  font-size: var(--body-font-size);
  line-height: 30px;
  color: #555;
}
.container-fill{ 
	max-width: 1768px;
	width: 100%;
	padding-right: 24px;
	padding-left: 24px;
	margin-right: auto;
	margin-left: auto;
}
.row{
	margin:0 !important;
}
.proclad{
	display:block;
	width:100%;
	height:var(--header-height);
}
header{
	position: absolute;
	top: 0;
	left: 0;
	z-index:1000;
	height:var(--header-height);
	display: inline-block;
	width: 100%;
	background: #00000042;
	box-shadow: 0px 3px 50px 3px rgba(0, 0, 0, 0.06);
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
  -ms-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;	
}
header.navbar-fixed{
	position: fixed;
	top: 0;
	left: 0;
	z-index:1000;
	background: #fff;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeDownMenu;
	animation-name: fadeDownMenu;  
}

@-webkit-keyframes fadeDownMenu {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeDownMenu {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.navibar{
	display: flex;	
	flex-wrap: nowrap;
	justify-content: space-between;
}
.top_menu, .top_btn{
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: row;
}
.top_menu > li,
.top_btn > li {
	line-height: var(--top-height);
	padding-top: 14px;
	padding-bottom: 14px;
	position: relative;
}
.top_menu > li a{
	position: relative;
	letter-spacing:1.6px;
	font-size:15px;
	margin-right: 1vw;
	text-transform: uppercase;
	cursor: pointer;
	color:#fff;
}
.navbar-fixed .top_menu > li a{
	color:inherit;
}
.top_menu > li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}
.dropdown-menu > li a::before,
.navbar-fixed .top_menu > li a::before {
  background-color: #323232;
}
.dropdown-menu > li.active a::before,
.navbar-fixed .top_menu > li.active a::before {
  background-color: #E3B873;
}

.top_menu > li > a:hover::before,
.top_menu > li.active>a::before,
.top_menu > li.menu-item-has-children:hover>a::before,
.top_menu .dropdown-menu > li > a:hover::before
{
	transform: scaleX(1);
}

header:hover .top_menu > li a:hover::before {
  background-color: #323232;
}
.top_menu > li.menu-item-has-children > a::after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f107";
  font-size: inherit;
  text-rendering: auto;
  margin-left: 5px;
}
.top_menu > li.menu-item-has-children:hover > a::after,
.top_menu > li.menu-item-has-children.open > a::after{
	content: "\f106";
}
.top_menu > li.menu-item-has-children.open > a::before{
	background-color: #323232;
	transform: scaleX(1);
}


.top_menu .dropdown-menu{
  top: var(--header-height);
  padding: 1rem;
  min-width: 100%;
}

.top_menu .dropdown-menu li{
  line-height: 1.5rem;
	
}
.top_menu .dropdown-menu li a{
  display: inline-block;
  padding-top: .5rem;
  color: inherit;
}

.top_menu.psy_menu{

}

.current-menu-item{
	color: #E3B873;
}

/* reverside menu */
@media (min-width: 1100px) {
.top_menu > li{ position:static; }
.top_menu ul.dropdown-menu{
  position: absolute;
  width: 100%;
  left: 0px;
  border-radius: unset;
  border: 0;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  padding: 1vw;
  text-align: center !important;
  overflow: visible !important;
}
.top_menu > li ul.dropdown-menu li{
   display: inline-block;
}
}
/* end reverside menu */

.top_menu.psy_menu .dropdown-menu li a{
	white-space: nowrap;
}
.block_fl_row{
  display: flex;
  flex-direction: row;	
}
.top_menu .menu_btn_top{
	position: static;
	padding-left: 2vw;
}
.menu_btn_top .full_screen{
	position: absolute;
	width: 100%;
	left: 0px;
	border-radius: unset;
	border:0;
	border-bottom:1px solid #ccc;
	border-top:1px solid #ccc;
	padding: 3vw;
}
.top_menu.psy_menu .dropdown-menu ul.categ_menu li a {
  white-space: normal;
  font-size: 1.5rem;
  margin-bottom:1rem;
}
.top_menu.psy_menu .dropdown-menu li a:hover{
	color:#E3B873;
}

.logo_sticky{
  margin: auto;
  margin-left: 0;
  margin-right: 0;  
  position: relative;
  padding: 0px;
  display: flex;
  flex-direction: column;
  transition: none;
}
.logo_sticky img{
	height:100%;
	max-height: 65px;
	filter: invert(100%);
}
.navbar-fixed .logo_sticky img{
	filter: none;
}
.txt_logo_bl{
	font-size:3rem;
	text-transform: uppercase;
	white-space: nowrap;
}
.top_btn{
	
}
.top_btn > li a{
	position: relative;
	letter-spacing:1.6px;
	font-size:15px;
	margin-left:2vw;
	text-transform: uppercase;
	cursor: pointer;
	color: #fff;
}
.navbar-fixed .top_btn > li a{
	color:inherit;
}
.top_btn > li a.phone_numer::before{
  content: url('../icon/phone.svg');
  position: absolute;
  display: block;
  left: -30px;
  top: -12px;	
}
.top_btn > li a.callback_element::before{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
  background-color: #323232;	
}


header:hover{
	background: #fff;
}
header:hover .logo_sticky img { filter: invert(0); }
header:hover .top_menu > li a { color: inherit; }



/*btn*/
.btn_link{
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing:1.6px;
  font-family: 'Jost-Regular',sans-serif; 
  color: #fff;
  background-color: transparent;
  padding: 19px 40px 17px;
  border-radius: 2px;  
  border: 1px solid #fff;
  line-height: 22px; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn_link::before {
  content: '';
  display: flex;
  margin-right: 5px;
  width: 15px;
  height: 1px;
  background: #fff;
  transition: all 0.4s ease-in-out;
}
.btn_link:hover{
  color: #000;
  background-color: #fff;
}
.btn_link:hover::before {
  background-color: #000;
}

.btn_link_black{
  white-space: nowrap;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing:1.6px;
  font-family: 'Jost-Regular',sans-serif; 
  color: #000;
  background-color: transparent;
  padding: 19px 40px 17px;
  border-radius: 2px;  
  border: 1px solid #000;
  line-height: 22px; 
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn_link_black::before {
  content: '';
  display: flex;
  margin-right: 5px;
  width: 15px;
  height: 1px;
  background: #000;
  transition: all 0.4s ease-in-out;
}
.btn_link_black:hover{
  color: #fff;
  background-color: #000;
}
.btn_link_black:hover::before {
  background-color: #fff;
}



/* section */
.block-section{
	width:100%;
	padding-top:100px;
	overflow: hidden;
}
.block-section .container-fill h2{
	text-align:left;
	line-height: 64px;
	font-family: 'CormorantGaramond';
	font-size: 52px;
	text-transform: uppercase;
	color: #323232;
	letter-spacing: 2.5px;
	margin-bottom: 50px;
}
.video_projector{
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 100vh;
  display: inline-block;
  overflow: hidden;	
}
.video_projector #vid{
  min-width: 100%;
  max-width: 100%;
  

  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  height: 100%;
}
.sales_section .box_fon_picture{
	min-height:645px;
	background: url('../img/fon.png') left center no-repeat;
	background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box_fon_picture .num-block-group{
	margin-left: 150px;
}
.num-block-row {
	margin:36px 0;
}
.num-block-row h3{
	color:#E3B873;
	font-family: 'CormorantGaramond';
	font-size: 70px;
	display:flex;
	line-height: 58px;
	justify-content: start;
	float: left;
	width: 108px;
}
.num-block-row .num-block-text{
  display: inline-block;
  margin-left: 32px;
  font-size: 24px;
  line-height: 32px;
  color:#323232;
}
.map_block{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 6rem;
  border-bottom-right-radius: 6rem;	
}
.box_for_form{
  display: flex;
  justify-content: center;
  align-items: center;
}
.box_for_form .box_form_sale{
  padding: 1rem;
  width: 72%;
  height: fit-content;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px normal;
  flex-direction: column;
  display: flex;
  background: #fff;
  border-radius: 2px;
  max-width:100%;
  color:#000;
}
.box_for_form .box_form_sale .title_form{
	font-size:3rem;
	line-height:3.5rem;
	letter-spacing:1.6px;
	text-transform: uppercase;
	text-align:left
}
.box_for_form .box_form_sale p{
	text-align:left;
}
.form_sale .btn_link_black{
	margin-top:2rem;
	width:100%;
}
.form_sale .ex_form_control{
  width: 100%;
  border: 0;
  border-bottom: 1px solid #a6a6a6;
  background: transparent;
  color: #000;
  margin-bottom: 30px;
  padding: 15px 0 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
}
.form_sale .wpcf7-list-item {
	margin: 0;
}
.form_sale .wpcf7-list-item-label{
font-size: initial;	
}
/* proizv */
.list_progect{
	margin-top:48px;
}
.box_progect .box_cat_rooms{
  display: block;
  margin-bottom: 32px;
  height: 557px;
  position: relative;
  overflow: hidden;
  background-color: #ccc;
}
.box_progect figure {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.box_progect .info h3{
	font-family: "Jost-Medium";
	font-size:20px;
	line-height:32px;
	letter-spacing:1.6px;
	text-transform: uppercase;
	color:#323232;
}
.box_progect .info p{
	font-size:20px;
	line-height:30px;
	color:#555;
	margin-top:20px;
	margin-bottom:20px;
}
.box_progect figure .background-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -o-transition: .5s;
  -ms-transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  transition: all .5s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.box_progect figure:hover .background-image {
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
/* video box */
#video_cont .video-box {
  background: url('../img/slider1.png') center center no-repeat;
  background-size: cover;
  height: 930px;
  width:100%; 
}
#video_cont .video-box::before {
	content:'';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .4);	
}
#video_cont .play-btn {
  width: 122px;
  height: 122px;
  background: radial-gradient(#fff 48%, rgba(255, 255, 255, 0.4) 50%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
  cursor:pointer;
}
#video_cont .play-btn::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
#video_cont .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #E3B873;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#video_cont .play-btn:hover::after {
  border-left: 15px solid #E3B873;
  transform: scale(20);
}

#video_cont .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

#video_cont .hidden_block {
  display: none;
  width: 100%;
  overflow: hidden;
  position: relative;
}
#video_cont .video-box.play{
  background: url('../img/blur.jpg') center center no-repeat;	
}
#video_cont .video-box.play::before {
	content:none;
}
#video_cont .video-box.play .play-btn{
	display: none;
}
#video_cont .video-box.play .hidden_block{
	display: flex;
}

/* list video box */

.video_list .video-box {
  background: url('../img/slider1.png') center center no-repeat;
  background-size: cover;
  height: 80vh;
  width:100%; 
}
.video_list .video-box::before {
	content:'';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, .4);	
}
.video_list .play-btn {
  width: 122px;
  height: 122px;
  background: radial-gradient(#fff 48%, rgba(255, 255, 255, 0.4) 50%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
  cursor:pointer;
}
.video_list .play-btn::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.video_list .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #E3B873;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.video_list .play-btn:hover::after {
  border-left: 15px solid #E3B873;
  transform: scale(20);
}

.video_list .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
.video_list .hidden_block {
  display: none;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.video_list .video-box.play{
  background: url('../img/blur.jpg') center center no-repeat;	
}
.video_list .video-box.play::before {
	content:none;
}
.video_list .video-box.play .play-btn{
	display: none;
}
.video_list .video-box.play .hidden_block{
	display: flex;
}
.gray{
	background:#323232;
}
.theme-title-legend h3 {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 1.6px;
  color: #fff;
  text-transform: uppercase;
}
.descr-legend p {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* about */
.about_area{
	width:100%;
	padding: 8vw 0;
	text-align:center;
	background-size: cover !important;
}
.about_area .container_area{
	padding: 48px;
	background: rgba(255,255,255,.85);
	border-radius: 2px;
	max-width: 1100px;
	width: 100%;
	margin: auto;
}
.about_area .container_area h2{
	text-align:left;
	line-height: 64px;
	font-family: 'CormorantGaramond';
	font-size: 52px;
	text-transform: uppercase;
	color: #323232;
	letter-spacing: 2.5px;
}
.about_area .container_area .info_section{
	text-align:left;
	line-height: 32px;
	font-size: 20px;
	text-transform: uppercase;
	color: #323232;
	letter-spacing: 1.6px;
	margin-top:30px;
}
.about_area .container_area p{
	text-align:left;
	line-height: 30px;
	font-size: 18px;
	color: #555;
	margin-top:30px;
}
/* service */
#service .box_service{
	border-bottom:1px solid #dcdcdc;
	padding-bottom:40px;
	padding-top:40px;
	margin-bottom:32px;
}
#service .box_service h3{
	font-family: "Jost-Medium";
	line-height: 32px;
	font-size: 20px;
	text-transform: uppercase;
	color: #323232;
	letter-spacing: 1.6px;	
}
#service .box_service p{
	margin: auto;
	margin-top: 0;
	padding-bottom:30px;
	line-height: 30px;
	color: #555;
	margin-right: 0;
	width: 80%;
}
#service .box_service .serv_1{

}
#service .box_service .serv_2{
}
#service .box_service .serv_3{

	flex-direction: column;
	display: flex;
	justify-content: flex-end;
	align-items: end;
	position: relative;
}
#service .box_service img{
	width:100%;
}
/* portfolio */
#portfolio .portfolio-slider-carousel .owl-nav{
  position: absolute;
  top: 50%;
  width: 100%;
}
#portfolio .portfolio-slider-carousel .owl-dots{
	text-align: right;
	line-height: 4vw;
}
#portfolio .portfolio-slider-carousel .owl-nav .owl-prev,
#portfolio .portfolio-slider-carousel .owl-nav .owl-next{
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
  color: #000;
  padding: 15px;
  font-size: 1.5rem;
}
#portfolio .portfolio-slider-carousel .owl-nav .owl-prev{
  position: absolute;
  left: 0;
}
#portfolio .portfolio-slider-carousel .owl-nav .owl-next{
  position: absolute;
  right: 0;
}
#portfolio .portfolio-slider-carousel .owl-dots .owl-dot{
	background: unset;
	border: 0;
	outline: 0;
}
#portfolio .portfolio-slider-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  margin: 0px;
  opacity:0.3;
  background: #323232;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 6px;
}
#portfolio .portfolio-slider-carousel .owl-dots .owl-dot.active span {
	opacity:1;
}
#portfolio .box_portf .portf_items .info{
/*	
	display: flex;
	visibility:hidden;
	opacity:0;	
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width:100%;
	height:100%;
	position: absolute;
	top: 0;
	left: 0;	
	background:#000;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
*/
}
#portfolio .box_portf .portf_items .info {
  display: flex;
  visibility: visible;
  opacity: 1;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: transparent;
  background: -webkit-linear-gradient(top, transparent, #000);
  background: linear-gradient(to bottom, transparent, #000000cf);
  padding-bottom: 3vw;
}
#portfolio .box_portf  .portf_items .info h3{
	font-family: 'CormorantGaramond';
	text-transform: uppercase;
	color: #fff;
	text-align: center;
}
#portfolio .box_portf  .portf_items .info span{
	font-size: 16px;
	color: #fff;
}
#portfolio .box_portf  .portf_items:hover .info{
  visibility: visible;
  color: #fff;
  height: 100%;
  justify-content: center;
  padding-bottom:0;
  background: #0000007d;
}
/* portfolio */
.project-slider-carousel .owl-nav{
  position: absolute;
  top: 50%;
  width: 100%;
  opacity: 1;
  transition: opacity .2s ease;
}
.project-slider-carousel:hover .owl-nav{
  opacity: 1;
}
.project-slider-carousel .owl-nav .owl-prev,
.project-slider-carousel .owl-nav .owl-next{
  background: rgba(255, 255, 255, 0.7);
  border: 0;
  outline: 0;
  color: #000;
  padding: 15px;
  font-size: 1.5rem;
}
.project-slider-carousel .owl-nav .owl-prev{
  position: absolute;
  left: 0;
}
.project-slider-carousel .owl-nav .owl-next{
  position: absolute;
  right: 0;
}
.project-slider-carousel .owl-dots{
  position: absolute;
  left: 0px;
  bottom: 0px;
  padding:10px 0 30px;
  z-index: 100;
  width: 100%;
  text-align: center;
  text-align: center;
  display: flex;
  justify-content: center;
}
.project-slider-carousel .owl-dots .owl-dot{
	background: unset;
	border: 0;
	outline: 0;
}
.project-slider-carousel .owl-dots .owl-dot button {
  width: 1.2rem;
  height: 4px;
  margin: 0px .1rem;
  opacity: 0.3;
  background: #fff;
  display: block;
  border: 0;
  outline: 0;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
}
.project-slider-carousel .owl-dots .owl-dot.active button {
	opacity:1;
}
.project-slider-carousel .project_items{
	position:relative;
	display:inline-block;
	height:100%;
	width: 100%;
}
.css_box_slider{
	position:relative;
	margin-bottom: 1rem;
}
.css_box_slider .info{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(255,255,255,.8);
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 1rem;
  min-height: 7rem;
}
.css_box_slider .info h3{
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  font-weight: 600;
  max-width: 70%;
  margin-bottom: 0;
}
.css_box_slider .info small{
  color: #323232;
}
.css_box_slider:hover .info{
}
.catalog-sorting select.orderby{
  padding: 8px 20px;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1rem;
}
/* prestige */
.box_prestige{
	border-bottom: 1px solid #dcdcdc;
	padding-bottom: 26px;
	padding-top: 26px;
	margin-bottom: 32px;	
}
.box_prestige .prestige_1{
	flex-direction: row;
	display: flex;
	align-items: center;
}
.box_prestige .prestige_1 h3{
	font-family: "Jost-Medium";
	font-size: 20px;
	line-height:32px;
	letter-spacing:1.6px;
	color: #323232;
	text-transform: uppercase;
}
.box_prestige .prestige_1 img{
	height:35px;
	margin-right:32px;
}
.box_prestige .prestige_2 p{
	font-size: 24px;
	line-height:30px;
	color: #555;
}
/* faq */
.accordion_faq .accordion_item{
	margin-bottom:40px;
	margin-top:40px;
	position: relative;
	cursor:pointer;
}
.accordion_faq .accordion_item::before {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 7%;
  border-bottom: 1px solid #dcdcdc;
}
.accordion_faq .accordion_item .accordion_heading{
  flex-direction: row;
  display: flex;
  padding: 10px 0;
  align-items: center;
}
.accordion_faq .accordion_item .accordion_heading::after{
	margin: auto;
	margin-right: 0;
	content: url('../icon/minus.svg');
}
.accordion_faq .accordion_item .accordion_heading.collapsed::after{
	content: url('../icon/plus.svg');
}
.accordion_faq .accordion_item .accordion_heading h3{
	font-family: "Jost-Medium";
	line-height:32px;
	letter-spacing:1.6px;
	color: #323232;
	text-transform: uppercase;	
	margin: 0;
	margin-right:10%;
}
.accordion_faq .accordion_item .accordion_collapse{
	padding:0;
	max-width: 80%;
	padding-bottom: 20px;
}
.accordion_faq .accordion_item .accordion_collapse.show{
	display: flex;
}
.accordion_faq .accordion_item .accordion_collapse p{
	line-height:30px;
	color: #555;
	margin-top: 1rem;
    margin-bottom: 1rem;
}
/* contacts */
#contacts .box_contacts{
	align-items: center;
	justify-content: left;
	display: flex;
}
#contacts .box_contacts_images{
	position: relative;
	overflow: hidden;
	height:750px;
	align-items: center;
	justify-content: center;
	display: flex;
}
#contacts .box_contacts_images img{
	position: absolute;
	width:100%;
}
#contacts .block_info h4{
	font-size: 20px;
	line-height:32px;
	font-weight:600;
	letter-spacing:1.6px;
	color: #323232;
	text-transform: uppercase;
	margin-bottom:32px;
}
#contacts .block_info .title_info{
	font-size: 20px;
	line-height:32px;
	letter-spacing:1.6px;
	color: #323232;
	text-transform: uppercase;
	margin-bottom:32px;
	display: block;
}
#contacts .block_info .title_info_soc{
	font-size: 20px;
	line-height:32px;
	letter-spacing:1.6px;
	font-weight:600;
	color: #323232;
	text-transform: uppercase;
	margin-bottom:10px;
	margin-top:32px;
}
#contacts .block_info .bottom_social{
	display: flex;
	flex-direction: row;
	margin-bottom:48px;
}
#contacts .block_info .bottom_social>li{
	line-height: 40px;
	margin-right: 20px;
}
#contacts .block_info .bottom_social>li img{
	height:100%;
}
/* connect  */
#connection p{
	max-width:70%;
	line-height:32px;
	letter-spacing:1.6px;
	color: #555;	
}
#connection .line_fields{
	align-items: end;
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
}

#connection .form_feedback label{
  font-size: 18px;
  line-height: 23px;
  color: #dcdcdc;
  margin-bottom:8px;
}

#connection .form_feedback .input_form_feedback{
  border-bottom:1px solid #dcdcdc;
  font-size: 20px;
  line-height: 40px;
  color: #323232;
  border: 0;
  border-bottom:1px solid #dcdcdc;
	width: 100%;  
}

#connection .form_feedback select {
  font-size: 20px;
  line-height: 40px;
  color: #323232;
  border: 0;
  border-bottom:1px solid #dcdcdc;
  box-shadow: none;
  padding: 0 24px 0 8px;
  width: 100%;
  -webkit-appearance: none;
  background: #fff url('../icon/arrow_down.svg') no-repeat right 5px top 55%;
  background-size: 16px 16px;
  cursor: pointer;
  vertical-align: middle;
}

/* form */
.modal_standart .modal-content{
	width:560px;
	max-width:100%;
	padding:40px;
}
.modal_standart .modal-content .btn_link_black{
	width:100%;
}
.modal_standart .modal-content .ex_form_control{
  width: 100%;
  border: 0;
  border-bottom: 1px solid #a6a6a6;
  color: #323232;
  margin-bottom: 30px;
  padding: 15px 0 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 23px;
}
.modal_standart .modal-header{ border:0; padding:0; justify-content:center; }
.modal_standart .modal-header .btn-close {
  top: 15px;
  position: absolute;
  right: 15px;
}
.modal_standart .modal-header .modal-title{
	font-size:20px;
	line-height:32px;
	letter-spacing:1.6px;
	color:#323232;
	text-align: center;
	text-transform: uppercase;
}

/* slider */
.opacity-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, .4);
}
.slider-section{
	position: relative;
}
.main-slider-carousel{
	position:absolute;
	top:0;
	width: inherit;
}
.parallax_wrapper{
	position: relative;
	height: 100vh;
	display: flex;
	justify-content: center;
}
@media (min-width: 992px) {
	.video_projector,
	.parallax_wrapper{
		min-height:500px;
	}	
}
.container-center{
	margin:auto;
}

.slider-section h2{
  width: 100%;
  z-index: 1;
  line-height: 3.2vw;
/*  font-family: 'CormorantGaramond';  */
  font-size: 3vw;
  color:#fff;
}
.slider-section h1{
  width: 100%;
  z-index: 1;
  line-height: 3.2vw;
/*  font-family: 'CormorantGaramond';  */
  font-size: 3vw;
  color:#fff;
}
.slider-section p{
  font-family: 'Jost-Regular';
  line-height: 30px;
  margin-top: 3vh;
  margin-bottom: 6vh;
  color:#fff;
}
.slider-section .content-legend{
  font-family: 'Jost-Regular';
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color:#fff;
}

.slider-section .img-slid-mobil,
.slider-section .img-slid
{
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	width: 100%;
}
.img-slid-mobil{
	display:none;
}
.main-slider-carousel .owl-dots{
	position:absolute;
	left:0px;
	bottom:30px;
	z-index:100;
	width:100%;
	text-align:center;
	text-align: center;
	display: flex;
	justify-content: center;
}
.main-slider-carousel .owl-dots .owl-dot {
  margin: 0px 5px;
}
.main-slider-carousel .owl-dots .owl-dot button {
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  font-size: 17px;
  line-height:25px;
  cursor: pointer;
  opacity:.5;
}
.main-slider-carousel .owl-dots .owl-dot button::after {
  content: '';
  display: inherit;
  width: 25px;
  height: 1px;
  background: #fff;
  position: relative;
  bottom: 6px;
  margin-left: 10px;
}
.main-slider-carousel .owl-dots .owl-dot:last-child button::after {
  content: none;
}

.main-slider-carousel .owl-dots .owl-dot.active button {
	opacity:1;
}


.main-slider-carousel .owl-nav{
	position:absolute;
	left:0px;
	top:50%;
	z-index:1;
	width:100%;
	opacity:0;
	margin-top: -2rem;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	
	position:static;
	margin: 0;
	top: 0;
	height: 100%;
}
.main-slider-carousel .owl-nav .owl-prev{
	position: absolute;
	bottom: 0;
	left:0;
	width: 150px;
	height: 100%;
	line-height: 100%;	
	color: #fff;
	font-size: 3rem;
	text-align: center;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	background-color: rgba(255, 255, 255, 0);
	border: 0;
	
}

.main-slider-carousel .owl-nav .owl-next{
	position:absolute;
	right:0;
	bottom: 0;
	width: 150px;
	height: 100%;
	line-height: 100%;	
	color: #fff;
	font-size: 3rem;
	text-align: center;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	background-color: rgba(255, 255, 255, 0);
	border: 0;
}

.main-slider-carousel .owl-nav .owl-prev:hover,
.main-slider-carousel .owl-nav .owl-next:hover{
  color: #000;
  background-color: rgba(138, 138, 138, 0.4);
}
.main-slider-carousel:hover .owl-nav{
	opacity:1;
}

.main-slider-carousel .psy_slider h1,
.main-slider-carousel h2.content-column,
.main-slider-carousel .content-legend,
.main-slider-carousel .content-column-text,
.main-slider-carousel .content-column-btn
{
	opacity:0;
  transform: scaleY(0);
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  
}
.main-slider-carousel .active .content-legend {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}

.main-slider-carousel .active h2.content-column {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}
.main-slider-carousel .active .content-column-text {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}
.main-slider-carousel .active .content-column-btn {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}

.main-slider-carousel .psy_slider{
  display: flex;
  height: 100%;
}
.container-bottm-left{
  margin-top: auto;
  margin-left: 0;
  margin-bottom: 3vw;
  max-width: 40%;
}
.main-slider-carousel .psy_slider.show .content-legend {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}
.main-slider-carousel .psy_slider.show h1,
.main-slider-carousel .psy_slider.show h2.content-column {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}
.main-slider-carousel .psy_slider.show .content-column-text {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}
.main-slider-carousel .psy_slider.show .content-column-btn {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 1000ms;
  -moz-transition-delay: 1000ms;
  -ms-transition-delay: 1000ms;
  -o-transition-delay: 1000ms;
  transition-delay: 1000ms;
}


/* system */
#contacts .contact_phone_numer{
	position:relative;
	display: inline-block !important;
}
.footer_phone_numer{
	position:relative;
}
.matte::after{
	content:'';
	position:absolute;
	background: -webkit-linear-gradient(right, rgb(255, 255, 255), transparent);
	background: linear-gradient(to right, transparent, rgb(255, 255, 255));
	width: 50%;
	height: 100%;
	top: 0;
	left: 50%;	
}
.phone_numer.matte::after{
	content:none;
}
.navbar-fixed .phone_numer.matte::after{
	content:'';
}
.contact_phone_numer.matte::after{
	left: 0;
	width: 100%;
}
.footer_phone_numer.matte::after{
	background: -webkit-linear-gradient(right, rgb(90, 90, 90), transparent);
	background: linear-gradient(to right, transparent, rgb(90, 90, 90));	
}

.parallax {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  text-align: center;
  z-index: 1;  
}

.error{ border-bottom: 1px solid #f00 !important; }

/*footer*/
.footer-section{
	background: #5a5a5a;
	padding-top:30px;
	padding-bottom:30px;
}
.bottom_menu, 
.bottom_btn {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: row;
}
.bottom_menu > li, 
.bottom_btn > li {
  line-height: var(--footer-height);
}
.footer-section .f_bl-left{
	display: inherit;
}
.footer-section .f_bl-left a{
	color:#fff;
	letter-spacing: 1.6px;
	font-size: 15px;
	margin-right: 30px;
	text-transform: uppercase;
	cursor: pointer;
}
.footer-section .f_bl-left .bottom_menu li:last-child a {
	margin-right: 0px;
}
a.logo_footer{
	height: 65px;
}
.logo_footer img{
	height:100%;
}
.footer-section .f_bl-right{
	display: inherit;
	flex-wrap: nowrap;
	justify-content: end;
}
.footer-section .f_bl-right a{
	color:#fff;
	letter-spacing: 1.6px;
	font-size: 15px;
	margin-left: 30px;
	text-transform: uppercase;
	cursor: pointer;
}
.footer-section .bottom_social{
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: end;
}
.footer-section .bottom_social > li {
  line-height: var(--footer-height);
  margin-left:20px;
}
.footer-section .bottom_social .footer_soc_icon img{
	width:30px;
}

.footer-section .footer_chapter.f_right{
	text-align: right;
}
.footer-section .footer_chapter .bottom_menu,
.footer-section .footer_chapter .footer_category{
	display: inline-block;
	
}
.footer-section .footer_chapter .bottom_menu > li,
.footer-section .footer_chapter .footer_category > li{
	line-height: 1.5;
}
.footer-section .footer_chapter .bottom_menu > li a,
.footer-section .footer_chapter .footer_category > li a{
  color: #fff;
  letter-spacing: 1.6px;
  font-size: 15px;
  margin-right: 30px;
  text-transform: uppercase;
  cursor: pointer;	
}



.bottom-footer{
  background-color: #323232;
  color: #fff;
  padding:.5rem 0;
}
.bottom-footer .container-fill{
}
.bottom-footer p.left_copy{
	color: #adadad;
	font-size:.8rem;
	margin:0;
}
.bottom-footer a.right_copy{
	color: #adadad;
	font-size:.8rem;
	margin:0;
	text-align: right;
}




.section {
  clear: both;
}

/*------------------- Theme Inner Banner --------------*/
.theme-inner-banner {
  background: url(../img/default_header.jpg) no-repeat center;
  background-size: cover;
  text-align: right;
  background-attachment: fixed;
  height: 80vh;
  position: relative;
  overflow: hidden;
}
.theme-inner-banner .opacity {
background: rgba(1,1,14,0.4);
  padding: var(--header-height);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 100;
}
.theme-inner-banner .opacity>.container {
	margin: auto;
}


.theme-inner-banner .block_top_head{
  display: flex;
  height: 100%;
}
.theme-inner-banner .block_top_head .container_head{
	margin: auto;
	margin-right: 0;
}

.theme-inner-banner .opacity ul li {
  text-transform: capitalize;
  font-size: 18px;
  color: #fff;
  margin: 0 3px;
  display: inline-block;
}
.theme-inner-banner .opacity ul li a {color: #fff;}
.theme-inner-banner .opacity h1 {
	font-size: 54px;
	font-family: 'CormorantGaramond';
	color: #fff;
	font-weight: 400;
	text-transform: uppercase;
}
.theme-inner-banner #podlog_video{
	position:absolute;
	width:100%;
	top:0;
	left: 0;
	z-index:1;
}
.theme-title h2 {
  text-align: center;
  line-height: 64px;
  font-family: 'CormorantGaramond';
  font-size: 52px;
  text-transform: uppercase;
  color: #323232;
  letter-spacing: 2.5px;
  margin-bottom: 50px;
}
.theme-title h3 {
  font-size: 32px;
  line-height: 48px;
  letter-spacing: 1.6px;
  color: #323232;
  text-transform: uppercase;
}
.descr p {
  font-size: 24px;
  line-height: 30px;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.descr h2{
	margin-bottom:2rem;
	margin-top:2rem;
}

.figure-box {
  text-align: center;
  width:100%;
  height: 100%;
  display: block;  
  position: relative;
  overflow: hidden;
  -moz-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.figure-box img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  width: 100%;
  background-color: #ccc;
  transition: all .5s ease;
}
.figure-box:hover img {
	transform: scale(1.1);
}
.gallery_collection .row >div{
  margin-bottom: calc(var(--bs-gutter-x) * 0.5);
  margin-top: calc(var(--bs-gutter-x) * 0.5);
}


.block_descr .date {
  font-size: 18px;;
  font-weight: 600;
  color: #E3B873;
}
.block_descr .descr_base p{
  line-height: 30px;
  color: #555;
  margin-bottom: 30px;
  margin-top: 20px;
}

.bl_flex_row{
	height:100%;
	display:flex;
	flex-direction: column;
	margin:auto 0;
	justify-content: center;
	background: #F8F7F4;
    padding: 2vw;
	overflow: hidden;
}
.image img{
	width: 100%;
}
.image{
  display: flex;
  width: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  height: 100%;
}
.image img{
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0%;
  width: 100%;
  background-color: #ccc;
}	
}

/* production */
.products_list .container-fill h2{
	text-align: center;
	margin-bottom: 20px;
}
.category_title_head{
  color: #B9A38D;
  line-height: 54px;

  font-family: 'CormorantGaramond';
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin: 20px auto 50px auto; 
}
.category_title_head a{
  color:inherit;
}
.products_list a.box_cat_rooms:hover .background-image {
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
.products_list a.box_cat_rooms{
  background-color: #ccc;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}
.products_list a.box_cat_rooms .info {
	text-align: left;
  position: absolute;
  width: 100%;
  z-index: 9;
  display: block;
  padding: 25% 30px 0 30px;
    padding-bottom: 0px;
  color: #fff;
  left: 0;
  bottom: -75px;
  padding-bottom: 60px;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: transparent;
  background: -webkit-linear-gradient(top, transparent, #000);
  background: linear-gradient(to bottom, transparent, #000);
}
.products_list a.box_cat_rooms:hover .info {
  -webkit-transform: translate(0, -65px);
  -moz-transform: translate(0, -65px);
  -ms-transform: translate(0, -65px);
  -o-transform: translate(0, -65px);
  transform: translate(0, -65px);
}
.products_list a.box_cat_rooms .info h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 15px;
}
.products_list a.box_cat_rooms .info small {
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0;
}
.products_list .info .price {
  color: #B9A38D;
  font-size: 1.5rem;
}
.products_list .info .price_sale {
  color: #ff6248;
  font-size: 1.5rem;
  text-decoration: line-through;  
}
.products_list a.box_cat_rooms .info span {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  opacity: 0;
  position: relative;
  color: #fff;
}
.products_list a.box_cat_rooms .info span::before {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 10px;
  height: 2px;
  content: "";
  transition: width 500ms ease;
  background-color: #fff;
}
.products_list a.box_cat_rooms:hover .info span {
  opacity: 1;
}
.products_list a.box_cat_rooms:hover .info span::before {
  width: 100%;
}

/* product */
.c_pr {text-align:center;}
.carousel_product{
	max-width: 600px;
}
.carousel_product.owl-carousel.owl-loaded{
	display:inline-block;	
}
.carousel_product .owl-nav{
  position: absolute;
  top: 42%;
  width: 100%;
}
.carousel_product .owl-dots{
	text-align: center;
	line-height: 2vw;
}
.carousel_product .owl-nav .owl-prev,
.carousel_product .owl-nav .owl-next{
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
  color: #000;
  padding: 15px;
  font-size: 1.5rem;
}
.carousel_product .owl-nav .owl-prev{
  position: absolute;
  left: 0;
}
.carousel_product .owl-nav .owl-next{
  position: absolute;
  right: 0;
}
.carousel_product .owl-dots .owl-dot{
	background: unset;
	border: 0;
	outline: 0;
}
.carousel_product .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0px;
  opacity: 0.3;
  background: #b9a38d;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 5px;
}
.carousel_product .owl-dots .owl-dot.active span {
	opacity:1;
}
							.carousel_product_nav.owl-carousel.owl-loaded {
							  display: inline-block;
							}
							.carousel_product_nav {
								max-width: 600px;
							}
							
.carousel_product_nav.owl-carousel .owl-item {
	opacity: .5;
}
.carousel_product_nav.owl-carousel .owl-item.current{
	opacity: 1;
}

.box_card_slider a.content_card_slider .info {
  position: absolute;
  width: 100%;
  z-index: 9;
  display: block;
  padding: 25% 5% 0 5%;
  color: #fff;
  left: 0;
  bottom: 0px;
  padding-bottom: 3%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: transparent;
  background: -webkit-linear-gradient(top, transparent, #000);
  background: linear-gradient(to bottom, transparent, #000);
}

.box_card_slider a.content_card_slider .info h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0;
}
.box_card_slider a.content_card_slider .info small {
letter-spacing: 2px;
  display: block;
  margin-bottom: 0;
  color: #9e9e9e;
}
.box_card_slider a.content_card_slider .info .price {
  color: #B9A38D;
  font-size: 1.5rem;
}
.box_card_slider a.content_card_slider .info .price_sale {
  color: #ff6248;
  font-size: 1.5rem;
  text-decoration: line-through;  
}

.product_txt .theme-title{
	margin-bottom:30px;
}
.product_txt .theme-title h2 {
	margin:0;
}
.product_txt .theme-title small {
	color: #B9A38D;
	letter-spacing: 2px;
}
.product_txt .info .price_sale {
  color: #ccc;
  font-size: 2rem;
  text-decoration: line-through;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0;
}
.product_txt .info .price {
  color: #B9A38D;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 20px;
}
.calculat .btn_link::before {
	background-color: #fff;
}
.calculat .btn_link{
  min-width: 50%;
  background-color: #b9a38d;
  color: #fff;
  border: 1px solid #b9a38d;
}
.calculat .btn_link:hover {
  color: #fff;
  background-color: #000;
  border: 1px solid #000;  
}


.other-product-slider.owl-carousel.owl-loaded{
	display:inline-block;	
}
.other-product-slider .owl-nav{
  position: absolute;
  top: 42%;
  width: 100%;
}
.other-product-slider .owl-dots{
	text-align: center;
	line-height: 2vw;
}
.other-product-slider .owl-nav .owl-prev,
.other-product-slider .owl-nav .owl-next{
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
  color: #000;
  padding: 15px;
  font-size: 1.5rem;
}
.other-product-slider .owl-nav .owl-prev{
  position: absolute;
  left: 0;
}
.other-product-slider .owl-nav .owl-next{
  position: absolute;
  right: 0;
}
.other-product-slider .owl-dots .owl-dot{
	background: unset;
	border: 0;
	outline: 0;
}
.other-product-slider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0px;
  opacity: 0.3;
  background: #b9a38d;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 5px;
}
.other-product-slider .owl-dots .owl-dot.active span {
	opacity:1;
}
.other-product-slider .box_card_slider{
	aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  display: flex;
  background: #b5b5b5;
}
.other-product-slider .box_card_slider .content_card_slider{
	margin:auto;
	width: 100%;
}

/* category */
.category_header h1{
}
.category_header .header_smaler{
  color: #B9A38D;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 700;
}
ul.way_category{

}
ul.way_category li{
	display:inline-block;
}
ul.way_category li a.category_title
{
  text-align: center;
  color: #818181;
  line-height: 48px;

  font-family: 'CormorantGaramond';
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-right: 30px;
}
ul.way_category li a.active{
	border-bottom: 2px dotted;
}

/* partners */
.box_partner{
	border:1px solid #000;
	padding:0;
	margin-bottom: -1px;
	margin-right: -1px;
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.box_partner .images_logo{
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}
.box_partner .images_logo img{
	width: 100%;
}
.box_partner .info{
	position:absolute;
	padding: 2rem;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background-color: #b9a38d;
	color: #fff;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	-webkit-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.box_partner:hover .info{
	cursor:pointer;
	visibility: visible;
	-webkit-transform: translate(0, -100%);
	-moz-transform: translate(0, -100%);
	-ms-transform: translate(0, -100%);
	-o-transform: translate(0, -100%);
	transform: translate(0, -100%);
}
.box_partner .info p{
	font-size: 1.2rem;
	line-height: 1.5rem;
	color: #fff;
}