@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;600;700&display=swap");

:root {
  --primary-color: #4466e0;
  --primary-color-dark: #4466e0;
  --text-dark: #41484e;
  --text-light: #41484e;
  --extra-light: #eaeafd;
  --white: #ffffff;
  --max-width: 1200px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 5px;
  font-size: 3rem;
  font-weight: 900;
  color: #4466e0;
  text-align: center;
}

.section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-light);
  text-align: justify;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  white-space: nowrap;
  color: #fff;
  background-color: #fd94c5;
  border-radius: 5rem;
  transition: 0.3s;
  cursor: pointer;
  border: 2px solid #fd94c5;
  font-weight: 600;
}

.btn:hover {
  background-color: #fff;
  color: #fd94c5;
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}


html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
}

.limite {
  padding: 10px;
  color: #41484e;
  text-align: center;
  font-style: italic;
}

/* NAV déjà existante */
nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}

.nav__logo img {
  height: 50px;
}

.nav__btns {
  display: flex;
}


/* 🔥 Style du compte à rebours */
.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;

  align-items: center;
}

.time-box {
  background: #fff;
  color: #4466e0;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.09);
  text-align: center;
  min-width: 70px;
}

.time-box span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}

.time-box small {
  font-size: 0.8rem;
  color: #41484e;
}


header {
  margin-top: 5rem;
  padding-inline: 1rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;

}

.header__container {
  display: grid;
}

header::before {
  position: absolute;
  content: "";
  height: 100%;
  width: calc(100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("https://27091425.fs1.hubspotusercontent-eu1.net/hubfs/27091425/Site%20web%20-%20VIVALTIS/Images/Page%20webinaire%20sonde%20TULIPE/header-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 3rem;
  z-index: -1;
  box-shadow: 0 0 8px #0000000c;

}

.header__content {
  padding: 4rem 1rem;
}

.header__content p {
  margin-bottom: 5px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #8db5fd;
  text-align: center;
}

.header__content h1 {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 3rem;
  color: #4466e0;
  line-height: 4rem;
  text-align: center;
}

.header__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header__btns .btn {
  padding: 1rem 2rem;
}

.header__btns a {
  padding: 9px 15px;
  font-size: 1.5rem;
  color: #fd94c5;
  background-color: var(--white);
  border-radius: 100%;
  cursor: pointer;
}

.header__btns a:hover {
  color: var(--white);
  background-color: #fd94c5;
}



/* Modal */
.modal {
  display: none;
  /* caché par défaut */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  background: white;
  padding: 20px;
  max-width: 800px;
  width: 90%;
  border-radius: 18px;
  text-align: center;
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-content video {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 18px;
  margin-top: 35px;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 15px;
  font-size: 35px;
  color: #fd94c5;
  cursor: pointer;
}

.modal .subscribe-btn {
  margin-top: 15px;
  padding: 10px 20px;
  background: #fd94c5;
  border: 2px solid #fd94c5;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  width: 90%;
  font-weight: 600;
}

.modal .subscribe-btn:hover {
  background: #fff;
  color: #fd94c5;
}


/*Bandeaux counter*/
@keyframes softPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.8;
  }
}

@keyframes subtleGlow {

  0%,
  100% {
    box-shadow: 0 2px 8px rgba(68, 119, 209, 0.05);
  }

  50% {
    box-shadow: 0 4px 20px rgba(68, 119, 209, 0.15);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

/* Global banner container */
.tulipe {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0rem 1rem;
  margin-top: 60px;
}

.medical-banner {
  margin-bottom: 25px;
  width: 100%;
  background: linear-gradient(135deg, #d7e5fd 0%, #fff0f7 50%, #fce6f0 100%);
  position: relative;
  padding: 12px 5px;
  border-bottom: 1px solid rgba(68, 119, 209, 0.1);
  box-shadow: 0 2px 8px rgba(68, 119, 209, 0.05);
  border-radius: 100px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: subtleGlow 4s ease-in-out infinite;
  overflow: hidden;
  max-width: 800px;
}

.medical-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 6s ease-in-out infinite;
}

.tulip-rain-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.tulip {
  position: absolute;
  top: -60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  /* ✅ boucle infinie */
  will-change: transform;
}

/* Animations */

@keyframes tulipFallSpin {
  0% {
    transform: translateY(-60px) rotate(0deg);
  }

  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}

@keyframes tulipFallWindy {
  0% {
    transform: translateX(0px) translateY(-60px) rotate(0deg);
  }

  50% {
    transform: translateX(20px) translateY(45vh) rotate(180deg);
  }

  100% {
    transform: translateX(0px) translateY(100vh) rotate(360deg);
  }
}


/* Tag "Innovation Médicale" */
.medical-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(251, 174, 210, 0.3);
  color: #4477d1;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

/* Content inside the banner */
#banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
  height: 100px;
}

/* Device images */
.device-img {
  width: 70px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(rgba(68, 119, 209, 0.15) 0px 2px 4px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
}

.device-img:nth-child(1) {
  animation: slideInFromLeft 1s ease-out;
  animation-delay: 0s, 0s;
}

.device-img:nth-child(5) {
  animation: slideInFromRight 1s ease-out;
  animation-delay: 0s, 0.s;
}


/* Dots between elements */
.pulse-dot {
  width: 6px;
  height: 6px;
  background: #fd94c5;
  border-radius: 50%;
  margin: 0 4px;
  animation: softPulse 2s ease-in-out infinite;
}

.pulse-dot:nth-child(2) {
  animation-delay: 0.5s;
}

.pulse-dot:nth-child(4) {
  animation-delay: 1s;
}

/* Responsive design */
@media screen and (max-width: 900px) {
  .medical-banner {
    height: 150px;
  }
}

/* Responsive design */
@media screen and (max-width: 620px) {
  .medical-banner {
    height: auto;
  }

  #banner-content {
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }

  .device-img {
    width: 45px;
  }

  .device-img:nth-child(1) {
    animation: gentleFloat 3s ease-in-out infinite;
  }

  .device-img:nth-child(5) {
    animation: gentleFloat 3s ease-in-out infinite;
    animation-delay: 1.5s;
  }
}

/* Subtle loading animation on page load */
@keyframes bannerEntry {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.medical-banner {
  animation: bannerEntry 0.8s ease-out, subtleGlow 4s ease-in-out infinite 1s;
}

.counter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  border-radius: 25px;
  font-size: 20px;
  font-weight: 600;
  color: #4477d1;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out 0.8s both;
}

.counter-badge span {
  font-weight: 800;
  font-size: 18px;
  color: #fd94c5;
  /* rouge pour attirer l'œil */
  margin-right: 6px;
}


.destination__container :is(.section__header, .section__description) {
  text-align: center;
  margin-inline-start: unset;
}

.destination__container p,
.journey__container p {
  text-align: center;
  color: #41484e;
}

.destination__container {
  padding-top: 30px;
}

.destination__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem 1rem;
}

.destination__card img {
  border-radius: 1.5rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.destination__card__details {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.destination__card__details h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #4466e0;
}

.destination__card__details p {
  columns: var(--text-light);
}

.destination__card__details .justify {
  text-align: justify;
}

.destination__rating {
  padding: 5px 10px;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 1rem;
  transition: 0.3s;
}

.destination__card:hover .destination__rating {
  background-color: var(--primary-color-dark);
}

.journey__container {
  padding-top: 0;
}

.journey__grid {
  margin-top: 2rem;
  display: grid;
  gap: 0 1rem;
}

.journey__card {
  position: relative;
  isolation: isolate;
  padding-top: 4rem;
  overflow: hidden;
}

.journey__card:hover {
  cursor: pointer;
}

.journey__card:hover .journey__card__bg h4 {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.journey__card__bg {
  padding: 2rem;
  background-color: var(--extra-light);
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}

.journey__card__bg span {
  display: inline-block;
  margin-bottom: 4rem;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.journey__card__bg h4 {
  font-size: 1.2rem;
  transition: all 0.3s ease-in-out;
  font-weight: 600;
  color: #000;
}

.journey__card__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: var(--primary-color);
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
  transition: 0.3s;
}

.journey__card.active .journey__card__content {
  top: 0;
}

.journey__card__content span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 7px 9px;
  font-size: 1rem;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 100%;
}

.journey__card__content h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.journey__card__content p {
  color: #fff;
  text-align: justify;
  font-size: 15px;
}

.showcase__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
}

.showcase__image img {
  max-width: 400px;
  margin-inline: auto;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.showcase__content h4 {
  margin-bottom: 2rem;
  font-size: 3rem;
  font-weight: 600;
  color: #4466e0;
}

.showcase__content p {
  margin-bottom: 1rem;
  color: var(--text-light);
  text-align: justify;
}

.showcase__content .btn {
  width: 100%;
  margin-top: 2rem;
  padding: 1.5rem;
  font-weight: 600;
  color: #fff;
  background-color: #fd94c5;
  border-radius: 15px;
  font-size: 18px;
  border: 2px solid #fd94c5;
  transition: all 0.3s ease-in-out;
}

.showcase__content .btn:hover {
  background-color: #fff;
  color: #fd94c5;
}


.banner__container {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.banner__card {
  padding: 2rem 1rem;
  text-align: center;
  background-color: var(--extra-light);
  border-radius: 2rem;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.banner__card h4 {
  font-size: 5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.banner__card p {
  color: var(--text-light);
}

.discover__container {
  background-color: #eaeafd;
  text-align: center;
  border-radius: 30px;
}

.discover__container p {
  text-align: center;
  color: #41484e;
}

.discover__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.discover__card {
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  border-radius: 1rem;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.discover__card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  transform: scale(1.01);
}

.discover__card span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 10px 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: rgba(40, 135, 255, 0.1);
  border-radius: 100%;
}

.discover__card h4 {
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
}

.destination__card p {
  color: var(--text-light);
  text-align: center;
}

#inscriptionModal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

#inscriptionModal.show {
  display: flex;
}

#inscriptionModal .modal-content {
  background: #fff;
  padding: 35px 15px 35px 15px;
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

#inscriptionModal input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 2px solid #eaeafd;
  border-radius: 25px;
  font-size: 15px;
}

#inscriptionModal textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 2px solid #eaeafd;
  border-radius: 25px;
  font-size: 15px;
}

#inscriptionModal button.btn {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  background: #4466e0;
  color: #fff;
  font-weight: bold;
  margin-top: 20px;
  border: 1px solid #4466e0;
  box-shadow: 0 4px 8px #00000016;
  transition: all 0.3s ease-in-out;
}

#inscriptionModal button.btn:hover {
  background: #fff;
  color: #4466e0;
}

#inscriptionModal .whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
}

#inscriptionModal .whatsapp-btn:hover {
  background: #1ebc57;
}



/*---------- CALL TO ACTION ----------*/
/*---------- CALL TO ACTION ----------*/
/*---------- CALL TO ACTION ----------*/
.calltoaction {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 70px;
}

.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 90%;
  transition: all 0.5s ease;
  border-radius: 25px;
  background-color: #ffe6f2;
  height: 250px;
  box-shadow: 0 0 8px #00000012;
}

.cta:hover {
  background-color: #fd94c5;
  transform: scale(1.02);
}

.cta-first {
  height: 100%;
  width: 100%;
  transition: all 0.4s;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 15px;
}

.cta-first h2 {
  text-align: center;
  font-weight: 900;
  color: #fd94c5;
}

.cta-first p {
  text-align: center;
  line-height: 25px;
  color: #41484e;
  max-width: 700px;
  padding: 20px 8px;
}

.cta:hover .cta-first {
  height: 0px;
  opacity: 0;
}

.cta-second {
  height: 0%;
  width: 100%;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.4s;
  font-size: 0px;
  transform: rotate(90deg) scale(-1);
}

.cta:hover .cta-second {
  opacity: 1;
  height: 100%;
  font-size: 1.8rem;
  transform: rotate(0deg);
}

.cta-second a {
  text-align: center;
  display: flex;
  /* Permet à l'élément <a> de remplir l'espace */
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 900;
  width: 100%;
  /* Prend toute la largeur du conteneur */
  height: 100%;
  /* Prend toute la hauteur du conteneur */
  text-decoration: none;
  /* Supprime le soulignement par défaut */
}

.button {
  background: #fd94c5;
  color: #fff;
  color: 18px;
  font-weight: 700;
  width: 250px;
  border-radius: 25px;
  padding: 7px;
  border: 2px solid #fd94c5;
  text-decoration: none;
  text-align: center;
}

.faq {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0rem 1rem;
  margin-bottom: 60px;
}

.faq .accordion {
  max-width: 100%;
  width: 100%;
  background: #FFF;
  max-width: var(--max-width);
}

.faq .accordion .accordion-content {
  margin: 15px 0;
  border-radius: 30px;
  background: #FFF7F0;
  border: 1px solid #FFD6B3;
  overflow: hidden;
  padding: 3px 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.faq .accordion-content:nth-child(2) {
  background-color: #F0FAFF;
  border-color: #CCEEFF;
}

.faq .accordion-content:nth-child(3) {
  background-color: #FFF0F3;
  border-color: #FFCCD6;
}

.faq .accordion-content:nth-child(4) {
  background-color: #F0F0FF;
  border-color: #CCCCFF;
}

.faq .accordion-content.open {
  padding-bottom: 10px;
}

.faq .accordion-content .headerfaq {
  display: flex;
  min-height: 50px;
  padding: 0 15px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s linear;
}

.faq .accordion-content.open .headerfaq {
  min-height: 35px;
}

.faq .accordion-content .headerfaq .title {
  font-size: 18px;
  font-weight: 600;
  color: #41484e;
}

.faq .accordion-content .headerfaq i {
  font-size: 15px;
  color: #41484e;
}

.faq .accordion-content .description {
  height: 0;
  font-size: 15px;
  color: #41484e;
  font-weight: 400;
  padding: 0 15px;
  transition: all 0.2s linear;
}

@media (width > 540px) {
  .destination__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journey__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .banner__container {
    grid-template-columns: repeat(2, 1fr);
  }

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

}

@media (width > 800px) {

  header {
    margin-top: 0;
  }

  .header__container {
    grid-template-columns:
      minmax(0, 1fr) repeat(5, minmax(0, calc(var(--max-width) / 5))) minmax(0, 1fr);
  }

  .header__content {
    grid-column: 2/5;
    padding-block: 8rem;
  }

  .header__content :is(p, h1) {
    text-align: left;
  }

  .header__btns {
    justify-content: flex-start;
  }


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

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

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

  .showcase__content {
    grid-column: 2/4;
  }

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


}

@media (width > 1200px) {
  .header__content {
    padding-inline: 1rem 0;
  }

  .destination__grid {
    gap: 2rem;
  }
}

@media (max-width:930px) {
  header::before {
    background-image: url("https://27091425.fs1.hubspotusercontent-eu1.net/hubfs/27091425/Site%20web%20-%20VIVALTIS/Images/Page%20webinaire%20sonde%20TULIPE/header-bg-900px.jpg");
  }
}

@media (max-width:800px) {
  .nav__header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px 10px;
  }

  .nav__logo {
    padding-bottom: 25px;
  }


  .countdown {
    padding-bottom: 25px;
  }

  #home {
    margin-top: 0;
  }

  .nav__btns {
    display: none;
  }

}

@media (max-width:650px) {

  /*---------- CALL TO ACTION ----------*/
  /*---------- CALL TO ACTION ----------*/
  /*---------- CALL TO ACTION ----------*/
  .calltoaction {
    padding: 25px 0 0 0;
  }

  .cta {
    height: 330px;
  }

  .cta-first h2 {
    padding: 0 15px;
  }

  .cta:hover .cta-second {
    font-size: 1.5rem;
  }

  .header__content p {
    font-size: 1rem;
    text-align: center;
  }

  .header__content h1 {
    font-size: 3rem;
    line-height: 4rem;
    text-align: center;
  }

  header::before {
    border-radius: 1.5rem;

  }

  .journey__container {
    padding-top: 30px;
  }

  .pulse-dot {
    display: none;
  }

  .device-img {
    display: none;
  }

  .tulipe {
    margin-top: 30px;
  }

}

@media only screen and (max-width:480px) {

  /*---------- CALL TO ACTION ----------*/
  /*---------- CALL TO ACTION ----------*/
  /*---------- CALL TO ACTION ----------*/
  .calltoaction {
    padding: 0px 0 0 0;
  }

  .cta {
    height: 390px;
  }

  .cta-first h2 {
    padding: 0 15px;
  }


  .showcase__content h4 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
  }

  .section__header {
    margin-bottom: 10px;
    font-size: 2.2rem;
    font-weight: 700;
  }

  .discover__grid {
    margin-top: 25px;
  }

  .journey__container .section__header {
    font-size: 2.2rem;
  }

  .destination__container {
    padding-top: 0px;
  }

  .destination__grid {
    margin-top: 30px;
  }

  .header__content h1 {
    font-size: 2.3rem;
    line-height: 3rem;
    text-align: center;

  }

  header::before {
    background-image: url("https://27091425.fs1.hubspotusercontent-eu1.net/hubfs/27091425/Site%20web%20-%20VIVALTIS/Images/Page%20webinaire%20sonde%20TULIPE/header-bg-480px.jpg");
    opacity: 0.5;
  }

}

@media only screen and (max-width:366px) {

  /*---------- CALL TO ACTION ----------*/
  /*---------- CALL TO ACTION ----------*/
  /*---------- CALL TO ACTION ----------*/
  .cta {
    height: 380px;
  }

  .cta:hover .cta-second {
    font-size: 1.3rem;
  }

}