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

h5 {
    font-family: Candara;
    font-weight: 400;
    letter-spacing: 2px;
}

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

li {
    font-family: Candara;
    font-weight: 400;
    letter-spacing: 1px;
}

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/cosmerre-showcase-bg-black.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    justify-items: center;
    color: white;
    text-transform: uppercase;
    padding: 5% 10%;
}

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

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

.right img {
    height: 220px;
    width: auto;
}

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

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

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

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

.social {
    margin-top: 15px;
}

.social img {
    height: 70px;
    width: auto;
}

#fb {
    padding: 3px;
}

/* Set the size of the div element that contains the map */

#map {
    height: 400px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
    margin-top: 32px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.location-container {
    margin-top: 48px;
    padding: 0 15%;
}

/* TABLET */

@media (max-width: 980px) {
    h1 {
        font-size: 4.5em;
        letter-spacing: -4px;
    }
    .showcase {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 5% 10%;
    }
    .right {
        grid-area: 1/1/span 1/span 1;
        margin-bottom: 100px;
    }
    .right img {
        height: 180px;
        width: auto;
    }
}

/* PHONE*/

@media (max-width: 630px) {
    h1 {
        font-size: 2.5em;
        letter-spacing: -4px;
    }
    .location-container {
        margin-top: 48px;
        padding: 0 25px;
    }
    .services {
        grid-template-columns: auto;
    }
    .service-box {
        margin-right: 0;
    }
    .right img {
        height: 150px;
        width: auto;
    }
}