@import url("https://fonts.googleapis.com/css?family=Poppins");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  background-color: #2ecc71;
  max-height: 100%; 
}

/* head */
.menu-btn {
  color: #fff;
  font-size: 23px;
  cursor: pointer;
  display: none;
}

.navbar {
  position: fixed;
  top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  height: 80px;
  z-index: 999;
  width: 100%;
  margin-bottom: 20px;
}

.navbar .logo {
  width: 150px;
  height: 80px;
  margin-left: 30px;
}
.navbar .logo img {
  width: inherit;
  height: 100%;
}

.navbar .menu li {
  list-style: none;
  display: inline-block;
}

.navbar .menu li a {
  display: block;
  margin-left: 20px;
  color: white;
  border-bottom: 4px solid transparent;
  text-decoration: none;
  font-size: 20px;
  font-size: 20px;
  font-weight: bold;
  padding: 6px 13px;
  border-radius: 3px;
}

.navbar .menu li a.active,
.navbar .menu li a:hover {
  background-color: white;
  color: #27ae60;
}

.navbar .menu li a i {
  color: #055423;
}
.navbar .menu li a i:hover {
  color: #055423;
}

/* Page container */

#container-box {
  margin-top: 90px;
  display: grid;
  place-items: center;
  margin-bottom: 80px;
  max-width: 100%;
  height: 100%;
}
.content {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  text-align: center;
  
}
.content .box {
  position: relative;
  width: 320px;
  background: #fff;
  padding: 30px 40px 60px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}
.content .box:hover {
  background-color: rgb(184, 212, 222);
  transition: 0.4s ease;
}

.content .box h3 {
  margin-top: 10px;
  margin-bottom: 30px;
  color: #27ae60;
  font-weight: bolder;
}
h1 {
  font-size: 2.5em;
  color: #fff;
  margin: 60px;
  text-align: center;
}
.box-i {
  color: #27ae60;
  font-size: 50px;
  margin: 20px;
}

@keyframes circle-swoop {
  from {
    clip-path: var(--circle-top-right-out);
  }
  to {
    clip-path: var(--circle-bottom-right-in);
  }
}

.--in-custom {
  --transition__duration: 1s;
  --transition__easing: ease-in-out;
  animation-name: circle-swoop;
}
/* footer */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

/* Media queries for responsive design */

@media screen and (max-width: 768px) {
  .menu-btn {
    display: block;
    z-index: 999;
  }

  .menu-btn i.active::before {
    content: "\f00d";
  }
  .navbar {
    width: 100%;
    height: 50px;
  }
  .navbar .logo {
    width: 100px;
    height: 50px;
    margin-left: 15px;
  }


  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    bottom: 0;
    background-color: #055423;
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    left: 0;
  }

  .navbar .menu li {
    display: flex;
    justify-content: center;
  }

  .navbar .menu li a {
    margin: 10px 0;
    font-size: 25px;
  }
  .navbar .menu li a i {
    color: #fff;
  }
  #container-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
    position: relative;
  }
   .content {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }
  .content .box {
    width: 100%;
    margin-bottom: 20px;
  }
  footer {
    padding: 10px;
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 999px) {
 /* *{
  border: 2px solid red;
 } */
  .menu-btn {
    display: block;
    z-index: 999;
  }

  .menu-btn i.active::before {
    content: "\f00d";
  }

  .navbar {
    width: 100%;
    height: 70px;
  }
  .navbar .logo {
    width: 120px;
    height: inherit;
    margin-left: 15px;
  }
  .navbar .logo img {
    height: inherit;
    width: inherit;
  }

  .navbar .menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0px;
    bottom: 0;
    background-color: #055423;
    text-align: center;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    padding: 0;
    padding-top: 80px;
    left: 0;
  }

  .navbar .menu li {
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }

  .navbar .menu li a {
    margin: 10px 0;
    font-size: 25px;
  }
  
  footer {
      padding: 10px;
      font-size: 20px;
    }

  #container-box {
    display: flex;
   max-width: 100%;    
  }
  .content {
    max-width: 100%;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
 
}
/* large screens */
@media only screen and (min-width: 1025px) and (max-width: 2000px) {
  
  #container-box {
   
    margin-top: 8.3%;
    width: 100%;
    margin-bottom: 10.4%;
  }

}
