@charset "UTF-8";
/*Déclaration des variables (couleurs)*/
:root {
  --color-dark-grey: #020617cc;
  --color-greyBlue: rgba(116, 141, 143, 1);
  --color-lightNav: rgba(232, 232, 232, 1);
}

/*Déclaration des fonts*/
@font-face {
  /*font-family: "deutsch_gothicnormal";*/
  font-family: Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
  src: url("fonts/Deutsch-webfont.woff") format("woff");
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
  font-style: normal;
}
/*BODY*/
body {
  min-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: grey;
  margin: 0;
  /*background-image: url("../ressources/img/1311.jpg");*/
  background-color: rgb(2, 6, 23);
  font-family: Arial;
  color:white;
  
}

/*HEADER*/
header {
  min-height: 10%;
  width: 100vw;
  background: var(--color-dark-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  border-width: 0 0 1px 0;
  border-style: solid;
  border-color: #e5e7eb;
  padding-left:10vw;
  padding-right:10vw;
  padding-top:1rem;
  padding-bottom:1rem;
}

.svg-container{
  height:3rem;
  width:3rem;
  background: linear-gradient(90deg,rgba(34, 211, 238, 1) 0%, rgba(37, 99, 235, 1) 100%);
  margin-right: rem;
  display:flex;
  align-items: center;
  justify-content: center;
}
header svg{
  color:white;
  height:2.5rem;
  width:2.5rem;
  
}

nav {
  display:flex;
  align-items:center;
  column-gap: 2rem;

}

nav a{
  text-decoration: none;
  color:white;
}

.siteButton{
  display:flex;
  align-items:center;
  text-decoration: none;
  column-gap: 1rem;
}

.siteName {
  /*font-family: deutsch_gothicnormal;*/
  color: white;
  font-size: 2rem;
  font-weight: bold;
}


/*MAIN*/
main {
  min-height: 100%;
  width: 100%;
}

/*VUES PHTML*/

#successPage {
  max-width:40vw;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6rem;
  box-sizing: border-box;
  border-color: #e5e7eb;
  display:flex;
  align-items: center;
  flex-direction: column;
}


/*Page Acceuil*/
.section1{
  padding-top: 8rem;
  padding-bottom: 5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}

.style1{
  background-image: linear-gradient(to right bottom, rgba(6, 182, 212, 0.1), rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.wrapAcceuil1{
  max-width: 70vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
#titleAcceuil{
  text-align: left;
}
.acceuil1{
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 3rem;
  align-items: center;
  display: grid;
}
.navAcceuil{
  flex-direction: row;
  gap: 1rem;
  display: flex;
  margin-top: 2rem;
}
.buttonAcceuil1{
  color: rgb(255 255 255);
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  background: linear-gradient(90deg,rgba(34, 211, 238, 1) 0%, rgba(37, 99, 235, 1) 100%);
  align-items: center;
  height: 2.5rem;
  display: inline-flex;
  border-width: 0;
}

.buttonAcceuil1:hover{
  opacity: .8;
  animation-duration: .2s;
  transition-duration: .2s;
}
.buttonAcceuil1 svg{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  height: 1.25rem;
  width: 1.25rem;
  margin-left: .5rem;

}
.buttonAcceuil2{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 500;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  border-color: rgb(51 65 85);
  border-width: 1px;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  display: inline-flex;
  background:rgb(15 23 42);
  color: rgb(255 255 255);
  border-width: 1px;
  border-style: solid;
}
.buttonAcceuil2:hover{
  background:grey;
  animation-duration: .2s;
  transition-duration: .2s;
}

.illustration{
  position: relative;

}
.image{
  border-radius: 1rem;
  width: 100%;
  height: auto;
  position: relative;
  max-width: 100%;
}


/*Page Devis */
.pageDevis{
  max-width:60vw;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}
.wrapPageDescription{
  text-align: center;
  margin-bottom: 3rem;
}
.pageDescriptionTitle{
  font-size: 3.75rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}
.accent{
  color: transparent;
  background: linear-gradient(to right, rgba(34, 211, 238, 1), rgba(37, 99, 235, 1));
  -webkit-background-clip: text;
  background-clip: text;
}

.wrapDevis{
  padding: 2.5rem;
  border-color: rgb(51 65 85);
  border-width: 1px;
  border-radius: 1rem;
  border-style: solid;
}

.formDevis>div{
  margin-bottom: 1rem;
}

.labelDevis{
  font-size: 1rem;
  gap: .5rem;
  align-items: center;
  display: flex;
  margin-bottom: .5rem;
}
.input{
  padding:1rem;
  background-color: rgb(15 23 42);
  border-color: rgb(51 65 85);
  border-width: 1px;
  width: 100%;
  border-style: solid;
  color:rgb(255 255 255);
}
.quantityMaterial{
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 3rem;
  display: grid;
}

.fileSelect{
  text-align: center;
  padding: 2rem;
  border-color: rgb(51 65 85);
  border-style: dashed;
  border-width: 2px;
  position: relative;
  background-color: rgb(15 23 42);
  
}
.fileSelect:hover{
  border-color: cyan;
}
.inputFile{
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity:0;
}

.fileSelect svg{
  width: 3rem;
  height: 3rem;
  margin-bottom: .75rem;
  margin-left: auto;
  margin-right: auto;
}
.inputFile1{
  margin: 0;
  margin-bottom: .25rem;
  
}
.inputFile2{
  color: rgb(203 213 225);
  font-size: .875rem;
  line-height: 1.25rem;
  margin: 0;
}

.cguAccept{
  text-align: center;
  font-size: .875rem;
  line-height: 1.25rem;
  color: rgb(203 213 225);
}




.sendForm{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  color: rgb(255 255 255);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-image:linear-gradient(90deg,rgba(34, 211, 238, 1) 0%, rgba(37, 99, 235, 1) 100%);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2.5rem;
  display: inline-flex;
  border-width: 0;
}
.sendForm span{
  display:flex;
  justify-content: center;
  gap: .5rem;
  align-items: center;
}
.senForm svg{
  width: 1.25rem;
  height: 1.25rem;
}
.sendForm:hover{
  opacity: .8 ;
}

/*Effets sur les liens*/
 a:hover{
  color: cyan;
  animation-duration: .2s;
  transition-duration: .2s;
}
.avantage:hover{
  border-color: cyan;
  animation-duration: .2s;
  transition-duration: .2s;
}



/*FOOTER*/
footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 3rem;
  width: 100vw;
  margin-top: auto;
  background: var(--color-dark-grey);
  border-width: 1px 0 0 0;
  border-color: white;
  border-style:solid;
}

footer a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

footer h3{
  font-size: 1.5rem ;
  margin-top:0;
}

.wrapFooter1{
  display: flex;
  width: 100vw;
  align-content:top;
  justify-content: space-between;
  padding:2rem 0 2rem 0 ;
}

.wrapFooter1 div{
  display: flex;
  flex-direction: column;
  padding-left:20vw;
  padding-right:20vw;
  padding-bottom:1rem;
  column-gap: 1rem;
  align-content:top;
}

.wrapFooter1 div a{
  padding-top: .5rem;
}

.legalMention{
  padding-top:1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width:60vw;
  border-style:solid;
  border-width:1px 0 0 0;
  border-color: #e5e7eb;
  padding:2rem 0 2rem 0 ;

}

.wrapAvantages{
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
  margin-top:2rem;
  margin-bottom: 2rem;
  grid-template-columns: repeat(2,minmax(0,1fr));
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
  scroll-behavior: smooth;
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

.wrapAvantages>div{
  padding: 2rem;
  background-color: #1e293b80;
    border-width: 1px;
    border-radius: .75rem;
    border-style: solid;
  border-color: #e5e7eb;
}

.avantage1{
  display:flex;
  align-items: flex-start;
  gap:.5rem;
}
.titreAvantage{
  margin: 0;
  font-size:1.5rem;
}
.avantage2{
  height:2rem;
  width:2rem;
  background: linear-gradient(90deg,rgba(34, 211, 238, 1) 0%, rgba(37, 99, 235, 1) 100%);
  margin-right: rem;
  display:flex;
  align-items: center;
  justify-content: center;
}
.avantage svg{
  color:white;
  height:1.5rem;
  width:1.5rem;
  
}
.BP{
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem;
  color:#e5e7eb;
}
.roundPoint{
  background-color: rgb(34 211 238);
  border-radius: 9999px;
  width: .375rem;
  height: .375rem;

}

/*MEDIA QUERIES*/
/*Modifications pouyr mieux correspondre à un écran de pc*/
@media only screen and (min-device-width: 768px) {
  
}

/*# sourceMappingURL=style.css.map */
