
:root {
  --base-h: 145;
  --base-s: 50%;
  --base-l: 56%;

  --primary-color: hsl(var(--base-h), var(--base-s), calc(var(--base-l) + 10%));
  --secondary-color: hsl(var(--base-h), var(--base-s), calc(var(--base-l) + 20%));
  --base-darker: hsl(var(--base-h), var(--base-s), calc(var(--base-l) - 5%));
  --base-lighter: hsl(var(--base-h), var(--base-s), calc(var(--base-l) + 10%));

  --tropical-gradient : linear-gradient(25deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%);

  --title-font: "Saira", sans-serif;
  --body-font: "Open Sans", sans-serif;

  /* Fluid typography */
  --font-size-large: clamp(1.5rem, 4vw, 3rem);
  --font-size-small: clamp(0.8rem, 1vw + 0.5rem, 1.1rem);
  --font-size-core: clamp(1rem, 0.5vw + 1rem, 1.25rem);

  /* Global spacing */
  --section-padding: clamp(1rem, 2vw, 2rem);

  --border-radius-default: 8px;
  --border-radius-large: 12px;
  --border-radius-pill: 9999px;
  --error-color: hsl(0, 70%, 50%);

  --url-hero: url('/img/illustrations/top-bg.png');
  --url-tech: url('/img/illustrations/tech.png');
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: clamp(4rem, 6vh, 6rem);
}

body {
  font-family: var(--body-font);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  scroll-behavior: smooth;
  font-size: var(--font-size-core);
}

h1, h2, h3, h4, h5, h6 {
}

h2 {
  font-size: var(--font-size-large);
  line-height: 1;
}

.text-h2 {
    font-size: clamp(2rem, calc(2rem + 1 * ((100vw - 23.4375rem) / 66.5625)), 3rem);
    line-height: clamp(2.28rem, calc(2.28rem + 1.2 * ((100vw - 23.4375rem) / 66.5625)), 3.48rem);
    letter-spacing: clamp(-.03em, calc(-.03em + .02 * ((90rem - 100vw) / 66.5625)), -.01em);
    font-weight: 500;
    margin: 1rem 0;
}

h4 {
    font-size: clamp(1rem, calc(1rem + .125 * ((100vw - 23.4375rem) / 66.5625)), 1.125rem);
    line-height: clamp(1.25rem, calc(1.25rem + .235 * ((100vw - 23.4375rem) / 66.5625)), 1.485rem);
    letter-spacing: -.01em;
    font-weight: 500;
}

a {
  text-decoration: none;
  transition: color 0.3s, font-weight 0.3s;
  color: inherit;
}

a:hover {
  font-weight: bold;
}

a:visited {
  color: inherit;
}

button{
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  padding: 0;
}

/* Hero section image background */
#hero {
  background-image: var(--url-hero);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: 200% 200%;
  transition: background-position 0.5s ease;
  margin: 3rem;
  border-radius: var(--border-radius-default);
  margin-top: auto;
}

#hero:hover {
  background-position: 100% 50%;
}

header {
  color: var(--base-darker);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background-color .3s, box-shadow .3s, color .3s;
}

header.scrolled {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.017);
}

.drawer-menu.onHero a {
  color: white!important;
}

#txt-logo.onHero {
  fill: white!important;
}

#aile-gauche {
  transform-box: fill-box;
  transform-origin: 100% 100%;
}

header .main-header {
  padding: 0.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 1rem;
  background-color: inherit;
  box-shadow: inherit;
  position: relative;
}

@media screen and (max-width: 48em) {
  header .main-header {
    padding: 1rem 2rem;
    grid-template-columns: 1fr 1fr auto;
  }
  header .header-inner-box:last-child {
    margin-right: 0!important;
  }
  header .header-inner-box:first-child {
    margin-left: 0!important;
  }
  #hero{
    margin: 1rem!important;
    margin-top: 0!important;
  }
    .why-us-section {
      flex-direction: column!important;
  }
  .why-us-section {
    margin: 0px!important;
    padding: 0px!important;
  }
  .why-us-right .card:first-child {
  padding-left: 50px;
  }
  .why-us-right .card {
    margin-right: 1rem!important;
  }
  .footer-border::before {
    max-width: 240px!important;
    left: 20%!important;
  }
  .footer-container {
    margin: 3rem 3rem!important;
  }
}

g.txt-logo{
  fill: black;
}

g.txt-logo-white{
  fill: white!important;
}

.main-header .logo {
  max-width: clamp(8rem, 20vw, 15rem);
  margin-bottom: -9px;
}

header .header-inner-box:last-child{
  justify-self: end;
  margin-right: 80px;
}

header .header-inner-box:first-child {
      margin-left: 80px;
  }

.project-ask{
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-pill);
    transition: all 0.3s;
    width: fit-content;
    background-image: var(--url-hero);
    background-size: 430%;
    background-position: 32% 34%;
    filter: grayscale(0);
}

.project-ask:hover {
  background-position: 32% 34%;
  filter: grayscale(1);
  transform: translateY(-0.125rem);
  cursor: pointer;
}

.project-ask a{
  color: white;
  text-decoration: none;
  font-weight: bold;
}

header nav a {
    font-size: .875rem;
    line-height: .875rem;
    letter-spacing: 0px;
    font-weight: 500;
    border-radius: var(--border-radius-default);
    transition: color 0.3s, background 0.5s;
    padding: 0.5rem 1rem;
    font-weight: normal;
    color: black !important;
}

header nav a:hover {
  color: black !important;
  background: rgba(0, 0, 0, 0.04);
  font-weight: normal;
}

section {
  padding: var(--section-padding);
  background-color: white;
  padding-bottom: 0;
}

.section-content {
  max-width: min(min(100ch, 90vw));
  margin: 0 auto;
  transition: all 0.5s ease;
}

footer {
  position: relative;
  background: var(--tropical-gradient);
  text-align: center;
  padding: 1rem;
  color: white;
  overflow: hidden;
}

.footer-border {
  position: relative;
  padding: 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  border-radius: var(--border-radius-default);
  min-height: 50px;
}

.footer-border::before {
    content: url(/img/logo/logo-picto.svg);
    position: absolute;
    top: 50px;
    left: 0px;
    z-index: 10;
    max-width: 400px;
    width: 100%;
    pointer-events: none;
}

.footer-logo-overlay {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-60%, 40%);
  width: 100%;
  height: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 2fr));
  gap: 2rem;
  margin: 3rem 0;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(10svh);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10svh);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardInleft {
  from {
    opacity: 0;
    transform: translateY(10svh) translateX(-20svh);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

@keyframes cardInright {
  from {
    opacity: 0;
    transform: translateY(10svh) translateX(20svh);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.fade-in {
  animation: fadeIn both linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.left-entry {
  animation: cardInleft both linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.right-entry {
  animation: cardInright both linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10svh);
  }
}

.fade-out {
  animation: fadeOut both linear;
  animation-timeline: view();
  animation-range: exit 0% cover 30%;
}

.card-container .card{
  background: white;
  border-radius: var(--border-radius-default);
  transition: transform 0.3s;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: cardIn both linear;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.card-container .card .icon-img {
  width: clamp(8rem, 20vw, 12rem);
  height: clamp(8rem, 20vw, 12rem);
  border-radius: var(--border-radius-default);
  background: var(--base-lighter);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: scale 0.3s ease;
}

.card-container .card:hover {
  transform: translateY(-0.3125rem);
  cursor: pointer;
}


.card-container .card:hover .icon-img img  {
  scale: 1.1;
}

.card-content p{
  font-size: .875rem;
  line-height: 1.225rem;
}

#hero h2 {
  color: white;
}
.span-label-light {
  color: var(--secondary-color);
  background: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-default);
  font-size: var(--font-size-small);
  display: block;
  width: fit-content;
  line-height: normal;
}

.span-label-dark {
  color: white;
  background: var(--base-darker);
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-default);
  font-size: var(--font-size-small);
  display: block;
  width: fit-content;
  line-height: normal;
}

/* Drawer menu styles */
.nav-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: black;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: min(80vw, 10rem);
  background: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

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

.drawer-menu.open {
  transform: translateX(0);
}

.drawer-menu a {
  margin: 0;
  opacity: 0;
  transform: translateX(-1rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.drawer-menu.open a {
  opacity: 1;
  transform: translateX(0);
}

.drawer-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.drawer-menu.open a:nth-child(2) { transition-delay: 0.1s; }
.drawer-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.drawer-menu.open a:nth-child(4) { transition-delay: 0.2s; }

.drawer-menu.closing a:nth-child(1) { transition-delay: 0.2s; }
.drawer-menu.closing a:nth-child(2) { transition-delay: 0.15s; }
.drawer-menu.closing a:nth-child(3) { transition-delay: 0.1s; }
.drawer-menu.closing a:nth-child(4) { transition-delay: 0.05s; }

@media (min-width: 48em) {
  .nav-toggle {
    display: none;
  }

  .drawer-menu {
    position: static;
    height: auto;
    width: auto;
    transform: none;
    background: transparent;
    flex-direction: row;
    gap: 1rem;
    padding: 0;
  }

  .drawer-menu a {
    opacity: 1;
    transform: none;
  }
}

.text-cta {
    font-size: .875rem;
    line-height: .875rem;
    letter-spacing: 0;
    font-weight: 500;
}

section#tech{
    background-image: var(--url-tech);
    padding: 3rem 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    margin: 2.5rem 0;
    color: white;
    background-size: 130%;
    min-height: 50vh;
}

.tech-container{
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(0.5rem, 1vw, 2rem);
  justify-content: center;
  align-items: center;
  text-align: center;
}


.tech-img {
  width: 60%;
  height: auto;
  background: rgba(255, 255, 255, 0.502);
  border-radius: var(--border-radius-default);
  transition: transform 0.3s ease;
  margin: 0 auto;
}

.tech-img img {
  padding: clamp(0.5rem, 1vw, 2rem);
}

.faq-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 2fr));
    gap: 2rem;
}

.faq-left {
  flex: 1;
  position: relative;
}

.faq-left img {
    width: 750px;
    height: auto;
    margin-bottom: 1rem;
    position: absolute;
    top: 50%;
    left: -50%;
    border-radius: var(--border-radius-default);
}

.faq-right {
  flex: 1;
}

.faq-item {
  padding-bottom: 1em;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  margin-top: 1em;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-question {
  display: block;
  padding: 1em;
  padding-right: 4rem;
  cursor: pointer;
  position: relative;
  font-size: clamp(1rem, calc(1rem + .125 * ((100vw - 23.4375rem) / 66.5625)), 1.125rem);
  line-height: clamp(1.25rem, calc(1.25rem + .235 * ((100vw - 23.4375rem) / 66.5625)), 1.485rem);
  letter-spacing: -.01em;
  font-weight: 500;
}
.faq-question::after {
    content: "▼";
    position: absolute;
    right: clamp(0.5em, 1vw, 1em);
    transition: transform 0.3s;
    top: 35%;
    color: black;
    border-radius: var(--border-radius-default);
    transition: all 0.3s;
    width: 1.5em;
    height: 1.5em;
    padding: 0.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    background: #00000026;
}

.faq-question:hover::after {
  background: #00000015;
  transform: translateY(-0.125rem);
}

.faq-item input:checked + .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  font-size: .875rem;
  line-height: 1.225rem;
  overflow: hidden;
  background: #fff;
  padding: 0 1em;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item input:checked + .faq-question + .faq-answer {
  max-height: 400px; /* ajustable selon besoin */
  padding: 1em;
}

#why-us{
  padding: 2rem 0;
}

.why-us-section {
  display: flex;
  overflow: hidden;
  padding: 0px 0px 0px 50px;
  max-width: 100%;
}

.why-us-left {
  flex: 1;
  padding: 2rem;
}
.cta-button {
  margin-top: 1rem;
  border: none;
  background: #333; color: #fff;
  cursor: pointer;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-pill);
  transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
  background: #555;
  color: #fff;
}

/* Conteneur horizontal */
.why-us-right {
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.why-us-right .cards {
  display: flex;
}
.why-us-right .card {
  flex: 0 0 70%;
  margin-right: 2rem;
  scroll-snap-align: center;
  border-radius: 8px;
  min-width: 300px;
  max-width: 350px;
  position: relative;
  font-size: .875rem;
  line-height: 1.225rem;
}
.why-us-right .card:last-child {
  padding-right: 150px;
}

.why-us-right .card .card-img{
  width: 100%;
  height: 500px;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-radius: var(--border-radius-default);
  overflow: hidden;
}

.why-us-right .card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: grayscale(0);
}

.why-us-right .card:hover .card-img img {
  transform: scale(1.05);
  filter: grayscale(1);
}

/* Performance */
.why-us-right { scroll-behavior: smooth; touch-action: pan-x; }

.text-meta {
    font-size: .875rem;
    line-height: 1.225rem;
}

.col2-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 2fr));
    gap: 2rem;
    margin: 3rem 0;
}

.col1-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.margin-auto-center {
    margin: 0 auto;
}

.margin-auto{
    margin: auto;
}
/* Contact modal styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  backdrop-filter: blur(9px);
  background: rgb(255 255 255 / 86%);
  z-index: 2000;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
}

.modal-overlay:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-container {
    position: relative;
    max-width: 570px;
    background: #fff;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    height: 100%;
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 6rem;
    overflow-y: auto;
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.modal-container .text-h2 {
  text-align: center;
}

.modal-container .text-meta {
  text-align: center;
  margin-bottom: 2rem;
}
.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: clamp(1rem, 4vw, 1.3rem);
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    margin: 2rem;
    border-radius: var(--border-radius-default);
    z-index: 999;
}

@media screen and (max-width: 48em) {
  .modal-close {
    margin: 0.5rem;
    background: rgba(0, 0, 0, 0.1);
  }
  .modal-close:hover {
    background: rgba(0, 0, 0, 0.4);
  }
  .contact-form {
    margin: 1.5rem!important;
  }
  .contact-img {
    width: 90%!important;
    margin: 0 auto!important;
  }
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
  margin: 2rem;
}
.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form .form-field-group-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.contact-form label {
  font-size: .875rem;
  line-height: 1.225rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.contact-form .required-indicator {
  color: var(--primary-color);
  margin-left: 0.25rem;
}
.contact-form .error-message {
  display: none;
  font-size: .75rem;
  line-height: 1rem;
  color: var(--error-color);
  margin-top: 0.25rem;
}
.contact-form .form-field.invalid .error-message {
  display: block;
}
.contact-form .form-field.invalid input,
.contact-form .form-field.invalid textarea,
.contact-form .form-field.invalid select {
  border-color: var(--error-color);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  box-sizing: border-box;
  padding: 0.5rem;
  height: 2.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-default);
  font-size: .875rem;
  line-height: 1.225rem;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-form textarea {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

.contact-form select:invalid {
  color: rgba(0, 0, 0, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    box-shadow: rgba(171, 229, 70, 0.1) 0px 0px 0px 3px;
    outline: none;
    border-color: var(--primary-color);
}
/* Contact form submit animation */
@keyframes fieldAbsorb {
  to {
    opacity: 0;
    transform: translateY(2rem);
  }
}

@keyframes buttonPulse {
  50% { transform: scale(1.1); }
}

@keyframes fadeInSuccess {
  from { opacity: 0; }
  to { opacity: 1; }
}

.contact-form.absorbing .form-field,
.contact-form.absorbing .form-field-group-2,
.contact-form.absorbing .full {
  animation: fieldAbsorb 0.4s forwards;
}

.contact-form.absorbing .cta-button {
  animation: buttonPulse 0.6s ease;
}

.form-success {
  text-align: center;
  padding: 2rem 0;
  animation: fadeInSuccess 0.5s ease forwards;
}
.form-success img {
  width: clamp(8rem, 20vw, 25rem);
  margin-bottom: 0rem;
}

.footer-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    gap: 2rem;
    max-width: 680px;
    margin: 3rem auto;
    text-align: left;
}

.footer-container .footer-col {
  padding: 1rem;
}

.footer-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-container ul li {
  margin-bottom: 0.5rem;
}

.footer-container ul li a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
  cursor: pointer;
  position: relative;
  padding: 0 0.25rem;
}

.footer-container ul li a:hover {
  font-weight: inherit;
}

.footer-container a::before {
  content: "";
  display: inline-block;
  width: 0;
  left: -2px;
  height: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  transition: width 0.3s ease;
  position: absolute;
  background: var(--primary-color);
  z-index: -1;
  border-radius: var(--border-radius-default);
}

.footer-container a:hover::before {
  width: 101%;
}

#budget{
    background-image: var(--url-tech);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 130%;
    background-position: 0% 0%;
    margin: 2.5rem 0;
    color: white;
    padding: 1rem;
}

#budget .section-content {
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius-large);
    padding: 4rem 4rem;
    gap: 0rem;
    margin: 5rem auto;
}

/* Breadcrumbs navigation */
.breadcrumbs {
  font-size: var(--font-size-small);
  padding: clamp(0.5rem, 1.5vw, 1rem);
  background-image: var(--url-hero);
}

.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.25rem, 1vw, 0.5rem);
  font-size: .875rem;
  line-height: 1.225rem;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  color: white;
}

.breadcrumbs li:last-child {
  font-weight: bold;
}

.breadcrumbs li + li:before {
  content: "/";
  padding: 0 0.5rem;
  color: white;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  font-weight: inherit;
}

.page-layout{
  max-width: 1200px;
  margin: 0 auto;
}

.icon-footer{
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  margin-right: 0.2rem;
}

#services .section-content {
  background: var(--tropical-gradient);
  color: white;
  padding: 1rem 1rem 3rem;
  border-radius: var(--border-radius-default);
}

.scroll-to-top {
  position: fixed;
  display: block;
  bottom: 2rem;
  right: 2rem;
  background-image: var(--url-tech);
  background-size: 250%;
  color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: var(--border-radius-default);
  padding: 0.5rem 0.5rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, filter 0.3s ease;
  font-size: var(--font-size-small);
  line-height: 1.225rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  filter: grayscale(1);
}

.scroll-to-top:hover {
  color: white;
  filter: grayscale(0);
}

.visible-scroll {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:active {
  transform: scale(0.95) translateY(4px);
}

.partners-imgs{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.partners-img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-default);
  background: white;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #00000024;
}

.partners-img:hover {
    cursor: pointer;
}

.partners-img:hover img {
    transform: scale(0.95);
}

.partners-imgs img {
    width: 100%;
    scale: 0.9;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.two-col-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 2fr));
    gap: 2rem;
}

.contact-img {
    width: 100%;
    border-radius: var(--border-radius-default);
    overflow: hidden;
}

.contact-img img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
}

.height-300 {
    height: 300px;
}

.height-auto {
    height: auto;
}

.height-100 {
    height: 100px;
}

.text-hightlight-big{
  font-size: 30vw;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin: 0;
  padding: 0;
  opacity: 0.2;
  pointer-events: none;
  user-select: none;
}