@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Prompt:300,400');

body{
    font-family: 'Prompt', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.1px;
    color: #666;
}

h1, h2, h3, h4, h5, h6{
    font-family: 'Prompt', sans-serif;
    font-weight: 300;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

a{
    outline: none;
    color: #c6a94f;
}
a:hover{
    color: #837761;
    text-decoration: none;
}
strong{
    color: #c6a94f;
    font-weight: 400;
}

/* Utilities */
.space{
    padding-top: 30px;
    padding-bottom: 30px;
}
.bg,
.bg .headline-center::after{
    background-image: url('../images/bg.jpg');
}
body > .loading{
	background-color: rgba(255, 255, 255, 0.7);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 5000;
}
body > .loading i{
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 50px;
    margin-top: -25px;
    margin-left: -25px; 
}
.alert{
    border-radius: 0;
    margin-bottom: 30px;
}
.alert-success{
    background-color: #c6a94f;
    border: #c6a94f;
    color: #fff;
}
.alert-success strong{
    color: #fff;
}
.alert-danger strong{
    color: #c21c24;
}

/* Form */
fieldset{
    margin-bottom: 20px;
}

/* Button */
.btn{
    padding: 8px 30px;
    border-radius: 0;
    font-size: 14px;
    color: #fff;
}
.btn-primary,
.btn-secondary:hover{
    background-color: #c6a94f !important;
    border-color: #c6a94f !important;
}
.btn-secondary,
.btn-primary:hover{
    background-color: #231f20 !important;
    border-color: #231f20 !important;
}
.btn-more{
    background-color: #fff;
    border: 1px solid #f1f1f1;
    padding: 8px 15px;
    color: #c6a94f;
}
.btn-more::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 13px;
    content: '\f067';
    margin-right: 10px;
}
.btn-more:hover{
    color: #fff;
    background-color: #c6a94f;
}
.btn:focus, 
.btn:active,
button:focus{
    outline: none !important;
    box-shadow: none !important;
}

/* Headline */
.headline,
legend{
    font-size: 24px;
    line-height: 24px;
    color: #c6a94f;
    position: relative;
    padding: 0 0 10px 0;
    margin-bottom: 20px;
}
.headline::before,
legend::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100px;
    height: 2px;
    max-width: 100%;
    background-color: #c6a94f;
}
.headline::after,
legend::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
    height: 1px;
    max-width: 100%;
    background-color: #ddd;
}

/* Headline Center */
.headline-center{
    position: relative;
    text-align: center;
    color: #c6a94f;
    text-transform: uppercase;
    padding-bottom: 25px;
    margin-bottom: 50px;
}
.headline-center::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 260px;
    height: 1px;
    margin-left: -130px;
    border-bottom: 1px dotted #ddd;
}
.headline-center::after{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 26px;
    content: '\f06c';
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -25px;
    background-color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}
.headline-center *{
    font-size: 26px;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 0;
}
.headline-center strong{
    color: #666;
    font-size: 18px !important;
    line-height: 30px !important;
    font-weight: 300;
    letter-spacing: 0px;
    display: block;
    margin: 0 !important;
}
.headline-center.inverse strong{
    color: #fff;
}
.headline-center.inverse::after{
    background-color: #242425;
}

/* Slider */
.slide{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
}
.slide-1{
    background-image: url('../images/bg-slide-1.jpg');
}
.slide-2{
    background-image: url(http://placehold.it/1920x620);
}
.slider-content{
    position: relative;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 300px;
    margin: 0 auto;
}
.slider-content h2{
    color: #fff;
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    text-transform: uppercase;
}
.slider-content h3{
    color: #fff;
    font-weight: 300;
    font-size: 24px;
    line-height: 24px;
}
.slider-content p{
    color: #fff;
    font-size: 14px;
    line-height: 18px;
}
.slider-content hr{
    margin-top: 15px;
    margin-bottom: 15px;    
    border-top: 1px solid #fff;
}
.owl-item.active .slider-content h2{
    -webkit-animation: fadeInDown 1200ms ease-in-out 0s 1 normal;
    animation: fadeInDown 1200ms ease-in-out 0s 1 normal;
}
.owl-item.active .slider-content h3{
    -webkit-animation: fadeInDown 1000ms ease-in-out 0s 1 normal;
    animation: fadeInDown 1000ms ease-in-out 0s 1 normal;
}
.owl-item.active .slider-content hr{
    -webkit-animation: fadeIn 1500ms ease-in-out 0s 1 normal;
    animation: fadeIn 1500ms ease-in-out 0s 1 normal;
}
.owl-item.active .slider-content p{
    -webkit-animation: fadeInUp 1000ms ease-in-out 0s 1 normal;
    animation: fadeInUp 1000ms ease-in-out 0s 1 normal;
}
.owl-nav div{
    background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 22px;
    height: 40px;
    left: 0;
    line-height: 40px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    width: 40px;
    z-index: 8;
}
.owl-nav div:hover{
    background: #c6a94f;
    color: #fff;
}
.slider:hover .owl-nav div{
    opacity: 1;
}
.slider:hover .owl-nav div.owl-prev{
    left: 10px;
}
.slider:hover .owl-nav div.owl-next{
    right: 10px;
}
.owl-nav div.owl-next{
    right: 0;
    left: auto;
}
.owl-dots{
    bottom: 15px;
    margin-top: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 12;
}
.owl-dots .owl-dot{
    background: #fff none repeat scroll 0 0;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    font-size: 0;
    height: 10px;
    margin: 0 4px;
    position: relative;
    text-align: center;
    -webkit-transition: all 300ms ease-in 0s;
    transition: all 300ms ease-in 0s;
    width: 10px;
    z-index: 8;
}
.owl-dots .owl-dot.active{
    background: #c6a94f none repeat scroll 0 0;
    width: 32px;
}

/* Jumbotron */
.jumbotron{
    background: url('../images/bg-jumbotron.jpg');
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    padding: 33px 0;
    border-radius: 0;
    margin-bottom: 0;
    text-align: center;
}
.jumbotron *{
    font-weight: 300;
    color: #fff;
    font-size: 18px;
}
.jumbotron * span{
    display: block;
    font-size: 24px;
    color: #c6a94f;
    text-transform: uppercase;
}

/* Breadcrumb */
.breadcrumb{
    display: none;
    background-color: transparent;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 30px;
    padding: 0.75rem 0;
}
.breadcrumb a{
    color: #231f20;
}
.breadcrumb a:hover{
    color: #c6a94f;
}
.breadcrumb li.active{
    color: #c6a94f;
    font-weight: 400;
}
.breadcrumb-item+.breadcrumb-item::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 9px;
    content: '\f054';
    padding-right: 10px;
}
.breadcrumb-item+.breadcrumb-item{
    padding-left: 10px;
}

/* Pagination */
.pagination{
    padding: 10px 0;
    margin: 10px 0 0 0;
    border: 1px solid #f1f1f1;
}
.pagination .page-link{
    border: 0;
    color: #231f20;
    background: transparent;
}
.pagination .page-link:hover{
    color: #c6a94f;
}
.pagination .active .page-link{
    color: #c6a94f;
    font-weight: 400;
    background: transparent;
}
.pagination .page-link:focus,
.pagination .page-link:active{
    outline: none !important;
    box-shadow: none;
 }

/* info-box */
.info-box{
    background: url('../images/bg-smoke.jpg');
    background-position: right top;
    background-repeat: no-repeat;
    border: 1px solid #f1f1f1;
    padding: 30px;
}
.info-box ul{
    margin: 0 0 0 25px;
}
.info-box li{
    margin-top: 8px;
    padding-left: 5px;
}
.info-box i{
    color: #c6a94f;
}

/* Form */
form.bg{
    background-position: -100%;
    background-repeat: no-repeat;
}
.form-control{
    border: 1px solid #ddd;
    border-radius: 0;
    color: #666;
    font-size: 15px;
    font-weight: 300;
}
.form-control::placeholder{
    opacity: 0.5;
}
.form-control:focus,
.custom-select:focus{
    border-color: #c6a94f;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05), 0 0 8px rgba(198, 169, 79, 0.3);
}

footer{
    font-size: 12px;
    text-align: center;
}
footer .container{
    border-top: 1px solid #f1f1f1;
    padding-top: 30px;
    padding-bottom: 30px;
}
footer .social{
    margin-top: 10px;
}
footer .social a{
    font-size: 18px;
    color: #231f20;
    margin: 0 10px;
    display: inline-block;
}
footer .social a:hover{
    color: #c6a94f;
}

/* Topbar */
.topbar{
    border-bottom: 1px solid #f1f1f1;
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.topbar span{
    margin-right: 15px;
}
.topbar i{    
    margin-right: 5px;
}
.topbar a{
    color: #231f20;
    margin-right: 15px;
}
.topbar a:hover,
.topbar a.active{
    color: #c6a94f;
}
.topbar a.float-right,
.topbar a.float-right span{
    margin-right: 0;
}
.topbar a.float-right span{
    background-color: #c6a94f;
    font-weight: 400;
    font-size: 10px;
    color: #fff;
    padding: 0 5px;
    border-radius: 100%;
    position: relative;
    top: -2px;
}

/* Navbar */
.navbar-toggler div{
    width: 18px;
    height: 16px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}
.navbar-toggler div span{
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #231f20;
    border-radius: 3px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
.navbar-toggler div span:nth-child(1){
    top: 0px;
}
.navbar-toggler div span:nth-child(2),
.navbar-toggler div span:nth-child(3){
    top: 6px;
}
.navbar-toggler div span:nth-child(4){
    top: 12px;
}
.navbar-toggler div.open span:nth-child(1),
.navbar-toggler div.open span:nth-child(4){
    opacity: 0;
}
.navbar-toggler div.open span:nth-child(2){
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.navbar-toggler div.open span:nth-child(3){
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.navbar-nav{
    padding: 15px 0;
}
.navbar .nav-link{
    color: #231f20;
    font-size: 16px;
    border-bottom: 1px solid #f1f1f1;
}
.navbar li:last-child .nav-link{
    font-size: 24px;
    margin-left: 2rem;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.navbar .nav-link:hover,
.navbar .active .nav-link{
    color: #c6a94f;
}
.navbar .active .nav-link{
    font-weight: 400;
}
.navbar span{
    position: relative;
    top: -18px;
    left: -15px;
    background-color: #c6a94f;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    padding: 0 6px;
    border-radius: 100%;
}
.navbar-brand img{
    height: 40px;
}

/* Home */
.home .slider img{
    width: 100%;
}
.home .tagline{
    background: url('../images/bg-tagline-home.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 180px;
}
.home .tagline h3{
    padding-top: 60px;
    font-size: 36px;
    line-height: 32px;
    color: #c6a94f;
    text-align: center;
    text-transform: uppercase;
}
.home .tagline h3 span{
    color: #fff;
    display: block;
    font-weight: 400;
}
.home .products .item{
    margin-bottom: 20px;
}
.home .olorchee{
    background: url('../images/bg-olorchee-home.jpg');
    background-position: center;
    background-size: cover;
    text-align: center;
    padding-top: 50px;
    height: 280px;
}
.home .olorchee h5{
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    margin: 15px 0;
    color: #231f20;
}
.home .olorchee h5 span{
    display: block;
}
.home .member{
    background: url('../images/bg-member-home.jpg');
    background-position: right;
    background-size: cover;
    padding-top: 70px;
    height: 280px;
    color: #fff;
    text-align: center;
}
.home .member h6{
    font-size: 30px;
    margin-bottom: 20px;
}
.home .member h6 span{
    display: block;
    font-size: 36px;
    font-weight: 400;
}

/* About */
.about .about img{
    width: 100%;
    margin-bottom: 30px;
}
.about .about p{
    line-height: 22px;
}
.about .about strong{
    color: #231f20;
}
.about .tagline{
    background: url('../images/bg-tagline-about.jpg');
    background-attachment: fixed;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.about .tagline p{
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}
.about .iso{
    text-align: center;
}
.about .iso img{
    margin-bottom: 30px;
}
.about .iso p{
    margin-bottom: 0;
}

/* Products */
.products aside{
    padding: 20px;
}
.products aside .headline{
    font-size: 18px;
}
.products aside ul{
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
.products aside ul:last-child{
    margin-bottom: 0;
}
.products aside li{
    margin-bottom: 5px;
}
.products aside a{    
    color: #231f20;
}
.products aside a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 13px;
    content: '\f06c';
    margin-right: 10px;
}
.products aside a:hover,
.products aside a.active{
    color: #c6a94f;
}
.products aside a.active{
    font-weight: 400;
}
.products .item{
    padding-bottom: 5px;
    text-align: center;
    border: 1px solid transparent;
}
.products .item:hover{
    background-color: #fff;
    border-color: #c6a94f;
}
.products .item a.view{
    display: block;
    margin-bottom: 5px;
    border: 1px solid #f1f1f1;
}
.products .item:hover a.view{
    border-color: transparent;
}
.products .item .cart{
    font-size: 12px;
    display: block;
    color: #fff;
    margin: 0 5px;
    opacity: 0;
    background-color: #c6a94f;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.products .item:hover .cart{
    opacity: 1;
}
.products .item:hover .cart:hover{
    background-color: #837761;
}
.products .item .cart.disabled,
.products .item .cart.disabled:hover{
    background-color: #6c757d;
    border-color: #6c757d;
}
.products .item:hover .cart.disabled{
    opacity: .65;
}
.products .item strong{
    display: block;
    font-size: 12px;
    line-height: 14px;
    color: #231f20;
}
.products .item span{
    color: #c6a94f;
    font-size: 12px;
}

/* Product */
.product .image{
    border: 1px solid #f1f1f1;
    cursor: pointer;
}
.product .lSPager li{
    border: 1px solid #f1f1f1;
}
.product .lSPager li.active{
    border-color: #c6a94f;
}
.product .info h1{
    font-size: 24px;
    font-weight: 300;
    color: #231f20;
}
.product .info strong{
    display: block;
    color: #c6a94f;
    font-size: 26px;
    margin-top: 20px;
}
.product .info p{
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    padding: 20px 0;
    margin: 20px 0;
}
.product .info .disabled,
.product .info .disabled:hover{
    background-color: #6c757d;
    border-color: #6c757d;
}
.product .detail{
    margin-top: 50px;
}


/* News */
.news .item{
    margin-bottom: 30px;
}
.news .item a{
    display: inline-block;
}
.news .item strong{
    display: block;
    margin: 20px 0 5px 0;
    font-size: 16px;
    line-height: 20px;
    color: #231f20;
}
.news .item p{
    font-size: 14px;
    line-height: 20px;
}
.news .item a{
    display: block;
}
.news .item a.btn-more{
    display: inline-block;
}
.news .item img{
    width: 100%;
}
.news .detail h1{
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Contact */
.contact form{
    margin-bottom: 30px;
}
.contact form label{
    font-size: 14px;
    line-height: 14px;
    margin: 5px 0 0 2px;
}
.contact form .form-group{
    margin-bottom: 10px;
}
.contact .map{
    margin-top: 50px;
}
.contact .map iframe{
    width: 100%;
    height: 400px;
}

/* Sign Up */
.signup form label{
    font-size: 14px;
    line-height: 14px;
    margin: 5px 0 0 2px;
}
.signup form .form-group{
    margin-bottom: 10px;
}
.signup form input::placeholder{
    color: #fff;
}

/* Error 404 */
.error404{
    text-align: center;
}
.error404 h2{
    font-weight: 300;
    font-size: 150px;
    color: #c6a94f;
}
.error404 p{
    margin: 10px 0 30px 0;
}

/* Cart */
.cart .underline{
	border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin: 0 0 15px 0;
}
.cart .thead{
    display: none;
}
.cart .tbody strong{
    display: block;
    margin-top: 10px;
    line-height: 18px;
}
.cart .input-group-text{
    background-color: #fff;
    padding: .375rem .5rem;
    cursor: pointer;
    font-size: 12px;
}
.cart .input-group-text:hover{
    color: #c6a94f;
}
.cart .input-group .form-control{
    max-width: 60px;
    padding: 0;
}
.cart .summary{
	font-weight: bold;
}
.featherlight:last-of-type{
	z-index: 1000;
}
.featherlight .featherlight-content{
	width: 90%;
}
.featherlight .featherlight-close-icon{
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #231f20;
}
.featherlight title,
.featherlight .topbar,
.featherlight .navbar,
.featherlight .jumbotron,
.featherlight .breadcrumb li:before,
.featherlight .breadcrumb li:first-child,
.featherlight footer{
	display: none !important;
}
.featherlight .space{
    padding: 0;
}

/* Order */
.order .cart{
    border: 1px solid #f1f1f1;
    padding: 30px 15px;
    margin: 0 0 30px 0;
    line-height: 18px;
}
.order .cart small{
    color: #999;
    font-style: italic;
}
.order .cart .underline:last-child{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.order .cart .discount,
.discount small{
    color: #c21c24;
}
.order form label{
    font-size: 14px;
    line-height: 14px;
    margin: 5px 0 0 2px;
}
.order form .form-group{
    margin-bottom: 10px;
}

/* Sign In */
.signin form{
    margin-bottom: 30px;
}

/* Min width 480px */
@media(min-width: 480px){
    body{
        font-size: 15px;
        line-height: 26px;
    }    
    .headline-center::before{
        width: 400px;
        margin-left: -200px;
    }
    .headline-center *{
        font-size: 30px;
        line-height: 30px;
        letter-spacing: 2px;
    }
    .headline-center strong{
        letter-spacing: 1px;
    }
    .pagination{
        padding: 10px;
    }
    form.bg{
        padding: 30px;
        background-position: 0;
        background-repeat: repeat;
    }
    .home .about p{
        margin-top: -20px;
    }
    .home .member h6{
        font-size: 32px;
    }
    .home .member h6 span{
        font-size: 40px;
    }
    .about .tagline{
        background-position: center;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media(min-width: 576px){
    .jumbotron{
        padding: 45px 0;
    }
    .jumbotron *{
        font-size: 22px;
    }
    .jumbotron * span{
        font-size: 28px;
    }
    footer{
        text-align: left;
    }
    footer .social{
        text-align: right;
        margin-top: 0;
    }
    footer .social a{
        margin: 0 0 0 15px;
    }
    .topbar a{
        margin-left: 15px;
        margin-right: 0;
    }
    .navbar-brand img{
        height: 50px;
    }
    .home .tagline{
        height: 240px;
    }
    .home .tagline .bg-girl{
        background: url('../images/bg-girl.png');
        background-repeat: no-repeat;
        background-position: right;
        background-size: 155%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 240px;
    }
    .home .tagline h3{
        padding-top: 90px;
        position: absolute;
        z-index: 1;
        right: 20px;
        text-align: right;
    }
    .home .member{
        background-position: center;
    }
    .home .news .item:last-child{
        display: none;
    }
    .news .item:nth-last-child(1),
    .news .item:nth-last-child(2),
    .news .item:nth-last-child(3){
        margin-bottom: 0;
    }
}

/* Medium devices (tablets, 768px and up) */
@media(min-width: 768px){	
    .space{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .slider-content{
        text-align: left;
        padding-top: 120px;
        padding-bottom: 120px;
        max-width: 100%;
        width: 340px;
        margin: 0;
    }   
    .slider-content h2{
        font-size: 50px;
        line-height: 44px;
    }
    .slider-content h3{
        font-size: 30px;
        line-height: 30px;
    } 
    .slider-content p{
        color: #837761;
    }
    .jumbotron{
        padding: 65px 0;
    }
    .breadcrumb{
        display: flex;
    }
    .topbar{
        font-size: 12px;
    }
    .navbar-nav{
        padding: 0;
    }
    .navbar .nav-link{
        border-bottom: 0;
    } 
    .navbar-expand-md .navbar-nav .nav-link{
        padding-right: .8rem;
        padding-left: .8rem;
    }
    .home .about p{
        margin-top: -40px;
    }
    .home .tagline .bg-girl{
        background-size: 130%;
    }
    .home .tagline h3{
        padding-top: 85px;
        font-size: 40px;
        line-height: 38px;
    }
    .about .about img{
        margin-bottom: 0;
    }
    .about .tagline{
        background-position: left;
    }
    .products .item{
        padding-bottom: 10px;
    }
    .products .item a.view{
        margin-bottom: 10px;
    }
    .products .item .cart{
        padding: 3px;
        margin: 0 10px;
        font-size: 14px;
        font-weight: 400;
    }
    .products .item strong,
    .products .item span{
        font-size: 15px;
    }
    .cart .thead{
        display: flex;
    }
    .cart .tbody strong{
        display: none;
    }
}

/* Large devices (desktops, 992px and up) */
@media(min-width: 992px){
    .space{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .slider-content{
        padding-top: 140px;
        padding-bottom: 140px;
        left: 40px;
    }   
    .jumbotron{
        background-position: 60%;
        text-align: left;
        padding: 70px 0;
    }
    .jumbotron *{
        font-size: 24px;
    }
    .jumbotron * span{
        font-size: 30px;
    }
    .navbar-brand img{
        height: auto;
    }
    .home .about p{
        margin-top: -60px;
    }
    .home .tagline{
        height: 320px;
    }
    .home .tagline .bg-girl{
        background-position: left;
        background-size: auto;
        height: 320px;
    }
    .home .tagline h3{
        color: #fff;
        padding-top: 110px;
        text-align: left;
        right: auto;
        font-size: 50px;
        line-height: 46px;
    }
    .home .products .item{
        margin-bottom: 0;
    }
    .home .olorchee h5 span{
        color: #c6a94f;
    }
    .home .news .item:last-child{
        display: inline-block;
    }
    .contact form{
        margin-bottom: 0;
    }
    .order .cart{
        margin: 0 0 0 20px;
    }
    .featherlight .featherlight-content{
        width: 80%;
    }
    .signin form{
        margin-bottom: 0;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media(min-width: 1200px){   
    .slider-content{
        padding-top: 215px;
        padding-bottom: 215px;
        top: -60px
    }   
    .jumbotron{
        background-position: center;
    }
    .navbar-expand-md .navbar-nav .nav-link{
        padding-right: 1.4rem;
        padding-left: 1.4rem;
    }
    .home .tagline .bg-girl{
        background-position: 300px;
    }
    .home .olorchee{
        background-position: left;
        padding-top: 65px;
        height: 300px;
    }
    .home .member{
        background-position: right;
        padding-top: 80px;
        height: 300px;
    }
    .products aside{
        padding: 30px;
    }
    .order .cart{
        margin: 0 0 0 50px;
    }
}

@media(min-width: 1600px){
    .home .tagline .bg-girl{
        background-position: right;
    }
    .featherlight .featherlight-content{
        width: 70%;
    }
}   

@media(min-width: 2000px){
    .home .tagline .bg-girl{
        background-position: 80%;
    }
}   