/* Above-the-fold critical styles – full CSS loads async */
@font-face {
  font-family: "Marcellus";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/font/wEO_EBrOk8hQLDvIAF81VvoK.woff2) format("woff2");
}

:root {
  --white: #fff;
  --theme: #c28565;
  --title: #0d0d0d;
  --text: #6e6e6e;
  --bg: #004654;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* WOW.js hides elements until scroll — causes CLS when animate.css loads */
.wow {
  visibility: visible !important;
}

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

.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
  margin-left: -12px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 12px;
}

.header-section-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
}

.header-1 {
  background: transparent;
}

/* Header layout before bootstrap/main.css load — prevents CLS */
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.header-main .main-menu ul {
  margin: 0;
  padding: 0;
}

.header-main .main-menu ul li {
  display: inline-block;
  list-style: none;
  margin-inline-end: 20px;
}

.header-main .main-menu ul li a {
  display: inline-block;
  padding: 20px 10px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 3.52px;
  text-transform: uppercase;
  text-decoration: none;
}

.header-left .logo img,
.header-logo img {
  max-height: 60px;
  width: auto;
}

.section-padding {
  padding: 120px 0;
}

.intro-wrapper.style1.section-padding {
  min-height: 520px;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: width 0.5s ease;
}

.intro-section.fix {
  position: relative;
}

.swiper {
  width: 100%;
  overflow: hidden;
}

.intro-wrapper.style1 {
  background-color: #004654;
}

.intro-content-wrapper.style1 {
  position: relative;
  padding: 117px 0 190px 80px;
  background: rgba(0, 0, 0, 0.2);
  min-height: 480px;
}

.intro-content-wrapper.style1 .intro-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.intro-content-wrapper.style1 .intro-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-content-wrapper.style1 h1 {
  position: relative;
  z-index: 5;
  margin-bottom: 20px;
  color: #124659;
  font-family: "Marcellus", Georgia, "Times New Roman", serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
  background-color: #ffffff7a;
}

/* LCP: first hero slide visible before JS animations run */
.introSliderOne .swiper-slide:first-child .intro-thumb img {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.breadcrumb-wrapper {
  padding: 120px 0 60px;
}

@media (max-width: 767px) {
  .intro-content-wrapper.style1 {
    padding: 15px;
    margin-top: 30px;
  }

  .intro-content-wrapper.style1 h1 {
    font-size: 40px;
  }
}
