*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}  
 .background-image {
     
     height: 150vh;
     background-image: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75)), url('./images/pexels-ylanite-koppens-1906440.jpg');
     background-size: cover;
     background-position: center;  
     background-repeat: no-repeat; 
 }
 .navbar{
  width: 85%;
  margin: auto;
  padding: 1% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
 }
 .logo i{
  height: 55px;
  width: 55px;
  background: transparent;
  border: 2px solid #2ec1cc;
  color: #2ec1cc;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
 }
 .navbar ul li{
  list-style: none;
  display: inline-block;
  margin: 0 20px;
  position: relative;
 }
 .navbar ul li a{
  text-decoration: none;
  color: #fff;
 }
 .navbar ul li::after{
  content: '';
  height: 3px;
  width: 0%;
  background: #009688;
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: 0.5s;
 }
 .navbar ul li:hover::after{
  width: 100%;
 }
 .container{
  padding: 5%;
  padding-top: 190px;
 }
 .container .hero-text{
  margin-bottom: 40px;
 }
 .container .hero-text h1{
  color: white;
  font-size: 47px;
  font-weight: 900;
  line-height: 1.2;
  margin:  20px 0px 20px;
 }
 span{
  color: aqua;
 }
 .container .hero-text h3{
  color: #eee;
  font-weight: 400;
  font-size: 17px;
 }
 .container .hero-text p{
  width: 440px;
  max-width: 100%;
  color: #eee;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 30px;
 }
 .social a{
  width: 37px;
  height: 37px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 17px;
  color: #eee;
  cursor: pointer;
  margin-right: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 35px;
 }
 .social a:hover{
  transform: scale(1.1);
  background: #2ec1cc;
  transition :.4s;
 }
 .container .hero-text button{
  color: #eee;
  background: #2ec1cc;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 8px 30px;
  border-radius: 30px;
  cursor: pointer;
 }
 .container .hero-text button:hover{
  background: transparent;
  border: 2px solid #2ec1cc;
  color: aqua;
  transition: .4s;
 }
 .bottom{
  margin-top: 243px;
  padding-bottom: 40px;
 }
 .bottom p{
  color: #eee;
  letter-spacing: 2px;
  font-size: 15px;
 }

 .navbar{
  width: 85%;
  margin: auto;
  padding: 1% 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
 }
 .logo i{
  height: 55px;
  width: 55px;
  background: transparent;
  border: 2px solid #2ec1cc;
  color: #2ec1cc;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
 }

 .toggle-button{
  position: absolute;
  top: .75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
 }
 .toggle-button .bar{
  height: 3px;
  width: 100%;
  background-color: #eee;
  border-radius: 10px;
 }
 @media (max-width: 600px) {
  .toggle-button{
    display: flex;
  }
  .navbar-links{
    display : none;
    width: 100%;
    background-color: black;
    z-index: 2;
    padding: 6% 9%;
    transition: .3s right;
    border-radius: 10px;
  }
  .navbar{
    flex-direction: columns;
    align-items: flex-start;
  } 
  .navbar-links ul{
    width: 100%;
    flex-direction: column;
  }
  .navbar-links li{
    display: block;
    text-align: center;
  }
  .navbar-links li a {
    padding: .5rem 1rem;
    display: block;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .navbar-links.active{
    display: flex;
  }

 }
