/* ========================================
  CSS RESET & BASE STYLES
  ======================================== */

/* Custom Font Loading */
@font-face {
  font-family: 'Geist';
  src: url('../assets/fonts/Geist[wght].woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../assets/fonts/PlayfairDisplay-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Merriweather';
  src: url('../assets/fonts/Merriweather-VariableFont.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Figtree';
  src: url('../assets/fonts/Figtree-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables */
:root {
  --breakpoint-1: 1400px;
  --breakpoint-2: 1200px;
  --breakpoint-3: 992px;
  --breakpoint-4: 768px;
  --breakpoint-5: 578px;

  /* --primary-color: #AD5757;
  --secondary-color: #A4C473;
  --tertiary-color: #8F8383; */

  --white: #FFFFFF;
  --black: #000000;

  --font-family-sans-serif: 'Figtree', 
  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";

  --font-size-base: 1rem;
  --font-weight-extralight: 100;
  --font-weight-lighter: lighter;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --font-weight-bolder: bolder;
  --font-weight-extrabold: 900;
  
  --line-height-base: 1.5;
  --line-height-sm: 1.25;
  --line-height-lg: 2;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
}

h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
figure, hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: 3rem; } /* 48px */
h2 { font-size: 3rem; } /* 48px */
h3 { font-size: 1.5rem; } /* 24px */
h4 { font-size: 1.125rem; } /* 18px */
h5 { font-size: 1rem; } /* 16px */
h6 { font-size: 0.875rem; } /* 14px */

p, a, li {
  font-size: 0.875rem; /* 14px */
}

/* Font Breakpoints */
@media (min-width: 578px) {
  h1 { font-size: 4.625rem; } /* 74px */
  h2 { font-size: 4.625rem; } /* 74px */
  h3 { font-size: 2.5rem; } /* 40px */
  h4 { font-size: 1.5rem; } /* 24px */
  h5 { font-size: 1.25rem; } /* 20px */
  h6 { font-size: 1rem; } /* 16px */
  p, a, li {font-size: 1rem;} /* 16px */
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

a:hover {
  text-decoration: underline;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--primary-color);
  color: var(--white);
}

.inverted-selection *::selection {
  background-color: var(--white);
  color: var(--primary-color);
}

.inverted-selection *::-moz-selection {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Lists */
ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
  list-style: none;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

li {
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.5;
  color: currentColor;
}

/* Images */
img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

.img-fluid {
  width: 100%;
  object-fit: contain;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: var(--border-width) solid var(--border-color);
}

th {
  font-weight: var(--font-weight-bold);
  text-align: inherit;
}

/* Forms */
button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

/* ========================================
    CONTAINER SYSTEM
    ======================================== */

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.container-fluid-right {
  margin-left: 1.5rem;
}

/* Container Breakpoints */
@media (min-width: 578px) {
  .container, .container-sm {
    max-width: 540px;
  }
  
  .container-fluid-right {
    margin-left: calc((100vw - 540px) / 2 + 0.375rem);
  }
}

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
  
  .container-fluid-right {
    margin-left: calc((100vw - 720px) / 2 + 0.375rem);
  }
}

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
  
  .container-fluid-right {
    margin-left: calc((100vw - 960px) / 2 + 0.375rem);
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
  
  .container-fluid-right {
    margin-left: calc((100vw - 1140px) / 2 + 0.375rem);
  }
}

@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1320px;
  }
  
  .container-fluid-right {
    margin-left: calc((100vw - 1320px) / 2 + 0.375rem);
  }
}

/* ========================================
UTILITY CLASSES
======================================== */

/* Display */
.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

.v-hidden { visibility: hidden; }

/* Flexbox utilities */
.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }

.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

/* Sizing utilities */
/* .w-1-4 { min-width: 25%; }
.w-1-3 { min-width: calc(100% / 3); }
.w-1-2 { min-width: 50%; }
.w-2-3 { min-width: calc(100% / 3 * 2); }
.w-3-4 { min-width: 75%; } */

/* Flex combinations */
.flex-0 { flex: 0 1 auto; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }

.flex-basis-1-2 { flex-basis: 50% !important; }
.flex-basis-1-3 { flex-basis: calc(100% / 3) !important; }
.flex-basis-2-3 { flex-basis: calc(100% / 3 * 2) !important; }
.flex-basis-1-4 { flex-basis: 25% !important; }
.flex-basis-3-4 { flex-basis: 75% !important; }
.flex-basis-1-5 { flex-basis: 20% !important; }
.flex-basis-2-5 { flex-basis: 40% !important; }
.flex-basis-3-5 { flex-basis: 60% !important; }
.flex-basis-4-5 { flex-basis: 80% !important; }

.flex-basis-1-2,
.flex-basis-1-3,
.flex-basis-2-3,
.flex-basis-1-4,
.flex-basis-3-4,
.flex-basis-1-5,
.flex-basis-2-5,
.flex-basis-3-5,
.flex-basis-4-5 { 
  min-width: 0 !important;
}

/* Text utilities */
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }
.text-justify { text-align: justify !important; }

.text-lowercase { text-transform: lowercase !important; }
.text-uppercase { text-transform: uppercase !important; }
.text-capitalize { text-transform: capitalize !important; }

.font-weight-extralight { font-weight: var(--font-weight-extralight) !important; }
.font-weight-light { font-weight: var(--font-weight-light) !important; }
.font-weight-normal { font-weight: var(--font-weight-normal) !important; }
.font-weight-bold { font-weight: var(--font-weight-bold) !important; }
.font-weight-extrabold { font-weight: var(--font-weight-extrabold) !important; }

.text-white { color: var(--white); }
.text-black { color: var(--black); }

/* Spacing utilities */
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }

/* .my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-5 { margin-left: 3rem !important; margin-right: 3rem !important; } */

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 0.25rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-3 { padding-left: 1rem !important; }
.pl-4 { padding-left: 1.5rem !important; }
.pl-5 { padding-left: 3rem !important; }

.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 0.25rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-4 { padding-right: 1.5rem !important; }
.pr-5 { padding-right: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.gap-0 { gap: 0 !important; }
.gap-1 { gap: 1rem !important; }
.gap-2 { gap: 2rem !important; }
.gap-3 { gap: 3rem !important; }
.gap-4 { gap: 4rem !important; }
.gap-5 { gap: 5rem !important; }

/* ========================================
   CUSTOM CSS
   ======================================== */

h1, h2, h3 {
  font-weight: var(--font-weight-bold);
  color: var(--primary-color);
}

h4, h5, h6 {
  font-weight: var(--font-weight-extralight);
}

/* CTA buttons */
.cta-button {
  padding: 1rem 2.5rem 1rem 3rem;
  border: 2px solid var(--white);
  border-radius: var(--border-radius);
  background-color: none;
  transition: background-color 0.5s ease;

  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.cta-button.inverted {
  border: 2px solid var(--primary-color);
}

.cta-button:hover {
  text-decoration: none;
  cursor: pointer;
  background-color: var(--white);
}
.cta-button.inverted:hover {
  background-color: var(--primary-color);
}

.cta-button h6, .cta-button::after {
  margin: 0;
  font-weight: var(--font-weight-bold);
  color: var(--white);
  transition: color 0.5s ease;
}
.cta-button.inverted h6, .cta-button.inverted::after {
  color: var(--primary-color);
}

.cta-button:hover h6, .cta-button:hover::after {
  color: var(--primary-color) !important;
}
.cta-button.inverted:hover h6, .cta-button.inverted:hover::after {
  color: var(--white) !important;
}

.cta-button::after {
  content: " \25B6";
  font-size: 1rem;
}

/* Fade-in effect */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation bar */
nav.container {
  max-width: 100%;
}

nav {
  max-height: 100px;
  position: fixed;
  left: 50%; top: 25px;
  transform: translateX(-50%);
  z-index: 100;
}

.nav-content {
  padding-left: 3.875rem; padding-right: 3.875rem;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  box-shadow: 0px 0px 30px -5px rgba(0, 0, 0, 0.5);
  border-radius: var(--border-radius);

  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

nav h5, nav p {
  margin: 0;
}

.nav-return-button {
  display: none;
  justify-self: start;
}

.nav-logo {
  height: 75px;
  max-width: 75%;
  justify-self: center;
}

.nav-logo img {
  padding: 1rem;
  height: 100%;
  object-fit: contain;
}

.nav-info {
  display: none;
  justify-self: end;
}

@media (min-width: 1200px) {

  nav {top: 50px;}

  nav.container {
    max-width: calc(1320px + 6.25rem);
  }

  .nav-content {
    grid-template-columns: 1fr auto 1fr;
  }
  
  .nav-logo {
    max-width: 100%;
    height: 100px;
  }
  .nav-return-button {display: flex;}
  .nav-info {display: block;}
}

/* Hero section */
section.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 750px;
  margin-bottom: 16rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section.hero * {
  color: var(--white);
  z-index: 2;
}

section.hero .overlay, section.services .overlay, section.banner .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

section.hero .cta-box {
  position: absolute;
  max-width: 1200px;
  top: 85%;
  padding: 1.5rem;
  background: var(--primary-color);
  border-radius: var(--border-radius);

  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 1.5rem;
}

section.hero .cta-box .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

section.hero .cta-box .contact-info h3 {
  white-space: nowrap;
}

@media (min-width: 1200px) {
  section.hero {
    margin-bottom: 20rem;
  }

  section.hero .cta-box {
    padding: 2.5rem 3.75rem;
    flex-direction: row;
    gap: 6.25rem;
  }
}

@media (min-width: 768px) {
  section.hero {
    margin-bottom: 22rem;
  }
}

/* Services section -> flickity slider */
section.services .slider {
  margin-top: 3rem;
}

section.services .slider * {
  color: var(--white);
  margin: 0;
}

section.services .tile {
  width: 22rem;
  padding: 3rem 2rem;
  margin-right: 2rem;
  background-size: cover;
  border-radius: var(--border-radius);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

section.services .tile * {
  z-index: 2;
}

section.services .tile img {
  height: 125px;
}

section.services .tile h5 {
  font-weight: 700;
  text-align: center;
}

.slider-prev-next-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
}

.slider-prev-next-buttons *:hover {
  cursor: pointer;
}

.slider-prev-next-buttons .is-disabled rect {
  fill: #AFAFAF;
}

/* Services section -> accordion styles */
section.services .accordion {
  margin-top: 4.5rem;
}

section.services .accordion * {
  color: var(--white);
}

.accordion-item {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
}

section.services .accordion-item + .accordion-item {
  margin-top: 1.5rem;
}

section.services .accordion-header {
  border: none;
  width: 100%;
  padding: 1.5rem;

  display: flex;
  align-items: center;
  gap: 3.125rem;

  cursor: pointer;
}

section.services .accordion * {
  margin: 0;
}

section.services .accordion-header, section.services .accordion-content {
  background-color: var(--primary-color);
}

section.services .accordion-header h3 {
  font-size: 1.5rem;
  text-align: start;
}

section.services .accordion-header .img-wrapper {
  width: 6.25rem; height: 6.25rem;
  display: none;
}

section.services .accordion-header .toggle {
  margin-left: auto;
}

section.services .accordion-header .less {
  display: none;
}

section.services .accordion-content {
  padding-left: 1.5rem; padding-right: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.125rem;
}

@media (min-width: 992px) {
  section.services .accordion-header {padding: 2.5rem;}
  section.services .accordion-header h3 {font-size: 2rem;}
  section.services .accordion-header .img-wrapper {display: flex;}
  section.services .accordion-content {padding-left: 13rem; padding-right: calc(100% / 3);}
  section.services .accordion-content.no-icon {padding-left: 2.5rem;}
  section.services .accordion-content-spacer {height: 2.5rem;}
}

@media (min-width: 768px) {
  section.services .slider {
    margin-top: 6rem;
  }
}

/* About section */
section.about {
  margin-top: 4rem;
}

section.about h2 {
  margin-bottom: 3rem;
}

.text-image {
  margin-bottom: 3rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.125rem;
}

.text-image img {
  border-radius: var(--border-radius);
}

section.about .reviews {
  padding-top: 3rem;
  background-color: var(--secondary-color);
}

section.about .slider {
  margin-top: 2.5rem;
}

section.about .slider .review {
  width: 22rem;
  padding: 3rem 2rem;
  margin-right: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;

  text-decoration: none;
}

section.about .slider .review * {
  text-align: center;
}

.profile-initials {
  width: 6.25rem; height: 6.25rem;
  background-color: var(--tertiary-color);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.stars {
  display: flex;
  gap: 0.5rem;
}

.stars * {
  color: var(--primary-color);
  font-size: 1.5rem;
}

@media (min-width: 1200px) {
  .text-image {
    flex-direction: row;
  }

  .text-image.reverse {
    flex-direction: row-reverse;
  }

  .text-image img {
    flex-basis: 40% !important;
    min-width: 0 !important;
  }

  .text-image .text-60 {
    flex-basis: 60% !important;
    min-width: 0 !important;
  }
}

@media (min-width: 992px) {
  section.about {
    margin-top: 8.75rem;
  }

  section.about h2 {
    margin-bottom: 6.25rem;
  }

  .text-image {
    margin-bottom: 6rem;
  }

  section.about .reviews {
    padding-top: 6rem;
  }
}

/* FAQ section */
section.about .faq {
  padding-top: 3rem; padding-bottom: 6.25rem;
  background-color: var(--secondary-color);
}

section.about .accordion {
  margin-top: 3.125rem;
}

section.about .accordion-item {
  border-top: 2px solid var(--primary-color);
}

section.about .accordion-header {
  width: 100%;
  padding: 1rem;
  border: none;
  background-color: var(--secondary-color);

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;
}

section.about .accordion-header * {
  color: var(--primary-color);
}

section.about .toggle {
  font-size: 1.5rem;
}

section.about .toggle.minus {
  display: none;
}

section.about .accordion-content {
  max-height: 0;
  padding: 0 1rem;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

@media (min-width: 1200px) {
  section.about .accordion-content {max-width: 50%;}
}

/* Banner section */
section.banner {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

section.banner * {
  z-index: 2;
}

/* Contact section */
section.contact {
  margin-top: 4.375rem;
  scroll-margin-top: 200px;
}

section.contact h2 {
  margin-bottom: 4.375rem;
}

.cf7-two-column {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 1.75rem;
}

.cf7-two-column p {
  margin: 0;
}

.right-column {
  margin-top: 19px;
}

.left-column p, 
.right-column p {
  width: 100%;
}

.cf7-two-column h5 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 900;
}

.cf7-two-column input,
.cf7-two-column textarea {
  width: 100%;
  padding: 12px;
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius);
}

.cf7-two-column textarea {
  height: 495px;
}

.submit-row {
  margin-top: 2rem;
}

.acceptance-field {
  margin-bottom: 2rem;
}

.acceptance-field .wpcf7-list-item {
  margin: 0;
}

.acceptance-field .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.acceptance-field input[type='checkbox'] {
  width: auto !important;
}

input.wpcf7-submit:disabled {
  background-color: var(--primary-color);
}

input.wpcf7-submit {
  color: white;
  background-color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.wpcf7-not-valid-tip {
  display: inline;
  margin-top: 0.5rem;
}

@media (min-width: 992px) {
  section.contact {
    scroll-margin-top: 300px;
  }

  .cf7-two-column {
    grid-template-columns: 1fr 2fr;
  }

  .right-column {
    margin-top: 0;
  }
}

/* Badges section */
section.badges, section.badges .gallery {
  margin-top: 3rem;
}

section.badges .gallery {
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  place-items: center;
}

section.badges .gallery img {
  max-height: 8rem;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 992px) {
  section.badges .gallery {
    height: 10rem;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  section.badges .gallery img {
    max-height: 10rem;
  }

  section.badges, section.badges .gallery {
    margin-top: 6.25rem;
  }
}

/* Footer */
footer {
  margin-top: 6.25rem;
}

.footer-background {
  background-color: var(--primary-color);
}

footer .links-logo {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

footer .links-logo * {
  margin: 0;
  color: var(--white);
}

.footer-center {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

footer .copyright {
  padding: 0.8rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

footer .copyright * {
  margin: 0;
  color: var(--primary-color);
}

@media (min-width: 992px) {
  footer .links-logo {
    min-height: 10rem;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1200px) {
  .footer-center {
    display: block;
  }

  .footer-center img {
    height: 75px;
  }

  footer .copyright {
    margin-bottom: 0;
  }
}