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

@font-face {
    font-family: 'Candelia';
    src: url('../fonts/Candelia.woff2') format('woff2'),
        url('../fonts/Candelia.woff') format('woff'),
        url('../fonts/Candelia.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


 :root {
     --main-color: #e93220;
     --main-font: 'Montserrat', sans-serif;
     --theme-font: 'Candelia';
     --theme-color: #2d3092;
 }

  body {
	background:#000;
	color: #fff;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     text-rendering: optimizeLegibility;
     font-smoothing: antialiased;
     font-weight: normal;
     font-family: var(--main-font);
     font-size: 14px;
	 overflow:hidden;
	 text-align: center;
	 margin: 0;
    padding: 0;
 }
 a,
 a:hover,
 a:visited {
     text-decoration: none;
     outline: none;
     color: var(--primary-color);
 }

 body p {
     letter-spacing: 0.3px;
     line-height: 30px;
     font-weight: 400;
 }
 body.noscroll{
    overflow-y: hidden;
 }

::-webkit-scrollbar-track{
    border-radius: 4px; 
    background-color: #dddddd;
}

::-webkit-scrollbar{
     width: 8px;
     /* background-color: #e7e7e7; */
     /* border-radius: 4px; */
}

::-webkit-scrollbar-thumb{
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.53);
}


.rotate {
  animation: rotation 5s;
}

.linear {
  animation-timing-function: linear;
}

.infinite {
  animation-iteration-count: infinite;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.page1{
	/* background: url('../images/lp_bg.jpg'); */
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
}
 .content-wrap {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    max-width: 100%;
    margin: auto;
    position: relative;
}

.content {
    position: relative;
    -webkit-transform-origin: 0% 0% 0;
    transform-origin: 0% 0% 0;
    height: 100%;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-content-center h1{
	font-family: var(--theme-font);
	font-size: 49px;
	font-weight:500;
	margin-bottom: 60px;
	color:#808285
}
.page-content-center h1 span{
	color:#ffffff
}
.loader_icon {
	margin-bottom: 60px
}
.loader_icon svg, .loader_icon img{
	width: 100px;
}
.enter-btn{
	font-size: 24px;
    font-weight: 500;
}
.mian_img{
	width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.main_page{
	position: absolute;
    width: 100%;
    margin: 0;
    padding: 0;
}
.half-screens{
	width: 50%;
    height: 100vh;
    display: block;
    z-index: 9999;
    float: left;
    margin: 0;
    padding: 0;
	cursor: pointer;
	background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
	background-size: 100%;
	filter: gray;
    -webkit-filter: grayscale(1);
    -webkit-transition: all .8s ease-in-out;
}
.left-screen{
	background-image: url(../images/left-img.jpg);
}
.right-screen{
	float: right;
	background-image: url(../images/right-img.jpg);
}
.img-fluid{
	max-width:100%;
}


.portrait-mobile{
    display: none;
}

.left-screen:hover,
.right-screen:hover{
	filter: none;
    -webkit-filter: grayscale(0);
}




@media only screen and (max-width: 900px) {
.page-content-center h1 {
    font-size: 30px;
    margin-bottom: 14px;
}

}

@media only screen and (min-device-width: 0px) and (max-device-width: 815px) and (orientation:portrait) {
.portrait-mobile{
display: block;
position: absolute;
top: 0;
left: 0;
background: #fff;
width: 100%;
height: 100%;
height: 100vh;
z-index: 99999999;
}
.portrait-centermobile {
position: absolute;
top: 50%;
left: 0;
margin: 0 auto;
right: 0;
transform: translateY(-50%);
text-align: center;
}
.portrait-centermobile img {
margin: 0 auto 10px;
width: 200px;
text-align: center;
}
.portrait-centermobile p {
font-size: 18px;
color: #000;
text-transform: uppercase;
text-align: center;
font-weight: 600;
}



}


@media screen and (max-width: 900px) and (orientation: landscape) {
    .portrait-mobile {
        display: none;
    }

}