* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #111;
}


/* NAVBAR */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 10%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo img {
  width: 10rem;
}

.login-btn {
  text-decoration: none;
  font-weight: 600;
  padding: 10px 35px;
  border-radius: 30px;
  background: #0f6a3b;
  color: white;
  transition: all .25s ease;
  border: 2px solid #0f6a3b;
}

/* hover animation */

.login-btn:hover {
  background: transparent;
  color: #0f6a3b;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}


/* HERO */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-text p {
  font-size: 18px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.leaf {
  width: 20rem;
  animation: float 4s ease-in-out infinite;
}


/* FLOAT ANIMATION */

@keyframes float {

  0% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(0px)
  }

  100% {
    transform: translateY(0px)
  }

}


/* SOCIAL */

.social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  font-weight: 600;
}

.social a {
  text-decoration: none;
  color: #111;
}


/* CONTACT */

.contact {
  text-align: center;
  margin-top: 80px;
  line-height: 2;
}

.contact h2 {
  margin-bottom: 10px;
}


/* FOOTER */

.footer {
  margin-top: 100px;
  border-top: 1px solid #e5e5e5;
  padding-top: 40px;
  background-color: rgb(218, 226, 217);
  color: rgba(23, 23, 23, 0.873);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 10%;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.footer-brand img {
  width: 10rem;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social a {
  text-decoration: none;
  color: rgba(23, 23, 23, 0.873);
  font-weight: 600;
}

.footer-contact {
  line-height: 1.8;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  font-size: 14px;
  color: #777;
}


/* MOBILE */

@media(max-width:768px) {

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .leaf {
    width: 200px;
  }

}