/* ===================================
   VIEW MY BOAT - CSS SIMPLIFIÉ ET CLAIR
   =================================== */

/* Reset de base */
* {
  margin: 0;
  padding: 0;
}

/* Variables CSS */
:root {
  /* Couleurs */
  --primary: #6fe5df;
  --primary-dark: #19847e;
  --secondary: #ffa564;
  --dark: #052c2a;
  --gray: #4a586d;
  --gray-light: #dce0e0;
  --bg-light: #f8fafc;
  --bg-lighter: #e2faf9;
  --white: #ffffff;

  /* Polices */
  --font-heading: 'Calistoga', serif;
  --font-body: 'Roboto', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-align: left;
}

h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(20px, 3vw, 24px); }
h4 { font-size: 18px; }

p {
  margin-bottom: 1rem;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
  text-align: left;
}


ul, ol { list-style: none; }

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

/* Container de base */
.home-page-web {
  width: 100%;
  min-height: 100vh;
  background: var(--white);
}

/* NAVIGATION */
.nav-container {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .nav {
    padding: 1rem 4rem;
  }
}

@media (min-width: 1024px) {
  .nav {
    padding: 1rem 8rem;
  }
}

.LOGO-IMG {
  height: 50px;
  position: relative;
}

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

.menu-container {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.menu-item-container,
.component-wrapper,
.div-wrapper {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  position: relative;
}

.div-wrapper {
  border: 1px solid var(--dark);
}
.div-wrapper:hover {
  background-color: #6fe5df !important;
}

.text,
.text-wrapper {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

.menu-item-divider {
  width: 100%;
  height: 3px;
  background: var(--secondary);
  border-radius: 10px;
  margin-top: 4px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

/* Animation de la ligne de menu */
.component-wrapper::after,
.menu-item-container::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--secondary);
  border-radius: 10px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

/*.xx .component-wrapper:hover::after, */
.menu-item-container:hover::after,
.menu-item-container.active::after {
  transform: scaleY(1);
}
.menu-item-container.active:hover::after {
  transform: scaleY(2);
}

/* Ligne visible pour la page active - masquée au hover d'un autre menu * /
.xx .menu-item-container.active .menu-item-divider {
  transform: scaleY(1);
}

.xx .menu-container:hover .menu-item-container.active .menu-item-divider,
.xx .menu-container:hover .component-wrapper.active::after {
  transform: scaleY(0);
}

.xx .menu-container:hover .menu-item-container:hover::after,
.xx .menu-container:hover .component-wrapper:hover::after {
  transform: scaleY(1);
}

/* Pas d'animation hover sur la page active * /
.xx .menu-item-container.active:hover::after,
.xx .component-wrapper.active:hover::after {
  transform: scaleY(1);
}
*/

/* MENU BURGER */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: 1001;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation responsive */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .menu-container.active {
    right: 0;
  }

  .menu-container > li {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .menu-item-container,
  .component-wrapper,
  .div-wrapper {
    width: 100%;
  }

  /* Bouton "Essai gratuit" visible sur mobile */
  .div-wrapper {
    order: -1;
    margin-bottom: 1rem;
  }
}

/* SECTION HERO */
.hero {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  border-radius: 24px;
  min-height: 600px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
  }
}

.container {
  padding: 2rem;
}

@media (min-width: 768px) {
  .container {
    min-width: 400px;
    max-width: 600px;
    margin: 0 -180px 0 0;
    padding: 4rem 0 4rem 4rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 8rem;
  }
}

/* Sur très grand écran, reproduire l'effet de centrage comme les autres sections */
@media (min-width: 1616px) {
  .container {
    padding-left: calc((100vw - 1400px) / 2);
  }
}

.hero-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.h {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--dark);
  line-height: 1.2;
}

.hero-description {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
}

.p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.6;
}

.xx_rectangle {
  object-fit: cover;
  flex: 1;
  width: 100%;
  height: 100%;
  max-width: none;
}

/* BOUTONS */
.BTN,
.component-3,
.component-7,
.component-8 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(111, 229, 223, 0.3);
  width: fit-content;
  white-space: nowrap;
}

.component-7 {
  background: var(--white);
  border: 1px solid var(--primary);
}

.component-8 {
  background: var(--secondary);
}

.text-2 {
  font-weight: 700;
  font-size: 16px;
}

/* FEATURES */

.feature,
.feature-2 {
  font-size: 16px;
  color: var(--dark);
}

/* TESTIMONIAL */


.testimonial-quote,
.testimonial-response {
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
}

.testimonial-quote {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* SECTIONS GÉNÉRALES */
.c-est-quoi-view-my,
.systeme-d-alarme,
.comment-a-fonctionne,
.section,
.section-2 {
  padding: 4rem 2rem;
}

@media (min-width: 768px) {
  .c-est-quoi-view-my,
  .systeme-d-alarme,
  .comment-a-fonctionne,
  .section,
  .section-2 {
    padding: 4rem 4rem;
  }
}

@media (min-width: 1024px) {
  .c-est-quoi-view-my,
  .systeme-d-alarme,
  .comment-a-fonctionne,
  .section,
  .section-2 {
    padding: 4rem 8rem;
  }
}

.c-est-quoi-view-my,
.systeme-d-alarme {
  background: var(--bg-light);
}

.section {
  background: var(--bg-lighter);
}

.info-section,
.container-4,
.container-5,
.section-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

/* TITRES DE SECTION */
.div {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
}

.h-2,

.h-3 {
  font-size: clamp(24px, 4vw, 36px);
  color: var(--dark);
  text-align: left;
}

.div-3 {
  width: 80px;
  height: 4px;
  background: var(--secondary);
  border-radius: 10px;
}

.text-wrapper-2,
.text-wrapper-3 {
  font-size: 16px;
  color: var(--gray);
  margin: 0;
  text-align: left;
}

.text-wrapper-3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 24px);
  color: var(--dark);
  text-align: left;
}

/* INFO SECTION */
.info-section-2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 16px;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .info-section-2 {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
  }

  .info-section-2 .div-2 {
    max-width: 496px;
    flex: 1;
  }

  .info-section-2 .info-section-image {
    flex: none;
  }
}

/* Quand la largeur de .div-2 devient < 296px, passer en colonne */
@media (min-width: 768px) and (max-width: 1100px) {
  .info-section-2 {
    flex-direction: column;
  }

  .info-section-2 .div-2 {
    max-width: 100%;
  }
}

.info-section-image {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

@media (min-width: 768px) {
  .info-section-image {
    gap: 2rem;
  }
}


.img,
.IMG-back-office {
  width: auto;
  height: 13em;
  background: var(--bg-light);
  border-radius: 16px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .img,
  .IMG-back-office {
    height: 16em;
  }
}

.info-section-image-3 {
  font-size: 16px;
  color: var(--gray);
  font-weight: 600;
  text-align: center;
}

.line {
  align-self: center;
  height: 20px;
  width: auto;
}

@media (min-width: 768px) {
  .line {
    height: auto;
  }
}

/* GRILLE DE CARTES */
.div-4 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 16px;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .div-4 {
    flex-direction: row;
  }
}

.component-2 {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: -webkit-fill-available;
}

.GPS-alarm-section,
.audio-alert-section,
.intrusion-detection {
  width: auto;
  height: 154px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.text-wrapper-4,
.text-wrapper-5,
.text-wrapper-6 {
  font-weight: 700;
  color: var(--dark);
}

.text-wrapper-6 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.strong-l-inqui-tude {
  font-size: 16px;
  color: var(--gray);
  line-height: 24px;
}

.text-wrapper-7 {
  font-size: 16px;
  color: var(--gray);
}

.instrument-view {
  width: 100%;
  height: 150px;
  background: var(--bg-light);
  border-radius: 12px;
  object-fit: cover;
}

/* CARTES SYSTÈME D'ALARME */

.alarm-system-wrapper {
  position: relative;
  width: 100%;
}

.alarm-system-content {
  display: flex;
  align-items: center; 
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  padding-right: 10rem;
  margin-top: 16px;
  margin-bottom: 2rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--gray-light);
  justify-content: flex-start;
  /* Force l'alignement à gauche pour permettre le scroll vers la droite */

  scrollbar-width: none;
  width: min-content;
  padding-left: 8em;
  padding-right: 8em;
  max-width: inherit;
  padding-right: 8em;
  position: relative;
  left: -8em;
}

.alarm-system-content::-webkit-scrollbar {
  height: 8px;
}

.alarm-system-content::-webkit-scrollbar-track {
  background: var(--gray-light);
  border-radius: 10px;
}

.alarm-system-content::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* Section système d'alarme avec bouton aligné à droite */
.systeme-d-alarme {
  position: relative;
}

.scroll-arrows {
  width: 100%;
  text-align: center;
}
.scroll-arrows button {
  display: inline;
}
/* Flèche de défilement alignée à droite après l'image */
.scroll-arrow {
  margin-left: auto;
  margin-right: 0;
  margin-top: 1rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.scroll-arrow-left svg {
  transform: rotate(180deg);

}
.scroll-arrow-right {
  
}

.scroll-arrow:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(111, 229, 223, 0.6);
}

.scroll-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

/* Sur mobile, ajuster la taille */
@media (max-width: 768px) {
  .scroll-arrow-down {
    width: 40px;
    height: 40px;
  }

  .scroll-arrow-down svg {
    width: 20px;
    height: 20px;
  }
}

.component-4,
.component-5,
.component-6 {
  width: 280px;
  padding: 1.5rem;
  border-radius: 24px;
  border: 2px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}

.component-4 {
  height: 450px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(5,44,42,0.6) 100%);
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

.component-5 {
  height: 420px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(5,44,42,0.6) 100%);
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}

/* Images de fond pour chaque carte */
.card-mouillage {
  background-image: linear-gradient(180deg, transparent 40%, rgba(5,44,42,0.8) 70%, rgba(5,44,42,1) 100%), url('img/au-mouillage.png');
}

.card-quai {
  background-image: linear-gradient(180deg, transparent 40%, rgba(5,44,42,0.8) 70%, rgba(5,44,42,1) 100%), url('img/a-quai.png');
}

.card-chantier {
  background-image: linear-gradient(180deg, transparent 40%, rgba(5,44,42,0.8) 70%, rgba(5,44,42,1) 100%), url('img/au-chantier.png');
}

.card-bord {
  background-image: linear-gradient(180deg, transparent 40%, rgba(5,44,42,0.8) 70%, rgba(5,44,42,1) 100%), url('img/a-bord.png');
}

.component-6 {
  background: var(--secondary);
}

.text-wrapper-8 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: rgba(175, 255, 251, 1);
  line-height: 0;
}

.strong-l-inqui-tude-2 {
  font-size: 16px;
  color: var(--bg-light);
  line-height: 24px;
  font-weight: 400;
}

.beta-test-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--dark);
}

.text-wrapper-9 {
  font-size: 16px;
  color: var(--dark);
}

.frame {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

/* COMMENT ÇA FONCTIONNE */
.how-it-works {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
}

.background-shadow {
  width: 50px;
  height: 50px;
  background: linear-gradient(145deg, var(--primary) 0%, rgba(175, 255, 251, 1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(111, 229, 223, 0.4);
  flex-shrink: 0;
}

.how-it-works-step {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--dark);
}

.how-it-works-step-2 {
  flex: 1;
}

.how-it-works-step-3 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.how-it-works-step-4 {
  color: var(--gray);
  line-height: 1.5;
}

.text-wrapper-10,
.text-wrapper-11,
.text-wrapper-12 {
  font-size: 16px;
}

.text-wrapper-11 {
  color: var(--primary-dark);
  text-decoration: underline;
}

.how-it-works-image {
  width: 100%;
  max-width: 500px;
  height: 300px;
  background: var(--bg-light);
  border-radius: 16px;
  margin: 0 auto;
  position: relative;
}

.polygon-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.help-section {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  border: 2px solid var(--secondary);
  border-radius: 24px;
}

.help-section-title {
  font-weight: 700;
  margin-bottom: 1rem;
}

/* SECTION QUI SOMMES-NOUS */
.div-5 {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.help-section-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.help-section-2 {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.6;
}

.help-section-image {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.background-border,
.background-border-2 {
  width: 250px;
  height: 350px;
  background: var(--bg-light);
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vector-2 {
  width: 100%;
  height: auto;
}

/* FORMULAIRE DE CONTACT */
.section-2 .section-wrapper > * {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.contact-form .div-4 {
  margin-top: 0;
  margin-bottom: 0;
}

.contact-form-input {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
  width: 100%;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  outline: none;
}

.contact-form-input::placeholder {
  color: var(--gray);
  opacity: 0.8;
  font-size: 16px;
}

.contact-form-textarea {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 12px;
  min-height: 150px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
  width: 100%;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--dark);
  resize: vertical;
  outline: none;
  box-sizing: border-box;
}

.contact-form-textarea::placeholder {
  color: var(--gray);
  opacity: 0.8;
  font-size: 16px;
}

.contact-form-consent {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-form-consent-2 {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--gray-light);
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  background: var(--white);
}

.contact-form-consent-2:checked {
  background: var(--primary);
  border-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23052c2a' d='M10.3 2.3L4.5 8.1 1.7 5.3l-.7.7 3.5 3.5 6.5-6.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.contact-form-consent-3 {
  font-size: 16px;
  color: var(--gray);
  line-height: 24px;
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 16px;
  line-height: 1.5;
  animation: slideIn 0.3s ease-out;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

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

.text-wrapper-13 {
  font-size: 16px;
  color: var(--gray);
}

.text-wrapper-14 {
  text-decoration: underline;
  color: var(--primary-dark);
}

/* FOOTER */
.footer {
  background: #062a29;
  color: var(--white);
  padding: 3rem 2rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 3rem 4rem;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 3rem 8rem;
  }
}

.container-6 {
  max-width: 1400px;
  margin: 0 auto;
}

.container-7 {
  max-width: 1400px;
  margin: 0;
}

.container-7 {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.div-2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.icon-noir {
  width: 60px;
  height: 60px;
  border-radius: 8px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--bg-light);
}

.footer-subtitle {
  font-size: 16px;
  color: var(--bg-light);
}

.container-8 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.text-wrapper-15 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.text-3 {
  font-size: 16px;
  color: rgba(239, 255, 254, 0.9);
}

.footer-contact-email {
  font-size: 16px;
  color: rgba(239, 255, 254, 0.9);
}

.horizontal-border {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.footer-copyright {
  font-size: 16px;
  color: var(--gray-light);
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .info-section-2 {
    grid-template-columns: 1fr 1fr;
  }

  .how-it-works {
    grid-template-columns: 1.5fr 1fr;
  }

  .div-5 {
    grid-template-columns: 1fr 1fr;
  }

  .container-7 {
    grid-template-columns: repeat(3, 1fr);
  }
}

