@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  font-family: "Poppins", sans-serif;
  color: white;
}



.container {
    display: flex;
    width:100%;
    max-width:1600px;
    margin:0 auto;
}

.ham {
  display: flex;
  justify-content: space-between;
}
.hamburger {
	display: block;
	width: 35px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	outline: none;
	border: none;
	z-index: 100
}
.hamburger .bar,.hamburger:after,.hamburger:before {
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background-color: #000;
	margin: 6px 0px;
	-webkit-transition: 0.4s;
	transition: 0.4s
}
.hamburger.is-active:before {
    -webkit-transform:rotate(-45deg) translate(-8px, 6px);
    transform:rotate(-45deg) translate(-8px, 6px)
}
.hamburger.is-active:after {
    -webkit-transform:rotate(45deg) translate(-9px, -8px);
    transform:rotate(45deg) translate(-9px, -8px);
	z-index: 100
}
.hamburger.is-active .bar {
    opacity:0
}

.reviews-nav {
  position: sticky;
  top: 0;
	width: 100%;
	height: 31px;
	background-color: rgba(0, 0, 0, 0.3);
	float: right;
	color: #FFF;
	text-align: right;
	left: 10%
}


.po-nav {
	position: absolute;
	top: 180px;
	left: 10%;
	z-index: 90
}

.nav-items {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: capitalize;
	cursor: pointer;
	transition: 0.3s;
	position: relative;
	display: flex;
	justify-content: center;
	text-decoration: none;
}


.reviews-nav .active {   
    color: #00FF26;
}
.mobile-nav .active {
  color: #00FF26;
}


.nav-items::after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background-color: white;
  box-shadow: 0 0 5px white;
  transform: scale(0);
  transform-origin: left;
  transition: 0.3s;
}
.nav-items:hover::after {
  transform: scale(1);
}
.active:hover::after {
  background-color: #00FF26;
  box-shadow: 0 0 5px #00FF26;
}


.mobile-nav {
	position: fixed;
	top: 0;
	width: 100%;
	min-height: 100vh;
	display: block;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.55);
	padding-top: 120px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	left: 100%;
}
.mobile-nav.is-active {
    left:0
}
.mobile-nav a {
    display:block;
    width:100%;
    max-width:200px;
    margin:0 auto 16px;
    text-align:center;
    padding:12px 16px;
    background-color:rgba(31, 16, 63, 0.2);
    color:#FFF;
    text-decoration:none
}
.mobile-nav a:hover {
	background-color: rgba(36, 16, 79, 0.3)
}
@media (min-width: 768px) {
    .mobile-nav {
        display:none
    }
    .hamburger {
        display:none
    }
}

.button {
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    border:none;
    outline:none;
    background:none;
    display:inline-block;
    color:#FFF;
    font-size:20px;
    background-color:#FF9FDB;
    padding:12px 16px;
    border-radius:8px;
    text-decoration:none;
    text-transform:uppercase;
    font-weight:700;
    cursor:pointer
}
@media (max-width: 767px) {
    .button {
        font: size 18px;
    }
}
img {
    max-width:100%
}
header {
	color: #FFF;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99
}
header .container {
	  padding-top:2px;
    display:-webkit-box;

    display:-ms-flexbox;
    display:flex;
    -webkit-box-pack:justify;
    -ms-flex-pack:justify;
    justify-content:space-between;
    -webkit-box-align:center;
    -ms-flex-align:center;
    /* align-items:center */ 
}
header .container h2 {
    color:inherit;
    text-transform:uppercase;
    font-size:32px;
    font-weight:900
}
header .container h2 span {
    font-weight:600
}
header .container nav {
    display:-ms-grid;
    display:grid;
    grid-gap:16px;
    -ms-grid-columns:(auto)[];
    grid-template-columns:repeat(6, auto)
}
@media (max-width: 767px) {
    header .container nav {
        display:none
    }
}
header .container nav a {
    color:inherit;
    /*font-size:20px;*/
  	font: size 1.125em;
    text-decoration:none
}
header.is-scrolling {
	left: 10px;
	width: 90%;
	
	background-color:rgba(18, 0, 47, 0)

}
header.is-scrolling .container {
    padding-top:16px;
    padding-bottom:16px
}



@media (max-width: 767px) {
    .hide-mob {
        display:none
    }
}

body {
  background-color: black;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
section {
	background-image: url(../images/background.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
#hero .section-box::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 60%, rgb(4, 61, 42) ) ;
  z-index: 1;
}
.section-box {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  height: 85vh;
  width: 85%;
  overflow: hidden;
}
.content-wrap {
  padding: 20px 50px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.image {
  width: 150px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
}
nav {
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 2;
}
.nav-items {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  display: flex;
  justify-content: center;
  text-decoration: none;
}
nav .active {
  color: #00FF26;
}
.nav-items::after {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background-color: white;
  box-shadow: 0 0 5px white;
  transform: scale(0);
  transform-origin: left;
  transition: 0.3s;
}
.nav-items:hover::after {
  transform: scale(1);
}
.active:hover::after {
  background-color: #00FF26;
  box-shadow: 0 0 5px #00FF26;
}

.hero-content h3 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 50px;
}
.hero-content h1 {
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: 30px;
  text-transform: uppercase;
  margin-top: -10px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-img {
  width: 47%;
  margin-top: -150px;
  animation: planetAn 120s linear infinite;
}

/* join with us start */
.hero-btn {
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	background-color: transparent;
	color: white;
	border: 2px solid white;
	border-radius: 50px;
	height: 50px;
	width: 250px;
	margin-top: -150px;
	cursor: pointer;
	transition: 0.3s;
  z-index: 110;
}
.hero-btn:hover {
  background-color: white;
  color: black;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  padding: 0 50px;
}
.about-img {
  width: 90%;
  animation: zoomIn 1.4s ease-in-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.left-grid,
.right-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#about .right-grid {
  align-items: center;
}
.section-sub {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00FF26;
  text-transform: capitalize;
  animation: bottomIn 1s ease-in-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.section-title {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: bottomIn 1s ease-in-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
#about .left-grid p,
#projects .left-grid p {
  font-size: 18px;
  line-height: 1.8;
  color: rgb(233, 233, 233);
  animation: bottomIn 1s ease-in-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}
.action-btn {
  font-size: 18px;
  color: black;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  height: 45px;
  width: 200px;
  background-color: #00FF26;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 40px;
  animation: bottomIn 1s ease-in-out forwards;
  animation-delay: 0.5s;
  opacity: 0;
}
.action-btn:hover {
  background-color: #00d11f;
}
