@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat: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&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Sen:wght@400;700;800&display=swap');

body {
    margin: 0;
    color: #3a3a3a;
    font-family: 'Sen';
}

.container-fluid {
    height: 100vh;
    padding: 0;
    margin: 0;

}


h1 {
    font-size: 50px;
    font-weight: 600;
    margin: 0;
    padding: 0px 0px 20px 0px;
}

h2 {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 500;
    padding: 5% 0px 1% 0px;
    margin: 0;
}

h1, h2 {
    color: #002F2F;
}

h3 {
    font-family: 'Oswald';
    font-weight: 600;
    font-size: 60px;
    margin: 0;
    position: relative;
}

h5 {
    padding-left: 5%;
    margin: 2% 0% 1% 0%;
}

h6 {
    padding-left: 5%;
    margin: 2% 0% 1% 0%;
}

p {
    /*font-size: 16px;*/
    margin-top: 0px;
}

a:visited, a:link {
    color:inherit;
    text-decoration: none;
}

#global {
    background-color: #faf9f7;
    position:absolute;
    width:100%;
    height: 100%;
    overflow: hidden;
}

#container {
    background-color: #ffffff;
    height: 100%;
    width: 100%;
    position:absolute;
    right: 65px;
    top: 50%;
    transform: translate(0%, -50%);  
    z-index: 1;
    overflow-y: scroll;
    box-sizing: border-box;
    padding: 3% 3% 3% 3%;
}



#contentContainer1 {
    display:flex;
    width:100%;
    height:100%;
    align-items: center;
}



#mockupsContainer {
    height:100%;
    flex-grow: 2;
    text-align: center;

}


#mockups {
    max-height: 100%;
    max-width: 100%;
    position:relative;
    top: 50%;
    transform: translate(0px, -50%);

}




/*-------   TOGGLE ------ */

.toggle-switch {
  position: relative;
  width: 200px;
    margin: 2%;
}

label {
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: #084645;
  border-radius: 50px;
  cursor: pointer;
}

input {
  position: absolute;
  display: none;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  transition: 0.3s;
}

input:checked ~ .slider {
  background-color: #eeeff4;
}

.slider::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 16px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  box-shadow: inset 28px -4px 0px 0px #eeeff4;
  background-color: #084645;
  transition: 0.3s;
}

input:checked ~ .slider::before {
  transform: translateX(95px);
  background-color: #fabb62;
  box-shadow: none;
}






/*--------------------  -----------------*/


#contentContainer2 {
    display:flex;
    width:100%;
    height:40%;
    align-items: center;
    margin: 2% 0px 2% 0px;
}

#logo1, #logo2, #logo3, #couleurs, #fonts {
    height:100%;
    text-align: center;
}

#logo1 {
    flex-grow: 2;
}

#logo2 {
    flex-grow: 2;
    background-color: #002f2f;
}

#logo3 {
    flex-grow: 1;
    
    
}

#couleurs {
    flex-grow: 4;
}

#fonts {
    flex-grow: 3;
}

.img-charte {
    position:relative;
    top:50%;
    transform: translate(0px, -50%);
    max-height: 90%;
    max-width: 90%;
}

#logo3-img {
    max-height:70%;
}

/*----------------------------------------------*/

#contentContainer3 {
    display:flex;
    flex-wrap: nowrap;
    max-width:100%;
    height:14%;
    align-items: center;
    margin: 2% 0px 2% 0px; 
    justify-content: space-between;
}


.icon {
     flex: 1 1 auto;
    padding:2%;
    
}

.icon img {
     max-width: 100%; /* empêche les images de dépasser la largeur de leur conteneur */
  height: auto; 
}

