*{	
  margin: 0;
  padding: 0;	
  box-sizing: border-box;	
  text-decoration: none;	
  }	
body {
  background-image: url(./images/banner-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  font-family: 'Open Sans', sans-serif;
 		
}

/*========================= navbar start ========================= */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
  
}
.navbar {
  /* box-shadow: 0px 5px 10px 0px #aaa; */
  position: fixed;
  width: 100%;
  background: black;
  color: white;
  /* opacity: 0.85; */
  height: 50px;
  z-index: 12;
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}
.menu-items {
  order: 2;
  display: flex;
}
.menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 1.2rem;
}
.menu-items a {
  text-decoration: none;
  
  color: white;
  /* font-weight: 500; */
  transition: color 0.3s ease-in-out;
}
.menu-items a:hover {
  color: #c9f31d;
  transition: color 0.3s ease-in-out;
}
.logo {
  width: 40px;
  height: 40px;
  font-size: 30px;
  /* order: 1; */
  /* font-size: 2.3rem; */
  /* margin-bottom: 0.5rem; */
  margin-left: 10px;
  margin-bottom: 14px;
  /* margin-top: 14px; */
}
/*========================= navbar end ========================= */


/*========================= img rotate start =================== */
img {
    max-width: 100%;
    height: auto;
    margin: auto;
    /* border: solid 3px;		 */
}
.ring {
  border-radius: 50%;
}
.border {
  border: solid 2px ;
}

/*========================= img rotate end ===================== */




/*========================= global start ======================= */
h1, h2, h3 {
  font-size: 50px;
  text-align: center;
  color: #c9f31d;
  margin-top: 50px;
}

h3 {
margin-top: 10px; 
}
.text {
  color: white;
  /* background: white; */
  border: 1px solid white;
  border-radius: 10px;
  font-size: 25px;
  letter-spacing: 1.5px;
  word-spacing: 5px;
  line-height: 40px;
  
}
span {
  color: #c9f31d;
}
/*========================= global end ========================= */
/*=============================== footer ========================== */
.footer {
  position: sticky;
  top: 100%;
  left: 0;
  padding: 40px;
  margin-bottom: 0px;
  width: 100%;
  /* background-color: black; */
  border: 1px solid white;
  border-radius: 10px;
  color: white;
  /* opacity: 0.85; */
  text-align: center;
  }
a:link {
  text-decoration: none;
}
footer p a {
  color: #c9f31d;
  font-size: 30px;
}
h2 a {
  color: white;

}
/* =========================== footer end ========================= */
/*========================= @media navbar start ================ */
@media (max-width: 500px) {
  
  
  .logo {
    position: absolute;
    top: 06px;
    right: 25px;
  }
  .navbar .menu-items li {
    margin-bottom: 2.5rem;
    /* font-size: 1.8rem; */
    font-weight: 500;
  }
}
@media only screen and (max-width: 1010px) { 
  .logo {
    position: absolute;
    top: 06px;
    right: 25px;
  }
  .navbar {
    opacity: 0.95;
  } 
  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }
  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }
  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
  }
  .navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: white;
  }
  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  .navbar .menu-items {
    padding-top: 100px;
    
    background-color: black;
    height: 100vh;
    max-width: 250px;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
  }
  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    /* font-size: 1.3rem; */
    font-weight: 500;
  }
  .logo {
    /* position: absolute; */
    /* width: 20px;
    height: 20px; */ 
    /* top: 5px;
    right: 5px; */
    /* font-size: 2rem; */
  }
  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }
  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(35deg);
  }
  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-35deg);
  }
} 
/*========================= @media navbar end ================== */
/* ======================== @media start ======================= */
@media only screen and (max-width: 320px) {
  .logo {
    position: absolute;
    top: 06px;
    right: 55px;
  }
  
  .menu-items li {
    font-size: 18px;
  }  
  h1 {
    font-size: 34px;
    margin-top: 60px;
    margin-bottom: 5px;
  }
  h2 {
    font-size: 24px;
    margin-top: -7px;
    margin-bottom: -14px;
  }
  .text {
    padding: 20px 15px 20px 15px;
    margin: 60px 15px 30px 15px;
    font-size: 16px;
   }
  .footer {
   padding: 15px;
   font-size: 15px;
   
  }      
}
@media only screen and (min-width: 321px) and (max-width: 480px) {
  .menu-items li {
    font-size: 19px;
  }
  h1 {
    font-size: 40px;
    margin-top: 77px;
    margin-bottom: 5px;
  }
  h2 {
    font-size: 40px;
    margin-top: -7px;
    margin-bottom: -14px;
  }
  .text {
    padding: 20px 15px 20px 15px;
    margin: 110px 15px 30px 15px;
    font-size: 20px;
   }
  .footer {
   padding: 15px;
   font-size: 15px;
  }       
}
@media only screen and (min-width: 481px) and (max-width: 600px) {
  .menu-items li {
    font-size: 19px;
  }
  h1 {
    font-size: 44px;
    margin-top: 77px;
    margin-bottom: 5px;
  }
  h2 {
    font-size: 44px;
    margin-top: -7px;
    margin-bottom: -14px;
  }
  .text {
    padding: 20px 15px 20px 15px;
    margin: 130px 15px 30px 15px;
    font-size: 22px;
   }
  .footer {
   padding: 15px;
  }       
}
@media only screen and (min-width: 601px) and (max-width: 768px) {
  .menu-items li {
    font-size: 19px;
  }
  h1 {
    font-size: 46px;
    margin-top: 77px;
    margin-bottom: 5px;
  } 
  h2 {
    font-size: 46px;
    margin-top: -7px;
    margin-bottom: -14px;
  }
  .text {
    padding: 20px 35px 20px 35px;
    margin: 130px 40px 30px 40px;
    font-size: 23px;
   }
  .footer {
   padding: 25px;
  }      
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .menu-items li {
    font-size: 19px;
  }
  h1 {
    font-size: 48px;
    margin-top: 170px;
    margin-bottom: 20px;
  } 
  h2 {
    font-size: 48px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .text {
    padding: 20px 50px 20px 50px;
    margin: 130px 100px 30px 100px;
    font-size: 20px;
   }
  .footer {
   padding: 25px;
  }    
}
@media only screen  and (min-width: 993px) and (max-width: 1199px) {
  .menu-items li {
    font-size: 19px;
  }
  h1 {
    font-size: 82px;
    margin-top: 170px;
    margin-bottom: 20px;
  }
  h2 {
    font-size: 48px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .text {
    padding: 20px 50px 20px 50px;
    margin: 150px 150px 30px 150px;
    font-size: 24px;
   }
  .footer {
   padding: 25px;
  }  
}
@media only screen and (min-width: 1199px) {
  .menu-items li {
    font-size: 19px;
  }
  h1 {
    font-size: 48px;
    margin-top: 50px;
    margin-bottom: 20px;
  } 
  h2 {
    font-size: 48px;
    margin-top: 10px;
    margin-bottom: 20px;
  } 
  .text {
    padding: 20px 50px 20px 50px;
    margin: 200px 200px 30px 200px;
    font-size: 24px;
   }
  .footer {
   padding: 25px;
  }
}
/* ======================== @media end ======================= */
