@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

body{
    font-family:'Montserrat', sans-serif ;
    margin: 0;
    font-size: 11pt;
}

a {
    color: #73A3C2;
}

header{
    padding: 20px 0 50px;
}

header .logo{
    display: block;
    max-width: 280px;
    margin: 0 auto;
}

/* TEXTE */
section.texte{
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px 40px;
    text-align: justify;
    margin-bottom: 20px;
}

/* 3 OFFRES */
section.offres{
    background: #F6F6F6;
    padding: 40px 0;
}
section.offres ul{
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

section.offres li{
    position: relative;
    max-width: 250px;
    min-width: 180px;
    padding: 20px;
    width: 100%;
    border: solid transparent 2px;
    text-align: center;
}

section.offres li .pointer{
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 25px;
    height: auto;
    transform: rotate(-25deg);
}

section.offres li:hover{
    background-color: white;
    border-radius: 20px;
}
section.offres li.formation:hover{
    border-color: #D5AB50;
}
section.offres li.soin:hover{
    border-color: #F29BAC;
}
section.offres li.coaching:hover{
    border-color: #73A3C2;
}

/* FOOTER */

footer{
    text-align: center;
    padding: 40px 20px;
}


@media screen and (max-width: 1024px) {

    section.offres li{
        padding: 10px;
    }
}