*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

header{
  background:linear-gradient(rgba(0,0,0,0.5),#000000),url(images/header.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
}

li{
  list-style: none;
}
a{
  color: white;
  text-decoration: none;
}
.navbar{
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.nav-menu{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.nav-branding{
  font-size: 2rem;
  font-weight: 700;
}
.nav-link{
  transition: 0.7s ease;
}
.nav-link:hover{
  color: dodgerblue;
}
.hamburger{
  display: none;
  cursor: pointer;
}

.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

@media(max-width:768px){
  .hamburger{
      display: block;
      float: right;
  }    
  .hamburger.active .bar:nth-child(2){
      opacity: 0;
  }
  .hamburger.active .bar:nth-child(1){
      transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3){
      transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu{
      position: fixed;
      left: -100%;
      top: 70px;
      gap: 0;
      flex-direction: column;
      background-color: black;
      width: 50%;
      text-align: center;
      transition: 0.3s;
      margin-left: 20%;
      border-radius: 2dvh;
  }

  .nav-item{
      margin: 16px 0;
  }
  .nav-menu.active{
      left: 0;
      background-color: aliceblue;
  }
  .navbar{
    background: black;
    position: fixed;
    width: 100%;
  }
  .nav-link{
    color: #000000;
  }
}
#home{
  display: flex;
  width: 70%;
  padding: 10%;
  flex-wrap: wrap;
}

#home h2{
  color: #fff;
  font-size: 80px;
} 
#home p{
  color: aqua;
  margin-bottom: 50px;
}

.banner-btn a{
  background: #fff;
  color: #000;
  padding: 15px;
}

@media(max-width:768px){
  #home{
    flex-basis: 100%;
    width: 100%;
    padding-top: 55px;
  }
  #home h2{
  font-size: 60px;
  margin-bottom: 40px;
  margin-top: 100px;
  font-weight: bolder;
  }
}


#about{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 5%;
}
#about h2{
  font-size: 40px;
  margin-bottom: 20px;
}
#about h2 z{
  background: aqua;
  padding: 12px;
  color: #fff;
  border-radius: 4px;
}
#about p{
  margin-left: -50px;
  font-size: 20px;
}
@media(max-width:768px){
  #about{
    display: flex;
    flex-basis: 100%;
    padding-top: 60px;
  }
  #about p{
    font-size: 17px;
    margin-left: auto;
  }
}
#features{
  width: 100%;
  padding: 70px 70px;
}

#features h2 z{
  background: aqua;
  padding: 12px;
  color: #fff;
  border-radius: 4px;
  font-size: 40px;
}  
#features h2{
  margin-bottom: 12px;
}
.feature-col{
  display: flex;
  flex-basis: 50%;
}
.feature-col .feature-con img{
  width: 200px;
  border-radius: 2px;
  flex-basis: 50%;
  margin-bottom: 20px;
}
.feature-col .feature-con{
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  flex-basis: 95%;
  padding: 2%;
  justify-content: space-between;
  background-color: wheat;
  padding-left: 70px;
  padding-bottom: 50px;
}
.feature-con h3{
  font-size: 30px;
  margin-bottom: 20px;
}
.feature-con p{
  font-size: 17px;
  margin-bottom: 50px;
}

@media(max-width:768px){
  #features{
    padding: 0;
    margin: 0;
  }
  
  .feature-col{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    background:linear-gradient(rgba(0,0,0,0.5),#000000),url(images/mobile.jpg);
    width: 100%;
    padding: 5%;
    background-size: cover;
    background-position: center;
  }
  .feature-col .feature-con{
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 30px;
    background: #efefef;
    border-radius: 9px;
    max-width: 70%;
    box-shadow: 0 10px 20px 3px #000;
  }  
  #features h2{
    margin-left: 40px;
    margin-top: 50px;
  }
  
}

#contact{
  margin-left: 20%;
  margin-right: 20%;
  background:linear-gradient(rgba(0,0,0,0.5),#000000),url(images/pexels-karolina-grabowska-5980568.jpg);
  background-size: cover;
  background-position: center;
  padding-left: 10%;
  padding-bottom: 10%;
  padding-top: 10%;
}

#contact h2{
 
 font-size: 60px;
 color: #fff;
 margin-bottom: 20px;
}

#contact p{
  color: #fff;
  margin-bottom: 20px;
}

.contact h1{
  margin-bottom: 10px;
  color: #fff;
}
.contact-1 h1{
  margin-bottom: 10px;
  color: #fff;
}

.contact-2 h1{
  margin-bottom: 10px;
  color: #fff;
}

input{
  border-radius: 2px;
  outline: none;
  background:linear-gradient(rgba(0, 0, 0, 0),#00000000);
  border: 1px solid #fff;
  height: 40px;
  padding-left: 10px;
  color: #fff;
  margin-bottom: 20px;
}

.text input, textarea{
  padding: 10px;
  width: 70%;
  outline: 0;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}
.banner-s{
  background: wheat;
  color: #000;
  width: 12%;
  padding: 10px;
  margin-top: 20px;
}

.banner-s a{
  color: #000;
}
@media(max-width:768px){
  #contact{
    flex-basis: 100%;
    max-width: 100%;
    margin: 0;
    background: #efefef;
    
    
  }
  #contact h2{
    font-size: 40px;
    color: #000;
  }
  #contact p{
    font-size: 20px;
    margin-right: 20px;
    color: #000;
  }
  .text input, textarea{
    padding: 10px;
    width: 90%;
    outline: 0;
    border: 1px solid #000;
    color: #000;
    background: transparent;
  }
  .banner-s{
    background: rgb(255, 191, 72);
    color: #000;
    width: 24%;
    padding: 10px;
    margin-top: 20px;
  }  
  
input{
  border-radius: 2px;
  outline: none;
  background:transparent;
  border: 1px solid #000;
  height: 40px;
  padding-left: 10px;
  color: #000;
  margin-bottom: 20px;
  width: 50%;
 }
 .contact h1{
  margin-bottom: 10px;
  color: #000;
 }
.contact-1 h1{
  margin-bottom: 10px;
  color: #000;
 }

.contact-2 h1{
  margin-bottom: 10px;
  color: #000;
 }
} 


footer h2{
  font-size: 40px;
  color: rgb(255, 191, 72);
}
footer{
  background: #000;
  align-items: center;
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
  padding-bottom: 20px;
}
footer p{
  font-size: 15px;
  color: #fff;
}
.social-links{
  text-align: center;
  margin-bottom: 12px;
}
.social-links .fa{
  height: 40px;
  width: 40px;
  font-size: 20px;
  line-height: 40px;
  margin: 40px px 0;
  color: #fff;
}






 