
:root {
  --col_border: rgba(255, 255, 0, 0.202);
}
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html{
  overflow-x: hidden;
}
body{
  padding: 0;
  margin: 0;
  position: relative;
  background-color: rgb(0, 0, 0);
  color:white;
  display: block;
  font-size: clamp(15px, 1.4vw, 30px);
  overflow-x: hidden;
}
button{
  position: relative;
  width: auto;
  padding: 10px;
  border-radius: 7px;
  border: 1px solid white;
  background-color: transparent;
  color:white;
  font-size: clamp(12px, 1.2vw, 30px);
  margin-top: 20px;
  cursor: pointer;
  z-index: 2;
}
.btn_no_marge{
  margin-top: 0;
}
p{
  margin: auto;
}
span {
  display: inline-block;
  margin: 0;
  padding: 0;
  letter-spacing: 0;
}



/* */
#section_after{
  background-color: rgb(0, 0, 0);
  margin-top: 100vh;
  position: relative;
  z-index: 2;
}




/* */

.return{
  width: 100%;
  padding-left: 5%;
}



/* */

h1, h2, h3{
  padding: 0;
  margin: 0;
}
.letter{
  letter-spacing: 2%;
}

/* FONT */
.is_big_titre{
  line-height: 1;
  font-size: clamp(25px, 5vw, 100px);
}
.is_titre{
  line-height: 1;
  font-size: clamp(25px, 3.3vw, 100px);
}
.is_titre2{
  line-height: 1;
  font-size: clamp(23px, 2.3vw, 100px);
}
.is_titre3{
  line-height: 1;
  font-size: clamp(20px, 1.9vw, 100px);
}
.is_titre4{
  line-height: 1;
  font-size: clamp(15px, 1.5vw, 100px);
}
input{
  font-size: clamp(15px, 1.2vw, 30px);

}
textarea{
  font-size: clamp(15px, 1.3vw, 30px);
}
.mini_text{
  font-size: clamp(10px, 1vw, 100px);
}
a{
  text-decoration: none;
  color:inherit;
}

.is_upper{
  text-transform: uppercase;
}



/* */

input:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
}






/* */
#top_section{
  height:auto;
  min-height: 180px;
  width: 95%;
  margin-top: 10%;
  
  display: flex;
  justify-content: center;
}
#contaienr_titre{
  width: 93%;
  height:100%;
  display: flex;
  padding: 2%;
}
#contaienr_titre #left{
  width: 80%;
  height:100%;
  display: flex;
  align-items: end;
  flex-direction: column;
}
.left_div{
  width: 100%;
  height:100%;
  display: flex;
  align-items: start;
  gap:2%;
  line-height: 1.4;
}

.over_div {
  position: relative;
  height: 100%;
  display: flex;
  display: inline-block;
  align-items: flex-start;
  overflow: hidden;
}


.div_top{
  height:100%;
}
.over_div span {
  transform: translateY(150%);
  display: inline-block;
  transition: transform 0.5s ease;
  margin: 0;
  padding: 0;
}
#services_div{
  width: 20%;
  height:100%;
  display: flex;
  align-items: start;
}
#left_bottom{
  display: flex;
  width: 100%;
  height: 100%;
}
#right_container{
  width: 50%;
  height:100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
#text_in_rigt{
  width: 80%;
  margin-top: 1%;
}
#en_savoir{
  margin-top: 5%;
  cursor: pointer;
}
#contaienr_titre #right{
  width: 50%;
  height:100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-top: 2%;
  position: relative;
}








.neon_btn{
    box-shadow: 0px 6px 80px #d7bd2d6c;
}



/* NAVBARRE */
#nav{
  position: fixed;
  width: 100%;
  height:12vh;
  padding: 3% 5% 2% 5%;
  min-height: 75px;
  top:0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:2%;
  z-index: 99999;
  background-color: black;

}
.el_nav{
  text-transform: uppercase;
  font-size: clamp(13px, 1.1vw, 30px);
  cursor: pointer;
  transition: transform 1s ease,
  opacity 0.5s ease;
}
#titre_nav{
  flex: 1;
  font-size: clamp(15px, 1.3vw, 30px);
  cursor: pointer;
  transition: transform 1s ease,
  opacity 0.5s ease;

}
.retraction{
  transform: translateY(150%);
  opacity: 0;
}


/* */
#menu_resp{
  inset: 0;
  position: fixed;
  transition: transform 0.5s ease;
  background-color: #0d0d0d;
  transform: translateX(-100%);
  z-index: 999999;
  top:0;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}
#img_resp_menu{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  top:0;
  left:0;
  filter: grayscale(100%);
}
.menu_resp_appear{
  transform: translateX(0%)!important;
}
#container_resp{
  width: 50%;
  height:auto;
  overflow: hidden;
}
.are_translate{
  transform: translateX(0%)!important;
}
.el_menu_resp{
  transition: transform 1s ease;
  transform: translateX(-100%);
  width: 100%!important;
  text-align: center!important;
  padding: 1%;
}
#titre_after{
  margin-top: 5%;
}


/* */
#container_burger{
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 9999999;
  right:5%;
  top:5%;
}
.burger {
  display: none;
  width: 3.5vw;
  height: 1.5vw;
  min-height: 15px;
  min-width: 25px;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
  margin-top: 0!important;
  z-index: 9999;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }

.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}














/* BOTTOM NAVEBARRE */
#nav_bottom{
  position: fixed;
  bottom: 30px;
  display: flex;
  width: 100%;
  padding-left: 5%;
  height:auto;
  gap:2%;
  align-items: center;
  opacity: 0.2;
  font-size: 15px;
  transition: opacity 0.5s ease;
}
.nav_bottom{
  position: relative;
  z-index: 2;
  background-color:black;
  padding-right: 10px;
  padding-left: 10px;
  color:gray;
}
.first_nav_bottom{
  padding-left: 0;
}
#line{
  position: absolute;
  width: 90%;
  background-color: rgba(255, 255, 255, 0.13);
  height:1px;
  z-index: -1;
}


/* CIRCLE */
#container_svg{
  position: fixed;
  width: 100%;
  height:auto;
  bottom:50px;
  display: flex;
  justify-content: end;
  padding-right: 5%;
  z-index: 2;
}
#round_label{
  height: 12%;
  width: 12%;
  min-height: 120px;
  min-width: 120px;
  transition: width 0.5s ease,
  height 0.5s ease;
}
.little{
  width: 8%!important;
}



.rotate {
    animation: spin 100s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}



.is_ita{
  font-style: italic;
}


/* */
.neon {
    filter: drop-shadow(0 0 4px #ffd700)
            drop-shadow(0 0 8px #ffd700)
            drop-shadow(0 0 12px rgba(221, 21, 6, 0.266));
}
.neon2 {
  filter: drop-shadow(0 0 4px #898b0ff5)
          drop-shadow(0 0 8px #898b0ff5)
          drop-shadow(0 0 50px rgba(227, 216, 6, 0.289));
}
.neon_light {
    filter: drop-shadow(0 0 4px #ffd9006f)
            drop-shadow(0 0 4px #ffd9005d)
            drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}
.neon_red {
    filter: drop-shadow(0 0 4px #c74392)
            drop-shadow(0 0 8px #530c378a)
            drop-shadow(0 0 12px #de04879b);
}

.pruning{
  box-shadow:
    0 0 150px rgba(140, 60, 180, 0.45),
    0 0 40px rgba(90, 30, 130, 0.35);
}
.pruning_ligth{
  box-shadow:
    0 0 150px rgba(140, 60, 180, 0.229),
    0 0 40px rgba(90, 30, 130, 0.194);
}
.pruning2 {
    filter: drop-shadow(0 0 4px rgba(104, 20, 115, 0.151))
            drop-shadow(0 0 8px rgba(109, 12, 118, 0.184))
            drop-shadow(0 0 200px rgba(89, 8, 102, 0.354));
}



.is_margin{
  margin-top: 1%;
}
.savoir_plus{
  width: fit-content;
  padding: 0.5% 2% 1% 2%;
  margin-top: 2%;
  border: 1px solid white;
  border-radius: 10px;
  background-color: transparent;
  cursor: pointer;
}
/* COLOR FONT */
.is_white_pur{
  color : #f1e9e2;
}
.is_gray{
  color: #d9d9d9;
}
.is_red{
  color:#da1616;
}
.is_prune{
  color: #822170;
}
.bold{
  font-weight: bold!important;
}
.is_upper{
  text-transform: uppercase;
}
.is_yellow{
  color:rgb(224, 224, 187);
}


/* */

#para{
  position: relative;
  margin-top: 100vh;
  padding-top: 2vh;
  width: 100%;
  height: 500vh;
  background-color: #000000;
  z-index: 1;
}






.square{
  position: relative;
}
.top_left{
  position: absolute;
  top:0;
  left:0;
  width: 20px;
  height:1px;
  background-color: var(--col_border);
}
.top_left_bot{
  position: absolute;
  top:0;
  left:0;
  width: 1px;
  height:20px;
  background-color: var(--col_border);
}
.top_right{
  position: absolute;
  top:0;
  right:0;
  width: 1px;
  height:20px;
  background-color: var(--col_border);
}
.top_right_bottom{
  position: absolute;
  top:0;
  right:0;
  width: 20px;
  height:1px;
  background-color: var(--col_border);
}
.bottom_left{
  position: absolute;
  bottom:0;
  left:0;
  width: 20px;
  height:1px;
  background-color: var(--col_border);
}
.bottom_left_top{
  position: absolute;
  bottom:0;
  left:0;
  width: 1px;
  height: 20px;
  background-color: var(--col_border);
}

.bottom_right{
  position: absolute;
  bottom:0;
  right:0;
  width: 20px;
  height:1px;
  background-color: var(--col_border);
}
.bottom_right_top{
  position: absolute;
  bottom:0;
  right:0;
  width: 1px;
  height:20px;
  background-color: var(--col_border);
}



/* */
#footer{
  width: 100%;
  height:80vh;
  min-height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10%;
  background-color: #0d0d0d;
}

.containers{
  height:100%;
  position: relative;
}
#reseau_footer{
  display: flex;
  width: 100%;
  gap:0.5%;
  justify-content: center;
  align-items: center;
}
.circle{
  border: 1px solid rgba(255, 255, 255, 0.299);
  border-radius: 50%;
  width: 3vw;
  min-width: 30px;
  min-height: 30px;
  height:auto;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: black;
  cursor: pointer;
}
.img_icone_footer{
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}
.are_center{
  width: 100%;
  text-align: center;
}

#who{
  width: 100%;
  text-align: right;
}








@media (max-width: 1366px){
  #round_label{
    height: 11%;
    width: 11%;
  }
  #contaienr_titre #left{
    width: 60%;
  }
}

@media (max-width: 1280px) and (max-height:1024px){
  #round_label{
    height: 13%;
    width: 13%;
  }
  .is_titre{
    font-size: clamp(25px, 4vw, 100px);
  }
  .is_titre2{
    font-size: clamp(23px, 3vw, 100px);
  }
  .is_titre3{
    font-size: clamp(20px, 2.6vw, 100px);
  }
  .is_titre4{
    font-size: clamp(15px, 2vw, 100px);
  }
  body{
    font-size: clamp(15px, 1.7vw, 30px);
  }
  button{
    font-size: clamp(12px, 1.7vw, 30px);
  }
  .el_nav{
    font-size: clamp(13px, 1.3vw, 30px);
  }
  .container_service{
    height: 70vh;
  }
  .div_top, #left_bottom{
    height:auto;
  }
  #left, #contaienr_titre #left{
    height: auto;
  }
  #contaienr_titre #left{
    width: 70%;
  }
  #services_div{
    width: 25%;
  }
}


@media (max-width: 1280px) and (max-height:800px){
  .is_titre4{
    font-size: clamp(15px, 1.5vw, 100px);
  }
  body{
    font-size: clamp(15px, 1.3vw, 30px);
  }
  button{
    font-size: clamp(15px, 1.3vw, 30px);
  }
}

@media (max-width: 1280px) and (max-height:720px){

}

@media (max-width: 1280px){
  #top_section{
   margin-top: 15%;
  }
}
@media (max-width: 1176px){
  #text_in_rigt{
    width: 90%!important;
  }
  .is_big_titre{
    font-size: clamp(30px, 4.5vw, 100px);
  }
  .is_titre{
    font-size: clamp(25px, 3.5vw, 100px);
  }
  .is_titre2{
    font-size: clamp(23px, 2.5vw, 100px);
  }
  .is_titre3{
    font-size: clamp(20px, 2.1vw, 100px);
  }
  .is_titre4{
    line-height: 1;
    font-size: clamp(14px, 1.5vw, 100px);
  }
  body{
    font-size: clamp(13px, 1.2vw, 30px);
  }
  button{
    font-size: clamp(12px, 1.2vw, 30px);
  }
  .el_nav{
    font-size: clamp(15px, 1.1vw, 30px);
  }
  #contaienr_titre #right{
    padding-top: 0;
  }
}

@media (max-width: 1024px){
  #contaienr_titre #right{
    padding-top: 0;
  }
}

@media (max-width: 1152px){
  #left_bottom{
    margin-top: 2%;
  }
}


@media (max-width: 900px){
  .el_nav{
    display: none;
  }
  .burger{
    display: block;
  }

}

@media (max-width: 800px){
  button, body{
    font-size: clamp(14px, 1.2vw, 30px);
  }
  #top_section{
    margin-top: 100px;
  }
  #round_label{
    height: 10%;
    width: 10%;
    min-width: 100px;
    min-height: 100px; 
  }
  #round_label{
    margin-right: 10px;
  }
}



@media (max-width: 700px){
  .return{
    padding-left: 2.5%;
  }
  #nav{
    padding: 2.5%;
  }
  #top_section{
    margin-left: 2.5%;
    margin-top: 90px;
    height: auto;
    min-height: auto;
  }
  #contaienr_titre{
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  #contaienr_titre #left{
    width: 100%;
  }
  #contaienr_titre #right{
     width: 100%;
     margin-top: 3%;
  }
  #services_div{
    width: 30%;
  }
  .logo{
    display: none;
  }
  #text_in_rigt{
    font-size: clamp(16px, 1.5vw, 30px);
  }
  #under_littkle{
    color: rgb(224, 224, 187);
  }
  /* */
  #contaienr_titre #right{
    display: none;
  }


  

  /* */
  .is_big_titre{
    font-size: clamp(35px, 8.5vw, 100px);
  }
  .is_titre{
    font-size: clamp(30px, 7.5vw, 100px);
  }
  .mini_text{
    font-size: clamp(12px, 1.5vw, 30px);
  }
  body{
    font-size: clamp(18px, 3vw, 30px);
  }
  .is_titre2{
    font-size: clamp(25px, 6vw, 100px);
  }
  .is_titre3{
    font-size: clamp(20px, 5vw, 100px);
  }
  .is_titre4{
    font-size: clamp(18px, 3vw, 100px);
  } 
  button{
    font-size: clamp(16px, 2.5vw, 30px);
  }
  .el_nav{
    font-size: clamp(13px, 1.1vw, 30px);
  }
  #footer{
    text-align: center;
  }
  #who{
    padding-right: 10%;
    margin-top: 5%;
  }
}

@media (max-width: 450px){
  #container_svg{
    display: flex;
    justify-content: center;
  }
  #container_svg{
    bottom:80px;
  }
  #nav_bottom{
    justify-content: center;
    opacity: 1;
    display: none;
  }
  .psr_mini{
    display: none!important;
  }
}

