/* =========================
   Global Styles
   ========================= */
:root {
  --color-primary: #1948a0;
  --color-secondary: #00aed1;
  --color-dark: #111;
  --color-light: #f9f9f9;
  --color-white: #ffffff;
  --color-grey: #2e2e2e;
  --font-base: 'Anton', Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  line-height: 1;
  color: var(--color-dark);
  background: #fff;
}

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 {
  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); }

.xlpad {
  padding-bottom: 20px;
}
.lpad {
  padding-bottom: 15px;
}
.mpad {
  padding-bottom: 10px;
}
.spad {
  padding-bottom: 5px;
}
.service-bg {
  background-image: url(img/service-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.contact-bg {
  background-image: url(img/contact-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.bg-container {
  background-image: url(img/banner-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.blue-container {
  background-image: url(img/review-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.overlay {
  background-color: rgba(0,0,0,0.5)
}
.service-overlay {
  background-color: rgba(25, 72, 160, 0.9);
}
li::marker {
  font-size: 20px;
  color: var(--color-white);
}
.button-row {
  display: flex;
  gap: 10px;
}
.img-left {
  box-shadow: 120px 120px 0px -100px var(--color-secondary);
}
.dark-img-left {
  box-shadow: 120px 120px 0px -100px var(--color-grey);
}
.img-right {
  box-shadow: -120px 120px 0px -100px var(--color-secondary);
}
hr {
  border-color: var(--color-primary);
  margin: 0px 0px 10px 0px;
}
/* =========================
   Fonts
   ========================= */

.primary {
  font-size: 3.25rem;
  font-family: "Anton", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-white);
}

.secondary {
  font-size: 2.625rem;
  font-family: "Anton", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-primary);
}

.tertiary {
  font-size: 2rem;
  font-family: "Anton", sans-serif;
  font-weight: 500;
  text-transform: capitalize;
}

.branded {
  font-size: 2.5rem;
  font-family: "Anton", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-primary);
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-white);
  stroke: var(--color-white);
  line-height: inherit;
}

.buttons-text {
  font-size: 1.25rem;
  font-family: "Anton", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.menu-text {
  font-size: clamp(1rem, 0.8791rem + 0.2522vw, 1.125rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

p {
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.4rem;
}

.callout {
    font-size: 2rem;
    font-family: "Anton", sans-serif;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--color-dark);
    line-height: 1.1;
    display: flex;
}
.callout a {
  margin-right: 20px;
  display: flex;
}
.callout img {
  margin-right: 10px;
}
.callout-number {
  font-size: 3rem;
  font-family: "Anton", sans-serif;
}

/* =========================
   Header & Navigation
   ========================= */
.site-header {
  background: #F7F7F7;
  border-bottom: 4px solid #1948a0;
  /*position: sticky;*/
  top: 0;
  z-index: 1000;
  /*
  background-image: url('img/accent.png');
  --background-overlay: '';
  background-position: center center;
  background-size: cover;*/
}
.header-overlay {
  background-image: url('img/accent.png');
  --background-overlay: '';
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}
.header-menu {
  padding: 20px 0px;
  border-top: 4px solid var(--color-primary);
  background-color: var(--color-grey);
}

.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: none;
}
.menu.is-open {
  display: block;
}
.main-nav .menu {
  display: none;
  gap: clamp(0.75rem, -0.0311rem + 1.1561vw, 1.125rem);
}
.desktop-nav .menu {
  display: flex;
  gap: clamp(0.75rem, -0.0311rem + 1.1561vw, 1.125rem);
}
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-white);
  font-size: clamp(0.8125rem, 0.1616rem + 0.9634vw, 1.125rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.desktop-nav a {
  color: var(--color-white);
  font-size: clamp(0.8125rem, 0.1616rem + 0.9634vw, 1.125rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
}
.hamburger {
  width: 25px;
  height: 2px;
  background: var(--color-dark);
  display: block;
  position: relative;
}
.hamburger::before,
.hamburger::after {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--color-dark);
  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;
}
.hero-left {
    flex: 1;
    padding: 2rem;
    color: var(--color-white);
}
.hero-right { 
  flex: 1;
  background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(163deg, #000000 0%, #2e2e2e 100%);
  padding: 2em; 
  border-radius: 15px;
  border: 4px solid var(--color-primary);
  color: var(--color-white);
}
.thanks {
  flex: 1;
  padding: 8em 2em;
  text-align: center;
}
.contact-form label { 
  font-family: "Montserrat", 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%;
}

/* =========================
   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; }

/* =========================
   Services Section
   ========================= */
.services { padding: 4em 0; text-align: center; }
.services { font-size: 2rem; margin-bottom: 0em; }
.services .section-sub {
    color: var(--color-white);
    width: 75%;
    margin: auto;
    padding-bottom: 2rem;
}

#services-heading {
  color: var(--color-white);
}

.service-grid {
  /*display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5em;*/
  display: flex;
  gap: 0.5em;
  flex-direction: row;
  flex-wrap: wrap;
}

.service-card {
  background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #fff;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    height: 400px;
    width: 22%;
    flex-grow: 1;
}
.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, rgb(46 46 46 / 10%) 30%, rgb(0 0 0 / 100%) 100%);
}
.service-card div:hover {
    background-image: linear-gradient(180deg, rgb(46 46 46 / 60%) 30%, rgb(0 0 0 / 100%) 100%);
}
.service-card h3 {
    font-size: 1.5rem;
    padding-right: 1rem;
    font-weight: 500;
}
.service-card h3, .service-card p {
    color: var(--color-white);
}
.service-1,
.service-7 {
  width: 38%;
}
.service-2,
.service-6 {
  width: 58%;
}
.service-3,
.service-4,
.service-5 {
  width: 32%;
}

/* 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'); }
.service-7 { background-image: url('img/service-7.webp'); }

/* =========================
   FAQ Section
   ========================= */

.card {
    padding: 0.5rem 0.5rem 0.6rem 0.5rem;
    background-color: #ffffff;
    margin-bottom: 0.5rem;
    border-radius: 3px;
}
.answer {
    padding: 0.5rem;
}
summary {
    padding-left: 0.5rem;
}
::marker {
  font-size: 20px;
  color: var(--color-white);
}

/* =========================
   Gallery Section
   ========================= */

.gallery { 
  padding: 4em 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: 3px;
    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
   ========================= */
.social-proof { padding: 4em 0; text-align: center; }
.social-proof blockquote {
    margin: 1.5em auto;
    font-style: italic;
    max-width: 32%;
    flex-grow: 1;
    background-color: #ffffff;
    opacity: 1;
    padding: 1rem;
    border-radius: 3px;
    align-content: center;
    border: 3px solid var(--color-secondary);
}
.social-proof cite { display: block; margin-top: 0.5em; color: var(--color-black); 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-left, .contact-right { flex: 1; }
.contact-left {
    padding: 2rem;
    border-radius: 15px;
    border: 4px 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;
}

.contact-phone {
  display: block;
  width: 100%;
}

/* =========================
   Footer
   ========================= */
.site-footer { background: var(--color-primary); color: #fff; margin-top: 0rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 2em; padding: 3em 0; }
.footer-left img {
    margin-bottom: 1em;
    border: 0rem;
    border-radius: 0px;
}
.logo {
    border: 0rem;
    border-radius: 0px;
}
.footer-left {
  width: 48%;
}
.footer-middle {
  width: 18%;
}
.footer-right {
  width: 25%;
}
.footer-right h3, .footer-middle h3 { margin-bottom: 0.5em; }
.footer-right ul { display: flex; gap: 1em; margin-top: 1em; }
.footer-right a { color: #fff; }

.copyright-banner { background: var(--color-primary); text-align: center; padding: 1em 0; font-size: 0.875rem; }

.cr-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: "Montserrat", sans-serif;
}
small {
    background-color: #ffffff;
    color: #000000;
    padding: 10px 10px 8px 10px;
    border-radius: 3px;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1297px) {
  .service-grid { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
}

@media (max-width: 1080px) {
  .main-nav a { color: var(--color-dark); }
  .header-menu { display: none; }
  .menu-toggle { display: block; padding: 2em; }
  .main-nav .menu { flex-direction: column; background: #fff; position: absolute; right: 1em; top: 70px; border: 1px solid #ddd; padding: 1em; gap: 2em; display: flex; }
  [hidden] { display: none !important; }
  .service-1, .service-2, .service-3, .service-4, .service-5, .service-6, .service-7 { width: 100%; }
  .service-card { height: 350px; }
}

@media (max-width: 1000px) {
  .hero, .two-col { flex-direction: column; }
  .two-col2, .contact { flex-direction: column-reverse; }
  .footer-inner { flex-direction: column; }
  .footer-left, .footer-middle, .footer-right { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .testimonials { flex-direction: column; }
  .social-proof blockquote { max-width: 100%; }
  .flexus { flex-direction: row; row-gap: 20px; }
  .flexoid { width: 48% }
  .two-col, .two-col2 { padding: 2em 0; }
  .social-proof { 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; }
  .cr-box { flex-direction: column; gap: 20px; }
  .callout { display: none; }
}
