/* [Master Stylesheet] */

/* ------------- Index of Stylesheet -------------
:: 1.0 Import Web Fonts
:: 2.0 Import All CSS
:: 3.0 Common/Base CSS
:: 4.0 Wrapper CSS
:: 5.0 Header Area CSS

:: 8.0 Welcome Area CSS

:: 10.0 Top Catagory Area CSS
:: 11.0 New Arrivals Area Start
:: 12.0 Offer Area CSS

:: 14.0 Footer Area CSS
:: 15.0 Breadcumb Area CSS

:: 17.0 Product Details Area CSS
------------------------------------------------ */

/* --------------------
:: 1.0 Import Web Fonts
-------------------- */

@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,300');

/* ------------------
:: 2.0 Import All CSS
------------------ */

@import '../css/bootstrap.min.css';
@import '../css/owl.carousel.css';
@import '../css/font-awesome.min.css';
@import '../css/themify-icons.css';
@import '../css/magnific-popup.css';
@import '../css/animate.css';
@import '../css/jquery-ui.min.css';

/* -------------------
:: 3.0 Common/Base CSS
------------------- */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
    font-style: normal;
    overflow-x: hidden;
    background-color:#E9EBE3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 70;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: #3a3a3a;
    line-height: 1.2;
}

p {
    color: #3a3a3a;
    font-size: 18px;
    line-height: 1.5;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;   
}

a:focus {
    outline: 0 solid;
}

a,
a:hover,
a:focus {
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    text-decoration: none;
    outline: none;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

ul,
ol {
    margin: 0;
}

ol li,
ul li {
    list-style: outside none none;
}

img {
    height: auto;
    max-width: 100%;
}

.background-overlay,
.background-overlay-white {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: cover;
}

.background-overlay:before,
.background-overlay-white:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.background-overlay:before {
    background-color: rgba(0, 0, 0, 0.5);
}

.background-overlay-white:before {
    background-color: rgba(255, 255, 255, 0.9);
}

.mt-15 {
    margin-top: 15px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-30 {
    margin-right: 30px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-100 {
    margin-bottom: 100px;
}

.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-white {
    background-color: #fff;
}

.bg-dark {
    background-color: #000;
}

.bg-transparent {
    background-color: transparent;
}

.bg-transparent-dark {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-transparent-light {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.bg-dark3 {
    background-color: rgba(0, 0, 0, 0.75) !important;
}

.bg-dark2 {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.font-bold {
    font-weight: 700;
}

.font-light {
    font-weight: 300;
}

.line,
.line-mtb15 {
    width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
}

.line-mtb15 {
    margin: 15px 0;
}

.height-500 {
    height: 500px !important;
}

.height-600 {
    height: 600px !important;
}

.height-700 {
    height: 700px !important;
}

.height-800 {
    height: 800px !important;
}

#scrollUp {
    background-color: #a47d56;
    border-radius: 0;
    bottom: 0;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    color: #E9EBE3;
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    right: 60px;
    text-align: center;
    width: 40px;
}

.section_padding_100 {
    padding: 100px 0;
}

.section_padding_100_0 {
    padding: 100px 0 0;
}

.section_padding_0_100 {
    padding: 0 0 100px;
}

.section_heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section_heading h2 {
    font-size: 48px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.section_heading.text-left {
    text-align: left !important;
}

.karl-btn {
    display: inline-block;
    min-width: 170px;
    height: 55px;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 2px;
    padding: 0 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    line-height: 49px;
}

.karl-btn:hover,
.karl-btn:focus {
    font-weight: 700;
    color: #fff;
    background-color: #ff084e;
    border-color: #ff084e;
}

/* -------------------
:: 4.0 Wrapper CSS
------------------- */

#wrapper {
    position: relative;
    z-index: 1000;
    background-color: #E9EBE3;
    left: 0;
    top: 0;
    -webkit-transition: all linear 500ms;
    transition: all linear 500ms;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}


/* ------------------------
:: 5.0 Header Area CSS
------------------------ */

.top_header_area {
    height: 150px;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.main_header_area {
    height: 150px;
    padding-top: 30px;
}
/* ---------------------
:: 8.0 Welcome Area CSS
--------------------- */

.single_slide {
    background-position: center top;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.welcome_slide_text {
    position: relative;
    z-index: 1;
}

.welcome_slide_text > h2,
.single_catagory_area h2 {
    font-size: 62px;
    text-align: center;
    letter-spacing: 0;
    margin-left: -5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.welcome_slide_text h6,
.single_catagory_area h6 {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}
/* --------------------------
:: 10.0 Top Catagory Area CSS
-------------------------- */

.single_catagory_area {
    padding: 250px 50px;
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.single_catagory_area h6 {
    text-transform: uppercase;
}

.catagory-content {
    width: 55%;
}
/* ----------------------------
:: 11.0 New Arrivals Area Start
---------------------------- */

.portfolio-menu > .btn {
    font-size: 14px;
    font-weight: 700;
    color: #9f9f9f;
    background-color: transparent;
    padding: 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.portfolio-menu > .btn:focus,
.portfolio-menu > .btn.active {
    color: #3a3a3a;
    box-shadow: none;
}
.single_gallery_item {
    margin-bottom: 0px;
    overflow: hidden;
    padding-top: 15px;
    padding-bottom: 15px;
}

.product-img {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.product-img > img {
    width: 100%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single_gallery_item:hover .product-img > img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}

.product-img .product-quicview {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 9;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(23, 24, 24, 0.6);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.product-img:hover .product-quicview {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.product-img .product-quicview > a {
    width: 72px;
    height: 72px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 36px;
    line-height: 72px;
}

.product-img .product-quicview > a:hover {
    border: 2px solid rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
}

.product-description {
    margin-top: 20px;
}

.product-description h4 {
    font-weight: 400;
    color: #9f9f9f;
    margin-bottom: 5px;
    display: block;
}

.product-description p {
    font-size: 15px;
    margin: 0;
}

.product-description .add-to-cart-btn {
    margin-top: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #ff084e;
    display: block;
}

.product-description .add-to-cart-btn:hover {
    color: #2a2a2a;
}

/* -------------------
:: 12.0 Offer Area CSS
------------------- */

.offer_area {
    position: relative;
    z-index: 1;
}

.offer-content-area {
    background-color: rgba(58, 58, 58, 0.7);
    padding: 100px 50px 50px;
    position: relative;
    z-index: 1;
}

.offer-content-area h2 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.karl-level {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    background-color: #ff084e;
    padding: 3px 10px;
    top: -30px;
    left: 10px;
}

.karl-level:after {
    position: absolute;
    z-index: 2;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 9px 9px 9px;
    border-color: transparent transparent #ff084e transparent;
    bottom: -2px;
    left: -6px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.offer-content-area p {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}

.offer-product-price h3 {
    color: #ff084e;
}

.offer-product-price h3 span {
    margin-right: 15px;
    font-weight: 400;
    text-decoration: line-through;
    color: #fff;
}


/* ----------------------
:: 14.0 Footer Area CSS
---------------------- */

.footer_area {
    background-color: #E9EBE3;
    border-top: 2px solid #e5e5e5;
    padding: 40px 0 50px;
}

.footer_content > p {
    font-size: 14px;
}

.footer_content > p:first-child {
    margin-bottom: 30px;
}

.single_footer_area {
    margin-top: 20px;
}
.footer_social_area > a {
    margin-top: 20px;
    display: inline-block;
    font-size: 26px;
    padding: 0 30px;
}

.footer_social_area > a:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    color: #ff084e;
}

.fa {
    font: normal normal normal 54px/1 FontAwesome;
}

.footer_widget_menu a {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: capitalize;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    font-weight: 600;
}

.footer_widget_menu a:hover {
    margin-left: 5px;
}

.footer_widget_menu a i {
    padding-right: 5px;
}

.subscribtion_form {
    position: relative;
    z-index: 1;
}

.subscribtion_form .mail {
    border: none;
    border-radius: 0;
    font-size: 12px;
    height: 50px;
    padding: 5px 15px;
    width: 100%;
    background-color: #f0eded;
    color: #929191;
    font-style: italic;
}

.subscribtion_form .submit {
    background-color: #3a3a3a;
    border: none;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    height: 50px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 0;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 0 30px;
    font-weight: 700;
}

.subscribtion_form .submit:hover {
    background-color: #ff084e;
    color: #fff;
}

.copywrite_text > p {
    color: #9f9f9f;
    font-size: 14px;
    margin-top: 30px;
    display: block;
}

/* ------------------------
:: 15.0 Breadcumb Area CSS
------------------------ */

.breadcumb_area {
    padding-top: 1px;
    padding-bottom: 40px;
}

.breadcumb_area .breadcrumb {
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

.breadcumb_area .breadcrumb-item,
.breadcumb_area .breadcrumb-item > a {
    text-transform: capitalize;
    font-size: 14px;
}

.backToHome {
    font-size: 12px;
    margin-top: 25px;
}

/* ------------------------------
:: 17.0 Product Details Area CSS
------------------------------ */

.single_product_thumb {
    margin-bottom: 100px;
}

.single_product_thumb .carousel-indicators {
    bottom: -86px;
    -webkit-box-pack: left;
    -ms-flex-pack: left;
    justify-content: left;
    left: 0;
    margin: 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.single_product_thumb .carousel-indicators li {
    background-position: center center;
    background-size: cover;
    height: 80px;
    width: 25%;
}

.single_product_thumb .carousel-inner {
    border: 1px solid #ddd;
    margin: 0 3px;
    width: calc(100% - 6px);
}

.single_product_thumb .carousel-indicators li.active {
    border: 1px solid #ddd;
}

.single_product_thumb .product_badge {
    top: 30px;
}

.single_product_desc {
    position: relative;
    z-index: 1;
}

.single_product_desc .title {
    font-size: 24px;
    margin-bottom: 15px;
}

.single_product_desc .price {
    margin-bottom: 15px;
}

.single_product_desc .available {
    margin-bottom: 15px;
    font-size: 12px;
}

.single_product_desc .single_product_ratings i {
    color: #ff9800;
    font-size: 14px;
}

.single_product_desc .single_product_ratings span {
    font-size: 13px;
}

.single_product_desc .single_product_desc .price {
    font-size: 18px;
}

.single_product_desc .short_overview > h6 {
    font-size: 14px;
}

.single_product_desc .short_overview > p {
    color: #888;
    font-size: 14px;
    font-weight: 300;
}

.single_product_desc .custom-control {
    margin-right: 0;
}

.single_product_desc .widget.size .widget-desc a {
    font-size: 12px;
    padding: 0;
    width: 37px;
    height: 37px;
    border: 2px solid #3a3a3a;
    font-weight: 700;
    text-align: center;
    line-height: 33px;
}

.single_product_desc .widget.size .widget-desc a:hover,
.single_product_desc .widget.size .widget-desc a:focus {
    border: 2px solid #ff084e;
    background-color: #ff084e;
}

.single_product_desc .widget.size {
    border-bottom: none;
    padding-bottom: 0;
}

.single_product_desc .cart .qty-text {
    border: 1px solid #ddd;
    height: 40px;
    padding: 5px 15px;
    width: 140px;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
    font-size: 14px;
}

.single_product_desc .cart .quantity {
    display: inline-block;
    float: left;
    position: relative;
    z-index: 1;
}

.single_product_desc .cart .qty-minus,
.single_product_desc .cart .qty-plus {
    background-color: #fff;
    border: 1px solid #ddd;
    display: block;
    height: 20px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 30px;
    z-index: 99;
    cursor: pointer;
    font-size: 10px;
    line-height: 20px;
    color: #888;
}

.single_product_desc .cart .qty-plus {
    top: auto;
    bottom: 0;
}

.single_product_desc .cart .cart-submit {
    background-color: #ff084e;
    border: medium none;
    color: #fff;
    font-size: 14px;
    height: 40px;
    margin-left: 15px;
    text-transform: uppercase;
    width: 150px;
    cursor: pointer;
    border-radius: 0;
}


.single_product_desc .card-header {
    padding: 30px 15px;
    margin-bottom: 0;
    background-color: transparent;
    border-bottom: 2px solid #E9EBE3;
}

.single_product_desc .card-header h6 a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.single_product_desc .card-body p {
    font-size: 14px;
    color: #9f9f9f;
}

.single_product_desc .card {
    border: none;
    background-color: #E9EBE3;
}

.single_product_desc .card:first-child {
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-radius: 0;
    border-right: none;
}

.modal-backdrop.show {
    display: none !important;
}

.modal-content {
    box-shadow: 1px 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #ebebeb;
}

.flag {
    width: 50px;
}

.miniflag {
    width: 20px;
    float: right;
    margin-left: 10px; 
    margin-right: 10px;
}
.blog-thumb {
    padding-top: 40px;
    padding-bottom: 20px;
}
.blog-center {
    justify-content: center;
    align-items: center;
}
#icono {
    background-color: rgba(164, 125, 86, 0.42);
    color:#E9EBE3;
    border-radius: 0;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    right: 60px;
    text-align: center;
    width: 40px;
}
#icono:hover{
    box-shadow: 2 4px 12px 2 rgba(0, 0, 0, 0.3);
    font-size: 28px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    width: 44px;
    transition: 0.9ms;
}
.nav-link {
    font-size: 16px;
    color: #f5f5f5;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}
.nav-link:hover {
    letter-spacing: 0.3rem;
}
.nav-link-dark {
    margin-left: 16px;
    font-size: 16px;
    color: rgba(0, 10, 26, 0.58);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}
.nav-link-dark:hover {
    letter-spacing: 0.3rem;
    color:rgba(0, 10, 26, 0.88);
}
