@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter/Inter_18pt-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter/Inter_24pt-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter/Inter_28pt-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter/Inter_28pt-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg-gray: #F5F5F5;
  --color-dark-green: #005F4E;
  --color-green: #08A48E;
  --color-teal: #00C8E9;
  --color-dark-blue: #17363F;
  --color-red: #E90800;
  --color-card-blue: #176284;
  --color-card-purple: #6C4E71;
  --color-card-red: #B05D63;
  --color-card-dark-red: #502B36;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-border: rgba(23, 54, 63, 0.08);
  --font-primary: 'Inter', Arial, sans-serif;
  --shadow-light: 0 8px 8px -4px rgba(23, 54, 63, 0.15), 0 4px 6px -4px rgba(23, 54, 63, 0.25);
  --shadow-medium: 0 10px 32px -4px rgba(23, 54, 63, 0.25), 0 6px 14px -6px rgba(23, 54, 63, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-primary);
  color: var(--color-black);
  background-color: var(--color-bg-gray);
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  transition: color 0.2s ease;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.invisible-link,
.invisible-link:hover,
.invisible-link.active {
  color: inherit;
  text-decoration: none;
  margin: auto;
  padding: auto;
}
.top-menu-padding {
  padding-top: 7.5em !important;
}
.site-header {
  width: 100%;
  position: absolute;
  top: 0;
}
.navbar {
  padding: 0.75rem 0;
}
.navbar.white {
  background-color: var(--color-white);
}
.navbar-brand svg {
  display: block;
}
.nav-link {
  font-family: var(--font-primary);
  font-weight: 400;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--color-green) !important;
}
.navbar-collapse {
  display: flex !important;
  flex-grow: 1;
  flex-basis: 0;
  align-items: center;
}
.navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar-nav.ms-auto {
  margin-left: auto;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1050;
  position: relative;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-dark-blue);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
body.menu-open .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.green-text {
  color: var(--color-green);
}
.middle-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
}
.hero {
  background:
    radial-gradient(ellipse 32% 85% at 62% 28%,
      rgba(83, 209, 186, 0.65) 0%,
      rgba(245, 245, 245, 0.65) 80%),
    var(--color-bg-gray);
  padding: 5rem 0;
  overflow: hidden;
}
.hero-image {
  max-height: 50vh;
  display: flex;
  justify-content: center;
}
.hero-image img {
  object-fit: contain;
}
.hero-tagline {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-green);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.hero h1 {
  font-weight: 900;
  font-size: 4.5rem;
  color: var(--color-black);
  margin-bottom: 0.75rem;
  line-height: 1em;
}
.hero-description {
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--color-black);
  max-width: 700px;
  margin: 0 auto 2rem;
}
.btn-hero {
  background-color: var(--color-green);
  border: none;
  color: var(--color-white);
  font-weight: 500;
  font-size: 1.25rem;
  padding: 1rem 2.2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: background-color 0.3s ease, opacity 0.2s ease, transform 0.2s ease;
}
.btn-nav {
    background-color: var(--color-green);
    border: none;
    color: var(--color-white);
    font-weight: 500;
    padding: 0.4rem 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: background-color 0.3s ease, opacity 0.2s ease, transform 0.2s ease;
    margin: 0 0 0 15px;
}
.btn-hero:hover, .btn-nav:hover {
  background-color: var(--color-teal);
  opacity: .85 !important;
  color: var(--color-white);
  transform: translateY(-2px) !important;
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--color-white);
    background-color: var(--color-green);
    border-color: transparent;
    box-shadow: var(--shadow-medium);
}
.section-title {
  font-weight: 500;
  font-size: 3rem;
  color: var(--color-dark-blue);
  line-height: 1.2;
  letter-spacing: -0.0055em;
}
.section-title-light {
  color: var(--color-white);
}
.section-title-green {
  color: var(--color-dark-green);
}
.section-title-bold {
  font-weight: 700;
}

.advantages {
  padding: 5rem 0;
}
.advantage-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  padding: 3rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}
.advantage-card:hover {
  transform: translateY(-4px);
}
.advantage-icon {
  width: 5rem;
  height: auto;
  max-height: 5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: var(--color-green);
}
.advantage-icon i {
  font-size: 2.5rem;
  color: var(--color-white);
}
.advantage-card h3 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  color: var(--color-dark-green);
}
.advantage-card p {
  color: var(--color-black);
  margin-bottom: 0;
}
.one {
  display: block;
  background-color: var(--color-green);
  height: 2em;
  width: 2em;
  line-height: 2em;
  border-radius: 50%;
}

.strip {
  padding: 3rem 0;
  border-radius: 20px;
  text-align: center;
}
.strip-dark {
  background-color: var(--color-dark-green);
  color: var(--color-white);
}
.strip-dark h2 {
  font-weight: 400;
  font-size: 3rem;
}
.strip-light {
  background-color: var(--color-white);
  color: var(--color-dark-blue);
}
.strip-light h2 {
  font-weight: 400;
  font-size: 3rem;
}

.tests-section {
  padding: 4rem 0;
}
.tests-section .section-title {
  margin-bottom: 2rem;
}
.test-categories {
  list-style: none;
  padding: 0;
}
.test-categories li {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 2.25;
  color: var(--color-black);
}
.test-categories li:last-child{
  margin-top: 2em;
}
.test-categories li a {
  text-decoration: none;
  color: inherit;
}
.test-categories li .bi-arrow-right {
  color: var(--color-dark-blue);
  margin-right: 0.75rem;
  font-size: 1rem;
}

.tests-section .link-all {
  background-color: var(--color-green);  
  color: var(--color-white);
  border: none;
  font-weight: 500;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.link-all:hover {
  background-color: var(--color-dark-green);
  color: var(--color-white);
  transform: translateY(-2px);
}

.test-device-img {
  max-width: 100%;
  height: auto;
}

.screenshot-section {
  padding: 5rem 0;
}
.screenshot-wrapper {
  position: relative;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--color-white);
  width: 100%;
}
.screenshot-wrapper video {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2;  
  background-color: rgba(11, 11, 11, .6);
  padding: 1rem;
  border-radius: 50%;
}
.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1 !important;
  transition: opacity 0.5s ease-out;
}
.play-button.is-hidden {
  opacity: 0;
}
.play-button i {
  font-size: 4rem;
  color: var(--color-white);  
  line-height: 1;
}

.materials-section {
  text-align: center;
  cursor: pointer;

  & h2 {
    color: var(--color-white);
    font-size: 2.5rem;
  }
  & h2 i {
    margin-right: 0.5rem;
    vertical-align: middle;
  }
}
.green-icon {  
  width: 5rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-green);

  & i {
    font-size: 2.5rem;
    color: var(--color-white);
  }
}
.company-section {
  padding: 5rem 0;
  background: linear-gradient(0deg, var(--color-dark-green) 50%, var(--color-bg-gray) 50%);
}
.company-card {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: var(--shadow-light);
  padding: 2.5rem;
  border: none;
}
.company-card .company-name {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
  color: var(--color-black);
  margin-bottom: 1rem;
  letter-spacing: -0.0055em;
}
.company-card .company-desc {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6875;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

.company-card .link-about {
  background-color: var(--color-green);  
  color: var(--color-white);
  border: none;
  font-weight: 500;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block;
  width: fit-content;
  margin-top: 2em;
}
.link-about:hover {
  background-color: var(--color-dark-green);
  color: var(--color-white);
  transform: translateY(-2px);
}
.company-card .company-photo-1 {
  width: 70%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 0;
}
.company-card .company-photo-2 {
  display: block;
  width: 35%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.company-images {
  position: relative;
  padding-bottom: 100px;
}

.cta-section {
  padding: 5rem 0 8rem;
}
.cta-section h2 {
  font-weight: 500;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
.cta-section h2 .highlight {
  font-weight: 300;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.cta-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-cta-call {
  background-color: var(--color-green);  
  color: var(--color-white);
  border: none;
  font-weight: 500;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-cta-call:hover {
  background-color: var(--color-teal);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-cta-email {
  background-color: var(--color-white);  
  color: var(--color-green);
  border: none;
  font-weight: 500;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-cta-email:hover {
  background-color: var(--color-bg-gray);
  color: var(--color-green);
  transform: translateY(-2px);
}
.cta-divider {
  font-weight: 300;
  font-size: 1.125rem;
}

.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(23, 54, 63, 0.15);
}
.modal-header {
  padding: 1.25rem 1.5rem;
  border: none;
}
.modal-header .modal-title {
  font-weight: 500;
  font-size: 1.375rem;
  color: var(--color-dark-blue);
}
.modal-header .btn-close {
  font-size: 0.875rem;
}
.modal-body {
  padding: 1.5rem;
}
.modal-footer {
  padding: 1rem 1.5rem;
  border: none;
}
.modal-footer .btn-secondary {
  background-color: transparent;
  border: 1px solid #d0d0d0;
  color: var(--color-dark-blue);
  border-radius: 30px;
  font-weight: 400;
  padding: 0.5rem 1.5rem;
}
.modal-footer .btn-secondary:hover {
  background-color: #f0f0f0;
}
.btn-submit {
  background-color: var(--color-green);
  border: none;
  color: var(--color-white);
  font-weight: 500;
  border-radius: 12px;
  padding: 0.5rem 2rem;
  transition: background-color 0.3s ease;
}
.btn-submit:hover {
  background-color: var(--color-dark-green);
  color: var(--color-white);
}
.form-label {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-dark-blue);
  margin-bottom: 0.375rem;
}
.form-control {
  border-radius: 12px;
  border: 1px solid #d0d0d0;
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(0, 200, 233, 0.15);
}

.site-footer {
  background-color: var(--color-bg-gray);
  padding: 4rem 0 2rem;
}
.footer-logo svg {
  display: block;
}
.footer-nav-title {
  font-weight: 500;
  font-size: .9rem;
  line-height: 2;
  color: var(--color-black);
  margin-bottom: 0;
}
.footer-nav-title a, .footer-test-list a {
    text-decoration: none;
    color: inherit;
}
.footer-link {
  font-weight: 500;
  font-size: .9rem;
  line-height: 2;
  color: var(--color-green);
  text-decoration: underline;
  display: inline-block;
}
.footer-link:hover {
  color: #00b0cc;
}
.footer-test-list li {
  font-weight: 300;
  font-size: .9rem;
  line-height: 2;
  color: var(--color-black);
}
.footer-contact {
  font-weight: 300;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--color-black);
}
.footer-contact-company {
  font-weight: 500;
  font-size: .9rem;
  line-height: 2;
  color: var(--color-black);
}
.footer-contact a {
  color: var(--color-black);
  text-decoration: underline;
}
.footer-contact a:hover {
  color: var(--color-green);
}
.copyright {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 2.25;
  color: var(--color-black);
  margin-top: 3rem;
  padding-top: 1.5rem;
}
.card-white {
	background: var(--color-white);
	border-radius: 20px;
  padding: 1.5rem 2rem;
}
.p-0 {
  padding: 0;
}
.page-title {
  color: var(--color-dark-blue);
}
.resources-list {
  list-style: disc;
  padding-left: 16px;

  & li {
    color: var(--color-black);
    line-height: 2.25em;

    & a {
      color: var(--color-green);
      text-decoration: none;
    }
  }
}
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  column-gap: 1.5rem;
}
.h2-text {
  font-size: 3em;
  font-weight: 400;
}
.advantage-one {
  column-gap: 1em;

  & div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  & i {
    font-size: 1.2em;
  }
}
.company-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: space-between;  
  gap: 20px;
  margin-top: 30px;
}

.company-images-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  justify-content: space-between;  
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 50px;

  &  .company-image-container {
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }  
}
#imageModal {
  position: fixed;
  display: flex;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  z-index:9999;
  justify-content:center;
  align-items:center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;

  & span {
    position:absolute;
    top:20px;
    right:30px;
    color:white;
    font-size:40px;
    font-weight:bold;
    cursor:pointer;
  }
  & #modalImg {
    max-width:90%;
    max-height:90%;
    border: 2px solid white;
    border-radius: 20px;
  }
}

#imageModal.is-show {
  opacity: 1;
  pointer-events: all;
}

.hp {
  max-height: 0;
  visibility: hidden;
  margin: 0;
}

#contactForm .error_strings {
  font-size: 0.9em;
  line-height: 1em;
  font-weight: 400;
  color: #f16565;
}

#toast {
  visibility: hidden;
  min-width: 200px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

#toast.show {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein { from { top: 0; opacity: 0; } to { top: 30px; opacity: 0.9; } }
@keyframes fadeout { from { top: 30px; opacity: 0.9; } to { top: 0; opacity: 0; } }

/* Home logo tiles */
:root {
  --grid-cols: 8;
  --grid-gap: 16px;
  --tile-bg: #ffffff;
  --tile-radius: 8px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols), 1fr);
  gap: var(--grid-gap);
  max-width: 100%;
  margin: 0 auto;
  padding: var(--grid-gap);
  box-sizing: border-box;
}

.logo-tile {
  aspect-ratio: 1 / 1;
  background: var(--tile-bg);
  border-radius: var(--tile-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 800px) {  
  :root { 
    --grid-cols: 4;
  }
  .hamburger {
    display: flex;
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-bg-gray);
    background: rgba(241,239,235,.95);
    z-index: 999;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  body.menu-open .navbar-collapse {
    transform: translateX(0);
  }
  body.menu-open {
    overflow: hidden;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }
  .navbar-nav .nav-link {
    font-size: 1.5rem;
    padding: 1rem 2rem !important;
  }
  .btn-nav {
      font-size: 1.5rem;
      padding: 1rem 2rem !important;
      margin: 15px 0 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1399px) {
  .container, .container-lg, .container-md, .container-sm {
      width: 95%;
      max-width: 1300px;
  }
}
@media (max-width: 1024px) {
  html {
    font-size: 14px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .section-title,
  .strip-dark h2,
  .strip-light h2,
  .cta-section h2,
  .materials-section h2,
  .h2-text {
    font-size: 2.25rem;
  }
  .advantage-card p {
    font-size: 1rem;
  }
  .materials-card .company-name {
    font-size: 1.75rem;
  }
  .materials-card .person-photo {
    width: 200px;
    height: 200px;
  }
  .btn-cta-call,
  .btn-cta-email {
    font-size: 1.25rem;
    padding: 0.6rem 1.8rem;
  }
}

@media (max-width: 992px) {
  .test-categories {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  .hero-description {
    font-size: 1.125rem;
  }
  .btn-hero {
    font-size: 1.125rem;
    padding: 0.5rem 1.5rem;
  }
  .section-title,
  .strip-dark h2,
  .strip-light h2,
  .cta-section h2,
  .materials-section h2,
  .h2-text {
    font-size: 1.75rem;
  }
  .section-title {
    text-align: center;
  }
  .advantages {
    padding: 3rem 0;
  }
  .advantage-card {
    padding: 2rem 1rem;
  }
  .advantage-icon i {
    font-size: 2.5rem;
  }
  .advantage-icon,
  .green-icon {
    width: 4rem;
    height: 4rem;
  }
  .strip {
    padding: 2rem 0;
  }
  .tests-section {
    padding: 2.5rem 0;
  }
  .test-categories li {
    font-size: 1rem;
    line-height: 2;
  }
  .materials-card {
    padding: 1.5rem;
  }
  .materials-card .company-name {
    font-size: 1.5rem;
  }
  .materials-card .company-desc {
    font-size: 1rem;
  }
  .materials-card .person-photo {
    width: 160px;
    height: 160px;
  }
  .company-images {
    padding-bottom: 0;
  }
  .company-card .company-photo-1 {
    margin: 0 auto;
  }
  .cta-section {
    padding: 0 0 3rem 0;
  }
  .cta-section h2,
  .h2-text {
    font-size: 1.5rem;
  }
  .btn-cta-call,
  .btn-cta-email {
    font-size: 1.125rem;
    padding: 0.5rem 1.5rem;
  }
  .cta-buttons {
    gap: 1rem;
  }
  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }
  .footer-contact {
    font-size: 1rem;
  }
  .navbar-brand svg {
    width: 120px;
    height: auto;
  }
  .navbar-nav.ms-auto {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .section-title,
  .strip-dark h2,
  .strip-light h2,
  .materials-section h2,
  .cta-section h2,
  .h2-text {
    font-size: 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .materials-section .green-icon {
    display: none;
  }
  .advantage-one.flex-row {
    flex-direction: column !important;
    row-gap: 2em;

    & i {
      display: none;
    }
  }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
