/*------------------------------------------------------------
FONTS
--------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Annie+Use+Your+Telescope&display=swap');
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
}

.msitOrange {
    color: #ff670f;
}


/* unvisited link */

.msitOrangea:link {
    color: #ff670f;
}


/* visited link */

.msitOrange:visited {
    color: #ff670f;
}


/* mouse over link */

.msitOrange:hover {
    color: #ff670f;
}


/* selected link */

.msitOrange:active {
    color: #ff670f;
}


/*------------------------------------------------------------------
NAVBAR
--------------------------------------------------------------------*/

.navbar {
    transition: all 0.5s;
    z-index: 997;
}

.navbar-fixed {
    background: rgba(52, 59, 64, 0.9);
    transition: all 0.5s;
    padding: 20px;
    height: 72px;
}


/*------------------------------------------------------------
CAROUSEL
--------------------------------------------------------------*/

.page-top {
    margin-top: 85px;
}


/*------------------------------------------------------------
CAROUSEL
--------------------------------------------------------------*/

.carousel {
    margin-top: 50px;
}

.carousel-inner {
    height: 350px;
}

.quote {
    font-size: 1.75em;
    color: #5C514A;
}

.userComment {
    font-weight: 300;
    font-size: 1.5em;
    display: block;
    color: #464341;
}

.username {
    color: #5C514A;
}

.carousel-caption {
    color: #000;
    top: 30%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

.carousel-indicators li {
    filter: invert(100%);
}

@media only screen and (max-width: 600px) {
    .carousel-inner {
        height: 450px;
    }
    .quote {
        font-size: 1.5em;
        color: #5C514A;
    }
    .userComment {
        font-weight: 300;
        font-size: 1.25em;
        display: block;
        color: #464341;
    }
}


/*------------------------------------------------------------
ABOUT 
--------------------------------------------------------------*/

.aboutBackground {
    min-height: 300px;
    background: url(../img/about.jpg) center top no-repeat;
    margin-bottom: 10px;
    background-size: cover;
}


/*------------------------------------------------------------
GALLERY
--------------------------------------------------------------*/

#demo {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.green {
    background-color: #6fb936;
}

.thumb {
    margin-bottom: 30px;
}

img.zoom {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
}

.transition {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    color: #000;
}

.modal-footer {
    display: none;
}


/*------------------------------------------------------------
HERO
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: url(../img/hero.jpg) top center;
    background-size: cover;
    position: relative;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#hero h1 {
    font-family: 'Poppins', sans-serif;
    margin: 30px 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

#hero h2 {
    color: #eee;
    margin-bottom: 50px;
    font-size: 24px;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

#hero .btn-get-started {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
}

#hero .btn-get-started:hover {
    background: #5C514A;
    border: 2px solid #000;
    color: #000;
}


/*------------------------------------------------------------
FOOTER
--------------------------------------------------------------*/

#footer {
    background: #484645;
    padding: 20px 0;
    color: #fff;
    font-size: 14px;
}

#footer .copyright {
    text-align: center;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #ccc;
}


/*-------------------------------------------------------------
REMARKS
-------------------------------------------------------------*/

.remark {
    font-family: 'Annie Use Your Telescope', cursive;
}


/*------------------------------------------------------------
CONTACT FORM
--------------------------------------------------------------*/

#contact {
    background-color: #D6D2CF;
    margin: 0;
    padding: 30px 0px 30px 0;
}

.marker {
    color: #5C514A;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 40px;
}

p {
    display: inline-block;
    vertical-align: middle;
    padding-top: 5px;
}

#map {
    margin: 0;
    height: 400px;
    padding: 0;
}

.btnsubmit {
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #464341;
    color: #464341;
    background: #D5C8A2;
}

.btnsubmit:hover {
    background: #D5C8A2;
    border: 2px solid #5C514A;
    color: #5C514A;
}

.validation {
    color: #DD0003;
}