@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');
:root {
  --sectionPadding: clamp(2rem, 5vw, 4.5rem);
  --headerColor: #f4efe6;
  --bodyTextColor: #d5d5d5;
}

html {
  -webkit-text-size-adjust: 100%;
}

 *{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}
body{
  font-family: montserrat;
  overflow-x: hidden;
}
nav{
  background: #1c7c7d;
  height: 80px;
  width: 100%;
  position: relative;
  z-index: 5000;
}
label.logo{
  margin-left: 20px;
  margin:0;
  padding: 0 120px;
  font-weight: bold;
}
nav ul{
  float: right;
  margin-right: 20px;
  margin:1px;
}
nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
nav ul li a{
  color: #f4efe6;
  font-size: 15px;
  padding: 5px 13px;
  border-radius: 5px;
  text-transform: capitalize;
}
a.active,a:hover{
  background: #156060;
  transition: .5s;
}
label.logo a:hover {
  background: transparent;
}
.checkbtn{
  font-size: 30px;
  color: #f4efe6;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
  position: relative;
  z-index: 5200;
}
#check{
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid #e6a817;
  background: rgba(26, 26, 26, 0.5);
  color: #f4efe6;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 0.72;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(212, 87, 44, 0.72);
  border-color: #f4efe6;
  opacity: 0.95;
  transform: translateY(-2px);
}

@media (max-width: 952px){
  label.logo{
    font-size: 30px;
    padding-left: 50px;
  }
  nav ul li a{
    font-size: 16px;
  }
}
@media (max-width: 1024px){
  .checkbtn{
    display: block;
  }
  nav ul{
    position: fixed;
    float: none;
    width: 100%;
    height: calc(100vh - 80px);
    background: #2c3e50;
    top: 80px;
    left: 0;
    margin: 0;
    padding: 0.75rem 0 1.5rem;
    text-align: center;
    overflow-y: auto;
    z-index: 5100;
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform .35s ease;
  }
  nav ul li{
    display: block;
    margin: 1.4rem 0;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 1.12rem;
  }
  nav ul li a:hover,
  nav ul li a.active{
    background: none;
    color: #0082e6;
  }
  #check:checked ~ ul{
    pointer-events: auto;
    transform: translateX(0);
  }
}
header {
    text-align: center;
    color: #ff9900;
  position: relative;
  overflow: hidden;
  isolation: isolate;
    background-attachment: scroll;
    background-image: url(images/frontpage.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

  header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
  }

  header > * {
    position: relative;
    z-index: 1;
  }

header .container {
    background: transparent;
    padding: 0;
    max-width: none;
}

header.masthead {
    background-image: url(images/frontpage.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

header .intro-text {
  padding-top: clamp(6rem, 16vw, 10rem);
  padding-bottom: clamp(2.5rem, 8vw, 5rem);
}

header .intro-text .intro-lead-in {
  margin-bottom: 1rem;
    font-family: "Droid Serif","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: clamp(1.6rem, 5vw, 3rem);
    font-style: italic;
  line-height: 1.2;
}

header .intro-text .intro-heading {
  margin-bottom: 1.1rem;
    text-transform: uppercase;
    font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: clamp(3rem, 17vw, 9rem);
    font-weight: 700;
  line-height: 0.95;
}

@media (min-width: 768px) {
    header .intro-text {
    padding-top: clamp(10rem, 20vw, 18rem);
    padding-bottom: clamp(4rem, 10vw, 12rem);
    }

    header .intro-text .intro-lead-in {
    margin-bottom: 1.35rem;
    }

    header .intro-text .intro-heading {
    margin-bottom: 1.5rem;
    font-size: clamp(6rem, 16vw, 12rem);
    line-height: 0.9;
    }
}
.btn.btn-primary {
    border-radius: 3px;
    border: 1px solid #e6a817;
	padding: 4px 15px;
    font-size: 20px;
    color: #f4efe6;
    text-shadow: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  color: #f4efe6;
  background-color: #156060;
  border-color: #156060;
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-1394 {
        /* 60px - 124px top and bottom */
        padding: clamp(2rem, 1vw, 2rem) 2rem;
      background-color: #d4572c;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    #cta-1394 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
        z-index: 1;
    }
    #cta-1394 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 32.625rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
        position: relative;
        z-index: 1;
    }
    #cta-1394 .cs-content:before {
        /* circle overlay */
        content: "";
        width: 48.375rem;
        height: 48.375rem;
        background: #1a1a1a;
        opacity: 0.8;
        border-radius: 50%;
        position: absolute;
        display: block;
        /* -36px to -92px */
        top: calc(clamp(2.25rem, 6vw, 5.75rem) * -1);
        left: 50%;
        z-index: -1;
        transform: translateX(-50%);
    }

    #cta-1394 .cs-title,
    #cta-1394 .cs-text1394 {
        max-width: 50rem;
      color:#f4efe6;
    }
    #cta-1394 .cs-text1394 {
        margin-bottom: 2rem;
        opacity: 0.8;
    }
    #cta-1394 .cs-form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        position: relative;
        z-index: 1;
    }
    #cta-1394 .cs-input {
        font-size: 1rem;
        width: 100%;
        /* 46px - 72px */
        height: clamp(2.875rem, 8vw, 4.5rem);
        margin: 0;
        padding: 0;
        padding-left: 1.25rem;
        border: none;
        border-radius: 5rem;
        /* prevents padding from adding to width and height */
        box-sizing: border-box;
        display: block;
    }
    #cta-1394 .cs-input::placeholder {
        color: #b8d4d3;
		font-style: italic;
    }
    #cta-1394 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #f4efe6;
        min-width: 9.375rem;
        padding: 0 2rem;
        overflow: hidden;
        background-color: #1c7c7d;
        border-radius: 5rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #cta-1394 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #156060;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #cta-1394 .cs-button-solid:hover {
        cursor: pointer;
    }
    #cta-1394 .cs-button-solid:hover:before {
        width: 100%;
    }
    #cta-1394 .cs-submit {
        width: 100%;
        border: none;
    }
    #cta-1394 .cs-status {
      margin-top: 0.75rem;
      min-height: 1.5rem;
      font-size: 0.95rem;
      line-height: 1.4;
    }
    #cta-1394 .cs-status.is-success {
      color: #b8f5d6;
    }
    #cta-1394 .cs-status.is-error {
      color: #ffd0d0;
    }
    #cta-1394 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #cta-1394 .cs-background img {
        height: 100%;
        width: 100%;
        opacity: 0.5;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cta-1394 .cs-container {
        max-width: 80rem;
    }
    #cta-1394 .cs-input {
        width: 100%;
    }
    #cta-1394 .cs-submit {
        width: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0.5rem;
    }
    #cta-1394 .cs-picture {
        width: 50%;
    }
}
/* - - - - - footer - - - - - */

footer {
	background-color: #1c7c7d;
	color: #f4efe6;
	font-family: 'Open Sans', sans-serif;
	padding: 2rem;
}

.footer-container {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 10px 0;
}

.footer-logo img{
	width: 80px;
	margin-bottom: 5px;
}

.footer-logo p{
	font-size: 15px;
	font-weight: 400;
}

.footer-contact-info {
	flex-grow: .80;
}

.footer-contact-info ul li{
	list-style: none;
	padding-top: 5px;
	display: flex;
	align-items: center;
	font-size: 12px;
}

.footer-contact-info img {
	width:  13px;
	filter: invert(100%);
	margin-right: 10px;
}

.footer-map-icon {
	align-self: flex-start;
}

.footer-social-med{
	display: flex;
	align-self: flex-end;
	justify-content: space-between;
	width: 150px;
	height: auto;
}

.footer-social-med img{
	width: 30px;
	filter: invert(60%);
}

.footer-social-med img:hover{
	filter: invert(100%);
	width: 35px;
}

.footer-social-med img:last-child{
	margin-right: 0px;
}

.copyright-info {
	display: flex;
	justify-content: center;
	font-size: 11px;
	padding: 1rem 0;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
	color: #f4efe6;
}

.copyright-info p {
  margin: 0;
  line-height: 1.3;
}

.subfooter {
	background-color: #156060;
	color: #f4efe6;
	padding: 1rem 2rem;
}

.subfooter-container {
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
  display: flex;
  justify-content: center;
}
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-1388 {
        padding: var(--sectionPadding);
        background: linear-gradient(180deg, #090a1d 0%, #1a1a1a 100%);
        color: #f4efe6;
        position: relative;
        z-index: 1;
    }
    #contact-1388 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 38rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: column;
        column-gap: auto;
        /* 48px - 64px */
        gap: clamp(2rem, 3vw, 3rem);
        position: relative;
    }
    #contact-1388 .cs-content {
        text-align: left;
        padding-top: 60px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #contact-1388 .cs-title {
        max-width: 30ch;
        color: #f4efe6;
    }
    #contact-1388 .cs-text,
    #contact-1388 .cs-text1 {
        color: #dcdfe8;
        margin-bottom: 1rem;
        line-height: 1.8;
        max-width: 45ch;
    }
    #contact-1388 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #contact-1388 .cs-ul {
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        position: relative;
    }
    #contact-1388 .cs-li {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.25rem;
    }
    #contact-1388 .cs-li:hover .cs-icon-wrapper {
        transform: scale(1.1);
    }
    #contact-1388 .cs-header {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.2em;
        margin-bottom: 0.75rem;
        color: #f4efe6;
        display: block;
    }
    #contact-1388 .cs-link {
        font-size: 1rem;
        line-height: 1.5em;
        text-decoration: none;
        color: #f3c15c;
        display: block;
        position: relative;
    }
    #contact-1388 .cs-link:hover {
        color: #f4efe6;
    }
    #contact-1388 .cs-icon-wrapper {
        width: 3.75rem;
        height: 3.75rem;
        margin: 0;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.04);
        display: flex;
        justify-content: center;
        align-items: center;
        flex: none;
        transition: transform 0.3s;
    }
    #contact-1388 .cs-icon {
        width: 1.5rem;
        height: auto;
        display: block;
        filter: brightness(0.95);
    }
    #contact-1388 .cs-form {
        width: 100%;
        max-width: 39.375rem;
        padding: clamp(1.5rem, 5.18vw, 3rem) clamp(1rem, 4vw, 3rem);
        box-sizing: border-box;
        background-color: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(8px);
        border-radius: 1rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }
    #contact-1388 .cs-h3 {
        font-size: clamp(1.25rem, 3vw, 2.4375rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        color: #f4efe6;
    }
    #contact-1388 .cs-label {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: #f4efe6;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.25rem;
    }
    #contact-1388 .cs-input {
        font-size: 1rem;
        width: 100%;
        height: 3.5rem;
        padding: 0;
        padding-left: 1.5rem;
        color: #f4efe6;
        background-color: rgba(255, 255, 255, 0.12);
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-sizing: border-box;
    }
    #contact-1388 .cs-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
        opacity: 1;
    }
    #contact-1388 .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }
    #contact-1388 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        color: #f4efe6;
        padding: 0 3rem;
        border-radius: 1.875rem;
        background-color: #1c7c7d;
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #contact-1388 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #contact-1388 .cs-button-solid:hover {
        color: #050514;
    }
    #contact-1388 .cs-button-solid:hover:before {
        width: 100%;
    }
    #contact-1388 .cs-submit {
        width: 100%;
        min-width: 12.5rem;
        border: none;
    }
    #contact-1388 .cs-submit:hover {
        color: #ff9900;
        cursor: pointer;
    }
    #contact-1388 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #contact-1388 .cs-content {
        width: 47%;
        flex: none;
    }
    #contact-1388 .cs-submit {
        width: auto;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #contact-1388 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #contact-1388 .cs-content {
        width: 47%;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #contact-1388 .cs-submit {
        width: auto;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-1388 .cs-form {
        width: 46%;
        max-width: 36.125rem;
    }
    #contact-1388 .cs-submit {
        width: auto;
    }
}
/* Large Desktop - 1500px */
@media only screen and (min-width: 93.75rem) {
    #contact-1388 .cs-graphic {
        display: block;
    }
}
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 2em 1em;
  text-align: center;
}
.team-section .our-team-title-wrap {
  width: 100%;
  display: block;
  text-align: center !important;
  padding: 2em 1em 1em;
}
.column {
  width: 100%;
  padding: 0.5em 0;
}
.team-section .our-team-title {
  display: inline-block !important;
  float: none !important;
  width: auto !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: clamp(2rem, 6vw, 4rem);
  color: #f4efe6;
  line-height: 1.1;
  text-transform: uppercase;
}
.card {
  box-shadow: 0 0 2.4em rgba(25, 0, 58, 0.1);
  padding: 3.5em 1em;
  border-radius: 0.6em;
  color: #2c2c2c;
  cursor: pointer;
  transition: 0.3s;
  background-color: #f4efe6;
}
.card .img-container {
  width: 8em;
  height: 8em;
  background-color: #f4efe6;
  padding: 0.5em;
  border-radius: 50%;
  margin: 0 auto 2em auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}
.card img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid #f4efe6;
  box-sizing: border-box;
}
.card h3 {
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.2;
}
.card p {
  font-weight: 300;
  text-transform: uppercase;
  margin: 0.5em 0 2em 0;
  letter-spacing: 2px;
}
.card p1 {
	font-weight: 300;
	font-size: 11px;
}
.icons {
  width: 20%;
  min-width: 180px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding-top:20px;
}
.icons a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, color 0.3s ease;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
.icons a:hover, .icons a:focus {
  transform: scale(1.2);
  color: #2c2c2c;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
}
.card a {
  text-decoration: none;
  color: inherit;
  font-size: 1.4em;
}
.card:hover {
  background: linear-gradient(135deg, #e6a817 0%, #d49415 100%);
  color: #f4efe6;
}
.card:hover .img-container {
  transform: scale(1.15);
}

body {
  background: #1a1a1a;
}
/*-- -------------------------- -->
<---         Gallery            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-1716 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    overflow: hidden;
	padding-top:10px;
	padding-bottom:10px;
	margin-left:10px;
  }
  #gallery-1716 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-1716 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #gallery-1716 .cs-text {
    margin-bottom: 1rem;
  }
  #gallery-1716 .cs-text:last-of-type {
    /* 32px - 64px */
    margin-bottom: clamp(2rem, 7vw, 4rem);
  }
  #gallery-1716 .cs-text:last-of-type:before {
    /* colored overlay rectangle - positioned absolute to the section tag because it is the nearest parent with a decalred position relative */
    content: '';
    width: 100%;
    height: 80%;
    background: var(--primary);
    opacity: .1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  #gallery-1716 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #f4efe6;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: #1c7c7d;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #gallery-1716 .cs-button-solid:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    background: #156060;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width .3s;
  }
  #gallery-1716 .cs-button-solid:hover:before {
    width: 100%;
  }
  #gallery-1716 .cs-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* sends it to the top in the 1st position */
    order: -1;
	margin-left:100px;
  margin-top:50px;
  }
  #gallery-1716 .cs-picture {
    width: 100%;
    /* changes at tablet */
    height: 100vw;
    max-height: 25rem;
    display: block;
    position: relative;
    z-index: 1;
    grid-column: span 4;
  }
  #gallery-1716 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  .cs-text{
	  color: #f4efe6;
    padding-top: 40px;
    padding-bottom: 250px;
  }
  .cs-text1{
	  color: #f4efe6;
  }
  .cs-text2{
	  color: #f4efe6;
  }
  .cs-topper{
	  padding-top:60px;
    font-size:50px;
	  color: #f4efe6;
  }
  .cs-title{
	  padding-top:90px;
    font-size: 40px;
    padding-bottom: 20px;
	  color:#f4efe6;
  }
  .cs-title1{
	  padding-top:90px;
    padding-bottom: 20px;
	  color:#f4efe6;
  }
  .cs-title2{
	  padding-top:90px;
    padding-bottom: 20px;
	  color:#f4efe6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-1716 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
  #gallery-1716 .cs-content {
    max-width: 19rem;
    /* 32px - 64px, ensures theres always a gap at the bottom to space out the content from the bottom of the container and let the colored rectangle shape be a little bigger and take up more space */
    padding-bottom: clamp(2rem, 7vw, 4rem);
  }
  #gallery-1716 .cs-text:last-of-type {
    /* add position relative so the colored rectangle is now absolutely positioned to the cs-text parent. We also only want these styles on the last paragraph tag */
    position: relative;
    z-index: 1;
  }
  #gallery-1716 .cs-text:last-of-type:before {
    width: 250vw;
    height: 100vw;
    top: calc(100% + 1.8rem);
    left: 50%;
    transform: translateX(-50%);
  }
  #gallery-1716 .cs-gallery {
    height: 200px;
	width:100%;
	padding-top:10px;
  }
  #gallery-1716 .cs-background {
    height: 100%;
	width:100%;
    max-height: 100%;
    /* 280px - 420px */
    min-height: clamp(17.5rem, 37vw, 26.25rem);
  }
}
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews-306 {
        background-color: #1a1a1a;
        /* prevents overflow from overlapping quote icon */
        overflow: hidden;
        position: relative;
		padding-top:20px;
		padding-bottom:20px;
		margin-left:0.2px;
    }
    #reviews-306 .cs-image {
        width: 100%;
        max-height: 28.125rem;
        display: block;
        position: relative;
        aspect-ratio: 0.94736842;
    }
    #reviews-306 .cs-image img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #reviews-306 .cs-content {
        max-width: 39.375rem;
        padding: var(--sectionPadding);
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        position: relative;
    }
    #reviews-306 .cs-review {
        /* 25px - 39px */
        font-size: 25px;
        text-align: left;
        margin-top: 20px;
        margin-bottom: 20px;
        /* 28px - 40px */
        margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
        color: var(--bodyTextColor);
    }
    #reviews-306 .cs-quote {
        width: 1rem;
        height: auto;
        margin-bottom: 2rem;
        display: block;
    }
    #reviews-306 .cs-info {
        display: flex;
        justify-content: auto;
        align-items: center;
    }
    #reviews-306 .cs-flex {
        display: inline-flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        flex-basis: content;
    }
    #reviews-306 .cs-profile {
        width: 3.125rem;
        height: auto;
        margin-right: 0.75rem;
        border-radius: 50%;
        display: block;
    }
    #reviews-306 .cs-name {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        font-weight: 700;
        line-height: 1.2em;
        color: var(--headerColor);
        display: block;
        flex-basis: content;
    }
    #reviews-306 .cs-job {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        width: 12.5rem;
        color: var(--bodyTextColor);
        display: block;
        flex-basis: content;
    }
    #reviews-306 .cs-watermark {
        /* 87px - 136px */
        width: clamp(5.4375rem, 12.2vw, 8.5rem);
        height: auto;
        opacity: 0.09;
        position: absolute;
        bottom: 0;
        right: 1.25rem;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #reviews-306 {
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
    }
    #reviews-306 .cs-image {
        width: 44%;
        height: auto;
        max-height: 100%;
        /* prevent flexbox from squishing it */
        flex: none;
        aspect-ratio: initial;
    }
    #reviews-306 .cs-content {
        /* 76px - 128px */
        padding-left: clamp(4.75rem, 10vw, 8rem);
        padding-right: 2rem;
    }
    #reviews-306 .cs-watermark {
        /* 16px - 175px */
        right: calc(clamp(1rem, 9.5vw, 10.9375rem) * -1);
    }
}
/*-- -------------------------- -->
<---        Promotions          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #promotions-1567 {
    padding: 100px;
    background-color: #1a1a1a;
  }
  #promotions-1567 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #promotions-1567 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #promotions-1567 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr));
    /* 16px - 20px */
    gap: clamp(1rem, 2.4vw, 1.25rem);
  }
  #promotions-1567 .cs-item {
    list-style: none;
    min-height: 16rem;
    /* 40px - 100px */
    padding: clamp(2.5rem, 7vw, 6.25rem) 1rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  }
  #promotions-1567 .cs-body {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #promotions-1567 .cs-title {
    color: #f4efe6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
    margin: 0 0 0.75rem;
    padding: 0;
  }
  #promotions-1567 .cs-text {
    color: #f4efe6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
    margin: 0 0 1.25rem;
    padding: 0;
  }
  #promotions-1567 .cs-item:hover .cs-background img {
    transform: scale(1.2);
    color:#1f003b;
  }
  #promotions-1567 .cs-tag {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color:#f4efe6;
    display: block;
  }
  #promotions-1567 .cs-h2 {
    font-size: clamp(1.9375rem, 4vw, 2.4375rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    color: #e6a817;
    display: block;
  }
  #promotions-1567 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #f4efe6;
    min-width: 9.375rem;
    padding: 0 3rem;
    background-color: #1c7c7d;
    border-radius: 999px;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    transition: color .3s;
  }
  #promotions-1567 .cs-button-solid:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    background: #156060;
    opacity: 0.72;
    top: 0;
    left: 0;
    border-radius: inherit;
    z-index: -1;
    transition: width .3s, opacity .3s;
  }
  #promotions-1567 .cs-button-solid:hover {
    color: var(--headerColor);
  }
  #promotions-1567 .cs-button-solid:hover:before {
    width: 100%;
    opacity: 0.64;
  }
  #promotions-1567 .cs-background {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #promotions-1567 .cs-background:before {
    /* background color overlay */
    content: '';
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: .7;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #promotions-1567 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    transition: transform .6s;
  }

  .faq .responsive-cell-block {
    min-height: 75px;
  }
  
  .faq * {
    font-family: Nunito, sans-serif;
  }
  
  .faq .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  .faq .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
  }
  
  .faq .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 30px;
    padding-bottom: 10px;
    padding-left: 30px;
  }
  
  .faq .responsive-container-block.Container {
    max-width: 1320px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 50px;
    margin-left: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .faq .text-blk.heading {
    font-size: 36px;
    line-height: 45px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    text-align: center;
    margin: 0 0 18px 0;
  }
  
  .faq .text-blk.subHeading {
    font-size: 16px;
    line-height: 26px;
    color: #939393;
    max-width: 610px;
    text-align: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 70px;
    margin-left: 0px;
  }
  
  .faq .text-blk.cardHeading {
    font-size: 22px;
    line-height: 34px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
    margin: 0 0 20px 0;
  }
  
  .faq .text-blk.cardSubHeading {
    font-size: 18px;
    line-height: 28px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
  }
  
  .faq .readMore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #1c7c7d;
    line-height: normal;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 58px;
    margin-left: 0px;
    padding: 0.75rem 1rem;
    border: 1px solid #1c7c7d;
    border-radius: 999px;
    background: transparent;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  
  .faq .readMore::after {
    content: '▼';
    display: inline-block;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
  }
  
  .faq .card.open .readMore::after {
    transform: rotate(180deg);
  }
  
  .faq .readMore:hover {
    cursor: pointer;
    color: #156060;
    border-color: #156060;
  }
  
  .faq .cardSubHeading {
    max-height: 4.5rem;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .faq .card.open .cardSubHeading {
    max-height: 1000px;
  }
  
  .faq .card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .faq .lineDivider {
    height: 1px;
    width: 85%;
    background-color: #707070;
  }
  
  .faq .responsive-cell-block.wk-desk-6.wk-ipadp-12.wk-tab-12.wk-mobile-12 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 20px;
  }
  
  .faq .responsive-container-block.allCardContainer {
    padding: 0 10px 0 10px;
  }
  
  @media (max-width: 1024px) {
    .faq .lineDivider {
      width: 95%;
    }
  }
  
  @media (max-width: 768px) {
    .faq .responsive-cell-block.wk-desk-6.wk-ipadp-12.wk-tab-12.wk-mobile-12 {
      padding: 0 0 0 0;
    }
  
    .faq .text-blk.heading {
      font-size: 32px;
    }
  }
  
  @media (max-width: 500px) {
    .faq .lineDivider {
      width: 100%;
    }
  
    .faq .text-blk.heading {
      font-size: 30px;
      line-height: 34px;
    }
  
    .faq .text-blk.subHeading {
      font-size: 14px;
      line-height: 20px;
      margin: 0 0 45px 0;
    }
  
    .faq .responsive-container-block.allCardContainer {
      padding: 0 0 0 0;
    }
  
    .faq .responsive-container-block.bigContainer {
      padding: 10px 20px 10px 20px;
    }
  
    .faq .text-blk.heading {
      font-size: 26px;
    }
  
    .faq .text-blk.subHeading {
      font-size: 15px;
      line-height: 22px;
    }
  
    .faq .text-blk.cardHeading {
      font-size: 18px;
    }
  
    .faq .text-blk.cardSubHeading {
      font-size: 17px;
      line-height: 25px;
      margin: 0 0 35px 0;
    }
  
    .faq .readMore {
      margin: 0 0 50px 0;
    }
  }
  
  .slider{
  overflow: hidden;
  width: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #1a1a1a;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  max-width: 100%;
  margin: 0;
  background: #1a1a1a;
  padding: 3rem 2rem;
  color: #fafafa;
}

.masthead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #fafafa;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  gap: 1rem;
}

.masthead h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0;
  color: #f4efe6;
}

.masthead time {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #f4efe6;
}

#magazine-flipbook {
  padding: 1rem 0.5rem 0.35rem;
  background: #1a1a1a;
}

#magazine-flipbook .mf-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#magazine-flipbook .mf-title {
  color: #f4efe6;
  text-align: center;
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  margin-bottom: 0.1rem;
}

#magazine-flipbook .mf-subtitle {
  display: none;
}

#magazine-flipbook .mf-book {
  display: block;
  width: 100%;
  max-width: min(99.8vw, calc((100vh - 3.4rem) * 210 / 297));
}

#magazine-flipbook .mf-book-shell {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.45rem, 1.2vw, 1rem);
}

#magazine-flipbook .mf-nav {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  border: 1px solid #e6a817;
  background: rgba(17, 17, 17, 0.72);
  color: #f4efe6;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  flex: 0 0 auto;
  transform: none;
  z-index: 1;
}

#magazine-flipbook .mf-nav:hover {
  background: #156060;
  transform: scale(1.08);
}

#magazine-flipbook .mf-viewport {
  perspective: 1200px;
  width: 100%;
}

#magazine-flipbook .mf-page-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 210 / 297;
}

#magazine-flipbook .mf-page {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  background: #111;
}

#magazine-flipbook .mf-page img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#magazine-flipbook .mf-page.is-next {
  opacity: 0;
}

#magazine-flipbook .mf-page-stack.flip-forward .is-active {
  transform-origin: left center;
  animation: mfFlipOutForward 0.55s ease both;
}

#magazine-flipbook .mf-page-stack.flip-forward .is-next {
  opacity: 1;
  transform-origin: right center;
  animation: mfFlipInForward 0.55s ease both;
}

#magazine-flipbook .mf-page-stack.flip-backward .is-active {
  transform-origin: right center;
  animation: mfFlipOutBackward 0.55s ease both;
}

#magazine-flipbook .mf-page-stack.flip-backward .is-next {
  opacity: 1;
  transform-origin: left center;
  animation: mfFlipInBackward 0.55s ease both;
}

#magazine-flipbook .mf-meta {
  text-align: center;
  margin-top: 0.1rem;
  color: #f0f0f0;
  font-size: 0.82rem;
  font-weight: 600;
}

#magazine-flipbook .mf-thumbs {
  display: none;
}

#magazine-flipbook .mf-thumb {
  border: 1px solid #3d3d3d;
  background: #222;
  color: #e6e6e6;
  border-radius: 0.4rem;
  min-width: 2rem;
  padding: 0.35rem 0.4rem;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

#magazine-flipbook .mf-thumb:hover,
#magazine-flipbook .mf-thumb.active {
  background: #1c7c7d;
  border-color: #e6a817;
  color: #f4efe6;
}

@keyframes mfFlipOutForward {
  from { transform: rotateY(0deg); opacity: 1; }
  to { transform: rotateY(-85deg); opacity: 0; }
}

@keyframes mfFlipInForward {
  from { transform: rotateY(85deg); opacity: 0; }
  to { transform: rotateY(0deg); opacity: 1; }
}

@keyframes mfFlipOutBackward {
  from { transform: rotateY(0deg); opacity: 1; }
  to { transform: rotateY(85deg); opacity: 0; }
}

@keyframes mfFlipInBackward {
  from { transform: rotateY(-85deg); opacity: 0; }
  to { transform: rotateY(0deg); opacity: 1; }
}

@media only screen and (max-width: 48rem) {
  #magazine-flipbook .mf-book-shell {
    flex-wrap: wrap;
    row-gap: 0.55rem;
  }

  #magazine-flipbook .mf-book {
    order: -1;
    width: 100%;
  }

  #magazine-flipbook .mf-book {
    max-width: min(99.9vw, calc((100vh - 3.2rem) * 210 / 297));
  }

  #magazine-flipbook .mf-nav {
    width: 2.25rem;
    height: 2.25rem;
  }
}

@media only screen and (max-height: 820px) {
  #magazine-flipbook {
    padding-top: 0.75rem;
    padding-bottom: 1rem;
  }

  #magazine-flipbook .mf-title {
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    margin-bottom: 0.25rem;
  }

  #magazine-flipbook .mf-subtitle,
  #magazine-flipbook .mf-thumbs {
    display: none;
  }

  #magazine-flipbook .mf-book {
    max-width: min(99.9vw, calc((100vh - 3rem) * 210 / 297));
  }
}

#video-presentation-slider {
  padding: 2.5rem 1.5rem 4rem;
  background: #1a1a1a;
}

#video-presentation-slider .vp-container {
  max-width: 70rem;
  margin: 0 auto;
}

#video-presentation-slider .vp-title {
  color: #f4efe6;
  text-align: center;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 0.4rem;
}

#video-presentation-slider .vp-subtitle {
  color: #d8d8d8;
  text-align: center;
  margin-bottom: 1.5rem;
}

#video-presentation-slider .vp-player-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

#video-presentation-slider .vp-player-card {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: #111;
}

#video-presentation-slider .vp-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  object-fit: cover;
  object-position: center;
}

#video-presentation-slider .vp-meta {
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

#video-presentation-slider .vp-meta h3 {
  color: #f4efe6;
  font-size: 1rem;
  margin: 0;
}

#video-presentation-slider .vp-meta .vp-label {
  color: #f4efe6;
}

#video-presentation-slider .vp-meta .vp-respondent {
  color: #e6a817;
}

#video-presentation-slider .vp-meta p {
  color: #f4efe6;
  margin: 0;
  font-weight: 600;
}

#video-presentation-slider .vp-custom-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem 0.2rem;
}

#video-presentation-slider .vp-control-btn {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e6a817;
  background: rgba(26, 26, 26, 0.9);
  color: #f4efe6;
  font-weight: 600;
  cursor: pointer;
}

#video-presentation-slider .vp-control-btn:hover {
  background: #156060;
}

#video-presentation-slider .vp-progress {
  flex: 1;
  accent-color: #e6a817;
}

#video-presentation-slider .vp-volume-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 8.5rem;
}

#video-presentation-slider .vp-volume-icon {
  color: #f4efe6;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

#video-presentation-slider .vp-volume {
  width: 100%;
  accent-color: #e6a817;
}

#video-presentation-slider .vp-time {
  min-width: 5.5rem;
  text-align: right;
  color: #f4efe6;
  font-size: 0.92rem;
  font-weight: 600;
}

#video-presentation-slider .vp-replay {
  margin: 0.9rem 1rem 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid #e6a817;
  background: rgba(26, 26, 26, 0.9);
  color: #f4efe6;
  font-weight: 600;
  cursor: pointer;
}

#video-presentation-slider .vp-replay:hover {
  background: #156060;
}

#video-presentation-slider .vp-nav {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid #e6a817;
  background: rgba(26, 26, 26, 0.9);
  color: #f4efe6;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

#video-presentation-slider .vp-nav:hover {
  background: #156060;
  transform: scale(1.08);
}

@media only screen and (max-width: 48rem) {
  #video-presentation-slider .vp-player-wrap {
    grid-template-columns: 1fr;
  }

  #video-presentation-slider .vp-nav {
    justify-self: center;
  }

  #video-presentation-slider .vp-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  #video-presentation-slider .vp-custom-controls {
    flex-wrap: wrap;
  }

  #video-presentation-slider .vp-time {
    width: 100%;
    text-align: left;
  }

  #video-presentation-slider .vp-volume-wrap {
    width: 100%;
    min-width: 0;
  }
}

.hero {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 6rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.hero h2 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.hero h2.making-lihal-title {
  color: #e6a817;
}

.hero-text {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.5;
  color: #d0d0d0;
  max-width: 40rem;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
}

.hero-meta-title {
  color: #d0d0d0;
}

.hero-meta-credits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.hero-meta-credits p {
  color: #909090;
}

.featured {
  margin-bottom: 6rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.image-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e5e5e5 0%, #f5f5f5 100%);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
}

.caption {
  font-size: 0.75rem;
  color: #b0b0b0;
  letter-spacing: 0.05em;
}

.body-content {
  display: grid;
  grid-template-columns: 1fr 4fr minmax(20rem, 2.6fr);
  gap: 3rem;
  margin-bottom: 6rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c0c0c0;
  position: sticky;
  top: 2rem;
  align-self: start;
}

.section-label.intro-label {
  color: #e6a817;
}

.body-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.8;
}

.body-text p:first-child {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.body-text p {
  color: #d5d5d5;
}

.sidebar {
  background: rgba(212, 87, 44, 0.78);
  padding: 2rem;
  width: 100%;
  max-width: 34rem;
  position: sticky;
  top: 2rem;
  align-self: start;
  color: #f4efe6;
}

.sidebar h3 {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #f4efe6;
}

.sidebar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar li {
  font-size: 0.875rem;
  font-weight: 300;
  color: #f4efe6;
  line-height: 1.6;
}

.quote-section {
  padding: 6rem 0;
  margin: 6rem auto;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
  max-width: 1400px;
}

blockquote {
  max-width: 60rem;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #d4572c;
}

.quote-attribution {
  font-size: 0.875rem;
  color: #b0b0b0;
  margin-top: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 3rem;
  margin-bottom: 6rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.column-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: #d5d5d5;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 6rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.grid-image {
  aspect-ratio: 3 / 4;
  background: linear-gradient(180deg, #e5e5e5 0%, #f5f5f5 100%);
  overflow: hidden;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(0.85) brightness(1.1);
}

.grid-image:nth-child(2) {
  background: linear-gradient(180deg, #e5e5e5 0%, #fafafa 100%);
}

.single-image-grid {
  grid-template-columns: 1fr 4fr;
  gap: 3rem;
  align-items: start;
}

.single-image-grid .logo-grid-image {
  grid-column: 2;
  justify-self: start;
  width: min(100%, 980px);
  aspect-ratio: auto;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(244, 239, 230, 0.04);
}

.single-image-grid .logo-grid-image img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  filter: none;
}

.brandbook-view-btn {
  grid-column: 2;
  justify-self: start;
  margin-top: 1rem;
  display: inline-block;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #e6a817;
  background: rgba(28, 124, 125, 0.18);
  color: #f4efe6;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.brandbook-view-btn:hover {
  background: #d4572c;
  border-color: #f4efe6;
  transform: translateY(-1px);
}

@media only screen and (max-width: 64rem) {
  .single-image-grid {
    grid-template-columns: 1fr;
  }

  .single-image-grid .logo-grid-image,
  .brandbook-view-btn {
    grid-column: auto;
    justify-self: center;
  }
}

footer {
  border-top: 1px solid #1a1a1a;
  padding-top: 1rem;
  margin-top: 0;
  font-size: 0.875rem;
  font-weight: 300;
}

footer p:first-child {
  color: #737373;
}

@media only screen and (max-width: 64rem) {
  .container {
    padding: 2.2rem 1.1rem;
  }

  #promotions-1567 {
    padding: clamp(2rem, 6vw, 4rem) 1rem;
  }

  #reviews-306 .cs-review {
    font-size: clamp(1.1rem, 4.6vw, 1.5rem);
    line-height: 1.6;
  }

  .hero,
  .body-content,
  .two-column,
  .columns,
  .image-grid,
  .single-image-grid,
  .hero-meta-credits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-label,
  .sidebar {
    position: static;
    top: auto;
  }

  .sidebar {
    max-width: 100%;
    padding: 1.25rem;
  }

  .single-image-grid .logo-grid-image,
  .brandbook-view-btn {
    grid-column: auto;
    justify-self: stretch;
  }

  .brandbook-view-btn {
    text-align: center;
  }

  #video-presentation-slider {
    padding: 2rem 1rem 2.5rem;
  }

  #video-presentation-slider .vp-player-wrap {
    gap: 0.75rem;
  }

  #video-presentation-slider .vp-custom-controls {
    flex-wrap: wrap;
  }

  #video-presentation-slider .vp-progress {
    width: 100%;
  }

  #gallery-1716 .cs-gallery {
    margin-left: 0;
    margin-top: 1rem;
  }

  .footer-container {
    align-items: flex-start;
  }

  .footer-contact-info {
    width: 100%;
  }

  .footer-social-med {
    align-self: flex-start;
  }

  footer {
    padding: 1.25rem 1rem;
  }

  .subfooter {
    padding: 0.75rem 1rem;
  }

  .footer-logo img {
    width: 64px;
  }

  .footer-contact-info ul li {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .footer-contact-info img {
    width: 11px;
    margin-right: 8px;
  }

  .footer-social-med {
    width: 118px;
  }

  .footer-social-med img {
    width: 24px;
  }
}

@media only screen and (max-width: 48rem) {
  nav {
    padding: 0 0.75rem;
  }

  label.logo {
    padding: 0;
    margin-left: 0;
  }

  .checkbtn {
    margin-right: 0.25rem;
  }

  nav ul {
    top: 80px;
    padding: 0.75rem 0 1.25rem;
  }

  nav ul li {
    margin: 1.1rem 0;
  }

  nav ul li a {
    font-size: 1.1rem;
  }

  #contact-1388 .cs-container,
  #contact-1388 .cs-content,
  #contact-1388 .cs-form {
    width: 100%;
    max-width: 100%;
  }

  #contact-1388 .cs-content {
    padding-top: 1rem;
  }

  #contact-1388 .cs-li {
    gap: 0.75rem;
  }

  .team-section .our-team-title-wrap {
    padding: 1.25rem 0.75rem 0.75rem;
  }

  .row {
    padding: 1rem 0.75rem;
  }

  .card {
    padding: 1.5rem 0.9rem;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .icons {
    min-width: 150px;
    width: auto;
  }

  .faq .responsive-container-block.bigContainer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .faq .text-blk.cardSubHeading {
    font-size: 1rem;
    line-height: 1.55;
  }

  .faq .cardSubHeading {
    max-height: 6.8rem;
  }

  .back-to-top {
    right: 0.7rem;
    bottom: 0.75rem;
  }

  footer {
    padding: 1rem 0.85rem;
  }

  .footer-container {
    gap: 1rem;
  }

  .footer-logo {
    margin: 0;
  }

  .footer-contact-info ul li {
    font-size: 0.74rem;
  }

  .copyright-info {
    font-size: 0.66rem;
    gap: 0.25rem;
    padding: 0.6rem 0;
    width: fit-content;
  }
}

}

/* Final mobile/tablet safety overrides (CSS-only) */
@media only screen and (max-width: 64rem) {
  nav {
    position: relative;
    z-index: 99990;
    overflow: visible;
  }

  nav .checkbtn {
    position: relative;
    z-index: 100000;
  }

  nav ul {
    position: absolute !important;
    inset: auto !important;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto !important;
    max-height: 0;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    background: #2c3e50;
    overflow-y: auto;
    z-index: 99999 !important;
    transform: none !important;
    transition: max-height 0.28s ease, padding 0.2s ease;
    pointer-events: none;
  }

  #check:checked ~ ul {
    max-height: min(28rem, calc(100dvh - 80px));
    padding: 0.5rem 0 1rem !important;
    pointer-events: auto;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  }

  nav ul li {
    margin: 0.85rem 0;
    line-height: 1.25;
  }

  nav ul li a {
    display: inline-block;
    padding: 0.45rem 0.75rem;
    font-size: 1rem;
  }

  footer {
    padding: 0.8rem 0.75rem !important;
  }

  .subfooter {
    padding: 0.55rem 0.75rem !important;
  }

  .footer-container {
    gap: 0.7rem;
  }

  .footer-logo img,
  .footer-logo .footer-logo-pic {
    width: 48px !important;
  }

  .footer-contact-info ul li {
    font-size: 0.7rem !important;
    line-height: 1.25;
    padding-top: 3px;
  }

  .footer-contact-info img {
    width: 10px !important;
    margin-right: 7px;
  }

  .footer-social-med {
    width: 96px;
  }

  .footer-social-med img,
  .social-med-button {
    width: 20px !important;
  }

  .copyright-info {
    font-size: 0.6rem !important;
    padding: 0.45rem 0;
    gap: 0.2rem;
    width: fit-content;
  }
}

@media only screen and (max-width: 48rem) {
  nav ul {
    top: 80px;
    left: 0;
    right: 0;
  }

  .footer-contact-info ul li {
    font-size: 0.66rem !important;
  }

  .footer-social-med {
    width: 88px;
  }

  .footer-social-med img,
  .social-med-button {
    width: 18px !important;
  }
}

/* Complete nav reset: CSS-only, non-overlay dropdown on mobile/tablet */
nav.site-nav {
  background: rgba(28, 124, 125, 0.82);
  position: relative;
  z-index: 4000;
  min-height: 80px;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
}

nav.site-nav .logo {
  margin: 0 0 0 0.25rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

nav.site-nav .logo img {
  width: 64px;
  height: 64px;
  display: block;
}

nav.site-nav .nav-toggle {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: auto !important;
}

nav.site-nav .checkbtn.nav-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  margin: 0;
  border-radius: 0.45rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  float: none;
  line-height: 1;
  z-index: 4100;
}

nav.site-nav .checkbtn.nav-toggle-btn span {
  width: 22px;
  height: 2px;
  background: #f4efe6;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

nav.site-nav .nav-toggle:checked + .checkbtn.nav-toggle-btn span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

nav.site-nav .nav-toggle:checked + .checkbtn.nav-toggle-btn span:nth-child(2) {
  opacity: 0;
}

nav.site-nav .nav-toggle:checked + .checkbtn.nav-toggle-btn span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

nav.site-nav .nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

nav.site-nav .nav-menu li {
  display: inline-flex;
  margin: 0;
  line-height: 1;
}

nav.site-nav .nav-menu a {
  color: #f4efe6;
  font-size: 0.95rem;
  padding: 0.45rem 0.75rem;
  border-radius: 0.45rem;
  text-transform: capitalize;
  display: inline-block;
}

nav.site-nav .nav-menu a:hover,
nav.site-nav .nav-menu a.active {
  background: #156060;
  color: #f4efe6;
}

@media only screen and (max-width: 64rem) {
  nav.site-nav {
    padding: 0 0.95rem;
    flex-wrap: wrap;
    align-items: center;
  }

  nav.site-nav .checkbtn.nav-toggle-btn {
    display: none !important;
  }

  nav.site-nav .nav-menu {
    order: 2;
    flex-basis: 100%;
    width: 100%;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.35rem;
    background: transparent;
    border-radius: 0;
    padding: 0.35rem 0 0.55rem;
    transition: none;
  }

  nav.site-nav .nav-menu li {
    display: inline-flex;
    margin: 0;
  }

  nav.site-nav .nav-menu a {
    font-size: 0.9rem;
    padding: 0.38rem 0.58rem;
    background: rgba(21, 96, 96, 0.45);
  }
}

@media only screen and (min-width: 64.0625rem) {
  nav.site-nav {
    flex-wrap: nowrap;
  }

  nav.site-nav .nav-menu {
    max-height: none !important;
    overflow: visible;
    width: auto;
    background: transparent;
    padding: 0;
  }
}

/* Final copyright placement fix */
.subfooter {
  background: transparent !important;
  padding: 0.45rem 0.75rem !important;
  display: flex;
  justify-content: flex-start;
}

.subfooter-container {
  display: inline-flex !important;
  justify-content: flex-start !important;
  align-items: center;
  width: fit-content !important;
  max-width: none;
  margin-left: 0;
  margin-right: auto;
}

.subfooter-container {
  background-color: #156060;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}

.copyright-info {
  width: auto !important;
  margin: 0 !important;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.copyright-info p {
  margin: 0;
  white-space: nowrap;
}

@media only screen and (max-width: 48rem) {
  .subfooter {
    padding: 0.4rem 0.5rem !important;
    justify-content: flex-start;
  }

  .subfooter-container {
    justify-content: flex-start !important;
    width: fit-content !important;
    margin-left: 0;
    margin-right: auto;
    padding: 0.32rem 0.65rem;
  }

  .copyright-info {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 0.2rem;
  }
}

/* Footer main area left-anchored */
.footer-container {
  justify-content: flex-start !important;
  align-items: flex-start;
}

.footer-logo,
.footer-contact-info,
.footer-social-med {
  align-self: flex-start !important;
}

/* Footer redesign v2: unified responsive behavior */
footer {
  background: linear-gradient(180deg, #1c7c7d 0%, #156060 100%) !important;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
  color: #f4efe6;
  padding: 1.15rem 1.25rem !important;
}

footer .footer-container {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: start;
  justify-content: stretch !important;
}

footer .footer-logo {
  margin: 0;
}

footer .footer-logo img,
footer .footer-logo .footer-logo-pic {
  width: 58px !important;
  height: auto;
}

footer .footer-contact-info {
  width: 100%;
}

footer .footer-contact-info ul {
  margin: 0;
  padding: 0;
}

footer .footer-contact-info ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding-top: 0.28rem;
  font-size: 0.78rem !important;
  line-height: 1.35;
}

footer .footer-contact-info img {
  width: 11px !important;
  margin-right: 0 !important;
  margin-top: 0.13rem;
}

footer .footer-social-med {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.42rem;
}

footer .footer-social-med img,
footer .social-med-button {
  width: 21px !important;
  height: 21px;
  filter: invert(88%);
  transition: transform 0.2s ease, filter 0.2s ease;
}

footer .footer-social-med img:hover,
footer .social-med-button:hover {
  transform: translateY(-1px);
  filter: invert(100%);
  width: 21px !important;
}

.subfooter {
  background: transparent !important;
  padding: 0.5rem 1.25rem !important;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  display: flex !important;
  justify-content: center;
}

.subfooter .subfooter-container {
  width: fit-content !important;
  max-width: 100%;
  margin: 0 auto !important;
  display: inline-flex !important;
  justify-content: flex-start !important;
  align-items: center;
  background: #124f4f !important;
  padding: 0.42rem 0.9rem !important;
  border-radius: 999px !important;
}

.subfooter .copyright-info {
  margin: 0 !important;
  width: auto !important;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  row-gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  color: #f4efe6;
  font-size: 0.72rem !important;
  padding: 0 !important;
}

.subfooter .copyright-info p {
  margin: 0;
  line-height: 1.35;
  white-space: normal;
}

@media only screen and (max-width: 64rem) {
  footer {
    padding: 1rem !important;
  }

  footer .footer-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  footer .footer-logo,
  footer .footer-contact-info,
  footer .footer-social-med {
    justify-self: start;
    align-self: start !important;
  }

  footer .footer-logo img,
  footer .footer-logo .footer-logo-pic {
    width: 52px !important;
  }

  footer .footer-contact-info ul li {
    font-size: 0.73rem !important;
  }

  .subfooter {
    padding: 0.48rem 1rem !important;
    justify-content: center;
  }

  .subfooter .subfooter-container {
    width: fit-content !important;
    padding: 0.38rem 0.78rem !important;
  }

  .subfooter .copyright-info {
    font-size: 0.66rem !important;
    flex-wrap: wrap;
    row-gap: 0.2rem;
  }
}

@media only screen and (max-width: 48rem) {
  footer {
    padding: 0.85rem 0.85rem !important;
  }

  footer .footer-social-med img,
  footer .social-med-button {
    width: 19px !important;
    height: 19px;
  }

  .subfooter {
    padding: 0.42rem 0.85rem !important;
    justify-content: center;
  }

  .subfooter .subfooter-container {
    width: fit-content !important;
    padding: 0.34rem 0.7rem !important;
  }

  .subfooter .copyright-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.62rem !important;
  }
}

/* Remove legacy hamburger behavior entirely */
nav.site-nav .nav-toggle,
nav.site-nav .nav-toggle-btn,
nav.site-nav .checkbtn.nav-toggle-btn {
  display: none !important;
}

/* Final mobile menu visibility override */
@media only screen and (max-width: 64rem) {
  nav.site-nav .nav-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    inset: auto !important;
    float: none !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0.35rem 0 0.55rem !important;
    display: flex !important;
    flex-wrap: wrap;
    overflow: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    background: transparent !important;
    z-index: auto !important;
  }

  nav.site-nav .nav-menu li {
    display: inline-flex !important;
    margin: 0 !important;
  }

  nav.site-nav .nav-menu a {
    font-size: 0.9rem;
    padding: 0.38rem 0.58rem;
    background: rgba(21, 96, 96, 0.45);
  }
}

/* Absolute final nav fallback: always show menu, ignore legacy hamburger rules */
nav.site-nav > ul.nav-menu {
  position: static !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  background: transparent !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.35rem !important;
  z-index: auto !important;
}

nav.site-nav > ul.nav-menu > li {
  display: inline-flex !important;
  line-height: 1.2 !important;
  margin: 0 !important;
}

nav.site-nav > ul.nav-menu > li > a {
  display: inline-block !important;
  color: #f4efe6 !important;
}

@media only screen and (max-width: 64rem) {
  nav.site-nav > ul.nav-menu {
    width: 100% !important;
    padding: 0.35rem 0 0.55rem !important;
  }

  nav.site-nav > ul.nav-menu > li > a {
    font-size: 0.9rem !important;
    padding: 0.38rem 0.58rem !important;
    background: rgba(21, 96, 96, 0.45) !important;
  }
}

/* Final nav mode: desktop logo is a home link, mobile logo toggles dropdown */
nav.site-nav .logo-menu-toggle {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

nav.site-nav .logo-desktop {
  display: inline-flex !important;
}

nav.site-nav .logo-mobile-toggle {
  display: none !important;
  cursor: pointer;
}

@media only screen and (max-width: 64rem) {
  nav.site-nav {
    align-items: center;
    padding-top: 0.2rem;
  }

  nav.site-nav .logo-desktop {
    display: none !important;
  }

  nav.site-nav .logo-mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    margin: 0.1rem 0 0.3rem 0.25rem;
  }

  nav.site-nav > ul.nav-menu {
    display: none !important;
    width: 100% !important;
    padding: 0.4rem 0 0.7rem !important;
    background: rgba(44, 62, 80, 0.86) !important;
    border-radius: 0.5rem;
  }

  nav.site-nav .logo-menu-toggle:checked ~ ul.nav-menu {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.35rem !important;
  }

  nav.site-nav > ul.nav-menu > li > a {
    background: rgba(21, 96, 96, 0.45) !important;
  }
}

/* Compact mobile/tablet dropdown (final override) */
@media only screen and (max-width: 64rem) {
  nav.site-nav {
    flex-wrap: wrap !important;
    align-items: center;
  }

  nav.site-nav > ul.nav-menu {
    order: 3;
    display: none !important;
    width: min(92vw, 20rem) !important;
    max-height: 14rem !important;
    overflow-y: auto !important;
    margin: 0.2rem 0 0.55rem 0.25rem !important;
    padding: 0.45rem !important;
    border-radius: 0.65rem !important;
    background: rgba(44, 62, 80, 0.86) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    gap: 0.3rem !important;
  }

  nav.site-nav .logo-menu-toggle:checked ~ ul.nav-menu {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  nav.site-nav > ul.nav-menu > li {
    display: block !important;
    width: 100%;
  }

  nav.site-nav > ul.nav-menu > li > a {
    display: block !important;
    width: 100%;
    padding: 0.45rem 0.55rem !important;
    font-size: 0.88rem !important;
    border-radius: 0.4rem;
    background: rgba(21, 96, 96, 0.45) !important;
  }
}

@keyframes logoShrinkBounce {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@media only screen and (min-width: 64.0625rem) {
  nav.site-nav .logo-desktop {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  nav.site-nav .logo-desktop:hover,
  nav.site-nav .logo-desktop:focus-visible,
  nav.site-nav .logo-desktop.active {
    background: transparent !important;
    color: inherit !important;
  }

  nav.site-nav .logo-desktop:hover img,
  nav.site-nav .logo-desktop:focus-visible img {
    animation: logoShrinkBounce 0.28s ease-in-out;
  }
}

/* Final stable nav (Hostinger-safe): no toggle, no duplicate logo, always-visible menu */
nav.site-nav .logo-desktop,
nav.site-nav .logo-mobile-toggle,
nav.site-nav .logo-menu-toggle,
nav.site-nav .nav-toggle,
nav.site-nav .nav-toggle-btn,
nav.site-nav .checkbtn.nav-toggle-btn {
  display: none !important;
}

nav.site-nav .logo.logo-link {
  display: inline-flex !important;
  align-items: center;
}

nav.site-nav .logo.logo-link,
nav.site-nav .logo.logo-link:hover,
nav.site-nav .logo.logo-link:focus-visible,
nav.site-nav .logo.logo-link.active {
  background: transparent !important;
  box-shadow: none !important;
  outline: none;
}

nav.site-nav .logo.logo-link:hover img,
nav.site-nav .logo.logo-link:focus-visible img {
  animation: logoShrinkBounce 0.28s ease-in-out;
}

nav.site-nav > ul.nav-menu {
  position: static !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.35rem !important;
  background: transparent !important;
}

nav.site-nav > ul.nav-menu > li {
  display: inline-flex !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

nav.site-nav > ul.nav-menu > li > a {
  display: inline-block !important;
  color: #f4efe6 !important;
}

@media only screen and (max-width: 64rem) {
  nav.site-nav {
    flex-wrap: wrap !important;
    align-items: center;
    padding-top: 0.2rem;
  }

  nav.site-nav > ul.nav-menu {
    width: 100% !important;
    padding: 0.35rem 0 0.55rem !important;
    gap: 0.3rem !important;
  }

  nav.site-nav > ul.nav-menu > li > a {
    font-size: 0.88rem !important;
    padding: 0.38rem 0.58rem !important;
    background: rgba(21, 96, 96, 0.45) !important;
    border-radius: 0.4rem;
  }
}

/* Hostinger-safe final desktop fixes */
@media only screen and (min-width: 64.0625rem) {
  nav.site-nav {
    padding-left: clamp(1.2rem, 3vw, 2.2rem) !important;
    padding-right: clamp(1rem, 2vw, 1.7rem) !important;
  }

  nav.site-nav .logo.logo-link {
    margin-left: 0.3rem !important;
    padding: 0 !important;
    line-height: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  nav.site-nav .logo.logo-link:hover,
  nav.site-nav .logo.logo-link:focus,
  nav.site-nav .logo.logo-link:focus-visible,
  nav.site-nav .logo.logo-link:active {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
  }

  nav.site-nav .logo.logo-link img {
    display: block;
  }

  .subfooter {
    display: flex !important;
    justify-content: center !important;
    background: transparent !important;
    padding: 0.5rem 1.25rem !important;
  }

  .subfooter .subfooter-container {
    display: inline-flex !important;
    width: fit-content !important;
    max-width: max-content !important;
    margin: 0 auto !important;
    padding: 0.42rem 0.9rem !important;
    border-radius: 999px !important;
    background: #124f4f !important;
  }

  .subfooter .copyright-info {
    width: auto !important;
    max-width: max-content !important;
    white-space: nowrap;
  }
}

/* Hostinger lock: final authoritative desktop nav/footer fix */
@media only screen and (min-width: 64.0625rem) {
  nav.site-nav {
    padding-left: 1.6rem !important;
  }

  nav.site-nav a.logo.logo-link,
  nav.site-nav a.logo.logo-link:hover,
  nav.site-nav a.logo.logo-link:focus,
  nav.site-nav a.logo.logo-link:focus-visible,
  nav.site-nav a.logo.logo-link:active {
    display: block !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0.1rem 0 0 0.35rem !important;
    line-height: 0 !important;
  }

  nav.site-nav a.logo.logo-link::before,
  nav.site-nav a.logo.logo-link::after {
    content: none !important;
    display: none !important;
  }

  nav.site-nav a.logo.logo-link img {
    display: block !important;
  }

  .subfooter {
    justify-content: center !important;
  }

  .subfooter > .subfooter-container {
    width: fit-content !important;
    max-width: fit-content !important;
    margin: 0 auto !important;
    display: inline-flex !important;
    padding: 0.45rem 0.95rem !important;
    border-radius: 999px !important;
  }

  .subfooter > .subfooter-container > .copyright-info {
    width: fit-content !important;
    max-width: fit-content !important;
    white-space: nowrap !important;
    margin: 0 !important;
  }
}

/* Absolute final mobile/tablet nav hard reset */
@media only screen and (max-width: 64rem) {
  nav.site-nav {
    position: relative !important;
    min-height: 72px !important;
    padding: 0 0.85rem !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.5rem;
    overflow: hidden !important;
  }

  nav.site-nav .logo.logo-link {
    flex: 0 0 auto;
    margin: 0 !important;
  }

  nav.site-nav .logo.logo-link img {
    width: 52px !important;
    height: 52px !important;
  }

  nav.site-nav > ul.nav-menu {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    float: none !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    width: auto !important;
    height: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.28rem !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    pointer-events: auto !important;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-overflow-scrolling: touch;
  }

  nav.site-nav > ul.nav-menu > li {
    display: inline-flex !important;
    width: auto !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    flex: 0 0 auto;
  }

  nav.site-nav > ul.nav-menu > li > a {
    display: inline-block !important;
    width: auto !important;
    white-space: nowrap !important;
    font-size: 0.82rem !important;
    padding: 0.32rem 0.45rem !important;
    border-radius: 0.35rem !important;
    background: rgba(21, 96, 96, 0.45) !important;
  }
}

/* Ensure FAQ heading is always readable on dark background */
.faq .text-blk.heading,
.faq p.text-blk.heading {
  color: #f4efe6 !important;
}

/* Contact form mobile overflow fix */
@media only screen and (max-width: 64rem) {
  #contact-1388 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    overflow-x: clip;
  }

  #contact-1388 .cs-container {
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 1.1rem !important;
  }

  #contact-1388 .cs-content,
  #contact-1388 .cs-form {
    width: 100% !important;
    max-width: 100% !important;
  }

  #contact-1388 .cs-content {
    padding-top: 0.5rem !important;
  }

  #contact-1388 .cs-form {
    padding: 1rem !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }

  #contact-1388 .cs-label,
  #contact-1388 .cs-input,
  #contact-1388 .cs-textarea,
  #contact-1388 .cs-submit {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
}

@media only screen and (max-width: 48rem) {
  #contact-1388 {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  #contact-1388 .cs-form {
    padding: 0.9rem !important;
    border-radius: 0.8rem;
  }
}

/* Final mobile nav layout fix: keep menu inside navbar, no vertical overlap */
@media only screen and (max-width: 64rem) {
  nav.site-nav {
    min-height: 72px;
    padding: 0 0.8rem !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    overflow: hidden;
  }

  nav.site-nav .logo.logo-link {
    margin: 0 0.35rem 0 0 !important;
    flex: 0 0 auto;
  }

  nav.site-nav .logo.logo-link img {
    width: 52px;
    height: 52px;
  }

  nav.site-nav > ul.nav-menu {
    width: auto !important;
    margin-left: auto !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    gap: 0.26rem !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  nav.site-nav > ul.nav-menu > li > a {
    white-space: nowrap;
    font-size: 0.82rem !important;
    padding: 0.32rem 0.45rem !important;
    border-radius: 0.35rem;
  }
}

/* Ensure FAQ title is visible on dark background */
.faq .text-blk.heading {
  color: #f4efe6 !important;
}
