body{
    background-color:#B5E0B215;
    background-image: url("../../images/web1-back.png");
  }
  
  *{
    margin: 0;
    padding: 0;
    font-family: "Work Sans", sans-serif;
    
  
  }
  
  .container{
    width: 100%;
    min-height: 80vh;
    background-color: #A4B7A3;
    background-image: url("../../images/banner-back.png");
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
    /* background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)), url(images/background.jpg);
    background-position: center;
    background-size: cover;
    position: relative; */
    padding-left: 8%;
    padding-right: 8%;
    box-sizing: border-box;
    overflow: hidden;
   }
   
   
   .navbar{
       width: 100%;
       display: flex;
       align-items: center;
   }
   
   .logo{
       width: 100px;
       cursor: pointer;
       margin: 10px 0;
   }
   
   .menu-icon{
       width: 25px;
       cursor: pointer;
       display: none;
   }
   
   
   nav{
    flex: 1;
    text-align: right;
   }
   
   nav ul li{
       list-style: none;
       display: inline-block;
       margin-right: 30px;
   }
   
   nav ul li a{
       text-decoration: none;
       font-weight: bold;
       color: white;
   }
   
   
   nav ul li::after{
       content: '';
       width: 0%;
       height: 2px;
       background: #1E3D3C;
       display: block;
       margin: auto;
       transition: 0.5s;
   }
   
   nav ul li:hover::after{
       width: 100%;
   }
   
   
   .main-text{
       width: 90%;
       color: #000000;
       position: absolute;
       top: 40%;
       left: 50%;
       transform: translate( -50%, -50%);
       text-align: center; 
   }
   
   .main-text h1 {
       font-size: 45px;
       padding-bottom: 0.5em;
   }
   
   .main-text p{
       margin: 10px 0;
       font-size: 14px;
       color: #000000;
   }
   
   .hero-btn{
       display: inline-block;
       text-decoration: none;
       color: #fff;
       border: 1px solid #ffffff;
       padding: 12px 34px;
       font-size: 13px;
       background: transparent;
       position: relative;
       cursor: pointer;
   }
   
   .hero-btn:hover{
       border: 1px solid #D8AE9D;
       background: #D8AE9D;
       transition: 2s;
   }
  
  
  
  
   @media only screen and (max-width:768px) {
    nav ul{
        width: 100%;
        background: linear-gradient(#A4B7A3, #1E3D3C);
        position: absolute;
        top: 80px;
        right: 0;
        z-index: 2;
    }
    nav ul li{
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    nav ul li a{
        color: #fff;
    }
  
    .menu-icon{
        display: block;
    }
    #menuList{
        overflow: hidden; 
        transition: 1s;  
    }
  }
  
  
  @media (0px <= width <= 445px){
  
    .main-text h1 {
        font-size: 35px;
        padding-bottom: 0.5em;
    }
  }
  
  .membership-head{
    margin-top: 3em;
  margin-left: 3em;
  
  }


  .terms-container{
    text-align: justify;
    padding: 4em;
  }

  .termsul {
   list-style: none;  
}

 .termsdiv{
    margin-bottom: 1em;
 }

 @media screen and (max-width:475px) {
    .terms-container{
     padding: 2em;
    }
  } 



/* Whatsapp */

.whatsapp-btn-container {
  position: fixed;
  right: 30px;
  opacity: 0;
  bottom: -50px;
  padding: 24px;
  animation: fade-up 1000ms forwards;
  animation-delay: 1000ms;
}

@keyframes fade-up {
  100% {
      bottom: 24px;
      opacity: 1;
  }
}

.whatsapp-btn-container .whatsapp-btn {
  font-size: 48px;
  color: #25d366;
  display: inline-block;
  transition: all 400ms;
  z-index: 50;
}

.whatsapp-btn-container .whatsapp-btn:hover {
  transform: scale(1.2);
}

.whatsapp-btn-container span {
  position: absolute;
  top: 0;
  left: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #075e54;
  transform: rotateZ(20deg) translateX(10px);
  opacity: 0;
  transition: all 400ms;
}

.whatsapp-btn-container .whatsapp-btn:hover + span {
  transform: rotateZ(0deg) translateX(0px);
  opacity: 1;
}




  /* .terms-container {
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;;
    line-height: 1.5;
    margin: 20px 0 0 150px;
    max-width: 1200px; 
   word-wrap: break-word; 
  }
  
  .topic {
    font-weight: bold;
    margin-top: 35px;
  }
  
 .termsdiv {
    margin-bottom: 20px;
  }
  
  .termsp {
    margin-bottom: 10px;
  }
  
  .termsul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .termsul li {
    margin-bottom: 5px;
  }

  @media screen and (max-width:580px) {
    .terms-container{
      margin-left: 4.5em;
    }
  } */