@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700|Karla&display=swap');

body{
    margin: 0;
    padding: 0;
    background-color: black;
    color: white;
}

h1{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;

    font-size: 6.2em;
    letter-spacing: -8px;
    line-height: 0.9;
}

h2{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;

    font-size: 2.8em;
    letter-spacing: -2px;
}

h3{
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 400;
    font-size: 1.8em;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: white;
}

p {
    font-family: Candara;
    font-weight: 400;
    letter-spacing: 2px;
    margin: 0;
}

a {
    color: white;
}

a:hover {
    text-decoration: none;
    color: #b2b2b2;
}

.btn {
    background: #b2b2b2;
    padding: 12px 25px 10px 25px;
    margin-top: 30px;
    text-transform: uppercase;
}

.btn:hover {
    background: white;
}

.showcase {
    height: 100vh;
    width: 100%;
    background-image: url('../img/bg/bg-diagonal-old.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    color: white;
    text-transform: uppercase;
    padding: 5% 15%;
    overflow: hidden;
}

.left {
    display: grid;
    align-content: center;
}

.right {
    display: grid;
    justify-content: center;
}

.right img {
    height: 100vh;
    width: auto;
}

.services {
    margin-top: 150px;
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 30px;
}

.service-box {
    width: 300px;
    height: 300px;
    background: #181818;
    display: grid;
    align-content: center;
    justify-content: center;
}

.area-large-first {
    grid-area: 1/1/span 1/span 2;
}

.area-large-last {
    grid-area: 3/2/span 1/span 2;
}

a #service1 {
    width: 100%;
}

a #service6 {
    width: 100%;
}

.sub-header {
    min-height: 50vh;
    padding: 15px 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a:hover .service-box {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

a:hover .box-title {
    display: none;
}

a:hover #service1 {
    background-image: url('../img/thumbs/vente0-large.jpg');
    background-position: center left;
}

a:hover #service2 {
    background-image: url('../img/thumbs/formation3.jpg');
}

a:hover #service3 {
    background-image: url('../img/thumbs/formation.jpg');
}

a:hover #service4 {
    background-image: url('../img/thumbs/gallery6.jpg');
    background-position: center left;
}

a:hover #service5 {
    background-image: url('../img/thumbs/stock0.jpg');
    background-position: center bottom;
}

a:hover #service6 {
    background-image: url('../img/thumbs/evenementiel0-large.jpg');
}

a:hover #service7 {
    background-image: url('../img/thumbs/communication0.jpg');
    background-position: center bottom;
}

/* TABLET */

@media (max-width: 980px) {
    h1 {
        font-size: 2.9em;
        letter-spacing: -4px;
    }
    .showcase {
        padding-bottom: 0;
    }
    .showcase p {
        font-size: 0.8em;
    }
    .right img {
        height: 420px;
    }
    .services {
        grid-template-columns: auto auto;
    }
    .service-box {
        width: 250px;
        height: 250px;
    }
    .area-large-last {
        grid-area: auto;
    }
}

/* PHONE*/

@media (max-width: 630px) {
    .showcase {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 5%;
    }
    .right {
        grid-area: 1/1/span 1/span 1;
        justify-items: center;
    }
    .right img {
        width: 90%;
        height: auto;
        margin-bottom: 40px;
    }
    .left {
        text-align: center;
    }
    .services {
        grid-template-columns: auto;
    }
    .service-box {
        margin-right: 0;
    }
    .area-large-first {
        grid-area: auto;
    }
}