*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
  --primary-color: #37617a;
  --primary-color-dark: #0d1a20;
  --secondary-color: #fb923c;
  --white: #ffffff;
}


body{
    background-color:rgb(243, 244, 246);
    overflow-x: hidden;

}

nav{
    background:rgba(255,255,255,.1) ;
    backdrop-filter: blur(20px);
}


/* ====================== Succes Key ====================== */



.left{
    display: flex;
    justify-content: center;
    align-items: center;
}

.right{
    height: 100%;
    padding: 0 0 0 20px;
    width: 100%;
    /* background-color: #ff0000; */
}

.success .right{
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content:flex-end;
    align-items:flex-end;

}

.point{
    height: 100%;
}

.point ul{
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    /* gap: 20px; */
    list-style: none;
}

.point ul li{
    /* background-color: rgb(231, 123, 123); */
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 25px;
    box-shadow: 0px -4px 50px -4px rgba(0,0,0,0.1);
    /* max-width: 250px; */
    min-height: 120px;
}

.point ul li:hover{
    transform: scale(1.03);
    transition: ease-out .3s;
}

.point ul li span{
    background-color: #ffffff;
    padding: 15px;
    /* border-radius: 50%; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-image: linear-gradient(45deg,#f38b79,#ff0000);
    background-size: 100%;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    -moz-background-clip:text;
    -moz-text-fill-color:transparent;
}


.scroll{
    /* background-color: aqua; */
    position: relative;
    /* position: inherit; */
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    width: 600px;
    overflow: hidden;
    /* background: red; */
    -web-mask-image :linear-gradient(90deg, transparent, #ffff, #ffff, transparent),
}

.scroll div{
    white-space: nowrap;
    animation: animate var(--t) linear infinite;
    animation-delay: calc(var(--t)*-1);
}

@keyframes animate{
    0%{
        transform:translateX(100%);
    }
    100%{
        transform:translateX(-100%);
    }
}

.scroll div:nth-child(2){
    animation: animate2 var(--t) linear infinite;
    animation-delay: calc(var(--t)/-2);
}

@keyframes animate2{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-200%);
    }
}


.scroll div span{
    display: inline-flex;
    margin: 10px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 2px -4px 55px -4px rgba(0,0,0,0.1);
    /* border-color: rgb(255, 39, 39); */
    border: 1px solid rgba(255, 39, 39, 0.13);

}

.scroll div span:hover{
    
    background: rgb(255, 39, 39);
    cursor: pointer;
    color: #fff;
    border: none;
    transform: scale(1.1);
    transition: ease-in-out .6s;
}

.a div span:nth-child(4){
    background: rgb(255, 39, 39);
    cursor: pointer;
    color: #fff;
}

.b div span:nth-child(2){
    background: rgb(255, 39, 39);
    cursor: pointer;
    color: #fff;
}

.c div span:nth-child(3){
    background: rgb(255, 39, 39);
    cursor: pointer;
    color: #fff;
}

.d div span:nth-child(1){
    background: rgb(255, 39, 39);
    cursor: pointer;
    color: #fff;
}


/* Secret de succes */

.quel{
    font-size: large;
    font-family: monospace;
}

.secret{
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 5px;
}

.succes{
    font-size: 75px;
    font-weight: 800;
    background-image: linear-gradient(45deg,#f38b79,#ff0000);
    background-size: 100%;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    -moz-background-clip:text;
    -moz-text-fill-color:transparent;
}

/* ======================================= */


/* ======================== HeroContainer ======================== */

.hero-container{

    margin: 20px 0;
    width: 100%;
    gap: 10px;
    padding: 20px 5%;
}

.hero-container .herobox{
    width: 160px;
    height: 100px;

    box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
    break-inside:avoid;
    transition: 0.5s ease-in-out;
    border-radius: 5px;
}

.hero-container .herobox img{
    /* display: none; */
    width: 160px;
    height: 100px;
    object-fit: cover;
}

.herobox:hover{
    transform: scale(1.02);
    overflow: hidden;
}

@media (max-width: 1200px){

    .hero-container{
        width: calc(100% - 40px);
        columns:  8;
    }
}

@media (max-width: 768px){

    .hero-container{
        columns:  2;
        margin: 20px 0 !important;
        width: 100%;
    }

}

@media (max-width: 480px){
    .hero-container{
        columns:  2;
        padding: 20px 1%;
        margin: 20px 0 !important;
        width: 100%;
        column-gap: 5px;
    }

}

@media (max-width: 300px){
    .hero-container{
        columns: 1;
    }
}


/* ======================== HeroContainer ======================== */

.hero-container{
  width: 100%;
  margin: 20px auto;
  padding: 20px 5%;
  columns: 6;
}


.hero-container .herobox{
  width: 100%;
  /* min-width: 100px; */
  margin-bottom: 10px;
  break-inside:avoid;
  transition: 0.5s ease-in-out;
}

.hero-container .herobox img{
  width: 100%;
  border-radius: 15px;
}

.herobox:hover{
  transform: scale(1.02);
  overflow: hidden;
}

@media (max-width: 1200px){

  .hero-container{
      width: calc(100% - 40px);
      columns:  3;
  }
}

@media (max-width: 768px){

  .hero-container{
      columns:  2;
      margin: 20px 0 !important;
      width: 100%;
  }

}

@media (max-width: 480px){
  .hero-container{
      columns:  2;
      padding: 20px 1%;
      margin: 20px 0 !important;
      width: 100%;
      column-gap: 5px;
  }

}

@media (max-width: 300px){
  .hero-container{
      columns: 1;
  }
}

/* ======================== Programme ======================== */

.programme{

  margin: 20px 0;
  width: 100%;
  gap: 10px;
  padding: 20px 5%;
}

.programme .herobox{

  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  break-inside:avoid;
  transition: 0.5s ease-in-out;
  border-radius: 5px;
}

.programme .herobox img{
  display: none;
}

.programme:hover{
  transform: scale(1.02);
  overflow: hidden;
}

@media (max-width: 1200px){

  .programme{
      width: calc(100% - 40px);
      columns:  8;
  }
}

@media (max-width: 768px){

  .hero-container{
      columns:  2;
      margin: 20px 0 !important;
      width: 100%;
  }

}

@media (max-width: 480px){
  .programme{
      columns:  2;
      padding: 20px 1%;
      margin: 20px 0 !important;
      width: 100%;
      column-gap: 5px;
  }

}

@media (max-width: 300px){
  .programme{
      columns: 1;
  }
}



.programme{
  width: 100%;
  margin: 20px auto;
  padding: 20px 5%;
  columns: 4;
}


.programme .herobox{
  width: 100%;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  break-inside:avoid;
  transition: 0.5s ease-in-out;
  border-radius: 10px;
}

.programme.herobox img{
  width: 100%;
  border-radius: 15px;
}

.programme:hover{
  transform: scale(1.02);
  overflow: hidden;
}

@media (max-width: 1200px){

  .programme{
      width: calc(100% - 40px);
      columns:  3;
  }
}

@media (max-width: 768px){

  .programme{
      columns:  2;
      margin: 20px 0 !important;
      width: 100%;
  }

}

@media (max-width: 480px){
  .programme{
      columns:  2;
      padding: 20px 1%;
      margin: 20px 0 !important;
      width: 100%;
      column-gap: 5px;
  }

}

@media (max-width: 300px){
  .programme{
      columns: 1;
  }
}


/* ===== Form ===== */

form{
    display: flex;
    flex-direction: column;
    padding: 0 5%;
}

.photo{
    display: flex;
    justify-content: space-between;
}


/* **************** */

.community{
    width: 100%;
    height: 700px;
    padding: 20px 5%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}

.co-form{
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 2rem;

}



.form-image{
    background-image: url(/img/image1.png);
    width: 100%;
    background-size: cover;
    background-position: center;
}

.e-card {
    /* margin: 100px auto; */
    background: transparent;
    box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
  }
  
  .wave {
    position: absolute;
    width: 100%;
    height: 1200px;
    opacity: 0.6;
    left: 0;
    top: 0;
    margin-left: -50%;
    margin-top: -70%;
    background: linear-gradient(744deg,#af40ff,#5b42f3 60%,#00ddeb);
  }
  
  .icon {
    width: 3em;
    margin-top: -1em;
    padding-bottom: 1em;
  }
  
  .infotop {
    text-align: center;
    font-size: 20px;
    position: absolute;
    top: 5.6em;
    left: 0;
    right: 0;
    color: rgb(255, 255, 255);
    font-weight: 600;
  }
  
  .name {
    font-size: 14px;
    font-weight: 100;
    position: relative;
    top: 1em;
    text-transform: lowercase;
  }
  
  .wave:nth-child(2),
  .wave:nth-child(3) {
    top: 210px;
  }
  
  .playing .wave {
    border-radius: 40%;
    animation: wave 3000ms infinite linear;
  }
  
  .wave {
    border-radius: 40%;
    animation: wave 55s infinite linear;
  }
  
  .playing .wave:nth-child(2) {
    animation-duration: 4000ms;
  }
  
  .wave:nth-child(2) {
    animation-duration: 50s;
  }
  
  .playing .wave:nth-child(3) {
    animation-duration: 5000ms;
  }
  
  .wave:nth-child(3) {
    animation-duration: 45s;
  }
  
  @keyframes wave {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

  .form {
    background-color: #fff;
    box-shadow: 0 10px 60px rgb(218, 229, 255);
    padding: 2rem .7rem .7rem .7rem;
    text-align: center;
    font-size: 1.125rem;
    width: 100%;
  }
  
  .form-title {
    color: #000000;

  }
  
  .form-paragraph {
    margin-top: 10px;
    color: rgb(105, 105, 105);
  }
  
  .drop-container {
    background-color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
  }
  
  .drop-container:hover {
    background: rgba(0, 140, 255, 0.164);
    border-color: rgba(17, 17, 17, 0.616);
  }
  
  .drop-container:hover .drop-title {
    color: #222;
  }
  
  .drop-title {
    color: #444;
    font-size: 20px;
    text-align: center;
    transition: color .2s ease-in-out;
  }
  
  #file-input {
    width: 80px;
    color: transparent;
    padding: 2px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(8, 8, 8, 0.288);
    background: #ff0000;
  }
  
  #file-input::file-selector-button {
    margin-right: 20px;
    border: none;
    display: none;
    background: #ff0000;
    padding: 5px 10px;
    border-radius: 2px;
    color: #fff !important;
    cursor: pointer;
    transition: background .2s ease-in-out;
    
  }
  
  #file-input::file-selector-button:hover {
    background: #ff0000;
    
  }

  #text-input {
    width: 100%;
    border: none;
    padding: 10px;
  } 

  .drop-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }


  .e-card{
    width: 100%;
    height: 100%;
    --s: 200px;
    --c1: #ff0000;
    --c2: #b50000;
    --c3: #a40707;
  
    background: repeating-conic-gradient(
          from 30deg,
          #a8000000 0 120deg,
          var(--c3) 0 180deg
        )
        calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
      repeating-conic-gradient(
        from 30deg,
        var(--c1) 0 60deg,
        var(--c2) 0 120deg,
        var(--c3) 0 180deg
      );
    background-size: var(--s) calc(var(--s) * 0.577);
  }
  

.submit{
    width: 150px;
    height: 40px;
    border-radius: 25px;
    border:  #e40000 1px solid;
    margin-top: 30px;
    background-color: transparent;
    color:  #e40000;
}

.submit:hover{
    background-color: #e40000;
    color:  #fff;
}


/* ======================== */
header{
  background-image: linear-gradient(to left bottom,#e76a04d5, #f70707);
}

header .container {
  height: 100vh;

  width: 100%;
  margin: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

header .nav {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.links div {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}

.links div:hover {
  color: var(--secondary-color);
}

.links div span {
  font-size: 1.2rem;
}

.links .shopping__cart {
  height: 50px;
  width: 50px;
  display: grid;
  place-content: center;
  border-radius: 100%;
  font-size: 1.2rem;
  color: var(--primary-color-dark);
  background-color: var(--white);
}

.content {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.image {
  width: 100%;
  animation: shoe-animation 3s infinite;
  overflow: hidden;
}

.image img {
  width: 100%;
  max-width: 600px;
  display: flex;
  margin: auto;
  margin-right: 20px;
  /* transform: rotate(-20deg); */
}

@keyframes shoe-animation {
  0% {
    transform: translateY(0px);
  }
  70% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
  }
}

.header {
  position: absolute;
  top: 7rem;
  left: 30%;
  transform: translateX(-50%);
}

.header h1 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
}

.header p {
  text-align: right;
  color: var(--white);
  cursor: pointer;
  transition: 0.3s;
}

.header p:hover {
  color: var(--secondary-color);
}

.featured__item {
  position: absolute;
  transform: rotate(-90deg);
  left: -120px;
  bottom: 125px;
}

.featured__item h4 {
  font-size: 5rem;
  font-weight: 600;
  /* line-height: 1.5rem; */
  color: var(--white);
}

.featured__item p {
  color: var(--white);
  margin-top: 20px;
  margin-left: 15px;
}

.contact {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  transform: rotate(-90deg);
}

.contact span {
  height: 40px;
  width: 40px;
  display: grid;
  place-content: center;
  border-radius: 100%;
  font-size: 1.2rem;
  color: var(--primary-color-dark);
  background-color: var(--white);
  transform: rotate(90deg);
}


@media (width < 640px) {
  .links div:not(.shopping__cart) {
    display: none;
  }

  .header {
    top: 1rem;
  }

  .featured__item {
    left: -5rem;
  }

  .contact {
    right: -4rem;
  }

  .e-card {
    display: none;
  }



  .form {
    background-image: linear-gradient(45deg,#c9270a,#ff0000);
    box-shadow: 0 10px 60px rgb(218, 229, 255);
    padding: 2rem .7rem .7rem .7rem;
    text-align: center;
    font-size: 1.125rem;
    width: 100%;
    border-radius: 40px 0 40px 0;
  }
  
  .form-title {
    color: #000000;

  }
  
  .form-paragraph {
    margin-top: 10px;
    color: rgb(105, 105, 105);
  }
  
  .drop-container {
    background-color: transparent;
    /* border: 1px solid #fff; */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
  }
  
  .drop-container:hover {
    background: rgba(255, 255, 255, 0.164);
    border-color: rgba(17, 17, 17, 0.616);
  }
  
  .drop-container:hover .drop-title {
    color: #222;
  }
  
  .drop-title {
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    transition: color .2s ease-in-out;
    padding: 0 5px;
  }
  
  #file-input {
    width: 80px;
    color: transparent;
    padding: 2px;
    /* background: #fff; */
    border-radius: 5px;
    border: 1px solid rgba(8, 8, 8, 0.288);
    /* background: #ff0000; */
  }
  
  #file-input::file-selector-button {
    margin-right: 20px;
    border: none;
    display: none;
    background: #000000c9;
    padding: 5px 10px;
    border-radius: 2px;
    color: #fff !important;
    cursor: pointer;
    transition: background .2s ease-in-out;
    
  }
  
  #file-input::file-selector-button:hover {
    /* background: #ff0000; */
    
  }

  #text-input {
    width: 100%;
    border: none;
    padding: 10px;
  } 

  .drop-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .submit{
    width: 150px;
    height: 40px;
    border-radius: 25px;
    border:  #ffffff 1px solid;
    margin-top: 30px;
    background-color: transparent;
    color:  #ffff;
  }

  .submit:hover{
      background-color: #ffffff;
      color:  #e40000;
  }



}



/* ================== card */

.card .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_box {
  min-width: 280px;
  height: 380px;
  border-radius: 20px;
  /* background: linear-gradient(170deg, rgba(255, 255, 255, 0.623) 0%, rgb(240, 240, 240) 100%); */
  /* background-image: linear-gradient(45deg,#481309,#ff0000); */
  border: #ff707034 solid 1px ;
  position: relative;
  /* box-shadow: 0 25px 50px rgba(0,0,0,0.55); */
  box-shadow:
  0px 8.2px 22.7px rgba(0, 0, 0, 0.025),
  0px 20.2px 51.2px rgba(0, 0, 0, 0.036),
  0px 38.4px 88px rgba(0, 0, 0, 0.045),
  /* 0px 67.6px 138.3px rgba(0, 0, 0, 0.054), */
  /* 0px 114.4px 210.6px rgba(0, 0, 0, 0.064), */
  0px 176px 302px rgba(0, 0, 0, 0.08) ;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: left;
  gap: 20px;
}

.card_box:hover {
  transform: scale(1.05);
  background-color: #e40000;
  color: #fff;
}

.card_box span {
  position: absolute;
  overflow: hidden;
  width: 150px;
  height: 150px;
  top: -10px;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_box span::before {
  content: 'Notre';
  position: absolute;
  width: 150%;
  height: 40px;
  background-image: linear-gradient(45deg, #ff2a00 0%, #ff4444  51%, #ff7053  100%);
  transform: rotate(-45deg) translateY(-20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 5px 10px rgba(0,0,0,0.23);
}

.card_box span:first-child::before{
  content: 'Tout savoir';
}

.card_box span::after {
  content: '';
  position: absolute;
  width: 10px;
  bottom: 0;
  left: 0;
  height: 10px;
  z-index: -1;
  box-shadow: 140px -140px #cc3f47;
  background-image: linear-gradient(45deg, #FF512F 0%, #f01919  51%, #FF512F  100%);
}


.card_box a{
  color: #ec101b;
  text-decoration: none;
  width: 300px;
  height: 400px;
  /* background-color: red; */
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

/* ============================== */


.card-part-container .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-part-container .card_box {
  width: 300px;
  height: 200px;
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.623) 0%, rgb(240, 240, 240) 100%);
  position: relative;
  /* box-shadow: 0 25px 50px rgba(0,0,0,0.55); */
  box-shadow:
  0px 8.2px 22.7px rgba(0, 0, 0, 0.025),
  0px 20.2px 51.2px rgba(0, 0, 0, 0.036),
  0px 38.4px 88px rgba(0, 0, 0, 0.045),
  0px 67.6px 138.3px rgba(0, 0, 0, 0.054),
  0px 114.4px 210.6px rgba(0, 0, 0, 0.064),
  0px 176px 302px rgba(0, 0, 0, 0.08) ;
  cursor: pointer;
  transition: all .3s;
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-part-container .card_box:hover {
  transform: scale(1.03);
}

.card-part-container .card_box span {
  position: absolute;
  overflow: hidden;
  width: 150px;
  height: 150px;
  top: -10px;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-part-container .card_box span::before {
  content: 'Notre';
  position: absolute;
  width: 150%;
  height: 40px;
  background-image: linear-gradient(45deg, #ff2a00 0%, #ff4444  51%, #ff7053  100%);
  transform: rotate(-45deg) translateY(-20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 5px 10px rgba(0,0,0,0.23);
}

.card-part-container .card_box span:first-child::before{
  content: 'Offre';
}

.card-part-container .card_box span::after {
  content: '';
  position: absolute;
  width: 10px;
  bottom: 0;
  left: 0;
  height: 10px;
  z-index: -1;
  box-shadow: 140px -140px #cc3f47;
  background-image: linear-gradient(45deg, #FF512F 0%, #f01919  51%, #FF512F  100%);
}


.card-part-container .card_box a{
  color: #494949;
  text-decoration: none;
  padding: 20px;
  width: 320px;
  height: 210px;
  /* background-color: red; */
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 200;
  text-align: center;
}


.title h2{
  width: 100%;
  padding: 0 5%;
}

._featured_{
  color: #fff;
  position: absolute;
  rotate: 270deg;
  left: -300px;
}

._featured_ h4{
  font-size: 120px;
}

.allie{
  position: absolute;
  bottom: -40px;
  left: 80px;
}

.allie ul{
  display: flex;
  color: #fff;
  gap: 30px;
  list-style: none;
}

.allie ul a{
  color: #fff;
  text-decoration: none;
}


.spanner{
  background-color: transparent; 
  height: 100px; 
  width: 100px; 
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: -100;
  border-radius: 30px 0;
  border-left: 10px solid rgb(219, 8, 8);
  border-top: 10px solid rgb(219, 8, 8);
}


/* ======================  Galery ====================== */

@media (max-width: 990px){
  .card_box{
    height: auto;
    margin: 20px 0;
    padding: 20px;
  }

}

@media (max-width: 800px)
  
  {
  .Galery{
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
  }

  .right{
    height: 100%;
    padding: 5%;
  }

  .card_box{
    height: auto;
    margin: 20px 10px;
  }

  .main{
    display: none;
  }


  .offre .point ul{
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    padding: 0 0;
  }


  .prog .point ul{
    display: flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    padding: 0 0;
  }

  .proj{
    display: flex;
    flex-direction: column;
    padding: 20px 5px;
  }

}

@media (min-width: 800px)
  {
  .second_main{
    display: none;
  }

}


@media (max-width: 798px)
  {

  .Galery{
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
  }

  .right{
    height: 100%;
    padding: 5%;
  }

  .card_box{
    height: auto;
    margin: 20px 0;
  }

  .main{
    display: none;
  }

  ._featured_{
    /* height: 100vh; */
    /* background-color: #00ddeb; */
    position: absolute;
    /* bottom: 45px; */
    right: 10px;
    
  }

  ._featured_ h4{
    font-size: 110px;
  }

  .allie{
    /* display: flex;
    flex-direction: column; */
    position: absolute;
    bottom: -200px;
    left: 50px;
  }

  .allie ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .featured__item{
    display: none;
  }

  .image img{
    transform: rotate(90deg);
    /* position: absolute; */
    /* top : -1000px; */
    margin-top: 120px;
    width: 300px;
    margin-right: -20px;
  }
  
  .form-title{
    color: #fff;
    font-size: 20px;
    margin-bottom: 2px;
    font-weight: 600;
  }

}



@media (max-width: 800px)

{

  ._featured_{
    /* height: 100vh; */
    /* background-color: #00ddeb; */
    position: absolute;
    bottom: 15% !important;
    right: 60%;
    
  }

  ._featured_ h4{
    font-size: 110px;
  }

  .allie{
    /* display: flex;
    flex-direction: column; */
    position: absolute;
    bottom: -20%;
    left: 100%;
  }

  .allie ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .featured__item{
    display: none;
  }

  .image img{
    transform: rotate(90deg);
    margin-top: 20%;
    width: 450px;
    margin-right: -5%;
  }
}


@media (max-width: 690px)

{

  ._featured_{
    position: absolute;
    bottom: 30% !important;
    right: 35%;
    
  }

  ._featured_ h4{
    font-size: 110px;
  }

  .allie{
    /* display: flex;
    flex-direction: column; */
    position: absolute;
    bottom: -20%;
    left: 90%;
  }

  .allie ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .featured__item{
    display: none;
  }

  .image img{
    transform: rotate(90deg);
    margin-top: 20%;
    width: 450px;
    margin-right: -5%;
  }
}




@media (max-width: 430px)

{

  ._featured_{
    /* height: 100vh; */
    /* background-color: #00ddeb; */
    position: absolute;
    bottom: -15% !important;
    right:  calc(-10%);
    
  }

  ._featured_ h4{
    font-size: 150px;
  }

  .allie{
    /* display: flex;
    flex-direction: column; */
    position: absolute;
    bottom: -70%;
    left: 80%;
  }

  .allie ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .featured__item{
    display: none;
  }

  .image img{
    transform: rotate(90deg);
    margin-top: 45%;
    width: 350px;
    margin-right: -10%;
  }

}


@media (max-width: 380px)

{

  ._featured_{
    /* height: 100vh; */
    /* background-color: #00ddeb; */
    position: absolute;
    bottom: 15% !important;
    right:  calc(-10%);
    
  }

  ._featured_ h4{
    font-size: 120px;
  }

  .allie{
    /* display: flex;
    flex-direction: column; */
    position: absolute;
    bottom: -45%;
    left: 75%;
  }


  .featured__item{
    display: none;
  }

  .image img{
    transform: rotate(90deg);
    margin-top: 45%;
    width: 350px;
    margin-right: -10%;
  }

}