/* CSS DE LA PAGE A PROPOS ET ANCIENNE HOME PAGE */

/*========== GOOGLE FONTS ==========*/

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

/*========== VARIABLES CSS ==========*/

:root {
  --header-height: 3rem;
  --nav-width: 219px;
  --hue-color: 213;
  --first-color: hsl(var(--hue-color), 38%, 40%);
  --first-color-light: hsl(var(--hue-color), 50%, 81%);
  --title-color: hsl(var(--hue-color), 24%, 17%);
  --text-color: hsl(var(--hue-color), 14%, 32%);
  --text-color-light: hsl(var(--hue-color), 38%, 60%);
  --body-color: hsl(var(--hue-color), 100%, 98%);
  --container-color: hsl(var(--hue-color), 68%, 98%);
  --white-color: hsl(var(--hue-color), 100%, 100%);
  --black-color: hsl(var(--hue-color), 0%, 0%);
  --red-color: hsl(0, 38%, 63%);
  --body-font: "Sora", sans-serif;
  --biggest-font-size: 2.5rem;
  --big-title-font-size: 2.25rem;
  --big-font-size: 1.75rem;
  --title-font-size: 1.25rem;
  --subtitle-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.75rem;
  --smaller-font-size: 0.75rem;
  --font-medium: 500;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}


/* laptop */
@media   (min-width: 1024px) and (max-width: 1440px) {
  :root {
    --biggest-font-size: 5rem;
    --big-title-font-size: 2.5rem;
    --big-font-size: 2rem;
    --title-font-size: 4.5rem;
    --subtitle-font-size: 1.2rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }

  
}

/*========== BASE ==========*/

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

::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}

/* body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
} */

h1,
h2,
h3,
h4,
h4,
h6,
ul,
p {
  margin: 0;
}

a {
  text-decoration: none;
}

/* img {
  max-width: 100%;
  height: auto;
} */

figure {
  margin: 0;
}

figure img {
  border-radius: 0.25rem;
}

/*========== DEFAULT ==========*/

.main {
  min-height: calc(10vh - 280px);
}

.section {
  /* height: 120vh; */
  position: relative;
}

.section__title-icon {
  font-size: var(--biggest-font-size);
  color: var(--first-color);
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
}

.section__title-center {
  font-size: var(--big-font-size);
  /* margin-top: 7vh; */
  margin-bottom: 3vh;
  line-height: 140%;
  text-align: center;
}

.section__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  font-style: italic;
  text-align: center;
  margin: 1rem auto;
  padding: 0 2rem;
}

.section__subtitle-alert {
  font-size: var(--subtitle-font-size);
  color: var(--red-color);
  text-align: center;
}

/* .container {
  max-width: 968px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
} */

.copyright {
  font-size: var(--big-font-size);
  color: var(--white-color);
}

.button__icon {
  transition: 0.3s;
}

.button:hover .button__icon {
  transform: translateX(0.25rem);
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}

.button--link {
  color: var(--first-color);
  font-weight: var(--font-medium);
}

.button--link:hover .button__icon {
  transform: translateX(0.25rem);
}

/*========== HOME ==========*/

.home__data {
  display: flex;
  flex-direction: column;
}

.home__video {
  display: flex;
  height: 35%;
}

.home__button__container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

.home__video-background {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  filter: brightness(50%) blur(5px);
}

.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(50%);
}

.home__container {
  display: flex;
  height: 100%;
}

.home__subtitle,
.home__title,
.home__description {
  color: var(--body-color);
}

.home__subtitle {
  font-size: var(--big-font-size);
  font-weight: var(--font-medium);
}

.home__title {
  font-size: var(--biggest-font-size);
  text-transform: uppercase;
}

.home__description {
  margin-bottom: 1rem;
  width: 70%;
}

.home__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  margin-right: 20px;
  color: var(--white-color);
  border: 2px solid var(--white-color);
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  transition: 0.75s;
  width: 170px;
}

.home__button:hover {
  transform: scale(1.1);
}

.home__button-icon {
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

.home__video-content {
  display: inline-flex;
  padding: 0.15rem;
  background-color: var(--body-color);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s;
}

.home__video-content:hover {
  transform: scale(1.1);
}

.home__video-icon {
  margin: 2px 2px 0 6px;
  font-size: 3rem;
  color: var(--first-color);
  font-weight: 400;
  line-height: 1;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
}

video {
  border-radius: 10px;
  width: -webkit-fill-available; 
}

.home__popup {
  display: none;
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  background-color: var(--first-color-light);
  padding: 0.75rem 0.75rem;
  border-radius: 1rem;
}

.home__popup-close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  display: inline-flex;
  padding: 0.35rem;
  background-color: var(--first-color);
  color: var(--first-color-light);
  font-size: 1.2rem;
  border-radius: 50%;
  cursor: pointer;
}

.home__popup-video {
  width: 360px;
  height: 204px;
  border-radius: 1rem;
}

.show-popup {
  display: block;
}

/* ANCIEN CUBE */

.home__cube {
  position: absolute;
  width: 120px;
  height: 120px;
  perspective: 1000px;
  margin: 100px auto 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
  z-index: var(--z-tooltip);
}

.home__cube-container.show-front {
  transform: translateZ(-100px) rotateY(0deg);
}

.home__cube-container.show-right {
  transform: translateZ(-100px) rotateY(-90deg);
}

.home__cube-container.show-back {
  transform: translateZ(-100px) rotateY(-180deg);
}

.home__cube-container.show-left {
  transform: translateZ(-100px) rotateY(90deg);
}

.home__cube-container.show-top {
  transform: translateZ(-100px) rotateX(-90deg);
}

.home__cube-container.show-bottom {
  transform: translateZ(-100px) rotateX(90deg);
}

.home__cube-container {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s;
}

.home__cube-face {
  position: absolute;
  width: 140px;
  height: 140px;
}

.home__cube-front {
  transform: rotateX(0deg) translateZ(70px);
  opacity: 0.85;
}

.home__cube-back {
  transform: rotateY(180deg) translateZ(70px);
  opacity: 0.85;
}

.home__cube-right {
  transform: rotateY(90deg) translateZ(70px);
  opacity: 0.85;
}

.home__cube-left {
  transform: rotateY(-90deg) translateZ(70px);
  opacity: 0.85;
}

.home__cube-top {
  transform: rotateX(90deg) translateZ(70px);
  opacity: 0.85;
}

.home__cube-bottom {
  transform: rotateX(-90deg) translateZ(70px);
  opacity: 0.85;
}

.home__dock {
  width: 100%;
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1.5rem 0 0.25rem 0;
  border-radius: 0.75rem;
  z-index: var(--z-tooltip);
  overflow: hidden;
}

.home__dock-mobile {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home__dock-mobile span {
  font-size: var(--title-font-size);
  color: var(--white-color);
  text-transform: uppercase;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.home__dock-mobile span i {
  font-size: var(--big-title-font-size);
}

.home__dock-container {
  width: 350px;
  display: flex;
  align-items: center;
  column-gap: 1rem;
  display: none;
}

.home__dock-home,
.home__dock-metier,
.home__dock-communication,
.home__dock-savoir,
.home__dock-immobilier,
.home__dock-design,
.home__dock-innovation {
  position: relative;
  display: inline-block;
}

.home__dock-home .home__dock-homeTitle,
.home__dock-metier .home__dock-metierTitle,
.home__dock-communication .home__dock-communicationTitle,
.home__dock-savoir .home__dock-savoirTitle,
.home__dock-immobilier .home__dock-immobilierTitle,
.home__dock-design .home__dock-designTitle,
.home__dock-innovation .home__dock-innovationTitle {
  visibility: hidden;
  width: 500px;
  text-align: center;
  font-size: var(--title-font-size);
  color: var(--white-color);
  border-radius: 6px;
  padding: 27px 0;
  position: absolute;
  z-index: 100;
  bottom: 75%;
  left: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}

.home__dock-home .home__dock-homeTitle {
  margin-left: 60px;
}

.home__dock-metier .home__dock-metierTitle {
  margin-left: -60px;
}

.home__dock-communication .home__dock-communicationTitle {
  margin-left: -165px;
}

.home__dock-savoir .home__dock-savoirTitle {
  margin-left: -280px;
}

.home__dock-immobilier .home__dock-immobilierTitle {
  margin-left: -390px;
}

.home__dock-design .home__dock-designTitle {
  margin-left: -515px;
}

.home__dock-innovation .home__dock-innovationTitle {
  margin-left: -630px;
}

.home__dock-home .home__dock-homeTitle::after,
.home__dock-metier .home__dock-metierTitle::after,
.home__dock-communication .home__dock-communicationTitle::after,
.home__dock-savoir .home__dock-savoirTitle::after,
.home__dock-immobilier .home__dock-immobilierTitle::after,
.home__dock-design .home__dock-designTitle::after,
.home__dock-innovation .home__dock-innovationTitle::after {
  content: "";
  position: absolute;
  margin-left: -5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.home__dock-home:hover .home__dock-homeTitle,
.home__dock-metier:hover .home__dock-metierTitle,
.home__dock-communication:hover .home__dock-communicationTitle,
.home__dock-savoir:hover .home__dock-savoirTitle,
.home__dock-immobilier:hover .home__dock-immobilierTitle,
.home__dock-design:hover .home__dock-designTitle,
.home__dock-innovation:hover .home__dock-innovationTitle {
  visibility: visible;
  opacity: 0.9;
}

.home__dock-img {
  width: 35px;
  height: 35px;
  border-radius: 0.5rem;
  cursor: pointer;
}

.swiper-slide-thumb-active {
  width: 60px;
  height: 60px;
}

/*=============== HOME / ACCES PAGE DECOUVERTE + BOUTON ===============*/

.home__discover {
  padding: 2vw 0;
  margin-top: 72px;
}

.home__discover-container {
  position: relative;
  row-gap: 2rem;
}

.home__discover-img {
  width: 360px;
  justify-self: center;
}

.home__discover-title {
  font-size: var(--big-font-size);
  line-height: 140%;
  margin-bottom: var(--mb-1);
}

.home__discover-description {
  margin-bottom: 2.5rem;
}

.home__discover-social {
  position: absolute;
  top: 2rem;
  right: -1rem;
  display: grid;
  justify-items: center;
  row-gap: 3.5rem;
}

.home__discover-socialFollow {
  font-weight: var(--font-medium);
  font-size: var(--smaller-font-size);
  color: var(--first-color);
  position: relative;
  transform: rotate(90deg);
}

.home__discover-socialFollow::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2px;
  background-color: var(--first-color);
  right: -50%;
  top: 50%;
}

.home__discover-socialLinks {
  display: inline-flex;
  flex-direction: column;
  row-gap: 0.25rem;
}

.home__discover-socialLink {
  font-size: 1rem;
  color: var(--first-color);
  transition: 0.3s;
}

.home__discover-socialLink:hover {
  transform: translateX(0.25rem);
}

/*========== PAGE DECOUVERTE  ==========*/

.discover__container {
  grid-gap: 2rem;
  grid-template-columns: 1fr 2fr;
  grid-auto-rows: minmax(100px, auto);
  margin: 0 4rem;
  max-width: 90%;
  position: relative;
}

.discover__container > * {
  grid-column: 1 / span 2;
}

.discover__header {
  text-align: center;
  font-size: 1.5em;
  grid-row: 1 / 2;
}

.discover__header h1 {
  font-size: 3.3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.discover__header:after {
  content: "";
  display: block;
  height: 20px;
  width: auto;
}

.discover__article,
.pole {
  /* text-align: center; */
  padding: 1rem;
  margin: 1rem;
  border: 1px #ccc solid;
  background-color: #fff;
  border-radius: 10px;
}

.discover__article p {
  margin-bottom: 1rem;
}

.discover__article h2.about__title {
  /* font-size: 2.7rem; */
  display: list-item;
}

/* .discover__article p {
  font-size: 2rem;
} */

summary {
  display: block;
  margin-left: 0.5em;
}

/* .discover__video {
  width: 100%;
  height: 35rem;
  object-fit: cover;
} */

.discover__feature-two {
  grid-row: 4 / 5;
  align-self: center;
}

.discover__article-one,
.discover__article-four {
  grid-column: 1 / 3;
}

.discover__button {
  display: inline-flex;
  align-items: center;
  align-items: center;
  font-size: 4vw;
  text-decoration: none;
  padding: 1rem 1.5rem;
  margin: 2rem 0 0 2rem;
  color: var(--first-color);
  border: 2px solid var(--first-color);
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  transition: 0.75s;
}

.discover__button:hover {
  transform: scale(1.1);
}

/*=============== ABOUT ===============*/

.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}

.about h2{
  margin: 4vh 0;
  font-size: 3.8rem;
}

.about h3{
  font-size: 2rem;
}

.about p{
  font-size: 1.3rem;
}

.about__container {
  row-gap: 2rem;
}

.about__img {
  width: 100%;
  height: 90%;
  margin: 3vh 0;
  justify-self:flex-end;
}

.about__description {
  margin-bottom: 2rem;
}

.about__button {
  width: 100%;
  display: flex;
  justify-content: center;
}


/*=============== STEPS ===============*/

.steps__bg {
  background-color: var(--first-color);
  /* padding: 3rem 2rem 2rem; */
  padding: 2rem;
  border-radius: 1rem;
}

.steps__container {
  gap: 2rem;
  padding-top: 1rem;
}

.steps__title {
  color: #fff;
}

.steps__card {
  background-color: var(--container-color);
  padding: 2.5rem 3rem 2rem 1.5rem;
  border-radius: 1rem;
}

.steps__card-number {
  display: inline-block;
  background-color: var(--first-color-light);
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: var(--title-font-size);
  margin-bottom: 1.5rem;
  transition: 0.3s;
}

.steps__card-title {
  font-size: var(--subtitle-font-size);
  margin-bottom: 0.5rem;
}

.steps__card-description {
  font-size: var(--small-font-size);
}

.steps__card:hover .steps__card-number {
  transform: translateY(-0.25rem);
}

/*=============== POLE ===============*/

.pole__description {
  text-align: center;
}

.pole__container {
  padding: 3rem 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.pole__card {
  display: grid;
  position: relative;
  text-align: center;
}

.pole__img {
  position: relative;
  width: auto;
  height: 100px;
  justify-self: center;
  border-radius: 50%;
  /* margin-bottom: 2rem; */
  transition: 0.3s;
}

.pole__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.pole__title {
  margin-bottom: 0.25rem;
}

.pole__button {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--first-color);
  color: #fff;
  padding: 0.25rem;
  border-radius: 0.35rem;
  font-size: 1.15rem;
}

.pole__button:hover {
  background-color: var(--first-color-light);
}

.pole__circle {
  width: 90px;
  height: 90px;
  background-color: var(--first-color-light);
  border-radius: 50%;
  position: absolute;
  top: 18%;
  left: 5%;
}

.pole__card:hover .pole__img {
  transform: translateY(-0.5rem);
}

/*=============== FOOTER ===============*/

.footer {
  padding: 20rem 0 1rem;
}

/* .footer__container {
  row-gap: 3rem;
  justify-items: center;
} */

.footer__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 2.5rem;
  transition: 0.3s;
}

.footer__logo:hover {
  color: var(--first-color);
}

.footer__title {
  font-size: var(--title-font-size);
  margin-bottom: 1.5rem;
}

.footer__information {
  font-size: var(--small-font-size);
}

/* .footer_logo_social {
  display: flex;
} */

.footer__social {
  display: inline-flex;
  column-gap: 0.75rem;
}

.footer__social-link {
  font-size: 1rem;
  color: var(--text-color);
  transition: 0.3s;
}

.footer__social-link:hover {
  transform: translateY(-0.25rem);
}

.footer__cards {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
}

.footer__card {
  width: 35px;
}

.footer__copy {
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin: 5rem 0 1rem;
}

/*========== MEDIA QUERY ==========*/

@media (min-width: 768px) and (max-width: 1023px) {

  .discover__header h1 {
    font-size:2.5rem;
  }
   
  .discover__article {
    /* text-align: center; */
    padding: 1rem;
    margin: 1rem;
  }
  
  /* .discover__article h2 {
    font-size: 2rem;
  } */
  
  /* .discover__article p {
    font-size: 1.5rem;
  } */
}

@media screen and (max-width: 700px) {
  /* .home__discover {
    padding: 7rem 0 1rem;
  } */
  .home__discover-img {
    /* width: 180px; */
    margin: auto;
  }
  
  .home__discover-title {
    font-size: var(--title-font-size);
  }
  
  .steps__bg {
    padding: 2rem 1rem;
  }
  
  .steps__card {
    padding: 1.5rem;
  }
  
  .section {
    height: 120vh;
    margin-top: 2rem;
  }
  
  .pole__container {
    grid-template-columns: 0.6fr;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0%;
  }
  
  .pole__circle {
    display: none;
  }
  
  .discover {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .discover__container {
    margin: 10px;
    width: 100%;
    text-align: center;
  }
  
  .discover__button {
    margin: 3rem 0 0 0;
  }
  
  .about {
    padding-top: 3rem;
  }
  
}

@media screen and (min-width: 576px) {
  
  .steps__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pole__description {
    padding: 0 4rem;
  }
  
  .pole__container {
    grid-template-columns: repeat(2, 170px);
    justify-content: center;
    column-gap: 5rem;
  }
  
  .footer__subscribe {
    width: 400px;
  }
}

@media screen and (min-width: 768px) {
  .home__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home__description {
    padding-right: 5rem;
    margin-bottom: 2rem;
  }
  
  .home__video {
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  
  .home__video-icon {
    font-size: 6rem;
  }
  
  .home__popup-video {
    width: 720px;
    height: 407px;
  }
  
  .home__popup-close {
    font-size: 1.5rem;
  }
  
  .home__dock {
    width: auto;
    padding: 2.5rem 13rem 0.25rem 1.5rem;
    background-image: -moz-linear-gradient(
      bottom,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0)
    );
    
    background-image: -ms-linear-gradient(
      bottom,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0)
    );
    
    background-image: -webkit-gradient(
      linear,
      0 0,
      100% 0,
      from(rgba(255, 255, 255, 0.45)),
      to(rgba(255, 255, 255, 0))
    );
    
    background-image: -webkit-linear-gradient(
      bottom,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0)
    );
    
    background-image: -o-linear-gradient(
      bottom,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0)
    );
    
    background-image: linear-gradient(
      bottom,
      rgba(255, 255, 255, 0.45),
      rgba(255, 255, 255, 0)
    );
    
    background-repeat: repeat-x;
    
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='rgba(255, 255, 255, .45)', endColorstr='rgba(255, 255, 255, 0)', GradientType=1);
  }
  
  .home__dock-mobile {
    display: none;
  }
  
  .home__dock-container {
    width: 564px;
    column-gap: 3.5rem;
    display: flex;
  }
  
  .home__dock-img {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
  }
  
  .home__video {
    display: flex;
  }
  
  .home__container-pole {
    grid-template-rows: 4fr 1fr;
  }
  
  .discover__container,
  .pole {
    grid-template-columns: repeat(2, 1fr 2fr);
    margin: 0 5rem;
  }
  
  .discover__header {
    grid-column: 3 / 5;
    width: 100%;
  }
  
  .discover__feature-one {
    grid-row: 1 / 3;
  }
  
  .discover__article-one {
    grid-row: 3 / 4;
  }
  
  .discover__article-two {
    grid-column: 3 / 5;
    grid-row: 4 / 5;
  }
  
  .discover__feature-two {
    grid-column: 3 / 5;
    grid-row: 2 / 4;
  }
  
  .discover__feature-three {
    grid-row: 4 / 6;
    display: grid;
    align-items: center;
  }
  
  .discover__feature-four {
    grid-column: 3 / 5;
    grid-row: 5 / 6;
  }
  
  .discover__article-three,
  .discover__article-four {
    grid-row: 6 / 7;
  }
  
  .discover__article-four {
    grid-column: 3 / 5;
  }
  
  /* .home__discover {
    padding: 7rem 0 0;
  } */
  .home__discover-img {
    width: 620px;
    justify-self: center;
  }
  
  .home__discover-social {
    top: 30%;
  }
  
  .about__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer__container {
    column-gap: 1rem;
  }
  
  .footer__subscribe {
    width: initial;
  }
  
}

@media (max-width: 870px) {
  .home__cube {
    display: none;
  }
  
  .pole__circle {
    display: none;
  }
  
  .discover__button {
    margin: 3rem 0 0 0;
  }
  
  .about {
    padding: 0 0 5rem 0;
  }
  
}

@media (min-width: 768px) and (max-width: 992px) {
  /* .steps__bg {
    margin-left: 10%;
  } */
  .section {
    height: 45vh;
    margin-top: 3rem;
  }
  
  .pole__container {
    text-align: center;
  }
  
  .pole__circle {
    display: none;
  }
  
}

@media screen and (min-width: 992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  /* .section {
    height: 45vh;
    padding: 8rem 0 1rem;
  } */
  .section__title,
  .section__title-center {
    font-size: var(--big-title-font-size);
  }
  
 /*  .home__discover {
    padding: 9rem 0 5rem;
  }
  .home__discover-img {
    width: 768px;
    margin: auto;
  } */
  .home__discover-description {
    padding-right: 7rem;
  }
  
  .steps__container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* .steps__bg {
    padding: 3.5rem 2.5rem;
    margin-left: 7%;
  } */
  .steps__card-title {
    font-size: var(--normal-font-size);
  }
  
  .pole__description {
    padding: 0 16rem;
  }
  
  .pole__container {
    /* padding: 4rem 0; */
    grid-template-columns: repeat(3, 185px);
    gap: 4rem 6rem;
  }
  
  /* .pole__img {
    width: 160px;
  } */
  
  .pole__circle {
    width: 110px;
    height: 110px;
  }
  
  .pole__title {
    font-size: var(--normal-font-size);
  }
  
  .footer__logo {
    font-size: var(--title-font-size);
  }
  
  .footer__container {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .footer__copy {
    margin: 7rem 0 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .main {
    min-height: calc(65vh - 280px);
  }
  
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  
  .home__description {
    padding-right: 11rem;
  }
  
  .home__dock-container {
    width: 564px;
  }
  
  .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
  }
  
  .about h2{
    margin: 4vh 0;
    font-size: 3.8rem;
  }
  
  .about h3{
    font-size: 2rem;
  }
  
  .about p{
    font-size: 1.3rem;
  }
  
  .about__container {
    row-gap: 2rem;
  }
  
  .about__img {
    width: 90%;
    height: 90%;
    margin: 7vh ;
    justify-self:flex-end;
  }
}

@media screen and (min-width: 1200px) {
  .home__discover-social {
    right: -3rem;
    row-gap: 4.5rem;
  }
  
  .home__discover-socialFollow {
    font-size: var(--small-font-size);
  }
  
  .home__discover-socialFollow::after {
    width: 2.5rem;
    right: -60%;
  }
  
  .home__discover-socialLink {
    font-size: 1.15rem;
  }
  
  .about__container {
    column-gap: 7rem;
  }
}

@media (min-width: 320px) and (max-width: 425px) {

  .main {
    min-height: calc(145vh - 280px);
  }
  
}

@media (max-width: 375px) {

  .main {
    min-height: calc(0vh - 180px);
  }
}

@media (max-width: 320px) {

  .main {
    min-height: calc(155vh - 280px);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
  }
  
  .about h2{
    margin: 4vh 0;
    font-size: 2.8rem;
  }
  
  .about h3{
    font-size: 1.8rem;
  }
  
  .about p{
    font-size: 1.2rem;
  }
  
  
  .about__container {
    row-gap: 2rem;
  }
  
  .about__img {
    width: 85%;
    height: 70%;
    margin: 9vh 4vh;
    justify-self:flex-end;
  }
}

@media (max-width: 767px) {
  .discover__header h1 {
    font-size:1.9rem; 
  }
  
  /* .discover__article {
    text-align: center;
    width: 100%;
    padding: 1rem;
    margin: 1rem;
  } */
  
  .discover__article h2 {
    font-size: 1.9rem;
  }
  
  .discover__article p {
    font-size: 1.4rem;
  }
  
  .about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
  }
  
  .about h2{
    margin: 4vh 0;
    font-size: 2.8rem;
  }
  
  .about h3{
    font-size: 1.8rem;
  }
  
  .about p{
    font-size: 1.2rem;
  }
  
  .about__container {
    row-gap: 2rem;
  }
  
  .about__img {
    width: 85%;
    height: 75%;
    margin: 8vh ;
    justify-self:flex-end;
  }

 
}

