@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap");
h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: auto;
}

h1 {
  font-size: 2.986rem;
  line-height: 4rem;
}

h2 {
  font-size: 2.488rem;
}

h3 {
  font-size: 2.074rem;
}

h4 {
  font-size: 1.728rem;
}

h5 {
  font-size: 1.44rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(166, 100%, 5%);
  color: hsl(166, 100%, 95%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

span {
  color: hsl(166, 100%, 35%);
}

.buttons, footer, header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.cards .card .info, .cards .small-card .info, .cards .card, .cards .small-card, .column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 5rem;
  margin-bottom: 9rem;
}
section p, section h2 {
  text-align: center;
}
section .hero-js {
  text-align: left;
  width: 100%;
}
section.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  section.grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  section.grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  section.grid .mission-group, section.grid .vision-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  section {
    padding: 1rem;
    margin-bottom: 3rem;
    gap: 1.5rem;
  }
  section.grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1rem;
  }
  section h1 {
    font-size: 2rem;
    line-height: 2.5rem;
    text-align: center;
  }
  section h2 {
    font-size: 1.8rem;
  }
  section h3 {
    font-size: 1.5rem;
  }
}

footer, header {
  gap: 2rem;
  padding: 2rem 5rem;
}
footer .links, header .links {
  display: flex;
  gap: 1rem;
  padding: 0.5rem;
}
footer .links a, header .links a {
  text-decoration: none;
  color: hsl(166, 100%, 25%);
  transition: 400ms ease-in-out;
  cursor: pointer;
}
footer .links a:hover, header .links a:hover {
  color: hsl(166, 100%, 65%);
}

.logo a {
  font-family: "Caveat", cursive;
  font-size: 3rem;
  color: hsl(166, 100%, 25%);
  font-weight: 700;
  text-decoration: none;
}

footer {
  margin-top: auto;
  background-color: hsl(166, 100%, 95%);
}

.sub-footer {
  background-color: hsl(166, 5%, 25%);
  color: hsl(166, 100%, 95%);
  text-align: center;
  padding: 1rem;
}

.buttons {
  gap: 1rem;
  padding: 2rem;
  height: 5rem;
}
.buttons a {
  width: auto;
  height: 3rem;
  padding: 1rem;
  border-radius: 6px;
  color: hsl(166, 100%, 95%);
  text-decoration: none;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buttons a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: hsl(166, 100%, 15%);
  border-radius: 6px;
  z-index: -1;
}
.buttons a::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(45deg, #008062, rgba(0, 128, 98, 0.8), rgba(0, 128, 98, 0.6), rgba(0, 128, 98, 0.8), #008062);
  border-radius: 6px;
  background-size: 600%;
  filter: blur(3px);
  animation: glowing 10s linear infinite;
  transition: 400ms ease-in-out;
  opacity: 0;
  z-index: -1;
}
.buttons a:hover::before {
  opacity: 1;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 80rem;
  padding: 1rem 5rem;
}
.cards .card, .cards .small-card {
  gap: 4rem;
  width: 40%;
  height: 25rem;
  padding: 2rem 2rem 1rem;
  border-radius: 6px;
  box-shadow: hsl(166, 100%, 15%);
  transition: 400ms ease-in-out;
  background-color: hsl(166, 100%, 95%);
  color: hsl(166, 100%, 5%);
}
.cards .card .info h3, .cards .small-card .info h3 {
  padding: 1rem 0rem;
}
.cards .card:hover, .cards .small-card:hover {
  transform: translateY(-10px);
}
.cards .card .big-icon i, .cards .small-card .big-icon i {
  font-size: 4.5rem;
  color: hsl(166, 100%, 5%);
}
.cards .small-card {
  height: 23rem;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .cards {
    width: 100%;
    padding: 1rem 2rem;
  }
  .cards .card {
    width: 45%;
    height: 20rem;
    padding: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .cards {
    width: 100%;
    padding: 0;
    gap: 1rem;
  }
  .cards .card {
    width: 100%;
    height: auto;
    min-height: 18rem;
    padding: 1.5rem;
    gap: 0.8rem;
  }
  .cards .card .big-icon i {
    font-size: 3.5rem;
  }
  .cards .card p {
    font-size: 0.95rem;
    line-height: 1.4rem;
  }
  .cards .card .buttons {
    padding: 0;
    margin-top: 1rem;
  }
  .cards .card .buttons .button {
    max-width: 12rem;
  }
}

.social-media-icons {
  display: flex;
  gap: 1rem;
}
.social-media-icons a {
  text-decoration: none;
  cursor: pointer;
}
.social-media-icons a i {
  font-size: 1.5rem;
  color: hsl(166, 100%, 5%);
  transition: 400ms ease-in-out;
}
.social-media-icons a i:hover {
  color: hsl(166, 100%, 45%);
}

@media screen and (max-width: 1024px) {
  header .logo a, footer .logo a {
    font-size: 2.5rem;
    white-space: nowrap;
  }
  footer {
    margin: 0;
    padding: 2rem;
  }
  footer .links {
    flex-wrap: wrap;
    justify-content: center;
  }
  .sub-footer {
    margin: 0;
    padding: 1rem;
  }
}
@media screen and (max-width: 768px) {
  header, footer {
    flex-direction: column;
    padding: 1.5rem 1rem;
    text-align: center;
    gap: 1rem;
  }
  header .logo a, footer .logo a {
    font-size: 2.2rem;
  }
  header .links, footer .links {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    padding: 0;
  }
  .buttons {
    flex-direction: column;
    height: auto;
    padding: 0.5rem;
    gap: 0.8rem;
    width: 100%;
  }
  .buttons button, .buttons .button {
    width: 100%;
    max-width: 15rem;
    height: 2.8rem;
    font-size: 0.9rem;
  }
  .cards {
    width: 100%;
    padding: 0;
    gap: 1rem;
  }
  .cards .card {
    width: 100%;
    height: auto;
    min-height: 18rem;
    padding: 1.5rem;
    gap: 0.8rem;
  }
  .cards .card .big-icon i {
    font-size: 3.5rem;
  }
  .cards .card p {
    font-size: 0.95rem;
    line-height: 1.4rem;
  }
  .cards .card .buttons {
    padding: 0;
    margin-top: 1rem;
  }
  .cards .card .buttons .button {
    max-width: 12rem;
  }
  .social-media-icons {
    gap: 1.2rem;
  }
  .social-media-icons a i {
    font-size: 1.3rem;
  }
  footer {
    margin-top: 2rem;
  }
  footer .social-media-icons {
    width: 100%;
    justify-content: center;
  }
  .sub-footer {
    font-size: 0.9rem;
    padding: 0.8rem;
  }
}
@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}/*# sourceMappingURL=main.css.map */