/* main{
    margin-top: 0px;
} */
main #banner{
    /* background: url('./../images/banner.jpeg') center no-repeat;
    background-size: 100%;
    height: 80vh; */
    width: 100%;
    height: 300px;
    background: url('./../images/banner.jpeg') center;
    background-size: cover;
}
main #banner article{
    width: 70%;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    top: 15%;
    left: 5%;
    background-color: transparent;
    opacity: 1;
}
main #banner article p{
    font-size: 1.3rem;
    color: white;
}
main  #target{
    color : wheat;
}
/* BTN banner */
main #banner a, .btn{
    border: 2px solid white;
    width: 150px;
    height: 50px;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    padding: 5px;
}
main #banner a:hover{
    transition: 0.3s ease-in-out;
    background-color: whitesmoke;
    color: grey;
}
/* Section Welcome */
main #welcome{
    padding: 1rem;
    height: 100%;
    display: grid;
    grid-template-columns: 66% 34%;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    justify-items: center;
}
main #welcome figure{
    display: grid;
}

main #welcome figure img {
    height: 200px;
    grid-column: 1/2;
    grid-row: 1/2;
}
main #welcome figure div{
    grid-column: 1/2;
    grid-row: 1/-1;
    align-self: start;
    position: relative;
    left:9px;
    top: 13px;
    border-radius: 100%;
}
.tenor-gif-embed{
    width: 100px;
    border-radius: 100%;
}
/* Section services */
main #services{
    /* display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
    grid-template-rows: auto; */
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: auto;
    padding: 10px;
}
/* Accordion faq */
#faq {
    margin-left: 1rem;
    margin-right: 1rem;
}
#faq .accordion-header.bgAcc{
    background-color: #051d39 ;
}
/* Trust us section */
#trustUsLogo{
    display: flex;
    flex-direction: column;
    margin: auto;
    justify-content: space-around;
    align-items: center;
    height: auto;
    margin-bottom: 2rem;
    padding: 10px;
    max-width: 1200px;
}
#trustUsLogo img{
    width: 100%;
    height: 200px;
}
@media screen and   (max-width:399px) {
    main #banner article p{
        font-size: 1.5rem;
    }
    main #welcome figure div{
        left:5px;
        bottom: 10px;
    } 
}
@media screen and   (max-width:499px) {
    main #banner article p{
    font-size: 1.5rem;
    }
    main #welcome figure div{
        left:11.5px;
    }
}
@media screen and (min-width:500px) and  (max-width:599px) {
    main #banner article p{
    font-size: 1.5rem;
    }
    main #welcome figure div{
        left:12.1px;
    }
}
@media screen and (min-width:600px) and  (max-width:699px) {
    main #banner article p{
    font-size: 2rem;
    color: white;
    }
    main #welcome figure div{
        left:12.6px;
    }
}
@media screen and (min-width:700px) {
    main{
        margin-top: 0;
    }
    main #banner{
        height: 450px;
    }
    main #banner article p{
        font-size: 3.6rem;
        color: white;
    }
    main #banner a{
        width: 300px;
        height: auto;
    }
    main #services{
        flex-direction: row;
        /* grid-template-columns: repeat(auto-fill,minmax(350px,1fr));
        max-width: 1000px;
        margin: auto; */
    }
    main #services .card{
        width: 40%;
        height: auto;
    }
    main #services .card img{
        object-fit: cover;
        height: 300px;
    }
    
    main #welcome figure div{
        left:13.8px;
    }
    #faq{
        display: grid;
        grid-template-columns: 1fr 700px 1fr;
        
    }
    #faq #accordionFaq{
        grid-column: 2/3;
        border-radius: 5px;
    }
    #trustUsLogo{
        flex-direction: row;
    }
    #trustUsLogo img{
        width: 100%;
        height: auto;
    }
    /* Style for form Project parlez-nous de votre projet */
    main #formProject{
        display: grid;
        grid-template-columns: 1fr 700px 1fr;
    }
    main #formProject form{
        grid-column: 2/3;
    }
}
@media screen and (min-width:1500px) {
    main #banner{
        background: url('./../images/banner.jpeg') center no-repeat;
        background-size: 100%;
        height: 70vh;
    }
    main #banner article p{
        font-size: 7rem;
        color: white;
    }
    main #banner article a{
        font-size: 4rem;
        width: 600px;
        
    }
    /* main #services{
        grid-template-columns: repeat(auto-fill,minmax(400px,1fr));
    } */
    #trustUsLogo{
        max-width: 1600px;
    }
}
@media screen and(min-width:2500px) {
    main #banner article p{
        font-size: 13rem;
        color: white;
    }
}