@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*, *::before, *::after {
  margin: 0;
  padding: 0;
}

body {
  background: #e8f5f2;
  color: #1a2e2a;
}

.hero {
  background: var(--brand-gradient);
  padding: 64px 24px 120px;
  text-align: center;
}
.hero__title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.mv-wrap {
  max-width: 900px;
  margin: -60px auto 0;
  padding: 0 24px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.mv-card {
  padding: 32px 28px;
}
.mv-card:first-child {
  background: #d4eee8;
  border-radius: 16px 0 0 16px;
}
.mv-card:last-child {
  background: #d6f0e8;
  border-radius: 0 16px 16px 0;
}
.mv-card__title {
  font-size: 20px;
  font-weight: 800;
  color: #1a2e2a;
  margin-bottom: 14px;
}
.mv-card__text {
  font-size: 14px;
  color: #3d5a54;
  line-height: 1.7;
}

.activities {
  background: #f0faf7;
  padding: 48px 24px 64px;
}
.activities__inner {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 36px;
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.activities__title {
  font-size: 22px;
  font-weight: 800;
  color: #1a2e2a;
  text-align: center;
  margin-bottom: 36px;
}
.activities__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}
.activities__grid .act-item:nth-child(n+5) {
  border-top: 1px solid #e8f0ee;
  padding-top: 24px;
}

.act-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.act-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.act-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2e2a;
  line-height: 1.4;
}
.act-item__text {
  font-size: 13px;
  color: #6b8e87;
  line-height: 1.6;
}

.ic-blue {
  background: #e8eeff;
}

.ic-purple {
  background: #ede8ff;
}

.ic-green {
  background: #e0f5ee;
}

.ic-orange {
  background: #fdf0e6;
}

.ic-red {
  background: #ffe8e8;
}

.ic-pink {
  background: #ffe8f5;
}

.ic-cyan {
  background: #e0f8f5;
}

.ic-indigo {
  background: #eaeaff;
}

.ic-teal2 {
  background: #ddf5f0;
}

.ic-yellow {
  background: #fff8e0;
}

@media (max-width: 768px) {
  .mv-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .mv-card:first-child {
    border-radius: 16px 16px 0 0;
  }
  .mv-card:last-child {
    border-radius: 0 0 16px 16px;
  }
  .activities__grid {
    grid-template-columns: 1fr;
  }
  .activities__grid .act-item:nth-child(n) {
    border-top: none;
    padding-top: 0;
  }
  .activities__grid .act-item:nth-child(n+2) {
    border-top: 1px solid #e8f0ee;
    padding-top: 20px;
  }
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
}

body {
  background: #f0f4f3;
  color: #1a2e2a;
}

.services-page {
  max-width: 1000px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 48px;
}
.services-header__title {
  font-size: 32px;
  font-weight: 800;
  color: #1a2e2a;
  margin-bottom: 12px;
}
.services-header__sub {
  font-size: 15px;
  color: #6b8e87;
  font-weight: 400;
}

.services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.svc-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e8eeec;
  padding: 24px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.svc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
}
.svc-card__title {
  font-size: 16px;
  font-weight: 800;
  color: #1a2e2a;
  line-height: 1.3;
}
.svc-card__text {
  font-size: 13px;
  color: #6b8e87;
  line-height: 1.65;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.svc-card__badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-top: 4px;
}

.ic-pink-bg {
  background: #fde8f5;
}

.ic-blue-bg {
  background: #e8eeff;
}

.ic-teal-bg {
  background: #e0f5f0;
}

.ic-green-bg {
  background: #e0f5e8;
}

.ic-purple-bg {
  background: #ede8ff;
}

.ic-red-bg {
  background: #ffe8e8;
}

.ic-gray-bg {
  background: #f0f0f0;
}

.ic-cyan-bg {
  background: #e0f8f5;
}

.ic-yellow-bg {
  background: #fff8e0;
}

.ic-orange-bg {
  background: #fdf0e6;
}

.badge-pink {
  background: #fde8f5;
  color: #c0306a;
}

.badge-purple {
  background: #ede8ff;
  color: #6030c0;
}

.badge-teal {
  background: #d0f5ee;
  color: #1a8a72;
}

.badge-green {
  background: #d5f5e0;
  color: #1a7a3a;
}

.badge-violet {
  background: #e8e0ff;
  color: #5030a0;
}

.badge-red {
  background: #ffe0e0;
  color: #c03030;
}

.badge-dark {
  background: #2a3a36;
  color: #ffffff;
}

.badge-blue {
  background: #e0eaff;
  color: #2050c0;
}

.badge-olive {
  background: #e8f0d0;
  color: #5a7020;
}

.badge-lime {
  background: #d8f5d8;
  color: #207020;
}

.badge-orange {
  background: #fde8d0;
  color: #b05010;
}

.badge-indigo {
  background: #e0e8ff;
  color: #3040b0;
}

.badge-sky {
  background: #d0f0ff;
  color: #1060a0;
}

.badge-coral {
  background: #ffe0d8;
  color: #b03020;
}

.badge-amber {
  background: #fff0c0;
  color: #905010;
}

.services-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.svc-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e0ebe8;
  border-radius: 32px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #3d5a54;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.svc-tab:hover {
  background: #e8f5f0;
}
.svc-tab__icon {
  font-size: 18px;
}

@media (max-width: 900px) {
  .services-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .services-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .services-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer {
  background: var(--brand-gradient);
  color: #ffffff;
  margin-top: 60px;
}

.footer__main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-about__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.footer-socials__link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  -webkit-transition: border-color 0.2s, color 0.2s;
  transition: border-color 0.2s, color 0.2s;
}
.footer-socials__link:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.footer-nav__title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-nav__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.footer-nav__list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.footer-nav__list a:hover {
  color: #ffffff;
}

.footer-contact__title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-contact__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.footer-contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.footer-contact__item svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.footer__divider {
  max-width: 1200px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}

.footer__copy {
  font-size: 13px;
width: 100%;
    text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer__legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.footer__legal a:hover {
  color: #ffffff;
}

.footer__bar {
  background: #111;
  text-align: center;
  padding: 14px 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .footer__main {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__main {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px 24px;
  }
  .footer__legal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
}
:root {
  --brand-gradient: linear-gradient(160deg, #2a8c7c 0%, #3db89f 50%, #5ecfb8 100%);
}

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

* {
  font-family: "Poppins", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: top;
  text-decoration: none;
}

ul,
h1,
h2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page header {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.page header.black .logo img {
  width: 170px;
}
.page header.black {
  background: var(--brand-gradient);
}
.page header.black .selected a {
  color: white;
  opacity: 0.6;
}
.page header .wsize {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 20px 30px;
}
.page header .logo img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 250px;
}
.page header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.page header nav ul li.selected a {
  color: #1F887D;
}
.page header nav ul li a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: white;
}
.page header .burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
  position: relative;
}
.page header .burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page header.nav-open .burger span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
      -ms-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.page header.nav-open .burger span:nth-child(2) {
  opacity: 0;
}
.page header.nav-open .burger span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
      -ms-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
.page header.nav-open nav {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 900px) {
  .page header {
    padding: 16px 20px;
  }
  .page header .logo img,
  .page header.black .logo img {
    width: 90px;
  }
  .page header .burger {
    display: flex;
  }
  .page header nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: -webkit-min(78vw, 320px);
    width: min(78vw, 320px);
    background: linear-gradient(160deg, #1a5f54 0%, #1F887D 60%, #2a8c7c 100%);
    padding: 100px 32px 40px;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: -webkit-transform 0.35s ease;
    -o-transition: transform 0.35s ease;
    transition: transform 0.35s ease;
    transition: transform 0.35s ease, -webkit-transform 0.35s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
    z-index: 1100;
  }
  .page header nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .page header nav ul li {
    width: 100%;
  }
  .page header nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}
.page .nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 900;
}
.page .nav-overlay.active {
  display: block;
}
.page .banner .alonebanner {
  position: relative;
}
.page .banner .alonebanner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page .banner .alonebanner .words .cia {
  margin-top: 50px;
  background: #1F887D;
  color: white;
  display: inline-block;
  padding: 20px 45px;
}
.page .banner .alonebanner .words .cia a {
  color: white;
}
.page .banner .alonebanner .words .cia {
  border-radius: 10px;
}
.page .banner .alonebanner .words {
  background: rgba(0, 0, 0, 0.1882352941);
  padding: 30px;
  padding-top: 250px;
  padding-right: 250px;
  min-height: 80vh;
  z-index: 1;
  backdrop-filter: blur(5px);
  position: relative;
}
.page .banner .alonebanner p {
  margin: 0;
}
.page .banner .alonebanner h1 {
  margin: 30px 0;
  line-height: 1.1;
  font-size: 440%;
  font-weight: 500;
}
.page .banner .alonebanner {
  color: white;
}
.page .wsize {
  max-width: 1300px;
  margin: auto !important;
}