/* GENERAL */

body {
    font-family: 'Lato', sans-serif;
    background-color: #333;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: bold;
}
img {
    max-width: 100%;
    height: auto;
}
section {
    padding: 65px 0 80px 0;
}
section .heading {
    text-align: center;
    padding-bottom: 40px;
}
section .heading h2{
    text-transform: uppercase;
}

.heading h1{
    margin-bottom:20px;
}
.divider {
    width: 100px;
    height: 2px; 
     background-color:  white;
    margin: 0 auto 20px;   
}
.dividerwhite {
    width: 100px;
    height: 2px; 
    background-color: white;  
    margin: 0 auto 20px;
}
.button1 {
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    border: 1px solid white;
    padding: 18px 50px;
    display: inline-block;
    border-radius: 3px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease-in 0s;
    background: transparent;
}
.button1:hover {
    background: white;
    color: #d82c2e;
}
ul {
    list-style: none;
}

ul {
    list-style: none;
}

/* NAVBAR */
.navbar {
    background-color: white;
    color: blue;
    
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid white;
}
.navbar-nav {
    margin: 0 auto;
    text-align: center;
}
.nav-link {
    color: rgb(26, 26, 86) !important;
    margin: 0 6px;
}
.nav-link.active,
.nav-link:hover {
    background-color: rgb(26, 26, 86);
    color: white !important;
}
.custom-toggler.navbar-toggler {
    border-color: rgb(26, 26, 86) !important;  
  }
  .custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(26, 26, 86, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }

#accueil {  
    background-color: #0069d6;
}

#accueil1 {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100vh;     */
}

#caroussel{
    width: 640px;
    overflow: hidden;
    /* border: 2px solid #333; */

}

.images{
    display: flex;
    animation-duration: 60s;
    animation-name: mesImages;
    animation-iteration-count: infinite;
}
@keyframes mesImages{
    0%{
        transform: translateX(0);
    }
    10%{
        transform: translateX(-640px);
    }
    20%{
        transform: translateX(-1280px);
    }
    30%{
        transform: translateX(-1920px);
    }
    40%{
        transform: translateX(-2560px);
    }
    50%{
        transform: translateX(-3200px);
    }
    60%{
        transform: translateX(-3840px);
    }
    70%{
        transform: translateX(-4480px);
    }
    80%{
        transform: translateX(-5120px);
    }
    90%{
        transform: translateX(-5760px);
    }
    100%{
        transform: translateX(0);
    }
}

.profile-picture {
    text-align: center;
    margin: 0px auto 0px;
}
#accueil .heading p {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

#accueil .heading p:nth-child(2){
margin-bottom: 0px;
}

#accueil .heading{
    padding-bottom: 0px;
}

.button1 {
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    border: 1px solid white;
    padding: 18px 50px;
    display: inline-block;
    border-radius: 3px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease-in 0s;
}
.button1:hover {
    background-color: white;
    color: #d82c2e;
}

/* activites */
#activites,#a-propos {
    background-color: #0069d6;
}
#activites .heading h2 {
    color: rgb(26, 26, 86);
}


/* Nous */
#a-propos, #realisations {
    background-color:#5a5e6b;
}
#a-propos .heading h2 {
    color: rgb(26, 26, 86);
}

#a-propos .heading P {
    justify-content: justify;
}


/* Clients */
#clients .heading h2 {
    color: rgb(26, 26, 86);
    margin: 15px 0px;
}
.clients-block {
    width:90%;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: #e9ecef;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
}

#a-propos P{
    
       text-align: justify;
        /* height: 100vh;     */
    }

.clients-block span {
    font-size:2px;
}
.clients-block h3 {
    color: rgb(26, 26, 86);
    margin: 15px 0px;
}
.clients-block h4 {
    color: rgb(26, 26, 86);
    margin-bottom: 20px;
    font-weight: normal;
 }

 .clients-block p {
    color: rgb(26, 26, 86);
 }

 /* REALISATIONS */
 #realisations {
    background-color: #5a5e6b;
 }
 #realisations .heading h2 {
    color: rgb(26, 26, 86);
}

#realisations .heading h6 {
    color: white;
    align-items: center;
}

#realisations img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%); 
}
#realisations img:hover {
     filter: none;
    -webkit-filter: none; 
}

/* CONTACT */

#contact{
    background-color: #5a5e6b;
}

#contact .heading h2{
    color: white;
}

#contact-form {
    font-size: 20px;
    color: white;
}

.form-control {
    height: 50px;
    font-size: 18px;
}
#contact-form input[type=submit] {
    margin: 40px auto 0px;
    display: block;
}
.comments {
    font-style: italic;
    font-size: 18px;
    color: red;
    height: 25px
}
#contact-form .thank-you {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
    font-size: 22px;
}

/* FOOTER */
footer {
    background-color: #333;
}
footer span {
    color: blue;
    font-size: 25px;
    line-height: 35px;
}
footer span:hover {
    font-size: 27px;
}
footer P {
    color: rgb(157, 157, 184);
    font-weight: bold;
    margin: 0px;
}

.orange
{
    color: #1100ff;
}

.col-md-4{
    margin-bottom: 60px;
}

.col-md-4 p{
    text-align: center;
    color: rgb(26, 26, 86);
}

#portfolio .row{
   margin-top: 0px;
}

#footer .col-md-4{
    margin-top: 0px;
}

/* #portfolio img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%); 
}
#portfolio img:hover {
     filter: none;
    -webkit-filter: none; 
}
/* #portfolio .col-md-4 {
    margin-bottom: 20px;
} */

 #portfolio P{
    text-align: center;
 }
