/*
Theme Name: Fair Theme
Author: Your Name
Description: Hybrid WordPress theme for Fair Pop Fonds
Version: 1.0
*/

/* Custom self-hosted font */
@font-face {
	font-family: 'MyCustomFont';
	src: url('assets/fonts/HelveticaNowDisplay.otf') format('otf');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'MyCustomFont';
	src: url('assets/fonts/HelveticaNowDisplayMedium.otf') format('otf');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

/* Custom styles */

:root {
	--theme-bg: #8d9be3;
	--theme-black: #000000;
    --theme-black-light: rgba(0, 0, 0, 0.7);
    --theme-black-lightest: rgba(0, 0, 0, 0.05);
    --theme-black-lightest-hover: rgba(0, 0, 0, 0.1);
    --theme-white-lightest: rgba(245, 245, 245, 0.15);
    --theme-white-lightest-hover: rgba(245, 245, 245, 0.2);
	--theme-white: #f5f5f5;
    --medium-width: 1800px;
}

body {
	font-family: 'MyCustomFont', sans-serif;
	font-weight: 400;
	background: var(--theme-bg);
	padding: 0 3rem;
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* when menu is open */
body.menu-open {
  background: var(--theme-black);
}


.alignwide {
  max-width: var(--medium-width) !important;
  margin: 2rem auto;
}

/* HEADER */

/* Full-width menu bar */
.site-header {
  width: 100%;
  //background: #fff;
  padding: 0rem 0rem 0rem 0rem;
}

/* Flex container */
.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--medium-width);
  margin: 3rem auto;
  padding: 0rem;
}

/* Logo */
.menu-container a {
	padding: 0rem;
  
}

.menu-container a img {
  //height: 3rem;
  width: 8rem;
 
}

/* Menu */

.main-nav {
	
	padding: 0rem;
	height: 100%
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul li a {
  text-decoration: none;
  color: var(--theme-black);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: opacity 0.2s;
}

.main-nav ul li a:hover {
  opacity: 0.8; /* example hover color */
}

/* Style the last menu item as a button */
.main-nav ul li:last-child a, .menu-cta a, .wp-block-button a, .btn-primary {
  background: var(--theme-black);
  color: var(--theme-white);
  padding: 1rem 2rem;
  border-radius: 50rem;
  border: none !important;
  //font-weight: 600;
  transition: background 0.2s;
  text-decoration: none !important;
}

.main-nav ul li:last-child a:hover, .menu-cta a:hover, .wp-block-button a:hover, .btn-primary:hover {
  background: var(--theme-black-light);
  border: none !important;
}

/* Style the last menu item as a button */
.btn-secondary {
  background: var(--theme-black-light);
  color: var(--theme-white);
  padding: 1rem 2rem;
  border-radius: 50rem;
  border: 1px solid var(--theme-black-light) !important;
  //font-weight: 600;
  transition: opacity 0.2s;
  text-decoration: none !important;
}

.wp-block-button.secondary a, .btn-link {
  background: transparent !important;
  color: var(--theme-black) !important;
  text-decoration: none !important;
}

.main-nav ul li:last-child a:hover {
  opacity: 0.8;
}

.menu-cta li {
  list-style: none !important;
}


/* SLIDE DOWN MENU */

/* Layout */
.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger */
.hamburger {
  width: 40px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #000;
  border-radius: 0px;
  transition: all 0.3s ease;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--theme-white)
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--theme-white)
}



/* when open */
#fullscreen-menu.active {
  transform: translateY(0);
}

.fullscreen-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--theme-black);
  transition: top 0.8s cubic-bezier(0.1, 1, 0.2, 1);
  z-index: 1000;
  padding: 4rem;
  display: flex;
  align-items: top;
  justify-content: center;
  flex-direction: column;
  transform: translateY(-100%);
}

.fullscreen-menu.active {
  top: 0;
}

/* Menu styling */
.fullscreen-nav {
  max-width: var(--medium-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: calc(50vh - 18rem) !important;
}


.menu-column {
  flex: 1;
}

/* optional alignment */
.menu-left {
  text-align: left;
}

.align-left p {
  color: var(--theme-white) !important;
}
.menu-right {
  text-align: right;
}


.fullscreen-nav ul {
  list-style: none;
  padding: 0;
  text-align: left;
 
}

.fullscreen-nav li {
 
 
}

.fullscreen-nav a {

  text-decoration: none;
  color: var(--theme-white);
  transition: opacity 0.3s;
}

.fullscreen-nav .menu-left  a {
  font-size: 3rem;
}

.fullscreen-nav .menu-right  li {
  margin-bottom: 0rem;
}

.fullscreen-nav .menu-right  a {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.fullscreen-nav a {
  position: relative;
  display: inline-block; /* important */
  text-decoration: none;
}

.fullscreen-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;
  background: currentColor; /* uses text color */

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.fullscreen-nav a:hover::after {
  transform: scaleX(1);
}

.menu-footer {
  color: var(--theme-white) !important;
  display: flex;
  margin-top: auto;
  justify-content: space-between;
  align-items: center;
}

.menu-footer p {
  margin-bottom: 0px !important;
  
}

.align-right {
  display: flex;
  gap: 2.2rem;
}

:target {
  scroll-margin-top: 3rem;
}

.menu-logo {
  height: 2.2rem;
  max-width: 6rem;
  min-width: fit-content;
  object-fit: contain;
}

.card.footer-cta {
  overflow: hidden !important;
  //background: var(--theme-black) !important;
}

.card.footer-cta h2, .card.footer-cta p {
  //color: var(--theme-white) !important;
}

.footer-cta .one {
  margin-right: -30rem;
  max-height: 8rem;
  transform: scale(0.5);
  
}

#figure_footer {
  margin: 0 0 !important;
  margin-left: auto !important;
}

/* CARD positioning context */
.footer-cta .card-body {
  position: relative;
  overflow: hidden; /* voorkomt dat balken uitsteken */
}

/* FIGURE */
.fpf-figure-2 {
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 40%; /* tweak afhankelijk van design */
  margin-right: -5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end; /* rechts uitlijnen */
  pointer-events: none;
}

/* BARS */
.fpf-top,
.fpf-bottom {
  height: 35%; /* samen ~100% met spacing */
  width: 100%;
  background: var(--theme-black-lightest-hover);

  transform-origin: right; /* KEY */
}

/* individuele animaties */
.fpf-top {
  animation: stretchTop 3s ease-in-out infinite alternate;
}

.fpf-bottom {
  animation: stretchBottom 2.5s ease-in-out infinite alternate;
}

/* ANIMATIES */
@keyframes stretchTop {
  0%   { transform: scaleX(1); }
  100% { transform: scaleX(0.6); }
}

@keyframes stretchBottom {
  0%   { transform: scaleX(0.7); }
  100% { transform: scaleX(1); }
}

/* GENERAL */

.spacer {
  width: 100%;
}

.spacer.small {
  height: 0.7rem !important;
}

.spacer.med {
  height: 1.3rem !important;
}

.spacer.large {
  height: 2rem !important;
}

.spacer.extralarge {
  height: 8rem !important;
}

.full-height {
  height: 100vh !important;
  width: 100%;
  display: inline-flex !important;
}

.first {
  height: calc(100vh - 11rem) !important;
}

.alignwide {
  width: 100%;
}

.btn-container {
  display: flex;
  gap: 1rem !important;
}

.btn-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

/* TEXT underline animatie */
.btn-text {
  position: relative;
}

.btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.btn-link:hover .btn-text::after {
  width: 100%;
}

/* SVG ARROW */
.btn-link::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;

  background: no-repeat center / contain url("data:image/svg+xml;utf8,\
<svg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'>\
<path fill='currentColor' fill-rule='evenodd' clip-rule='evenodd' d='M0 7.875L10.675 7.875L5.775 12.775L7 14L14 7L7 0L5.775 1.225L10.675 6.125L0 6.125L0 7.875Z'/>\
</svg>");

  transition: transform 0.3s ease;
}

/* arrow animatie */
a.card:hover .btn-link::after {
  transform: translateX(4px);
}

a.card:hover .btn-link .btn-text::after {
  width: 100%;
}

/* arrow animatie */
a.card:hover .btn-link::after {
  transform: translateX(4px);
}

.page-template-information-template h3 {
  font-size: 3rem !important;
  margin-top: 4rem !important;
  margin-bottom: 2rem !important;
}

.page-template-information-template p, .page-template-information-template h3  {
  color: var(--theme-black);
}

.page-template-information-template p a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  color: var(--theme-black);
  margin-bottom: 0.5rem;
}

/* UNDERLINE (fake text-only) */
.page-template-information-template p a::before {
  content: "";
  position: absolute;
  
  left: 0;
  bottom: 0px;
  width: calc(100% - 27px); /* 👈 leaves space for arrow */
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.page-template-information-template p a:hover::before {
  transform: scaleX(1);
}

/* SVG ARROW */
.page-template-information-template p a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;

  background: no-repeat center / contain url("data:image/svg+xml;utf8,\
<svg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'>\
<path fill='currentColor' fill-rule='evenodd' clip-rule='evenodd' d='M0 7.875L10.675 7.875L5.775 12.775L7 14L14 7L7 0L5.775 1.225L10.675 6.125L0 6.125L0 7.875Z'/>\
</svg>");

  transition: transform 0.3s ease;
}

/* ARROW MOVE */
.page-template-information-template p a:hover::after {
  transform: translateX(4px);
}


/* FOOTER */

.page-template-information-template .footer-cta, .page-template-faq-template .footer-cta  {
  margin-top: 8rem !important;
}

.site-footer {
  width: var(--medium-width) !important;
  margin: 3rem auto 3rem auto;
  justify-content: space-between;
  max-width: 100% !important;
}

.site-footer a {
  color: var(--theme-black);
  text-decoration: none !important;
  margin: 0px !important;
}

footer.site-footer p {
  font-size: 1rem !important;
  margin: 0px !important;
}

.links .link-item h3 {
  transition: opacity  0.5s ease;
}

.links:hover .link-item h3 {
  opacity: 0.3;
  
  //filter: blur(2px);
}

.links .link-item:hover h3 {
  opacity: 1;
  //filter: blur(0px);
}

.link-item .link-icon {
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.link-item:hover .link-icon {
  transform: translate(3px, -3px);
}

body.menu-open {
  overflow: hidden;
}

/* HOME */

h1 {
  font-size: 8rem !important;
  color: var(--theme-black) !important;
  letter-spacing: -0.4rem !important;
  line-height: 1;
}

h2 {
  font-size: 5.6rem !important;
  color: var(--theme-black) !important;
  letter-spacing: -0.2rem !important;
}

h3 {
  letter-spacing: -0.1rem !important;
  color: var(--theme-black) !important;
  font-size: 3rem !important;
}

h4 {
  letter-spacing: -0.03rem !important;
  color: var(--theme-black) !important;
  font-size: 1.8rem !important;
}

.lead {
  font-family: 'MyCustomFont', sans-serif;
  font-weight: 400;
  color: var(--theme-black) !important;
  font-size: 1.3rem !important;
}

.mw-med {
  max-width: 23rem;
}

.mw-extralarge {
  max-width: 52rem;
  width: 100%;
}

.mw-large {
  max-width: 46rem;
  margin: 0 auto;
  width: 100%;
}

.page-template-information-template main .entry-content > h1, .page-template-contact-template main .entry-content > h1 {
  margin-bottom: 3.5rem !important;
}

.page-template-information-template main .entry-content > p, .page-template-contact-template main .entry-content > p  {
  font-size: 1.2rem !important;
  margin-bottom: 2rem !important;
}

.page-template-information-template main .entry-content > ul {
  margin-bottom: 2rem !important;
  padding-left: 1.2rem !important;
}

.page-template-information-template main .entry-content > ul li {
  font-size: 1.2rem !important;
  color: var(--theme-black);
}

.page-template-information-template main .entry-content > p:first-of-type, .page-template-contact-template main .entry-content > p:first-of-type {
  font-size: 1.8rem !important;
}

.page-template-information-template main .wp-block-column p {
  font-size: 1.2rem !important;
}

.card-container {
  gap: 1rem;
}

a.card {
  text-decoration: none !important;
}

a.card:hover {
  background: var(--theme-black-lightest-hover) !important;
}

.card {
  flex-grow: 2;
  background: var(--theme-black-lightest) !important;
  border-radius: 2rem !important;
  border: none !important;
  transition: 0.3s ease;
}

.card-body {
  padding: 3rem !important;
}

.cta-container {
  width: 36rem;
  max-width: 100%;
}

.img-container {
  width: 100% !important;
  align-items: center;
  position: relative;
  padding: 2rem;
}

.img-container img {
  z-index: 99 !important;
  
  display: block;
  position: absolute;
}




/* overlay */
.img-container .image-overlay {
  position: absolute;
  inset: 0; /* top/right/bottom/left: 0 */
  
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  width: 80% !important;
  height: calc(100% - 15rem);
  border-radius: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* hover effect */
.image-wrapper:hover .image-overlay {
  opacity: 1;
}

.img-container .image {
  width: 80% !important;
  height: calc(100% - 15rem);
  object-fit: cover;
  border-radius: 2rem !important;
  margin: 0 auto;
  display: block;
  position: absolute;
  z-index: 1 !important;
  top: 50%;
  left: 50%;
  opacity: 0.8;
  transform: translate(-50%, -50%);
}

.faq .image {
  width: 100% !important;
  height: 40rem;
  object-fit: cover;
  border-radius: 2rem !important;
  margin: 0 auto;
  display: block;
  //position: absolute;
  z-index: 1 !important;
  top: 50%;
  left: 50%;
  opacity: 0.8;
  //transform: translate(-50%, -50%);
}

.img-container .one {
  top: 3.685rem;
  max-width: 40rem;
  width: 80%;
  height: 7.5rem;
  object-fit: cover;
  z-index: 99 !important;
  display: flex;
  align-items: center;
  position: absolute;
}

.img-container .three {
  bottom: 0px;
  right: 0px;
  max-width: 32rem;
  width: 80%;
}

/* ANIMATION ONE */

#bar-left,
#bar-middle,
#bar-right {
  transform-origin: center;
  animation: stretch 2s ease-in-out infinite alternate;
}

#bar-left {
  animation: stretchLeft 2s ease-in-out infinite alternate;
}

#bar-middle {
  animation: stretchMiddle 2.3s ease-in-out infinite alternate;
}

#bar-right {
  animation: stretchLeft 1.8s ease-in-out infinite alternate;
}

@keyframes stretchLeft {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.7); }
}

@keyframes stretchMiddle {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0.7); }
}

@keyframes stretchRight {
  0% { transform: scaleX(0.7); }
  100% { transform: scaleX(1); }
}

/* LINK ITEMS */

.links {
  border-top: 2px solid var(--theme-black) !important;
}

.link-item {
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  text-decoration: none !important;
  border-bottom: 2px solid var(--theme-black) !important;
  padding: 1.4rem 0;
  margin: 0 !important;
  
}

.link-item h3 {
  text-decoration: none !important;
  line-height: 1 !important;
  margin: 0 !important;
}

/* FAQ */

/* remove default bootstrap styles */
.custom-accordion {
  border-top: 2px solid var(--theme-black);
}

.custom-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--theme-black);
  border-radius: 0px !important;
}

/* remove rounded corners */
.custom-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 1.5rem 0;
}

/* remove blue bg on open */
.custom-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: inherit;
}

/* remove default arrow */
.custom-accordion .accordion-button::after {
  background-image: none;
}

/* optional: custom plus/minus */
.custom-accordion .accordion-button::after {
  content: "+";
  font-size: 2rem;
  transform: none;
  margin-top: -1rem;
  line-height: 1;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  content: "–";
}

/* body spacing */
.custom-accordion .accordion-body {
  padding: 0 0 1.5rem 0;
}

/* remove focus outline */
.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

.three {
  transform: rotate(var(--rotate));
}

.accordion-header h4 {
  max-width: 80% !important;
}

/* form */

.form-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1rem;
}

input, textarea {
  width: 100%;
  padding: 1.5rem 2rem;
  border: none;
  border-radius: 2.2rem;
  font-size: 16px;
  background: var(--theme-black-lightest);
  color: var(--theme-black)
}

::placeholder {
 color: var(--theme-black-light)
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 1.5rem 2rem;
  border: none;
  background: black;
  color: white;
  border-radius: 2.2rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  opacity: 0.8;
}

/* Response UI */
#form-response {
  margin-top: 1rem;
  font-size: 14px;
}

.success {
  color: green;
}

.error {
  color: red;
}


/* TILTING FIGURE */

.fpf-figure {
  width: 150px;
  height: 100px;
  margin: 15px auto;
  position: absolute;
  display: flex;
  align-items: top;
  justify-content: space-between;
  left: calc(50vw - 560px);
  transition: transform 0.6s ease;
}

/* left & right squares */
.fpf-side {
  width: 50px;
  height: 50px;
  background: #f5f5f5;

  transform-origin: bottom;
  transition: transform 0.6s ease;
}

/* center block (bottom shape) */
.fpf-center {
  //flex: 1;
  height: 50px;
  width: 50px;
  margin: 50px 0px 0px 0px;
  background: #f5f5f5;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

/* LEFT BIG → RIGHT SMALL */
.fpf-figure.state-left .left {
  transform: scaleY(1);
}

.fpf-figure.state-left .right {
  transform: scaleY(0.5);
}

/* RIGHT BIG → LEFT SMALL */
.fpf-figure.state-right .left {
  transform: scaleY(0.5);
}

.fpf-figure.state-right .right {
  transform: scaleY(1);
}

/* TILT */
.fpf-figure.state-left {
  transform: rotate(-24deg);
}

.fpf-figure.state-right {
  transform: rotate(24deg);
}


/* COOKIES */

/* FULLSCREEN OVERLAY */
#cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9999;

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

/* BOTTOM BAR */
.cookie-bar {
  width: 100%;
  //max-width: 1200px;
  margin: 2rem;
  padding: 4rem;

  background: #000;
  color: var(--theme-white) !important;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  border-radius: 1rem;
}

.cookie-header {
  color: var(--theme-white) !important;
}

/* TEXT */
.cookie-text {
  margin: 0;
  font-size: 0.95rem;
  flex: 1 1 300px;
  color: var(--theme-white) !important;
}

/* ACTIONS */
.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

/* BUTTONS */
.cookie-bar .btn {
  cursor: pointer;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  border-radius: 2rem;
  border-radius: 2rem;
  padding: 1rem 2rem;
}

.cookie-bar .btn-link {
  color: var(--theme-white) !important;
}

.cookie-bar .btn-primary {
  background:  var(--theme-white) !important;
  color:  var(--theme-black) !important;
  border: none !important;
}

.cookie-bar .btn-primary:hover {
  opacity: 0.7;
}

.cookie-bar .btn-secondary {
  background: var(--theme-white-lightest) !important;
  color: var(--theme-white) !important;
  border: none;
}

.cookie-bar .btn-secondary:hover {
  background: var(--theme-white-lightest-hover) !important;
}

/* AANVRAAG BLOCK */

/* overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;

  align-items: center;
  justify-content: center;

  z-index: 9999;
}

/* popup */
.popup {
  background: var(--theme-black);
  color: var(--theme-white) !important;
  padding: 3rem;
  max-width: 600px;
  text-align: left;
  border-radius: 2rem;
}

.popup h3, .popup .btn-link, .popup p {
  color: var(--theme-white) !important;
  margin: 0px !important;
}

/* button */
.popup .btn-link {
  cursor: pointer !important;
}


/* MEDIA */

@media (max-width: 1199.98px) { 
  h1 {
    font-size: 6rem !important;
    color: var(--theme-black) !important;
    letter-spacing: -0.2rem !important;
    line-height: 1;
  }
  
  h2 {
    font-size: 3.6rem !important;
    color: var(--theme-black) !important;
    letter-spacing: -0.1rem !important;
  }
  
  body main h3, .page-template h3, .home h3 {
    letter-spacing: -0.03rem !important;
    color: var(--theme-black) !important;
    font-size: 2rem !important;
  }
  
  h4 {
    letter-spacing: -0.02rem !important;
    color: var(--theme-black) !important;
    font-size: 1.4rem !important;
  }
  
  p.lead, .page-template-information-template main .entry-content > p:first-of-type, .page-template-contact-template main .entry-content > p:first-of-type {
    letter-spacing: -0.01rem !important;
    color: var(--theme-black) !important;
    font-size: 1.4rem !important;
  }
  
  p {
    font-size: 1rem !important;
  }
  
  a {
    font-size: 1rem !important;
  }
  
  .container {
    max-width: 100% !important;
  }
  
  .home .card-container {
    flex-direction: column !important;
  }
  
  .home .landing-container {
    flex-direction: column-reverse !important;
  }
  
  .home .landing-container .mt-auto {
    margin-top: 0px !important;
  }
  
  .first {
    height: unset !important;
  }
  
  .mw-large {
    margin-left: 0px !important;
  }
  
  .card-body {
    padding: 2.5rem !important;
  }
  
  #figure {
    display: none !important;
  }
  
  .image-wrapper {
    height: 32rem !important;
  }
  
  .img-container .image, .img-container .image-overlay {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .img-container .three {
    bottom: 2.2rem;
    right: 0px;
    max-width: 22rem;
    width: 80%;
  }
  
  .landing-container {
    margin-top: 0px !important;
  }
  
  
 }

@media (max-width: 991.98px) { 
  .card-body {
    padding: 2rem !important;
  }
  
  .image-wrapper {
    height: 26rem !important;
  }
  
  .img-container .three {
    bottom: 3.6rem;
    right: 0px;
    max-width: 16rem;
    width: 80%;
  }
  
 
 }

@media (max-width: 767.98px) { 
  body main h3, .page-template h3, .home h3 {
    letter-spacing: -0.03rem !important;
    color: var(--theme-black) !important;
    font-size: 1.3rem !important;
  }
  h1 {
    font-size: 3.6rem !important;
    color: var(--theme-black) !important;
    letter-spacing: -0.05rem !important;
    line-height: 1;
  }
  body {
    padding: 0 1.4rem;
  }
  a.btn {
    font-size: 0.9rem !important;
    padding: 0.8rem 1.1rem !important;
  }
  .btn-text, .btn-link {
    font-size: 0.9rem !important;
  }
  .menu-container {
    margin: 2rem auto !important;
  }
  .first {
    height: unset !important;
  }
  .fullscreen-menu {
    padding: 2rem !important;
  }
  .fullscreen-nav {
    flex-direction: column;
    margin-top: 0px !important;
    
  }
  .spacer.extralarge {
      height: 4rem !important;
  }
  .fullscreen-nav a {
    margin-bottom: 0px !important;
    font-size: 1.5rem !important;
  }
  .menu-footer {
    display: none !important;
  }
  h2 {
    font-size: 2.6rem !important;
    color: var(--theme-black) !important;
    letter-spacing: -0.1rem !important;
  }
  p.lead, .page-template-information-template main .entry-content > p:first-of-type, .page-template-contact-template main .entry-content > p:first-of-type {
    letter-spacing: -0.005rem !important;
    color: var(--theme-black) !important;
    font-size: 1.3rem !important;
  }
  .card p {
    font-size: 0.8rem !important;
  }
  .menu-cta {
    display: none !important;
  }
 }

@media (max-width: 575.98px) { ... }
