body {
    overflow-x: hidden;
    background-color: #FBF2DE;
}

.serif-font {
    font-family: "DM Serif Display", serif;
}

.primary-dark {
    color: #114227;
}

.secondary-dark {
    color: #8D9F88;
}

.primary-light {
    color: #FBF2DE;
}

.secondary-light {
    color: #FFF;
}

#logoImage {
    height: 80px;
}

.masthead {
    height: 100vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fbf2e1;
    background-image: url("../images/santolina_birdseye.jpg");
}

#banner_logo {
    height: 100px;
}

.headlineblock {
    background-color: #fbf2e1;
    padding: 100px 20px 100px 20px;
    margin-top: 100px;
}

.nav-item {
    font-family: "DM Serif Display", serif;
    font-size: 22px;
    color: #222;
    margin-left: 23px;
}

#mainNav a {
    color:#114227;
}

#mainNav a:hover {
    color:#8D9F88;
}

.dropdown-menu {
    min-width: 22rem;
}

.booking-button {
    background-color: #8D9F88;
    color: #fff;
    padding: 10px;
    border-radius: 2px;
    border: 0;
    margin: 0px 0px 0px 34px;
}

#bookingButtonHome {
    margin: 20px 0px 0px 0px;
    background-color: #FBF2DE;
    color: #114227;
    padding: 10px 20px 10px 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "DM Serif Display", serif;
}

h4, h5, h6 {
    margin-top: 40px;
}

h1 {
    font-size: 4em;
}

h2{
    font-size: 2.5em;
}

h3 {
    font-size: 2em;
}

.persona-image {
    width: 200px;
    align-self: center;
}

.content-bar {
    /* border-bottom: 1px solid #fff6e5; */
    /* border-radius: 5px; */
 }


 .content-card {
     border: 1px solid #fbf2e1;
 }

 .article-card {
     border: 1px solid #fbf2e1;
 }

 .article-card:hover {
     background-color: #fff9ee;
 }

 /*
 .section-header-dot {
     background-image: url(dot.svg);
     background-repeat: no-repeat;
     background-position: top -51px center;
 }
 */

#subHeadline {
    font-size: 27px;
    margin-left: 5px;
}

#logo {
    font-family: Fira Sans;
    font-weight: 600;
    font-size: 38px;
    color: #f19f00;
}

#logo-image {
    /* height: 32px; */
}

.learnmore-button {
    color: #f19f00;
    font-weight: 500;
    background-color: #fff;
    padding: 10px 36px 10px 36px;
    border-radius: 22px;
}

.learnmore-button:hover {
    background-color: #fdeac7;
    color: #fff;
}

.left-col-offset-1 {
    margin-bottom: 75px;
}

.right-col-offset-1 {
    margin-top: 75px;
}

.col-offset-2 {
    margin-top: 30px;
}

.col-offset-3 {
    margin-top: -45px;
}

.article-title:link {
    text-decoration: none;
    color: #212529;
}

.article-title:visited {
    text-decoration: none;
    color: #212529;
}

.article-title:hover {
    color: #87682e;
}

.article-date {
    color: #888;
}

#tech-icon-div
{
    border-top:1px solid #fbf2e1;
}

.tech-logo {
    max-height: 80px;
    max-width: 150px;
    margin: 20px 12px 20px 13px;
}

#siteFooter {
    background-color: #fff9ee;
    color: #676767;
}

.footer-link {
    color: #676767;
    text-decoration:none;
    float:right;
}

.footer-link:hover {
    color: #000;
}

#footerLogo {
    width: 20px;
    margin-top: -5px;
    margin-left: 10px;
    float:right;
}

#profile-pic {
    float: left;
    width: 102px;
    height: 100px;
    background-color: #eee;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    padding: 25px 0px 0px 0px;
    color: #777;
    background-image: url("bio.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.carousel-inner {
    max-height: 360px;
}

.carousel-item {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    width: 101%;
}

.carousel-inner-item {
    padding: 0px;
}

.carousel-section
{
    background-color: #dbcdb0;
}

/*
#pageLoad {
    width: 4000px;
    height: 4000px;
    position: absolute;
    top:0;
    bottom: 0;
    left: -100px;
    right: 0;
    margin: auto;
    background-color: #f19f00;
    border-radius: 50%;

    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -webkit-animation-name: hidePageDot;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
    -webkit-animation-fill-mode: forwards;

    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    -moz-animation-name: hidePageDot;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;
    -moz-animation-fill-mode: forwards;

    transition-property: -moz-transform;
    transition-duration: 1s;
    animation-name: hidePageDot;
    animation-duration: 1.5s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
    animation-fill-mode: forwards;
}

@-webkit-keyframes hidePageDot {
    from {
        -webkit-transform:scale(1);
    }
    to {
        -webkit-transform:scale(0);
    }
}
@-moz-keyframes hidePageDot {
    from {
        -moz-transform:scale(1);
    }
    to {
        -moz-transform:scale(0);
    }
}
@keyframes hidePageDot {
    from {
        transform:scale(1);
    }
    to {
        transform:scale(0);
    }
}
*/

@media (max-width: 991px) {
    .dropdown-menu {
        border: 0;
        border-radius: 0;
        border-left: 1px solid #8D9F88;
    }

    #pageLoad {
        -webkit-animation-duration: 4s;
        -moz-animation-duration: 4s;
        animation-duration: 4s;
    }

    .booking-button {
        margin: 15px 0 5px 21px;
    }

    .left-col-offset-1 {
        margin-bottom: 10px;
    }

    .right-col-offset-1 {
        margin-top: 0;
    }

    .col-offset-2 {
        margin-top: 0;
    }

    .col-offset-3 {
        margin-top: 0;
    }
}
