/*
 * MASTER SASS STYLESHEET - theme.scss
 *
 * AUTHOR:		Living Online - Dion Wong
 * VERSION:		1.0
 * MODIFIED:	09 April 2025
 *
 * Autocompile SASS to CSS:
 *    sass theme.scss:theme.css --watch --no-source-map --style compressed
 *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*  USE CORE CONFIGURATION
-------------------------------------------- */
/* FONTS
-------------------------------------------- */
/* Poppins Font Family - Primary Font */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Viva Beautiful Font Family - Styled Headings */
@font-face {
  font-family: "Viva Beautiful";
  src: url("../fonts/VivaBeautiful.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Viva Beautiful Pro Font Family - Styled Headings Medium */
@font-face {
  font-family: "Viva Beautiful Pro";
  src: url("../fonts/VivaBeautifulPro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Font Fallbacks */
.font-poppins {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.font-viva-beautiful {
  font-family: "Viva Beautiful", Georgia, "Times New Roman", serif;
}

.font-viva-beautiful-pro {
  font-family: "Viva Beautiful Pro", Georgia, "Times New Roman", serif;
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
  --bs-breakpoint-xxxl: 1800px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.grid {
  display: grid;
  grid-template-rows: repeat(var(--bs-rows, 1), 1fr);
  grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
  gap: var(--bs-gap, 1.5rem);
}
.grid .g-col-1 {
  grid-column: auto/span 1;
}
.grid .g-col-2 {
  grid-column: auto/span 2;
}
.grid .g-col-3 {
  grid-column: auto/span 3;
}
.grid .g-col-4 {
  grid-column: auto/span 4;
}
.grid .g-col-5 {
  grid-column: auto/span 5;
}
.grid .g-col-6 {
  grid-column: auto/span 6;
}
.grid .g-col-7 {
  grid-column: auto/span 7;
}
.grid .g-col-8 {
  grid-column: auto/span 8;
}
.grid .g-col-9 {
  grid-column: auto/span 9;
}
.grid .g-col-10 {
  grid-column: auto/span 10;
}
.grid .g-col-11 {
  grid-column: auto/span 11;
}
.grid .g-col-12 {
  grid-column: auto/span 12;
}
.grid .g-start-1 {
  grid-column-start: 1;
}
.grid .g-start-2 {
  grid-column-start: 2;
}
.grid .g-start-3 {
  grid-column-start: 3;
}
.grid .g-start-4 {
  grid-column-start: 4;
}
.grid .g-start-5 {
  grid-column-start: 5;
}
.grid .g-start-6 {
  grid-column-start: 6;
}
.grid .g-start-7 {
  grid-column-start: 7;
}
.grid .g-start-8 {
  grid-column-start: 8;
}
.grid .g-start-9 {
  grid-column-start: 9;
}
.grid .g-start-10 {
  grid-column-start: 10;
}
.grid .g-start-11 {
  grid-column-start: 11;
}
@media (min-width: 576px) {
  .grid .g-col-sm-1 {
    grid-column: auto/span 1;
  }
  .grid .g-col-sm-2 {
    grid-column: auto/span 2;
  }
  .grid .g-col-sm-3 {
    grid-column: auto/span 3;
  }
  .grid .g-col-sm-4 {
    grid-column: auto/span 4;
  }
  .grid .g-col-sm-5 {
    grid-column: auto/span 5;
  }
  .grid .g-col-sm-6 {
    grid-column: auto/span 6;
  }
  .grid .g-col-sm-7 {
    grid-column: auto/span 7;
  }
  .grid .g-col-sm-8 {
    grid-column: auto/span 8;
  }
  .grid .g-col-sm-9 {
    grid-column: auto/span 9;
  }
  .grid .g-col-sm-10 {
    grid-column: auto/span 10;
  }
  .grid .g-col-sm-11 {
    grid-column: auto/span 11;
  }
  .grid .g-col-sm-12 {
    grid-column: auto/span 12;
  }
  .grid .g-start-sm-1 {
    grid-column-start: 1;
  }
  .grid .g-start-sm-2 {
    grid-column-start: 2;
  }
  .grid .g-start-sm-3 {
    grid-column-start: 3;
  }
  .grid .g-start-sm-4 {
    grid-column-start: 4;
  }
  .grid .g-start-sm-5 {
    grid-column-start: 5;
  }
  .grid .g-start-sm-6 {
    grid-column-start: 6;
  }
  .grid .g-start-sm-7 {
    grid-column-start: 7;
  }
  .grid .g-start-sm-8 {
    grid-column-start: 8;
  }
  .grid .g-start-sm-9 {
    grid-column-start: 9;
  }
  .grid .g-start-sm-10 {
    grid-column-start: 10;
  }
  .grid .g-start-sm-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 768px) {
  .grid .g-col-md-1 {
    grid-column: auto/span 1;
  }
  .grid .g-col-md-2 {
    grid-column: auto/span 2;
  }
  .grid .g-col-md-3 {
    grid-column: auto/span 3;
  }
  .grid .g-col-md-4 {
    grid-column: auto/span 4;
  }
  .grid .g-col-md-5 {
    grid-column: auto/span 5;
  }
  .grid .g-col-md-6 {
    grid-column: auto/span 6;
  }
  .grid .g-col-md-7 {
    grid-column: auto/span 7;
  }
  .grid .g-col-md-8 {
    grid-column: auto/span 8;
  }
  .grid .g-col-md-9 {
    grid-column: auto/span 9;
  }
  .grid .g-col-md-10 {
    grid-column: auto/span 10;
  }
  .grid .g-col-md-11 {
    grid-column: auto/span 11;
  }
  .grid .g-col-md-12 {
    grid-column: auto/span 12;
  }
  .grid .g-start-md-1 {
    grid-column-start: 1;
  }
  .grid .g-start-md-2 {
    grid-column-start: 2;
  }
  .grid .g-start-md-3 {
    grid-column-start: 3;
  }
  .grid .g-start-md-4 {
    grid-column-start: 4;
  }
  .grid .g-start-md-5 {
    grid-column-start: 5;
  }
  .grid .g-start-md-6 {
    grid-column-start: 6;
  }
  .grid .g-start-md-7 {
    grid-column-start: 7;
  }
  .grid .g-start-md-8 {
    grid-column-start: 8;
  }
  .grid .g-start-md-9 {
    grid-column-start: 9;
  }
  .grid .g-start-md-10 {
    grid-column-start: 10;
  }
  .grid .g-start-md-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 992px) {
  .grid .g-col-lg-1 {
    grid-column: auto/span 1;
  }
  .grid .g-col-lg-2 {
    grid-column: auto/span 2;
  }
  .grid .g-col-lg-3 {
    grid-column: auto/span 3;
  }
  .grid .g-col-lg-4 {
    grid-column: auto/span 4;
  }
  .grid .g-col-lg-5 {
    grid-column: auto/span 5;
  }
  .grid .g-col-lg-6 {
    grid-column: auto/span 6;
  }
  .grid .g-col-lg-7 {
    grid-column: auto/span 7;
  }
  .grid .g-col-lg-8 {
    grid-column: auto/span 8;
  }
  .grid .g-col-lg-9 {
    grid-column: auto/span 9;
  }
  .grid .g-col-lg-10 {
    grid-column: auto/span 10;
  }
  .grid .g-col-lg-11 {
    grid-column: auto/span 11;
  }
  .grid .g-col-lg-12 {
    grid-column: auto/span 12;
  }
  .grid .g-start-lg-1 {
    grid-column-start: 1;
  }
  .grid .g-start-lg-2 {
    grid-column-start: 2;
  }
  .grid .g-start-lg-3 {
    grid-column-start: 3;
  }
  .grid .g-start-lg-4 {
    grid-column-start: 4;
  }
  .grid .g-start-lg-5 {
    grid-column-start: 5;
  }
  .grid .g-start-lg-6 {
    grid-column-start: 6;
  }
  .grid .g-start-lg-7 {
    grid-column-start: 7;
  }
  .grid .g-start-lg-8 {
    grid-column-start: 8;
  }
  .grid .g-start-lg-9 {
    grid-column-start: 9;
  }
  .grid .g-start-lg-10 {
    grid-column-start: 10;
  }
  .grid .g-start-lg-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 1200px) {
  .grid .g-col-xl-1 {
    grid-column: auto/span 1;
  }
  .grid .g-col-xl-2 {
    grid-column: auto/span 2;
  }
  .grid .g-col-xl-3 {
    grid-column: auto/span 3;
  }
  .grid .g-col-xl-4 {
    grid-column: auto/span 4;
  }
  .grid .g-col-xl-5 {
    grid-column: auto/span 5;
  }
  .grid .g-col-xl-6 {
    grid-column: auto/span 6;
  }
  .grid .g-col-xl-7 {
    grid-column: auto/span 7;
  }
  .grid .g-col-xl-8 {
    grid-column: auto/span 8;
  }
  .grid .g-col-xl-9 {
    grid-column: auto/span 9;
  }
  .grid .g-col-xl-10 {
    grid-column: auto/span 10;
  }
  .grid .g-col-xl-11 {
    grid-column: auto/span 11;
  }
  .grid .g-col-xl-12 {
    grid-column: auto/span 12;
  }
  .grid .g-start-xl-1 {
    grid-column-start: 1;
  }
  .grid .g-start-xl-2 {
    grid-column-start: 2;
  }
  .grid .g-start-xl-3 {
    grid-column-start: 3;
  }
  .grid .g-start-xl-4 {
    grid-column-start: 4;
  }
  .grid .g-start-xl-5 {
    grid-column-start: 5;
  }
  .grid .g-start-xl-6 {
    grid-column-start: 6;
  }
  .grid .g-start-xl-7 {
    grid-column-start: 7;
  }
  .grid .g-start-xl-8 {
    grid-column-start: 8;
  }
  .grid .g-start-xl-9 {
    grid-column-start: 9;
  }
  .grid .g-start-xl-10 {
    grid-column-start: 10;
  }
  .grid .g-start-xl-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 1400px) {
  .grid .g-col-xxl-1 {
    grid-column: auto/span 1;
  }
  .grid .g-col-xxl-2 {
    grid-column: auto/span 2;
  }
  .grid .g-col-xxl-3 {
    grid-column: auto/span 3;
  }
  .grid .g-col-xxl-4 {
    grid-column: auto/span 4;
  }
  .grid .g-col-xxl-5 {
    grid-column: auto/span 5;
  }
  .grid .g-col-xxl-6 {
    grid-column: auto/span 6;
  }
  .grid .g-col-xxl-7 {
    grid-column: auto/span 7;
  }
  .grid .g-col-xxl-8 {
    grid-column: auto/span 8;
  }
  .grid .g-col-xxl-9 {
    grid-column: auto/span 9;
  }
  .grid .g-col-xxl-10 {
    grid-column: auto/span 10;
  }
  .grid .g-col-xxl-11 {
    grid-column: auto/span 11;
  }
  .grid .g-col-xxl-12 {
    grid-column: auto/span 12;
  }
  .grid .g-start-xxl-1 {
    grid-column-start: 1;
  }
  .grid .g-start-xxl-2 {
    grid-column-start: 2;
  }
  .grid .g-start-xxl-3 {
    grid-column-start: 3;
  }
  .grid .g-start-xxl-4 {
    grid-column-start: 4;
  }
  .grid .g-start-xxl-5 {
    grid-column-start: 5;
  }
  .grid .g-start-xxl-6 {
    grid-column-start: 6;
  }
  .grid .g-start-xxl-7 {
    grid-column-start: 7;
  }
  .grid .g-start-xxl-8 {
    grid-column-start: 8;
  }
  .grid .g-start-xxl-9 {
    grid-column-start: 9;
  }
  .grid .g-start-xxl-10 {
    grid-column-start: 10;
  }
  .grid .g-start-xxl-11 {
    grid-column-start: 11;
  }
}
@media (min-width: 1800px) {
  .grid .g-col-xxxl-1 {
    grid-column: auto/span 1;
  }
  .grid .g-col-xxxl-2 {
    grid-column: auto/span 2;
  }
  .grid .g-col-xxxl-3 {
    grid-column: auto/span 3;
  }
  .grid .g-col-xxxl-4 {
    grid-column: auto/span 4;
  }
  .grid .g-col-xxxl-5 {
    grid-column: auto/span 5;
  }
  .grid .g-col-xxxl-6 {
    grid-column: auto/span 6;
  }
  .grid .g-col-xxxl-7 {
    grid-column: auto/span 7;
  }
  .grid .g-col-xxxl-8 {
    grid-column: auto/span 8;
  }
  .grid .g-col-xxxl-9 {
    grid-column: auto/span 9;
  }
  .grid .g-col-xxxl-10 {
    grid-column: auto/span 10;
  }
  .grid .g-col-xxxl-11 {
    grid-column: auto/span 11;
  }
  .grid .g-col-xxxl-12 {
    grid-column: auto/span 12;
  }
  .grid .g-start-xxxl-1 {
    grid-column-start: 1;
  }
  .grid .g-start-xxxl-2 {
    grid-column-start: 2;
  }
  .grid .g-start-xxxl-3 {
    grid-column-start: 3;
  }
  .grid .g-start-xxxl-4 {
    grid-column-start: 4;
  }
  .grid .g-start-xxxl-5 {
    grid-column-start: 5;
  }
  .grid .g-start-xxxl-6 {
    grid-column-start: 6;
  }
  .grid .g-start-xxxl-7 {
    grid-column-start: 7;
  }
  .grid .g-start-xxxl-8 {
    grid-column-start: 8;
  }
  .grid .g-start-xxxl-9 {
    grid-column-start: 9;
  }
  .grid .g-start-xxxl-10 {
    grid-column-start: 10;
  }
  .grid .g-start-xxxl-11 {
    grid-column-start: 11;
  }
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1800px) {
  .col-xxxl {
    flex: 1 0 0%;
  }
  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .col-xxxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .col-xxxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .col-xxxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .col-xxxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .col-xxxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .col-xxxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .col-xxxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .g-xxxl-0,
  .gx-xxxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxxl-0,
  .gy-xxxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxxl-1,
  .gx-xxxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxxl-1,
  .gy-xxxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxxl-2,
  .gx-xxxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxxl-2,
  .gy-xxxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxxl-3,
  .gx-xxxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxxl-3,
  .gy-xxxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxxl-4,
  .gx-xxxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxxl-4,
  .gy-xxxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxxl-5,
  .gx-xxxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxxl-5,
  .gy-xxxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 1328px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 1328px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 1328px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1328px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1328px;
  }
}
@media (min-width: 1800px) {
  .container-xxxl, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1328px;
  }
}
/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

[hidden] {
  display: none !important;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/*	TYPOGRAPHY
-------------------------------------------- */
/* Base Typography */
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1e1f1a;
}

/* Global Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: #1e1f1a;
  margin-top: 0;
  font-weight: 700;
}

/* Desktop Global Heading Styles */
h1,
.h1 {
  font-size: 48px;
  /* h1 Heading */
  line-height: 56px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  h1,
  .h1 {
    font-size: 48px;
    line-height: 56px;
  }
}

h2,
.h2 {
  font-size: 40px;
  /* h2 Heading */
  line-height: 48px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  h2,
  .h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 575.98px) {
  h2,
  .h2 {
    font-size: 32px !important;
    line-height: 40px;
  }
}

h3,
.h3 {
  font-size: 32px;
  /* h3 Heading */
  font-weight: 700;
  line-height: 40px;
}
@media (max-width: 767.98px) {
  h3,
  .h3 {
    font-size: 32px;
    line-height: 40px;
  }
}

h4,
.h4 {
  font-size: 24px;
  /* h4 Heading */
  font-weight: 700;
  line-height: 32px;
}
@media (max-width: 767.98px) {
  h4,
  .h4 {
    font-size: 24px;
    line-height: 32px;
  }
}

h5,
.h5 {
  font-size: 20px;
  /* h5 Heading */
  font-weight: 700;
  line-height: 32px;
}

h6,
.h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

/* Styled Headings */
.styled-heading {
  font-family: "Viva Beautiful", serif;
  color: #1e1f1a;
  margin-top: 0;
}
.styled-heading--large {
  font-size: 120px;
  font-weight: 400;
  line-height: 88px;
}
@media (max-width: 767.98px) {
  .styled-heading--large {
    font-size: 120px;
    line-height: 88px;
  }
}
.styled-heading--medium {
  font-family: "Viva Beautiful Pro", serif;
  font-size: 104px;
  font-weight: 400;
  line-height: 64px;
}
@media (max-width: 767.98px) {
  .styled-heading--medium {
    font-size: 90px;
    line-height: 48px;
  }
}
.styled-heading--small {
  font-size: 72px;
  font-weight: 400;
  line-height: 48px;
}
@media (max-width: 767.98px) {
  .styled-heading--small {
    font-size: 72px;
    line-height: 48px;
  }
}
.styled-heading--xsmall {
  font-size: 64px;
  font-weight: 400;
  line-height: 40px;
}
.styled-heading--title {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 64px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .styled-heading--title {
    font-size: 56px;
    line-height: 64px;
  }
}

/* Module Headlines */
.headline {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  color: #1e1f1a;
}
@media (max-width: 767.98px) {
  .headline {
    font-size: 48px;
    line-height: 56px;
  }
}

/* Module Headings */
.module-heading {
  font-family: "Poppins", sans-serif;
  color: #1e1f1a;
  margin-top: 0;
}
.module-heading--h1-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .module-heading--h1-title {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 1px;
  }
}
.module-heading--h2-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 64px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .module-heading--h2-title {
    font-size: 40px;
    line-height: 48px;
  }
}
.module-heading--h3-bold {
  font-size: 28px;
  font-weight: 700;
  line-height: 32px;
}
@media (max-width: 767.98px) {
  .module-heading--h3-bold {
    font-size: 24px;
    line-height: 32px;
  }
}
.module-heading--h3-semibold {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 767.98px) {
  .module-heading--h3-semibold {
    font-size: 24px;
    line-height: 32px;
  }
}
.module-heading--h4-semibold {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 767.98px) {
  .module-heading--h4-semibold {
    font-size: 24px;
    line-height: 32px;
  }
}

/* Body Text Styles */
.body-text {
  font-family: "Poppins", sans-serif;
  color: #1e1f1a;
}
.body-text--base {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.body-text--medium {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}
.body-text--large {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
@media (max-width: 767.98px) {
  .body-text--large {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
  }
}
.body-text--xlarge {
  font-size: 22px;
  font-weight: 500;
  line-height: 32px;
}

/* Blog Quote */
.blog-quote {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: #1e1f1a;
}

/* Quote (Legacy - keeping for backward compatibility) */
.quote {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  color: #1e1f1a;
}

/* Labels */
.label {
  font-family: "Poppins", sans-serif;
  color: #1e1f1a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.label--base {
  font-size: 14px;
  font-weight: 600;
}
.label--medium {
  font-size: 16px;
  font-weight: 600;
}
.label--large {
  font-size: 18px;
  font-weight: 600;
}

/* Navigation Item */
.nav-item {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1e1f1a;
  line-height: 1;
}

.wysiwyg p,
.wysiwyg ul,
.wysiwyg ol,
.wysiwyg blockquote,
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6,
.page-body p,
.page-body ul,
.page-body ol,
.page-body blockquote,
.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4,
.page-body h5,
.page-body h6,
.single-post__content-inner p,
.single-post__content-inner ul,
.single-post__content-inner ol,
.single-post__content-inner blockquote,
.single-post__content-inner h1,
.single-post__content-inner h2,
.single-post__content-inner h3,
.single-post__content-inner h4,
.single-post__content-inner h5,
.single-post__content-inner h6 {
  margin-top: 0;
  margin-bottom: 1em;
}

.wysiwyg h2,
.page-body h2,
.single-post__content-inner h2 {
  margin-bottom: 0.75em;
}

.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6,
.page-body h3,
.page-body h4,
.page-body h5,
.page-body h6,
.single-post__content-inner h3,
.single-post__content-inner h4,
.single-post__content-inner h5,
.single-post__content-inner h6 {
  margin-bottom: 0.5em;
}

.wysiwyg > *:last-child,
.page-body > *:last-child,
.single-post__content-inner > *:last-child {
  margin-bottom: 0;
}

/* WYSIWYG List Styles */
.wysiwyg ul,
.page-body ul,
.single-post__content-inner ul {
  list-style: disc;
  list-style-position: inside;
  padding-left: 0;
}

.wysiwyg ol,
.page-body ol,
.single-post__content-inner ol {
  list-style: decimal;
  list-style-position: inside;
  padding-left: 0;
}

.wysiwyg li,
.page-body li,
.single-post__content-inner li {
  margin-bottom: 0.5em;
}

/*  IMPORT COMPONENTS
-------------------------------------------- */
/*	BUTTONS
-------------------------------------------- */
/* Button Base Styles */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 48px;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  outline: none;
  z-index: 1;
  /* Color Variants */
  /* Size Variants */
  /* Arrow Button Variant */
  /* States */
}
.btn::before {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -4px;
  bottom: -4px;
  background: transparent;
  border: 1px solid #231f20;
  border-width: 1px 4px 4px 1px;
  border-radius: 49px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.24);
  z-index: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover::before {
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.24);
}
.btn:active {
  transform: translateY(0);
}
.btn:active::before {
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.24);
}
.btn--primary {
  background: #18b1b5;
  color: #ffffff;
}
.btn--primary:hover {
  background: #16a5a9;
  color: #ffffff;
}
.btn--primary:active {
  background: #14999d;
}
.btn--teal {
  border-radius: 6px;
  height: 56px;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background: #18B1B5;
  color: #ffffff;
}
.btn--teal::before {
  display: none;
}
.btn--teal:hover {
  background: #16a5a9;
  color: #ffffff;
  transform: translateY(-1px);
}
.btn--teal:active {
  background: #14999d;
  transform: translateY(0);
}
.btn--secondary {
  background: #18B1B5;
  color: #ffffff;
}
.btn--secondary:hover {
  background: #16a5a9;
  color: #ffffff;
}
.btn--secondary:active {
  background: #14999d;
}
.btn--sm {
  padding: 12px 20px;
  font-size: 14px;
  height: 40px;
}
.btn--sm::before {
  border-radius: 41px;
}
.btn--md {
  padding: 16px 24px;
  font-size: 16px;
  height: 48px;
}
.btn--md::before {
  border-radius: 49px;
}
.btn--lg {
  padding: 20px 32px;
  font-size: 18px;
  height: 56px;
}
.btn--lg::before {
  border-radius: 57px;
}
.btn--arrow::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../images/button-arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 8px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .btn--arrow::after {
    width: 20px;
    height: 20px;
    margin-left: 6px;
  }
}
@media (max-width: 575.98px) {
  .btn--arrow::after {
    width: 16px;
    height: 16px;
    margin-left: 4px;
  }
}
.btn:disabled, .btn[disabled] {
  background: #e9ecef;
  color: #6c757d;
  cursor: not-allowed;
  pointer-events: none;
}
.btn:disabled::before, .btn[disabled]::before {
  border-color: #dee2e6;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
.btn:disabled:hover, .btn[disabled]:hover {
  transform: none;
}

/*	FORMS
-------------------------------------------- */
/* Form Typography */
.form__label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #1e1f1a;
}
.form__input {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  color: #1e1f1a;
}
.form__input::-moz-placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #1e1f1a;
}
.form__input::placeholder {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #1e1f1a;
}

/* Navigation Labels */
.nav-label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #2c2c2c;
}

/* Label Variations */
.label {
  font-family: "Poppins", sans-serif;
  color: #2c2c2c;
}
.label--base {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.label--medium {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
}
.label--large {
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
}

/* Category & Breadcrumb */
.category-label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: #2c2c2c;
}

/* Gravity Forms specific styling */
.gform_wrapper * {
  box-sizing: border-box;
}
.gform_wrapper .ginput_container {
  width: 100%;
}
.gform_wrapper .gform_fields {
  gap: 16px !important;
}
.gform_wrapper .gfield {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 16px;
  flex: 1 0 0;
}
.gform_wrapper .gfield label,
.gform_wrapper .gfield legend {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #1e1f1a;
  margin-bottom: 0;
  display: block;
  align-self: stretch;
}
.gform_wrapper .gfield input[type=text],
.gform_wrapper .gfield input[type=email],
.gform_wrapper .gfield input[type=tel],
.gform_wrapper .gfield select,
.gform_wrapper .gfield textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #2C2E35;
  background: #FFFFFF;
  display: flex;
  height: 48px;
  padding: 6px 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  color: #2C2E35;
  transition: border-color 0.3s ease;
}
.gform_wrapper .gfield input[type=text]::-moz-placeholder, .gform_wrapper .gfield input[type=email]::-moz-placeholder, .gform_wrapper .gfield input[type=tel]::-moz-placeholder, .gform_wrapper .gfield select::-moz-placeholder, .gform_wrapper .gfield textarea::-moz-placeholder {
  color: #2C2E35;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}
.gform_wrapper .gfield input[type=text]::placeholder,
.gform_wrapper .gfield input[type=email]::placeholder,
.gform_wrapper .gfield input[type=tel]::placeholder,
.gform_wrapper .gfield select::placeholder,
.gform_wrapper .gfield textarea::placeholder {
  color: #2C2E35;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}
.gform_wrapper .gfield input[type=text]:focus,
.gform_wrapper .gfield input[type=email]:focus,
.gform_wrapper .gfield input[type=tel]:focus,
.gform_wrapper .gfield select:focus,
.gform_wrapper .gfield textarea:focus {
  outline: none;
  border-color: #18B1B5;
}
.gform_wrapper .gfield textarea {
  height: auto;
  min-height: 80px;
  resize: vertical;
  align-items: flex-start;
  padding-top: 12px;
}
.gform_wrapper .gfield.gf_left_half, .gform_wrapper .gfield.gf_right_half {
  width: 100% !important;
  float: none !important;
  clear: both !important;
}
.gform_wrapper .gfield .ginput_container_name {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: stretch;
}
.gform_wrapper .gfield .ginput_container_name .gform-grid-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px;
}
.gform_wrapper .gfield .ginput_container_name .gform-grid-col {
  width: 100% !important;
  display: flex !important;
  flex-direction: column;
  margin-bottom: 0;
}
.gform_wrapper .gform_footer {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}
.gform_wrapper .gform_footer input[type=submit] {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 4px !important;
  border-radius: 6px !important;
  background: #2C2E35 !important;
  background-color: #2C2E35 !important;
  color: white !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  background-image: url("../images/ix_arrow-right-white.svg"), linear-gradient(#2C2E35, #2C2E35) !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: calc(100% - 16px) center, 0 0 !important;
  background-size: 18px 18px, 100% 100% !important;
  padding-right: 48px !important;
  text-align: center !important;
  padding-left: 16px !important;
  text-transform: uppercase !important;
  line-height: 48px !important;
  vertical-align: middle !important;
}
.gform_wrapper .gform_footer input[type=submit]:hover {
  background-image: url("../images/ix_arrow-right-white.svg"), linear-gradient(rgb(20.8659793814, 21.8144329897, 25.1340206186), rgb(20.8659793814, 21.8144329897, 25.1340206186)) !important;
  transform: translateY(-2px) !important;
}
@media (max-width: 991.98px) {
  .gform_wrapper .gform_footer {
    justify-content: stretch;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .gform_wrapper .gform_footer input[type=submit] {
    width: 100% !important;
    justify-content: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

.gform_validation_errors {
  display: none !important;
}

.gfield_validation_message {
  color: #FFD700 !important;
  background: rgba(44, 46, 53, 0.95) !important;
  padding: 8px 12px !important;
  border-radius: 4px !important;
  margin-top: 4px !important;
  font-size: 14px !important;
  display: block !important;
  border: 1px solid #FFD700 !important;
  align-self: stretch !important;
  width: 100% !important;
}

.gfield_error input[type=text],
.gfield_error input[type=email],
.gfield_error input[type=tel],
.gfield_error textarea {
  border-color: #FFD700 !important;
}
.gfield_error label {
  color: #FFD700 !important;
}

.gform-theme--foundation .gform-grid-row {
  margin-inline: 0 !important;
}

.gform-theme--foundation .gform-grid-col {
  padding-inline: 0 !important;
}

/*	MEDIA COMPONENTS
-------------------------------------------- */
/*	IFRAMES
-------------------------------------------- */
iframe[src*="youtube.com/embed"] {
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors */
  padding: 4px;
}

/*	RESPONSIVE MEDIA
-------------------------------------------- */
img,
video {
  max-width: 100%;
  height: auto;
}

/*	WORDPRESS MEDIA COMPONENTS
-------------------------------------------- */
/*	IMAGE CLASSES
-------------------------------------------- */
.img-border {
  padding: 4px;
}

.alignleft {
  float: left;
  margin: 0 1rem 0.6rem 0;
}

.aligncenter {
  display: block;
  width: auto;
  margin: 0 auto;
}

.alignright {
  float: right;
  margin: 0 0 0.6rem 1rem;
}

img.attachment-thumbnail {
  max-width: none;
}

.wp-caption {
  position: relative;
  margin: 0 0 1rem 0;
}
.wp-caption > .wp-caption-text {
  margin: 0;
  padding: 0.5rem 1rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
}

/*	WORDPRESS GALLERY STYLES
-------------------------------------------- */
.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.gallery .gallery-item {
  flex: 1 1 auto;
  max-width: 100%;
  padding: 0.5rem;
}
.gallery .gallery-item .gallery-icon {
  height: 100%;
}
.gallery .gallery-item a {
  display: block;
  height: 100%;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.gallery .gallery-item a:hover {
  transform: scale(1.02);
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16/10;
}
@media (min-width: 576px) {
  .gallery .gallery-item {
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .gallery.gallery-columns-2 .gallery-item {
    max-width: 50%;
  }
  .gallery.gallery-columns-3 .gallery-item {
    max-width: 33.3333333333%;
  }
  .gallery.gallery-columns-4 .gallery-item {
    max-width: 25%;
  }
  .gallery.gallery-columns-5 .gallery-item {
    max-width: 20%;
  }
  .gallery.gallery-columns-6 .gallery-item {
    max-width: 16.6666666667%;
  }
}

/*	SECTION TITLE
-------------------------------------------- */
.section-title--center {
  text-align: center;
}
.section-title--center .section-title__heading {
  text-align: center;
}
.section-title--left {
  text-align: left;
}
.section-title--left .section-title__heading {
  text-align: left;
}
.section-title--black .section-title__heading {
  color: var(--primary-colours-primary-black-pearl-1-e-1-f-1-a, #1E1F1A);
}
.section-title--white .section-title__heading {
  color: #ffffff;
}
.section-title__heading {
  color: var(--primary-colours-primary-black-pearl-1-e-1-f-1-a, #1E1F1A);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 100% */
  margin: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .section-title__heading {
    font-size: 40px;
    line-height: 40px;
  }
}
@media (max-width: 767.98px) {
  .section-title__heading {
    font-size: 32px;
  }
}
.section-title__highlight {
  color: var(--Secondary-Colours-Secondary---Swagger, #18B1B5) !important;
  font-family: "Viva Beautiful Pro", serif !important;
  font-style: normal;
  font-weight: 400;
  font-size: 72px;
  line-height: 0.75;
  position: relative;
  z-index: -1;
}
@media (max-width: 767.98px) {
  .section-title__highlight {
    line-height: 0;
  }
}

/*	CONTACT & OPENING HOURS STYLES
-------------------------------------------- */
.contact-address {
  font-weight: 600;
  color: #1E1F1A;
}

.opening-hours-days {
  font-weight: 600;
  margin-right: 8px;
  color: #1E1F1A;
}

.opening-hours-times {
  font-weight: 400;
  color: #2C2E35;
}

.opening-hours {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
@media (max-width: 575.98px) {
  .opening-hours {
    flex-direction: column;
    align-items: flex-start;
  }
  .opening-hours .opening-hours-days {
    margin-right: 0;
    margin-bottom: 2px;
  }
}

/*  LAYOUT / SECTIONS
-------------------------------------------- */
/*	HEADER
-------------------------------------------- */
header.header {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  width: calc(100% - 60px);
  max-width: 1344px;
  transition: top 0.3s ease, transform 0.3s ease;
}
@media (max-width: 1210px) {
  header.header {
    width: calc(100% - 30px);
    top: 15px;
  }
}
.admin-bar header.header {
  top: 62px;
}
@media (max-width: 1210px) {
  .admin-bar header.header {
    top: 61px;
  }
}
header.header .header-inner {
  background: #ffffff;
  border-radius: 80px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1210px) {
  header.header .header-inner {
    border-radius: 16px;
    padding: 8px 16px;
  }
}
header.header.header-full-width {
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: none;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: top 0.3s ease;
}
.admin-bar header.header.header-full-width {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar header.header.header-full-width {
    top: 46px;
  }
}
header.header.header-full-width .header-inner {
  border-radius: 0;
  max-width: 1344px;
  margin: 0 auto;
  padding: 16px 30px;
  background: transparent;
  box-shadow: none;
}
@media (max-width: 1210px) {
  header.header.header-full-width .header-inner {
    border-radius: 0;
    padding: 8px 15px;
  }
}
@media (max-width: 1210px) {
  header.header.header-full-width #MainNav .nav {
    top: 72px;
    max-height: calc(100vh - 88px);
  }
  .admin-bar header.header.header-full-width #MainNav .nav {
    top: 104px;
    max-height: calc(100vh - 120px);
  }
}
@media (max-width: 1210px) and (max-width: 782px) {
  .admin-bar header.header.header-full-width #MainNav .nav {
    top: 118px;
    max-height: calc(100vh - 134px);
  }
}
header.header .logo {
  height: 50px;
  width: 206px;
  flex-shrink: 0;
  margin: 0;
}
@media (max-width: 1210px) {
  header.header .logo {
    height: 40px;
    width: 163px;
  }
}
header.header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header.header .logo a:not(:has(img)) {
  background-image: url("../images/select-logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
}
header.header .logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 1211px) {
  header.header #MainNav {
    display: block;
  }
}
@media (max-width: 1210px) {
  header.header #MainNav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1000;
    pointer-events: none;
  }
  header.header #MainNav.active {
    display: block;
    pointer-events: auto;
  }
  header.header #MainNav .nav {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    margin: 0;
    padding: 20px;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    list-style: none;
  }
  header.header #MainNav.active .nav {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 1211px) {
  header.header .nav {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
header.header .nav li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1210px) {
  header.header .nav li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  header.header .nav li:last-child {
    border-bottom: none;
  }
}
@media (max-width: 1210px) {
  #MainNav.active header.header .nav li {
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.3s ease forwards;
  }
  #MainNav.active header.header .nav li:nth-child(1) {
    animation-delay: 0.1s;
  }
  #MainNav.active header.header .nav li:nth-child(2) {
    animation-delay: 0.2s;
  }
  #MainNav.active header.header .nav li:nth-child(3) {
    animation-delay: 0.3s;
  }
  #MainNav.active header.header .nav li:nth-child(4) {
    animation-delay: 0.4s;
  }
  #MainNav.active header.header .nav li:nth-child(5) {
    animation-delay: 0.5s;
  }
}
header.header .nav li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #1e1f1a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  white-space: nowrap;
  position: relative;
}
@media (max-width: 1210px) {
  header.header .nav li a {
    font-size: 18px;
    padding: 16px 20px;
    width: 100%;
    justify-content: space-between;
  }
}
header.header .nav li a:hover {
  color: #18b1b5;
}
header.header .nav li a::after {
  content: "";
  width: 8px;
  height: 24px;
  background: url("../images/chevron-down.svg") no-repeat center;
  background-size: contain;
  margin-left: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
header.header .nav li a[aria-expanded=true]::after, header.header .nav li a[data-has-children=true]::after {
  opacity: 1;
}
header.header .nav li.menu-item-has-children > a::after {
  opacity: 1;
}
header.header .nav li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
}
@media (max-width: 1210px) {
  header.header .nav li .sub-menu {
    position: static;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 8px 0 0 0;
    padding: 8px 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    border-left: 3px solid #18b1b5;
  }
}
header.header .nav li .sub-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1210px) {
  header.header .nav li .sub-menu li {
    border-bottom: 1px solid #e9ecef;
    width: 100%;
  }
  header.header .nav li .sub-menu li:last-child {
    border-bottom: none;
  }
}
header.header .nav li .sub-menu li a {
  padding: 12px 20px;
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 1210px) {
  header.header .nav li .sub-menu li a {
    padding: 12px 16px 12px 24px;
    font-size: 15px;
    color: #666;
  }
}
header.header .nav li .sub-menu li a:hover {
  background: #f8f9fa;
}
@media (max-width: 1210px) {
  header.header .nav li .sub-menu li a:hover {
    background: #e9ecef;
    color: #333;
  }
}
header.header .nav li .sub-menu li a::after {
  display: none;
}
@media (min-width: 1211px) {
  header.header .nav li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media (max-width: 1210px) {
  header.header .nav li.menu-item-has-children > a {
    cursor: pointer;
  }
  header.header .nav li.menu-item-has-children > a.submenu-open + .sub-menu {
    display: block;
  }
}
@media (max-width: 1210px) {
  header.header .btn {
    display: none;
  }
}
header.header .mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #1e1f1a;
  border: 1px solid #000000;
  border-radius: 10px;
  padding: 12px;
  height: 40px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1210px) {
  header.header .mobile-menu-toggle {
    display: flex;
  }
}
header.header .mobile-menu-toggle .menu-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1e1f1a;
}
header.header .mobile-menu-toggle .hamburger-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
header.header .mobile-menu-toggle .hamburger-icon path {
  stroke: #18B1B5;
  transition: all 0.3s ease;
  transform-origin: 12px 12px;
}
header.header .mobile-menu-toggle:hover {
  background: rgba(24, 177, 181, 0.1);
}
header.header .mobile-menu-toggle.active {
  background: rgba(24, 177, 181, 0.15);
}
header.header .mobile-menu-toggle.active .hamburger-icon path:nth-child(1) {
  transform: rotate(45deg) translate(0px, 6px);
}
header.header .mobile-menu-toggle.active .hamburger-icon path:nth-child(2) {
  opacity: 0;
}
header.header .mobile-menu-toggle.active .hamburger-icon path:nth-child(3) {
  transform: rotate(-45deg) translate(0px, -6px);
}

body {
  padding-top: 124px;
}
@media (max-width: 1210px) {
  body {
    padding-top: 100px;
  }
}
body.home {
  padding-top: 0;
}
body.home.admin-bar {
  padding-top: 0;
}
body.admin-bar {
  padding-top: 156px;
}
@media (max-width: 1210px) {
  body.admin-bar {
    padding-top: 146px;
  }
}
body.header-full-width {
  padding-top: 82px;
}
@media (max-width: 1210px) {
  body.header-full-width {
    padding-top: 56px;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header.header.header-hidden {
  top: -120px;
}
@media (max-width: 1210px) {
  header.header.header-hidden {
    top: -80px;
  }
}
header.header.header-hidden.header-full-width {
  top: -84px;
}
@media (max-width: 1210px) {
  header.header.header-hidden.header-full-width {
    top: -64px;
  }
}
.admin-bar header.header.header-hidden.header-full-width {
  top: -116px;
}
@media (max-width: 782px) {
  .admin-bar header.header.header-hidden.header-full-width {
    top: -110px;
  }
}
.admin-bar header.header.header-hidden {
  top: -156px;
}
@media (max-width: 1210px) {
  .admin-bar header.header.header-hidden {
    top: -146px;
  }
}

@media (max-width: 1210px) {
  body.mobile-menu-active > *:not(header) {
    filter: blur(3px);
    transition: filter 0.3s ease;
  }
  body.mobile-menu-active header,
  body.mobile-menu-active #MainNav,
  body.mobile-menu-active .header-inner,
  body.mobile-menu-active .header-inner > * {
    filter: none !important;
  }
}

/*	FOOTER
-------------------------------------------- */
.footer {
  background: #1e1f1a;
  color: #ffffff;
}
.footer .footer-main {
  padding: 96px 0 90px;
}
@media (max-width: 767.98px) {
  .footer .footer-main {
    padding: 60px 0;
  }
}
.footer .footer-main .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media (max-width: 767.98px) {
  .footer .footer-main .footer-content {
    flex-direction: column;
    gap: 40px;
  }
}
.footer .footer-main .footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer .footer-main .footer-left .footer-logo {
  width: 247px;
  height: 60px;
}
@media (max-width: 767.98px) {
  .footer .footer-main .footer-left .footer-logo {
    width: 200px;
    height: 48px;
  }
}
.footer .footer-main .footer-left .footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}
.footer .footer-main .footer-left .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .footer-main .footer-left .footer-contact .footer-phone,
.footer .footer-main .footer-left .footer-contact .footer-email,
.footer .footer-main .footer-left .footer-contact .footer-address {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
}
@media (max-width: 767.98px) {
  .footer .footer-main .footer-left .footer-contact .footer-phone,
  .footer .footer-main .footer-left .footer-contact .footer-email,
  .footer .footer-main .footer-left .footer-contact .footer-address {
    font-size: 14px;
  }
}
.footer .footer-main .footer-left .footer-contact .footer-phone a,
.footer .footer-main .footer-left .footer-contact .footer-email a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #68c8cb;
}
.footer .footer-main .footer-left .footer-contact .footer-phone a:hover,
.footer .footer-main .footer-left .footer-contact .footer-email a:hover {
  color: #68c8cb;
  transition: color 0.3s ease;
}
.footer .footer-main .footer-left .footer-contact .footer-phone {
  text-transform: uppercase;
}
.footer .footer-main .footer-left .footer-contact .footer-social {
  display: flex;
  gap: 8px;
}
.footer .footer-main .footer-left .footer-contact .footer-social .social-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-main .footer-left .footer-contact .footer-social .social-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer .footer-main .footer-left .footer-contact .footer-social .social-icon:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer .footer-main .footer-right {
  display: flex;
  justify-content: space-between;
  max-width: 739px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .footer .footer-main .footer-right {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }
}
.footer .footer-main .footer-right .footer-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer .footer-main .footer-right .footer-column .footer-column-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 767.98px) {
  .footer .footer-main .footer-right .footer-column .footer-column-title {
    font-size: 18px;
  }
}
.footer .footer-main .footer-right .footer-column .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .footer-main .footer-right .footer-column .footer-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .footer-main .footer-right .footer-column .footer-links li::before {
  content: "";
  width: 14px;
  height: 8px;
  background: url("../images/chevron-right.svg") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}
.footer .footer-main .footer-right .footer-column .footer-links li a {
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .footer .footer-main .footer-right .footer-column .footer-links li a {
    font-size: 14px;
  }
}
.footer .footer-main .footer-right .footer-column .footer-links li a:hover {
  color: #68c8cb;
  transition: color 0.3s ease;
}
.footer .footer-bottom {
  padding-bottom: 40px;
}
.footer .footer-bottom .footer-bottom-content {
  background: #252620;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}
@media (max-width: 767.98px) {
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    text-align: left;
    padding: 32px 16px;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-left {
  display: flex;
  align-items: center;
  row-gap: 8px;
  flex-wrap: wrap;
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-left .copyright,
.footer .footer-bottom .footer-bottom-content .footer-bottom-left .legal-links a {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-left .copyright:hover,
.footer .footer-bottom .footer-bottom-content .footer-bottom-left .legal-links a:hover {
  color: #68c8cb;
  transition: color 0.3s ease;
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-left .legal-links {
  display: flex;
  align-items: center;
  row-gap: 16px;
  flex-wrap: wrap;
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-left .legal-links a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 16px;
  vertical-align: middle;
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-left .copyright::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 16px;
  vertical-align: middle;
}
@media (max-width: 522px) {
  .footer .footer-bottom .footer-bottom-content .footer-bottom-left {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer .footer-bottom .footer-bottom-content .footer-bottom-left .copyright::after {
    display: none;
  }
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-right .author {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-right .author .heart {
  color: #ef6262;
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-right .author a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}
.footer .footer-bottom .footer-bottom-content .footer-bottom-right .author a:hover {
  color: #68c8cb;
  transition: color 0.3s ease;
}

/*  PAGE STYLES
-------------------------------------------- */
/*	GENERAL PAGE STYLES
-------------------------------------------- */
.page-body {
  padding-top: 48px;
  padding-bottom: 48px;
}
@media (max-width: 767.98px) {
  .page-body {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.page-body h2:first-child {
  margin-top: 0;
}
.page-body h2:not(:first-child) {
  margin-top: 48px;
}
@media (max-width: 767.98px) {
  .page-body h2:not(:first-child) {
    margin-top: 32px;
  }
}
.page-body a:not(.btn):not([class*=btn]) {
  color: #24A3A7;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.page-body a:not(.btn):not([class*=btn]):hover {
  color: #1e8a8e;
  text-decoration: underline;
}
.page-body a:not(.btn):not([class*=btn]):visited {
  color: #24A3A7;
}

/*  PRINT STYLES
-------------------------------------------- */