/* start section topbar */

.topbar {
    position: absolute;
    z-index: 9999;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #eb1c24;
    width: 100%;
}

.topbar .icons {
    display: flex;
    flex-direction: row-reverse;
}

.topbar .icons div {
    margin-left: 25px;
}

.topbar .icons div a {
    color: #FFF;
}

.topbar .icons div i {
    font-size: 18px;
}

@media(max-width:767px) {
    .topbar .icons {
        justify-content: center;
    }
}


/* end section topbar */


/* start section navbar */

.navbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar .navbar-brand {
    background-color: #FFF;
    padding: 15px;
    position: relative;
    top: -10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.navbar .navbar-brand img {
    width: 200px;
}

.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #FFF;
}

@media(max-width:767px) {
    .navbar {
        top: 35px;
    }
    .navbar .navbar-brand {
        top: 0px;
        border-radius: 10px;
    }
    .navbar .navbar-brand img {
        width: 85px;
    }
    .navbar-nav {
        background-color: rgba(255, 255, 255, 1);
        position: relative;
        z-index: 9999;
        padding: 20px;
        margin-top: 30px;
    }
    .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
        color: #000;
    }
    .navbar-light .navbar-toggler {
        color: #FFF;
        border-color: #FFF;
    }
}


/* end section navbar */


/* start section slider */

.carousel {
    position: relative;
    height: 100vh;
}

.carousel .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 3, 3, 0.7);
}

.carousel .carousel-indicators {
    margin-right: 5%;
    left: auto;
}

.carousel .carousel-indicators li {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.carousel .carousel-inner .carousel-item {
    height: 100vh;
}

.carousel .carousel-inner .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
    text-align: left;
    bottom: 40vh;
    padding-left: 20px;
    padding-right: 20px;
}


/* end section slider */


/* start section slide category */

.slidecategories {
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.slidecategories a {
    text-decoration: none;
}

.slidecategories .slidecategory div img {
    width: 123px;
    height: 92px;
}

.slidecategories .slidecategory div h3 {
    color: #FFF;
    margin-top: 15px;
}


/* end section slide category */


/* start section popular product */

.popularproduct {
    background-color: #EEE;
    padding-bottom: 50px;
    padding-top: 50px;
    text-align: center;
}

.popularproduct h2 {
    color: #3A3D45;
}

.popularproduct p {
    color: #666;
}

.popularproduct .product {
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0px 1px 6px #0000001a;
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 20px;
    height: 325px;
    position: relative;
}

.popularproduct .product a {
    text-decoration: none;
}

.popularproduct .product a h2 {
    text-align: left;
}

.popularproduct .product a p {
    text-align: left;
}

.popularproduct .product a h4 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* end section popular product */


/* start section categories */

.categories {
    display: flex;
}

.categories .category {
    width: 23%;
    height: 500px;
    background-size: cover;
    background-position: center center;
    transition: all 0.8s ease-in-out;
    position: relative;
}

.categories .category .imagebackground {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding-top: 0px;
    z-index: 1;
}

.categories .category .imagebackground img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categories .category:hover {
    width: 50%;
}

.categories .category a {
    text-decoration: none;
}

.categories .category .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.categories .category div {
    padding-top: 200px;
    position: relative;
    z-index: 2;
}

.categories .category div img {
    width: 100px;
    height: 74px;
}

.categories .category div h3 {
    margin-top: 20px;
    color: #FFF;
}

.categories .more {
    width: 8%;
    height: 500px;
    background-color: #eb1c24;
    transition: all 0.8s ease-in-out;
}

.categories .more:hover {
    width: 20%;
}

.categories .more a {
    text-decoration: none;
}

.categories .more div {
    padding-top: 200px;
    color: #FFF;
}

.categories .more div h3 {
    margin-top: 20px;
}

@media (max-width: 767.98px) {
    .categories {
        display: block;
    }
    .categories .category {
        width: 100%;
        height: 300px;
    }
    .categories .category:hover {
        width: 100%;
    }
    .categories .category a {
        text-decoration: none;
    }
    .categories .category div {
        padding-top: 100px;
    }
    .categories .more {
        width: 100%;
        height: 200px;
        background-color: #eb1c24;
    }
    .categories .more:hover {
        width: 100%;
    }
    .categories .more div {
        padding-top: 50px;
    }
}


/* end section categories */


/* start section follow */

.follow {
    padding-bottom: 50px;
    padding-top: 50px;
}

.follow .images {
    display: flex;
}

.follow .images div {
    height: 200px;
    width: 25%;
}

.follow .images div img {
    height: 200px;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.follow .images div:hover img {
    transform: scale(1, 1.1);
}

@media(max-width:767px) {
    .follow .images {
        display: inline-block;
    }
    .follow .images div {
        float: left;
        width: 50%;
    }
}


/* end section follow */


/* start section subscribe */

.subscribe {
    background-color: #EEE;
    padding-bottom: 50px;
    padding-top: 50px;
}

.subscribe div .input-wrapper {
    position: relative;
}

.subscribe div .input-wrapper button {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #eb1c24;
    border-color: #eb1c24;
}


/* end section subscribe */


/* start section footer */

.footer {
    background-color: #000;
    padding-bottom: 50px;
    padding-top: 50px;
}

.footer .info h4 {
    color: #eb1c24;
}

.footer .info p {
    color: #66665F;
}

.footer .info ul li {
    margin-right: 10px;
}

.footer .info ul li a img
{
    width: 50px;
}

.footer .direction h4 {
    color: #eb1c24;
}

.footer .direction #map {
    width: 100%;
    height: 200px;
    background-color: grey;
}


/* end section footer */


/* start section copyright */

.copyright {
    background-color: #000;
    color: #66665F;
    padding-bottom: 20px;
}


/* end section copyright */


/*# sourceMappingURL=style.css.map */
