@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
	scroll-behavior: smooth;
}
body
{
	min-height: 100vh;
	overflow-x: hidden;
	background: linear-gradient(#2b1055, #7597de);
}

nav{
	background: rgba(20, 21, 49, 0.83); /*#0082e6*/
	height: 80px;
	width: 100%;

	position: absolute;
	top: 0;
	left: 0;
	padding: 30px 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 10000;
}

label.logo
{
  /*color: white;
  font-size: 35px;
  line-height: 80px;
  padding: 0 100px;
  font-weight: bold;*/

	margin-top: 30px;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	font-size: 3em;
	/*text-transform: uppercase;*/
	letter-spacing: 2px;
	overflow: hidden;
}
label img
{
	width: 180px;
}
nav ul{
  float: right;
  margin-right: 0px;

  /*display: flex;
	justify-content: center;
	align-items: center;*/
}
nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;

  /*list-style: none;
	margin-left: 20px;*/
}
nav ul li a{
  color: white;
  font-size: 15px;
  padding: 7px 15px;
  border-radius: 20px;
  /*text-transform: uppercase;*/
  text-decoration: none;

  /*text-decoration: none;
	padding: 6px 15px;
	color: #fff;
	border-radius: 20px;*/
}
a.active,a:hover{
  background: #1b9bff;
  transition: .5s;

  /*background: #fff;
	color: #2b1055;*/
}

header
{
	
}
header .logo
{
	
}
header ul
{
	
}
header ul li
{
	
}
header ul li a 
{
	

}
header ul li a:hover,
header ul li a.active
{
	
}
section
{
	position: relative;
	width: 100%;
	height: 100vh;
	padding: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
section::before
{
	content: '';
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to top, #1c0522, transparent);
	z-index: 1000;
}
section img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}
section img#moon
{
	mix-blend-mode: screen;
	
}
section img#mountains_front
{
	z-index: 10;
}

#text
{
	position: absolute;
	right: -350px;
	color: #fff;
	white-space: nowrap;
	font-size: 7.5vw;
	z-index: 9;
}
#btn 
{
	text-decoration: none;
	display: inline-block;
	padding: 8px 30px;
	border-radius: 40px;
	background: #fff;
	color: #2b1055;
	font-size: 1.5em;
	z-index: 9;
	transform: translateY(100px);
}
.sec
{
	position: relative;
	padding: 100px;
	background: #1c0522;
}
.sec h2
{
	font-size: 3.5em;
	margin-bottom: 10px;
	color: #fff;
}
.sec p
{
	font-size: 1em;
	color: #fff;
}
.imgtext
{
	position: relative;
	top: 11px;
	width: 100px;
	
}
.imglink
{
	width: 75px;
}

/* RESPONISVE CSS MOBILES */

.checkbtn{
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}


@media (max-width: 1000px)
{

label.logo
{
    margin-top: 15px;
    font-size: 3em;
   	float: left;
}

label img
{
	width: 150px;
	float: left;

}

nav ul li a
{
    font-size: 12px;
}

}

@media (max-width: 858px){

.checkbtn
{
	display: block;
}

label.logo
{
    margin-top: 15px;
    width: 150px;
    font-size: 3em;
   	float: left;
}

label svg
{
	width: 48px;
	height: 48px;
	margin-top: 28px;
}

label img
{
	width: 150px;
	float: left;

}

  ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }
  nav ul li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 20px;
  }
  a:hover,a.active{
    background: none;
    color: #0082e6;
  }
  #check:checked ~ ul{
    left: 0;
  }
}

