.div2Contact {
    text-align: left;
}

.h1Contact {
    text-align: center;
}

.flex-containerContact {
    display: inline-flex;
    text-align: center;
}

.flex-containerContact > div {
    padding-left: 20px;
    padding-right: 20px;
}



.ex1Contact {
    margin-top: 30px;
    margin-left: 150px;
    width: 50%;
}

.ex2Contact {
    margin-top: 35px;
    margin-left: 200px;
    width: 50%;
}

.ex3Contact {
    background-color: blanchedalmond;
    text-align: center;
    margin-left: 170px;
    margin-right: 170px;
    margin-top: 35px;
    width: 78%;
}

.ex4Contact {
    background-color: #333;
    text-align: center;
    width: 50%;
}

.active7 {
    text-align: center;
    padding-right: 20px;
    padding-left: 20px;
    font-weight: bold;
    text-decoration: underline;
}

#infos .container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 20px;
    flex-wrap: wrap;
}

#infos .container .bloc {
    text-align: center;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    display : flex;
    align-items: center;
    justify-content: center;
    margin: 30px 10px 0px 10px;
    background: linear-gradient(45deg, orange, darkorange);
    cursor: pointer;
    transition: all 0.3s ease;
}

#infos .container .bloc:hover {
    transform: translateY(-10px);
    box-shadow: 0px 65px 90px -55px #565656;
}


#infos .container .bloc .icon {
    font-size: 50px;
}

#infos .container .bloc h3 {
    font-size: 1.5em;
    color: 1 d1d1d;
    font-weight: bold;
    margin: 30px 0 15px 0;
}

#infos .container .bloc .icon,
#infos .container .bloc h3,
#infos .container .bloc p {
    color: white;
}


#infos .morelittlecontainer .mapp {
    text-align: center;
    width: 90%;
    height: 50%;
    border-radius: 10px;
    display : flex;
    align-items: center;
    justify-content: center;
    margin: 30px 10px 0px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#infos .morelittlecontainer .mapp:hover {
    transform: translateY(-10px);
    box-shadow: 0px 65px 90px -55px #565656;
}

#infos .morelittlecontainer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 50px;
    flex-wrap: wrap;
}

#infos .morelittlecontainer .informations {
    text-align: center;
    width: 1000px;
    height: 200px;
    border-radius: 10px;
    display : flex;
    align-items: center;
    justify-content: center;
    margin: 30px 10px 0px 10px;
    background: linear-gradient(45deg, orange, darkorange);
    cursor: pointer;
    transition: all 0.3s ease;
}

#infos .morelittlecontainer .informations:hover {
    transform: translateY(-10px);
    box-shadow: 0px 65px 90px -55px #565656;
}

#infos .morelittlecontainer .informations .icon,
#infos .morelittlecontainer .informations h3,
#infos .morelittlecontainer .informations p {
    color: white;
}

#services .container{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 50px 20px;
    flex-wrap: wrap;
}
#services .ecriture{
    margin-top: 2%;
    text-align: center;
    padding-top: 50px;
}


@media screen and (min-width: 550px){
    #services .card{
        width: 600px !important;
    }
}

#services .card {
    max-width: 500px;
    max-height: 300px;
    min-height: 300px;
    margin: 20px 20px;
    padding:20px;
    box-sizing: border-box;
    border-radius: 10px;
    background: linear-gradient(45deg, orange, darkorange);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

#services .card:hover {
    transition-duration: 0.5s;
    transform: translateY(-10px) ;
    box-shadow: 0px 90px 90px -55px #565656;
}

#services .card span{
    font-size: 1.75em;
    color: #e3a92d;
}
#services .card .span img{
    outline: 1px solid red;
    width:13%;
}

#services .card p{
    color:white;
}

#services .card h4{
    margin: 20px 0 7px 0;
    font-size: 1.5em;
    color:white;
}

a {
    text-decoration:none;
}