/* =========================
   Global Styles
   ========================= */
:root {
  --color-primary: #070f33;
  --color-secondary: #FF3131;
  --color-dark: #111;
  --color-light: #f9f9f9;
  --color-white: #ffffff;
  --color-grey: #2e2e2e;
  --font-base: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  color: var(--color-dark);
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

ul {
    list-style: disc;
    list-style-position: inside;
}
a { text-decoration: none; color: inherit; }

.btn-primary,
.btn-secondary,
.btn-tertiary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 3px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: 0px solid;
}

.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-grey); }

.btn-secondary { background: var(--color-secondary); color: #fff; }
.btn-secondary:hover { background: var(--color-grey); }

.btn-tertiary { background: var(--color-dark); color: #fff; }
.btn-tertiary:hover { background: var(--color-grey); }

.xlpad {
  padding-bottom: 20px;
}
.lpad {
  padding-bottom: 15px;
}
.mpad {
  padding-bottom: 10px;
}
.spad {
  padding-bottom: 5px;
}
.contact-bg {
  background-image: url(img/contact-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
li::marker {
  font-size: 20px;
  color: var(--color-secondary);
}
.button-row {
  display: flex;
  gap: 10px;
}
hr {
  border-color: var(--color-primary);
  margin: 0px 0px 10px 0px;
}
.two-col-list {
  columns: 12rem 2;
}
/* =========================
   Fonts
   ========================= */

.primary {
    font-size: 2.5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-white);
    font-style: italic;
}

.secondary {
  font-size: 2.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-dark);
}

.tertiary {
  font-size: 1.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1;
  font-style: italic;
}

.branded {
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
  color: var(--color-white);
  line-height: inherit;
}
.dark-branded {
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
  color: var(--color-primary);
  line-height: inherit;
}

.buttons-text {
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    text-transform: capitalize;
}
.menu-text {
  font-size: clamp(1.5rem, 0.5396rem + 2.0033vw, 2.25rem);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
  color: var(--color-white);
  padding-bottom: 30px;
}
.menu-text p, .menu-text em {
    font-size: 1.75rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    color: var(--color-primary);
    font-style: italic;
}

.menu-text em {
  font-weight: 900;
}

p {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  line-height: 1.4rem;
}

.callout {
  font-size: 1.125rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.1;
  display: flex;
  justify-content: flex-end;
}
.callout a {
  margin-left: 20px;
  display: flex;
  align-items: center;
}
.callout img {
  margin-right: 10px;
}
.callout-number {
  font-size: 3rem;
  font-family: "Montserrat", sans-serif;
}

/* =========================
   Header & Navigation
   ========================= */
.site-header {
  background: #F7F7F7;
  border-bottom: 4px solid var(--color-primary);
  /*position: sticky;*/
  top: 0;
  z-index: 1000;
  /*
  background-image: url('img/accent.png');
  --background-overlay: '';
  background-position: center center;
  background-size: cover;*/
}
.logo {
    border: 0rem;
    border-radius: 0px;
    background-color: var(--color-white);
}
a.logo {
    padding: 10px;
    /*border-left: 5px solid var(--color-secondary);
    border-right: 5px solid var(--color-secondary);*/
}
img.logo {
  width: 300px;
}
.header-overlay {
  background-color: var(--color-white);
}
.header-menu {
  padding: 20px 0px;
  border-top: 4px solid var(--color-primary);
  background-color: var(--color-grey);
}
.nav-top {
  background-color: var(--color-primary);
  padding: 15px 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0em 0;
}
.menu-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0em 0;
}
.menu {
  display: flex;
}
.menu.is-open {
  display: block;
}
.main-nav .menu {
  display: flex;
  justify-content: flex-end;
}
ul#primary-menu {
    list-style: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.main-nav a {
  color: var(--color-primary);
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  padding: 13px 16px;
  text-transform: uppercase;
  font-style: italic;
}
.main-nav a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  background-color: var(--color-secondary);
  border-radius: 3px;
}
.hamburger {
  width: 25px;
  height: 2px;
  background: var(--color-white);
  display: block;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--color-white);
  position: absolute;
  left: 0;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

/* =========================
   Hero Section
   ========================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4em 0;
  gap: 2em;
}
.bg-container {
  background-image: url(img/banner-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg-container .overlay {
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(228deg, rgb(255 255 255 / 31%) 0%, rgb(37 51 115 / 67%) 67%);
}
.hero-left {
    flex: 1;
    color: var(--color-white);
}
.hero-right {
  flex: 1;
  background-color: var(--color-primary);
  padding: 1em;
  border-radius: 15px;
  color: var(--color-white);
}
.thanks {
  flex: 1;
  padding: 8em 2em;
  text-align: center;
}
.contact-text {
  text-align: center;
}
.contact-form label {
  font-family: "Poppins", sans-serif;
  display: block;
  margin-top: 1em;
  font-weight: 400;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75em;
  margin-top: 0.5em;
  border: 1px solid #111;
  border-radius: 3px;
  font-size: 1rem;
}
.contact-form button {
    margin-top: 1em;
    width: 100%;
}

/* =========================
   Marquee Section
   ========================= */
.marquee-banner {
  background-color: var(--color-primary);
}
.marquee {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0px;
}
.marquee p {
  display: flex;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--color-white);
  text-transform: uppercase;
  text-align: center;
}
.marquee p:first-child {
    display: block;
}
.marquee p:last-child {
    display: none;
}
.marquee-banner-red {
  background-color: var(--color-primary);
  padding: 2rem 0;
}
.marquee-banner-red .btn-tertiary {
  background-color: var(--color-secondary);
}
.marquee-red {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  gap: 20px;
}
/* =========================
   Two Column Section
   ========================= */
.two-col, .two-col2 {
  display: flex;
  align-items: center;
  gap: 2em;
  padding: 4em 0;
}
.two-col-left,
.two-col-right { flex: 1; width: 100%; }

.two-col.reversed { flex-direction: row-reverse; }
.section1-bg {
  background-image: url(img/section1-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section1-bg .overlay {
    background-image: linear-gradient(90deg, rgb(255 255 255 / 100%) 50%, rgb(255 255 255 / 30%) 100%);
}
.section1-bg .two-col-left {
    flex: 2;
}
.section2-bg .two-col-right {
    flex: 2;
}
.section2-bg {
  background-image: url(img/section2-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section2-bg .overlay {
    background-image: linear-gradient(90deg, rgb(255 255 255 / 30%) 0%, rgb(255 255 255 / 100%) 50%);
}

/* =========================
   Highlights Section
   ========================= */
.highlights-bg {
  background-color: var(--color-primary);
}
.highlights {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 45px 0px;
  gap: 20px;
}
.highlights p,
.highlights h3 {
  color: var(--color-white);
}
.highlight-box h3 {
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-transform: capitalize;
  font-style: italic;
}
.highlight-box {
  text-align: center;
  padding: 10px;
  background-color: var(--color-secondary);
  border: 5px solid var(--color-white);
  width: 25%;
  flex-grow: 1;
}
.highlight-box img {
  padding-bottom: 20px;
}
.highlight-header {
  width: 25%;
  flex-grow: 1;
}
.highlight-header h3 {
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-transform: capitalize;
  font-style: italic;
}
/* =========================
   Services Section
   ========================= */
.services { padding: 2em 0; text-align: center; }
.services { font-size: 2rem; margin-bottom: 0em; }
.services .section-sub {
    color: var(--color-dark);
    width: 75%;
    margin: auto;
    padding-bottom: 2rem;
}
#services-heading {
  color: var(--color-dark);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
  gap: 0.5em;
}
.service-card {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  /*padding: 4em 2em;*/
  border: 5px solid #333333;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  height: 450px;
}
.service-card div {
    position: absolute;
    bottom: 0px;
    text-align: left;
    z-index: 1;
    padding: 1rem;
    width: 100%;
    height: 100%;
    align-content: end;
    background-image: linear-gradient(180deg, #FFFFFF00 0%, #070f33e8 75%);
}
.service-card h3 {
    font-size: 1.5rem;
    padding-right: 1rem;
    font-weight: 900;
    font-family: "Montserrat", sans-serif;
}
.service-card h3, .service-card p {
    color: var(--color-white);
}
.service-card .btn-tertiary.buttons-text {
    background-color: var(--color-secondary);
}
/* background images */
.service-1 { background-image: url('img/service-1.webp'); }
.service-2 { background-image: url('img/service-2.webp'); }
.service-3 { background-image: url('img/service-3.webp'); }
.service-4 { background-image: url('img/service-4.webp'); }
.service-5 { background-image: url('img/service-5.webp'); }
.service-6 { background-image: url('img/service-6.webp'); }

/* =========================
   FAQ Section
   ========================= */

.blue-container {
  background: var(--color-primary);
  color: var(--color-white);
}
.card {
  padding: 0.5rem 0.5rem 0.6rem 0.5rem;
  background-color: var(--color-white);
  margin-bottom: 0.5rem;
  border-radius: 0px;
  color: var(--color-dark);
}
.answer {
  padding: 0.5rem;
  line-height: 1.4;
}
summary {
  padding-left: 0.5rem;
}
::marker {
  font-size: 20px;
  color: var(--color-primary);
}

/* =========================
   Gallery Section
   ========================= */
#gallery {
  background-image: url('img/gallery-bg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.gallery-overlay {
  background-color: #ffffff94;
}
.gallery {
  padding: 2em 0;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0em;
}
.gallery .section-sub {
  color: var(--color-dark);
  width: 75%;
  margin: auto;
  padding-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.5em;
}
.gallery-card {
  color: #fff;
  border-radius: 0px;
  position: relative;
  overflow: hidden;
  height: 350px;
  width: 100%;
}
img.gallery-card {
  border: 0px !important;
  object-fit: cover;
}
/*
.gallery-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}*/

/* =========================
   Social Proof Section
   ========================= */
.review-bg > div {
  background-color: var(--color-primary) !important;
}
.social-proof { padding: 2em 0; text-align: center; }
.social-proof blockquote {
  margin: 1.5em auto;
  font-style: italic;
  max-width: 32%;
  flex-grow: 1;
  background-color: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
  padding: 1rem;
  border-radius: 15px;
  border: 5px solid var(--color-white);
}
.social-proof cite { 
  display: block;
  margin-top: 0.5em;
  color: var(--color-white);
  font-style: normal;
}
.testimonials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/* =========================
   Contact Section
   ========================= */
.contact {
  display: flex;
  gap: 2em;
  padding: 4em 0;
  align-items: center;
}
.contact-overlay {
  background-image: linear-gradient(90deg, rgb(255 255 255 / 100%) 50%, rgb(255 255 255 / 30%) 100%);
}
.contact-left, .contact-right { flex: 1; }
.contact-left {
  padding: 2rem;
  border-radius: 15px;
  border: 5px solid var(--color-primary);
  background-color: #ffffff;
}
.contact-left address { margin-top: 1.5em; line-height: 1.4; }
form.contact-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 1.125rem;
}
.short-input {
  width: 48%;
  flex-grow: 1;
}
.tertiary a { font-size: 1.75rem; }

/* =========================
   Footer
   ========================= */

.site-footer { background: var(--color-primary); color: #fff; margin-top: 0rem; }
.footer-inner { 
  display: flex;
  gap: 2em; 
  padding: 0; 
}
.footer-left img {
  margin-bottom: 1em;
  border: 0rem;
  border-radius: 0px;
}
.footer-left {
  display: flex;
  align-items: center;
  width: 25%;
  background-color: var(--color-white);
  border-left: 5px solid var(--color-secondary);
  border-right: 5px solid var(--color-secondary);
}
.footer-middle {
  width: 50%;
  padding: 20px 0px;
}
.footer-middle a {
  font-size: 2rem;
  font-family: "Montserrat", Sans-serif;
  font-weight: 600;
}
.footer-right {
  width: 20%;
  padding: 20px 0px;
}
.footer-right a { color: #fff; }
.copyright-banner {
  background: var(--color-secondary);
  text-align: left;
  padding: 0.4em 0;
  font-size: 1.4rem;
  font-style: italic;
}
.cr-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
}
small {
  color: var(--color-white);
  padding: 10px 10px 8px 10px;
  border-radius: 3px;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1304px) {
  .service-grid { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
  .callout { font-size: 0.825rem; }
  .highlight-box { height: 360px; }
}
@media (max-width: 1100px) {
  .main-nav { display: flex; justify-content: flex-end; }
  .main-nav a { color: var(--color-white); }
  /*.header-menu { display: none; }*/
  .menu-toggle { display: block; padding: 1.5em 1rem; }
  .main-nav .menu { flex-direction: column; background: var(--color-primary); position: absolute; right: 1em; top: 16%; border: 1px solid #ddd; padding: 1em; gap: 2em; display: flex; }
  [hidden] { display: none !important; }
  .hero, .two-col, .highlights, .testimonials { flex-direction: column; }
  .two-col2, .contact { flex-direction: column-reverse; }
  .highlight-header, .highlight-box { width: 100%; height: auto; }
  .social-proof blockquote { max-width: 100%; }
  .nomob { display: none; }
  .menu-text { display: none; }
}
@media (max-width: 1020px) {
  .hero, .two-col { flex-direction: column; }
  .two-col2, .contact { flex-direction: column-reverse; }
  .footer-inner { flex-direction: column; gap: 1em; }
  .footer-left, .footer-middle, .footer-right { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0px; }
  .footer-right { padding-bottom: 1rem; }
  .two-col, .two-col2 { padding: 2em 0; }
  .services { padding: 2em 0; }
  .contact { padding: 2em 0; }
  .service-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .gallery { padding: 2em 0; }
  .callout { display: none; }
  .marquee p:first-child { display: none; }
  .marquee p:last-child { display: block; }
}
@media (max-width: 767px) {
  .marquee-red {
    flex-direction: column;
    text-align: center;
  }
  .marquee-red-button {
    width: 100%;
  }
  .marquee-red a.btn-tertiary.buttons-text {
    width: 100%;
  }
  .two-col-list {
    columns: 12rem 1;
  }
  .main-nav .menu { top: 13%; }
  .footer-middle a { font-size: 1rem; }
  .tertiary a { font-size: 1.2rem !important; }
  button#accept-cookies { margin-top: 10px; }
}
