@import url("https://fonts.googleapis.com/css2?family=Playwrite+HR:wght@100..400&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
.header {
  background-color: white;
  border-bottom: 1px solid #006634;
  position: absolute;
  width: 100vw;
  z-index: 1;
}
.header nav {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header nav img {
  height: 60px;
  height: 60px;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  border-bottom: 1px solid #006634;
}
.hero-section .effect {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}
.hero-section .effect-reverse {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
  transform: rotate(180deg);
}
.hero-section h1 {
  color: #006634;
  font-size: 5rem;
}
.hero-section p {
  font-size: 2rem;
  max-width: 800px;
  text-align: center;
  line-height: 1.5;
  font-style: italic;
}
@media (max-width: 576px) {
  .hero-section p {
    max-width: 90%;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-family: "Rubik", sans-serif;
  color: #202020;
}
@media (max-width: 576px) {
  html,
  body {
    font-size: 12px;
  }
}

.about-section {
  padding: 5rem 1rem;
  background-color: #006634;
}
@media (max-width: 576px) {
  .about-section {
    padding: 8rem 2rem;
  }
}
.about-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
  color: white;
}
.about-section p {
  color: white;
  text-align: center;
  line-height: 1.5;
  font-size: 1.5rem;
}

.services-section {
  padding: 5rem 1rem;
}
@media (max-width: 576px) {
  .services-section {
    padding: 8rem 2rem;
  }
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  justify-content: center;
}
@media (max-width: 576px) {
  .services-section .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services-section .services-grid .service-card h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.services-section .services-grid .service-card p {
  font-size: 1.5rem;
}

.initiatives-section {
  padding: 5rem 1rem;
  background-color: #006634;
}
@media (max-width: 576px) {
  .initiatives-section {
    padding: 8rem 2rem;
  }
}
.initiatives-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.intiatives-list {
  list-style: none;
  display: flex;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 576px) {
  .intiatives-list {
    flex-wrap: wrap;
  }
}
.intiatives-list li {
  font-size: 1.3rem;
  color: white;
  background-color: #008041;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.gallery-slide {
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: repeat(2, 1fr);
}
.gallery-slide.slide-3 {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-slide img {
  max-height: 400px;
}
@media (max-width: 576px) {
  .gallery-slide {
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .gallery-slide img {
    max-height: unset;
    width: 100%;
  }
}

.initiative-section {
  padding: 5rem 1rem;
  border-bottom: 1px solid #006634;
}
.initiative-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}
.initiative-section h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 600;
}
.initiative-section p {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 3rem;
}
.initiative-section .intiatives-list {
  margin-bottom: 3rem;
}
.initiative-section.color-reverse {
  background-color: #006634;
  color: white;
}

.initiative-extra-section {
  border-bottom: 1px solid #006634;
  padding: 5rem 1rem;
}
@media (max-width: 576px) {
  .initiative-extra-section {
    padding: 8rem 2rem;
  }
}
.initiative-extra-section .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 576px) {
  .initiative-extra-section .row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.initiative-extra-section .row .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 2rem;
}
.initiative-extra-section .row .col img {
  width: 600px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 576px) {
  .initiative-extra-section .row .col img {
    max-width: 100%;
    height: unset;
  }
}
.initiative-extra-section .row .col p {
  font-size: 1.3rem;
  max-width: 600px;
}

.contact-section {
  border-bottom: 1px solid #006634;
  padding: 5rem 1rem;
}
@media (max-width: 576px) {
  .contact-section {
    padding: 8rem 2rem;
  }
}
.contact-section h2 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}
.contact-section .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .contact-section .row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-section .row .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  gap: 2rem;
}
@media (max-width: 576px) {
  .contact-section .row .col img {
    max-width: 100%;
  }
}
.contact-section .row .col .address {
  display: flex;
  text-decoration: none;
  align-items: center;
  color: #008041;
  gap: 0.5rem;
}
.contact-section .row .col .address .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .row .col .address .content {
  line-height: 1;
}
.contact-section .row .col .contacts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-section .row .col .contacts-list li a {
  display: flex;
  text-decoration: none;
  align-items: center;
  color: #008041;
  gap: 0.5rem;
}
.contact-section .row .col .contacts-list li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-section .row .col .contacts-list li a .content {
  line-height: 1;
}

svg {
  width: 24px;
  height: 24px;
}

footer {
  padding: 1rem;
}
footer p {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: #006634;
}

.opening-status {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.opening-status:hover {
  opacity: 1;
}
.opening-status.closed {
  background-color: red;
}
.opening-status.open {
  background-color: green;
}/*# sourceMappingURL=main.css.map */