/* ==========================================================================
   FONT DECLARATIONS
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

@font-face {
  font-family: "NimbusSansStdLight";
  src: url('/media/fonts/NimbusSansStdLight/font.woff2') format('woff2'), url('/media/fonts/NimbusSansStdLight/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NimbusSansStdRegular";
  src: url("/media/fonts/NimbusSansStdRegular/font.woff2") format("woff2"), url('/media/fonts/NimbusSansStdRegular/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NimbusSansStdTBlack";
  src: url('/media/fonts/NimbusSansStdTBlack/font.woff2') format('woff2'), url('/media/fonts/NimbusSansStdTBlack/font.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-green: #00553e;
  --color-red: #e31e25;

  --font-family-light: "NimbusSansStdLight", sans-serif;
  --font-family-regular: "NimbusSansStdRegular", sans-serif;
  --font-family-black: "NimbusSansStdTBlack", sans-serif;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.6s ease;

  --shadow-light: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.125));
  --shadow-text: 1px 1px 4px rgb(0 0 0 / 10%);
}

/* ==========================================================================
   RESET AND BASE STYLES
   ========================================================================== */

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

* {
  margin: 0;
  padding: 0;
  border: none;
  text-decoration: none;
  background: none;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-light);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}



/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

.site-header {
  position: fixed;
  width: 100vw;
  z-index: 1000;
}

/* Header Navigation */
.header-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: min(5vw, 1.5rem);
}

.desktop-nav__link__active {
  border-bottom: 2px solid var(--color-white);
}

.header-nav__background {
  background: white;
  width: 100%;
  height: min(15vw, 4rem);
  position: absolute;
  z-index: 999;

  left: 0;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  pointer-events: none;
}

.header-nav__left {
  display: flex;
  gap: 5rem;
  z-index: 1001;
  align-items: center;
}

.header-nav__right {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  z-index: 1001;
}

.header-nav__scrolled {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Brand Section */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: min(20vw, 7rem);
}

.brand__logo {
  height: min(20vw, 7rem);
  object-fit: contain;
  z-index: 1000;
}

.brand__tagline {
  color: var(--color-white);
  font-weight: 300;
  font-size: min(1rem, 3vw);
  height: 2rem;
}

/* Smooth fade + slight slide for the tagline when shown/hidden on scroll */
.brand__tagline {
  transition: opacity var(--transition-normal), transform var(--transition-normal);
  will-change: opacity, transform;
}

.brand__tagline--hidden {
  opacity: 0;
  transform: translateY(-6px) scaleY(0.98);
  pointer-events: none;
}

/* Desktop Navigation */

.desktop-nav__list {
  display: flex;
  align-items: center;
}

.desktop-nav__link {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  font-family: var(--font-family-black);
  display: block;
  padding: 1rem;
}

.desktop-nav__link__under {
  border-bottom: 2px solid white;
}

.desktop-nav__item {
  display: block;
}

/* Search Form */
.search-form {
  display: flex;
  position: relative;
}

.search-form__input {
  border: solid var(--color-white);
  border-width: 1px 0;
  padding: 0.5rem 1.5rem;
  height: 2rem;
  color: var(--color-white);
  background: transparent;
}

.search-form__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-form__icon {
  width: 2rem;
  height: 2rem;
  filter: invert(1);
  position: absolute;
  right: 0;
  padding-left: 0.5rem;
  cursor: pointer;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-links__icon {
  height: min(6vw, 2rem);
  width: min(6vw, 2rem);
  transition: transform var(--transition-fast);
  aspect-ratio: 1/1;
}

.social-links__item:hover .social-links__icon {
  transform: scale(1.1);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
}

.mobile-toggle__btn {
  width: min(6vw, 2rem);
  height: min(6vw, 2rem);
  background: transparent;
  border: none;
}

.mobile-toggle__icon {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.mobile-toggle__icon--changing {
  transform: rotate(180deg);
  opacity: 0.5;
}

/* Page Header */
.page-header {
  display: flex;
  height: 35vh;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.page-header__title {
  color: var(--color-white);
  font-size: min(5vw, 4rem);
  font-weight: 300;
  position: relative;
  width: 80vw;
  text-align: left;
}

.page-header__divider {
  display: flex;
  position: relative;
  bottom: 0;
}

.page-header__divider span {
  height: 0.4rem;
  box-sizing: border-box;
}

.page-header__divider-left {
  background-color: var(--color-red);
  width: 40vw;
}

.page-header__divider-right {
  background: var(--color-green);
  width: 60vw;
}


/* ==========================================================================
   MAIN CONTENT STYLES
   ========================================================================== */

.main-content {
  width: 100%;
  background: var(--color-white);
  display: flex;
  justify-content: center;
  min-height: 60dvh;
}

.container {
  display: flex;
  flex-direction: column;
  width: 80vw;
  height: 100%;
  min-height: 50dvh;
  margin: 0 auto;
  align-items: center;
}

.section {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   MOBILE MENU STYLES
   ========================================================================== */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  background-color: var(--color-white);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.mobile-menu--active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu__list {
  width: 100%;
  text-align: center;
  padding-top: 2.5rem;
}

.mobile-menu__item {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  transition: background-color var(--transition-normal);
}

.mobile-menu__item:nth-child(odd):hover {
  background-color: var(--color-green);
}

.mobile-menu__item:nth-child(even):hover {
  background-color: var(--color-red);
}

.mobile-menu__item:hover .mobile-menu__link {
  color: var(--color-white) !important;
}

.mobile-menu__link {
  color: var(--color-black);
  font-size: min(3.5vw, 2rem);
  text-transform: uppercase;
  display: block;
  width: 100%;
  transition: color var(--transition-normal);
  padding: 1rem;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

/* Large Desktop Styles */
@media (min-width: 1920px) {
  .brand__tagline {
    font-size: 1.2rem;
  }

  .page-header__title {
    font-size: 5rem;
  }
}

/* Mobile Navigation Toggle */
@media (max-width: 1280px) {
  .container {
    width: 90vw;
  }

  .search-form {
    display: none;
  }

  .header-nav__left {
    gap: 0.5rem
  }

  .mobile-menu {
    display: flex;
    overflow: auto;
  }
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
    z-index: 1001;
    height: min(6vw, 2rem);
  }
}



@media (max-width: 600px) {
  .page-header__title {
    width: 90dvw;
  }

  .header-nav__right {
    justify-content: center;
  }

  .mobile-menu {
    padding-top: 4rem;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-shadow {
  text-shadow: var(--shadow-text);
}

.shadow {
  filter: var(--shadow-light);
}

.no-scroll {
  overflow: hidden;
}

.display-none {
  display: none !important;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-green);
  color: var(--color-white);
  padding: 8px;
  z-index: 100;
  text-decoration: none;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* ===== BEGIN: home.css ===== */
.home-section {
  background: url(media/home.webp) center/cover no-repeat;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.home-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-left: 15vw;
  height: 100%;
  padding-bottom: 10vh;
  padding-top: 20rem;
}

.home-content__left {
  height: max(40vh, 30vw);
  border-right: 0.1rem solid white;
  padding-right: 1rem;
}

.home-content__image {
  width: min(50vw, 40vh);
}

.home-content__text {
  color: white;
  text-align: left;
  font-size: clamp(1vw, 1.5vw, 3vw);
  font-weight: 600;
  text-transform: uppercase;
}

.home-content__right {
  color: white;
  margin: 0 8vw;
}

.home-content__text-main {
  font-size: clamp(0.75rem, 3vw, 2.5rem);
  font-weight: 300;
  padding-bottom: min(4vh, 1rem);
}

.home-content__text-sub {
  font-size: clamp(0.5rem, 2vw, 1.75rem);
  font-weight: 300;
}

/* ==========================================================================
  MEDIA QUERIES
  ========================================================================== */


/* Large Desktop Styles */
@media (min-width: 1920px) {
  .home-content__image {
    width: 17rem;
  }

  .home-content__left {
    height: 40rem;
  }

}

/* Mobile Navigation Toggle  (min-width: 1000px) and  */
@media (max-width: 1400px) {}

/* Mobile and Tablet Styles */
@media (max-width: 1000px) {
  .home-content {
    margin-left: 8vw;
    padding-bottom: 5vh;
  }

  .home-content__left {
    height: min(40vh, 50vw);
  }

  .home-content__right {
    margin: 0 8vw;
  }
}

/* ===== END: home.css ===== */

/* ===== BEGIN: about.css ===== */
/* ==========================================================================
  MAIN CONTENT STYLES
  ========================================================================== */
.about-header {
  background: url(media/about.webp) center/cover no-repeat;
}

#about .container {
  justify-content: space-between;
}

/* Introduction Section */
.intro {
  margin: 2.5rem 1rem;
}

.intro__text {
  color: var(--color-green);
  text-align: center;
  font-size: min(5vw, 1.75rem);
  font-weight: 300;
}

/* Statistics Section */
.statistics {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
  justify-content: center;
  transform: translateY(-2rem);
  margin: 2rem 0;
}

.statistics__line {
  width: 20rem;
  height: 0;
  border: 1px solid var(--color-red-alt);
}

.statistics__grid {
  display: flex;
  gap: 5rem;
}

/* Stat Cards */
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.stat-card__circle {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-red);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card__number {
  color: var(--color-green);
  text-align: center;
  font-family: var(--font-family-black);
  font-size: 3.5rem;
}

.stat-card__number--large {
  font-size: 5rem;
}

.stat-card__plus {
  position: absolute;
  background: var(--color-white);
  display: flex;
  right: -1rem;
  width: 2rem;
  font-size: 3.5rem;
  color: var(--color-green);
  font-family: var(--font-family-black);
  justify-content: center;
  height: 3.5rem;
}

.stat-card__label {
  width: 12rem;
  color: var(--color-green);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 300;
  position: absolute;
  top: 13rem;
}

/* Statement Section */
.statement {
  margin: 4rem;
}

.statement__text {
  color: var(--color-green);
  text-align: center;
  font-size: min(5vw, 2rem);
  font-weight: 300;
}


/* ==========================================================================
  MEDIA QUERIES
  ========================================================================== */

/* Mobile and Tablet Styles */
@media (max-width: 1000px) {
  .intro {
    margin: 2rem 0;
  }

  .intro__text {
    text-align: justify;
  }

  .statistics__grid {
    flex-direction: column;
    gap: 0;
  }

  .statement {
    margin: 0 0 2rem 0;
  }

  .stat-card__label {
    position: relative;
    top: 0;
  }

  .statistics__line {
    display: none;
  }
}

/* Mobile Navigation Toggle */
@media (max-width: 1400px) {
  .statistics {
    gap: 2rem;
    margin: 2rem 0;
  }

  /* intentionally left blank: no overrides for intro__text or statement__text at this breakpoint */

  .statistics__grid {
    align-items: center;
    gap: 2rem;
  }
}

/* Large Desktop Styles */
@media (min-width: 1920px) {

  .intro__text,
  .statement__text {
    font-size: 2rem;
  }

  .statistics__grid {
    gap: 7rem;
  }
}

/* ===== END: about.css ===== */

/* ===== BEGIN: aluminium.css ===== */
/* ==========================================================================
  MAIN CONTENT STYLES
  ========================================================================== */

.aluminium-header {
  background: url(media/aluminium.webp) center/cover no-repeat;
  background-position: right;
}

#aluminium .container {
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.selection-menu-content {
  display: flex;
  width: 100%;
  min-height: 30vh;
}

.selection-menu {
  width: 30vw;
}

.selection-menu ul {
  list-style: none;
  padding: 0;
}

.selection-menu li {
  display: block;
  padding: min(3vw, 1.5rem);
  border-bottom: 1px solid var(--color-green);
  font-family: var(--font-family-light);
  color: var(--color-green);
  text-align: left;
  font-size: min(2.5vw, 2rem);
  font-weight: 300;
}

/* Icon on the left (placeholder) */
.selection-icon--placeholder {
  width: min(6vw, 2.5rem);

  margin-right: 0.8rem;
}

/* Some SVGs set fill on the <path> directly or use fill="none" which can
  prevent the top-level svg fill from taking effect. Target the path to be
  explicit so CSS controls the visible color reliably. */
.selection-icon--placeholder path {
  fill: #a5a5a5;
}

/* Arrow on the right, hidden by default */
.selection-icon--arrow {
  width: min(6vw, 2.5rem);
  height: min(6vw, 2.5rem);
  position: absolute;
  right: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
  fill: transparent;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.selection-icon--arrow polyline {
  stroke: #E31E24;
  stroke-width: 0.0126;
  stroke-miterlimit: 22.9256;
  /* fill: none; */
}

.selection-menu li {
  position: relative;
  /* to contain absolute arrow */
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* When item is active, show arrow in red */
.selection-menu li.active .selection-icon--arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.selection-menu-description {
  display: flex;
  width: 60vw;
  flex: 1;
  height: fit-content;
}

.selection-menu-description h2 {
  margin-top: 0;
}

.description-text {
  font-size: min(3vw, 1.1rem);
  font-family: var(--font-family-light);
  color: var(--color-green);
  width: 50%;
  padding: min(2.5rem, 2.5vh) 0 0 min(2.5rem, 3vh);
}

.description-image {
  max-width: 40%;
  align-self: flex-start;
}

.description-image-big {
  display: none;
}

#squares-background {
  position: absolute;
}

.catalogue {
  padding: min(2.5rem, 2vh) 0;
}

.catalogue a {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.catalogue__icon {
  height: min(5vw, 2.5rem);
  padding-right: 0.5rem;
  fill: none;
  stroke: #00553E;
  stroke-width: 0.0197;
  stroke-miterlimit: 22.9256;
}

.catalogue__text {
  color: var(--color-green);
  text-align: center;
  font-size: min(1.8vw, 1rem);
  font-weight: 600;
}

.text-gray {
  color: #a5a5a5 !important;
}

.graphics_top {
  position: absolute;
  right: 0;
}

.graphics_bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 20rem;
}

/* ==========================================================================
  MEDIA QUERIES
  ========================================================================== */

/* Mobile and Tablet Styles */
@media (max-width: 1000px) {
  .description-image {
    display: none;
  }

  .description-image-big {
    display: unset;
    height: 20rem;
    margin-top: 2rem;
  }

  .description-text {
    width: 100%;
  }

  /* no overrides for selection-menu-content on small screens */
}

/* Mobile Navigation Toggle */
@media (max-width: 1400px) {
  /* no overrides */
}

/* Large Desktop Styles */
@media (max-width: 600px) {
  .selection-menu-content {
    min-height: 25vh;
  }
}

/* ===== END: aluminium.css ===== */

/* ===== BEGIN: plastic.css ===== */
/* ==========================================================================
  MAIN CONTENT STYLES
  ========================================================================== */

.plastic-header {
  background: url(media/plastic.webp) center/cover no-repeat;
}

#plastic .container {
  justify-content: space-between;
  overflow: hidden;
  flex: 1;
}

/* ===== END: plastic.css ===== */

/* ===== BEGIN: references.css ===== */
/* ==========================================================================
  MAIN CONTENT STYLES
  ========================================================================== */

#references .container {
  /* min-height: fit-content; */
  flex: 1;
  min-height: 100%;
}

.references-header {
  height: fit-content;
  display: flex;
  background: #f2f5fb;
  padding-top: min(8vh, 8rem);
}

.references-header .page-header__title {
  color: var(--color-green);
  width: 30vw;
  align-self: flex-end;
  padding-bottom: 1.25rem;
}

.reference-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 100%;
  width: 95%;
  flex: 1;
  padding: 2rem 0;
}

.reference-item {
  position: relative;
  overflow: hidden;
}

.reference-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow) cubic-bezier(.2, .9, .2, 1);
  aspect-ratio: 5/7;
  cursor: pointer;
}

/* 
.glightbox-supercool img {
  height: 80vh !important;
  width: auto !important;
} */

.reference-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  background: rgba(0, 85, 62, 0);
  /* transparent by default */
  transition: background var(--transition-slow), opacity var(--transition-slow), transform var(--transition-slow);
  opacity: 0;
  flex-direction: column;
  align-items: center;
}

.reference-item:focus-within .reference-overlay,
.reference-item:hover .reference-overlay {
  background: rgb(0, 85, 62, 0.75);
  /* semi-transparent green */
  opacity: 1;
}

.reference-item:focus-within .reference-image,
.reference-item:hover .reference-image {
  transform: scale(1.05);
  transition: transform var(--transition-slow);
}

.reference-overlay h3 {
  border-bottom: 1px solid white;
  font-family: var(--font-family-light);
  font-size: min(2vw, 2rem);
  font-weight: 300;
  width: 80%;
  padding-bottom: min(5vw, 1rem);
}

.reference-button {
  font-family: var(--font-family-light);
  font-size: min(2vw, 1.5rem);
  margin-top: min(5vw, 1rem);
  width: 80%;
  padding: min(5vw, 0.75rem);
  display: inline-block;
  outline: none;
  cursor: pointer;
  color: var(--color-green);
  background-color: white;
  transition: background-color 0.2s ease-in-out 0s, opacity 0.2s ease-in-out 0s;
}

.reference-button:hover {
  color: white;
  background-color: var(--color-green);
}

.reference-overlay span {
  font-family: var(--font-family-light);
  font-size: min(1.5vw, 1.5rem);
  font-weight: 300;
  width: 80%;
  padding-top: min(5vw, 1rem);
}

/* Magnifier icon positioned in the top-right of the overlay */
.reference-overlay__icon {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  height: 25%;
  opacity: 0.0;
  /* start hidden, shown on hover/focus */
  transform: translateY(-6px) scale(0.9);
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(.2, .9, .2, 1);
}

.reference-item:focus-within .reference-overlay__icon,
.reference-item:hover .reference-overlay__icon,
.reference-item.reference-item--hover .reference-overlay__icon {
  opacity: 1.0;
  transform: translateY(0) scale(1);
}

.reference-overlay__icon path,
.reference-overlay__icon circle {
  fill: white;
}

.page-header-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 80dvw;
  align-content: flex-end;
}

.page-header__text {
  font-size: 1.75rem;
  font-family: var(--font-family-light);
  color: var(--color-green);
  font-weight: 300;
  width: 25vw;
  align-self: flex-end;
  padding: 0 1rem 1.25rem 1rem;
}

.page-header-top img {
  width: 25vw;
  align-self: flex-end;
  background: #f2f5fb;
}

/* ==========================================================================
  MEDIA QUERIES
  ========================================================================== */

/* Large Desktop Styles */
@media (min-width: 1920px) {
  .page-header__text {
    font-size: 2rem;
  }
}

/* Mobile Navigation Toggle */
@media (max-width: 1400px) {
  .page-header-top img {
    width: 20vw;
  }

  .page-header__text {
    width: 30vw;
  }
}

/* Mobile and Tablet Styles */
@media (max-width: 1000px) {
  .page-header-top img {
    display: none;
  }

  .page-header__text {
    width: 50vw;
    font-size: min(3vw, 2.5rem);
  }

  .reference-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 2rem 0;
  }

  .reference-item {
    width: 40%;
  }
}

/* ===== END: references.css ===== */

/* ===== BEGIN: contact.css ===== */
/* ==========================================================================
  MAIN CONTENT STYLES
  ========================================================================== */

.contact-header {
  height: fit-content;
  padding-top: 8rem;
  background: #f2f5fb;
}

.contact_content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact_statement {
  padding: 2rem;
}

.contact_statement__text {
  font-size: 1rem;
  font-family: var(--font-family-light);
  color: var(--color-green);
}

#contact .container {
  justify-content: space-between;
  flex: 1;
}

.contact_content iframe {
  width: 100%;
  height: 100%;
  flex: 1;
}

#contact .page-header__title {
  align-self: flex-end;
  width: 30vw;
  color: var(--color-green);
  padding-bottom: 1.25rem;
}

.contact-info {
  width: 35vw;
  display: flex;
  gap: 2.5rem;
  padding-bottom: 1.25rem;
  justify-content: flex-start;
}


.contact-info-bottom {
  display: none;
}

.contact-info__left-title {
  color: var(--color-green);
  padding-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 300;
}

.contact-info__left-address {
  font-size: 1.25rem;
  font-family: var(--font-family-light);
  color: var(--color-green);
  font-style: normal;
}

.contact-info__opening {
  padding-top: 1rem;
  display: block;
}

.contact-info__right {
  font-family: var(--font-family-light);
  color: var(--color-green);
}

.contact-info__right-address {
  padding-bottom: 1.5rem;
  font-size: 1.25rem;
  font-style: normal;
}

.contact-info__right-address a {
  color: var(--color-green);
}

.contact-info__right-info {
  font-size: 0.75rem;
}

.qr-content {
  width: 15vw;
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  align-self: self-end;
  padding-bottom: 1.25rem;
}

.qr-content__element {
  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: flex-end;
  width: fit-content;
}

.qr-content__element span {
  color: var(--color-green);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
}

.qr-content__element img {
  width: 6rem;
}

/* ==========================================================================
  MEDIA QUERIES
  ========================================================================== */

/* Large Desktop Styles */
@media (min-width: 1920px) {}

/* Large Desktop Styles */
@media (max-width: 1700px) {
  .contact-info__left-title {
    font-size: 2rem;
  }

  .contact-info__left-address {
    font-size: 1rem;
  }

  .contact-info {
    gap: 1.5rem;
  }

  .contact-info__right-address {
    font-size: 1rem;
  }
}

/* Mobile Navigation Toggle */
@media (max-width: 1400px) {
  .contact-header {
    padding-top: 10rem;
  }

  .contact_content-bottom {
    display: unset;
  }

  .contact-info__left-title {
    width: 30dvw;
    font-size: min(2.5vw, 2.5rem);
    padding: min(2rem, 1vh) 0;
  }

  .contact-info__left-address {
    font-size: min(1.8vw, 1.25rem);
  }

  .contact-info {
    width: 100%;
    gap: 4rem;
    justify-content: space-between;
    padding-bottom: min(2rem, 2vh);
    display: flex;
  }



  .contact-info__right-address {
    font-size: min(2vw, 1.5rem);
    padding: min(2rem, 1vh) 0;
  }

  .contact-info__right-info {
    font-size: min(1.5vw, 1rem);
  }

  .qr-content-top,
  .contact-info-top {
    display: none;
  }

  #contact .page-header__title {
    padding-bottom: 0;
  }

  .qr-content {
    width: 100%;
    justify-content: flex-start;
    padding-top: min(2rem, 2vh);
  }

  .qr-content__element span {
    font-size: min(2vw, 1.25rem);
  }

  .qr-content__element img {
    width: min(15vw, 8rem);
  }
}

/* ===== END: contact.css ===== */


.svg_green {
  filter: brightness(0) saturate(100%) invert(21%) sepia(92%) saturate(926%) hue-rotate(117deg) brightness(95%) contrast(95%);
}

.green_text {
  color: var(--color-green);
  border-color: var(--color-green);
}

/* tiny helper for an accessible, search-friendly H1 that doesn't break layout */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px
}

.animate__delay-05s {
  --animate-delay: 0.5s;
}