html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
a,
p,
span {
  margin: 0;
}

section {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0rem 2.5rem;
  box-sizing: border-box;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #acde3a;
}

.divider {
  margin: 5rem auto;
  height: 7px;
  background: rgb(172, 222, 58);
  border-radius: 100%;
  width: 85%;
  max-width: 1200px;
}

a {
  text-decoration: none;
}

#hero {
  max-width: 100%;
  height: 100vh;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 212, 255, 0) 25%), url("./Hero_BG.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#hero h2 {
  position: absolute;
  top: 5%;
  left: 15%;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.8rem;
}
#hero .hero-text {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
  padding: 1.5rem;
  padding-right: 0;
  position: absolute;
  top: 54%;
  left: calc(15% - 1.5rem);
  border-radius: 20px;
}
#hero .hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  width: 500px;
  margin-bottom: 1.5rem;
}
#hero .hero-text p {
  font-size: 1.3rem;
  max-width: 620px;
  color: white;
}
#hero .hero-text .hero-buttons {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}
#hero .hero-text .hero-buttons p {
  color: #0c3702;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
}
#hero .hero-text .hero-buttons span {
  color: #0c3702;
  font-size: 1.8rem;
}
#hero .hero-text .hero-buttons .hero-button {
  display: flex;
  gap: 0.5rem;
  padding: 0.3rem 0rem;
  justify-content: center;
  align-items: center;
  background-color: white;
  width: 160px;
  transition: all 0.15s linear;
}
#hero .hero-text .hero-buttons .hero-button:first-child:hover {
  box-sizing: border-box;
  background-color: unset;
  border: 2px solid white;
}
#hero .hero-text .hero-buttons .hero-button:first-child:hover p {
  color: white;
}
#hero .hero-text .hero-buttons .hero-button:first-child:hover span {
  color: white;
}
#hero .hero-text .hero-buttons .hero-button:last-child {
  background-color: unset;
  border: 2px solid white;
}
#hero .hero-text .hero-buttons .hero-button:last-child p {
  color: white;
}
#hero .hero-text .hero-buttons .hero-button:last-child span {
  color: white;
}
#hero .hero-text .hero-buttons .hero-button:last-child:hover {
  background-color: white;
}
#hero .hero-text .hero-buttons .hero-button:last-child:hover p {
  color: #0c3702;
}
#hero .hero-text .hero-buttons .hero-button:last-child:hover span {
  color: #0c3702;
}

#about-us {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1024px;
  gap: 3rem;
}
#about-us p {
  text-align: end;
  color: #0c3702;
}
#about-us h2 {
  line-height: 2.8rem;
  max-width: 150px;
  text-align: end;
}

#gallery .image-slideshow {
  max-width: calc(1200px - 2rem);
  position: relative;
  margin: 0 auto;
  padding: 1rem;
}
#gallery .image-slideshow img {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}
#gallery .image-slideshow .fade {
  animation-name: fade;
  animation-duration: 2s;
}
@keyframes fade {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

#contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6rem;
}
#contacts .manager-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #3e6f15;
  font-weight: 500;
  align-items: start;
}
#contacts .manager-info p {
  font-size: 1.7rem;
  font-weight: 700;
}
#contacts .manager-info a {
  text-decoration: none;
  color: #3e6f15;
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
#contacts .manager-info a:hover {
  transform: scale(1.05);
}
#contacts .manager-info .contact-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

footer {
  padding: 2rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./Hero_BG.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
footer p {
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
footer p:first-child {
  font-weight: 700;
  font-size: 1.1rem;
}
footer p strong {
  font-size: 1.3rem;
  margin-right: 0.5rem;
}

@media only screen and (max-width: 720px) {
  section {
    padding: 0rem 1.5rem;
  }
  .divider {
    height: 5px;
    margin: 3.5rem auto;
  }
  h2 {
    font-size: 2.5rem;
  }
  #hero {
    padding: 0;
  }
  #hero h2 {
    left: 0;
    width: 100%;
    text-align: center;
  }
  #hero .hero-text {
    background: rgba(0, 0, 0, 0.2);
    left: unset;
    border-radius: unset;
  }
  #hero .hero-text h1 {
    max-width: 350px;
    font-size: 2rem;
  }
  #hero .hero-text p {
    font-size: 1.1rem;
  }
  #hero .hero-text .hero-buttons {
    gap: 1rem;
  }
  #about-us {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
  #about-us h2 {
    max-width: -moz-fit-content;
    max-width: fit-content;
    text-align: center;
  }
  #about-us p {
    text-align: center;
  }
  #gallery .image-slideshow {
    padding: 0.5rem;
  }
  #gallery .image-slideshow img {
    height: 215px;
  }
  #contacts {
    flex-direction: column;
    gap: 1.5rem;
  }
  #contacts .manager-info {
    gap: 0.75rem;
  }
  #contacts .manager-info p {
    font-size: 1.3rem;
    text-align: center;
  }
  #contacts .manager-info a {
    font-size: 1.1rem;
  }
}/*# sourceMappingURL=default.css.map */