body {
    margin-left: 5%;
    width: 90%;
    background-image: url("../images/mainImage.jpg");
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

h3,
h2 {
    font-size: 280%;
    color: #ebd82b;
    font-weight: bolder;
    text-transform: uppercase;
    margin: 0.8em 0 0 0;
}

.content {
    width: 90%;
    background-color: rgb(42, 43, 47);
    margin-left: 5%;
    border: rgb(42, 43, 47) 4px solid;
    margin-bottom: 2%;
}

.bannerImage {
    background-image: url("../images/S700.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 15%;
    background-position: center;
    text-align: center;
    color: rgb(255, 234, 0);
    padding-bottom: 15%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    position: relative;
    min-height: 170px;
    min-width: 50vw;
}

.companyName {

    text-shadow: rgb(0, 0, 0) 0px -2px 8px;
    font-size: 4em;
    text-transform: uppercase;
    justify-content: center;
    margin: 0;

}

.slogan {
    background-color: rgba(0, 0, 0, 0.686);
    font-size: larger;
    text-shadow: rgb(0, 0, 0) 0px 0px 10px;

}

.servicesOffered {
    display: flex;
    text-align: center;
    flex-direction: column;
    background-color: rgb(42, 43, 47);
}

.servicesOffered>div {
    flex: 25%;
}

.productDetails {
    gap: 1em;
    margin-top: 1%;
    margin-right: 1%;
}

.productDetails>div {
    background-color: #e4cb27;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 0.5em;
    font-size: 2em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 1em;
}

.productDetails>div i {
    display: block;
    font-size: 1em;
    color: #000000f8;
}

.contactInfo {
    display: flex;
    color: #ebd82b;
    align-items: center;
    text-align: center;
}

.contactInfo>* {
    flex: 100%;
}

.contactDetails {
    font-size: 2em;
    margin-top: 1%;
    margin-right: 1%;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.contactTitle {
    margin-bottom: 3%;
    margin-top: 0;
}

.gMaps {
    width: 100%;
    height: 450px;
    border: 0;
}

.map {
    margin-top: 3%;
    display: block;
}

strong {
    color: rgb(233, 233, 218)
}

a {
    text-decoration: none;
    color: #ebd82b;
    text-decoration: dashed;
}

.serviceContainer {
    cursor: pointer;
    user-select: none;
}

.installInfo,
.repairInfo,
.validateInfo {
    display: none;
    margin-top: 3%;
}

.plusContainer {
    display: flex;
    flex-direction: row-reverse;
}

.fa-plus,
.fa-minus {
    text-align: right;
    font-size: 0.8em !important;
}

.iconMargin {
    margin-bottom: 0.5em;
}

.newServices {
    font-size: x-large;
    color: #ebd82b;
    font-weight: bold;
}

/* MediaQuery pour changer le font size */

@media only screen and (max-width:800px) {

    h2,
    h3 {
        font-size: 250%;
    }

    .contactDetails {
        font-size: 1.3em;
    }

    .bannerImage {
        background-size: contain;
    }

    .companyName {
        font-size: 1.8em;
        margin-top: 3%;
    }

    .slogan {
        font-size: 0.8em;
        margin-top: 27%;
    }
}