@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&family=Ubuntu:wght@400&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  
}
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Places the image behind the content */
}

.header {
  background: #568203;
  position: relative;
}

.container {
  max-width: 1440px;
  padding: 0 50px;
  margin: 0 auto;
  
  
}

.logo img {
  display: block;
  object-fit: cover;
  width: 90%;
  height: 103px;
  border-radius: 50%;
  background-image: url('images/hero.webp');
  opacity: 0.9;
  
  mix-blend-mode: multiply; /* Experiment with different blend modes */


}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar nav {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
}

.navbar nav li {
  list-style: none;
  margin-left: 1rem;
}

.navbar nav li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.7rem 0.6rem;
  border-radius: 6px;
  transition: all 0.4s ease-in;
}

.navbar nav li a:hover {
  background: #000;
  color: #fff;
}

section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.content {
  display: flex;
  flex-direction: column;
  width: 60%;
  justify-content: center;
  height: 90vh;
  margin-top: 150px;
}

.content h4{
  font-size: 4.5rem;
  color: #fff;
  font-family: 'Ubuntu', sans-serif;
}

.content p {
  color: #fff;
  line-height: 2;
  margin-top: 1rem;
}

.content button {
  display: block;
  margin: 2rem 0;
  width: 21%;
  padding: 0.7rem 0;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: inherit;
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.content button:hover,
.content .social_icons i:hover {
  background: #000;
}

.content .social_icons {
  display: flex;
  justify-content: space-between;
  width: 50%;
  font-size: 1.9rem;
  cursor: pointer;
  margin-top: 2rem;
}

.content .social_icons i {
  padding: 0.6rem;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #ddd;
  transition: all 0.5s ease-in-out;
}

.navbar .btn {
  font-size: 1.2rem;
  color: #fff;
  align-items: center;
  cursor: pointer;
  display: none;
}

@media (max-width: 1058px) {
  .container {
    padding: 0 25px;
  }

  .content h2 {
    font-size: 4rem;
  }

  .navbar nav li a {
    font-size: 1rem;
  }
}

@media (max-width: 902px) {
  .navbar .btn {
    display: block;
  }

  .navbar nav {
    position: fixed;
    flex-direction: column;
    min-width: 100%;
    min-height: 50vh;
    top: 0;
    right: -100%;
    background: #000;
    align-items: flex-start;
    justify-content: center;
  }

  .navbar nav.active {
    right: 0;
    transition: all 0.5s ease-in-out;
  }

  .navbar nav li {
    margin: 1rem 2rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    width: 100%;
  }

  .close-btn {
    position: absolute;
    top: 0;
    left: 90%;
    margin: 25px;
  }

  .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    height: 90vh;
    align-items: center;
  }

  .content h2 {
    font-size: 3.5rem;
  }

  .content button {
    width: 50%;
  }

  .content .social_icons {
    justify-content: space-evenly;
    width: 100%;
  }
}

@media (max-width: 562px) {
  .content h2 {
    font-size: 2.5rem;
  }
}
