@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
*, *::after, *::before{
  box-sizing: border-box;
}
:root{
  --foreground-color: #009DD1;
  --background-color:rgb(0, 15, 30); 
  --lightGrey-color: rgb(205, 220, 235); 
  --middleGrey-color: rgb(125, 125, 125);
}
body {
  display: flex;
  flex-direction: column;
  margin: 0;
  height: auto;
}
html{
  height: auto;
}




main {
  display: flex;
  flex-direction: column;
}





/* ====== DEBUT NAVBAR ====== */
.logo{

  position: relative;
  width: 59px;


}
.navbar .logo img{
  position: absolute;
  bottom: 0;
  height: calc(8vh - 6px);


}
.navbar-wrapper{

  display: flex; 
  width: 100%;
  height: 100%;
  margin-left: 10%;
  margin-right: 10%;
  justify-content: space-between;
}


.navbar .logo img.active{

  animation: spin .5s;
}



@keyframes spin {
  from {
    transform: rotateX(0deg);
  }
  to {
    transform: rotateX(-360deg);
  }
}
@keyframes spinback {
  from {
    transform: rotateX(720deg);
  }
  to {
    transform: rotateX(0deg);
  }
}



.navbar .logo {
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  justify-content: center;
  border-bottom: var(--foreground-color);
  transition:all 3s;

}
.link-house{

  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
 

}
.link-house-container:hover{
  transition: .5s;
  color: var(--background-color);
  background: var(--lightGrey-color);
  box-shadow: inset 2px 2px 4px #000c17,
  inset -2px -2px 4px #001225;
}
.link:first-child{
  padding-right: 2rem;
}
.link-house img{
  width: 25px;
  display: flex;
  justify-self: center;
  align-items: center;

}
.link-house-container{
  border-top: 6px solid var(--foreground-color);
  border-right: 6px solid var(--foreground-color);
  border-left: 6px solid var(--foreground-color);
  border-top-left-radius: .75rem;
  border-top-right-radius: .75rem;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 .75rem;
  position: relative;
  margin-left: 5rem;
}
.navbar{
  border-bottom: 6px solid var(--foreground-color);
  top: 0;
  background-color: var(--background-color);
  position: fixed;
  width: 100%;
  height: 8vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 25;
  transition: .5s linear;


  
}
.navbar-links{
  font-family: 'Ubuntu', sans-serif;

  height: 100%;

  display: flex;

}
.links-container{
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.link {

  display: flex;
  justify-self: center;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  cursor: pointer;
  width: 100%;
  font-size: .75rem;
  font-weight: 600;
  transition: 0.3s linear;
  position: relative;
}


.link h3{
  margin: 0;
  padding: 0 1.25rem;
  border-left: 6px solid var(--foreground-color);
  border-right: 6px solid var(--foreground-color);
  border-top: 6px solid var(--foreground-color);
  color: var(--foreground-color);
  border-top-left-radius: .75rem;
  border-top-right-radius: .75rem;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: .5s;
}

.link h3:hover{

  color: var(--background-color);
  background: var(--lightGrey-color);
  box-shadow: inset 2px 2px 4px #000c17,
              inset -2px -2px 4px #001225;
}

.link-underline{
  position:absolute;
  bottom: 0;
  height: 6px;
  left: 0;
  width: 0;
  background-color: var(--lightGrey-color);
  transition: .5s cubic-bezier(.8,0,.28,1);

}

.link-underline.active{
  width: 100%;
 
}

.hamburger-menu{
  position: absolute;
  right: 10%;
  width: 60px;
  height: 100%;
  display: none;
  color:var(--foreground-color);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-right: 6px solid var(--foreground-color);
  border-top: 6px solid var(--foreground-color);
  border-left: 6px solid var(--foreground-color);
  grid-template-rows: 1fr 1fr 1fr;
  padding: 2.5px 5px;
}
.hamburger-container{
  width: 100%;
  position: absolute;
  background-color: var(--background-color);

  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 0;
  gap: 1rem;
  transition: .5s cubic-bezier(.51,-0.05,.55,1.07);
  border-bottom: 6px solid var(--foreground-color);
  
  transform: translateY(-200px);

  background-color: var(--lightGrey-color);
}
.hamburger-container li{
    margin:0;
   padding: 0;
   text-indent: 0;
   list-style-type: 0;
   list-style-type: none;
   font-size: .8rem;
   font-weight: 600;
  font-family: 'Ubuntu';
  color: var(--foreground-color);
  cursor: pointer;
 
}
.hamburger-container li:hover{
 text-decoration: underline;

}
.hamburger-container.active{

}
.hamburger-menu > *{
  width: 100%;
  height: 6px;
  background: var(--foreground-color);
  display: flex;
  justify-self: center;
  align-self: center;
}


@media all and (max-width: 800px)  {
  .navbar{
  }
  .hamburger-menu{
    display: grid;
    cursor: pointer;
  }
  .link {
    display: none;
  }
  .link-house{
    display: none;
  }
 
}


/* ====== FIN NAVBAR ====== */

/* ====== DEBUT SECTION HOME ====== */
.section.home {
  height: 92vh;
  width: 100%;
  color: var(--foreground-color);
  height: 100vh;
}
.arrow-bottom{
  position: absolute;
  bottom: 25%;
  left: 50%;
  right: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 2s;
  z-index: 20;
  cursor: pointer;
}
.arrow-bottom img{
  position: absolute;
  height: auto;
  width: 50px;
}
.image{
  transition: 15s;
  overflow: hidden;
  width: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100%;
  object-fit: cover;
  background-image: url('https://images.unsplash.com/photo-1565021324739-7493c5a74a13?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80');
}
.image:hover{
  background-size: 150%;
}
.home-content{
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 19;
  gap: 3rem;
  color: var(--lightGrey-color);
}

.animation-content {
  display: flex;
  gap: 2.5rem;
  flex-direction: row;

}


.home-content h1{
  font-size: 2.5rem;
  font-family: 'Barlow', sans-serif;
  margin: 0;
}
.home-content h4{
  font-size: 2rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 100;
  margin: 0;
}
@media all and (max-width: 950px){
  .home-content h1{
    font-size: 2rem;
  }
  .home-content h4{
    font-size: 1.5rem;
  }
  .animation-content{
    display: flex;
    flex-direction: column;
    text-align: center;
  }
 
}
@media all and (max-width: 600px){
  .home-content h1{
    font-size: 1.5rem;
  }
  .home-content h4{
    font-size: 1.25rem;
  }
 
}

/* ====== FIN SECTION HOME ====== */

/* ====== DEBUT SECTION PROJECTS ====== */
.section.projects {
  min-height: 100vh;
  height: 100%;
  width: 100%;

  background: var(--lightGrey-color);
 
  display: flex;
  justify-content: center;

  
}
#projects-taste{
 margin:0;
 font-family: "Barlow";
 font-size: 1.5rem;
 font-weight: 600;
 margin-top: 48px;
 margin-bottom: 24px;
 text-decoration: underline;
}
.projets-taste-text{
  padding-bottom: 24px;
}
.projets-taste-text a{
  font-size: 900;

}
.projets-taste-text p{
  font-family: 'Roboto';
  font-size: .875rem;
  margin: 0;
}

.container-section-projects{
  width: 80%;
  height: 100%;
  transform: translateY(100vw);
  transition:1s cubic-bezier(0,.28,.3,1);
  padding: 0 0 10% 0;
}

.header-projects {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto';
  font-weight: 400;
  font-size: .9rem;
}
.projects-disclaimer{

  border-radius: 12px;
}
.header-projects p{
  margin: 0;
}

.header-projects-header{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  background-color: var(--background-color);
  border-radius: 8px;
}
.header-projects-header img{
  margin-left: 12px;
}
#disclaimer-text{
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
  margin-left: 12px;
  color: var(--lightGrey-color);
  font-family: "Roboto";
}
.header-projects-informations{
  padding: .5rem 0;
  font-size: .75rem;
}
.header-projects-informations li{
  margin:0;
  padding: 0;
  text-indent: 1rem;
  list-style-type: 0;
  list-style-type: none
}
.header-projects-header span{
  margin-right: .5rem;
}
.header-projects-header img{
  height: 2.25rem;
  width: auto;
  margin-bottom: -4px;
}

.menu-projects {
  display: flex;
  width: 100%;
  flex-direction: row;
  gap: 2rem;
  margin-top: 24px;
  margin-bottom: 24px;
  align-items: center;
}

.menu-projects h3{
  display: flex;
  align-items: center;
  border: 3px solid var(--foreground-color);
  color: var(--foreground-color);
  background-color: var(--lightGrey-color);
  border-radius: .25rem;
  margin: 0;
  height: 100%;
  padding: .5rem;
  cursor: pointer;
  transition: .5s;
}
.menu-projects h3.active{
  background-color:var(--foreground-color);
  color:var(--background-color);
  border: 3px solid var(--background-color);
}

.body-projects{
  display: grid;

  grid-template-columns: 1fr 1fr ;
  gap: 1.5rem;

}
.card-project{
  min-height: 450px;
  min-width:400px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--background-color);;
  position: relative;
  border-radius: .5rem;
  display: flex;
  flex-direction: column;
}

.views-wrapper {
  position: relative;
  height: 100%;
  width: 100%;

}


.card-project .card-view-1{
  position: absolute;
  top:0;
  bottom:0;
  width: 100%;
  display:block;
  transition: .75s;
  opacity: 1;
  z-index: 10;
}


.card-image {
  /*background-image: url(../assets/screenshots/Omniscience.png);*/
  position: absolute;
  top: 0;
  bottom: 0;

  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;

  height: 100%;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}
#omniscience {
  background-image: url(../assets/screenshots/Omniscience.png);
  background-size: cover;
}
#eventbrite {
  background-image: url(../assets/screenshots/Evenbrite.png);
  background-size: cover;
}
#habits-tracker {
  background-image: url(../assets/screenshots/Habits-tracker.png);
  background-size: cover;
}
#snake {
  background-image: url(../assets/screenshots/Snake.png);
  background-size: cover;
}
#clonebook {
  background-image: url(../assets/screenshots/Clonebook.png);
  background-size: cover;
}
#learnroom {
  background-image: url(../assets/screenshots/Learnroom.png);
background-size: cover;
}





.card-header {
  border-bottom: 3px solid var(--background-color);
  width: 100%;
  display:grid;
  grid-template-columns: 3fr 1fr;
  background-color: var(--lightGrey-color);
  color: var(--background-color);
  position: relative;
  z-index: 18;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}
.card-header h4 {
  padding: .5rem;
  margin:0;
  font-family: 'Roboto', sans-serif;
  font-size: 1.25rem;
  font-weight: 400;

}
.card-header .card-group{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;

  padding:  0 .25rem .25rem 0;

}

.card-header .card-group img{
  height: 1.5rem;
  width: auto;
  
}

.card-footer {
  transition: .75s;
  z-index: 40;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  border-bottom-right-radius: .5rem;
  background-color: var(--lightGrey-color);
  color: var(--background-color);
  display: flex;

  justify-content: center;
  align-items: center;
  width: 50%;
  border-top-left-radius: .5rem;

  border-left: 3px solid var(--background-color);
  border-top: 3px solid var(--background-color);

  padding: 0.25rem;
}

.card-footer p {
 

  margin:0;
  font-family: 'Roboto', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  
}
.card-project .card-view-2{
  position: absolute;
  transition: .75s;
  height: 100%;
  width:  100%;
  background: linear-gradient(rgb(205, 220, 235), rgb(225, 225, 225));

  z-index: 17;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
  opacity: 0;
}

.card-description{
  padding:0.5rem;
  color: var(--background-color);
}
.card-description p{
  margin: 0;
  font-family: 'Roboto';
  font-size: .9375rem;
}
.card-links-container{
  display: flex;
  justify-content:center;
  position: relative;
}
.card-links-header{
  position: absolute;
  top: 0rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.card-links-container h5{
  margin: 0;
  padding: 0 10px;
  font-family: "Ubuntu";

}
.card-links-container span{
  width: 100%;
  height: 3px;
  background-color: var(--background-color);
}
.card-links-container a{
  padding:0;
  margin: 0;
  text-decoration: none;
  color: var(--foreground-color);
  font-size: 1rem;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;

}
.link-container{
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-links-body{
  display:grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.card-tags-container{
  position: relative;



}

.card-tags-container-header{
  position: absolute;
  top: -.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;

}
.card-tags-container-header h5{
  margin: 0;
  padding: 0 10px;
  font-family: "Ubuntu";
}
.card-tags-container-header span{
  width: 100%;
  height: 3px;
  background-color: var(--background-color);
}

.card-tags-container-body{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: .5rem;
  margin-top: 0.5rem;
  gap: .5rem;

}

.card-tag{
  display: flex;
  justify-content: center;

}

.card-tag p {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
  border: 2px solid var(--background-color);
  border-radius: 5px;
  padding: .1rem .3rem;
  font-family: "Roboto";
  font-size: .75rem;
  font-weight: 400;
}

@media all and (max-width:1200px){
  .body-projects{
    display:grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media all and (max-width:800px){
  .card-project{
    min-width: 350px;
    min-height: 350px;
    margin: auto;
  }
  .body-projects{
    display:grid;
    grid-template-columns: 1fr;

  }
  .menu-projects{
    flex-direction: column;
    gap: .75rem;
  }
}
@media all and (max-width:450px){
  .card-project{
    min-width: 225px;
    min-height: 300px;
    margin: auto;
  }
  .body-projects{
    display:grid;
    grid-template-columns: 1fr;
  }
  .card-group img{
    height: .75rem;
  }
  .card-header h4{
    font-size: 1rem;
  }
  .card-description {
   padding: 0.5rem;
  }
  .card-description p{
    font-size: 0.75rem;
    display: block;


  }
  .card-tags-container-body{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    padding: .25rem;
    margin-top: 0.25rem;
    gap: .25rem;
  
  }
  .card-tags-container-body p{
    font-size: 0.7rem;
  }
  .card-links-container a{

    font-size: .8rem;

  
  }
}

/* ====== SECTION SKILLS ====== */


.section.skills {
  height: auto;
  width: 100%;
  position: relative;

}

.skills-background {
  position: absolute;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  z-index: 15;

}
.background-top{
  background-color: 	var(--background-color);


}
.background-bottom{
  background-color: var(--lightGrey-color);
}

.skills-foreground {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 75%;
  top: 0;
  z-index: 15;
  display: flex;
  flex-direction: column;
  padding: 0 0 5rem 0;

}
.skills-header{
  color: var(--lightGrey-color);
  display: flex;

  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
}
.skills-header h4{
  font-family: 'Roboto';
  margin:0;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: underline;
}
.skills-header p{
  font-family: 'Roboto';

  margin:0;



  padding: 0;
  font-size: .9rem;
}

.skills-body{
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* --------------------------- */
  height: 100%;

}
.skills-frontend{
  background-color: var(--lightGrey-color);
  border-top-left-radius: .5rem;

  border: .5px solid rgba(0,15,30,.15);
  display: flex;
  flex-direction: column;
  color: var(--background-color);
  padding-bottom: 3rem;

}
.skills-header-frontend{
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  padding: 2rem 2rem .5rem 2rem;
  padding-top:3rem;

}
.skills-header-frontend img{
  height: 5rem;
  width: auto;
  display: flex;
  justify-self: center;
}
.skills-header-frontend h2{
  margin: 0;
  font-family: "Ubuntu";
  font-weight: 600;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skills-header-frontend p{
  margin: 0;
  text-align: center;
  font-family: "Barlow";
  font-weight: 400;
  display: flex;
  justify-content: center;
  font-size: 1rem;
}
.skills-body-frontend{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.body-langages h5{
  margin: 0;
  font-family: "Ubuntu";
  font-weight: 550;
  font-size: 1rem;
  padding-top: 0.5rem;
  padding-bottom: .25rem;
}
.body-langages p{
  margin: 0;
  padding-bottom: .5rem;
  font-family: "Barlow";
  font-weight: 400;
}
.body-tools h5{
  margin: 0;
  font-family: "Ubuntu";
  font-weight: 550;
  font-size: 1rem;
  padding-top: 0.5rem;
  padding-bottom: .25rem;
}
.body-tools li{
  margin:0;
  padding: 0;
  text-indent: 0;
  list-style-type: 0;
  list-style-type: none;
  font-family: "Barlow";
  font-weight: 400;
  padding: .1rem;
}

.skills-backend{
  background-color: var(--lightGrey-color);
  border-top-right-radius: .5rem;

  border-top:  .5px solid rgba(0,15,30,.15);
  border-right:  .5px solid rgba(0,15,30,.15);
  border-bottom: .5px solid rgba(0,15,30,.15);
  display: flex;
  flex-direction: column;

  grid-template-rows: 2fr 3fr;
  color: var(--background-color);
  padding-bottom: 3rem ;

}
.skills-header-backend{
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  padding: 2rem 2rem .5rem 2rem;
  padding-top: 3rem;
}
.skills-header-backend img{
  height: 5rem;
  width: auto;
  display: flex;
  justify-self: center;
}
.skills-header-backend h2{
  margin: 0;
  font-family: "Ubuntu";
  font-weight: 600;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;

}
.skills-header-backend p{
  margin: 0;
  text-align: center;
  font-family: "Barlow";
  font-weight: 400;
  display: flex;
  justify-content: center;
  font-size: 1rem;

}
.body-langages p{
  font-size: 1rem;
}
.skills-body-backend{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.skills-body-backend li{
  font-size: 1rem;
}
.skills-body-frontend li{
  font-size: 1rem;
}

@media all and (max-width:600px){

}


/* ====== A TRIER ====== */


.section.contact {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: 12fr 1fr;
  background-color: var(--lightGrey-color);
  position: relative;
}




.contact-container{
  width:80%;
  margin: 2.5rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.contact-form{
  padding:  0 2rem 0 0;


}
.form-container{
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: 2fr 3fr ;
  position: relative;
}
.form-top{
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;

}
.input-elem{
  font-family: "Roboto";
  font-weight: 300;
  font-size: 1rem;
  display: grid;
  grid-template-columns: 1fr 5fr;
  color:var(--lightGrey-color);
  background-color:var(--background-color);
  
  border-radius: .25rem;
}
.input-elem input{
  border: none;
  font-family: "Roboto";
  outline: none;
  font-size: 1.25rem;
  padding: .5rem .5rem;
  font-weight: 400;
  color: var(--middleGrey-color);
  border: 2px solid var(--background-color);
  background-color: white;
  border-radius: .2rem;
}
.input-elem label{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
}
.form-bottom{
  height: 100%;
  display: grid;
  grid-template-rows: 8fr 3fr 2fr;
}
.form-bottom textarea{
  font-family: "Roboto";
  border: 2px solid var(--background-color);
  border-radius: .25rem;
  outline: none;
  font-size: 1rem;
  font-weight: 400;
  color: var(--middleGrey-color);
  background-color: white;
  padding: .75rem .75rem;
}
.form-bottom input{
  display: flex;
  justify-content: center;
  align-items: center;
}
.input-checkbox{
  padding: .5rem 0  ;
  display: flex;
  flex-direction: row;
  font-family: "Roboto";
  font-size: .8rem;
  font-weight: 400;
  font-style: oblique;
}
.input-checkbox input{
  margin-right: .5rem;
  width: 1rem;
  height:1rem;
  appearance: none;
  box-shadow: none;
  text-align: center;
  line-height: 1em;
  background: var(--lightGrey-color);
  border: 2px solid var(--background-color);
}

#checkbox[type='checkbox']:checked:after {
  content: '✔';
  color: var(--lightGrey-color);
  background: var(--background-color);
  transform: scale(1.5, 1.2);
}
.checkbox-div{
  margin-left: -4px;
}

#submit-btn{
  padding: .2rem 1rem;
  background-color: var(--lightGrey-color);
  border: 3px solid var(--foreground-color);
  color: var(--foreground-color);
  border-radius: .25rem;
  font-family: "Roboto";
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
}
.submit-div {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.contact-infos{
  display: grid;
  grid-template-rows: 1fr 2fr;
  padding:  0  0 0 2rem;
}
.infos-basic{
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: .5rem;
}
.infos-map{
  border: 3px solid var(--background-color);
  border-radius: .25rem;
 
}
.info-map iframe{
  height: 300px;
  width: auto;
}
.infos-basic p{
  margin: 0;
  display: flex;
  align-items: center;
  font-family: "Roboto";
  color: var(--background-color);
  font-size: 1rem;
  font-weight: 400;
}

.infos-basic img{
  width: 20px;
  margin-right: .25rem;
}
.infos-basic a{
  color: var(--foreground-color);
  text-decoration: none;
}

.junction {
  height: 3px ;
  width: 40%;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  position: absolute;
  background-color:rgb(0, 15, 30);
  top: 0;
}

.form-alert{
  background-color: rgb(250, 25, 50);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  padding: 0 1rem;

  font-family:"Barlow";
  border-radius: .25rem;
}
.form-alert p {
  margin: 0;
  font-size: 1.1rem;
}
.form-alert p span{
  font-size: 1.35rem;
  font-weight: 600;
}


.hidden-success-alert{
  position: absolute;
  top: 2.2rem;
  background-color: rgb(75,250,125);

  width: 100%;
  display: none;
  font-family: "Barlow";
  padding: 1.5rem .75rem;
  line-height: 1.5;
  border-radius: .25rem;
}

.hidden-success-alert h4{
  margin: 0;
  font-size: 1.5rem;
}
.hidden-success-alert p{
  margin: 0;
  font-size: 1.15rem;
}

@media all and (max-width:800px){
  .contact-container{
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .contact-form{
    padding:0
  }
  .contact-infos{
    padding:0;
  }
  .skills-frontend{
    border-radius: 0.5rem;
  }
  .skills-backend{
    border-radius: 0.5rem;
  }

  
  
} 

@media all and (max-width: 400px){
  .infos-map{
    width: auto;
  }

  .input-checkbox{
    width: auto;
    font-size: .6rem;
  }
  .form-bottom textarea{
    width: auto;
  }
  .form-top{
    width: auto;
  }
  .input-elem input{
    width: 100%;
  }
  .contact-form{
    display: flex;
    justify-content: center;
  }
  .form-container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: auto;


  }
  .form-bottom{
    width: auto;

  }
  .submit-div{
    margin-left: auto;
    margin-right: auto;
  }


  .submit-div{
    width: 200px;
  }
  .infos-basic{
    margin-bottom: 12px;
    margin-top: 12px;
  }

  .infos-basic p{
   width: 100%;
  }
  #email-perso{
    white-space: break-spaces;

    word-wrap: break-word;
  }

}

/* FOOTER */
.footer {
  background: orange;
  display: flex;
  justify-content:center;
  align-items: center;
  background-color: var(--background-color);
  color: var(--lightGrey-color);
}

.footer h5{
  font-family: "Barlow";
  font-style: oblique;
  font-weight: 300;
  font-size: .9rem;
  margin: 0;
}

.footer img{
  height: 20px;
  width: auto;
  margin-right: .75rem;
  display: flex;
  align-items: center;
}


#logo-dark{
  
  opacity: 1;
  transition: .5s cubic-bezier(.8,0,.24,1);
}

#logo-light{

  opacity: 0;
  transition: .5s cubic-bezier(0,.77,1,.24);
}

#quizz{
  background-image: url(../assets/screenshots/Quizz.jpg);
  background-size: cover;
}

#moviefinder{
  background-image: url(../assets/screenshots/MovieFinder.jpg);
}

#images-app{
  background-image: url(../assets/screenshots/ImagesApp.jpg);
  background-size: cover;
}
#notepad{
  background-image: url(../assets/screenshots/Notepad.jpg);
  background-size: cover;
}
.section.skills{
  display: flex;
  flex-direction: column;
}
.sk-header-container{
  background-color: var(--background-color);
}

.sk-header{
  background-color: var(--background-color);
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 48px;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sk-header h4{
  margin: 0;
  font-weight: 600;
  color: var(--lightGrey-color);
  font-size: 1.5rem;
  font-family: "Barlow";
  text-decoration: underline;
  margin-bottom: 16px;
  
}

.sk-header p{
  margin: 0;
  color: var(--lightGrey-color);
  font-size: .875rem;
  font-family: "Roboto";
  
}

.sk-body-container{
  position: relative;
}

.sk-body-box-colored{
  position: absolute;
  background-color: var(--background-color);
  height: 339px;
  top: 0;
  left: 0;
  right:0;
  z-index: 10;
}

.skills-body{
  margin-left:10%;
  margin-right:10%;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: row;
}
.skills-frontend {
  flex: 1;
  height: auto;
}
.skills-backend {
  flex: 1;
  height: auto;
}

.skills-others{

  margin-left: 10%;
  margin-right: 10%;
  padding: 2rem;
  display: flex;
  flex-direction: row;
  gap: 8px;
  background-color: var(--lightGrey-color);
  border-bottom-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
  border-left:  .5px solid rgba(0,15,30,.15);
  border-right:  .5px solid rgba(0,15,30,.15);
  border-bottom: .5px solid rgba(0,15,30,.15);
}
.skills-others h4{
  margin: 0;
  font-family: "Ubuntu";
  font-weight: 550;
  font-size: 1rem;
}
.skills-others p {
  margin: 0;
  font-family: "Barlow";
  font-weight: 400;
  margin-top:-.75px;

}

@media (max-width: 600px) {
  .skills-body{
    flex-direction: column;
  }
  .skills-frontend {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom:  0;
  }
  .skills-backend {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    border-left:  .5px solid rgba(0,15,30,.15);
  }
  .skills-others{
    flex-direction: column;

  }
}

#label-cb-contact{
  font-size: .75rem;

}


.skills-gradiant{

  height: 200px;
  width: 100%;

  background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(205,220,235,1) 100%);
}

#hamburger-wrapper{
  position: fixed;
  top: 8vh;
  width: 100%;
  height: 250px;

  display:none;
  z-index: 999999999999999;
  overflow: hidden;

}