@charset "utf-8";
/*======================================

 [ -Main Stylesheet-
  Theme: Photogam Intro
  Version: 1.0
  Last change: 15.10.2023]
*/
/*-------------Import fonts ---------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Frank+Ruhl+Libre:wght@300;400;500;600;700;800;900&family=Jost:wght@200;300;400;500;600&display=swap');
/*-------------General Style---------------------------------------*/
:root {
	--main-color: #D5AD72;
	--main-font: 'Frank Ruhl Libre', serif;
	--secondary-font: 'Jost', sans-serif;
	--thrd-font: 'Cormorant Garamond', serif;
}
html{
	overflow-x:hidden !important;
	height:100%;
}
body{
	margin: 0;
	padding: 0;
	font-family: var(--main-font);
	font-weight: 400;
	font-size: 12px;
	background: #0A0B0A;
	height:100%;
	text-align:center;
	color:#1e1e1e;
} 
@-o-viewport {width: device-width;}
@-ms-viewport {width: device-width;}
@viewport {width: device-width;}
/*--------------Typography--------------------------------------*/
h2 {
	font-size: 3.2em;
	font-weight: 300;
}
h3 {
	font-size: 1em;
}
/* ---------Page preload--------------------------------------*/
.main-loader {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 11100;
	background: #0A0B0A;
}
.loader-wrap {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin: -75px 0 0 -75px;
	z-index: 20;
} 
.loader {
	position: absolute;
	top:50%;
	left:50%;
	width:40px;
	height:40px;
	margin:-20px 0 0 -20px;
	z-index:20;
    transform: scale(1.0);
}
.loader:before{
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	width:40px;
	height:40px;
	margin:-20px 0 0 -20px;
	border: 1px solid rgba(255, 255, 255,  .3);
	border-top: 1px  solid var(--main-color);
	border-radius: 50%;
	animation: spin2 0.5s infinite linear;
 
	z-index:1;
}
@keyframes spin2 {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
 
/* ---------Content Styles--------------------------------------*/
#main{
	height:100%;
	width:100%;
	position: absolute  ;
	top:0;
	left:0;
	z-index:2;
	color: #fff;
	background: #000;
	text-align:center;
	opacity: 0;
}
#main.mainvis {
	opacity: 1
}
.bg {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-size: cover;
	background-attachment: scroll  ;
	background-position: center  ;
	background-repeat:repeat;
	background-origin: content-box;
}
.text-container {
	position: relative;
	z-index: 10;
	top: 50%;
	transform: translateY(-50%);
	
}
.logo-holder {
 	margin-bottom: 60px;
}
.logo-holder img {
	width: auto;
	height: 60px;
}
.overlay {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	opacity:0.4;
	z-index:2;
}
.over-bg {
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	background:url("../images/dec/body.png")  no-repeat center;
	z-index: 1;
	opacity: .05
}
 
 
.notifer {
 	position: absolute;
	bottom: 110px;
	left: 50%;
	text-align:center;
	z-index: 5;
	color:#fff;
	font-size: 1.3em;
	transform: translateX(-50%);
}
.notifer:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -30px;
	height: 2px;
	width: 40px;
	margin-left: -20px;
	background: var(--main-color);
}
.notifer a {
	color:var(--main-color);
} 
.details_templ {
 
}
.details_templ h3 {
	text-align: center;
	color:#fff;
	font-size: 1.9em;
} 
.details_templ h5 {
	text-align: center;
	color:var(--main-color);
	font-size: 1.5em;
	text-transform: uppercase;
	margin-top: 30px;
} 
.btn {
	color:var(--main-color);
	padding: 19px 50px;
 
	background: #151515;
	font-weight: 500;
	font-size: 1.1em;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: inline-block;
	margin-top: 30px;
	border-radius: 4px;
	box-shadow: 0px 0px 0px 8px rgba(255,255,255,0.1);
	border: 1px dashed rgba(255,255,255,.2);

}
.btn:hover {
	color:#000;
	background:var(--main-color); 
}
.demo-nav {
	max-width: 850px;
	position: relative;
	margin: 50px auto 20px;
	padding: 30px 0;
	border-top:1px dashed rgba(255,255,255,.2);
	border-bottom:1px dashed rgba(255,255,255,.2);	

} 
.demo-nav a {
	color:#fff;
	display: inline-block;
	margin: 0 20px;
	text-transform: uppercase;
	font-size: 1.4em;
	position: relative;
}
.demo-nav a:before {
	content: '';
	position: absolute;
	left: 50%;
	width: 0;
	height: 3px;
	top: -31px;
	background: var(--main-color);
	margin-left: -20px;
	transition: all .3s ease-in-out;
}
.tooltip-wrap{
	position: absolute;
	bottom: 100%;
	margin-bottom:60px;
	width: 400px;
	left: 50%;
	margin-left: -200px;
	transition: all .3s ease-in-out;
	opacity: 0;
	visibility: hidden;
	transform: translateX(20px);
}
.demo-nav a:hover {
	color:var(--main-color);
}
.demo-nav a:hover .tooltip-wrap {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
} 
.demo-nav a:hover:before {
	width: 40px;
} 
.tooltip-wrap img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 2;
	border-radius: 10px;
}
.tooltip-wrap:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -8px;
    border: 1px dashed rgba(255,255,255,.2);
    z-index: -2;
    box-shadow: 0px 0px 0px 10px rgba(255,255,255,.09);
    background: #333;
    border-radius: 10px;
}
.section-title-separator_wrap {
	position: relative
}
.section-title-separator {
	position: relative;
	width: 150px;
	display: inline-block;
	margin-top: 14px;
}
.section-title-separator:before , .section-title-separator:after {
	content: '';
	position: absolute;
	width: 60px;
	height: 1px;
	border-top: 1px dotted rgba(255,255,255,.2);
	top: 50%;
	margin-top: 1px;
}
.section-title-separator:before {
	left: 0;
}
.section-title-separator:after {
	right: 0;
}
.section-title-separator span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--main-color);
	display: inline-block;
}
.ml_images-wrap {
	position: absolute;
	width: 600px;
	height: 600px;
	left: 50%;
	top: 50%;
	margin: -300px 0 0 -300px;
	z-index: 4;
 
 
 
}
.ml_images-wrap:before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	top: 0;
 	animation: spin3 12.5s infinite linear;
	z-index: -1;
	background:url("../images/dec/circle.png") no-repeat center;
 
 
}
@keyframes spin3 {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
} 
.ml_bg-item {
	position: absolute;
 	opacity: 1;
	width: 130px;
	height: 130px;
	overflow: hidden;
	border-radius: 50%;
 	box-shadow: 0 10px 44px 0px rgba(0,0,0, .8);
}
.ml_bg-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,.5);
	z-index: 10;
} 
.main-bg-warp {
 
	position: fixed;
	top:30px;
	left:30px;
	bottom:30px;
	right:30px;
	background: rgb(41,41,41);
	background: radial-gradient(circle, rgba(41,41,41,1) 0%, rgba(17,17,17,1) 100%);
	border-radius: 20px;
	z-index: 1;
	overflow: hidden;
	border: 1px dashed rgba(255,255,255,.2)
}
.main-bg-warp .bg {
	opacity: .5;
	z-index: -1;
}
.bg-dec-item {
	position: absolute;
	opacity: .1;
} 
.aside-dec {
	position: absolute;
	top: 50%;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	margin-top: -3px;
	background: var(--main-color);
}
.aside-dec:before {
	content: '';
	position: absolute;
	top: 50%;
	margin-top: -1px;
	width: 120px;
	border-top: 1px dashed rgba(255,255,255,.2);
}
.ad_left {
	left: 50px;
}
.ad_left:before {
	left: 100%;
	margin-left: 20px;
}
.ad_right {
	right: 50px;
}
.ad_right:before {
	right: 100%;
	margin-right: 20px;
}
@media only screen and  (max-width: 1068px) {
.text-container {
    width: 100%;
    overflow: hidden;
	top: 0;
	transform: translateY(0);
	padding: 150px 50px 90px
	
}
.demo-nav {
 
    overflow: hidden;
}
.tooltip-wrap , .ml_bg-item , .aside-dec , .demo-nav a:before{
 
   display: none;
}	
.demo-nav a {
    display:  block;
    margin: 10px 0 ;
	float: left;
	width: 50%;
}
.bg-dec-item {
    transform: scale(.6)
}	
}
@media only screen and  (max-width: 768px) {
.demo-nav a {
 
	width: 100%;
 
}  
.notifer {
    position: relative;
    bottom: 0;
    left: 0;
    text-align: center;
 
    transform: translateX(0);
	width: 100%;
}
.main-bg-warp {
 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 0;
    border: none;
}
.text-container {
 
	padding: 90px 30px;
	
}
.details_templ h3 {
 
    font-size: 1.3em;
}
.logo-holder img {
 
    height: 40px;
}
.ml_images-wrap {
    display: none;
} 	
}
 