.has_fade {
  visibility: hidden;
}

@keyframes fade_in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade_in {
  animation: fade_in 0.3s ease-in-out forwards;
}

@keyframes fade_out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade_out {
  animation: fade_out 0.3s ease-in-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.animate {
  animation: slideUp 1s ease forwards;
}

html {
  font-size: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.3;
  background-color: rgb(255, 255, 255);
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow: hidden;
}
body.no_scroll {
  height: 100vh;
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body.fade-in {
  opacity: 1;
}

/* Fade transition */
.fade-out {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.fade-out.fade {
  opacity: 0;
}

a, a:visited, a:hover {
  text-decoration: none;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

.spc {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

button, .button {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: linear-gradient(to right, rgba(2, 104, 46, 0.8), rgba(7, 170, 15, 0.8));
  cursor: pointer;
  border: none;
  color: white;
  font-size: 0.875rem;
  transform: opacity 300s ease-in-out;
}
button:hover, .button:hover {
  opacity: 0.7;
}

@media (max-width: 63.975em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
}
.header.open .header__mobile-menu > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__mobile-menu > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__mobile-menu > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(#00220f, transparent);
  z-index: 700;
}
.header nav {
  position: relative;
  background-color: white;
  padding-top: 1rem;
  padding-bottom: 1rem;
  z-index: 999;
}
.header__logo img {
  width: 80px;
}
.header__mobile-menu > span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #02682E;
  transition: all 300ms ease-in-out;
  transform-origin: 3px 2px;
}
.header__mobile-menu > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__links a {
  position: relative;
  font-size: 0.875rem;
  color: #424242;
  font-weight: 500;
  transition: color 200ms;
}
.header__links a:not(:last-child) {
  margin-right: 2rem;
}
.header__links a::after {
  content: "";
  position: absolute;
  display: block;
  height: 4px;
  background: linear-gradient(to right, rgba(2, 104, 46, 0.8), rgba(7, 170, 15, 0.8));
  left: 0;
  right: 0;
  bottom: -28px;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.header__links a:hover {
  color: #07AA0F;
}
.header__links a:hover::after {
  opacity: 1;
}
.header__menu {
  position: absolute;
  width: 100vh;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  margin-top: 1.5rem;
  padding: 1.625rem;
  text-align: center;
  border-radius: 5px;
  z-index: 800;
}
.header__menu a {
  display: block;
  font-weight: 400;
  color: #00220f;
  text-transform: uppercase;
  padding: 0.625rem;
}

.hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  animation: zoomOut 10s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: none !important;
  z-index: 1;
}
.hero__overlay .hero-content {
  position: relative;
  margin: 0 auto;
  padding-top: 15%;
  max-width: 600px;
  color: white;
  text-align: left;
  z-index: 2;
  animation: slideUp 1s ease;
}
.hero__overlay .hero-content h1 {
  font-size: 3rem;
}
.hero__overlay .hero-content p {
  width: 400px;
}
@media (max-width: 63.975em) {
  .hero__overlay .hero-content {
    padding-top: 25%;
  }
  .hero__overlay .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero__overlay .hero-content p {
    font-size: 1rem;
    width: auto;
  }
}

.how-we-make-it-easy {
  padding: 4rem 0;
}
.how-we-make-it-easy__intro {
  text-align: center;
  margin-bottom: 3rem;
}
.how-we-make-it-easy__intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #02682E;
}
.how-we-make-it-easy__intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #424242;
}
.how-we-make-it-easy__cards {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.how-we-make-it-easy .card {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  text-align: left;
  min-height: 100%;
}
.how-we-make-it-easy .card img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}
.how-we-make-it-easy .card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #02682E;
  font-weight: 500;
}
.how-we-make-it-easy .card p {
  font-size: 1rem;
  color: #424242;
}
@media (max-width: 63.975em) {
  .how-we-make-it-easy__cards {
    flex-direction: column;
  }
  .how-we-make-it-easy .card {
    flex: 1 1 100%;
  }
  .how-we-make-it-easy .card img {
    height: 200px;
  }
  .how-we-make-it-easy__intro h2 {
    font-size: 2rem;
  }
  .how-we-make-it-easy__intro p {
    font-size: 1rem;
    color: #424242;
  }
}

.about-us {
  padding: 1rem 0;
}
.about-us__intro {
  text-align: center;
  margin-bottom: 3rem;
}
.about-us__intro h2 {
  font-size: 2.5rem;
  color: #02682E;
  margin-bottom: 1rem;
}
.about-us__intro p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: #424242;
}
.about-us__content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 63.975em) {
  .about-us__content {
    grid-template-columns: 1fr;
  }
}
.about-us__image {
  grid-column: span 1;
}
.about-us__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-us__text {
  grid-column: span 2;
  background-color: transparent;
  color: #333;
}
.about-us__text h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #02682E;
}
.about-us__text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #424242;
}
@media (max-width: 63.975em) {
  .about-us__text {
    grid-column: span 1;
  }
  .about-us__text h3 {
    font-size: 1.25rem;
  }
  .about-us__text p {
    font-size: 0.95rem;
  }
}

.why-choose-us {
  padding: 4rem 0;
}
.why-choose-us .section-heading,
.why-choose-us .section-description {
  text-align: center;
  margin-bottom: 1rem;
  color: #02682E;
}
.why-choose-us__cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.why-choose-us__card {
  flex: 1 1 220px;
  max-width: 250px;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.why-choose-us__card i {
  font-size: 3rem;
  color: #07AA0F;
  margin-bottom: 1rem;
}
.why-choose-us__card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #02682E;
}
.why-choose-us__card p {
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 63.975em) {
  .why-choose-us__cards {
    flex-direction: column;
    align-items: center;
  }
  .why-choose-us__card {
    align-items: center;
    text-align: center;
  }
  .why-choose-us__card i {
    font-size: 2.5rem;
  }
}

.footer {
  background-color: #111;
  color: #fff;
  padding: 3rem 0;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__column {
  flex: 1 1 250px;
}
.footer__column h3,
.footer__column h4 {
  margin-bottom: 1rem;
}
.footer__column p,
.footer__column li {
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer__column ul {
  list-style: none;
  padding: 0;
}
.footer__column ul li {
  margin-bottom: 0.5rem;
}
.footer__column ul li a {
  color: #fff;
  text-decoration: none;
}
.footer__column ul li a:hover {
  text-decoration: underline;
}
.footer__column i {
  margin-right: 0.5rem;
}
@media (max-width: 63.975em) {
  .footer__content {
    flex-direction: column;
  }
  .footer__column {
    text-align: center;
    align-items: center;
  }
  .footer__column ul {
    text-align: left;
    display: inline-block;
  }
  .footer__column p {
    text-align: center;
  }
}

.hero--about {
  position: relative;
  height: 80vh;
  background-image: url("images/about-as-service-contact-information-concept_53876-138509.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero--about .hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: #fff;
}
.hero--about .hero__content {
  max-width: 600px;
}
.hero--about .hero__content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero--about .hero__content p {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media (max-width: 63.975em) {
  .hero--about {
    height: 100vh;
  }
  .hero--about .hero__content h1 {
    font-size: 2rem;
  }
  .hero--about .hero__content p {
    font-size: 1rem;
  }
}

.about-info {
  padding-block: 4rem;
}
.about-info .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.about-info .section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #02682E;
}
.about-info .section-header p {
  max-width: 600px;
  margin-inline: auto;
  font-size: 1rem;
  color: #555;
}
.about-info__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.about-info__card {
  flex: 1 1 20rem;
  max-width: 22rem;
  padding: 1.5rem;
  text-align: left;
  color: #333;
}
.about-info__card i {
  font-size: 2.5rem;
  color: #07AA0F;
  margin-bottom: 1rem;
}
.about-info__card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #02682E;
}
.about-info__card p {
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 63.975em) {
  .about-info__cards {
    flex-direction: column;
    align-items: center;
  }
  .about-info__card {
    max-width: 100%;
  }
}/*# sourceMappingURL=main.css.map */