@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-Thin.ttf);
    font-weight: 100;
    font-style: normal;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-Light.ttf);
    font-weight: 300;
    font-style: normal;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-Medium.ttf);
    font-weight: 500;
    font-style: normal;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-Bold.ttf);
    font-weight: 700;
    font-style: normal;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-Black.ttf);
    font-weight: 900;
    font-style: normal;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-ThinItalic.ttf);
    font-weight: 100;
    font-style: italic;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-LightItalic.ttf);
    font-weight: 300;
    font-style: italic;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-Italic.ttf);
    font-weight: 400;
    font-style: italic;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-MediumItalic.ttf);
    font-weight: 500;
    font-style: italic;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-BoldItalic.ttf);
    font-weight: 700;
    font-style: italic;
}
  
@font-face {
    font-family: roboto;
    src: url(fonts/roboto/Roboto-BlackItalic.ttf);
    font-weight: 900;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.navBarBackground {
    background-color: #201f20;
}

.topNavBarLogo {
    display: inline-block;
    padding: 30px 20px 0 20px;
}

.topNavBarLogoMobile {
    display: none;
}

.topNavBar {
    position: relative;
    width: 100%;
    height: 150px;
    background: rgba(0,0,0,0);
}

.menuButton {
    display: none;
}

.topNavBar ul li {
    vertical-align: middle;
    line-height: 120px;
    list-style: none;
}

.menuOptions {
    margin-top: -15px;
}

.topMenuOption {
    padding: 0 0 0 75px;
    margin-top: -15px;
}

.topNavBar ul li a {
    display: inline-block;
    font-family: roboto;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
    font-size: 30px;
    color: white;
    padding: 0 20px 0 20px;
    transition: color linear 0.5s;
}

.topNavBar ul li a:hover {
    color: #9FD2FF;
}

.pageBreakBlue {
    width: 100%;
    height: 10px;
    background-color: #1c75bc;
    position: relative;
}

.formBackground {
    background-color: #b2dcff;
}

.contactFormTitle {
    text-align: center;
    font-family: roboto; 
    font-weight: 600; 
    font-size: 35px;
    padding: 50px 0 50px 0;
    color: #201f20;
}

.contactFormCaption{
    font-family: roboto; 
    font-weight: 300; 
    font-size: 25px;
    padding: 0 0 50px 0;
    color: #201f20;
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.contactFormCaptions {
    padding: 10px 0 10px 0;
    font-family: roboto;
    font-weight: 300;
    font-size: 25px;
    color: #201f20;
    display: inline-block;
}

.contactForm {
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.nameInput {
    filter: drop-shadow(0px 0px 3px #201f20);
    border: none;
    padding: 5px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    font-family: roboto;
    font-weight: 300;
    font-size: 20px;
    background: white;
    background-clip: padding-box;
    position: relative;
}

.emailInput {
    filter: drop-shadow(0px 0px 3px #201f20);
    border: none;
    padding: 5px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    font-family: roboto;
    font-weight: 300;
    font-size: 20px;
    background: white;
    background-clip: padding-box;
    position: relative;
}

.messageInput {
    filter: drop-shadow(0px 0px 3px #201f20);
    border: none;
    resize: none;
    padding: 5px;
    width: 100%;
    height: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    border-radius: 5px;
    font-family: roboto;
    font-weight: 300;
    font-size: 20px;
    background: white;
    background-clip: padding-box;
    position: relative;
}

.submitButtonContainer {
    filter: drop-shadow(2px 2px 2px black);
    text-align: center;
}

.submitButton {
    border-radius: 25px;
    position: relative;
    display: inline-block;
    font-family: roboto;
    font-weight: 400;
    font-size: 25px;
    text-decoration: none;
    border: none;
    color: white;
    background: #201f20;
    padding: 10px 20px 10px 20px;
    margin: 20px 0 60px 0;
}

.submitButton:hover {
    cursor: pointer;
}

.bottomNavBar {
    align-items: center;
    justify-content: space-between;
    display: flex;
    position: relative;
    bottom: 0;
    width: 100%;
    height: 100px;
    background-color: #201f20;
}

.contactInfoBottomNavBar {
    display: inline-block;
    position: relative;
    color: white;
    left: 3%;
}

.logoImageBottomNavBar {
    position: relative;
    padding: 0 110px 0 0;
}

.contactHoursBottomNavBar {
    display: inline-block;
    position: relative;
    color: white;
    right: 3%;
}

@media only screen and (max-width:1230px) {

    #menuList {
        margin: 0;
        overflow: hidden;
        position: absolute;
        margin-top: 100px;
        z-index: 2;
    }

    #menuList.close {
        max-height: 0;
        transition: max-height 0.3s ease;
    }

    #menuList.open {
        max-height: 300px;
        transition: max-height 0.3s ease;
    }

    .menuList {
        position: absolute;
    }

    .topMenuOption {
        padding: 0 0 0 0;
        margin-top: 0px;
    }

    .menuOptions {
        margin-top: 0px;
    }

    ul li {
        line-height: 75px;
        list-style: none;
    }

    .navBarBackground {
        background-color: #201f20;
        height: 100px;
        width: auto;
    }

    .topNavBarLogoMobile {
        display: inline-block;
        padding: 10px 20px 0 20px;
        position: absolute;
    }

    .topNavBarLogo {
        display: none;
    }

    .topNavBarLogoLi {
        display: none;
    }

    .topNavBar {
        display: inline-block;
        height: 100px;
        position: relative;
        background: #101010;
    }

    .topNavBar ul {
        position: relative;
        display: inline-block;
    }

    .topNavBar ul li {
        display: inline-block;
        line-height: 75px;
        width: 100%;
    }

    .topNavBar ul li a {
        display: block;
        font-family: roboto;
        font-style: normal;
        font-weight: 500;
        text-decoration: none;
        font-size: 30px;
        color: white;
        background-color: #101010;
        transition: color linear 0.5s;
    }

    .topNavBar ul li a:hover {
        color: #b2dcff;
    }

    .menuButton {
        float: right;
        line-height: 100px;
        font-family: roboto;
        font-style: normal;
        font-weight: 500;
        text-decoration: none;
        font-size: 30px;
        color: white;
        padding: 0 20px 0 20px;
        display: inline-block;
    }

    .menuButton a {
        display: inline-block;
        transition: color linear 0.5s;
    }

    .menuButton a:hover {
        cursor: pointer;
        color: #b2dcff;
    }

    .mainPageContent {
        padding: 0 0 0 0;
    }

    .contactFormCaption{
        font-family: roboto; 
        font-weight: 300; 
        font-size: 25px;
        padding: 0 0 50px 0;
        color: #201f20;
        width: 90%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .contactFormCaptions {
        padding: 10px 0 10px 0;
        font-family: roboto;
        font-weight: 300;
        font-size: 20px;
        color: #201f20;
        display: inline-block;
    }

    .contactForm {
        width: 90%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        padding-bottom: 25px;
    }

    .nameInput {
        padding: 5px;
        width: 95%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        font-family: roboto;
        font-weight: 300;
        font-size: 20px;
        background: white;
        background-clip: padding-box;
        position: relative;
    }

    .emailInput {
        padding: 5px;
        width: 95%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        font-family: roboto;
        font-weight: 300;
        font-size: 20px;
        background: white;
        background-clip: padding-box;
        position: relative;
    }

    .messageInput {
        resize: none;
        padding: 5px;
        width: 95%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        font-family: roboto;
        font-weight: 300;
        font-size: 20px;
        background: white;
        background-clip: padding-box;
        position: relative;
    }

    .submitButtonContainer {
        filter: drop-shadow(2px 2px 2px black);
        text-align: left;
    }
    
    .submitButton {
        border-radius: 25px;
        position: relative;
        display: inline-block;
        font-family: roboto;
        font-weight: 400;
        font-size: 20px;
        text-decoration: none;
        border: none;
        color: white;
        background: #201f20;
        padding: 10px 20px 10px 20px;
        margin: 0;
    }

    .bottomNavBar {
        align-items: center;
        justify-content: space-between;
        display: flex;
        position: relative;
        bottom: 0;
        width: 100%;
        height: 100px;
        background-color: #201f20;
    }
    
    .contactInfoBottomNavBar {
        display: inline-block;
        position: relative;
        color: whtie;
        left: 5%;
    }
    
    .logoImageBottomNavBar {
        display: none;
    }
    
    .contactHoursBottomNavBar {
        display: none;
        position: relative;
        right: 5%;
    }

}