@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

@font-face {
  font-family: "Tropical Country";
  src: url("fonts/TropicalCountry-51PZj.ttf") format("truetype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* header styling */

header {
  height: 12vh;
  width: 98.7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.7vw 10vw;
}
header img {
  height: 2vw;
  width: 8vw;
}

/* header styling */

.menu-btn {
  /* display: none; */
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: .5em 0em;
  background-color: #094d8e;
  border: none;
  border-radius: 2.2917vw;
  color: #fff;
  font-family: "Poppins";
  font-style: normal;
  font-weight:500;
  font-size: 1.389vw;
}

.menu-icon {
  font-size: 1.3vw;
  cursor: pointer;
  width: 100%;
}

.menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
  background-color: #3dc5f2;
  border-radius: 1vw;

  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  margin-top: 0.5vw;
}

.menu li {
  margin: 1vw 0;
}

.menu a {
  display: block;
  /* padding: 10px; */
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  width: 10vw;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 1.1vw;
}


.menu-btn input[type="checkbox"] {
  display: none;
}

.menu-btn input[type="checkbox"]:checked ~ .menu {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 319px) and (max-width: 600px) {
  header {
    height: 6vh;
    padding: 8vw 5vw 2vw 5vw ;
    margin-bottom: 5vw;
  }
  header img {
    height:5vw;
    width: 20vw;
  }

  .menu-icon {
    font-size: 4vw;
    cursor: pointer;
  }

  .menu-btn {
    border-radius: 5vw;
    font-weight: 450;
    font-size: 2vw;
  }

  .menu {
    margin-top: 1vw;
  }
  .menu li {
    margin: 1vw 0;
  }

  .menu a {
    width: 17vw;
    font-size: 3vw;
  }
  /* .menu a:hover {
    background-color: #094d8e;
    color:#fff;
  
    width:10.2vw;
    border-radius:5vw;
  }  */

 
  
}

@media (min-width: 600px) and (max-width: 1024px) {

  header {
    height: 6vh;
    padding: 5vw 3vw 0vw 3vw;
    margin-bottom: 5vw;
  }

}