* {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}

.responsive {
    max-width: 100%;
    height: auto;
}

/*nav bar*/
.topnav {
    overflow: hidden;
}

.topnav > img {
    display: block;
    float: right;
    height: 40px;
    padding: 5px 10px;
}
  
.topnav a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
  
.topnav .icon {
    display: none;
}
  
.dropdown {
    float: left;
    overflow: hidden;
}
  
.dropdown .dropbtn {
    font-size: 17px;    
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}
  
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
  
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
  
.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #aebfbe;
    color: white;
}
  
.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}
  
.dropdown:hover .dropdown-content {
    display: block;
}

.home {
    text-align: center;
}

.home p {
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

/*omnichannel*/
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
}
.container img {
    max-width: 100%;
}
.normal {
    flex-basis: 70%;
    padding-bottom: 30px;
}
.reverse {
    flex-basis: 70%;
    order: 2;
    padding-bottom: 30px;
}
.text {
    font-size: 20px;
    padding-left: 20px;
}

#omni h4 {
    text-align: center;
    font-weight: normal;
    font-size: 18px;
}

/*resume*/
.column {
    float: left;
    box-sizing: border-box;
}

.left {
    Width: 30%;
    padding-left: 10px;
}

.right {
    width: 70%;
    padding-left: 20px;
}

th, td {
    border-bottom: 1px solid #ddd;
}

/*gallery*/
.galGrid {
    line-height: 50px;
    column-count: 4;
    column-gap: 20px;
    margin-left: 10px;
    margin-right: 10px;
}

.galGrid > img {
    max-width: 100%;
    height: auto;
}

iframe {
    max-width: 100%;
    height: auto;
}

/*video {
    max-width: 100%;
    height: auto;
}*/

main > h2 {
    text-align: center;
}

/*contact*/
#contact {
    text-align: center;
}

#contact img {
    /*border-radius: 100%;*/
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

form {
    display: inline-block;
}

label {
    float: left;
    display: block;
    text-align: right;
    width: 125px;
    padding-right: 2em;
}

input, textarea {
    display: block;
    margin-bottom: 20px;
}

input[type="submit"] {
    background-color: #aebfbe;
    border-radius: 5px;
    float: right;
}

/*figures and footers*/
figure {
    margin: 0;
}

figcaption {
    font-size: 10px;
}

footer {
    text-align: center;
    padding-bottom: 10px;
}

/*responsive design*/
@media only screen and (max-width: 37.5em) {

    .galGrid {
        column-count: 2;
    }

    /*omnichannel*/
    .container {
        display: flex;
        flex-direction: column;
    }

    .normal {
        order: 2;
    }

    /*resume*/
    .column {
        width: 100%;
        float: none;
    }
    
    .right {
        width: 100%;
        height: auto;
    }

    .left {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 1em;
        text-align: center;
    }
    
    .left img {
        max-width: 100%;
        height: auto;
    }

    .topnav img{
        display: none;
    }

    figcaption {
        font-size: 5px;
    }

}
