html {
    padding: 0px;
    margin: 0px;
    height: 100%;
}

body {
    background-color: #7b8070;
    padding: 0px;
    margin: 0px;
    height: 100%;
}

/* montserrat-regular - latin */
@font-face {
    font-display: swap; 
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/montserrat-v29-latin-regular.woff2') format('woff2'), 
         url('../fonts/montserrat-v29-latin-regular.ttf') format('truetype');
}

/* Oooh Baby - latin 
@font-face {
    font-display: swap; 
    font-family: 'OoohBaby';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/OoohBaby-Regular.woff2') format('woff2'), 
         url('../fonts/OoohBaby-Regular.ttf') format('truetype');
}*/

/* PlaywriteDE - latin */
@font-face {
    font-display: swap; 
    font-family: 'PlaywriteDE';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/PlaywriteDEGrund-Regular.woff2') format('woff2'), 
         url('../fonts/PlaywriteDEGrund-Regular.ttf') format('truetype');
}



button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 20px 20px;
    display: block;
    margin: 20px 0px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    box-shadow: -2px -2px 7px #677821, 2px -2px 7px #677821, -2px 2px 7px #677821, 2px 2px 7px #677821;
}

button[type="submit"]:hover {
    background-color: #45a049;
}

h2 {
    margin-top: 5px;
    margin-bottom: 5px;
    color: #424b1e;
}

h3 {
    margin-top: 10px;
    margin-bottom: 10px;
}

li {
    margin-bottom: 7px;
}

.flex-cont {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}

.flex-cont > div {
    flex: 1;
}

.text-block, .quote {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 10px;
    max-width: 800px;
    margin: auto;
}

.text-block a {
    text-decoration: none;
    color: #677821;
}

.dark-block {
    background-color: #f9fbf4;
    border-top: 1px solid #ddecb6;
    border-bottom: 1px solid #ddecb6;
}

.dark-block-bottom {
    border-bottom: none;
}

.menu-item {
    position: relative;
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.menu-item, .menu-item > a{
    font-size: 18px;
    color: #fafaec;
}

.dropdown > a, .menu-item > a {
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
}

.dropdown > a:hover, .menu-item > a:hover {
    color: #fff;
}

.dropdown-cont {
    display: none;
    position: absolute;
    left: 0px;
    background-color: #f0ebe6;
    min-width: 150px;
    box-shadow: 0px 0px 16px rgba(0,0,0,0.2);
    z-index: 1;
    font-size: 18px;
}

.dropdown-cont a {
    color: #677821;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-cont a:hover {
    background-color: #fffbf6;
}

.tagline {
    padding-left: 50px;
    padding-right: 100px;
    padding-top: 60px;
    padding-bottom: 50px;
    text-align: left;
    color: #fff;
    min-width: 230px;
}

.tagline > p {
    color: #fafaec;
    font-size: 32px;
    font-family: 'PlaywriteDE', sans-serif;
    text-shadow: -1px -1px 3px #414b15, 1px -1px 3px #414b15, -1px 1px 3px #414b15, 1px 1px 3px #414b15;
}

.tagline > p{
    max-width: 400px;
}

.apply-header {
    padding-left: 50px;
    padding-right: 100px;
    padding-top: 175px;
    padding-bottom: 50px;
    text-align: left;
    color: #fff;
    min-width: 230px;
}

.desc-block {
    height: 250px;
    min-width: 200px;
    max-width: 500px;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    vertical-align: bottom;
    cursor: pointer;
}

.desc-title {
    font-size: 20px;
    padding-top: 15px;
    font-weight: bold;
}

.desc-text {
    padding-left: 7px;
    padding-right: 7px;
    padding-top: 75px;
}

.bio-img {
    position: relative;
    display: inline-block;
    max-width: 200px;
    padding-right: 20px;
}

.bio-img > img {
    width: 200px;
}

.bio {
    position: relative;
    display: inline-block;
    min-width: 350px;
}

.quote-cont {
    background-color: #dfd5ca;
    color: #483835; 
    text-align: left;
    font-family: PlaywriteDE, serif;
    font-size: 16px;
    border-top: 1px solid #d5c8ba;
    border-bottom: 1px solid #d5c8ba;
}

.quote {
    padding-top: 10px;
    padding-bottom: 10px;
}

.quote > p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.schedule-table {
    width: 100%;
    text-align: center; 
    border-collapse: collapse;
    table-layout: fixed;
}

.schedule-table th, .schedule-table td {
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 2px;
    padding-right: 2px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
}

.schedule-table td {
    border-right: 1px solid #c0ad98;
}

.schedule-table th.time {
    background-color: #f9fbf4;
    border-right: 1px solid #c0ad98;
    border-left: 1px solid #c7e087;
    border-bottom: 1px solid #c7e087;
    /*border-right: 1px solid #ddecb6;
    border-bottom: 1px solid #ddecb6;*/
    color: #424b1e;
}

.schedule-table th.day {
    background-color: #dfd5ca;
    border: 1px solid #c0ad98;
    color: #483835;
}

.schedule-table td.mont-wb {
    background-color: #f5eadc;
    border-bottom: 1px solid #c0ad98;
}

.schedule-table td.pickup {
    background-color: #f6f6f6;
    border-bottom: 1px solid #c0ad98;
}

.schedule-table td.out-fp {
    background-color: #f9fbf4;
    border-top: 1px solid #c0ad98;
    border-bottom: 1px solid #c0ad98;
}

#table-top-left {
    border-bottom: 1px solid #c7e087;
    border-right: none;
}

.table-bottom {
    border-bottom: 1px solid #d5c8ba;
}

#top-menu {
    position: absolute;
    top: 20px;
    right: 40px;
    text-shadow: -1px -1px 3px #414b15, 1px -1px 3px #414b15, -1px 1px 3px #414b15, 1px 1px 3px #414b15;
}

#about-dropdown {
    display: none;
    text-shadow: none;
}

#main-cont {
    background-color: #FFF;
    color: #101010;
    margin: auto;
    width: 100%;
    margin: 0px;
    padding: 0px;
    font-family: Montserrat, sans-serif;
    position: relative;
}

#top-cont {
    background-position: center;
    background-size: 110% auto;
    padding: 0px;
    position: relative;
    min-height: 600px;
}

#logo-circ-lg {
    min-width: 380px;
    padding-top: 40px;
    padding-left: 20px;
    padding-bottom: 10px;
    text-align: left;
    cursor: pointer;
}

#logo-circ-lg > img{
    width: 378px;
    height: 378px;
}

#desc-cont {
    text-align: center;
    position: relative;
    font-size: 16px;
    text-align: center;
    color: #fff;
    text-shadow: -2px -2px 3px #53412c, 2px -2px 3px #53412c, -2px 2px 3px #53412c, 2px 2px 3px #53412c;
}

#desc-cont a {
    color: #e7f1cc; 
    text-decoration: none;
}

#fb-logo {
    position: relative;
    top: 2px;
    cursor: pointer;
}

@media only screen and (max-width: 800px) {
    #logo-circ-lg {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 80px;
        text-align: center;
    }
    #logo-circ-lg > img {
        width: 300px;
        height: 300px;
    }
    .flex-cont > div {
        flex: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        max-width: 400px;
        width: 100%;
    }
    .apply-header, .tagline {
        padding-top: 20px;
        padding-left: 0px;
        padding-right: 0px;
        text-align: center;
        min-width: 380px;
        margin-bottom: 0px;
    }
    button[type="submit"] {
        margin-left: auto;
        margin-right: auto;
    }
    #desc-cont > div {
        flex: none;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        max-width: 400px;
        width: 100%;
    }
}

#program-details {
    max-width: 800px;
    margin: auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

#program-details > .more-info {
    text-align: center;
    margin-bottom: 10px;
}

#footer {
    text-align: center;
    background-color: #f0ebe6;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 1px solid #d5c8ba;
}

#footer a {
    text-decoration: none;
    color: #677821;
}


