@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body{
    background-color: rgb(254, 254, 254);
    color: black;
    font-family: 'Poppins', sans-serif;
}
svg{
    width: 20px;
}

nav #menu{
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-items: end;
  font-weight: 500;
  
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;;
}

html,body{
  height: 100%;
  width: 100%;
  background: white;
}

.logo{
  color: #fff;
}

nav {
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns:1fr;
  grid-template-rows: 50px;
  align-items: center;
  z-index: 100;
  background: rgb(251, 251, 251);
  position: relative;
  border-bottom: 0.05em solid;
  padding: 0 20px;
}

nav ul {
  display: flex;
  gap: 4vw;
  align-items: center;
  justify-content: center; 
  padding: 0;
  margin: 0;
  list-style: none;
}

nav ul li {
  color: #040404;
  margin: 0; 
}

nav ul li:hover{
    color: #14a800;
}

nav ul li a{
  text-decoration: none;
  color: #fff;
}

.menu-icon{
  display: none;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width:755px) {
  nav ul{
    z-index: -1;
      position: absolute;
      top: .7rem;
      right: 0.3rem;
      left: 0;
      right: 0;
      flex-direction: column;
      text-align: center;
      background: rgb(252, 251, 251);
      gap: 0;
      overflow: hidden;
  }
  nav ul li{
    margin: 0;
      padding: 20px;
      padding-top: 0;
  }
  .menu-icon{
      display: block;
      width: 26.5px;
  }
  #menuList{
      transition: all 0.5s;
  }
}

/* footer*/
a {
  text-decoration: none;
}

li {
  list-style: none;
}

.footer-custom {
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(to top, #1f3324, #2d472d);

}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-section {
  display: grid;
  grid-template-columns: 1fr;
}

.footer-content {
  padding: 0 10px;
}

.footer-about {
  margin-bottom: 1rem;
}

.footer-logo img {
  margin-bottom: 10px;
  height: 75px;
}

.social-item {
  display: inline-block;
}

.social-item:not(:last-child) {
  margin-right: .5rem;
}

.social-item a {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

footer h4 {
  position: relative;
  line-height: 1;
  padding-bottom: 20px;
  font-size: 24px;
  margin: 1rem 0 1.615rem 0;
  
}
.footer-content a{
  color: inherit;
  text-decoration: none;
}
footer li a:hover{
color: #14a800;
}
.footer-content h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: #0d5ef4;
}

.footer-nav li a {
  color: #fafafa;
  line-height: 2rem;
  font-size: 18px;
}

.footer-contact li {
  display: flex;
  align-items: start;
  line-height: 2rem;
  font-weight: 400;
}

.footer-contact li i {
  margin-top: 5px;
  font-size: 24px;
  color: #fefefe;
  margin-right: 10px;
}

.footer-contact li span {
  font-size: 18px;
}

.footer-copyright {
  background-color: #1f3324;
  color: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  text-align: center;
}


/* Responsive Layout */

@media (min-width:806px) {

  .footer-section {
      grid-template-columns: 2fr 1fr 1fr;
  }
}