/* Fonts */

@font-face {
    font-family: 'louis_boldbold';
    src: url('fonts/louis/louis-bold-webfont.woff2') format('woff2'),
    url('fonts/louis/louis-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'louisbold_italic';
    src: url('fonts/louis/louis-bolditalic-webfont.woff2') format('woff2'),
    url('fonts/louis/louis-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'louis_condensed_demiCndemi';
    src: url('fonts/louis/louis-condenseddemi-webfont.woff2') format('woff2'),
    url('fonts/louis/louis-condenseddemi-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'louis_condensed_regularCnRg';
    src: url('fonts/louis/louis-condensedregular-webfont.woff2') format('woff2'),
    url('fonts/louis/louis-condensedregular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'louis_regularregular';
    src: url('fonts/louis/louis-regular-webfont.woff2') format('woff2'),
    url('fonts/louis/louis-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html,
body {
    margin: 0px;
    padding: 0px;
}

body {
    color: #4d4d4d;
    font-family: louis_regularregular;
    text-align: center;
}

#list {
    display: flex;
    flex-wrap: wrap;
}

#masthead {
    background-image: url('../img/header.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    margin-top: -4.5em;
    margin-bottom: -4.5em;
    width: 100%;
}

#video {
    align-items: center;
}

#location {
    background-color: transparent;
    width: 100%;
}

#map,
#list {
    align-content: center;
}


#map {
    height: 550px;
    width: 100%;
}

#list {
    padding: 0em 2.5em;
}


.location:nth-child(odd):last-of-type {
    display: inline-block;
    width: 100%;
}

.list h2 {
    font-size: .5em;
    padding: 0em;
    margin-left: 0em;
}

.list h2 + p {
    font-size: .5em;
    margin-left: 0em;
}


#cta {
    background-color: white;
    font-size: 2em;
    color: var(--yellow);
    font-family: louis_condensed_demiCndemi;
    font-size: 2em;
    padding-bottom: 1em;
    text-align: center;
    text-transform: uppercase;
}


/* Tablet */

@media only screen and (min-width: 768px) {
    #map {
        align-content:center;
        width: 100%;
    }
     #cta {
        font-size: 1em;
    }
}
/* Large Mobile */

@media only screen and (min-width: 600px) {
    #map {
        align-content:center;
        width: 100%;
    }

    #cta {
        font-size: 2em;
}
}