/* Myriad Pro - Regular */
@font-face {
  font-family: "Myriad Pro";
  src: url("/assets/fonts/MYRIADPRO-REGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Myriad Pro - Light */
@font-face {
  font-family: "Myriad Pro";
  src: url("/assets/fonts/MyriadPro-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* Myriad Pro - SemiBold */
@font-face {
  font-family: "Myriad Pro";
  src: url("/assets/fonts/MYRIADPRO-SEMIBOLD.OTF") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Myriad Pro - Bold */
@font-face {
  font-family: "Myriad Pro";
  src: url("/assets/fonts/MYRIADPRO-BOLD.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Myriad Pro - Bold Italic */
@font-face {
  font-family: "Myriad Pro";
  src: url("/assets/fonts/MYRIADPRO-BOLDIT.OTF") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/* Myriad Pro - SemiBold Italic */
@font-face {
  font-family: "Myriad Pro";
  src: url("/assets/fonts/MYRIADPRO-SEMIBOLDIT.OTF") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
/* Myriad Pro - Condensed */
@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("/assets/fonts/MYRIADPRO-COND.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
}
/* Myriad Pro - Condensed Italic */
@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("/assets/fonts/MYRIADPRO-CONDIT.OTF") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-stretch: condensed;
  font-display: swap;
}
/* Myriad Pro - Bold Condensed */
@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("/assets/fonts/MYRIADPRO-BOLDCOND.OTF") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-stretch: condensed;
  font-display: swap;
}
/* Myriad Pro - Bold Condensed Italic */
@font-face {
  font-family: "Myriad Pro Condensed";
  src: url("/assets/fonts/MYRIADPRO-BOLDCONDIT.OTF") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-stretch: condensed;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: "Myriad Pro", sans-serif;
  overflow-x: hidden;
}

html {
  scroll-padding-top: 75px;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: black;
}

h1,
h2,
h3,
h4,
h5,
p {
  padding: 0;
  margin: 0;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.black {
  font-weight: 900;
}

.flex {
  display: flex;
}

.container {
  width: 90%;
  height: 100%;
  margin: auto;
}

#goTop {
  position: fixed;
  bottom: 25px;
  right: 32px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: red;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 6px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

#goTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#goTop:hover {
  transform: translateY(-3px);
}

/* ===========================
   Page Loader
=========================== */
#loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-logo {
  width: 180px;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top: 3px solid #d60000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  #goTop {
    width: 40px;
    height: 40px;
    right: 13px;
    bottom: 18px;
    font-size: 20px;
  }
  .container {
    width: 85%;
  }
}
.banner {
  width: 100%;
  aspect-ratio: 1896/50;
  background: url("/assets/images/banner.png") center/cover no-repeat;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 220px;
  margin-left: 25vw;
}

.socials img {
  width: 20px;
  margin-top: 5px;
}

.header {
  height: 100px;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  height: 65px;
  width: 300px;
}

.brand img {
  width: 200px;
  height: 65px;
}

/* ===========================
   Mobile Header
=========================== */
@media (max-width: 768px) {
  .banner {
    height: 40px;
    aspect-ratio: auto;
  }
  .socials {
    width: auto;
    height: 100%;
    margin-left: 0;
    margin-right: 20px;
    justify-content: flex-end;
    gap: 14px;
  }
  .socials img {
    width: 17px;
    height: 17px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header {
    height: 75px;
  }
  .header .container {
    justify-content: center;
  }
  .brand {
    width: auto;
    height: auto;
  }
  .brand img {
    width: 155px;
    height: auto;
    display: block;
  }
}
.hero {
  width: 100%;
  aspect-ratio: 1896/675;
  background: url("/assets/images/hero-temp.png") center/cover no-repeat;
  padding: 30px 0 0 0;
}

.hero span {
  color: #ba3638;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 25px;
}

.hero .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero div p:nth-child(2) {
  margin-bottom: 20px;
}

.hero div p:nth-child(3) {
  margin-bottom: 25px;
  font-weight: 700;
}

.hero .container > p {
  margin-bottom: 0 !important;
  padding-bottom: 5px;
}

.hero .container div div {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  height: 35px;
}

.hero .container div div img {
  width: 30px;
}

.hero .container div div p {
  margin-bottom: 0;
  padding-left: 15px;
}

.ldiv p {
  margin-bottom: 0 !important;
}

/* ===========================
   Mobile Hero
=========================== */
@media (max-width: 768px) {
  .hero {
    aspect-ratio: auto;
    height: 611px;
    padding: 30px 0 0px;
    background-position: 20% center;
  }
  .hero .container {
    height: 100%;
    min-height: 585px;
  }
  .hero h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .hero span {
    color: #ba3638;
  }
  .hero p {
    font-size: 16px;
    line-height: 1.45;
  }
  /* Remove desktop-controlled line breaks */
  .hero br {
    display: none;
  }
  /* Intro paragraph */
  .hero div p:nth-child(2) {
    margin-bottom: 15px;
  }
  /* Enquiry paragraph */
  .hero div p:nth-child(3) {
    margin-bottom: 25px;
  }
  /* Contact items */
  .hero .container div div {
    height: auto;
    min-height: 35px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
  }
  .hero .container div div img {
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
    flex-shrink: 0;
  }
  .hero .container div div p {
    padding-left: 5px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
  }
  /* Copyright */
  .hero .container > p {
    padding-bottom: 5px;
    font-size: 13px;
    line-height: 1.4;
  }
}
.f-banner {
  background-color: #d7202b;
  color: white;
  height: 42px;
  text-align: center;
}

.f-banner h3 {
  padding-top: 8px;
}

/* ===========================
   Mobile Footer
=========================== */
@media (max-width: 768px) {
  .f-banner {
    height: auto;
    min-height: 42px;
    padding: 8px 0;
  }
  .f-banner h3 {
    padding-top: 0;
    font-size: 15px;
    line-height: 1.4;
  }
}/*# sourceMappingURL=style.css.map */