/* home-critical.css — above-the-fold header + hero for homepage FCP/LCP */
:root {
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --color-1: #216358;
  --color-2: #ec2027;
  --container-padding: 5%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font-body);
  background: #fff;
  color: #212529;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}
.container-fluid {
  width: 100%;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  margin-right: auto;
  margin-left: auto;
}
header.pc {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 99;
  background: #fff;
  border-top: 2px solid var(--color-1);
}
header.pc .header {
  display: flex;
  gap: 50px;
}
header.pc .--logo {
  width: 125px;
}
header.pc .--logo img {
  width: 125px;
  height: auto;
  object-fit: contain;
  max-height: 125px;
}
header.mb {
  display: none;
}
@media (max-width: 1023px) {
  header.pc {
    display: none;
  }
  header.mb {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    align-items: center;
    z-index: 999;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  }
  header.mb .--top {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  header.mb .--logo img {
    width: 80px;
    height: auto;
    object-fit: contain;
    max-height: 80px;
  }
}
header .--language {
  display: flex;
  align-items: center;
}
header .--language select {
  appearance: auto;
  background: transparent;
  color: #fff;
  border: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0 4px;
  min-height: 28px;
}
header.mb .--language select {
  color: #111;
}
@media (max-width: 1023px) {
  header.pc .--language {
    display: none;
  }
}
header .--search:has(.hn-search-icon) > i,
header .--close:has(.hn-icon) > i,
.cta .--link:has(.hn-icon) > i,
.cta-facebook .--link:has(.hn-icon) > i {
  display: none !important;
}
header .hn-search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  color: inherit;
  z-index: 1;
}
header .--search.active .hn-search-icon {
  left: 12px;
  transform: translate(0, -50%);
}
header.mb .--close {
  display: flex;
  align-items: center;
  gap: 8px;
}
header.mb .hn-close-icon {
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  padding: 8px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin-right: 16px;
  color: #fff;
  flex-shrink: 0;
}
.cta .hn-icon,
.cta-facebook .hn-icon {
  width: 20px;
  height: 20px;
  color: inherit;
  animation: phone 1s infinite ease-in-out;
}
.cta-facebook .hn-messenger-icon {
  width: 22px;
  height: 22px;
}
.homeBanner {
  width: 100%;
  position: relative;
  z-index: 1;
  background: #f5f7f7;
}
.homeBanner .homeBanner__link,
.homeBanner .homeBanner__item .--img {
  display: block;
  width: 100%;
}
.homeBanner .homeBanner__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.homeBanner .homeBanner__item picture {
  display: block;
  width: 100%;
}
#homeBannerSlider:not(.slick-initialized) .homeBanner__item:not(:first-child) {
  display: none;
}
#homeBannerSlider:not(.slick-initialized) .homeBanner__item.is-first {
  display: block;
  width: 100%;
}
#homeBannerSlider:not(.slick-initialized) .homeBanner__item.is-first img {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .homeBanner {
    min-height: calc(100vw * 550 / 375);
  }
  .homeBanner .homeBanner__item,
  .homeBanner .homeBanner__link,
  .homeBanner .homeBanner__item .--img {
    aspect-ratio: 375 / 550;
  }
}
@media (min-width: 768px) {
  .homeBanner .homeBanner__item,
  .homeBanner .homeBanner__link,
  .homeBanner .homeBanner__item .--img {
    aspect-ratio: 1920 / 626;
  }
}
.homeBanner .--content {
  width: 100%;
  margin-top: -44px;
  position: relative;
  z-index: 2;
}
.homeBanner .--filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.homeBanner .--filter .--item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .homeBanner .--content {
    overflow: visible;
  }
  .homeBanner .--content > .container-fluid {
    position: relative;
    overflow: visible;
  }
  .homeBanner .banner-button {
    position: absolute;
    top: auto;
    bottom: calc(100% - 48px);
    left: 70px;
  }
  .homeBanner .banner-button img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 1023px) {
  .homeBanner .--content {
    margin-top: -96px;
  }
  .homeBanner .--content > .container-fluid {
    position: relative;
  }
  .homeBanner .banner-button {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 20px;
  }
  .homeBanner .--filter {
    gap: 4px;
    padding: 8px 12px;
  }
}
