@import url("https://fonts.googleapis.com/css2?family=Belleza&family=Jost:ital,wght@0,100..900;1,100..900&family=KoHo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&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");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", serif;
  overflow: hidden;
  background: #55b96a;
}
.container {
  height: 100vh;
}
.container::before {
  content: "";
  background: url(./img/bg.jpg), #51b867cb;
  background-repeat: no-repeat;
  background-position: center;

  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.1;
  z-index: -2;
}
.hero-container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 450px;
}
.text {
  width: 100%;
  margin-bottom: 50px;
  display: grid;
  text-align: center;
  place-items: center;
  gap: 2px;
  margin-bottom: 250px;
}
h2 {
  font-size: 20px;
  line-height: 50px;
}
h4 {
  font-size: 18px;
  color: #fff;
}
p {
  color: #2c2c2c;
}
.hero-text {
  display: grid;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.hero-img img {
  width: 800px;
}
.fotter {
  margin-top: 30px;
}
.fotter p {
  font-size: 22px;

  color: #000;
}
.curved {
  position: absolute;
  bottom: -600px;
  left: 0;
  z-index: -1;
}
.curved img {
  width: 100%;
}
.scroll img {
  width: 100%;
}
a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
  z-index: 10000;
}
.fotter {
  position: absolute;
  bottom: 10px;
}
.eye {
  margin-top: 30px;
  width: 250px;
}
/* Extra small devices (Phones) */
@media (max-width: 576px) {
  .hero-text {
    margin-top: 100px;
  }
  h2 {
    font-size: 22px;
  }
  .scroll {
    width: 100%;
    /* overflow: hidden; */
  }
  h3,
  h4 {
    font-size: 18px;
  }
  p {
    font-size: 12px;
  }
  .logo {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
  }
  .logo img {
    width: 150px;
  }

  a {
    font-size: 12px;
  }
  .curved {
    bottom: -10px;
  }
  .fotter {
    margin-bottom: 0;
    bottom: 10px;
    gap: 0;
  }
  .fotter p {
    font-size: 12px;
  }
}

/* Small devices (Tablets) */
@media (min-width: 577px) and (max-width: 767px) {
  .curved {
    bottom: 0px;
  }
}

/* Medium devices (Small Laptops, Tablets) */
@media (min-width: 768px) and (max-width: 991px) {
  .curved {
    bottom: -100px;
  }
}

/* Large devices (Laptops, Desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
  .curved {
    bottom: -200px;
  }
}

/* Extra large devices (Large Screens) */
@media (min-width: 1200px) {
  .curved {
    bottom: -400px;
  }
}
