/* Importing Google font - Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  height: 100vh;
  width: 100%;
  background: url("../images/hero1darka.jpg");
  background-repeat: no-repeat;
  background-size: cover;

}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.nav-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;

}

.nav-section .logo p{
  font-size: 1.8rem;
  text-decoration: none;
  color: #fff;
}

.nav-section .logo span{
  font-size: 1.8rem;
  text-decoration: none;
  color: greenyellow;
}

.nav-section .nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 35px;
  font-size: 20px;
}

.nav li i{
  margin-right: 10px;
  color: greenyellow;
}


.nav-section .nav a {
  font-weight: 800;
  text-decoration: none;
  color: greenyellow;
  padding: 10px 0;
  transition: 0.2s ease;
}

.nav-section .nav a:hover {
  color: whitesmoke;
}

.dS{
  opacity: 0%;
}

/* sub nav */
.sub-menu{
  display: none;
}

.sub-menu ul{
  list-style: none;
}

.nav-section ul li:hover .sub-menu{
  display: block;
  position: absolute;
  /* background: rgb(27, 27, 27); */
  margin-top: 1px;
  margin-left: 15px;
  color: greenyellow;
}

.nav-section ul li:hover .sub-menu ul{
  display: block;
  margin: 10px;
}

.nav-section ul li:hover .sub-menu ul li{
  width: 100px;
  padding: 10px;
  border-bottom: 1px dotted #fff;
  background: transparent;
  border-radius: 0;
  text-align: left;
}


/* hero section */
.hero-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  height: 95vh;
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-section .hero {
  max-width: 50%;
  color: #fff;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.16);
  font-weight: 400;
}

.hero-section .img img {
  width: 317px;
}

.hero-section .buttons {
  margin-top: 40px;
}

.hero-section .buttons a:nth-of-type(1) {
  text-decoration: none;
  color: #000000;
  padding: 12px 24px;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: 0.2s ease;
  display: inline-block;
}


.hero-section .buttons a {
  text-decoration: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: 0.2s ease;
  display: inline-block;
}


.hero-section .buttons a:not(:last-child) {
  margin-right: 15px;
}


.buttons .join {
  background-color: rgb(173, 255, 47);
}

.hero-section .buttons .learn {
  border: 1px solid #fff;
  border-radius: 0.375rem;
}

.hero-section .buttons a:hover {
  /*background-color: #47b2e4;*/
  background-color: greenyellow;
  color: black;
}

.hero-section .buttons a:hover:nth-of-type(1) {
  /*background-color: #47b2e4;*/
  background-color: white;
  color: black;
}

/* Hamburger menu styles */
#menu-toggle {
  display: none;
}

#hamburger-btn {
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  display: none;
  order: 1;
}

/* .whatsapp{
  max-width: 500px;
  margin-left: auto;
  margin-bottom: auto;
}



.whatsapp a{
  font-size:80px;
  font-weight: bolder;
  color: lawngreen;
  padding-bottom: 0;

} */

.whatsapp{
  position: relative;
  padding: 15px 40px;
  text-align: right;
  top: 80%;
}

.whatsapp a{
  position: absolute;
  right: 300px;
  color: yellowgreen;
  font-size: 80px;
}

.whatsapp a:hover{
  color: #fff;
}



@media screen and (max-width: 1023px) {
.nav-section .logo p {
  font-size: 1.5rem;
}

.nav {
  position: fixed;
  left: -100%;
  top: 75px;
  width: 100%;
  height: 100vh;
  padding-top: 50px;
  /*background: #175d69;*/
  background: url("../images/hero1a.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  transition: 0.3s ease;
}

  .nav-section #menu-toggle:checked ~ .nav {
    left: 0;
  }

  .nav-section #hamburger-btn {
    display: block;
  }


  /* sub nav */

  .sub-menu ul{
    list-style: none;
  }
  

  .nav-section ul li fa-caret-down:hover .sub-menu{
    display: block;
    position: absolute;
    background: none;
    margin-top: 1px;
    margin-left: 15px;
    color: greenyellow;
  }
  

  .nav-section ul li:hover .sub-menu ul{
    display: block;
    margin: 10px;
  }

  .nav-section ul li:hover .sub-menu ul li{
    width: 100px;
    padding: 10px;
    border-bottom: 1px dotted #fff;
    background: transparent;
    border-radius: 0;
    text-align: left;
  }

  .nav-section ul li:nth-child(3):hover{
    margin-bottom: 220px;
  }

  .header .buttons {
    display: none;
  }

  .hero-section .hero {
    max-width: 100%;
    text-align: center;
  }

  .hero-section img {
    display: none;
  }

  .whatsapp{
    position: relative;
    padding: 15px 40px;
    text-align: right;
    top: 85%;
  }
  
  .whatsapp a{
    position: absolute;
    right: 65px;
    color: yellowgreen;
    font-size: 80px;
  }

}


@media screen and (max-width: 600px){
  .whatsapp{
    position: relative;
    padding: 15px 40px;
    text-align: right;
    top: 85%;
  }
  
  .whatsapp a{
    position: absolute;
    right: 45px;
    color: yellowgreen;
    font-size: 50px;
    z-index: 999;
  }
}


