/** New Site CSS **/
/* --- Design Tokens & Overrides --- */
:root {
  --pico-font-family: "Gilroy", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --pico-background-color: #f8f9fa;

  /* Brand Colors */
  --brand-lime: #d8ff85;
  --brand-pink: #f55f7e;
  --brand-blue: #88e8e4;
  --brand-dark: #333;
  --brand-grey: #9d9d9c;
  --brand-lightgrey: #f0f0f0;

  /* Border */
  --border-width-thick: 5px;
  --border-width: 2px;
  --border-style: solid;

  /* Buttons */
  --btn-padding: 10px 20px;
  --field-height: 64px;

  /* Border Radius */
  --border-radius-pill: 50px;
  --border-radius-circle: 50%;
  --border-radius: 2rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 2.5rem;
  --spacing-2xl: 3rem;

  /* Transitions */
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition: all 0.4s ease-in-out;
}

/* Fonts */
@font-face {
  font-family: "Gilroy";
  src: url("../webfonts/Gilroy-ExtraBold.eot");
  src: url("../webfonts/Gilroy-ExtraBold.eot?#iefix")
      format("embedded-opentype"),
    url("../webfonts/Gilroy-ExtraBold.woff2") format("woff2"),
    url("../webfonts/Gilroy-ExtraBold.woff") format("woff"),
    url("../webfonts/Gilroy-ExtraBold.ttf") format("truetype"),
    url("../webfonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold") format("svg");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../webfonts/Gilroy-Light.eot");
  src: url("../webfonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"),
    url("../webfonts/Gilroy-Light.woff2") format("woff2"),
    url("../webfonts/Gilroy-Light.woff") format("woff"),
    url("../webfonts/Gilroy-Light.ttf") format("truetype"),
    url("../webfonts/Gilroy-Light.svg#Gilroy-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body {
  width: 100%;
  max-width: 100%;
}

/* Utilities */
.text-lime {
  color: var(--brand-lime);
}
.text-white {
  color: white;
}
.text-grey {
  color: #888;
}
.text-center {
  text-align: center;
}

p:not(:last-child) {
  margin-bottom: var(--spacing-lg);
}

p:last-child {
  margin-bottom: 0px;
}

a {
  text-decoration: none;
}

.bg-dark {
  background-color: var(--brand-dark);
  color: white;
}

.bg-dark h2 {
  color: white;
}

.bg-grey {
  background-color: var(--brand-grey);
  color: white;
}

.full-width {
  width: 100%;
}

/* Spacing Utilities */
.mt-05 {
  margin-top: var(--spacing-xs);
}
.mt-1 {
  margin-top: var(--spacing-sm);
}
.mb-1 {
  margin-bottom: var(--spacing-sm);
}
.ml-auto {
  margin-left: auto;
}
.p-15 {
  padding: var(--spacing-md);
}

/* Typography Tweaks */
h1,
h2,
h3,
.hero-title {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-subtitle,
.pill,
.btn-lime {
  letter-spacing: -0.03em;
}

.font-light {
  font-weight: 300;
}
.font-2rem {
  font-size: 2rem;
}

/* Grid Sections */
.gridrow {
  display: grid;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.gridrow[data-cols="1-1"] {
  grid-template-columns: 1fr 1fr;
}
.gridrow[data-cols="1-1-2"] {
  grid-template-columns: 1fr 1fr 2fr;
}
.gridrow[data-cols="3-1"] {
  grid-template-columns: 3fr 1fr;
}
.gridrow[data-cols="2-1-1"] {
  grid-template-columns: 2fr 1fr 1fr;
}

/* Header */
header {
  background: white;
  padding-block: var(--spacing-sm) 0rem !important;
}

.header {
  align-items: baseline;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--spacing-sm);
}

.end-block {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: var(--spacing-xs);
}

.logo {
  height: 1.8rem;
}

footer .logo {
  filter: invert(1);
}

/* Navigation */
.nav-links a {
  color: var(--brand-dark);
  text-decoration: none;
  padding: var(--spacing-xs);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  align-content: center;
  border-right: 3px solid var(--brand-lime);
}

footer .nav-links a {
  color: white;
}
.nav-links a:last-child {
  border-right: none;
}

/* Main Content */
main.container {
  padding-top: var(--spacing-sm);
}
.container {
  position: relative;
}

.feature-card {
  position: relative;
  height: 41vh;
  display: flex;
  flex-direction: column;
  border-width: var(--border-width-thick);
  border-style: var(--border-style);
  border-radius: var(--border-radius);
  overflow: hidden;
  z-index: 1;
}

/* Hero Section */
.hero-icon {
  width: 6rem;
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.hero {
  background-color: #333333;
  background-image: url("../../svg/mind-squiggle.svg");
  background-size: contain;
  background-position: center;
  background-origin: content-box;
  background-repeat: no-repeat;
  padding: var(--spacing-lg);
}

.large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 70vh;
  text-align: center;
  border-color: var(--brand-lime);
}

.hero-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  max-width: 850px;
  margin: 0 auto var(--spacing-sm);
  line-height: 1.2;
}

.hero-subtitle {
  color: var(--brand-lime);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 5rem;
}

.swiper-container {
  width: 100%;
  overflow: hidden;
}

#feature-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.swiper-wrapper {
  align-items: center;
  height: 100%;
}

.swiper-slide {
  opacity: 0.8;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  z-index: 5;
  transform: scale(0.9);
  transition: var(--transition);
}

.swiper-slide-active {
  opacity: 1;
  z-index: 1;
  transform: scale(1);
}

.swiper-slide-prev {
  z-index: 10;
  transform: scale(0.65) translateX(43%) !important;
}

.swiper-slide-next {
  z-index: 10;
  transform: scale(0.65) translateX(-43%) !important;
}

.swiper-button-prev {
  left: 35px !important;
}

.swiper-button-next {
  right: 35px !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "" !important;
}

.swiper-slide-prev .container,
.swiper-slide-next .container {
  border-width: 8px;
}

.nav-arrows {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  margin-top: calc(var(--swiper-navigation-size) / -2);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  padding: 0 var(--spacing-sm);
}

.nav-arrow {
  width: 80px !important;
  height: 80px !important;
  font-size: 2rem;
  font-weight: bold;
  border-radius: var(--border-radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: auto;
}

.nav-arrow:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

/* Pill Nav */
.pill-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-xs);
  margin-top: var(--spacing-lg);
}

.pill {
  padding: 0.4rem var(--spacing-md);
  border-radius: var(--border-radius-pill);
  font-size: 22px;
  font-family: "Gilroy Bold", Arial, sans-serif;
  text-decoration: none;
  color: black;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  margin-right: 2em;
  transition: var(--transition-bounce);
}

.floating {
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
}

a:hover .pill:after,
button:hover.pill:after {
  right: -1.4rem;
  transform: rotate(0deg);
}

/* Color Modifiers */
/* Color borders and text */
.pink,
.pink .card-badge.tag:not(.black),
.expertise-text .pink {
  --color: var(--brand-pink);
  color: var(--color);
  border-color: var(--color);
}

.blue,
.blue .card-badge.tag:not(.black),
.expertise-text .blue {
  --color: var(--brand-blue);
  color: var(--color);
  border-color: var(--color);
}

.lime,
.lime .card-badge.tag:not(.black),
.expertise-text .lime {
  --color: var(--brand-lime);
  color: var(--color);
  border-color: var(--color);
}

/* Backgrounds with black text */
:is(.pink, .blue, .lime) :is(.card-badge, .nav-arrow, .pill, .circle-btn),
:is(button, .nav-arrow, .pill, .circle-btn):is(.pink, .blue, .lime) {
  background-color: var(--color);
  color: black;
}

.grey {
  background-color: var(--brand-grey);
  border-color: var(--brand-grey);
}

.lightgrey {
  background-color: var(--brand-lightgrey);
}

.white {
  background-color: white;
}

/* Arrow Pills - Shared Styles */
.pill::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: var(--border-radius-circle);
  background-color: inherit;
  flex-shrink: 0;
  transform: rotate(-45deg);
  transition: var(--transition-bounce);
  width: 46px;
  height: 46px;
  background-image: url("/images/dandm-arrow.svg");
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

button.pill::after {
  right: -2.5rem;
  width: var(--field-height);
  height: var(--field-height);
}

/* Section Headers */
.section-header {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  margin: var(--spacing-md) auto;
  letter-spacing: -0.02em;
}

/* Icons */

i.fa-brands {
  font-size: 1.6rem;
}

.halo {
  position: absolute;
  top: 70px;
  z-index: 2;
  left: 215px;
  width: 160px;
}

.floating-icon {
  position: absolute;
  z-index: 2;
  width: 60px;
}

.star {
  bottom: var(--spacing-sm);
  right: var(--spacing-sm);
}
.review-stars img {
  width: 100px;
  margin-bottom: 5px;
}

.speech-open {
  top: -50px;
  left: -30px;
}

.speech-close {
  bottom: 0;
  right: 20px;
}

.icons {
  position: absolute;
  bottom: 60px;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 10px;
  padding: 0 var(--spacing-sm);
}

.circle-btn {
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  border-radius: var(--border-radius-circle);
  display: flex;
  justify-content: center;
  align-items: anchor-center;
  color: black;
}

.circle-btn img {
  width: 24px;
}

.circle-btn.inner {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.play-btn {
  padding-left: 5px;
}

.circle-btn.right {
  left: unset;
  bottom: 30px;
  right: 30px;
}

.card-content .icons img {
  width: 65px;
  height: 65px;
}

.card-content .icons img.walkman {
  width: 75px;
  height: auto;
}

/* Cards */

.card-info {
  background-color: var(--brand-lightgrey);
  padding: var(--spacing-xl);
  font-size: 0.9rem;
  margin-left: -200px;
  padding-left: 240px;
  height: fit-content;
  position: relative;
  border-radius: var(--border-radius);
}

.gridspan2 {
  grid-column: 1 / span 2;
  padding: 0px var(--spacing-sm);
}

.card-img {
  background-position: center;
  background-size: cover;
  filter: grayscale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #ddd;
  pointer-events: none;
  transition: var(--transition);
}

.small-pic {
  max-width: auto;
  height: 32vh;
}

.square {
  aspect-ratio: 1 / 1;
}

.textright {
  gap: 10px;
  display: grid;
  grid-template-columns: 5fr 6fr;
  font-size: 1.2rem;
}

.feature-card:hover .card-img {
  filter: grayscale(0);
}

.card-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  padding: var(--btn-padding);
  border-radius: var(--border-radius-pill);
  font-size: 18px;
  font-family: "Gilroy Bold", Arial, sans-serif;
}

.card-badge.tag {
  border-width: var(--border-width);
  border-style: var(--border-style);
  background: transparent;
  right: unset;
  left: var(--spacing-sm);
}

.card-badge.quote {
  font-size: 1.6rem;
  right: unset;
  color: white;
  left: var(--spacing-sm);
}

/* Expertise Scroller */
.expertise {
  padding: var(--spacing-xl) 0px var(--spacing-sm) 0px;
}

.expertise-text {
  font-family: "Gilroy ExtraBold", Arial, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ccc;
  letter-spacing: -0.02em;
}

.expertise-text span {
  background-color: transparent;
}

.expertise-scroll-container {
  width: 100%;
}

.expertise-scroll {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}

.expertise-track {
  display: flex;
  will-change: transform;
}

.expertise-text {
  display: inline-flex;
  gap: var(--spacing-sm);
  padding-right: var(--spacing-sm);
  flex-shrink: 0;
}

/* Testimonials */

.testimonial {
  margin-top: -100px;
}

.testimonial .nav-arrows {
  padding-bottom: var(--spacing-sm);
  bottom: 0;
  top: unset;
}

.testimonial-content {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-content p {
  position: relative;
  font-size: 2rem;
  line-height: 1.2;
  text-align: left;
  color: white;
  text-wrap-style: balance;
}

/* Footer */
footer.main-footer {
  background: var(--brand-dark);
  color: #888;
  padding: var(--spacing-xl) var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  font-size: 0.8rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  padding: 0 var(--spacing-sm);
}

.footer-copyright {
  margin-top: var(--spacing-sm);
  padding: 0 var(--spacing-sm);
  display: flex;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .gridrow[data-cols="1-1"],
  .gridrow[data-cols="1-1-2"],
  .gridrow[data-cols="3-1"],
  .gridrow[data-cols="2-1-1"] {
    grid-template-columns: 1fr;
  }

  .testimonial-content {
    width: 100%;
    height: 100%;
    padding: var(--spacing-xl);
  }

  .testimonial .card-img {
    filter: brightness(0.4);
  }

  .testimonial-content p {
    font-size: 1.3rem;
  }

  .speech-open {
    top: -40px;
    left: -30px;
  }

  .speech-close {
    bottom: -40px;
    right: -30px;
  }

  .large {
    aspect-ratio: 1 / 1;
  }

  .footer-copyright {
    flex-wrap: wrap;
  }
}

body {
  background-color: black;
  text-align: center;
}

.header {
  max-width: 1360px;
  justify-self: center;
  padding: 60px 20px 160px 20px;
  align-items: baseline;
}

.header,
.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.header div,
.footer-container div {
  display: flex;
  flex-direction: row;
  color: white;
  font-size: 40px;
  font-family: "Gilroy Light", Arial, sans-serif;
  align-items: center;
  text-align: left;
}

.footer-container div {
  font-size: 30px;
}

.gap {
  gap: 10px;
}

a.mainlink {
  color: white;
  font-family: "Gilroy Bold", Arial, sans-serif;
  text-decoration: none;
}

.header img {
  width: 120px;
  padding-bottom: 1px;
  margin-right: 20px;
}

.intro {
  background-image: linear-gradient(to top, black 0%, transparent 15%),
    url(/images/Hospitality-HCLP-Framework-Background.webp);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 50px;
  margin-bottom: -50px;
  text-align: -webkit-center;
}

.intro .container {
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container {
  max-width: 1280px !important;
}

h1,
h2,
h3,
h4,
p {
  color: white;
  font-family: "Gilroy Bold", Arial, sans-serif;
  line-height: 1.2;
  text-wrap: balance;
}

h1 {
  font-size: 60px;
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

h2 {
  font-size: 36px;
}

p {
  font-size: 26px;
  max-width: 800px;
  text-align: center;
}

.contact-form-container {
  width: 100%;
  max-width: 800px;
}

.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.contact-form-container .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.contact-form-container .form-row.uneven {
  grid-template-columns: 7fr 5fr;
}

.contact-form-container .input-container {
  position: relative;
}

.contact-form-container .input-container input {
  width: 100%;
  background-color: var(--brand-dark);
  border: 2px solid var(--brand-lime);
  border-radius: var(--border-radius-pill);
  height: var(--field-height);
  color: white;
  font-size: 18px;
  padding: 10px 25px 0px 25px;
}

.contact-form-container .input-container input.pink {
  border: 2px solid var(--brand-pink);
}

.contact-form-container .input-container input.blue {
  border: 2px solid var(--brand-blue);
}

.contact-form-container .input-container label {
  position: absolute;
  left: 25px;
  top: 20px;
  font-size: 18px;
  color: var(--brand-grey);
  white-space: nowrap;
  pointer-events: none;
  transition: all 0.2s ease;
  font-family: "Gilroy Bold", Arial, sans-serif;
}

.contact-form-container .input-container label span {
  margin-right: 10px;
}

.contact-form-container .input-container input:focus + label,
.contact-form-container .input-container input:not(:placeholder-shown) + label {
  top: 5px;
  font-size: 12px;
}

.contact-form-container .input-container input:focus,
.contact-form-container .input-container input:not(:placeholder-shown) {
  outline: 2px solid white;
}

.contact-form-container button[type="submit"] {
  border-radius: var(--border-radius-pill);
  color: black;
  border: none;
  background-color: var(--brand-lime);
  transition: var(--transition-bounce);
  text-transform: capitalize;
  height: var(--field-height);
  font-size: 26px;
  width: 100%;
  max-width: 275px;
  justify-content: center;
  margin-top: var(--form-gap);
}

.thank-you-message.active {
  opacity: 1;
  height: var(--field-height);
  overflow: visible;
}
.thank-you-message {
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: black;
  background-color: var(--brand-lime);
  border-radius: var(--border-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp:hover {
  color: var(--brand-lime);
}

.whatsapp {
  width: 100%;
  padding: 5px;
  margin: 50px 0px 70px 0px;
  color: white;
  text-decoration: none;
  font-family: "Gilroy Bold", Arial, sans-serif;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp img {
  width: 90px;
  padding: 5px;
  color: white;
  text-decoration: none;
  font-family: "Gilroy Bold", Arial, sans-serif;
  font-size: 20px;
  text-align: center;
}

.nav-btn {
  pointer-events: all;
  z-index: 5;
  background-color: var(--brand-dark);
  border: none;
  color: white;
  padding: 15px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 30px;
  font-family: "Gilroy Bold", Arial, sans-serif;
}

.nav-btn:hover {
  background-color: var(--brand-lime);
}

.nav-btn:disabled {
  opacity: 0;
  pointer-events: none;
  cursor: not-allowed;
  background-color: var(--brand-dark);
}

.nav-btn:disabled:hover {
  transform: none;
}

/* Accordion Styles */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}

.accordion details {
  background-color: var(--brand-dark);
  border-radius: var(--border-radius-pill);
  overflow: hidden;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.accordion details[open],
.accordion details:hover {
  border: 2px solid var(--brand-lime);
}

details .content {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s ease-out;
  opacity: 0;
}

details.opening .content {
  max-height: 600px;
  opacity: 1;
}

.accordion summary {
  color: white;
  font-size: 26px;
  font-family: "Gilroy Light", Arial, sans-serif;
  padding: 20px 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 15px;
  list-style: none;
  position: relative;
  transition: 0.3s ease;
}

details.opening summary {
  color: var(--brand-lime);
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  color: white;
  font-size: 30px;
  margin-left: auto;
  transition: 0.3s ease;
}

.accordion details[open] summary::after {
  transform: rotate(90deg);
}

.accordion .content {
  padding: 0 40px 20px 40px;
}

.accordion .content p {
  font-family: "Gilroy Light", Arial, sans-serif;
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: left;
  max-width: none;
  margin-bottom: 0px;
}

.accordion .content b {
  color: var(--brand-lime);
}

.faq-section {
  counter-reset: accordion-counter;
}

.faq-title {
  text-align: center;
  margin-bottom: 40px;
  color: white;
}

.footer .container {
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Hide the more-text div initially */
.more-text {
  margin-top: 20px;
  max-height: 0;
  transform: scaleY(0);
  transform-origin: top;
  overflow: hidden;
  transition: max-height 0.3s ease-out, transform 0.3s ease-out,
    opacity 0.3s ease-out;
  opacity: 0;
}

/* Show the more-text div when active */
.more-text.show {
  max-height: 200px; /* Adjust this value based on your content height */
  transform: scaleY(1);
  opacity: 1;
}

.footer-container {
  max-width: 1280px;
  padding: 40px 0px 10px 0px;
}

.footer .links .grid a,
.footer .links {
  color: #9d9d9c;
  transition: 0.3s ease;
  font-size: 18px;
  font-family: "Gilroy Bold", Arial, sans-serif;
}

.footer .links .grid a:hover {
  color: var(--brand-lime);
}

.footer .links a {
  color: var(--brand-lime);
  font-family: "Gilroy Bold", Arial, sans-serif;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer .links a:hover {
  color: white;
}
.footer .links {
  max-width: 1280px;
  width: 100%;
}

.footer .links .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
}

.footer .links .grid div {
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 1200px) {
  .header {
    padding-bottom: 120px;
  }
  h1 {
    font-size: 38px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  h2,
  .accordion summary,
  .header div,
  .footer-container div {
    font-size: 21px;
  }

  .contact-form-container button {
    font-size: 28px;
  }

  p,
  .accordion .content p {
    font-size: 17px;
  }

  .accordion {
    max-width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  :root {
    --field-height: 50px;
  }
  p:not(:last-child) {
    margin-bottom: 0px;
  }
  .whatsapp {
    width: 100%;
    padding: 5px;
    margin: 3vh 0px;
  }

  .whatsapp img {
    width: 60px;
  }
  h2 {
    line-height: 1.4;
  }

  .expertise-text {
    font-size: 2rem;
  }

  .contact-form-container button[type="submit"] {
    font-size: 20px;
    max-width: 88%;
  }

  .contact-form-container .input-container label {
    left: 25px;
    top: 13px;
    font-size: 18px;
  }

  .contact-form-container .form-row,
  .contact-form-container .form-row.uneven {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .text-slide {
    padding: 20px 10px;
  }
  .testimonial-stars {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .modal-footer {
    padding: 2%;
  }

  .modal-category {
    margin-bottom: 10px;
  }

  .faq-section,
  .footer .container {
    padding: 30px 20px 0px 20px;
  }

  .faq-section .container {
    padding: 0px;
  }

  .contact-form-container {
    flex-direction: column;
  }

  .contact-form-container button {
    margin-top: 10px;
  }
  .input-container {
    width: 100%;
  }
  .header {
    padding: 20px;
  }
  .header img {
    width: 100px;
  }
  .mobile-hide {
    display: none;
  }
  h1 {
    font-size: 29px;
    padding: 3vh 0px;
    margin-bottom: 10px;
  }

  h2,
  .header div,
  .footer-container div {
    font-size: 23px;
  }

  .links .footer-text {
    font-size: 16px;
  }

  .accordion summary {
    font-size: 17px;
    padding: 15px 30px;
  }

  .accordion .content {
    padding: 0 30px 20px 30px;
  }

  .contact-form-container button {
    font-size: 24px;
  }

  .gridrow {
    padding: 0px 20px;
  }

  p,
  .accordion .content p {
    font-size: 17px;
  }
  .slide {
    min-width: 195px;
    width: 195px;
    height: 195px;
  }
  .text-slide {
    width: 100%;
  }

  .modal {
    width: 95%;
    margin: 20px;
  }

  .modal-content {
    padding: 25px;
  }

  .modal-title {
    font-size: 24px;
  }

  .intro .container {
    padding: 0px 20px;
  }
}
