/*Styles généraux*/
@import url('https://www.w3schools.com/icons/fontawesome5_intro.asp');

* {
    margin: 0;
    padding: 0;
    font-family: arial sans-serif;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    width: 100%;
    font-family: 'roboto'sans-serif;
}

h1 {
    font-size: 40px;
    line-height: 64px;
    color: #eed755;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 34px;
    line-height: 40px;
    color: white;
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    color: white;
}

p {
    font-size: 16px;
    padding: 10px;
    color: white;
    max-width: 100%;
}

/*style nav-bar*/
.logo {
    width: 200px;
    height: 65px;
    border-radius: 50%;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    padding: 5px 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

.menu2 {
    display: none;
}

.topmenu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topmenu li {
    list-style: none;
    padding: 0px 7px;
}

.topmenu li a {
    color: blue;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.topmenu li::after {
    content: '';
    width: 0%;
    height: 2px;
    background-color: blue;
    display: block;
    margin-left: 0px;
    transition: 0.6s;
}

.topmenu li:hover::after {
    width: 70%;
}

.connect {
    border: 1px solid;
    background-color: white;
    padding: 10px;
    border-radius: 20px;
    border-color: blue;
    color: blue;
    font-size: 13px;
    margin-left: 50px;
    border-radius: 20px;
    
}

.connect:hover {
    background-color: blue;
    color: white;
    transition: 0.7s;

}

.div-connect {
    justify-content: center;
    align-items: center;
    padding-right: 20px;

}

nav {
    display: none;
}

.grand-menu {
    display: none;
}

/*fin de la barre de navigation*/

/*début de la Description*/
.descrip1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: url("../image/font3.jpeg");
    background-size: cover;
    background-position: center;
    height: 500px;

}

.info {
    height: 500px;
    background-color: rgba(150, 146, 146, 0.7);
    padding-left: 5%;
    width: 100%;
    text-align: left;
    color: white;
    font-size: 16px;
    padding-top: 100px;
    padding-bottom: 50px;
}

.info1 {
    width: 60%;
    margin-top: 50px;
}

.lien-debut {
    background: transparent;
    border: 1px solid #fff;
    padding: 12PX 20px;
    margin-top: 30PX;
    width: 150PX;
    text-align: center;
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.lien-debut:hover {
    background: whitesmoke;
    color: black;

}

.lien-debut a {
    text-decoration: none;
    color: white;
}

.lien-debut a:hover {
    color: black;
}

/*fin de la Description*/

/*début de la barre de service*/
.service {
    width: 85%;
    margin: auto;
    text-align: center;
    padding-top: 80px;
}

.service-titre {
    font-size: 35px;
    margin-bottom: 1%;
    display: block;
}

.service-p {
    margin-bottom: 5%;
    display: block;
    font-size: 15px;
}

.service-liste {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1%;
    

}

.service-row {
    flex-basis: 250px;
    background-color: #f6faff;
    border-radius: 10px;
    margin: 15px;
    box-sizing: border-box;
    padding: 20px;
    transition: 0.4s;
}

.service-row img {
    width: 100%;
    max-height: 150px;
    border-radius: 10px;
}

.service-row .h3 {
    display: block;
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    color: #182c64;
}

.service-row .p {
    display: block;
    padding: 10px 20px;
}

.service-row:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.btn-service {
    display: inline-block;
    text-decoration: none;
    color: #182c64;
    border: 1px solid #182c64;
    padding: 5px 20px;
    font-size: 16px;
    text-transform: uppercase;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin: 10px 0 20px 0;
}

.btn-service:hover {
    background-color: #182c64;
    color: white;
    border: 1px solid #182c64;
    transition: 0.5s;
    font-weight: 500;
}

.star {
    margin-left: 20px;
    color: rgb(255, 212, 59);
    margin-bottom: 10px;
    margin-top: 10px;
}

/*fin de la barre de service*/

/*Début de la barre de avis*/
.avis {
    width: 80%;
    margin: auto;
    padding-top: 80px;
    text-align: center;
    margin-bottom: 75px;
}

.hhh1 {
    font-size: 35px;
    display: block;
    margin-bottom: 50px;
}

.avis-row {
    display: flex;
    justify-content: space-between;
}

.avis-col {
    display: flex;
    flex-direction: column;
    flex-basis: 30%;
    border-radius: 5px;
    margin-bottom: 5%;
    text-align: left;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.4);
}

.avis-col img {
    height: 40px;
    width: 40px;
    margin: auto;
    margin-bottom: 20px;
}

.avis-col .ppp1,
.hhh4 {
    margin-bottom: 20px;
}

.star-avis i {
    color: #f98305;
}

/*fin de la barre de avis*/
/**********************
Données formulaire
*********************/
.donnees {
    width: 100%;
    height: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: left;
    padding-left: 30px;
}

/*début de la barre de propos*/
.propos {
    min-height: 80vh;
    width: 100%;
    background-image: linear-gradient(rgba(66, 84, 105, 0.9), rgba(66, 84, 105, 0.9)), url("../image/propo.jpeg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 0 50px 0 0;
}

.propos div {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.propos .hh1 {
    padding-bottom: 10px;
    color: white;
    font-size: 25px;
    text-transform: uppercase;
}

.propos .hh3 {
    padding-bottom: 10px;
    color: white;
    font-size: 17px;
    text-transform: uppercase;
}

.propos .pp {
    padding-bottom: 10px;
    color: white;
}

.btn-propos {
    display: inline-block;
    max-width: 175px;
    text-decoration: none;
    color: #eef2ff;
    border: 1px solid #eef2ff;
    padding: 5px 20px;
    font-size: 16px;
    text-transform: uppercase;
    background: transparent;
    position: relative;
    cursor: pointer;
    margin: 10px 0 20px 0;
}

.btn-propos:hover {
    background-color: #eef2ff;
    color: #182c64;
    border: 1px solid #eef2ff;
    transition: 0.5s;
    font-weight: 500;
}

/*fin de la barre de propos*/

/*début de ma présentation*/
.présentation2{
    display: none;
}
.présentation1{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
    margin-top: 50px;
    font-size: 15px;
}
.présentation-img img{
    width: 270px;
    height: 270px;
    padding-right: 20px;
}
.présentation-infos{
    width: 500px;
    padding-left: 20px;
}
.présentation-infos P{
    text-align: left;
}

/*Fin de ma présentation*/

/*debut du projet*/
.présentation{
    width: 100%;
}
.projet{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding-top: 50px;
}
.projet-img{
    flex-basis: 250px;
    border-radius: 10px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}
.projet-img img{
    width: 100%;
    height: 175px;
    display: block;
}
.projet-titre{
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    transition: 0.5s;
}
.projet-titre:hover{
    background: rgba(77, 76, 76, 0.7);
}
.projet-titre h3{
    width: 100%;
    font-weight: 500;
    color: white;
    font-size: 16px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;
}
.projet-titre:hover h3{
    bottom: 5%;
    opacity: 1;
}
/*fin du projet*/

/*formulaire*/
.contact-form {
    width: 100%;
    margin: auto;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.form {
    width: 50%;
    background-color: rgb(243, 235, 235);
    margin: 70px auto;
    padding: 50px;
    border-radius: 10px;
}

.form .form-titre {
    color: rgb(61, 60, 60);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 30px;
}

.form .form-p {
    color: rgb(61, 60, 60);
    display: block;
    font-size: 15px;
    padding-bottom: 15px;
    margin-top: 15px;
}

.row-form {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.row-form input {
    width: 48%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border: none;
    background-color: white;
    color: black;
    padding: 10px 15px;
    outline: none;
}

.row-col-form,
.row-col-form textarea {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border: none;
    background-color: white;
    color: black;
    margin-top: 20px;
    margin-bottom: 20px;
    outline: none;
}

.row-col-form input {
    outline: none;
    border: none;
    width: 100%;
    padding: 10px 15px;
}

.row-col-form button {
    width: 100%;
    font-size: 20px;
    padding: 12px 17px;
    background-color: blue;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
}

.row-col-form textarea {
    margin: 15px;
    width: 90%;
}

/*fin du formulaire*/

/*début du footer*/
footer {
    color: black;
    margin: 35px 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.colonne {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.colonne p {
    color: black;
}

.colonne .h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.colonne .h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-info-detail .h4-p {
    line-height: 20px;
    padding-bottom: 18px;
    max-width: 300px;
}

.colonne a {
    text-decoration: none;
    color: black;
    line-height: 35px;
}

/*fin du footer*/

/*début de la responsive*/
@media screen and (max-width: 650px) {
    h3 {
        font-size: 24px;
        line-height: 30px;
        color: white;
    }

    h4 {
        font-size: 19px;
        color: white;
    }

    .info1 {
        width: 95%;
        margin-top: 25px;
    }

    /*Partie responsive de la barre de navigation*/
    .nav-bar {
        justify-content: space-between;
    }

    .menu {
        display: none;
    }
    .div-connect{
        display: none;
    }


    .grand-menu {
        top: 0;
        display: flex;
    }


    .sidebar {
        position: fixed;
        left: -300%;
        width: 100%;
        height: 100%;
        top: 0;
        background: whitesmoke;
        transition: all .5s ease;
    }

    .sidebar header {
        font-size: 22px;
        color: white;
        text-align: left;
        padding-left: 40px;
        line-height: 70px;
        background: whitesmoke;
        user-select: none;
        background-color: blue;
    }

    .sidebar ul a {
        display: block;
        width: 100%;
        height: 100%;
        line-height: 35px;
        font-size: 15px;
        color: blue;
        padding-left: 40px;
        box-sizing: border-box;
        border-top: 2px solid rgba(255, 255, 255, .1);
        border-bottom: 2px solid rgb(194, 190, 190);
        transition: .4s;
    }

    ul li:hover a {
        padding-left: 60px;
    }

    .sidebar ul a i {
        margin-right: 15px;

    }

    #check {
        display: none;
    }

    label #btn,
    label #cancel {
        position: absolute;
        cursor: pointer;
        background: whitesmoke;
        color: blue;
        border-radius: 3px;
    }

    label #btn {
        left: 80%;
        font-size: 22px;
        top: 21px;
        color: blue;
        padding: 6px 12px;
        transition: all .5s;
        border-radius: 10px;
        border: 1px solid blue;
    }

    label #cancel {
        z-index: 1111;
        left: -195px;
        top: 17px;
        font-size: 30px;
        color: #0a5275;
        padding: 4px 9px;
        transition: all .5s ease;
        position: fixed;
    }

    #check:checked~.sidebar {
        left: 0;
    }

    #check:checked~label #btn {
        left: 200px;
        opacity: 0;
        pointer-events: none;
    }

    #check:checked~label #cancel {
        left: 85%;
    }

    #check:checked~section {
        margin-left: 225px;
    }


    /*partie descript*/
    .descrip1 {
        height: 90%;
    }

    /*partie formulaire*/
    .form {
        width: 100%;
        background-color: whitesmoke;
        padding: 10px;
        border-radius: 10px;
    }

    /*Partie service*/
    .service {
        width: 95%;
    }

    .service-liste {
        display: flex;
        flex-direction: column;


    }

    .service-row {
        padding: 10px;
        flex-basis: 0px;
    }

    /*Partie propos*/
    .propos div {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }

    /*Partie avis*/
    .avis {
        width: 95%;
    }

    .avis-row {
        display: flex;
        flex-direction: column;
    }

    .avis-col {
        flex-basis: 10%;
    }

    /*partie footer*/
    footer {
        margin: 35px 25px;


    }
}

/*fin de la responsive*/