



:root {
  --col_border: rgba(255, 255, 0, 0.202);
}
.bold{
  font-weight: bold;
}
.is_margin{
  margin-top: 2%;
}
.is_margin_big{
  margin-top: 5%;
}

/* */

.img_icone{
  width: 50%;
  aspect-ratio: 1/1;
  cursor: pointer;
  object-fit: cover;
}
#container_reso{
  width: 50%;
  height:auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.a_reso{
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100%;
}



/* */
#contact_section{
  width: 100%;
  height:90vh;
  min-height: 400px;
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 10vh;
  padding-right: 5%;
}
#container_contact{
  width: 50%;
  height:100%;
  position: relative;
  padding: 2% 5% 0% 5%;
  overflow: hidden;
}

/* */
input, textarea{
  background-color: transparent;
  border: none;
  color:white;
  width: 100%;
  height:100%;
  border-radius: 10px;
  padding: 2%;
}
textarea{
  width: 100%;
  height:100%;
   resize: none;
}

/* */
.line_animate_height{
  transition: height 1s ease;
  width: 1px;
  height:0%;
  background-color: rgb(77, 77, 77);;
  position: absolute;
}
.line_animate_width{
  transition: width 1s ease,
  transform 1s ease;
  width: 0%;
  height:1px;
  background-color: rgb(77, 77, 77);;
  position: absolute;
}
#topLine{
  top:0;
  left:0;
  transform-origin: top;
}
#leftLine{
  left:0;
  top:0;
}
#leftLine2{
  left:0;
  top:0;
}
#bottomLine{
  bottom: 0;
  left:0;
}
#rightLine{
  right: 0;
  top:0;
}
.to_height{
  height: 100%;
}
.to_width{
  width: 100%;
}
.to_translate{
  transform: translateX(100%);
}

/* */
.container_sujet{
  height: 10%;
  width: 100%;
  padding: 1%;
  position: relative;
}
#container_text{
  height:50%;
  width: 100%;
  padding: 1%;
  position: relative;
}
#container_btn{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.line_bottom_input{
  height: 1px;
  width: 100%;
  bottom: 0;
  left:0;
  background-color: rgba(255, 255, 255, 0.125);
}


/* */
#presentation{
  width: 45%;
  height:100%;
  position: relative;
  padding: 5% 5% 0% 5%;
  border: 1px solid transparent;
}






@media (max-width: 1280px) and (max-height:1024px){
  #contact_section{
    height:70vh;
  }
}





@media (max-width: 700px){
  .line_animate_height,
  .line_animate_width,
  .line_bottom_input{
    display: none;
  }

  #contact_section{
    flex-direction: column;
    height:90vh;
    min-height: 350px;
    width: 95%;
    padding-right: 0;
    margin-left: 2.5%;
  }
 #container_contact{
    width: 100%;
    border-radius: 20px;
    border: 1px solid white;
  }
  #presentation{
    display: none;
  }
  .line_bottom_input{
    background-color: rgba(255, 255, 255, 0.595);
  }
  .container_sujet{
    margin-top: 2%;
  }
  input{
     color:white;
  }
}


