/*
.portfolio-grid {
  @include responsive-grid(1, 2, 3, 2rem);
}

.card {
  @include hover-lift(8px);
}

.hero-image {
  @include aspect-ratio(16, 9);
}

.mobile-only {
  @include respond-below('sm') {
    display: block;
  }

  @include respond-to('sm') {
    display: none;
  }
}

.tablet-only {
  @include respond-between('sm', 'lg') {
    display: block;
  }
}

.visually-hidden-text {
  @include visually-hidden;
}

button:focus {
  @include focus-styles();
}
*/
/* _reset.scss */
/* A simple CSS reset */
/* Set box-sizing to border-box for all elements */
html {
  box-sizing: border-box;
}

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Corporative";
  src: url("../fonts/Corporative/Corporative-Regular.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Corporative";
  src: url("../fonts/Corporative/corporative-medium.woff2") format("woff2"), url("../fonts/Corporative/corporative-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Corporative";
  src: url("../fonts/Corporative/corporative-bold.woff2") format("woff2"), url("../fonts/Corporative/corporative-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Corporative";
  src: url("../fonts/Corporative/corporative-sans-alt-black.woff2") format("woff2"), url("../fonts/Corporative/corporative-sans-alt-black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* Set box-sizing to border-box for all elements */
html {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100vw;
  font-family: "Corporative", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif, sans-serif;
  background-color: #f5f5f5;
}

.site-main {
  padding-top: 100px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Optional: Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

h1 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 400;
  word-wrap: break-word;
}

h2 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 400;
  word-wrap: break-word;
}

h3 {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 400;
  word-wrap: break-word;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  word-wrap: break-word;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  word-wrap: break-word;
}

h6 {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  word-wrap: break-word;
}

p {
  margin: 0;
  padding: 0;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1300;
  display: flex;
  justify-content: space-evenly;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.site-header__container {
  max-width: 1400px;
  width: 100%;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .site-header__container {
    padding: 0 15px;
  }
}
.site-header.header-active {
  background-color: #ffffff;
}
.site-header.header-active .site-header__container {
  height: 80px !important;
}
.site-header.header-active .logo a svg {
  transform: scale(1);
}

.logo a {
  display: block;
  line-height: 0;
}
.logo a svg {
  height: 40px;
  width: auto;
  transform: scale(1.3);
  transform-origin: left center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .logo a svg {
    height: 35px;
  }
}

.nav-area {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 30px;
}
.nav-area .desktop-nav-holder {
  display: block;
}

.main-navigation {
  display: flex;
  justify-content: space-evenly;
}
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
}
.main-navigation .menu {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.main-navigation ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.main-navigation ul li a {
  color: #1c0000;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  word-wrap: break-word;
  transition: color 0.3s ease;
}

.sign-up-button {
  display: block;
  width: 150px;
  margin-left: 40px;
  position: relative;
  margin-top: -3px;
}
.sign-up-button .button {
  padding: 12px 24px 15px;
  display: block;
  width: 150px;
  color: #1c0000;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  background-color: #fac21f;
  border-radius: 100px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
.hamburger-line {
  width: 20px;
  height: 3px;
  background: #1c0000;
  margin: 2px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger-line:first-child {
  width: 14px;
}
.hamburger.active .hamburger-line:first-child {
  transform: rotate(45deg) translate(4px, 4px);
  width: 20px;
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:last-child {
  transform: rotate(-45deg) translate(5.5px, -6px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1298;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fac21f;
  padding: 100px 0 30px;
  transition: right 0.3s ease;
  z-index: 1299;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu li {
  border-bottom: 1px solid #d19161;
}
.mobile-menu .mobile-navigation a {
  text-decoration: none;
  display: block;
  padding: 15px 40px;
  color: #1c0000;
  font-size: 28px;
  font-weight: 700;
  line-height: 44px;
  word-wrap: break-word;
  transition: color 0.3s ease;
  position: relative;
}
.mobile-menu .mobile-navigation a:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 22px;
  position: absolute;
  right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='22' viewBox='0 0 14 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.42648 2L11.5519 11.1254L2.42648 20.2508' stroke='black' stroke-width='3' stroke-miterlimit='10' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.mobile-menu .holder {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu .nav-footer .top {
  display: flex;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  gap: 20px;
  margin-bottom: 20px;
}
.mobile-menu .nav-footer .nav-footer-text {
  text-align: right;
}
.mobile-menu .nav-footer .nav-footer-text span {
  color: #1c0000;
  font-size: 14.05px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 21.07px;
  letter-spacing: 2.81px;
  word-wrap: break-word;
  display: block;
}
.mobile-menu .nav-footer .nav-footer-text .highlight {
  background-color: #ffffff;
  padding: 2px 8px;
  position: relative;
  margin-right: -8px;
}
.mobile-menu .nav-footer .bottom {
  border-top: 1px solid #d19161;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu .nav-footer .bottom .copyright {
  color: #1c0000;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 14px;
  letter-spacing: 2px;
  word-wrap: break-word;
}
.mobile-menu .nav-footer .bottom a {
  color: #1c0000;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-transform: uppercase;
  line-height: 14px;
  letter-spacing: 2px;
  word-wrap: break-word;
}

.mobile-sign-up {
  margin-top: 30px;
}
.mobile-sign-up .button {
  background: #fac21f;
  color: #1c0000;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  display: block;
  text-align: center;
  transition: all 0.3s ease;
}

.header-nav-active {
  background-color: #fac21f;
}
.header-nav-active .site-header__container {
  height: 80px;
}
.header-nav-active .logo {
  opacity: 0;
}
.header-nav-active .sign-up-button span {
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .site-header__container {
    height: 80px !important;
  }
  .sign-up-button {
    display: block;
    width: 150px;
    margin-left: 80px;
  }
  .sign-up-button a,
  .sign-up-button .button {
    padding: 8px 15px;
    display: block;
    width: 130px;
    color: #1c0000;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    background-color: #fac21f;
    border-radius: 100px;
    text-align: center;
    transition: all 0.3s ease;
  }
}
@media (max-width: 468px) {
  .site-header__container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .site-header__container {
    max-width: 100vw;
    width: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
  }
  .site-header .logo a svg {
    transform: scale(1) !important;
  }
  .site-header .sign-up-button {
    display: block;
    width: 60px;
    margin-left: -20px;
  }
  .site-header .sign-up-button a,
  .site-header .sign-up-button .button {
    padding: 8px 15px;
    display: block;
    width: 100px;
  }
}
.footer {
  position: relative;
  z-index: 1010;
  background-color: #f5f5f5;
}
.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: no-wrap;
  padding: 60px 0;
}
.footer__headline {
  margin-bottom: 20px;
  text-align: right;
  color: #1c0000;
  font-size: 27px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 5px;
  word-wrap: break-word;
}
.footer__headline .highlight {
  background-color: #fac21f;
  display: inline-block;
  padding: 3px 10px;
  margin-right: -10px;
  margin-top: 5px;
}
.footer__bottom {
  border-top: 2px solid #d9d9de;
  padding-top: 15px;
  padding-bottom: 50px;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
}
.footer__copyright p {
  color: #1c0000;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 14px;
  letter-spacing: 2px;
  word-wrap: break-word;
}
.footer__legal-link {
  color: #1c0000;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-transform: uppercase;
  line-height: 14px;
  letter-spacing: 2px;
  word-wrap: break-word;
}

@media (max-width: 480px) {
  .footer__content {
    flex-wrap: wrap;
  }
  .footer__headline {
    margin-bottom: 20px;
    margin-top: 20px;
    text-align: center;
    color: #1c0000;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 26px;
    letter-spacing: 5px;
    word-wrap: break-word;
  }
  .footer__headline .highlight {
    background-color: #fac21f;
    display: inline-block;
    padding: 3px 10px;
    margin-right: 0px;
  }
}
.contact-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.contact-modal-overlay.active {
  display: flex;
}

/* Modal Container */
.contact-modal {
  background: #f6e8bf !important;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10000;
  pointer-events: auto;
}

.contact-modal-overlay.active .contact-modal {
  transform: scale(1);
  opacity: 1;
}

/* Close Button */
.contact-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fac21f;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10001;
  line-height: 18px;
  pointer-events: auto;
}
.contact-modal-close svg {
  height: 15px;
  pointer-events: none;
}

.contact-modal-close:hover {
  background: #e0e0e0;
  color: #333;
}

/* Modal Content */
.contact-modal-content {
  padding: 30px;
  padding-top: 60px; /* Space for close button */
  position: relative;
  z-index: 10000;
  pointer-events: auto;
}

.contact-modal-header {
  margin-bottom: 25px;
  text-align: center;
}

.contact-modal-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px 0;
}

.contact-modal-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Form Container */
.contact-modal-form {
  position: relative;
  z-index: 10000;
  pointer-events: auto;
}
.contact-modal-form .gform_wrapper {
  position: relative;
  z-index: 10000;
  /* Consent Checkboxes */
  /* Submit Button */
  /* Hide honeypot field */
  /* Form footer alignment */
  /* Responsive adjustments */
}
.contact-modal-form .gform_wrapper input[type=text],
.contact-modal-form .gform_wrapper input[type=email],
.contact-modal-form .gform_wrapper input[type=tel],
.contact-modal-form .gform_wrapper input[type=number] {
  background: #ffffff !important;
  border: 3px solid transparent !important;
  border-radius: 15px !important;
  height: 50px;
  font-size: 16px !important;
  color: #1c0000 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: center;
  position: relative;
  z-index: 9999;
  pointer-events: auto !important;
  padding: 15px !important;
  /* Focus state for inputs */
  /* Placeholder styling */
}
.contact-modal-form .gform_wrapper input[type=text]:focus,
.contact-modal-form .gform_wrapper input[type=email]:focus,
.contact-modal-form .gform_wrapper input[type=tel]:focus,
.contact-modal-form .gform_wrapper input[type=number]:focus {
  outline: none !important;
  border-color: #fac21f !important;
}
.contact-modal-form .gform_wrapper input[type=text]::placeholder,
.contact-modal-form .gform_wrapper input[type=email]::placeholder,
.contact-modal-form .gform_wrapper input[type=tel]::placeholder,
.contact-modal-form .gform_wrapper input[type=number]::placeholder {
  color: transparent !important;
  font-weight: normal !important;
}
.contact-modal-form .gform_wrapper .gform_fields {
  row-gap: 30px !important;
  position: relative;
  z-index: 10000;
}
.contact-modal-form .gform_wrapper .gfield {
  position: relative;
  z-index: 10000;
  pointer-events: auto;
}
.contact-modal-form .gform_wrapper .gfield .gfield_label {
  color: #1c0000;
  position: absolute;
  text-align: center !important;
  left: 0;
  right: 0;
  top: 15px;
  display: block !important;
  pointer-events: none !important;
  z-index: 10000 !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: transparent !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contact-modal-form .gform_wrapper .active .gfield_label {
  color: #1c0000;
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  display: block !important;
  pointer-events: none !important;
  z-index: 10000 !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: transparent !important;
}
.contact-modal-form .gform_wrapper .gfield--type-consent {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  z-index: 10000;
  pointer-events: auto;
}
.contact-modal-form .gform_wrapper .gfield--type-consent .ginput_container {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  pointer-events: auto;
}
.contact-modal-form .gform_wrapper .gfield--type-consent input[type=checkbox] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  pointer-events: auto !important;
  z-index: 10001;
  position: relative;
}
.contact-modal-form .gform_wrapper .gfield--type-consent .gfield_consent_label {
  color: #1c0000 !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  display: block !important;
  pointer-events: auto;
  cursor: pointer;
}
.contact-modal-form .gform_wrapper .gfield--type-consent .gfield_consent_description {
  color: #1c0000 !important;
  font-size: 12px !important;
  margin-top: 0px !important;
  line-height: 1.3 !important;
  margin-left: 28px !important; /* Align with checkbox text */
  border: 0px solid transparent !important;
  padding: 0px;
  pointer-events: auto;
}
.contact-modal-form .gform_wrapper input[type=submit] {
  background: #fac21f !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 15px 50px !important;
  color: #1c0000 !important;
  font-size: 20px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
  margin-top: 20px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  min-width: 150px !important;
  position: relative;
  z-index: 10001;
  pointer-events: auto !important;
}
.contact-modal-form .gform_wrapper .gform_validation_container {
  display: none !important;
}
.contact-modal-form .gform_wrapper .gform_footer {
  text-align: center !important;
  padding-top: 20px !important;
  align-items: center !important;
  position: relative;
  z-index: 10000;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .contact-modal-form .gform_wrapper {
    padding: 20px;
  }
  .contact-modal-form .gform_wrapper input[type=text],
  .contact-modal-form .gform_wrapper input[type=email],
  .contact-modal-form .gform_wrapper input[type=tel],
  .contact-modal-form .gform_wrapper input[type=number] {
    padding: 12px 15px !important;
    font-size: 14px !important;
  }
  .contact-modal-form .gform_wrapper input[type=submit] {
    padding: 12px 30px !important;
    font-size: 16px !important;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-modal {
    width: 95%;
    margin: 20px;
  }
  .contact-modal-content {
    padding: 20px;
    padding-top: 50px;
  }
  .contact-modal-title {
    font-size: 24px;
  }
}
/* Animation for smooth opening */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Hide scrollbar when modal is open */
body.modal-open {
  overflow: hidden;
}

.contact-form-cta {
  background-color: #1c0000;
  position: relative;
  z-index: 1010;
}
.contact-form-cta .background-holder {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.contact-form-cta .container {
  max-width: 700px;
  margin: 0 auto;
  padding: 80px 30px 140px;
}
.contact-form-cta .container .title {
  width: 100%;
  text-align: center;
}
.contact-form-cta .container .title h3 {
  background-color: #fac21f;
  color: #1c0000;
  font-size: 28px;
  font-weight: 900;
  line-height: 24px;
  letter-spacing: 5.6px;
  display: inline-block;
  text-transform: uppercase;
  padding: 5px 10px;
}
.contact-form-cta .container .text {
  text-align: center;
  padding-top: 30px;
}
.contact-form-cta .container .text p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  word-wrap: break-word;
}
.contact-form-cta .container .form {
  padding-top: 30px;
}
.contact-form-cta .container .form .gform_wrapper {
  /* Consent Checkboxes */
  /* Submit Button */
  /* Hide honeypot field */
  /* Form footer alignment */
  /* Responsive adjustments */
}
.contact-form-cta .container .form .gform_wrapper input[type=text],
.contact-form-cta .container .form .gform_wrapper input[type=email],
.contact-form-cta .container .form .gform_wrapper input[type=tel],
.contact-form-cta .container .form .gform_wrapper input[type=number] {
  background: #ffffff !important;
  border: 3px solid transparent !important;
  border-radius: 15px !important;
  height: 50px;
  font-size: 16px !important;
  color: #1c0000 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: center;
  /* Focus state for inputs */
  /* Placeholder styling */
}
.contact-form-cta .container .form .gform_wrapper input[type=text]:focus,
.contact-form-cta .container .form .gform_wrapper input[type=email]:focus,
.contact-form-cta .container .form .gform_wrapper input[type=tel]:focus,
.contact-form-cta .container .form .gform_wrapper input[type=number]:focus {
  outline: none !important;
  border-color: #fac21f !important;
}
.contact-form-cta .container .form .gform_wrapper input[type=text]::placeholder,
.contact-form-cta .container .form .gform_wrapper input[type=email]::placeholder,
.contact-form-cta .container .form .gform_wrapper input[type=tel]::placeholder,
.contact-form-cta .container .form .gform_wrapper input[type=number]::placeholder {
  color: #999 !important;
  font-weight: normal !important;
}
.contact-form-cta .container .form .gform_wrapper .gform_fields {
  row-gap: 30px !important;
}
.contact-form-cta .container .form .gform_wrapper .gfield {
  position: relative;
}
.contact-form-cta .container .form .gform_wrapper .gfield .gfield_label {
  color: #1c0000;
  position: absolute;
  text-align: center !important;
  left: 0;
  right: 0;
  top: 15px;
  display: block !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contact-form-cta .container .form .gform_wrapper .active .gfield_label {
  color: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  display: block !important;
}
.contact-form-cta .container .form .gform_wrapper .gfield--type-consent {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}
.contact-form-cta .container .form .gform_wrapper .gfield--type-consent .ginput_container {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}
.contact-form-cta .container .form .gform_wrapper .gfield--type-consent input[type=checkbox] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}
.contact-form-cta .container .form .gform_wrapper .gfield--type-consent .gfield_consent_label {
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  display: block !important;
}
.contact-form-cta .container .form .gform_wrapper .gfield--type-consent .gfield_consent_description {
  color: #ffffff !important;
  font-size: 12px !important;
  margin-top: 0px !important;
  line-height: 1.3 !important;
  margin-left: 28px !important; /* Align with checkbox text */
  border: 0px solid transparent !important;
  padding: 0px;
}
.contact-form-cta .container .form .gform_wrapper input[type=submit] {
  background: #fac21f !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 15px 50px !important;
  color: #1c0000 !important;
  font-size: 20px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
  margin-top: 20px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  min-width: 150px !important;
}
.contact-form-cta .container .form .gform_wrapper .gform_validation_container {
  display: none !important;
}
.contact-form-cta .container .form .gform_wrapper .gform_footer {
  text-align: center !important;
  padding-top: 20px !important;
  align-items: center !important;
}
@media (max-width: 768px) {
  .contact-form-cta .container .form .gform_wrapper {
    padding: 20px;
  }
  .contact-form-cta .container .form .gform_wrapper input[type=text],
  .contact-form-cta .container .form .gform_wrapper input[type=email],
  .contact-form-cta .container .form .gform_wrapper input[type=tel],
  .contact-form-cta .container .form .gform_wrapper input[type=number] {
    padding: 12px 15px !important;
    font-size: 14px !important;
  }
  .contact-form-cta .container .form .gform_wrapper input[type=submit] {
    padding: 12px 30px !important;
    font-size: 16px !important;
  }
}
.contact-form-cta .container .title,
.contact-form-cta .container .text,
.contact-form-cta .container .form {
  opacity: 0;
}
.contact-hero-banner {
  padding-top: 200px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.contact-hero-banner .hero-content {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.contact-hero-banner .hero-content .hero-icon {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  font-size: 2rem;
  position: relative;
}
.contact-hero-banner .hero-content .hero-icon img {
  width: 100%;
  height: 100%;
  position: relative;
  margin-left: -40px;
}
.contact-hero-banner .hero-content .hero-title {
  color: #1c0000;
  margin-bottom: 1rem;
  font-size: 44px;
  font-weight: 700;
  line-height: 44px;
  word-wrap: break-word;
  max-width: 420px;
}
.contact-hero-banner .hero-content .hero-subtitle {
  color: #1c0000;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  word-wrap: break-word;
  max-width: 420px;
  padding-bottom: 20px;
}
.contact-hero-banner .form {
  width: 50%;
  padding-top: 30px;
  padding-bottom: 60px;
}
.contact-hero-banner .form .gform_wrapper {
  /* Consent Checkboxes */
  /* Submit Button */
  /* Hide honeypot field */
  /* Form footer alignment */
  /* Responsive adjustments */
}
.contact-hero-banner .form .gform_wrapper input[type=text],
.contact-hero-banner .form .gform_wrapper input[type=email],
.contact-hero-banner .form .gform_wrapper input[type=tel],
.contact-hero-banner .form .gform_wrapper input[type=number] {
  background: #d9d9de !important;
  border: 3px solid transparent !important;
  border-radius: 15px !important;
  height: 50px;
  font-size: 16px !important;
  color: #1c0000 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: center;
  /* Focus state for inputs */
  /* Placeholder styling */
}
.contact-hero-banner .form .gform_wrapper input[type=text]:focus,
.contact-hero-banner .form .gform_wrapper input[type=email]:focus,
.contact-hero-banner .form .gform_wrapper input[type=tel]:focus,
.contact-hero-banner .form .gform_wrapper input[type=number]:focus {
  outline: none !important;
  border-color: #fac21f !important;
}
.contact-hero-banner .form .gform_wrapper input[type=text]::placeholder,
.contact-hero-banner .form .gform_wrapper input[type=email]::placeholder,
.contact-hero-banner .form .gform_wrapper input[type=tel]::placeholder,
.contact-hero-banner .form .gform_wrapper input[type=number]::placeholder {
  color: #999 !important;
  font-weight: normal !important;
}
.contact-hero-banner .form .gform_wrapper .gform_fields {
  row-gap: 30px !important;
}
.contact-hero-banner .form .gform_wrapper .gfield {
  position: relative;
}
.contact-hero-banner .form .gform_wrapper .gfield .gfield_label {
  color: #1c0000;
  position: absolute;
  text-align: center !important;
  left: 0;
  right: 0;
  top: 15px;
  display: block !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.contact-hero-banner .form .gform_wrapper .active .gfield_label {
  color: #1c0000;
  position: absolute;
  left: 0;
  right: 0;
  top: -22px;
  display: block !important;
}
.contact-hero-banner .form .gform_wrapper .gfield--type-consent {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}
.contact-hero-banner .form .gform_wrapper .gfield--type-consent .ginput_container {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}
.contact-hero-banner .form .gform_wrapper .gfield--type-consent input[type=checkbox] {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}
.contact-hero-banner .form .gform_wrapper .gfield--type-consent .gfield_consent_label {
  color: #1c0000 !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  display: block !important;
}
.contact-hero-banner .form .gform_wrapper .gfield--type-consent .gfield_consent_description {
  color: #1c0000 !important;
  font-size: 12px !important;
  margin-top: 0px !important;
  line-height: 1.3 !important;
  margin-left: 28px !important; /* Align with checkbox text */
  border: 0px solid transparent !important;
  padding: 0px;
}
.contact-hero-banner .form .gform_wrapper input[type=submit] {
  background: #fac21f !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 15px 50px !important;
  color: #1c0000 !important;
  font-size: 20px !important;
  font-weight: bold !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: none !important;
  margin-top: 20px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  display: block !important;
  min-width: 150px !important;
}
.contact-hero-banner .form .gform_wrapper .gform_validation_container {
  display: none !important;
}
.contact-hero-banner .form .gform_wrapper .gform_footer {
  text-align: center !important;
  padding-top: 20px !important;
  align-items: center !important;
}
@media (max-width: 768px) {
  .contact-hero-banner .form .gform_wrapper {
    padding: 20px;
  }
  .contact-hero-banner .form .gform_wrapper input[type=text],
  .contact-hero-banner .form .gform_wrapper input[type=email],
  .contact-hero-banner .form .gform_wrapper input[type=tel],
  .contact-hero-banner .form .gform_wrapper input[type=number] {
    padding: 12px 15px !important;
    font-size: 14px !important;
  }
  .contact-hero-banner .form .gform_wrapper input[type=submit] {
    padding: 12px 30px !important;
    font-size: 16px !important;
  }
}
.contact-hero-banner .hero-text {
  font-size: 1.1rem;
  color: #1c0000;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 420px;
}
.contact-hero-banner .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-hero-banner .hero-buttons .btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 3px solid;
  display: inline-block;
}
.contact-hero-banner .hero-buttons .btn-primary {
  background-color: #fac21f;
  color: #1c0000;
  border-color: #fac21f;
}
.contact-hero-banner .hero-buttons .btn-primary:hover {
  background-color: #fac21f;
  border-color: #fac21f;
}
.contact-hero-banner .hero-buttons .btn-outline {
  background-color: #ffffff;
  color: #1c0000;
  border-color: #fac21f;
}
.contact-hero-banner .hero-buttons .btn-outline:hover {
  background-color: #1c0000;
  color: #ffffff;
}
.contact-hero-banner .hero-image-section {
  position: relative;
  width: 60%;
}
.contact-hero-banner .hero-image-section .hero-image {
  width: 130%;
  max-width: 100vh;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.contact-hero-banner .callout-section {
  color: #1c0000;
  margin-top: 2rem;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 37px;
  letter-spacing: 3px;
  word-wrap: break-word;
}
.contact-hero-banner .callout-text-two {
  background-color: #fac21f;
  display: inline-block;
  padding: 3px 10px;
  margin-left: -10px;
}
@media (max-width: 768px) {
  .contact-hero-banner .hero-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1rem;
    gap: 2rem;
  }
  .contact-hero-banner .hero-title {
    font-size: 2.5rem;
  }
  .contact-hero-banner .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 1000px) {
  .hero-banner .text-area .text-holder {
    width: 80%;
  }
  .second-content-section .holder .title {
    max-width: 650px !important;
  }
  .hero-icon {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .callout-section {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .contact-hero-banner {
    padding-top: 200px;
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact-hero-banner .hero-content {
    width: 100%;
  }
  .contact-hero-banner .form {
    width: 100%;
  }
}
.hero-banner {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 100px;
  padding-top: 150px;
  flex-wrap: wrap;
  padding-left: 30px;
  padding-right: 30px;
}
.hero-banner .hero-content {
  display: flex;
  flex-direction: column;
  width: 40%;
}
.hero-banner .hero-content .hero-icon {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  font-size: 2rem;
  position: relative;
  will-change: transform, opacity;
}
.hero-banner .hero-content .hero-icon img {
  width: 100%;
  height: 100%;
  position: relative;
  margin-left: -40px;
}
.hero-banner .hero-content .hero-title {
  color: #1c0000;
  margin-bottom: 1rem;
  font-size: 44px;
  font-weight: 700;
  line-height: 44px;
  word-wrap: break-word;
  max-width: 420px;
}
.hero-banner .hero-content .hero-subtitle {
  color: #1c0000;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  word-wrap: break-word;
  max-width: 420px;
  padding-bottom: 20px;
}
.hero-banner .hero-text {
  font-size: 1.1rem;
  color: #1c0000;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 420px;
}
.hero-banner .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-banner .hero-buttons .btn {
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: 3px solid;
  display: inline-block;
}
.hero-banner .hero-buttons .btn-primary {
  background-color: #fac21f;
  color: #1c0000;
  border-color: #fac21f;
}
.hero-banner .hero-buttons .btn-primary:hover {
  background-color: #fac21f;
  border-color: #fac21f;
}
.hero-banner .hero-buttons .btn-outline {
  background-color: #ffffff;
  color: #1c0000;
  border-color: #fac21f;
}
.hero-banner .hero-buttons .btn-outline:hover {
  background-color: #1c0000;
  color: #ffffff;
}
.hero-banner .callout-section {
  color: #1c0000;
  margin-top: 2rem;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 37px;
  letter-spacing: 3px;
  word-wrap: break-word;
}
.hero-banner .callout-text-two {
  background-color: #fac21f;
  display: inline-block;
  padding: 3px 10px;
  margin-left: -10px;
}

.hero-image-section {
  position: relative;
  width: 60%;
}
.hero-image-section .hero-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.hero-image-section .mobile-image-holder {
  position: absolute;
  width: 100%;
  top: auto;
  bottom: -10%;
  display: flex;
  justify-content: center;
}
.hero-image-section .mobile-image-holder img {
  max-width: 230px;
}

@media (max-width: 768px) {
  .hero-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1rem;
    padding-top: 100px;
    padding-bottom: 50px;
    gap: 2rem;
  }
  .hero-banner .hero-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 1000px) {
  .hero-banner .text-area .text-holder {
    width: 80%;
  }
  .second-content-section .holder .title {
    max-width: 650px !important;
  }
  .hero-banner .hero-content {
    width: 100%;
  }
  .hero-banner .hero-image-section {
    width: 100%;
  }
  .hero-banner .hero-buttons {
    justify-content: center;
  }
  .hero-icon {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    font-size: 2rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-icon img {
    width: 100%;
    height: 100%;
    position: relative;
    margin-left: 0px !important;
  }
  .hero-title {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-image-section {
    position: relative;
    text-align: center;
    padding-top: 40px;
  }
  .hero-image-section .hero-image {
    width: 100%;
    max-width: 100vh;
    height: auto;
    border-radius: 20px;
  }
  .mobile-image-holder {
    position: absolute;
    width: 100%;
    top: auto;
    bottom: -10%;
    display: flex;
    justify-content: center;
  }
  .mobile-image-holder img {
    max-width: 150px !important;
  }
}
.tabbed-content {
  padding-top: 140px;
  padding-bottom: 80px;
  background-color: #f5f5f5;
  position: relative;
  z-index: 1010;
}
.tabbed-content .container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}
.tabbed-content .tabs-container {
  display: block;
  opacity: 0;
}
.tabbed-content .tabs-container .tab-list {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-bottom: 10px;
}
.tabbed-content .tabs-container .tab-button {
  flex: 1;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #1c0000;
  transition: all 0.3s ease;
  position: relative;
  background-color: #fac21f;
  text-align: left;
  border-radius: 13.5px;
}
.tabbed-content .tabs-container .tab-button .tab-button-inner {
  align-self: start;
  min-height: 90px;
}
.tabbed-content .tabs-container .tab-button .tab-button-title {
  color: #1c0000;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 18px;
  letter-spacing: 3.2px;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tabbed-content .tabs-container .tab-button p {
  color: #1c0000;
  font-size: 14px;
  font-family: Corporative;
  font-weight: 500;
  line-height: 19px;
  word-wrap: break-word;
}
.tabbed-content .tabs-container .tab-button::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  background-color: #fac21f;
  height: 60px;
  z-index: -1;
  transition: all 0.3s ease;
}
.tabbed-content .tabs-container .tab-button svg {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tabbed-content .tabs-container .tab-button.active {
  position: relative;
}
.tabbed-content .tabs-container .tab-button.active::after {
  bottom: -20px;
}
.tabbed-content .tabs-container .tab-button.active .tab-button-title svg {
  transform: rotate(180deg);
}
.tabbed-content .tabs-container .tab-content {
  display: none;
  padding: 0rem 1rem;
  min-height: 200px;
  background-color: #f6e8bf;
  border-radius: 15px;
  border: 1px solid #fac21f;
}
.tabbed-content .tabs-container .tab-content.active {
  display: block;
  animation: fadeIn 0.1s ease-in;
}
.tabbed-content .tabs-container .tab-content .tab-content-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tabbed-content .tabs-container .tab-content .tab-content-inner .left {
  width: 35%;
  padding: 20px 60px;
  text-align: center;
}
.tabbed-content .tabs-container .tab-content .tab-content-inner .left h3 {
  margin-bottom: 2rem;
  font-size: 44px;
  font-weight: 700;
  line-height: 44px;
  text-transform: capitalize;
  color: #1c0000;
  word-wrap: break-word;
}
.tabbed-content .tabs-container .tab-content .tab-content-inner .left .tab-main-content {
  margin-bottom: 1rem;
  color: #1c0000;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px !important;
  word-wrap: break-word;
}
.tabbed-content .tabs-container .tab-content .tab-content-inner .right {
  width: 60%;
}
.tabbed-content .tabs-container .tab-content .tab-content-inner .right .tab-image {
  margin: 1rem 0;
}
.tabbed-content .tabs-container .tab-content .tab-content-inner .right .tab-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
.tabbed-content .accordion-container {
  display: none;
  padding-left: 20px;
  padding-right: 20px;
}
.tabbed-content .accordion-container .accordion-item {
  margin-bottom: 10px;
}
.tabbed-content .accordion-container .accordion-item:last-child {
  border-bottom: none;
}
.tabbed-content .accordion-container .accordion-header {
  width: 100%;
  flex: 1;
  padding: 2rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #1c0000;
  transition: all 0.3s ease;
  position: relative;
  background-color: #fac21f;
  text-align: left;
  border-radius: 13.5px;
}
.tabbed-content .accordion-container .accordion-header .tab-button-title {
  color: #1c0000;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: 3.2px;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tabbed-content .accordion-container .accordion-header p {
  color: #1c0000;
  font-size: 16px;
  font-family: Corporative;
  font-weight: 500;
  line-height: 20px;
  word-wrap: break-word;
}
.tabbed-content .accordion-container .accordion-header::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  background-color: #f6e8bf;
  height: 40px;
  z-index: -1;
  transition: all 0.3s ease;
}
.tabbed-content .accordion-container .accordion-header.active {
  position: relative;
}
.tabbed-content .accordion-container .accordion-header.active::after {
  bottom: -10px;
}
.tabbed-content .accordion-container .accordion-header.active .tab-button-title svg {
  transform: rotate(180deg);
}
.tabbed-content .accordion-container .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.tabbed-content .accordion-container .accordion-content h3 {
  display: none;
}
.tabbed-content .accordion-container .accordion-content.active {
  max-height: 1000px;
}
.tabbed-content .accordion-container .accordion-content.active .accordion-content-inner {
  transform: translateY(0);
}
.tabbed-content .accordion-container .accordion-content-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 200px;
  background-color: #f6e8bf;
  border-radius: 15px;
}
.tabbed-content .accordion-container .accordion-content-inner .tab-main-content {
  margin-bottom: 1rem;
  color: #1c0000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px !important;
  word-wrap: break-word;
  text-align: center;
}
.tabbed-content .accordion-container .accordion-content-inner .tab-image {
  margin: 1rem 0;
}
.tabbed-content .accordion-container .accordion-content-inner .tab-image img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1000px) {
  .tabbed-content {
    padding-top: 20px;
  }
  .tabbed-content .tabs-container {
    display: none;
  }
  .tabbed-content .accordion-container {
    display: block;
  }
}
.tabbed-content .highlight {
  background: #fff3cd;
  padding: 1rem;
  border-radius: 6px;
  border-left: 4px solid #fac21f;
  margin: 1rem 0;
}

.icon-cta {
  background-color: #1c0000;
  position: relative;
  z-index: 1010;
}
.icon-cta .background-holder {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.icon-cta .container {
  display: grid;
  gap: 0;
  opacity: 0;
}
.icon-cta .header-title {
  grid-area: header;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 0px 20px;
}
.icon-cta .header-title h2 {
  color: #ffffff;
  font-size: 44px;
  font-weight: 700;
  line-height: 44px;
}
.icon-cta .sub-title {
  grid-area: tagline;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  color: #fac21f;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 5.6px;
  word-wrap: break-word;
  padding-top: 20px;
  padding-bottom: 20px;
}
.icon-cta .sub-title .sub-title-line {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.icon-cta .sub-title .sub-title-line-one {
  margin-bottom: 6px;
  width: 100%;
}
.icon-cta .no-title {
  padding-top: 100px;
}
.icon-cta .no-title .sub-title-line-one {
  margin-bottom: 10px;
}
.icon-cta .no-title .sub-title-line-two {
  background-color: #fac21f;
  color: #1c0000;
  padding: 3px 10px;
}
.icon-cta .icon-section {
  grid-area: icon;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.icon-cta .icon-section svg {
  width: 100%;
  position: absolute;
}
.icon-cta .content {
  grid-area: content;
  padding: 0px 20px 100px 20px;
}
.icon-cta .content .content-inner {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  max-width: 450px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.icon-cta .button-section {
  grid-area: button;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.icon-cta .about-btn {
  background-color: #ffffff;
  color: black;
  padding: 15px 50px;
  border: 3px solid #fac21f;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.icon-cta .about-btn:hover {
  background-color: #ffffff;
}
@media (min-width: 900px) {
  .icon-cta .container {
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas: "icon header button" "icon tagline button" "icon content button";
  }
}
@media (max-width: 899px) {
  .icon-cta .container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas: "header" "tagline" "icon" "content" "button";
  }
  .icon-cta .header {
    padding-top: 60px;
  }
  .icon-cta .icon-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .icon-cta .icon-section svg {
    width: clamp(50px, 5vw, 80px);
    position: relative;
  }
  .icon-cta .content {
    padding: 20px 30px;
  }
  .icon-cta .button-section {
    padding-bottom: 60px;
  }
  .icon-cta .about-btn {
    padding: 12px 30px;
  }
}

.image-block .container {
  text-align: center;
}
.image-block .container img {
  max-width: 220px;
}

.content-block-with-image {
  padding: 200px 0 80px;
}
.content-block-with-image .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.content-block-with-image .content-flex {
  display: flex;
  gap: 80px;
  align-items: center;
}
.content-block-with-image .content-flex .content-section {
  flex: 1;
  padding: 20px 0 20px 5%;
}
.content-block-with-image .content-flex .content-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c0000;
  margin-bottom: 24px;
  line-height: 1.2;
}
.content-block-with-image .content-flex .content-text {
  max-width: 400px;
  color: #1c0000;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  word-wrap: break-word;
}
.content-block-with-image .content-flex .image-section {
  flex: 1;
  position: relative;
}
.content-block-with-image .content-flex .image-wrapper {
  width: 100%;
}
.content-block-with-image .content-flex .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.content-block-with-image .order-1 {
  order: 1;
}
.content-block-with-image .order-2 {
  order: 2;
}

@media (max-width: 768px) {
  .content-block-with-image .content-flex {
    flex-direction: column;
    gap: 40px;
  }
  .content-block-with-image .content-section {
    flex: 1;
    padding: 20px 0;
  }
  .content-block-with-image .content-title {
    font-size: 2rem;
    text-align: center;
  }
  .content-block-with-image .content-text {
    text-align: center;
  }
  .content-block-with-image .content-section,
  .content-block-with-image .image-section {
    order: unset !important;
  }
}
@media (max-width: 480px) {
  .content-block-with-image {
    padding: 150px 0 80px;
  }
  .content-block-with-image .content-flex {
    gap: 30px;
  }
  .content-block-with-image .content-flex .content-section {
    flex: 1;
    padding: 20px 0;
  }
}
.content-block-with-cta {
  padding: 80px 0;
}
.content-block-with-cta .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.content-block-with-cta .content-flex {
  display: flex;
  gap: 80px;
  align-items: center;
}
.content-block-with-cta .content-section {
  flex: 1;
  padding: 20px 0;
}
.content-block-with-cta .content-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1c0000;
  margin-bottom: 24px;
  line-height: 1.2;
}
.content-block-with-cta .content-text {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 460px;
}
.content-block-with-cta .content-text p {
  margin-bottom: 20px;
}
.content-block-with-cta .cta-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.content-block-with-cta .cta-section .mobile-image {
  position: absolute;
  max-width: 170px;
  left: -40px;
}
.content-block-with-cta .cta-wrapper {
  background: #fac21f;
  padding: 60px 40px 60px 80px;
  border-radius: 0 20px 20px 0;
  text-align: center;
  max-width: 460px;
  width: 100%;
}
.content-block-with-cta .cta-title {
  color: #1c0000;
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 30px;
  letter-spacing: 5.6px;
  word-wrap: break-word;
}
.content-block-with-cta .cta-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #1c0000;
  margin-bottom: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.content-block-with-cta .cta-text p {
  margin-bottom: 12px;
}
.content-block-with-cta .cta-button .btn {
  display: inline-block;
  padding: 16px 32px;
  background: #ffffff;
  color: #1c0000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.content-block-with-cta .order-1 {
  order: 1;
}
.content-block-with-cta .order-2 {
  order: 2;
}

@media (max-width: 768px) {
  .content-block-with-cta {
    padding: 60px 0;
  }
  .content-block-with-cta .content-flex {
    flex-direction: column;
    gap: 50px;
  }
  .content-block-with-cta .content-title {
    font-size: 2.25rem;
    text-align: center;
  }
  .content-block-with-cta .content-text {
    text-align: center;
  }
  .content-block-with-cta .cta-wrapper {
    padding: 40px 30px;
    max-width: 350px;
    background: #fac21f;
    padding: 60px 40px 60px 80px;
    border-radius: 20px 20px 20px 20px;
    max-width: 460px;
    margin-top: 40px;
  }
  .content-block-with-cta .cta-title {
    font-size: 1.5rem;
  }
  .content-block-with-cta .content-section,
  .content-block-with-cta .cta-section {
    order: unset !important;
  }
  .content-block-with-cta .cta-section {
    flex: 1;
    display: block;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
  }
  .content-block-with-cta .cta-section .mobile-image {
    position: relative;
    max-width: 170px;
    margin: 0 auto;
    left: auto;
  }
}
@media (max-width: 480px) {
  .content-block-with-cta {
    padding: 40px 0;
  }
  .content-block-with-cta .content-flex {
    gap: 40px;
  }
  .content-block-with-cta .content-title {
    font-size: 2rem;
  }
  .content-block-with-cta .cta-wrapper {
    padding: 35px 25px;
    max-width: 300px;
  }
  .content-block-with-cta .cta-title {
    font-size: 1.375rem;
  }
  .content-block-with-cta .cta-button .btn {
    padding: 14px 28px;
    font-size: 1rem;
  }
}
.faq-block {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #f5f5f5;
  position: relative;
  z-index: 1010;
  /* Headings */
  /* Paragraphs */
  /* Lists */
  /* Unordered list styles */
  /* Ordered list styles */
  /* List item content */
  /* Spacing adjustments */
  /* Focus and selection styles */
}
.faq-block .container {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}
.faq-block .container .main-title {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.faq-block .container .main-title h2 {
  margin-top: 20px;
}
.faq-block .faq-accordion {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.faq-block .faq-accordion .faq-item {
  margin-bottom: 10px;
}
.faq-block .faq-accordion .faq-item:last-child {
  border-bottom: none;
}
.faq-block .faq-accordion .faq-header {
  width: 100%;
  flex: 1;
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: #1c0000;
  transition: all 0.3s ease;
  position: relative;
  background-color: #fac21f;
  text-align: left;
  border-radius: 13.5px;
}
.faq-block .faq-accordion .faq-header .faq-title {
  color: #1c0000;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: 3.2px;
  word-wrap: break-word;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-block .faq-accordion .faq-header svg {
  min-width: 20px;
}
.faq-block .faq-accordion .faq-header.active {
  position: relative;
}
.faq-block .faq-accordion .faq-header.active .faq-title svg {
  transform: rotate(180deg);
}
.faq-block .faq-accordion .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-block .faq-accordion .faq-content.active {
  max-height: 5000px;
}
.faq-block .faq-accordion .faq-content.active .faq-content-inner {
  transform: translateY(0);
}
.faq-block .faq-accordion .faq-content-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 100px;
  background-color: #f6e8bf;
  border-radius: 15px;
}
.faq-block .faq-accordion .faq-content-inner .faq-text {
  margin-bottom: 1rem;
  font-size: 18px;
  color: #1c0000;
  font-weight: 500;
  word-wrap: break-word;
}
.faq-block h1,
.faq-block h2,
.faq-block h3,
.faq-block h4,
.faq-block h5,
.faq-block h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2em;
  margin-bottom: 0.5em;
  color: #2c3e50;
}
.faq-block h1 {
  font-size: 2.5em;
  margin-top: 0;
  padding-bottom: 0.3em;
}
.faq-block h2 {
  font-size: 2em;
  padding-bottom: 0.3em;
}
.faq-block h3 {
  font-size: 1.5em;
}
.faq-block h4 {
  font-size: 1.25em;
}
.faq-block h5 {
  font-size: 1.1em;
}
.faq-block h6 {
  font-size: 1em;
  color: #666;
}
.faq-block p {
  margin: 0 0 1.2em 0;
  line-height: 1.6;
}
.faq-block p:last-child {
  margin-bottom: 0;
}
.faq-block ul,
.faq-block ol {
  margin: 0 0 1.2em 0;
  padding-left: 2em;
}
.faq-block ul ul,
.faq-block ol ol,
.faq-block ul ol,
.faq-block ol ul {
  margin-bottom: 0;
  margin-top: 0.5em;
}
.faq-block li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.faq-block li:last-child {
  margin-bottom: 0;
}
.faq-block ul {
  list-style-type: disc;
}
.faq-block ul ul {
  list-style-type: circle;
}
.faq-block ul ul ul {
  list-style-type: square;
}
.faq-block ol {
  list-style-type: decimal;
}
.faq-block ol ol {
  list-style-type: lower-alpha;
}
.faq-block ol ol ol {
  list-style-type: lower-roman;
}
.faq-block li p {
  margin: 0 0 0.5em 0;
}
.faq-block li p:last-child {
  margin-bottom: 0;
}
.faq-block h1 + p,
.faq-block h2 + p,
.faq-block h3 + p,
.faq-block h4 + p,
.faq-block h5 + p,
.faq-block h6 + p {
  margin-top: 0;
}
.faq-block ul + p,
.faq-block ol + p {
  margin-top: 1.2em;
}
.faq-block:focus {
  outline: none;
}
.faq-block ::selection {
  background-color: #b3d4fc;
  text-shadow: none;
}
.faq-block strong {
  font-weight: 600;
}
@media (max-width: 1000px) {
  .faq-block {
    padding-top: 20px;
  }
}

.page-template-default .entry-header {
  padding-top: 100px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.page-template-default .entry-header h1 {
  margin-bottom: 1rem;
  font-size: 44px;
  font-weight: 700;
  line-height: 44px;
  word-wrap: break-word;
  max-width: 420px;
}
.page-template-default .entry-content {
  padding-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  /* Headings */
  /* Paragraphs */
  /* Lists */
  /* Unordered list styles */
  /* Ordered list styles */
  /* List item content */
  /* Spacing adjustments */
  /* Focus and selection styles */
}
.page-template-default .entry-content h1,
.page-template-default .entry-content h2,
.page-template-default .entry-content h3,
.page-template-default .entry-content h4,
.page-template-default .entry-content h5,
.page-template-default .entry-content h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-top: 2em;
  margin-bottom: 0.5em;
  color: #2c3e50;
}
.page-template-default .entry-content h1 {
  font-size: 2.5em;
  margin-top: 0;
  padding-bottom: 0.3em;
}
.page-template-default .entry-content h2 {
  font-size: 2em;
  padding-bottom: 0.3em;
}
.page-template-default .entry-content h3 {
  font-size: 1.5em;
}
.page-template-default .entry-content h4 {
  font-size: 1.25em;
}
.page-template-default .entry-content h5 {
  font-size: 1.1em;
}
.page-template-default .entry-content h6 {
  font-size: 1em;
  color: #666;
}
.page-template-default .entry-content p {
  margin: 0 0 1.2em 0;
  line-height: 1.6;
  font-size: 18px;
}
.page-template-default .entry-content p:last-child {
  margin-bottom: 0;
}
.page-template-default .entry-content ul,
.page-template-default .entry-content ol {
  margin: 0 0 1.2em 0;
  padding-left: 2em;
}
.page-template-default .entry-content ul ul,
.page-template-default .entry-content ol ol,
.page-template-default .entry-content ul ol,
.page-template-default .entry-content ol ul {
  margin-bottom: 0;
  margin-top: 0.5em;
}
.page-template-default .entry-content li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}
.page-template-default .entry-content li:last-child {
  margin-bottom: 0;
}
.page-template-default .entry-content ul {
  list-style-type: disc;
}
.page-template-default .entry-content ul ul {
  list-style-type: circle;
}
.page-template-default .entry-content ul ul ul {
  list-style-type: square;
}
.page-template-default .entry-content ol {
  list-style-type: decimal;
}
.page-template-default .entry-content ol ol {
  list-style-type: lower-alpha;
}
.page-template-default .entry-content ol ol ol {
  list-style-type: lower-roman;
}
.page-template-default .entry-content li p {
  margin: 0 0 0.5em 0;
}
.page-template-default .entry-content li p:last-child {
  margin-bottom: 0;
}
.page-template-default .entry-content h1 + p,
.page-template-default .entry-content h2 + p,
.page-template-default .entry-content h3 + p,
.page-template-default .entry-content h4 + p,
.page-template-default .entry-content h5 + p,
.page-template-default .entry-content h6 + p {
  margin-top: 0;
}
.page-template-default .entry-content ul + p,
.page-template-default .entry-content ol + p {
  margin-top: 1.2em;
}
.page-template-default .entry-content:focus {
  outline: none;
}
.page-template-default .entry-content ::selection {
  background-color: #b3d4fc;
  text-shadow: none;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
