.header {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.3s ease;
}
.header-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-container__logo {
  z-index: 1001;
}
.header-container__logo a svg {
  height: 40px;
}
.header-container__logo a svg path {
  transition: fill 0.25s ease;
}
.header-container__list-list {
  display: flex;
  list-style: none;
  gap: 30px;
}
.header-container__list-list li a {
  position: relative;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.header-container__list-list li a:visited {
  color: #fff;
}
.header-container__list-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.header-container__list-list li a:hover::after {
  transform: scaleX(1);
}
.header-container__menu {
  display: none;
}
.header-container__menu .burger {
  position: relative;
  width: 40px;
  height: 22px;
  cursor: pointer;
  display: block;
}
.header-container__menu .burger input {
  display: none;
}
.header-container__menu .burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
  width: 28.4px;
}
.header-container__menu .burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}
.header-container__menu .burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 20px;
  left: 5px;
  width: 28.4px;
}
.header-container__menu .burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 40px;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header-container__menu .burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}
.header-container__menu .burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}
.header-container__menu .burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}
.header-active, .header:has(input:checked) {
  background: rgba(255, 255, 255, 0.89);
  backdrop-filter: blur(8px);
  filter: opacity(0.85);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}
.header-active .header-container__list a,
.header-active .header-container__logo a, .header:has(input:checked) .header-container__list a,
.header:has(input:checked) .header-container__logo a {
  color: #1e6f5c !important;
  font-weight: 500 !important;
}
.header-active .header-container__list a:visited,
.header-active .header-container__logo a:visited, .header:has(input:checked) .header-container__list a:visited,
.header:has(input:checked) .header-container__logo a:visited {
  color: #1e6f5c !important;
}
.header-active .header-container__list a::after,
.header-active .header-container__logo a::after, .header:has(input:checked) .header-container__list a::after,
.header:has(input:checked) .header-container__logo a::after {
  background-color: #1e6f5c !important;
}
.header-active svg path, .header:has(input:checked) svg path {
  fill: #1e6f5c;
}
.header-active span, .header:has(input:checked) span {
  background: #1e6f5c !important;
}
.header:has(input:checked) .menu {
  opacity: 1;
  left: 0px;
}

.menu {
  z-index: 999;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -300px;
  background: rgba(255, 255, 255, 0.973);
  min-width: 300px;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.menu-container {
  padding: 100px 15px 0 15px;
}
.menu-container ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-container ol li {
  width: 100%;
  min-width: 200px;
}
.menu-container ol li a {
  width: 100%;
  border: 1px solid #1e6f5c;
  padding: 7px 7px;
  color: #1e6f5c;
  display: block;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 2px 7px 2px 7px;
  transition: 0.2s ease-in;
}
.menu-container ol li a:hover, .menu-container ol li a:active {
  color: #fff;
  background: #1e6f5c;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main .limited {
  width: 100%;
  max-width: 1200px;
}
.main .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90vh;
  z-index: -1;
  overflow: hidden;
  -webkit-box-shadow: 4px 5px 33px -3px rgba(0, 0, 0, 0.6);
  box-shadow: 4px 5px 33px -3px rgba(0, 0, 0, 0.6);
}
.main .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px) brightness(33%) grayscale(0.48);
  transform: scale(1.12);
}
.main-contactpop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: linear-gradient(180deg, #02c358 0%, #00aa4c 100%);
  display: flex;
  flex-direction: column;
  padding: 5px;
  border-radius: 25px;
  gap: 5px;
  z-index: 997;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}
.main-contactpop__link {
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #dadada;
  border-radius: 50%;
  font-size: 20px;
  color: #00aa4c;
  transition: 0.2s ease-in;
}
.main-contactpop__link:hover {
  transform: scale(1.05);
}
.main-contactpop__link:visited i {
  color: #00aa4c;
}
.main-contactpop__link:last-child {
  font-size: 24px;
}
.main-hero {
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 2vh;
  z-index: 2;
  overflow: hidden;
}
.main-hero h1 {
  font-size: clamp(22px, 5vw, 50px);
  font-weight: 600;
  line-height: clamp(22px, 5vw, 50px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.253);
  background-image: linear-gradient(110deg, rgb(80, 180, 105) 0%, rgb(64, 187, 140) 62%, rgb(59, 134, 88) 100%);
}
.main-hero p {
  color: #dadada;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.212);
  font-size: clamp(14px, 3vw, 20px);
}
.main-hero p strong {
  color: #dadada;
}
.main-aboutus {
  width: 100%;
  padding: 150px 0;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  z-index: 1;
  margin: 100px 0;
}
.main-aboutus__text {
  display: flex;
  flex-direction: column;
  width: 45%;
  gap: 20px;
  margin-top: 10px;
}
.main-aboutus__text p {
  font-size: 16px;
}
.main-aboutus__container {
  width: 50%;
}
.main-aboutus__container img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 30px 80px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}
.main-aboutus__container img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12), 0 30px 80px rgba(0, 0, 0, 0.2);
}
.main .aboutus-divider {
  width: 100%;
  margin-bottom: -20px;
}
.main-services {
  padding: 150px 0;
  width: 100%;
  background: linear-gradient(180deg, #1e6f5c 0%, #1d6958 20%, #1b6354 45%, #195a4c 70%, #13473b 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-services h1,
.main-services p,
.main-services li {
  color: #dadada;
  background-image: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #dadada;
}
.main-services__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.main-services__title h1 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.main-services__title p {
  font-size: 16px;
  opacity: 0.85;
  text-transform: uppercase;
}
.main-services__item:nth-child(2) {
  margin-top: 20px;
}
.main-services__item:nth-child(3) {
  display: flex;
  flex-direction: row-reverse;
}
.main-services__item:nth-child(3) .main-services__item-image {
  width: 50%;
  overflow: hidden;
  border-top-left-radius: 70px;
  border-bottom-right-radius: 70px;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.main-services__item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.185);
  padding-top: 60px;
  margin-top: 100px;
  position: relative;
}
.main-services__item-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-services__item-text h1 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.main-services__item-text p {
  font-size: 18px;
}
.main-services__item-text ol {
  list-style: none;
  margin-left: 25px;
  position: relative;
  line-height: 1.4;
  font-size: 15px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-services__item-text ol::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
  border-radius: 2px;
}
.main-services__item-image {
  width: 50%;
  overflow: hidden;
  border-top-right-radius: 70px;
  border-bottom-left-radius: 70px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12), 0 30px 80px rgba(0, 0, 0, 0.2);
}
.main-services__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}
.main-services__item-image img:hover {
  transform: translateY(-6px);
  transform: scale(1.03);
}
.main .services-divider {
  position: relative;
  top: -1px;
  width: 100%;
}
.main .services-divider svg {
  transform: rotate(180deg);
}
.main-documentation {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
  padding-top: 100px;
}
.main-documentation__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.main-documentation__text p {
  font-size: 16px;
}
.main-documentation__list {
  display: flex;
  justify-content: space-between;
}
.main-documentation__list article {
  width: 49%;
  padding: 30px;
  box-shadow: 6px 5px 20px 1px rgba(0, 0, 0, 0.13);
  -webkit-box-shadow: 6px 5px 20px 1px rgba(0, 0, 0, 0.13);
  -moz-box-shadow: 6px 5px 20px 1px rgba(0, 0, 0, 0.13);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.2s ease;
  border-radius: 30px 5px 30px 5px;
}
.main-documentation__list article:hover {
  border-radius: 5px 30px 5px 30px;
}
.main-documentation__list article div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-documentation__list article div h3 {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 5px;
}
.main-documentation__list article div img {
  width: 70px;
}
.main-documentation__list article p {
  font-size: 16px;
}
.main-differentials {
  margin-top: 150px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 100px;
}
.main-differentials__text p {
  font-size: 16px;
}
.main-differentials__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.main-differentials__list-card {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: linear-gradient(160deg, #2f8f77 0%, #1e6f5c 50%, #174c40 100%);
  border-radius: 30px 3px 30px 3px;
  height: 170px;
  transition: 0.2s ease-in;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.08);
}
.main-differentials__list-card:nth-child(even) {
  background: linear-gradient(145deg, #1b6354, #13473b);
  border-radius: 3px 30px 3px 30px;
}
.main-differentials__list-card:hover {
  transform: translateY(-4px);
  filter: brightness(1.2);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18), 0 8px 15px rgba(0, 0, 0, 0.12);
}
.main-differentials__list-card h2 {
  color: #fff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 1px;
}

.footer {
  margin-top: 200px;
  background: linear-gradient(160deg, #2f8f77 0%, #1e6f5c 50%, #174c40 100%);
  display: flex;
  justify-content: center;
  padding: 80px 0 20px 0;
  z-index: 998;
  position: relative;
}
.footer-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
}
.footer-container > div {
  border-top: 1px solid rgba(79, 143, 94, 0.3490196078);
  padding-top: 20px;
}
.footer-container > div:first-child {
  border: none;
  padding-bottom: 20px;
}
.footer-container > div:nth-child(2) {
  padding-bottom: 40px;
}
.footer-text p {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 200;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-contact h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.footer-contact div {
  display: flex;
  justify-content: space-between;
}
.footer-contact div article:nth-child(1),
.footer-contact div article:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact div article:nth-child(1) > a,
.footer-contact div article:nth-child(2) > a {
  padding: 12px;
  font-size: 22px;
  color: #fff;
  background-color: rgba(24, 78, 66, 0.368627451);
  border-radius: 10px 2px 10px 2px;
  transition: 0.2s ease-in;
}
.footer-contact div article:nth-child(1) > a:visited,
.footer-contact div article:nth-child(2) > a:visited {
  color: #fff;
}
.footer-contact div article:nth-child(1) > a:hover,
.footer-contact div article:nth-child(2) > a:hover {
  transform: translateY(-2px) scale(1.05);
}
.footer-contact div article:nth-child(1) > div,
.footer-contact div article:nth-child(2) > div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}
.footer-contact div article:nth-child(1) > div > p,
.footer-contact div article:nth-child(2) > div > p {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  color: rgba(24, 78, 66, 0.9803921569);
}
.footer-contact div article:nth-child(1) > div > a,
.footer-contact div article:nth-child(2) > div > a {
  color: #fff;
  text-decoration: none;
}
.footer-contact div article:nth-child(1) > div > a:hover,
.footer-contact div article:nth-child(2) > div > a:hover {
  text-decoration: underline;
}
.footer-contact div article:nth-child(1) > div > a:visited,
.footer-contact div article:nth-child(2) > div > a:visited {
  color: #fff;
}
.footer-contact div article:last-child a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border: 3px solid #fff;
  height: 51px;
  padding: 0 10px;
  border-radius: 10px 2px 10px 2px;
  transition: 0.2s ease-in;
}
.footer-contact div article:last-child a:hover {
  background-color: #fff;
  color: #3a7f6f;
}
.footer-contact div article:last-child a svg {
  font-size: 26px;
}
.footer-copy {
  display: flex;
  width: 100%;
  justify-content: center;
}
.footer-copy p {
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 1300px) {
  .header-container {
    padding: 0 50px;
  }
  .main .limited {
    padding: 0 50px;
  }
  .main-services .limited {
    padding: 60px 50px 0 50px;
  }
  .footer-container {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1000px) {
  .main-documentation__list {
    flex-direction: column;
    gap: 20px;
  }
  .main-documentation__list article {
    width: 100%;
  }
  .main-differentials__list {
    display: flex;
    flex-direction: column;
  }
  .main-differentials__list-card:nth-child(even) {
    border-radius: 30px 3px 30px 3px;
  }
}
@media screen and (max-width: 910px) {
  .header-container__logo a svg {
    height: 25px;
  }
  .header-container__list {
    display: none;
  }
  .header-container__menu {
    display: block;
  }
  .main-aboutus {
    flex-direction: column;
    gap: 20px;
  }
  .main-aboutus div {
    width: 100%;
  }
  .main-services__item {
    flex-direction: column;
  }
  .main-services__item div {
    width: 100%;
  }
  .main-services__item:nth-child(3) {
    flex-direction: column;
  }
  .main-services__item:nth-child(3) .main-services__item-image {
    width: 100%;
  }
  .main-services__item:nth-child(3) div {
    width: 100%;
  }
  .footer-contact div {
    flex-direction: column;
    gap: 20px;
  }
  .footer-contact div article {
    width: 270px;
  }
}
@media screen and (max-width: 600px) {
  .header-container {
    padding: 0 15px;
  }
  .main .limited {
    padding: 0 15px;
  }
  .main .aboutus-divider {
    margin-bottom: -10px;
  }
  .main-services .limited {
    padding: 60px 15px 0 15px;
  }
  .main-differentials__list-card {
    padding: 20px;
    height: 120px;
  }
  .main-differentials__list-card img {
    width: 70px;
  }
  .footer-container {
    padding: 0 15px;
  }
}

/*# sourceMappingURL=index.css.map */
