header{
    height: 100vh;
    background-image: url(../img/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: black solid 2px;
}
header>img{
    margin-bottom: 7em;
    width: 560px;
    height: 320px;
}
h1{
    color: white;
    text-shadow: 1px 1px 1px black;
    margin-top: 1.5em;
}
/* ========================================
SECTION SERVICES
======================================== */
.services-cards, .services-cards-reverse{
    align-items: center;
    justify-content: space-evenly;
}
.services-cards{
    background-color: #FFFFFF;
}
.services-cards-reverse{
    flex-direction: row-reverse;
    background-color: #F5F5F5;
    border-top: solid 2px #ececec;
    border-bottom: solid 2px #ececec;
}
.services-image img{
    max-width: 100%;
}
/* ========================== */
.services-txt{
    max-width: 60%;
    padding: 0.5em;
    text-align: center;
}
.services-txt p{
    padding: 1.5em 0;
}
.button-div{
    margin-top: 1em;
}
.button{
    padding: 1em 1.5em;
    margin-top: 1em;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    text-shadow: 1px 1px 1px black;
    background-color: red;
    border: solid 2px black;
    cursor: pointer;
    transition: transform 0.3s;
}
.button:hover{
    background-color: rgba(255, 29, 29, 0.795);
}
/* ========================== */
.more button{
    padding: 0.5em 20vw;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top: none;
    background-color: #ececec;
    cursor: pointer;
}
.someMore{
    display: none;
}
.someMore.is-visible{
    display: block;
}
/* ========================================
SECTION PACK
======================================== */
.pack{
    min-height: 70vh;
    justify-content: center;
    align-items: center;
}
.pack-image{
    max-width: 100%;
}
.pack-txt{
    width: 30%;
    text-align: center;
}
.pack-txt p{
    padding: 1em 0;
}
.pack button{
    padding: 1em 3em;
    background-color: rgba(255, 29, 29, 0.795);
    font-weight: 600;
}
/* ========================================
SECTION REFERENCES
======================================== */
.references{
    background-color: #F5F5F5;
    border-top: solid 2px #ececec;
    border-bottom: solid 2px #ececec;
    padding-bottom: 3em;
}
.references-texte{
    padding: 2em;
}
.references-cards{
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 10%;
    padding-bottom: 2em;
}
.references-card{
    margin: 1em;
    transition: transform 0.3s;
}
.references-card img{
    max-width: 240px;
}
.references-card:hover{
    transform: translate(0px, -10px);
    transform: scale(1.10);
    border-radius: 10px;
}
/* ========================== */
.infos{
    background-color: red;
    border-top: solid 2px black;
    border-bottom: solid 2px black;
}
.infos-cards{
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 2em 1em;
}
.infos-card{
    text-align: center;
    width: 25%;
}
.infos-card a{
    color: black;
}
.infos-img, .infos-title{
    margin-bottom: 1em;
}
.infos-img img{
    width: 5em;
    background-color: rgba(255, 63, 63, 0.748);
    padding: 1em;
    border: 1px solid black;
    border-radius: 20px;
}
/* ========================== */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .services-cards, .services-cards-reverse, .pack, .infos-cards{
        flex-direction: column;
    }
    .pack-txt, .infos-card{
        width: 100%;
    }
    .services-txt{
        max-width: 100%;
        margin-bottom: 5em;
    }
    .pack-txt{
        margin-bottom: 1em;
    }
    .infos-card{
        margin-bottom: 3em;
    }
    h2{
        font-size: 1.9rem;
    }
    h3{
        font-size: 1.2rem;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .infos-cards{
        margin: 2em 0;
        align-items: baseline;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

}