html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font: 400 16px/1.5 "Noto Sans Thai", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  color: #000000;
}

a {
  color: #000000;
  transition: all 300ms;
}
a:hover {
  text-decoration: none;
  color: #c3dee7;
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
}

* {
  box-sizing: border-box;
}

img {
  display: inline-block;
  max-width: 100%;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.section-title {
  color: #171411;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.section-link {
  color: #03989e;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.section-link:hover {
  color: #027a7f;
}

.banner-list {
  position: absolute;
  bottom: -56px;
  width: 1280px;
  max-width: 100%;
  margin: auto;
  left: 0;
  right: 0;
  padding: 0 20px;
  z-index: 3;
}
.banner-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}
.banner-list .icons {
  background: #03989e;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
}
.banner-list .icons img {
  width: 50px;
  height: auto;
  display: block;
}
.banner-list .texts h3 {
  color: #03989e;
  font-size: 22px;
  font-weight: 800;
  margin: 0;
}
.banner-list .texts p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.45;
}
.banner-list .banner-list-card {
  display: flex;
  padding: 16px;
  border-radius: 8px;
  background: #f6f5f2;
  height: 112px;
  gap: 14px;
  align-items: center;
  box-shadow: 0 14px 34px rgba(23, 20, 17, 0.12);
}
.banner-list .banner-list-card.card-1 .icons img {
  width: 43px;
}
.banner-list li {
  list-style: none;
}

@media (max-width: 1023px) {
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 22px;
  }
  .section-title {
    font-size: 30px;
  }
  .banner-list {
    bottom: -65px;
    margin-top: 0px;
    z-index: 2;
  }
  .banner-list .icons {
    width: 30px;
    height: 30px;
    padding: 4px;
  }
  .banner-list .icons img {
    width: 90%;
  }
  .banner-list ul {
    gap: 12px;
  }
  .banner-list .banner-list-card {
    min-height: 130px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 8px;
  }
  .banner-list .texts h3 {
    font-size: 18px;
  }
  .banner-list .texts p {
    font-size: 10px;
  }
}
@media (max-width: 640px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-title {
    font-size: 26px;
  }
  .banner-list {
    padding: 0 16px;
  }
  .banner-list .icons {
    width: 30px;
    height: 30px;
    padding: 4px;
  }
  .banner-list .icons img {
    width: 90%;
  }
}
.btn-global, .btn-secondary, .btn-main {
  background: #03989e;
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: none;
  border: none;
  text-align: center;
  max-width: 100%;
  transition: all 200ms ease;
}
.btn-global:hover, .btn-secondary:hover, .btn-main:hover {
  background: #027f84;
  color: #fff;
  transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
  border-radius: 50px;
}

.btn-readmore {
  align-items: center;
  background: unset;
  border-radius: 50%;
  color: #03989e;
  display: flex;
  justify-content: center;
  border: 0.5px solid #03989e;
  height: 30px;
  width: 30px;
}
.btn-readmore img {
  width: 12px;
  height: 12px;
}

header {
  padding: 14px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  transform: translateY(0) scale(1);
  will-change: transform;
  transition: background 250ms ease, box-shadow 250ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}
header .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .nav-close {
  display: none;
}
header .logo {
  width: 76px;
  height: 105px;
  display: flex;
  align-items: center;
}
header .logo img {
  width: 100%;
  height: auto;
  display: block;
}
header .nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid #03989e;
  border-radius: 50%;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  transition: transform 0.3s ease;
}
header .nav-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #03989e;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
header .nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}
header .nav-toggle span:nth-child(2) {
  transform: translateY(0);
}
header .nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}
header .main-nav {
  background: #fff;
  border: 1px solid #03989e;
  height: 50px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 0 30px;
  box-shadow: 0 12px 28px rgba(23, 20, 17, 0.08);
}
header .main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
header .main-nav ul li a {
  text-decoration: none;
  color: #000;
  padding: 13px;
}
header .main-nav ul li a:hover {
  color: #03989e;
}
header .main-nav ul li a.active {
  font-weight: 600;
  color: #03989e;
}
header .lang-switcher {
  display: flex;
  gap: 10px;
  transition: border-color 300ms ease, opacity 300ms ease;
}
header .lang-switcher a {
  opacity: 0.5;
  display: block;
  transition: opacity 300ms ease;
}
header .lang-switcher a.active {
  opacity: 1;
}
header .lang-switcher a img {
  display: block;
}
header.bg {
  background: #03989e;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
}
header.bg .lang-switcher {
  border-color: #ffffff;
}

@media (max-width: 1210px) {
  header .main-nav {
    padding: 0 18px;
  }
  header .main-nav ul {
    gap: 8px;
  }
  header .main-nav ul li a {
    padding: 13px 8px;
    font-size: 14px;
  }
}
@media (max-width: 1023px) {
  header {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 26px rgba(23, 20, 17, 0.08);
    padding: 5px 0;
  }
  header .d-flex {
    flex-wrap: wrap;
    gap: 12px;
  }
  header .logo {
    width: 30px;
    height: auto;
  }
  header .nav-toggle {
    display: flex;
    margin-left: auto;
    width: 35px;
    height: 35px;
  }
  header .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 72px 24px 32px;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.16);
    display: block;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s;
    z-index: 1001;
  }
  header .main-nav .nav-close {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: none;
    color: #03989e;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  header .main-nav .nav-close:hover {
    background: #e7ecef;
    transform: rotate(90deg);
  }
  header .main-nav ul {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }
  header .main-nav ul li a {
    display: block;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
  }
  header .main-nav ul li a:hover, header .main-nav ul li a.active {
    background: rgba(3, 152, 158, 0.08);
  }
  header::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    z-index: 1000;
  }
  header.is-open::before {
    opacity: 1;
    visibility: visible;
  }
  header.is-open .main-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header .lang-switcher {
    order: 3;
    border: 1px solid #03989e;
    padding: 5px 10px;
    border-radius: 999px;
    height: 35px;
    transition: border-color 300ms ease, background-color 300ms ease;
  }
  header .lang-switcher a {
    height: 120%;
    margin-top: -4%;
  }
  header .lang-switcher a img {
    height: 100%;
  }
  header.bg {
    background: #03989e;
  }
  header.bg .lang-switcher {
    border-color: #ffffff;
  }
}
.news-3r {
  overflow: hidden;
}

.news-hero {
  background: #171411;
  min-height: 430px;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.news-hero::after {
  background: linear-gradient(180deg, rgba(0, 119, 117, 0.46) 0%, rgba(0, 119, 117, 0.2) 52%, rgba(23, 20, 17, 0.24) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.news-card {
  background: #f4f5f7;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 16px rgba(23, 20, 17, 0.04);
  transition: transform 250ms, box-shadow 250ms;
}
.news-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: #171411;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(23, 20, 17, 0.12);
}
.news-card .news-img {
  aspect-ratio: 616/324;
  overflow: visible;
  position: relative;
}
.news-card .news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.news-card .news-img .news-page-date {
  position: absolute;
  bottom: 0;
  left: 18px;
  transform: translateY(50%);
  background: #03989e;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 999px;
  line-height: 1.2;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.news-card .news-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 146px;
  padding: 24px 18px 18px;
  position: relative;
}
.news-card .news-date {
  color: rgba(23, 20, 17, 0.55);
  font-size: 12px;
  margin-bottom: 0px;
  font-weight: 300;
}
.news-card .news-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  padding: 0 0 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  border-bottom: 0.5px solid #878787;
  min-height: 78px;
}
.news-card .news-content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0 0;
}
.news-card .news-readmore {
  color: #03989e;
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
}
.news-card .news-more {
  align-items: center;
  background: unset;
  border-radius: 50%;
  color: #03989e;
  display: flex;
  justify-content: center;
  border: 0.5px solid #03989E;
  height: 30px;
  width: 30px;
}
.news-card .news-more img {
  width: 12px;
  height: 12px;
}
.news-card:hover .news-img img {
  transform: scale(1.04);
}

.news-page-heading {
  margin-bottom: 36px;
  text-align: left;
}
.news-page-heading .section-pill {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  color: #171411;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  padding: 6px 20px;
}
.news-page-heading h2 {
  color: #37b34a;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 4px;
}
.news-page-heading p {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}
.news-page-heading p .text-teal {
  color: #03989e;
}
.news-page-heading p .text-green {
  color: #37b34a;
}

.news-page {
  padding: 56px 0 60px;
}
.news-page .news-list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
}
.news-page .news-list li {
  list-style: none;
}
.news-page .section-action {
  margin-top: 48px;
  text-align: center;
}
.news-page .news-load-more {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  text-decoration: none;
}
.news-page .news-load-more .btn-text {
  background: #03989e;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 36px;
  transition: background 200ms;
}
.news-page .news-load-more .btn-icon {
  align-items: center;
  background: #f4f5f7;
  border-radius: 50%;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
  transition: background 200ms;
}
.news-page .news-load-more .btn-icon svg {
  height: 9px;
  width: 14px;
}
.news-page .news-load-more:hover .btn-text {
  background: rgb(2.4298136646, 123.1105590062, 127.9701863354);
}
.news-page .news-load-more:hover .btn-icon {
  background: rgb(232.1894736842, 234.2631578947, 238.4105263158);
}

.news-detail-3r {
  overflow: hidden;
}
.news-detail-3r .news-detail {
  padding: 160px 0 54px;
}
.news-detail-3r .news-detail-container {
  max-width: 1210px;
}
.news-detail-3r .breadcrumb-3r {
  align-items: center;
  color: rgba(23, 20, 17, 0.38);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px;
  margin-bottom: 20px;
}
.news-detail-3r .breadcrumb-3r a,
.news-detail-3r .breadcrumb-3r span {
  color: inherit;
  text-decoration: none;
}
.news-detail-3r .breadcrumb-3r a:hover {
  color: #03989e;
}
.news-detail-3r .breadcrumb-3r a::after,
.news-detail-3r .breadcrumb-3r span:not(:last-child)::after {
  color: rgba(23, 20, 17, 0.28);
  content: ">";
  margin-left: 8px;
}
.news-detail-3r h1 {
  color: #171411;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.28;
  margin: 0 0 22px;
  max-width: 900px;
}
.news-detail-3r .news-detail-hero {
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}
.news-detail-3r .news-detail-hero img {
  aspect-ratio: 1240/650;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.news-detail-3r .news-detail-body {
  margin: 18px auto 0;
  max-width: 720px;
}
.news-detail-3r .news-detail-body p {
  color: #171411;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin: 0 0 22px;
}
.news-detail-3r .detail-date {
  border: 1px solid #03989e;
  border-radius: 999px;
  color: #03989e;
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 16px;
  padding: 5px 15px;
}
.news-detail-3r .news-inline-image {
  border-radius: 8px;
  margin: 28px 0 18px;
  overflow: hidden;
}
.news-detail-3r .news-inline-image img {
  aspect-ratio: 720/372;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.news-detail-3r .photo-album {
  margin-top: 34px;
}
.news-detail-3r .photo-album h2 {
  color: #171411;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 16px;
}
.news-detail-3r .album-feature,
.news-detail-3r .album-grid a {
  border-radius: 8px;
  display: block;
  overflow: hidden;
}
.news-detail-3r .album-feature {
  margin-bottom: 12px;
}
.news-detail-3r .album-feature img {
  aspect-ratio: 720/372;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.news-detail-3r .album-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.news-detail-3r .album-grid a {
  position: relative;
}
.news-detail-3r .album-grid img {
  aspect-ratio: 226/110;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.news-detail-3r .album-more::after {
  background: rgba(23, 20, 17, 0.46);
  content: "";
  inset: 0;
  position: absolute;
}
.news-detail-3r .album-more span {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.news-detail-3r .news-tags {
  color: rgba(23, 20, 17, 0.42);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 400;
  gap: 4px 10px;
  margin-top: 18px;
}
.news-detail-3r .related-news {
  padding-top: 36px;
}

.news {
  padding: 68px 0 58px;
}
.news .news-list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.news .news-list li {
  list-style: none;
}
.news.bg {
  background: #c8e5ee;
}

@media (max-width: 1023px) {
  .news-detail-3r .news-detail {
    padding: 128px 0 44px;
  }
  .news-detail-3r h1 {
    font-size: 30px;
  }
  .news-detail-3r .news-detail-body {
    max-width: 100%;
  }
  .news-detail-3r .related-news {
    padding-top: 24px;
  }
  .news-page {
    padding: 56px 0 64px;
  }
  .news-page .news-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .news {
    padding: 56px 0 64px;
  }
  .news .news-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-hero,
  .page-hero-img {
    height: 360px;
    min-height: 360px;
  }
  .page-hero-text {
    top: 54%;
  }
  .page-hero-text h1 {
    font-size: 42px;
  }
}
@media (max-width: 640px) {
  .news-detail-3r .news-detail {
    padding: 112px 0 34px;
  }
  .news-detail-3r .breadcrumb-3r {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .news-detail-3r h1 {
    font-size: 25px;
  }
  .news-detail-3r .news-detail-body p {
    font-size: 15px;
  }
  .news-detail-3r .album-grid {
    gap: 8px;
  }
  .news-detail-3r .photo-album h2 {
    font-size: 21px;
  }
  .news-page .news-list ul {
    grid-template-columns: 1fr;
  }
  .news .news-list ul {
    grid-template-columns: 1fr;
  }
  .news-hero,
  .page-hero-img {
    height: 330px;
    min-height: 330px;
  }
  .page-hero-text h1 {
    font-size: 36px;
  }
}
.home-3r {
  overflow: hidden;
}

.main-banner {
  background: #171411;
  min-height: 640px;
  overflow: visible;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 100px;
}
.main-banner::after {
  background: linear-gradient(90deg, rgba(0, 119, 117, 0.86) 0%, rgba(0, 128, 124, 0.58) 34%, rgba(0, 128, 124, 0.08) 78%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.main-banner .banner-img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.main-banner .banner-text {
  color: #fff;
  height: auto;
  inset: auto;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 20px;
  position: relative;
  width: 1280px;
  z-index: 2;
}
.main-banner .banner-text p {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 14px;
}
.main-banner .banner-text h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.22;
  margin: 0 0 12px;
  max-width: 720px;
}
.main-banner .banner-text h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  max-width: 620px;
}
.main-banner .banner-text .btn-main {
  margin-top: 62px;
}

.slogan {
  padding: 142px 0 84px;
}
.slogan .slogan-flex {
  align-items: center;
  display: flex;
  gap: 54px;
  justify-content: space-between;
  margin: auto;
  max-width: 980px;
  width: 100%;
}
.slogan .slogan-img {
  flex: 0 0 47%;
}
.slogan .slogan-img img {
  border-radius: 8px;
  display: block;
  width: 100%;
}
.slogan .slogan-text {
  flex: 1;
}
.slogan h2 {
  color: #171411;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 22px;
}
.slogan p {
  color: rgba(23, 20, 17, 0.82);
  font-size: 17px;
  line-height: 1.85;
  margin: 0;
}

.section-heading-center {
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-align: center;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn-small {
  font-size: 14px;
  padding: 9px 24px;
}

.activity {
  background: #fff;
  padding: 74px 0 86px;
}
.activity .activity-grid {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  margin: auto;
  max-width: 980px;
}
.activity .activity-img {
  aspect-ratio: 1/1.18;
  border-radius: 16px;
  overflow: hidden;
}
.activity .activity-img img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  width: 100%;
}
.activity .section-heading {
  align-items: center;
  margin-bottom: 32px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.event-card {
  align-items: center;
  border: 1px solid rgba(3, 152, 158, 0.46);
  border-radius: 16px;
  color: #171411;
  display: grid;
  gap: 0px;
  grid-template-columns: 86px 1fr 26px;
  min-height: 92px;
  padding: 10px 14px 10px 10px;
  text-decoration: none;
  transition: border-color 250ms, box-shadow 250ms, transform 250ms;
  min-height: 120px;
}
.event-card:hover {
  border-color: #03989e;
  box-shadow: 0 14px 28px rgba(3, 152, 158, 0.14);
  color: #171411;
  transform: translateY(-2px);
}
.event-card > img {
  display: block;
  width: 22px;
}

.event-date {
  align-items: center;
  background: #03989e;
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 92px;
  width: 92px;
  justify-content: center;
  text-align: center;
  margin-top: -50px;
  margin-left: -30px;
}
.event-date strong {
  color: #171411;
  font-size: 50px;
  font-weight: 900;
  line-height: 0.95;
}
.event-date span {
  color: #171411;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  text-align: right;
}

.event-detail h3 {
  color: #03989e;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 6px;
}
.event-detail p {
  color: #808080;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}

.podcast {
  background: #f3f2ef;
  padding: 64px 0 60px;
}
.podcast .podcast-list ul {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.podcast .podcast-list li {
  list-style: none;
}
.podcast .btn-main {
  width: 200px;
}

.podcast-card {
  background: #03989e;
  border: 8px solid #03989e;
  border-radius: 8px;
  color: #fff;
  display: block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.podcast-card .thumb {
  position: relative;
  aspect-ratio: 400/225;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
}
.podcast-card .thumb img {
  width: 100%;
}
.podcast-card:hover {
  color: #fff;
  transform: translateY(-3px);
}
.podcast-card:hover > img {
  transform: scale(1.04);
}
.podcast-card > img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
  width: 100%;
}

.podcast-overlay {
  padding: 4px 0;
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.podcast-overlay h3 {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.podcast-overlay .podcast-icon {
  width: 30px;
  height: auto;
  flex-shrink: 0;
}

.podcast-3r {
  overflow: hidden;
}
.podcast-3r .podcast-hero {
  min-height: 430px;
}
.podcast-3r .podcast-hero::after {
  background: linear-gradient(180deg, rgba(0, 119, 117, 0.58) 0%, rgba(0, 119, 117, 0.22) 50%, rgba(23, 20, 17, 0.16) 100%);
}
.podcast-3r .podcast-hero .page-hero-img {
  height: 430px;
  object-position: center 58%;
}
.podcast-3r .podcast-hero .page-hero-text {
  top: 56%;
}
.podcast-3r .podcast-hero .page-hero-text h1 {
  font-size: 54px;
}
.podcast-3r .podcast-hero .page-hero-text span {
  min-width: 132px;
  justify-content: center;
}
.podcast-3r .playlist-section {
  background: #f3f2ef;
  padding: 34px 0 34px;
}
.podcast-3r .playlist-section .section-title {
  font-size: 28px;
  margin-bottom: 24px;
}
.podcast-3r .playlist-list {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.podcast-3r .playlist-card {
  align-items: center;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 8px;
  color: #171411;
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: 86px 1fr 30px;
  min-height: 98px;
  outline: none;
  padding: 8px 12px 8px 8px;
  text-align: left;
  text-decoration: none;
  transition: border-color 250ms, transform 250ms, box-shadow 250ms;
  width: 100%;
}
.podcast-3r .playlist-card:focus, .podcast-3r .playlist-card:focus-visible {
  outline: none;
}
.podcast-3r .playlist-card.active, .podcast-3r .playlist-card:hover {
  border-color: #03989e;
  color: #171411;
  transform: translateY(-2px);
}
.podcast-3r .playlist-thumb {
  border-radius: 6px;
  height: 72px;
  overflow: hidden;
  width: 86px;
}
.podcast-3r .playlist-thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.podcast-3r .playlist-content {
  min-width: 0;
}
.podcast-3r .playlist-content h3 {
  color: #03989e;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.podcast-3r .playlist-content span {
  background: rgba(3, 152, 158, 0.12);
  border-radius: 4px;
  color: rgba(23, 20, 17, 0.52);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 10px;
}
.podcast-3r .playlist-arrow {
  align-items: center;
  border: 1px solid #03989e;
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  width: 30px;
}
.podcast-3r .playlist-arrow img {
  height: 12px;
  width: 12px;
}
.podcast-3r .podcast-episodes {
  background: #fff;
  padding: 38px 0 38px;
}
.podcast-3r .podcast-intro {
  margin-bottom: 32px;
}
.podcast-3r .podcast-intro h2 {
  color: #03989e;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.12;
  margin: 0 0 18px;
}
.podcast-3r .podcast-intro p {
  color: rgba(23, 20, 17, 0.46);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}
.podcast-3r .episode-list {
  display: grid;
  gap: 52px;
}
.podcast-3r .episode-card {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(360px, 480px) 1fr;
}
.podcast-3r .episode-thumb {
  border-radius: 4px;
  overflow: hidden;
}
.podcast-3r .episode-thumb img {
  aspect-ratio: 480/267;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.podcast-3r .episode-content {
  color: #171411;
}
.podcast-3r .episode-content .episode-number {
  color: #171411;
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}
.podcast-3r .episode-content h3 {
  color: #03989e;
  font-size: 31px;
  font-weight: 900;
  line-height: 1.22;
  margin: 0 0 16px;
}
.podcast-3r .episode-content p {
  color: rgba(23, 20, 17, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 22px;
}
.podcast-3r .episode-play {
  align-items: center;
  background: #03989e;
  border-radius: 50%;
  display: flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.podcast-3r .episode-play:hover {
  background: #027f84;
}
.podcast-3r .episode-play span {
  border-bottom: 9px solid transparent;
  border-left: 13px solid #fff;
  border-top: 9px solid transparent;
  display: block;
  height: 0;
  margin-left: 3px;
  width: 0;
}

.podcast-detail-3r {
  overflow: hidden;
}
.podcast-detail-3r .podcast-detail-hero {
  background: linear-gradient(180deg, #03989e 0%, #c3dee7 100%);
  padding: 172px 0 34px;
}
.podcast-detail-3r .podcast-breadcrumb {
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  gap: 8px;
  margin-bottom: 28px;
}
.podcast-detail-3r .podcast-breadcrumb a,
.podcast-detail-3r .podcast-breadcrumb span {
  color: inherit;
  text-decoration: none;
}
.podcast-detail-3r .podcast-breadcrumb a:hover {
  color: #fff;
}
.podcast-detail-3r .podcast-breadcrumb a::after {
  content: ">";
  margin-left: 8px;
}
.podcast-detail-3r .video-shell {
  border-radius: 8px;
  margin: 0 auto;
  max-width: 960px;
  overflow: hidden;
}
.podcast-detail-3r .video-embed {
  aspect-ratio: 16/9;
  width: 100%;
}
.podcast-detail-3r .video-embed iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}
.podcast-detail-3r .video-cover {
  aspect-ratio: 960/540;
  background: #171411;
  position: relative;
}
.podcast-detail-3r .video-cover img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.podcast-detail-3r .video-cover::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.68) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.podcast-detail-3r .video-play-main {
  align-items: center;
  background: #03989e;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 60px;
  justify-content: center;
  left: 50%;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  z-index: 1;
}
.podcast-detail-3r .video-play-main:hover {
  background: #027f84;
}
.podcast-detail-3r .video-play-main span {
  border-bottom: 12px solid transparent;
  border-left: 17px solid #fff;
  border-top: 12px solid transparent;
  display: block;
  height: 0;
  margin-left: 4px;
  width: 0;
}
.podcast-detail-3r .video-controls {
  align-items: center;
  background: #000;
  display: grid;
  gap: 14px;
  grid-template-columns: 42px 28px 1fr auto;
  min-height: 66px;
  padding: 10px 18px;
}
.podcast-detail-3r .video-controls strong {
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}
.podcast-detail-3r .video-control-thumb {
  border-radius: 5px;
  height: 42px;
  overflow: hidden;
  width: 42px;
}
.podcast-detail-3r .video-control-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.podcast-detail-3r .video-play-small {
  border-bottom: 17px solid transparent;
  border-left: 25px solid #fff;
  border-top: 17px solid transparent;
  height: 0;
  width: 0;
}
.podcast-detail-3r .video-progress {
  background: rgba(255, 255, 255, 0.48);
  height: 3px;
  position: relative;
}
.podcast-detail-3r .video-progress span {
  background: #0b84ff;
  display: block;
  height: 100%;
  position: relative;
  width: 18%;
}
.podcast-detail-3r .video-progress span::after {
  background: #0b84ff;
  border-radius: 50%;
  content: "";
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 8px;
}
.podcast-detail-3r .podcast-detail-content {
  background: #fff;
  padding: 36px 0 60px;
}
.podcast-detail-3r .podcast-detail-content .container {
  max-width: 960px;
}
.podcast-detail-3r .podcast-detail-content h1 {
  color: #000000;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 22px;
}
.podcast-detail-3r .podcast-detail-content p {
  color: rgba(23, 20, 17, 0.56);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  margin: 0 0 26px;
}
.podcast-detail-3r .podcast-detail-content p:first-of-type {
  color: #171411;
  font-weight: 600;
}

.members {
  background: #fff;
  padding: 64px 0 68px;
}

.member-list {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.member-list::-webkit-scrollbar {
  display: none;
}
.member-list ul {
  align-items: center;
  display: flex;
  gap: 50px;
  justify-content: center;
  list-style: none;
  min-width: max-content;
  width: max-content;
  padding: 0 20px;
}
.member-list li {
  text-align: center;
  flex: 0 0 auto;
}
.member-list img {
  height: 56px;
  width: auto;
}

.home-contact {
  background: url("../images/contact-bg.jpg") center/cover;
  color: #fff;
  padding: 52px 0 50px;
}
.home-contact .contact-grid {
  align-items: center;
  display: grid;
  gap: 68px;
  grid-template-columns: minmax(300px, 1fr) minmax(340px, 470px);
  margin: auto;
  max-width: 980px;
}

.contact-text span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.contact-text h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 18px;
}
.contact-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(23, 20, 17, 0.18);
  color: #171411;
  padding: 28px;
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 16px;
}
.contact-form label {
  color: #03989e;
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(23, 20, 17, 0.2);
  border-radius: 4px;
  display: block;
  font: inherit;
  margin-top: 6px;
  padding: 9px 10px;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #03989e;
  outline: none;
}
.contact-form .btn-main {
  border: 0;
  cursor: pointer;
  margin-top: 8px;
}

.follow-bar {
  background: #c3dee7;
  padding: 26px 0;
}
.follow-bar .container {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}
.follow-bar h2 {
  color: #03989e;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.follow-links {
  align-items: center;
  display: flex;
  gap: 12px;
}
.follow-links span {
  color: #03989e;
  font-size: 12px;
  font-weight: 900;
}
.follow-links a {
  align-items: center;
  background: #03989e;
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.follow-links a:hover {
  background: #027f84;
}
.follow-links img {
  display: block;
  max-height: 20px;
  width: 20px;
}

@media (max-width: 1023px) {
  .main-banner {
    min-height: auto;
    padding: 110px 0 110px;
  }
  .main-banner .banner-img {
    height: 100%;
    min-height: 100%;
  }
  .main-banner .banner-text {
    inset: auto;
    padding: 0 20px;
  }
  .main-banner .banner-text h1 {
    font-size: 36px;
  }
  .main-banner .banner-text h2 {
    font-size: 22px;
  }
  .main-banner .banner-text .btn-main {
    margin-top: 34px;
  }
  .slogan {
    padding: 100px 0 58px;
  }
  .slogan .slogan-flex {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
  .slogan .slogan-img,
  .slogan .slogan-text {
    flex: none;
    width: 100%;
  }
  .slogan h2 {
    font-size: 30px;
  }
  .section-heading-center {
    align-items: flex-start;
    text-align: left;
  }
  .activity {
    padding: 58px 0 66px;
  }
  .activity .activity-grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }
  .activity .activity-img {
    aspect-ratio: 16/9;
  }
  .podcast .podcast-list ul {
    grid-template-columns: 1fr;
  }
  .podcast-3r .podcast-hero,
  .podcast-3r .podcast-hero .page-hero-img {
    height: 360px;
    min-height: 360px;
  }
  .podcast-3r .playlist-list {
    grid-template-columns: 1fr;
  }
  .podcast-3r .playlist-card {
    grid-template-columns: 86px 1fr 30px;
  }
  .podcast-3r .episode-card {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
  .podcast-3r .episode-list {
    gap: 42px;
  }
  .podcast-3r .episode-content h3 {
    font-size: 27px;
  }
  .podcast-detail-3r .podcast-detail-hero {
    padding-top: 138px;
  }
  .podcast-detail-3r .podcast-detail-content h1 {
    font-size: 30px;
  }
  .home-contact .contact-grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }
  .follow-bar .container {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .main-banner .banner-img {
    height: 100%;
    min-height: 100%;
    object-position: 58% center;
  }
  .main-banner .banner-text {
    padding: 0 16px;
  }
  .main-banner .banner-text h1 {
    font-size: 30px;
  }
  .main-banner .banner-text h2 {
    font-size: 20px;
  }
  .slogan h2 {
    font-size: 26px;
  }
  .slogan p {
    font-size: 16px;
  }
  .event-card {
    grid-template-columns: 72px 1fr;
  }
  .event-card > img {
    display: none;
  }
  .event-date {
    height: 55px;
    width: 55px;
    margin-left: 0;
    margin-top: -30px;
  }
  .event-date strong {
    font-size: 30px;
  }
  .event-detail h3 {
    font-size: 18px;
  }
  .contact-form {
    padding: 22px;
  }
  .podcast-3r .podcast-hero,
  .podcast-3r .podcast-hero .page-hero-img {
    height: 330px;
    min-height: 330px;
  }
  .podcast-3r .podcast-hero .page-hero-text h1 {
    font-size: 38px;
  }
  .podcast-3r .playlist-section {
    padding: 30px 0;
  }
  .podcast-3r .playlist-section .section-title {
    font-size: 25px;
  }
  .podcast-3r .playlist-card {
    grid-template-columns: 74px 1fr 30px;
    min-height: 88px;
  }
  .podcast-3r .playlist-thumb {
    height: 62px;
    width: 74px;
  }
  .podcast-3r .playlist-content h3 {
    font-size: 20px;
  }
  .podcast-3r .podcast-episodes {
    padding: 32px 0;
  }
  .podcast-3r .podcast-intro h2 {
    font-size: 25px;
  }
  .podcast-3r .podcast-intro p {
    font-size: 15px;
  }
  .podcast-3r .episode-content .episode-number {
    margin-bottom: 12px;
  }
  .podcast-3r .episode-content h3 {
    font-size: 24px;
  }
  .podcast-3r .episode-content p {
    font-size: 15px;
  }
  .podcast-detail-3r .podcast-detail-hero {
    padding: 116px 0 28px;
  }
  .podcast-detail-3r .podcast-breadcrumb {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .podcast-detail-3r .video-play-main {
    height: 50px;
    width: 50px;
  }
  .podcast-detail-3r .video-controls {
    gap: 10px;
    grid-template-columns: 34px 22px 1fr;
    min-height: 56px;
    padding: 8px 10px;
  }
  .podcast-detail-3r .video-controls strong {
    display: none;
  }
  .podcast-detail-3r .video-control-thumb {
    height: 34px;
    width: 34px;
  }
  .podcast-detail-3r .video-play-small {
    border-bottom-width: 13px;
    border-left-width: 19px;
    border-top-width: 13px;
  }
  .podcast-detail-3r .podcast-detail-content {
    padding: 30px 0 42px;
  }
  .podcast-detail-3r .podcast-detail-content h1 {
    font-size: 26px;
  }
  .podcast-detail-3r .podcast-detail-content p {
    font-size: 15px;
    line-height: 1.75;
  }
  .follow-bar h2 {
    font-size: 24px;
  }
  .follow-links {
    flex-wrap: wrap;
  }
}
.about-3r {
  overflow: hidden;
}

.page-hero {
  background: #171411;
  min-height: 430px;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.page-hero::after {
  background: linear-gradient(180deg, rgba(0, 119, 117, 0.46) 0%, rgba(0, 119, 117, 0.2) 52%, rgba(23, 20, 17, 0.24) 100%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.page-hero-img {
  display: block;
  height: 430px;
  object-fit: cover;
  object-position: center 42%;
  width: 100%;
}

.page-hero-text {
  color: #fff;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.page-hero-text h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 14px;
}
.page-hero-text span {
  background: #37b34a;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  padding: 11px 24px;
}

.about-history {
  padding: 106px 0 54px;
}

.section-pill {
  border: 1px solid rgba(23, 20, 17, 0.2);
  border-radius: 999px;
  color: rgba(23, 20, 17, 0.8);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 34px;
  padding: 10px 22px;
}

.history-grid {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(520px, 0.86fr) minmax(420px, 1.14fr);
}
.history-grid h2 {
  color: #03989e;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0;
}
.history-grid h2 span {
  color: #37b34a;
}

.history-text {
  color: 0;
  font-size: 16px;
  margin: 0 0 12px;
  font-weight: 300;
}

.vision-mission {
  padding: 34px 0 78px;
}

.vm-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.vm-card,
.vm-image {
  border-radius: 24px;
  min-height: 390px;
  overflow: hidden;
}

.vm-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 34px;
}
.vm-card h2 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 26px;
}
.vm-card p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  margin: 0;
}

.vm-card-teal {
  background: #03989e;
  color: #fff;
}

.vm-card-sky {
  background: #96d4ea;
  color: #171411;
  position: relative;
}
.vm-card-sky::after {
  border: 18px solid rgba(255, 255, 255, 0.65);
  border-left: 0;
  border-top: 0;
  bottom: 26px;
  content: "";
  height: 96px;
  position: absolute;
  right: 30px;
  width: 96px;
}

.vm-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.executive {
  padding: 0 0 78px;
}
.executive .container {
  max-width: 1400px;
}

.executive-box {
  background: #cbe3eb;
  border-radius: 28px;
  padding: 56px 60px 48px;
  text-align: center;
}
.executive-box .section-pill {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 999px;
  color: #171411;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  padding: 5px 20px;
}
.executive-box .section-title {
  font-size: 36px;
  font-weight: 900;
  margin: 0 0 32px;
}

.executive-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 1160px;
}

.executive-level-1 {
  display: flex;
  justify-content: center;
  margin-top: 70px;
  width: 100%;
}

.executive-chair {
  background: #c4e6ea;
  border: 1.5px solid #03989e;
  border-radius: 18px;
  padding: 78px 36px 18px;
  position: relative;
  min-width: 320px;
}
.executive-chair strong {
  font-size: 20px;
}
.executive-chair span {
  font-size: 14px;
}
.executive-chair .executive-photo {
  background: #007775;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  height: 140px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: -70px;
  transform: translateX(-50%);
  width: 140px;
  z-index: 2;
}
.executive-chair .executive-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.executive-level-2 {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
}

.executive-level-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.executive-node {
  background: rgba(255, 255, 255, 0.45);
  border: 1.5px solid #03989e;
  border-radius: 14px;
  color: #03989e;
  padding: 12px 16px;
  text-align: center;
}
.executive-node strong {
  color: #03989e;
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}
.executive-node span {
  color: #03989e;
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2px;
}

.executive-chair {
  background: #bce4e8;
  border: 1.5px solid #03989e;
  border-radius: 16px;
  padding: 62px 40px 16px;
  position: relative;
  min-width: 280px;
}
.executive-chair strong {
  font-size: 18px;
}
.executive-chair span {
  font-size: 14px;
}
.executive-chair .executive-photo {
  background: #007775;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  height: 100px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: -50px;
  transform: translateX(-50%);
  width: 100px;
  z-index: 2;
}
.executive-chair .executive-photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-members {
  background: #fff;
  padding: 60px 0 80px;
}

.about-members-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 240px 1fr;
  align-items: start;
}

.about-members-heading .section-pill {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  color: #171411;
  display: inline-flex;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  padding: 6px 20px;
}
.about-members-heading .section-title {
  color: #03989e;
  font-size: 32px;
  font-weight: 900;
  margin: 0;
}

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

.member-card {
  background: #ffffff;
  border: 2px solid #03989e;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  text-decoration: none;
  transition: transform 200ms, box-shadow 200ms;
}
.member-card:hover {
  box-shadow: 0 8px 20px rgba(3, 152, 158, 0.15);
  transform: translateY(-3px);
}
.member-card .member-card-logo {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: center;
  padding: 12px;
}
.member-card .member-card-logo img {
  max-height: 52px;
  max-width: 85%;
  object-fit: contain;
}
.member-card .member-card-bar {
  align-items: center;
  background: #03989e;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
}
.member-card .member-card-bar span:first-child {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.member-card .member-card-bar .btn-readmore {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: 22px;
  justify-content: center;
  width: 22px;
}

@media (max-width: 1023px) {
  .page-hero,
  .page-hero-img {
    height: 360px;
    min-height: 360px;
  }
  .page-hero-text {
    top: 54%;
  }
  .page-hero-text h1 {
    font-size: 42px;
  }
  .about-history {
    padding: 84px 0 44px;
  }
  .history-grid,
  .vm-grid,
  .about-members-grid {
    grid-template-columns: 1fr;
  }
  .history-grid {
    gap: 24px;
  }
  .history-grid h2 {
    font-size: 30px;
  }
  .vm-card,
  .vm-image {
    min-height: auto;
  }
  .vm-card {
    padding: 32px 28px;
  }
  .vm-card h2 {
    font-size: 38px;
  }
  .vm-image {
    aspect-ratio: 16/10;
  }
  .executive-box {
    padding: 36px 20px 28px;
  }
  .executive-level-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
  }
  .executive-level-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .member-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .page-hero,
  .page-hero-img {
    height: 390px;
    min-height: 390px;
  }
  .page-hero-text h1 {
    font-size: 36px;
  }
  .history-grid h2 {
    font-size: 26px;
  }
  .vm-card h2 {
    font-size: 34px;
  }
  .vm-card p {
    font-size: 16px;
  }
  .executive-box {
    padding: 32px 14px 24px;
    border-radius: 20px;
  }
  .executive-box .section-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .executive-level-1 {
    margin-top: 60px;
  }
  .executive-chair {
    padding: 72px 14px 14px;
    min-width: unset;
    width: 100%;
  }
  .executive-chair strong {
    font-size: 16px;
  }
  .executive-chair span {
    font-size: 12px;
  }
  .executive-chair .executive-photo {
    height: 120px;
    width: 120px;
    top: -60px;
  }
  .executive-node {
    padding: 10px 6px;
    border-radius: 12px;
  }
  .executive-node strong {
    font-size: 13px;
  }
  .executive-node span {
    font-size: 11px;
  }
  .executive-level-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .executive-level-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .about-members {
    padding: 36px 0 60px;
  }
  .about-members-heading {
    margin-bottom: 16px;
  }
  .about-members-heading .section-pill {
    margin-bottom: 10px;
  }
  .about-members-heading .section-title {
    font-size: 28px;
  }
  .member-card-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .member-card {
    border-radius: 12px;
  }
  .member-card .member-card-logo {
    height: 64px;
    padding: 8px;
  }
  .member-card .member-card-logo img {
    max-height: 44px;
  }
  .member-card .member-card-bar {
    padding: 6px 8px;
  }
  .member-card .member-card-bar span:first-child {
    font-size: 10px;
    max-width: 75%;
  }
  .member-card .member-card-bar .btn-readmore {
    height: 18px;
    width: 18px;
  }
  .member-card .member-card-bar .btn-readmore svg {
    width: 8px;
    height: 8px;
  }
}
.projects-3r {
  overflow: hidden;
}

.projects-hero {
  min-height: 410px;
}
.projects-hero::after {
  background: linear-gradient(180deg, rgba(3, 152, 158, 0.42) 0%, rgba(195, 222, 231, 0.18) 58%, rgba(255, 255, 255, 0.18) 100%);
}
.projects-hero .page-hero-img {
  height: 410px;
  object-position: center 35%;
}

.projects-intro {
  background: #f7f6f3;
  padding: 48px 0 36px;
}

.projects-intro-heading {
  margin-bottom: 32px;
}
.projects-intro-heading h2 {
  color: #03989e;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 6px;
}
.projects-intro-heading .sub-th {
  color: #37b34a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 4px;
}
.projects-intro-heading .sub-en {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}
.projects-intro-heading .sub-en .text-teal {
  color: #03989e;
}
.projects-intro-heading .sub-en .text-green {
  color: #37b34a;
}

.project-filter {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.project-filter .filter-label {
  color: #03989e;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.project-filter-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.project-filter-list a {
  align-items: center;
  background: transparent;
  border: 1.5px solid #03989e;
  border-radius: 999px;
  display: inline-flex;
  gap: 14px;
  justify-content: space-between;
  padding: 6px 8px 6px 20px;
  text-decoration: none;
  transition: background 200ms, transform 200ms;
}
.project-filter-list a .btn-text {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}
.project-filter-list a .btn-text .quote {
  color: #171411;
  font-size: 14px;
  font-weight: 900;
}
.project-filter-list a .btn-text .proj {
  color: #03989e;
  font-size: 14px;
  font-weight: 800;
}
.project-filter-list a .btn-readmore {
  align-items: center;
  background: unset;
  border: 1.5px solid #03989e;
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  height: 28px;
  justify-content: center;
  width: 28px;
}
.project-filter-list a .btn-readmore img {
  height: 11px;
  width: 11px;
}
.project-filter-list a:hover {
  background: rgba(3, 152, 158, 0.06);
  transform: translateY(-2px);
}

.projects-list {
  background: #fff;
  padding: 30px 0 62px;
}

.project-group {
  scroll-margin-top: 130px;
}
.project-group + .project-group {
  margin-top: 54px;
}

.project-group-solution {
  background: #f4f3ef;
  border-radius: 8px;
  margin-left: -18px;
  margin-right: -18px;
  padding: 30px 18px;
}

.project-group-label {
  border: 1px solid rgba(3, 152, 158, 0.65);
  border-radius: 999px;
  color: #03989e;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 18px;
  padding: 8px 24px;
}

.project-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  list-style: none;
}
.project-card a {
  background: #fff;
  border: 1px solid #03989e;
  border-radius: 8px;
  color: #171411;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: 12px 12px 0;
  text-decoration: none;
  transition: box-shadow 250ms, transform 250ms;
}
.project-card a:hover {
  box-shadow: 0 18px 34px rgba(3, 152, 158, 0.14);
  color: #171411;
  transform: translateY(-3px);
}
.project-card a:hover .project-card-img img {
  transform: scale(1.04);
}

.project-card-img {
  aspect-ratio: 560/284;
  border-radius: 8px;
  overflow: hidden;
}
.project-card-img img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
  width: 100%;
}

.project-card-body {
  border-bottom: 1px solid rgba(3, 152, 158, 0.56);
  flex: 1;
  padding: 15px 0 18px;
}
.project-card-body h3 {
  color: #03989e;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 4px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.project-card-body strong {
  color: #171411;
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.project-card-body p {
  color: rgba(23, 20, 17, 0.68);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.project-card-contact {
  background: #03989e;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 -12px;
  padding: 15px 18px;
  text-align: center;
}

@media (max-width: 1023px) {
  .projects-hero,
  .projects-hero .page-hero-img {
    height: 360px;
    min-height: 360px;
  }
  .projects-intro-grid h2 {
    font-size: 32px;
  }
  .projects-intro-grid p {
    font-size: 19px;
  }
  .projects-intro-grid strong {
    font-size: 18px;
  }
  .project-filter {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
  .project-filter-list {
    grid-template-columns: 1fr;
  }
  .project-card-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .projects-intro {
    padding-top: 34px;
  }
  .projects-intro-grid h2 {
    font-size: 27px;
  }
  .projects-intro-grid p,
  .projects-intro-grid strong {
    font-size: 16px;
  }
  .project-group-solution {
    margin-left: -10px;
    margin-right: -10px;
    padding: 24px 10px;
  }
  .project-card a {
    padding: 9px 9px 0;
  }
  .project-card-body h3 {
    font-size: 19px;
  }
  .project-card-contact {
    font-size: 13px;
    margin-left: -9px;
    margin-right: -9px;
  }
}
.contact-3r {
  overflow: hidden;
}

.contact-hero {
  min-height: 430px;
}
.contact-hero::after {
  background: linear-gradient(180deg, rgba(0, 119, 117, 0.52) 0%, rgba(0, 119, 117, 0.2) 52%, rgba(23, 20, 17, 0.18) 100%);
}
.contact-hero .page-hero-img {
  height: 430px;
  object-position: center;
}
.contact-hero .page-hero-text {
  top: 58%;
}
.contact-hero .page-hero-text h1 {
  font-size: 54px;
}
.contact-hero .page-hero-text span {
  justify-content: center;
  min-width: 144px;
}

.contact-page {
  background: #fff;
  padding: 64px 0 62px;
}

.contact-page-grid {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(460px, 1.1fr) minmax(380px, 0.9fr);
  margin-bottom: 34px;
}

.contact-info h2 {
  color: #37b34a;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 34px;
}
.contact-info h2 span {
  color: #03989e;
}

.contact-copy p {
  color: rgba(23, 20, 17, 0.62);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  margin: 0 0 28px;
}
.contact-copy p strong {
  color: #171411;
  font-weight: 900;
}

.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}
.contact-social a {
  align-items: center;
  background: #03989e;
  border-radius: 50%;
  display: flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}
.contact-social a:hover {
  background: #027f84;
  transform: translateY(-2px);
}
.contact-social img {
  display: block;
  max-height: 24px;
  width: 24px;
}

.contact-page-form {
  background: #f3f2ef;
  border-radius: 12px;
  padding: 30px 30px 42px;
}
.contact-page-form h2 {
  color: #171411;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 12px;
}
.contact-page-form label {
  color: #03989e;
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 16px;
}
.contact-page-form input,
.contact-page-form textarea {
  background: #fff;
  border: 1px solid rgba(23, 20, 17, 0.2);
  border-radius: 6px;
  color: #171411;
  display: block;
  font: inherit;
  margin-top: 6px;
  padding: 10px 12px;
  width: 100%;
}
.contact-page-form input:focus,
.contact-page-form textarea:focus {
  border-color: #03989e;
  outline: none;
}
.contact-page-form textarea {
  min-height: 104px;
  resize: vertical;
}
.contact-page-form .btn-secondary {
  border: 0;
  cursor: pointer;
  min-width: 160px;
  padding: 10px 30px;
}

.contact-map {
  border-radius: 8px;
  height: 420px;
  overflow: hidden;
  width: 100%;
}
.contact-map iframe {
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(0.96);
  height: 100%;
  width: 100%;
}

@media (max-width: 1023px) {
  .contact-hero,
  .contact-hero .page-hero-img {
    height: 360px;
    min-height: 360px;
  }
  .contact-page {
    padding: 54px 0 56px;
  }
  .contact-page-grid {
    gap: 34px;
    grid-template-columns: 1fr;
  }
  .contact-info h2 {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .contact-hero,
  .contact-hero .page-hero-img {
    height: 330px;
    min-height: 330px;
  }
  .contact-hero .page-hero-text h1 {
    font-size: 38px;
  }
  .contact-page {
    padding: 42px 0 44px;
  }
  .contact-info h2 {
    font-size: 25px;
    margin-bottom: 24px;
  }
  .contact-copy p {
    font-size: 15px;
  }
  .contact-page-form {
    border-radius: 8px;
    padding: 24px 20px 30px;
  }
  .contact-map {
    height: 320px;
  }
}
.calendar-3r {
  overflow: hidden;
}

.calendar-hero {
  min-height: 410px;
}
.calendar-hero::after {
  background: linear-gradient(180deg, rgba(3, 152, 158, 0.52) 0%, rgba(3, 152, 158, 0.22) 58%, rgba(255, 255, 255, 0.12) 100%);
}
.calendar-hero .page-hero-img {
  height: 410px;
  object-position: center 38%;
}
.calendar-hero .page-hero-text {
  top: 57%;
}
.calendar-hero .page-hero-text h1 {
  font-size: 54px;
}
.calendar-hero .page-hero-text span {
  justify-content: center;
  min-width: 148px;
}

.calendar-intro {
  background: #f6f5f2;
  padding: 30px 0 34px;
}
.calendar-intro .section-pill {
  background: #fff;
  color: #171411;
  margin-bottom: 18px;
  min-width: 134px;
  justify-content: center;
}
.calendar-intro h2 {
  color: #37b34a;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 6px;
}
.calendar-intro p {
  color: #03989e;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0;
}

.calendar-list-section {
  background: #fff;
  padding: 26px 0 58px;
}

.calendar-list {
  display: grid;
  gap: 24px;
}

.calendar-month-group {
  border-bottom: 2px solid rgba(3, 152, 158, 0.22);
  display: grid;
  gap: 38px;
  grid-template-columns: 240px 1fr;
  padding-bottom: 28px;
}
.calendar-month-group:last-child {
  border-bottom: 0;
  padding-bottom: 10px;
}

.calendar-month {
  color: #37b34a;
}
.calendar-month strong {
  color: #03989e;
  display: block;
  font-size: 52px;
  font-weight: 900;
  line-height: 0.95;
}
.calendar-month span {
  display: block;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.12;
  margin-top: 8px;
}

.calendar-events {
  display: grid;
  gap: 12px;
}

.calendar-event {
  align-items: center;
  background: #f6f5f2;
  border-radius: 10px;
  color: #171411;
  display: grid;
  gap: 22px;
  grid-template-columns: 64px 1fr 22px;
  min-height: 84px;
  padding: 12px 22px 12px 14px;
  text-decoration: none;
  transition: transform 250ms, box-shadow 250ms;
}
.calendar-event:hover {
  box-shadow: 0 16px 30px rgba(3, 152, 158, 0.14);
  color: #171411;
  transform: translateY(-2px);
}
.calendar-event.featured {
  background: #03989e;
  color: #fff;
}
.calendar-event.featured strong,
.calendar-event.featured h3,
.calendar-event.featured p {
  color: #fff;
}
.calendar-event.featured .calendar-arrow {
  filter: brightness(0) invert(1);
}
.calendar-event > strong {
  color: #03989e;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
}
.calendar-event h3 {
  color: #03989e;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  margin: 0 0 2px;
}
.calendar-event p {
  color: rgba(23, 20, 17, 0.56);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  margin: 0;
}

.calendar-arrow {
  align-self: start;
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}
.calendar-arrow img {
  height: 14px;
  width: 14px;
}

.calendar-pagination {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 28px;
}
.calendar-pagination a {
  align-items: center;
  border-radius: 50%;
  color: #171411;
  display: flex;
  font-size: 13px;
  font-weight: 900;
  height: 26px;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  width: 26px;
}
.calendar-pagination a:hover, .calendar-pagination a.active {
  background: #03989e;
  color: #fff;
}
.calendar-pagination a:first-child, .calendar-pagination a:last-child {
  color: #03989e;
  font-size: 30px;
  font-weight: 400;
}
.calendar-pagination a:first-child:hover, .calendar-pagination a:last-child:hover {
  color: #fff;
}

@media (max-width: 1023px) {
  .calendar-hero,
  .calendar-hero .page-hero-img {
    height: 360px;
    min-height: 360px;
  }
  .calendar-intro h2 {
    font-size: 28px;
  }
  .calendar-intro p {
    font-size: 24px;
  }
  .calendar-month-group {
    gap: 18px;
    grid-template-columns: 1fr;
  }
  .calendar-month strong {
    font-size: 44px;
  }
  .calendar-month span {
    font-size: 28px;
  }
}
@media (max-width: 640px) {
  .calendar-hero,
  .calendar-hero .page-hero-img {
    height: 330px;
    min-height: 330px;
  }
  .calendar-hero .page-hero-text h1 {
    font-size: 38px;
  }
  .calendar-intro {
    padding: 26px 0 28px;
  }
  .calendar-intro h2 {
    font-size: 24px;
  }
  .calendar-intro p {
    font-size: 21px;
  }
  .calendar-list-section {
    padding: 24px 0 44px;
  }
  .calendar-event {
    gap: 12px;
    grid-template-columns: 48px 1fr 18px;
    padding: 12px 14px;
  }
  .calendar-event > strong {
    font-size: 38px;
  }
  .calendar-event h3 {
    font-size: 15px;
  }
  .calendar-event p {
    font-size: 13px;
  }
  .calendar-pagination {
    gap: 10px;
  }
}
footer {
  background: #fff;
  color: #171411;
}
footer .footer-main {
  padding: 48px 0 42px;
}
footer .footer-grid {
  align-items: flex-start;
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(320px, 1.35fr) minmax(120px, 0.55fr) minmax(320px, 1fr);
}
footer .footer-brand {
  align-items: flex-start;
  display: flex;
  gap: 18px;
}
footer .footer-brand img {
  flex-shrink: 0;
  width: 76px;
}
footer .footer-brand p {
  color: #171411;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  margin: 14px 0 0;
}
footer h3 {
  color: #171411;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 14px;
}
footer .footer-menu a {
  color: rgba(23, 20, 17, 0.72);
  display: block;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 8px;
  text-decoration: none;
}
footer .footer-menu a:hover {
  color: #03989e;
}
footer .footer-contact p {
  color: rgba(23, 20, 17, 0.72);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 10px;
}
footer .footer-copy {
  background: #03989e;
  padding: 14px 0;
  text-align: center;
}
footer .footer-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1023px) {
  footer .footer-grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  footer .footer-brand p {
    margin-top: 8px;
  }
}
@media (max-width: 640px) {
  footer .footer-main {
    padding: 36px 0 32px;
  }
  footer .footer-brand {
    align-items: center;
    flex-direction: column;
  }
  footer .footer-brand p {
    text-align: center;
  }
}

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