* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    background: #ffffff;
}

.bbb{
    float:left;
    padding:2%;
}

.mt-1 {
    margin-top: 1em;
}

.mt-2 {
    margin-top: 2em;
}

.p-2 {
    padding: 2em 0;
}

ul li {
    margin-left: 1.5em;
}

h1, .is-size-1 {
    font-size: 3em;
}

h2, .is-size-2 {
    font-size: 2em;
}

h3, .is-size-3 {
    font-size: 1.25em;
}

h1, h2, h3, h4, h5, h6, p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: #ed2627;
}

.center {
    text-align: center;
}

.has-background-red {
    background: #ed2627;
    color: #ffffff
}

.has-background-grey {
    background: #252525;
    color: #ffffff;
}

.has-text-white {
    color: #ffffff
}

.has-text-red {
    color: #ed2627;
}

.btn {
    display: block;
    background: #ed2627;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    padding: 1em;
    max-width: 13em;
    width: 60%;
    margin: 0 auto;
    text-transform: uppercase;
    font-weight: bold;
}

.container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}

.hero {
    position: relative;
    background-image: url("images/hero2.jpg");
    text-align: center;
}

.info {
    position: absolute;
    top: 1em;
    margin: 0 auto;
    width: 100%;
    font-size: 1.25em;
    margin-bottom: 1em;
}

@media(min-width: 1100px){
    .info{
        text-align: right;
        padding-right: 1em;
    }
}

.hero .logo {
    display: block;
    max-width: 500px;
    width: 90%;
    margin: 1em auto 0;
}

.hero h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 3em;
    margin-bottom: 0;
}

.hero.small {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: row-reverse;
    padding: 4em 1em 3em;
}

.hero.small h2 {
    display: none;
}

.hero.small .logo {
    max-width: 300px;;
    margin: 0;
}

.hero.small .info {
    all: unset;
}

.blurb {
    padding: 1em;
}

nav {
    background: #ed2627;
}

.nav-menu {
    display: flex;
    justify-content: space-evenly;
}

.nav-item {
    cursor: pointer;
    display: block;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    line-height: 3;
    flex: 1;
}


.nav-item:hover, .nav-item.active {
    background: #000000;
}

.has-dropdown{
    position: relative;
}

.has-dropdown:hover .dropdown {
    display: block;
    visibility: visible;
}

.dropdown {
    display: none;
    visibility: hidden;
    background: #ed2627;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.grid {
    display: grid;
    grid: auto / repeat(3, 1fr);
    grid-gap: 1.75em;
    width: 75%;
    margin: 0 auto;
}

.tile {
    display: flex;
    flex-flow: column;
    padding: 1em;
    align-items: center;
    justify-content: center;
}


footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ed2627;
    color: #ffffff;
    padding: 0 1em;
}

footer p {
    margin: 0;
    line-height: 3;
}

footer a {
    text-decoration: none;
    color: #ffffff;
}

#services {
    background: url("images/services.jpg");
}

#contact {
    background: url("images/contact.jpg");
}

.hero,#services,#contact {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 5em 0;
}

.form-group {
    display: block;
    position: relative;
    display: block;
    margin: 0 auto;
    width: 90%;
    max-width: 1000px;
    margin-bottom: 1em;
}

.form-group label {
    font-weight: bold;
    color: #ffffff;
}

.form-group input {
    position: absolute;
    right: 0;
    width: 90%;
    border: 2px solid #000000;
    outline: none;
    padding: .25em;
}

.form-group input:focus {
    outline: none;
    border: 2px solid #ed2627;
}

.nav-toggle {
    display: none;
}

#toggle::selection, .nav-item::selection {
    background: transparent;
}

.gallery {
    display: grid;
    grid: auto / 1fr 1fr;
}

.gallery img {
    display: block;
    max-width: 600px;
    width: 100%;
}

@media(max-width: 1100px) {
    .nav-toggle {
        display: block;
        text-align: center;
    }

    #toggle {
        cursor: pointer;
        margin-bottom: 0;
    }

    .nav-menu {
        display: none;
        flex-flow: column;
    }
    
    .nav-menu.is-active {
        display: flex;
    }

    .dropdown {
        display: block;
        visibility: visible;
        position: relative;
        z-index: unset;
    }

    .hero.small {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
}



@media(max-width: 769px) {
    .gallery, .grid {
        grid: auto / auto;
    }

    footer {
        flex-flow: column;
        text-align: center;
    }

    .form-group label{
        display: block;
    }

    .form-group input{
        display: block;
        width: 100%;
        margin-top: 1em;
        position: unset;
    }

}

.page-section {
    padding: 2em 3em;
}