@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.4s;
    font-family: "Poppins";
    scroll-behavior: smooth;
}



body {
    background-color: #f6f5f5;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.body2 {
    background-color: #d3e0ea;
}
.container{
    margin-left: 5%;
    margin-right: 5%;
}

/* -- NAVBAR -- */

.navbar {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
}

.navbar .container {
    width:  1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;

}

.navbar .container a {
    color: #1687a7;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    transition: 0.3s;
}

.navbar .container a:hover {
    color: #276678;

}

.navbar .container .logo {
    font-family: "STAY HOME";
}

@media(max-width: 1300px) {
    .navbar .container a {
        font-size: 1em;
        }

    .navbar .container img {
        width: 180px;
        }    
}
@media(min-width: 1300px) {
    

    .navbar .container img {
        width: 180px;
        }    
}

@media(max-width: 700px) {
    .navbar .container a {
        font-size: 0.7em;
        }

    .navbar .container img {
        width: 50px;
        }    
}
@media(min-width: 551px) {
    .mobile-nav {
        display: none;
      }
}

@media(max-width: 550px) {
    .navbar {
        display: none;
    }
    .mobile-nav {
        background-color: #276678;
        height: 65px;
      }
      
      
      #menuToggle {
        display: flex;
        flex-direction: column;
        position: relative;
        top: 25px;
        left: 25px;
        z-index: 1;
        -webkit-user-select: none;
        user-select: none;
      }
      
      #menuToggle input
      {
        display: flex;
        width: 40px;
        height: 32px;
        position: absolute;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
      }
      
      #menuToggle span
      {
        display: flex;
        width: 29px;
        height: 2px;
        margin-bottom: 5px;
        position: relative;
        background: #ffffff;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 5px 0px;
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                    opacity 0.55s ease;
      }
      
      #menuToggle span:first-child
      {
        transform-origin: 0% 0%;
      }
      
      #menuToggle span:nth-last-child(2)
      {
        transform-origin: 0% 100%;
      }
      
      #menuToggle input:checked ~ span
      {
        opacity: 1;
        transform: rotate(45deg) translate(-3px, -1px);
        background: #36383F;
      }
      #menuToggle input:checked ~ span:nth-last-child(3)
      {
        opacity: 0;
        transform: rotate(0deg) scale(0.2, 0.2);
      }
      
      #menuToggle input:checked ~ span:nth-last-child(2)
      {
        transform: rotate(-45deg) translate(0, -1px);
      }
      
      #menu
      {
        position: absolute;
        width: 400px;
        height: 400px;
        box-shadow: 0 0 10px #85888C;
        border-radius: 15px;
        margin: -50px 0 0 -50px;
        padding-left: 80px;
        padding-top: 125px;
        background-color: #F5F6FA;
        -webkit-font-smoothing: antialiased;
        transform-origin: 0% 0%;
        transform: translate(-100%, 0);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
      }
      
      #menu li
      {
        padding: 10px 0;
        transition-delay: 2s;
        
      }
      #menu a {
        text-decoration: none;
        color: #1687a7;
        opacity:1;
        font-size: 1.4em;
        font-weight: 400;
        transition: 200ms;
      }
      #menu a:hover {
        opacity:0.5;
      }
      
      #menuToggle input:checked ~ ul
      {
        transform: none;
        list-style-type: none;
      }
}
/* -- SECTION 0 -- */
.sec0 {
    text-align: center;
    height: 150px;
    
}

.sec0 img {
    width: 50%;
}

@media(max-width:1100px) {
    .sec0 {
        text-align: center;
        height: 110px;
        
    }
}
@media(max-width:900px) {
    .sec0 {
        text-align: center;
        height: 70px;
        
    }
}
@media(max-width:600px) {
    .sec0 {
        text-align: center;
        height: 40px;
        
    }
}
/* -- SECTION 1 -- */

.sec1 {
    margin-top: 80px;
    
}

.sec1 .container {
    display: flex;
    align-items: center;
    flex-direction: center;
    width:  86%;
    margin: 0 auto;
}


.sec1 .container .left h1 {
    font-size: 3em;
    color: #1687a7;
    margin-bottom: 40px;
    text-decoration: underline;
    
}

.sec1 .container .left h2 {
    color: #1687a7;
    max-width: 700px;
    font-family: "Poppins";
    font-weight: bold;
    margin: 50px 0;
}

.sec1 .container .left button {
    width: 300px;
    height: 65px;
    border-radius: 20px;
    border: none;
    color:  #f6f5f5;
    font-size: 1.1em;
    font-weight: 900;
    background-color: #276678;
    box-shadow: 0px 0px 10px #276678;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;

}
.sec1 .container .right {
    position: relative;
    margin-left: 150px;
    
    
    
}

.sec1 .container .right img {
    position: relative;
    z-index: -999;
}




/* Ceci permet de gérer le responsive */



@media(max-width: 1300px) {

    .sec1 {
        margin-top: 60px;
    }

    
    
    .sec1 .container .left h1 {
        font-size: 3em;
        width: 550px;
    }
    .sec1 .container .left h2 {
        font-size: 1.7em;
    }
    .sec1 .container .left button {
        width: 250px;
        height: 55px;
        font-size: 1em;
        
    }
    .sec1 .container .right img {
        width: 400px;
    }
  
}

@media(min-width: 1300px) {

    .sec1 .container .right img {
        width: 500px;
    }
  
}


@media(max-width:1100px) {
    .sec1 .container {
        flex-direction: column;
    }
    .sec1 .container .left h1 {
        font-size: 3.2em;
        width: 600px;
    }
    .sec1 .container .left h2 {
        font-size: 1.3em;
    }
    .sec1 .container .left button {
        width: 200px;
        height: 50px;
        font-size: 0.9em;
        margin-bottom: 80px;
        
    }
    .sec1 .container .right {
        position: relative;
        left: -60px;
        margin-left: -100px;
        
    }
    .sec1 .container .right img {
        width: 350px;
        margin-top: 50px;
    }
    

} 

@media(max-width: 620px) {
    .sec1 .container .left h1 {
        font-size: 2.3em;
        width: 100%;
        
    }
    .sec1 .container .left h2 {
        font-size: 1.4em;
    }
    .sec1 .container .left button {
        width: 150px;
        height: 35px;
        font-size: 0.7em;
        
    }
    .sec1 .container .right img {
        width: 250px;
        
    }
    .sec1 .container .right {
        position: relative;
        left: 0px;
        margin-left: 0px;
        
    }
    
}

/* -- SECTION 2 -- */

.sec2 {
    margin-top: 200px;
    
}

.sec2 .container {
    display: flex;
    align-items: center;
    max-width:  80%;
    margin: 0 auto;
}

.sec2 .big-card {
    position: relative;
    width: 95%;
    background: linear-gradient(to top, #1687a7, #276678);
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    flex-flow: row wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2%;
   

}
.sec2 .big-card .arrow::before {
    content: "\f107";
    font-family: "FontAwesome";
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #1687a7;
    border-radius: 50px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    color: #d3e0ea;


}


.sec2 .big-card h2 {
    color: #d3e0ea;
    font-size: 2.8em;
    margin-bottom: 10px;

}

.sec2 .big-card h3 {
    color: #d3e0ea;
    font-size: 1.1em;
    width: 95%;
    text-align: center;
    font-family: "Poppins";
    font-weight: bold;
    margin: 30px 0;
   
}

@media(max-width:800px) {
    .sec2 .big-card h2 {
        font-size: 2.5em;
    }
    .sec2 .big-card h3 {
        font-size: 1em;
    }
}

@media(max-width:500px) {

    .sec2 .container {
        display: flex;
        align-items: center;
        max-width:  100%;
        margin: 0 auto;
    }
    .sec2 .big-card h2 {
        font-size: 2em;
    }
    .sec2 .big-card h3 {
        font-size: 1em;
    }
}

/* -- SECTION 3 -- */

.sec3 {
    
    margin-top: -10px;
    background-color: #1687a7;
}

.sec3 .container {
    
    align-items: center;
    max-width:  86%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.sec3 .container .top {
    margin-bottom: 80px;
    text-align: center;
    max-width: 650px;
    align-self: flex-start;
}

.sec3 .container .bottom  {
    max-width: 650px;
    align-self: flex-end;
    text-align: center;
}

.sec3  h2 {
    color: #d3e0ea;
    font-size: 2.8em;
    margin-bottom: 80px;
    text-align: center;
    

}
.sec3 .container h3 {
    
    font-size: 1.8em;
    color: #d3e0ea;
}

.sec3 .container p {
    
    font-size: 1.1em;
    color: #d3e0ea;
}




.sec3 .container .top p {
    max-width: 650px;
    text-align: justify;
}


.sec3 .container  p {
    margin-top: 30px;
    text-align: justify;
}

@media(max-width:1130px) {
    .sec3  h2 {
        
        font-size: 2.3em;
        
        
    
    }
    .sec3 .container h3 {
        
        font-size: 1.4em;
        
    }
    
    .sec3 .container p {
        
        font-size: 1.1em;
        
    }
}

@media(max-width:1130px) {
    .sec3 .container .bottom  {
        margin-left: -1px;
        text-align: center;
        max-width: none;
        
    }
    .sec3 .container .top p {
        max-width: none;
        text-align: justify;
    }

    .sec3 .container .top {
        margin-bottom: 80px;
        max-width: none;
    }
}

@media(max-width:500px) {
    .sec3  h2 {
        
        font-size: 1.7em;
        
        
    
    }
    .sec3 .container h3 {
        
        font-size: 1.2em;
        
    }
    
    .sec3 .container p {
        
        font-size: 1em;
        
    }
}


/* -- SECTION 4 -- */

.sec4 .center {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}



.sec4 .title h2 {
    color: #1687a7;
    font-size: 2.8em;
    

}
.sec4 .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    max-width:  86%;
    margin: 0 auto;
}

.sec4 .container .card {
    width: 304px;
    height: 418px;
    background-color: #d3e0ea;
    border-radius: 15px;
    margin: 14px;
    overflow: hidden;
}

.sec4 .card .top {
    background: linear-gradient(to top, #1687a7, #276678);
    position: relative;
    height: 205px;
    
}


.sec4 .card .bottom {
    margin: 0 20px;
}
.sec4 .card .middle {
    margin: 0 20px;
}
.sec4 .card .description {
    
    text-align: center;
    margin: 15px 15px 0 10px;
    font-family: "Poppins";
    color: #1687a7;
}
.sec4 .card .description p {
    
    font-size: 0.85em;
}

.sec4 .card h3 {
    color: #1687a7;
    font-size: 1.7em;
    margin-top: 10px;
}

.sec4 .card h4 {
    color: #1687a7;
    font-weight: bold;
    font-size: 1.2em;
}
/*.sec4 .card hr { 
    border: 0; 
    height: 1px; 
    width: 50%;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    background-image: -webkit-linear-gradient(left, #d3e0ea, #1687a7, #d3e0ea);
    background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}
*/
.sec4 .card .middle .left {
    margin-left: 50%;
}

.sec4 .card .middle .center {
    margin-left: 24%;
}

.sec4 .card .bottom body{
    background-size: 100%;
    background-repeat: repeat;
  }


  .sec4 .card .bottom  .btn {
      display: block;
      width: max-content;
      padding: 8px 20px;
      background-color: transparent;
      color: #1687a7;
      border: 2px solid #1687a7;
      border-radius: 0.6em;
      margin: 6px auto;
      margin-top: 30px;
      text-transform: uppercase;
      text-decoration: none;
      transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;

}

.sec4 .card .bottom .btn:hover,
.sec4 .card .bottom .btn:focus {
      color: #d3e0ea;
      box-shadow: 0 0 40px 40px #1687a7 inset;
      outline: 0;
      transition: 0.5s;
}

     

.sec4 .card:nth-child(1) .top {
    transform: skew(0deg, -25deg);
    top: -80px;
}

.sec4 .card:nth-child(2) .top {
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.sec4 .card:nth-child(3) .top {
    transform: skew(0deg, 25deg);
    top: -80px;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}



.sec4 .card:nth-child(1) .bottom,
.sec4 .card:nth-child(1) .middle,
.sec4 .card:nth-child(3) .bottom,
.sec4 .card:nth-child(3) .middle {
    position: relative;
    top: -80px;
}


.sec4 .card:nth-child(2) .middle,
.sec4 .card:nth-child(2) .bottom {
    text-align: center;
    position: relative;
    top: 70px;
}


.sec4 .card:nth-child(1) h3,
.sec4 .card:nth-child(1) h4 {
    text-align: right;
}
/* -- SECTION 5 -- */

.sec5 {
   
    margin-top: 200px;
    margin-bottom: 200px;
    
}

.sec5 .container {
    display: flex;
    align-items: center;
    flex-direction: center;
    max-width:  80%;
    margin: 0 auto;
}

.sec5 .big-card {
    position: relative;
    width: 95%;
    background: linear-gradient(to top, #1687a7, #276678);
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    flex-flow: row wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1%;
   

}


.sec5 .big-card h2 {
    color: #d3e0ea;
    font-size: 2.8em;
    margin-bottom: 10px;

}

.sec5 .big-card h3 {
    color: #d3e0ea;
    font-size: 1.2em;
    width: 95%;
    text-align: center;
    font-family: "Poppins";
    font-weight: bold;
    margin: 30px 0;
    
   
    
}

.sec5 .big-card a {
    color: #f6f5f5;
    font-size: 1.2em;
    width: 95%;
    text-align: center;
    font-family: "Poppins";
    font-weight: bold;

    text-decoration: none; 
}

@media(max-width:500px) {

    .sec5 .container {
        display: flex;
        align-items: center;
        max-width:  100%;
        margin: 0 auto;
    }
    .sec5 .big-card h2 {
        font-size: 2em;
    }
    .sec5 .big-card h3 {
        font-size: 1em;
    }
}

/* -- SECTION 6 -- */
.sec6 {
    
    margin-top: -10px;
    background-color: #d3e0ea;
    padding-bottom: 100px;
}

.sec6 .container {
    
    align-items: center;
    max-width:  800px;
    margin: 0 auto;
}

.sec6 .container h1 {
    color: #1687a7;
    font-size: 4em;
    margin-bottom: 50px;
    text-align: center;
}

.sec6 .container h2 {
    color: #1687a7;
    font-size: 2.8em;
    margin-bottom: 50px;
    margin-top: 30px;
    text-align: center;
}

.sec6 .container h3 {
    
    font-size: 1.4em;
    color: #1687a7;
}

.sec6 .container p {
    
    font-size: 1em;
    color: #1687a7;
    
}
.sec6 .container ul {
    
    font-size: 1em;
    color: #1687a7;
    padding-left: 60px;
    
}
.sec6 .container a {
    
    text-decoration: none;
    color: #276678;
    
}

.sec6 .container b {
    
    font-weight: 800;
    
}

@media(max-width:900px) {
    .sec6 .container {
        width: 90%;
    }
}
/* -- FOOTER -- */

footer {
   
    height: 100%;
    background-color: #1687a7;
    display: flex;
    align-items: center;
    z-index: 1;
}

footer .container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    width:  100%;
    margin: 20px 20px;
}

footer .container h2 {
    color: #d3e0ea;
    margin-bottom: 20px;
}

footer .container p,
footer .container a {
    color: #d3e0ea;
    text-decoration: none;
}

footer .container .left {
    display: flex;
    flex-direction: column;
}

footer .container .left {
    margin: 30px 0;
}

footer .container .right {
    max-width: 50%;
    margin: 30px 20px;
}

footer .container .right img {
    width: 40px;
    margin-top: 20px;
    
}