/* Fonts START */
@font-face {
    font-family: 'Belleza';
    src:
        url('../fonts/Belleza.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Belleza.otf') format('opentype'),
        url('../fonts/Belleza.woff') format('woff'),
        url('../fonts/Belleza.woff2') format('woff2'),
        url('../fonts/Belleza.ttf') format('truetype'),
        url('../fonts/Belleza.svg#Belleza') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Mistrully';
    src:
        url('../fonts/Mistrully.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Mistrully.otf') format('opentype'),
        url('../fonts/Mistrully.woff') format('woff'),
        url('../fonts/Mistrully.woff2') format('woff2'),
        url('../fonts/Mistrully.ttf') format('truetype'),
        url('../fonts/Mistrully.svg#Mistrully') format('svg');
    font-weight: normal;
    font-style: normal;
}
/* Fonts END */

/* Global START */
:root {
    --red-color         : #910303;
    --brown-color       : #F5B160;
    --yellow-color      : #FFCF00;
    --orange-color      : #FF8A00;
    --grey-color        : #2E2E2E;
}

body {
    font-family: 'Belleza', sans-serif;
    font-size: 16px;
    margin: 0;
    color: #000000;
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Mistrully', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

img {
    width: 100%;
}

section.section {
    padding: 70px 0px;
}

.primary-btn {
    padding: 8px 20px 10px;
    color: #FFFFFF;
    background-color: #000000;
    border-radius: 5px;
    display: inline-block;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.primary-btn:hover {
    background-color: var(--orange-color);
}

.orange-btn {
    background-color: var(--orange-color);
}

.orange-btn:hover {
    background-color: #000000;
}

.section-title-holder {
    display: flex;
    justify-content: center;
}

.section-title {
    position: relative;
    margin: 0px 40px;
    display: inline-flex;
    justify-content: center;
    margin-bottom: 20px;
}

.section-title h2 {
    font-family: 'Belleza', sans-serif;
    background-color: #FFFFFF;
    padding: 0px 15px;
    position: relative;
    z-index: 1;
}

.section-title h2.title-on-grey-bg {
    background-color: #F9F9F9;
}

.section-title .title-line {
    width: calc(100% + 80px);
    height: 4px;
    background-color: var(--yellow-color);
    position: absolute;
    top: calc(50% - 2px);
    left: -40px;
    z-index: 0;
}
/* Global END */

/* Header START */
.navbar-brand img {
    max-height: 55px;
    width: auto;
}

header {
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
}

header nav .navbar-nav .nav-item a {
    font-size: 17px;
    color: #000000;
}

header nav .navbar-nav .nav-item a:hover {
    color: var(--yellow-color);
    background-color: #000000;
}

header nav .navbar-toggler {
    color: #000000;
    border-radius: 0px;
    padding: 10px 13px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

header nav .navbar-toggler, header nav .navbar-toggler:active, header nav .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

header nav .navbar-toggler:hover {
    color: #FFFFFF;
    background-color: var(--orange-color);
}

header nav .nav-cart i {
    color: #000000;
    font-size: 25px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

header nav .nav-cart:hover i {
    color: var(--red-color);
}

@media only screen and (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 0.7rem 1rem 0.78rem;
    }
}
/* Header END */

/* Footer START */
footer {
    background-color: #000000;
    padding: 25px 0px;
}

footer p {
    text-align: center;
    color: #FFFFFF;
    font-size: 14px;
}

footer a {
    color: #FFFFFF;
}

footer a:hover {
    color: var(--orange-color);
}

footer ul.footer-links {
    list-style: none;
    padding-left: 0px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0px;
    font-size: 13px;
}

footer ul.footer-links li a {
    opacity: 0.6;
}

footer ul.footer-links li a:hover {
    opacity: 1;
}

@media only screen and (min-width: 992px) {
    footer ul.footer-links {
        display: flex;
        justify-content: center;
    }

    footer ul.footer-links li {
        padding: 0px 10px 4px 0px;
        margin: 0px 10px 0px 0px;
        border-right: 1px solid rgba(255, 255, 255, 0.6);
    }

    footer ul.footer-links li:last-child {
        border-right: none;
        padding-right: 0px;
        margin-right: 0px;
    }
}
/* Footer END */

/* Main Banner START */
.main-banner {
    background-image: url('../images/main-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    text-align: center;
}

.main-banner .main-banner-content {
    position: relative;
    z-index: 1;
}

.background-overlay {
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 0;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.main-banner p.banner-p-head {
    font-size: 18px;
    margin-bottom: 25px;
}

.main-banner h1 {
    font-size: 60px;
    margin-bottom: 10px;
}

.main-banner p {
    font-size: 22px;
}

.main-banner .primary-btn {
    padding: 12px 30px;
    font-size: 18px;
}
/* Main Banner END */

/* Categories START */
.banner_thumb {
    position: relative;
    border: 1px solid #ccc;
}

.banner_thumb .banner_text {
    position: absolute;
    top: calc(50% - 45px);
    left: 50px;
}

.banner_thumb .banner_text h3 {
    margin-bottom: 20px;
}
/* Categories END */

/* What's New START */
.product-slider-holder {
    position: relative;
}

.product-slider-holder .product-slider .product-item {
    margin: 8px;
}

.product-item {
    overflow: hidden;
}

.product-item .product-thumb-holder {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.product-item .product-thumb-holder .product-tag {
    position: absolute;
    z-index: 3;
    background-color: var(--red-color);
    color: #FFFFFF;
    padding: 1px 15px 2px;
    border-radius: 20px;
    left: 15px;
    top: 15px;
}

.product-item .product-thumb-holder img.product-thumb-1 {
    position: relative;
    z-index: 0;
}

.product-item .product-thumb-holder img.product-thumb-2 {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0px;
    right: -100%;
    z-index: 1;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.product-item:hover .product-thumb-holder img.product-thumb-2 {
    right: 0px;
}

.product-item .product-btn {
    position: absolute;
    bottom: 20px;
    z-index: 3;
    left: -100%;
}

.product-item:hover .product-btn {
    left: calc(50% - 62.5px);
}

.product-item .product-details {
    padding-top: 15px;
}

.product-item .product-details .product-title {
    color: var(--grey-color);
}

.product-item .product-details .product-price {
    color: var(--red-color);
}

.product-item .product-details .product-price span {
    text-decoration: line-through;
    color: rgba(160, 160, 160, 1);
}









.latest-products-banner {
    background-image: url('../images/whats-new-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
    position: relative;
}

.latest-products-banner .latest-products-content {
    position: relative;
    z-index: 1;
}

.latest-products-banner h2 {
    font-size: 50px;
}

.latest-products-banner p {
    font-size: 22px;
}

.latest-products-banner .primary-btn {
    padding: 12px 30px;
    font-size: 18px;
}

@media only screen and (max-width: 991px) {
    .latest-products-banner {
        text-align: center;
    }

    .latest-products-banner img {
        max-width: 450px;
        margin: 0px auto 30px;
        display: block;
    }
}
/* What's New END */

/* Location Locator START */
.contacts-section {
    background-color: #F9F9F9;
}

.contact-item {
    display: flex;
    flex-wrap: wrap;
    background: var(--grey-color);
    padding: 25px;
    border-radius: 0;
    margin: 0 0 25px;
    position: relative;
    z-index: 1;
    transition: 0.4s;
    border-radius: 10px;
    transition: all 0.35s ease;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
}

.contact-item:hover {
    box-shadow: 0 5px 15px rgba(245, 177, 96, 0.5);
}

.contact-item .contact-icon {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 50%;
    text-align: center;
    background-color: var(--brown-color);
    box-shadow: 0 5px 15px rgba(245, 177, 96, 0.3);
    transition: 0.4s;
}

.contact-item .contact-icon i {
    color: #fff;
    line-height: 0.8;
    font-size: 28px;
    position: relative;
    top: 2px;
    transition: 0.34s;
}

.contact-item .contact-info {
    width: calc(100% - 85px);
    margin-left: 25px;
    transition: 0.3s;
}

.contact-item .contact-info h3 {
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 700;
    transition: 0.3s;
    font-family: 'Belleza', sans-serif;
    color: var(--brown-color);
}

.contact-item .contact-info h3 a {
    color: var(--brown-color) !important;
}

.contact-item .contact-info p, .contact-item .contact-info a {
    display: block;
    margin: 0;
    line-height: 1.5;
    color: #FFFFFF;
    transition: 0.3s;
}

.location-slider-holder {
    position: relative;
}

.location-slider-holder .location-slider .location-slide-item {
    margin: 8px;
    border: 1px solid #CCC;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 10px;
}

.slick-prev, .slick-next {
    display: none !important;
}

.slick-prev-btn, .slick-next-btn {
    border: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    padding: 0px;
    position: absolute;
    top: calc(50% - 20px);
}

.slick-prev-btn {
    left: -50px;
}

.slick-next-btn {
    right: -50px;
}

.slick-prev-btn img, .slick-next-btn img {
    width: 40px;
}

.slick-dots {
    bottom: -40px;
}

.slick-dots li button::before {
    opacity: 1;
    color: #86939E;
    font-size: 7px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--red-color);
    font-size: 10px;
}

.location-slider-holder .location-slider .location-slide-item .location-details {
    padding: 30px 10px 0px;
}

.location-slider-holder .location-slider .location-slide-item .location-details h4 {
    margin-bottom: 15px;
}

.location-slider-holder .location-slider .location-slide-item .location-details ul {
    padding-left: 0px;
    list-style: none;
}

.location-slider-holder .location-slider .location-slide-item .location-details ul li {
    position: relative;
    padding-left: 25px;
    color: var(--grey-color);
}

.location-slider-holder .location-slider .location-slide-item .location-details ul li:first-child {
    min-height: 48px;
}

.location-slider-holder .location-slider .location-slide-item .location-details ul li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--orange-color);
}

.location-slider-holder .location-slider .location-slide-item .location-details ul li a {
    color: var(--grey-color);
}

.location-slider-holder .location-slider .location-slide-item .location-details ul li a:hover {
    color: var(--orange-color);
}

@media only screen and (min-width: 768px) {
    .contact-item {
        height: 100%;
        padding: 25px 25px 3px;
    }
}

@media only screen and (max-width: 575px) {
    .product-item .product-btn {
        display: none;
    }
}
/* Location Locator END */