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

body{
    margin: 0;
    padding: 0;
    background-color: #181818;
}

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;
}

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: 130vh;
    width: 100%;
    background-image: url('../img/bg/bg-agence.jpg');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    color: white;
    text-transform: uppercase;
    padding: 5% 15%;
}

.content {
    padding: 15px 10%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #181818;
    color: white;
}

.text-box {
    padding: 10%;
}

.text-box h2 {
    margin: 0;
    margin-top: 30px;
    margin-bottom: 30px;
}

.text-box p {
    padding: 0;
}

.short-line {
    height: 5px;
    width: 50px;
    background: white;
}

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

.footer {
    background: #181818;
}

/* TABLET */

@media (max-width: 980px) {
    .showcase {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 5% 10%;
    }
    .right {
        grid-area: 1/1/span 1/span 1;
        margin-bottom: 50px;
    }
    .right img {
        height: 150px;
        width: auto;
    }
}

/* PHONE*/

@media (max-width: 630px) {
    h1 {
        font-size: 2.9em;
        letter-spacing: -4px;
    }
    .showcase {
        padding-bottom: 0;
    }
    .showcase p {
        font-size: 0.8em;
    }
    .content {
        padding: 0 10%;
        grid-template-columns: 1fr;
    }
    .text-box {
        padding: 5%;
        margin-bottom: 100px;
    }
}