/********** Template CSS **********/
body{
    font-family: 'Myriad Pro';
}
:root {
    --primary: #998B32;
    --secondary: #FB9F38;
    --light: #F5F8F2;
    --dark: #252C30;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
.btn.btn-primary.back-to-top{
    box-shadow:0 0 5px 2px #615f34;
}
/*** map ***/
.map-sectio iframe{
    width:100%;
    height: 400px;
}

/*** Navbar ***/
.header-bg{
    padding: 10px 0;
    box-shadow:0 2px 5px 2px #686868;
}
.sticky-top {
    top: -150px;
    transition: .5s;
}

.navbar .logo.navbar-brand {
    font-size: 24px;
    color:#9a8a30;
    font-weight: 800;
    padding:0;
    margin:0;
}
.navbar .logo.navbar-brand img{
    width: 100px;
}
.navbar .navbar-nav .nav-link {
    font-size: 16px;
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgb(153 139 50 /80%);
    z-index: 1;
}
.carousel .carousel-item{
    height:calc(100vh - 120px);
    min-height:500px;
    overflow: hidden;
}
.carousel .carousel-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-item .carousel-caption h1{
    font-family: 'Number Five Rough';
}
.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: #000;
    border: 15px solid #000;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(136, 180, 78, .7), rgba(136, 180, 78, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}

/*** About ***/
.about-content .section-title{
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
}
.about-content .section-title h2{
    font-family: 'Number Five Rough';
}
.about-content p{
    font-size: 17px;
}
.about-content .btn.btn-primary{
    font-size: 18px;
    padding:14px 45px !important;
}
#gallery .section-title::after,
.about-content .section-title::after{
    background:#ffffff;
    border:10px solid #998B32;
}
.menu-section-bg .section-title h1{
    color: #fff;
    font-family: 'Number Five Rough';
}
.menu-section-bg .section-title::before{
    background-color: #fff;
}
.menu-section-bg .section-title::after{
    background-color: #998b33;
}
#gallery .section-title h2{
    font-family: 'Number Five Rough';
}

/*** Products ***/
/*.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(136, 180, 78, .1)), url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;    
}*/

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}

.video {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.menu-section-bg{
    margin-top: 30px;
    padding: 70px 0;
    position: relative;
    background-image: url(../img/menu-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}
.menu-section-bg::before{
    position: absolute;
    content:'';
    left:0;
    right:0;
    top:0;
    bottom:0;
    background-color: #9a8a30;
    opacity:0.9;
}
.menu-section-bg .container{
    position: relative;
    z-index:2;
}
.store-item{
    overflow: hidden;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow:0 5px 10px 1px #6e6e6e;
}
.store-item h4{
    font-size:24px;
    font-family: 'Myriad Pro';
}
.store-item h5{
    font-size: 20px;
    font-family: 'Myriad Pro';
    font-weight: 300;
}
.store-item img{
    max-width: 125px;
}
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(138, 180, 78, .3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}
.menu-section-bg a.btn.btn-primary{
    font-size: 18px;
    color:#000;
    border-color: #fff;
    padding: 14px 45px !important;
    background-color: #fff;
}
/*** Gallery ***/
.gallery-item{
    overflow: hidden;
    margin-bottom: 30px;
}
.gallery-item img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.5s;
}
.gallery-item:hover img{
    transform: scale(1.2);
}
/*** Testimonial ***/
.testimonial {
    background:linear-gradient(rgb(153 139 50 /90%), rgb(153 139 50 /75%)), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border:20px solid #d7d7d7;
}

.testimonial .testimonial-item img {
    width: 60px;
    margin: auto;
    margin-bottom: 10px;
    display: block;
}
.star-ratings{
    padding:0;
    margin:0 0 10px 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.star-ratings li{
    display: inline-block;
    margin:0 6px;
}
.star-ratings li i{
    font-size: 18px;
    color: #c7ac00;
}
.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}

/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}

/*** Footer ***/
.footer-bg{
    background-color:#202020;
}
.footer {
    color: #B0B9AE;
}
.footer-box h4 img{
    width: 100px;
}
.footer-box h4{
    font-family: 'Number Five Rough';
    font-size: 32px;
}
.footer-box p{
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    opacity:0.9;
}
.footer-box ul{
    padding:0;
    margin:0;
    list-style: none;
}
.footer-box ul li{
    color: #fff;
    font-size: 16px;
    letter-spacing: normal;
    margin-bottom: 15px;
}
.footer-box ul li a{
    color: #fff;
    text-decoration: none;
}
.footer-box ul li i{
    margin-right:5px;
}
.footer-box ul.happ-hours li {
    color: #fff;
    font-size: 16px;
    padding: 9px 0;
    letter-spacing: normal;
    display: flex;
    justify-content: space-between;    
    border-bottom: 1px solid #f5f5f5;
    margin-bottom:0;
}
.footer-box ul.app-icons li img {
    border: 1px solid #414141;
    border-radius: 5px;
}
.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #1a1a1a;
}

.copyright a:hover {
    color: #FFFFFF !important;
}

@media screen and (max-width:1199px) {    
    .footer-box p {
        font-size: 14px;
        line-height: 22px;
    }
    .footer-box ul.address-list li {
        font-size: 14px;
        display: flex;
        align-items: flex-start;
    }
    .footer-box ul.address-list li:first-child i{
        position: relative;
        top:4px;
    }
    .footer-box ul.happ-hours li{
        font-size: 14px;
    }

}

@media screen and (max-width:991px) {
.header-bg{
    padding:0;   
}
.navbar .logo.navbar-brand{
    height: auto;
}
.navbar .logo.navbar-brand img {
    width: 90px;
}
.navbar.navbar-expand-lg button.navbar-toggler{
    box-shadow: none;
}
.navbar.navbar-expand-lg .navbar-collapse{
    background-color: #fff;
    position: absolute;
    top:106px;
    left:0;
    right:0;
}
.navbar.navbar-expand-lg .navbar-nav{
    margin-top:0;
}
.navbar.navbar-expand-lg .navbar-nav a.nav-item.nav-link{
    padding: 11px 20px;
}
.carousel-item .carousel-caption{
    padding: 0 40px;
}
.carousel-item .carousel-caption p{
    font-size: 16px !important;
}
.about-image{
    text-align:center;
}

}

@media screen and (max-width:480px) {
.navbar.navbar-expand-lg .navbar-nav a.nav-item.nav-link{
    font-size: 14px;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
}
.carousel-item .carousel-caption h1{
    font-size: 32px;
    margin-bottom:15px !important;
}
.carousel-item .carousel-caption p {
    font-size: 16px !important;
    margin-bottom:20px !important;
}
.carousel-item .carousel-caption a.btn{
    font-size: 15px;
    padding:10px 30px !important;
}
.map-sectio iframe {
    height: 320px;
}
.copyright {
    font-size: 14px;
    padding: 22px 15px !important;
}
.copyright a img{
    width: 15px;
    top: -1px;
}

}