
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;500;600;700&display=swap');

:root {
    --color-primary: #ce2d35;
    --color-secondary: #c4a400;
    --color-orange: #ff6b01;
    --color-green: #00891d;
    --color-dark: #253D4E;
    --color-white: #FFFFFF;
    --gray:#F8F7F1;

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --font-tertiary: 'Quicksand', sans-serif;
    --heading-font: Playfair Display;

    --heading-color:#eb6d2f;
    --subheading-color:#5a3733;


}

* {
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--color-dark);
  font-family: var(--font-primary);
  font-size: 1rem;
}

p{
    /* font-family: var(--heading-font); */
    font-style: normal;
    font-weight: normal;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

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

.sweet_section,
.food_section,
.best-selling_section,
.special_section,
.offer,
.collection,
.meet_section,
.testimonial_section,
.subscribe,
.footer {
    padding: 70px 0 40px;
}

#product-dtl-info
{
    /* padding: 70px 0 40px; */
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    /* top: 10px; */
    top:0;
    height: 80px;
    z-index: 997;
    transition: all 0.5s;
    padding: 10px 0;
    background: rgba(26, 24, 22, 0.85);
}

#header.header-transparent {
    background:#fff;
    
}

#header.header-scrolled {
    top: 0;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(240, 114, 51, 0.3);
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 80px;
}

#header.header-scrolled .logo img {
    max-height: 60px;
}

/*--------------------------------------------------------------
  # Book a table button Menu
  --------------------------------------------------------------*/
.book-a-table-btn {
    background: transparent;
    color: var(--color-primary);
    border-radius: 10px;
    margin: 0 0 0 20px;
    padding: 8px 10px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
    white-space: nowrap;
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

.search:hover {
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
}


.btn-login {
    color: var(--color-dark);
    font-size: 14px;
    text-decoration: none;
}



@media (max-width: 992px) {
    .book-a-table-btn {
        margin: 0 15px 0 0;
        padding: 8px 20px;
        letter-spacing: 1px;
    }
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/**
  * Desktop Navigation 
  */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 24px;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-dark);
    /* text-transform: uppercase; */
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--color-orange);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    color: #433f39;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #ffb03b;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
    color: var(--color-dark);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.navbar-mobile .mobile-nav-toggle {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(39, 37, 34, 0.9);
    transition: 0.3s;
    z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 8px;
    background-color: #db1e22;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #fff;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--color-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #ffb03b;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 100vh;
    background-color: rgba(39, 37, 34, 0.8);
    overflow: hidden;
    padding: 0;
}

#hero .carousel-item {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* #hero .carousel-item::before {
    content: "";
    background-color: rgba(12, 11, 10, 0.5);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
} */

#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .carousel-content {
    /* text-align: center; */

    width: 45%;

}

#hero h2 {
    font-family: Futura;
    font-style: normal;
    font-weight: 800;
    line-height: 45px;
    font-size: 45px;
    text-transform: uppercase;
    padding-top: 20px;
    color: #FFFFFF;

}

#hero .carousel-content__tag {
    font-family: Futura;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    color: #721d1a;
    margin-right: 10px;
}


#hero p {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
    margin: 0 auto 30px auto;
    color: #FFFFFF;
    margin-top: 20px;
}

/* #hero .carousel-content__form input {
    border: 1px solid var(--color-green);
    padding-top: 20px;
    padding-bottom: 20px;

    font-size: 14px;
    border-radius: 20px;
} */

/* #hero .carousel-content__form input:focus {
    box-shadow: none;
    border-color: var(--color-primary);
} */

#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    font-size: 30px;
    line-height: 0;
    width: auto;
    height: auto;
    background: var(--color-primary);
    border-radius: 50px;
    transition: 0.3s;
    color: #ffe45c;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    /* background: rgba(255, 255, 255, 0.3); */
    color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
    cursor: pointer;
}

#hero .btn-menu,
#hero .btn-book {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.5s;
    line-height: 1;
    margin: 0 10px;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    color: #fff;
    border: 2px solid #ffb03b;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
    background: #ffb03b;
    color: #fff;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 28px;
    }
}

@media (min-width: 1024px) {
    #hero p {
        /* width: 50%; */
    }

    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}




.search__container {
    padding-top: 30px;
    width: 60%;
}

.search__title {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    color: #ff8b88;
}

.search__input {
    width: 100%;
    padding: 12px 24px;

    background-color: transparent;
    transition: transform 250ms ease-in-out;
    font-size: 14px;
    line-height: 18px;

    color: #575756;
    background-color: transparent;
    /*         background-image: url(http://mihaeltomic.com/codepen/input-search/ic_search_black_24px.svg); */

    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 95% center;
    border-radius: 50px;
    border: 1px solid #575756;
    transition: all 250ms ease-in-out;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
}

.search__input::placeholder {
    color: rgba(87, 87, 86, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.search__input:hover,
.search__input:focus {
    padding: 12px 0;
    outline: 0;
    border: 1px solid transparent;
    border-bottom: 1px solid #575756;
    border-radius: 0;
    background-position: 100% center;
}








/* Services */
.service_section {
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    /* padding: 50px 0; */
   
}

.service_section .col-md {
    padding: 15px 0;
}

.service_section .col-md {
    /* border-right: 1px solid var(--color-green); */
    border: 2px solid #e5e5e5;
}

.service_section p {
    margin-bottom: 0;
}

.services_thumb {
    width: 45px;
    height: 45px;
    /* border: 1px solid var(--color-green); */
    margin: 0 auto;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 7px;
}



.services_content h4 {
    /* font-family: var(--font-secondary); */
    margin: 12px 0;
    color: #404040;
    font-family: Futura Medium;
    font-size: 20px;
    letter-spacing: -.01em;
}

.services_content p {
    color: grey;
    font-size: 14px;
}

.title {
    text-align: center;
    margin-bottom: 40px;
}

.title h2 {

    font-size: 36px;
    color: var(--subheading-color);
 
    font-family: var(--heading-font);
    font-weight: 700;
   
}

.title h3{
    font-size: 18px;
    color: var(--heading-color);
    /* font-family: var(--font-secondary); */
    font-family: var(--heading-font);
    font-weight: 500;
}

.title p {
    font-size: 18px;
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* Sweet section */

.sweet_card {
    text-align: center;
    border: 0;
 }

 .sweet_card a {
    font-weight: 600;
    font-size: 18px;
    color: #253d4e;
}

.sweet_card a:hover{
    text-decoration: none!important;
    color: #eb6d2f;
}

.sweet_card .card-image {
  
    width: 100%;
    height: 200px;
    max-width: 100%;
    /* border:1px solid rgba(0, 0, 0, .1); */
    overflow: hidden;
    /* border-radius: 50%; */
    padding: 10px;
  

    display: flex;
    align-items: center;
    justify-content: center;
}

.sweet_card h5 {
    margin: 12px 0;
    color: #404040;
    font-family: Futura Medium;
    font-size: 20px;
    letter-spacing: -.01em;
}



.sweet_card .card-image img{
    border-radius: 10%;
}

/* Food */
.food_card .card-image {
    /* border: 1px solid var(--color-green); */
    width: 100%;
    height: 200px;
    /* border-radius: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* box-shadow: 0 1px 3px rgba(0, 11, 10, 0.3); */
}

.food_card {
    text-align: center;
}

.food_card h5 {
    margin: 12px 0;
    color: #404040;
    font-family: Futura Medium;
    font-size: 20px;
    letter-spacing: -.01em;
}

.food-carousel {
    position: relative;
}

.food-carousel .owl-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);

    width: 100%;
    display: flex;
    justify-content: space-between;
}

#food .food-carousel .owl-nav button {
    background-color: #fa5102 !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;

    width: 40px;
    height: 40px;
    color: #e04245;
}

.food-carousel .owl-nav i {
    font-size: 24px;
    color: #fff;
}

.food-carousel .owl-nav [class*=owl-]:hover {
    background-color: transparent;
}

.food-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -60px;
}

.food-carousel .owl-nav .owl-next {
    position: absolute;
    right: -60px;
}


/* Special Veg Foods */
.special-carousel {
    position: relative;
}

.special-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);

    width: 100%;
    display: flex;
    justify-content: space-between;
}

#special .special-carousel .owl-nav button {
    background-color: #ffe45c !important;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;

    width: 40px;
    height: 40px;
    color: #e04245;
}

.special-carousel .owl-nav i {
    font-size: 24px;
}

.special-carousel .owl-nav [class*=owl-]:hover {
    background-color: transparent;
}

.special-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -60px;
}

.special-carousel .owl-nav .owl-next {
    position: absolute;
    right: -60px;
}

/* Download App */
.download-app {
    background-color: #fff5c2;
    padding: 50px 0 20px;

}

.download-app-btn img {
    height: 55px;
    margin-right: 10px;
}

.download-app-title {
    font-family: Playfair Display;
    font-style: normal;
    font-weight: bold;
    line-height: 85px;
    line-height: 60px;
    line-height: 45px;
    /* font-size: 75px; */
    color: var(--color-primary);
}
.download-app-titl p{
    line-height: 35px;
    letter-spacing: -0.01em;
    font-size: 18px;
    color: #721d1a;
}

/* Offer */
.offer-card {
    text-align: center;
}

.offer-card-title {
    /* font-size: 22px; */
    font-family: Playfair Display;
    font-style: normal;
    font-weight: bold;
    line-height: 35px;
    color: #404040;
}
.offer-card p {
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -.01em;
    color: #404040;
}

/* Collection */
.collection-card {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #ddd;

    position: relative;
}

.collection-info {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 10px 20px;

    position: absolute;
    bottom: 10px;
    left: 10px;
}


.collection-heading {
    color: var(--color-primary);
    font-size: 20px;
    letter-spacing: -.01em;
    font-family: Futura;
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 0;
}

.collection-name {
    font-family: Playfair Display;
    font-style: normal;
    font-weight: bold;
    /* font-size: 45px; */
    text-align: center;
    text-transform: capitalize;
    color: #db1e22;
    margin: 5px 0;
}

.collection-price {
    color: #ff6b01;
    font-weight: 600;
}

.btn-view-all {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 10px 30px;
    border-radius: 10px;

    transition: all .5s ease-out;
}

.btn-view-all:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Testimonial */
.testimonial-card {
    padding: 50px;
}

.testimonial-card-name {
    font-size: 24px;
    color: #fa9190;
    font-weight: 600;
    margin-top: 25px;
}

.testimonial-card-description {
    position: relative;
}

.testimonial-card-description::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 0;
    left: -40px;
    color: #fff;
    font-size: 16px;
    width: 30px;
    height: 30px;
    font-weight: 700;
    background-color: #fa9190;

    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card-description::after {
    content: "\f10e";
    font-family: "Font Awesome 5 Free";

    position: absolute;
    bottom: 0;
    right: -10px;
    color: #fff;
    font-size: 16px;
    width: 30px;
    height: 30px;
    font-weight: 700;
    background-color: #fa9190;

    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-wrapper {
    position: relative;
}

.circle-bg {
    background-color: #cf2d33;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    z-index: 1;

    position: absolute;
}

.circle-border {
    width: 230px;
    height: 230px;
    background-color: var(--color-white);
    border: 20px solid #ffdf3e;
    border-radius: 50%;
    z-index: 2;

    position: absolute;
    left: 50px;
}


.testimonial-carousel {
    position: relative;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);

    width: 100%;
    display: flex;
    justify-content: space-between;
}

#testimonial .testimonial-carousel .owl-nav button {
    /* background-color: #ffe45c !important; */
    border: 1px solid #23a43e;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;

    width: 40px;
    height: 40px;
    color: #23a43e;
}

.testimonial-carousel .owl-nav i {
    font-size: 20px;
}

.testimonial-carousel .owl-nav [class*=owl-]:hover {
    background-color: transparent;
}

.testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    left: -20px;
}

.testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    right: -20px;
}

/* Meet Us */
.meet_list {
    margin-top: 30px;
}

.meet_list li {
    margin-bottom: 15px;
}

.meet_list li svg {
    margin-right: 10px;
    color: var(--color-orange);
}

.meet_list li a {
    color: var(--color-dark);
    font-size: 20px;
}

.meet_list li i {
    font-size: 22px;
    margin-right: 5px;
    color: var(--color-primary);
}

/* Subscribe */
.subscribe-card {
    text-align: center;
}

.subscribe-card h5 {
    font-size: 20px;
    font-weight: 600;
}

.subscribe-card p {
    font-size: 14px;
}

.btn-subscribe {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn-subscribe:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.subscribe-card .card-body {
    padding: 10px 0;
}


.subscribe-form-wrapper p {
    font-size: 14px;
    margin-bottom: 5px;
}

.subscribe-form-wrapper input {
    border-color: var(--color-orange);
}

.subscribe-form-wrapper input:focus {
    border-color: var(--color-orange);
    box-shadow: none;
}

/* Footer */
.footer {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.footer-about-title {
    font-weight: 600;
    font-size: 18px;
}

.footer-about p {
    font-size: 14px;
}

.footer-about-more {
    color: var(--color-white);
    font-size: 14px;
}

.footer-about-more:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.single-footer-wrapper:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.single-footer-wrapper {
    display: flex;
    justify-content: center;
}

.single-footer .footer-title {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-list li {
    margin-bottom: 5px;
    list-style: initial;
    margin-left: 15px;
}

.footer-list-link {
    color: var(--color-white);
    font-size: 14px;
}

.footer-middle {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px 0;
    margin: 30px 0 20px;
}

.footer-middle-media {
    display: flex;
}

.footer-middle-media li {
    background-color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-middle-media li:not(:last-child) {
    margin-right: 20px;
}

.footer-middle-media li i {
    color: var(--color-orange);
}

.footer-middle-media li:hover {
    background-color: var(--color-orange);
}

.footer-middle-media li:hover i {
    color: var(--color-white);
}

.footer-bottom-copyright {
    font-size: 14px;
}

.footer-bottom-copyright a {
    color: var(--color-white);
    font-weight: 600;
}

.footer-bottom-list {
    display: flex;
    justify-content: end;
}

.footer-bottom-list li:not(:last-child) {
    margin-right: 15px;
}

.footer-bottom-list li a {
    color: var(--color-white);
    font-size: 14px;
}

#sticky-social {
    position: fixed;
    z-index: 99999;
    right: 0;
    bottom: 25%;
}

#sticky-social ul li:not(:last-child) {
    margin-bottom: 10px;
}

#sticky-social a {
    font-size: 18px;
    line-height: 40px;
    position: relative;
    display: block; 
    width: 40px;
    height: 40px;
    text-align: center;
    color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 11, 10, 0.1);

    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;

    transition: all .5s;
}

#sticky-social a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* ========================================================== */
/* Inner pages */

.inner-page header {
    box-shadow: 0px 2px 10px rgba(240, 114, 51, 0.3);
    top: 0 !important;
}

.inner-page #header .logo img {
    max-height: 60px;
}

.inner-page main.content {
    margin-top: 100px;
}

.sort-by {
    margin: 20px 0;
    text-align: right;
    font-size: 14px;
}

.sort-by select {
    border: 1px solid  #f4f1f1;
    padding: 10px 20px 10px 10px;
    background-color: #f8f8f8;
    font-size: 14px;
}

.sort-by label {
    margin-right: 10px;
}

.product-filter-single {
    /* margin-bottom: 20px;
    padding: 0 15px;
    border-bottom:  1px solid #e5e5e5; */
}

.product-filter-single .category-title {
    text-transform: uppercase;
    font-size: 16px;
    color: #8d2a1b;
    margin-bottom: 15px;
}
.product-filter-single .category-name{
    font-size: 14px;
}

.product-filter-single .category-link {
    display: flex;
    justify-content: space-between;

    font-size: 15px;
    color: var(--color-dark);
}

.product-filter-single li {
    margin-bottom: 10px;
}

.bg-red-light {
    background-color: #ffdbc4;
    padding: 10px;
}

.filter-title {
    text-transform: normal;
    font-size: 20px;
    color: #8d2a1b;
}

.product-filter-single li label {
    margin-bottom: 0;
}

.product-inner-card {
    border: 0;
    box-shadow: 0 1px 10px rgba(0, 11, 10, 0.1);

    transition: all .5s ease;
}

.product-inner-card:hover {
    border-top: 4px solid var(--color-orange);
    box-shadow: 0 1px 10px rgba(240, 113, 51, 0.5);

    transform: translateY(-10px);
}

.product-inner-card a {
    color: var(--color-dark);
}

.product-inner-action {
    display: flex;
    justify-content: center;

    margin-bottom: 20px;
}

.product-inner-action a {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 10px rgba(0, 11, 10, 0.1);
    color: var(--color-dark);
}

.product-inner-action a:hover {
    color: var(--color-orange);
}

.product-inner-action a:not(:last-child) {
    margin-right: 10px;
}

.product-inner-action a i {
    font-size: 20px;
}

.product-inner-card h5 {
    font-weight: 400;
}

.product-inner-card .price {
    margin-bottom: 20px;
}

.product-inner-card .actual-price {
    text-decoration: line-through;
    margin-right: 10px;
}

.product-inner-card .discounted-price {
    font-weight: 600;
    color: var(--color-orange);
}

.product-inner-card .rating i {
    color: var(--color-orange);
}

.pagination-wrapper {
    display: flex;
    align-items: center;
}
@media only screen and (max-width:991px){
    .pagination-wrapper{
        overflow: hidden;
        overflow-x: scroll;
    }
}
.pagination-label {
    margin-right: 10px;
}

.pagination-wrapper .page-link {
    border: 0;
    color: var(--color-dark);
}

/* Product Details */

.product-detail-wrapper {
    padding-top: 30px;
}

.pr-30 {
    padding-right: 30px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.title-detail {
    font-family: Playfair Display;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    text-transform: capitalize;
    color: #212529;
}

.product-detail-rating {
    margin: 20px 0;
}

.product-rate-cover {
    display: flex;
}

.product-rate {
    border-right: 1px solid #ccc;
    padding-right: 20px;
    margin-right: 20px;
}

.product-write-review {
    font-size: 18px;
}

.product-write-review a {
    color: var(--color-orange);
}

.tab-wrapper .nav-pills .nav-link {
    color: var(--color-orange);
    background-color: transparent;
    text-transform: uppercase;
    border-radius: 0;
    padding: 3px 15px;
}

.tab-wrapper .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.tab-wrapper {
    font-size: 15px;
    margin-bottom: 20px;
}

.tab-wrapper .product-detail-list {
    margin-left: 30px;
}

.tab-wrapper .product-detail-list li {
    list-style-type: square;
    margin-bottom: 10px;
}

.product-detail-price {
    font-size: 34px;
    font-weight: 600;
    color: var(--color-orange);
}

.product-info {
    margin-top: 20px;
    margin-bottom: 15px;
}

.product-form-input {
    display: flex;
    align-items: center;
}

.quantity {
    border: 1px solid #e9e9e9;
    position: relative;
    width: 140px;
    display: flex;
    border-radius: 4px;
    margin-left: 20px;
}

.quantity__button {
    width: 45px;
    flex-shrink: 0;
    font-size: 26px;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
}

.quantity__input {
    color: currentColor;
    font-size: 14px;
    font-weight: 500;
    opacity: .85;
    text-align: center;
    background-color: transparent;
    border: 0;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    padding: 0 0.5rem;
    height: 45px;
    width: 100%;
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.product-form-action {
    margin: 20px 0;
}

.btn-outline-main {
    border: 3px solid var(--color-orange);
    color: var(--color-orange);
    padding: 5px 15px;
    border-radius: 0;
    font-weight: 500;

    transition: all .5s ease;
}

.btn-outline-main:hover {
    color: var(--color-white);
    background-color: var(--color-orange);
}

.btn-main {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 0;
    font-weight: 500;
    border: 3px solid var(--color-orange);

    transition: all .5s ease;
}

.btn-main:hover {
    color: var(--color-orange);
    background-color: transparent;
}

.product-form-action .btn-outline-main {
    margin-right: 10px;
}

.product-form-share {
    display: flex;
    align-items: center;
}

.product-form-share span {
    font-size: 18px;
}

.product-form-share ul {
    display: flex;
    margin-left: 10px;
}

.product-form-share ul li {
    margin-left: 15px;
}

.product-form-share ul li a {
    color: var(--color-orange);
    font-size: 22px;
}

.other-products {
    margin: 50px 0;
}

.product-wp-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-wp-title .line {
    height: 1px;
    background: var(--color-orange);
    flex-grow: 1;
    margin: 0 1rem;
}

.product-wp-title h5 {
    color: var(--color-orange);
    font-weight: 500;
}

.btn-see-all {
    background-color: var(--color-orange);
    border-radius: 0;
    color: var(--color-white);
    box-shadow: 0 .1rem 1.5rem rgb(0 0 0 / 15%);
    padding: 3px 10px;
    font-weight: 500;
}

.btn-see-all:hover {
    color: var(--color-white);
}

/* Swiper Button */

.other-product-swiper .swiper-wrapper {
    padding: 40px 0 20px;
}

.other-product-swiper .swiper-button-prev,
.other-product-swiper .swiper-button-next {
    background: var(--color-white);
    width: 45px;
    height: 45px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid var(--color-white);
    border-radius: 55px;
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgba(0, 11, 10, 0.1);
}

/* @media (max-width: 767px) {

    .other-product-swiper .swiper-button-prev,
    .other-product-swiper .swiper-button-next {
        display: none;
    }
} */

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--color-orange);
    font-size: 22px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 0;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 0;
}

/* Product Card */
.product-card {
    position: relative;
    border: 1px solid #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
}

.product-card :hover {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    cursor: pointer
}


.product-card-img-wrapper {
    overflow: hidden;
    width: 100%;
}

.product-card-img-wrapper img {
    z-index: 99;
}

.product-card-info {
    /* position: absolute; */
    /* bottom: 0; */
    width: 100%;

    /* box-shadow: 0px 5px 15px rgba(0, 11, 10, 0.3), 0px -5px 5px rgba(0, 11, 10, 0.3); */
    padding: 55px 25px 25px;

    /* background-image: url(../img/product-info.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;

    z-index: 100;
}

.product-info-wrapper {
    position: relative;

}

.product-card-cart {
    position: absolute;
    right: 0;
    top: 50%;
}

.rating {
    color: #db1e22;
    font-size: 16px;
}

.rating i {
    font-size: 12px;
}

.product-card-title {
    margin: 5px 0 8px;
}

.product-card-price {
    font-size: 22px;
    font-weight: 600;
    color: #00891d;
}

.product-card-cart {
    background-color: #db1e22;
    box-shadow: 0 5px 10px rgba(0, 11, 10, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .5s;
}

.product-card-cart:hover {
    background-color: #ffdf3e;
}

.product-card-cart:hover i {
    color: #db1e22;
}

.product-card-cart i {
    color: #ffdf3e;
    font-size: 20px;
}


/* Responsive */
@media screen and (max-width:1024px) {

    .food-carousel .owl-nav,
    .special-carousel .owl-nav {
        position: relative;
        display: block;
        margin-top: 10px;

        text-align: center;
    }

    .special-carousel .owl-nav {
        margin-top: 30px;
    }

    .food-carousel .owl-nav .owl-prev,
    .food-carousel .owl-nav .owl-next,
    .special-carousel .owl-nav .owl-prev,
    .special-carousel .owl-nav .owl-next {
        position: relative;
        left: 0;
        right: 0;
    }

    .food-carousel .owl-nav .owl-prev,
    .special-carousel .owl-nav .owl-prev {
        margin-right: 15px;
    }

    .sweet_card .card-image {
        height: 150px;
    }

    .single-footer-wrapper {
        justify-content: flex-start;
    }

    .sweet_section,
    .food_section,
    .best-selling_section,
    .special_section,
    .offer,
    .collection,
    .meet_section,
    .testimonial_section,
    .subscribe,
    .footer {
        padding: 40px 0 10px;
    }

    .inner-page main.content {
        margin-top: 70px;
    }
}

.food_section{
    /* background-color: #ffe07f; */
}

@media screen and (max-width:576px) {

    #hero .carousel-control-next-icon,
    #hero .carousel-control-prev-icon {
        font-size: 14px;
        line-height: 0;
        width: auto;
        height: auto;
        background: var(--color-primary);
        border-radius: 50px;
        transition: 0.3s;
        color: #ffe45c;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #hero .carousel-content {
        width: 75%;
    }

    .product-card-cart {
        position: relative;
    }

    .collection-info {
        position: relative;
        padding: 10px;
    }

    .circle-wrapper {
        display: none;
    }

    /* .service_section .col-md {
        padding: 20px 0;
    } */

    .service_section .col-md:not(:last-child) {
        border-right: 0;
    }

    .services_content h4 {
        font-size: 14px;
    }

    .services_content p {
        font-size: 12px;
        padding: 5px;
    }

    .service_section .col-md {
        padding: 15px 0;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-carousel .owl-nav .owl-next {
        position: relative;
        right: 0;
    }

    .testimonial-carousel .owl-nav .owl-prev {
        position: relative;
        left: 0;
    }

    .sweet_card h5 {
        font-size: 14px;
    }

    .sweet_card .card-image {
        height: 120px;
    }

    .offer-card-title {
        font-size: 16px;
    }

    .offer-card p {
        font-size: 12px;
    }

    .pl-30 {
        padding-left: 0 !important;
    }

    .pr-30 {
        padding-right: 0 !important;
    }

    .detail-info {
        margin-top: 20px;
    }


}

/* ====================== product================== */

.product-grid{

    text-align: center;
    margin-bottom: 20px;
    display: block;
    border:1px solid #eee;
    box-shadow: 0 1px 5px 0 rgb(69 90 100 / 8%);
    border-radius: 10px;
}
.product-grid .product-image{ position: relative; }
.product-grid .product-image a.image{ display: block; }
.product-grid .product-image img{
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 6px;
}

.product-grid .product-image{
    overflow: hidden;
}
.product-image .pic-1{
    opacity: 1;
    backface-visibility: hidden;
    transition: all 0.3s ease-in-out;
}
/* .product-grid:hover .product-image .pic-1{ opacity: 0; } */
.product-image .pic-2{
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
}
.product-grid:hover .product-image .pic-2{ opacity: 1; }
.product-grid .product-sale-label,
.product-grid .product-discount-label{
    color: #fff;
    background: #da5555;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 14px;
    padding: 5px 11px;
    border-radius: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all 0.4s ease;
}
.product-grid .product-sale-label{
    background: #2ba968;
    text-transform: uppercase;
    left: 10px;
    right: auto;
}
.product-grid .product-content{ padding: 12px; }
.product-grid .rating{
    padding: 0;
    margin: 0 0 7px;
    list-style: none;
}
.product-grid .rating li{
    color: var(--text-color);
    font-size: 12px;
    display: inline-block;
}
.product-grid .rating li.disable{ color: rgba(0,0,0,.20); }
.product-grid .title{
    color: var(--text-color);
    font-size: 16px;
    text-transform: capitalize;
    margin: 0 0 7px;
    letter-spacing: -.01em;
}
.product-grid a:hover{text-decoration: none;}

.product-grid .title a{
    color:#253d4e;
    transition: all 500ms;
}

.title::first-letter{
    text-transform: capitalize;
}
.product-grid .title a:hover{ color: #db1e22; }
.product-grid .price{
    color:#253d4e;
    font-size: 14px;
    letter-spacing: 0.005em;
    margin-bottom: 10px;
    text-decoration: none;
}
.product-grid .price span{
    color: #a7a7a7;
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
}
.product-grid .product-button-group{
    position: relative;
    z-index: 1;
}
.product-grid .add-to-cart{
    color:#fff;
    background: #ce2d34;
    font-size: 10px;
    /* width: calc(100% - 75px); */
    padding: 8px 7px;
    /* margin: 0 auto; */
    display: inline-block;
    transition: all 0.25s ease 0s;
}
.product-grid .add-to-cart i{
    /* margin-right: 8px; */
    display: inline-block;
    visibility: visible;
    transition: all 0.25s ease 0s;
}
.product-grid:hover .add-to-cart{
    color:#fff;
    background: #e45543;
}
/* .product-grid:hover .add-to-cart i{
    display: inline-block;
    visibility: visible;
} */
.product-grid .product-like-icon{
    line-height: 34px;
    font-size: 21px;
}
/* .product-grid .product-compare-icon{
    left: auto;
    right: 50px;
} */
/* .product-grid:hover .product-like-icon{
    opacity: 1;
    left: 0;
}
.product-grid:hover .product-compare-icon{
    opacity: 1;
    right: 0;
} */
@media only screen and (max-width:990px){
    .product-grid{ margin-bottom: 30px; }
}


/* ============ add to cart page ================ */




#card {
    margin: auto;
    max-width: 950px;
    width: 90%;
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 1rem;
    border: transparent
}

@media(max-width:767px) {
    #card {
        margin: 3vh auto
    }
}

#card > .cart {
    background-color: #fff;
    padding: 4vh 5vh;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem
}

@media(max-width:767px) {
    #card > .cart {
        padding: 4vh;
        border-bottom-left-radius: unset;
        border-top-right-radius: 1rem
    }
}

#card .summary {
    background-color: #f17033;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 4vh;
    color: #fff;
}

@media(max-width:767px) {
    #card .summary {
        border-top-right-radius: unset;
        border-bottom-left-radius: 1rem
    }
}

#card > .summary .col-2 {
    padding: 0
}

#card .summary .col-10 {
    padding: 0
}

#card .row {
    margin: 0
}

#card .title b {
    font-size: 1.5rem;
    padding-top:20px;
    display: block;
}

#card .main {
    margin: 0;
    padding: 2vh 0;
    width: 100%
}

#card .col-2,
#card .col {
    padding: 0 1vh
}

#card a {
    padding: 0 1vh
}

#card .close {
    margin-left: auto;
    font-size: 0.7rem
}

#card img {
    width: 3.5rem
}

#card .back-to-shop {
    margin-top: 4.5rem
}

#card h5 {
    margin-top: 4vh
}

.cart hr {
    margin-top: 1.25rem
}

#card form {
    padding: 2vh 0
}

#card select {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1.5vh 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247)
}

#card input {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247)
}

#card input:focus::-webkit-input-placeholder {
    color: transparent
}

#card .btn {
    background-color: #000;
    border-color: #000;
    color: white;
    width: 100%;
    font-size: 0.7rem;
    margin-top: 4vh;
    padding: 1vh;
    border-radius: 0
}

#card .btn:focus {
    box-shadow: none;
    outline: none;
    box-shadow: none;
    color: white;
    -webkit-box-shadow: none;
    -webkit-user-select: none;
    transition: none
}

#card .btn:hover {
    color: white
}

#card a {
    color: black
}

#card a:hover {
    color: black;
    text-decoration: none
}

#code {
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0.253), rgba(255, 255, 255, 0.185)), url("https://img.icons8.com/small/16/000000/long-arrow-right.png");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center
}


/* ===== login form ====================== */

.form-container{
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0;
    box-shadow: 0 0 25px -15px rgba(0,0,0,0.3);
}
.form-container .left-content{
    background-color: #f8e3a7;
    font-family: 'Oswald', sans-serif;
    width: 40%;
    padding: 66px 50px;
    display: inline-block;
    vertical-align: top;

}
.form-container .left-content .title{
    color: #eb6d2f;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 55px;
}

.form-container .left-content label{
    color:#000;
}
.form-container .left-content .sub-title{
    color: #fff;
    font-size: 60px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
}
.form-container .right-content{
    text-align: center;
    width: 60%;
    padding: 30px 50px;
    display: inline-block;
}
.form-container .right-content .form-title{
    color: #888;
    /* font-family: 'Oswald', sans-serif; */
    font-size: 40px;
    font-weight: 400;
    text-align: left;
    text-transform: uppercase;
    padding: 0 0 2px;
    margin: 0 0 30px;
    border-bottom: 2px solid #eb6d2f;
}
.form-container .right-content .form-horizontal, .form-container .left-content .form-horizontal {
    color: #999;
    font-size: 14px;
    text-align: left;
    margin: 0 0 15px;
    display: block;
    padding-bottom: 10px;
}
.form-container .form-horizontal .form-group{ margin: 0 0 20px; }
.form-container .form-horizontal .form-group:nth-of-type(2){ margin-bottom: 35px; }
.form-container .form-horizontal .form-group label{ font-weight: 500; }
.form-container .form-horizontal .form-control{
    color: #888;
    background: #f9f9f9;
    font-weight: 400;
    letter-spacing: 1px;
    height: 40px;
    padding: 6px 12px;
    border-radius: 5px;
    border: none;
    box-shadow: none;
}
.form-container .form-horizontal .form-control:focus{ box-shadow: 0 0 5px #FF97A8; }
.form-container .form-horizontal .signin{
    color: #fff;
    background: #eb6d2f;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    width: 100%;
    padding: 9px 11px;
    margin: 0 0 20px;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
}
.form-container .form-horizontal .btn:hover,
.form-container .form-horizontal .btn:focus{
    box-shadow: 0 0 10px #eb6d2f;
    outline: none;
}
.form-container .form-horizontal .remember-me{
    width: calc(100% - 105px);
    display: inline-block;
}
.form-container .form-horizontal .remember-me .check-label{
    color: #999;
    font-size: 12px;
    font-weight: 400;
    vertical-align: top;
    display: inline-block;
}
.form-container .form-horizontal .remember-me .checkbox{
    height: 17px;
    width: 17px;
    min-height: auto;
    margin: 0 1px 0 0;
    border: 2px solid #eb6d2f;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease 0s;
}
.form-container .form-horizontal .remember-me .checkbox:before{
    content: '';
    height: 5px;
    width: 10px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    left: 2px;
    top: 2.5px;
    transition: all 0.3s ease;
}
.form-container .form-horizontal .remember-me .checkbox:checked{ background-color: #eb6d2f; }
.form-container .form-horizontal .remember-me .checkbox:checked:before{ opacity: 1; }
.form-container .form-horizontal .remember-me .checkbox:not(:checked):before{ opacity: 0; }
.form-container .form-horizontal .remember-me .checkbox:focus{ outline: none; }
.form-container .form-horizontal .forgot{
    color: #999;
    font-size: 12px;
    text-align: right;
    width: 100px;
    vertical-align: top;
    display: inline-block;
    transition: all 0.3s ease 0s;
}
.form-container .form-horizontal .forgot:hover{ text-decoration: underline; }
.form-container .right-content .separator{
    color: #999;
    font-size: 15px;
    text-align: center;
    margin: 0 0 15px;
    display: block;
}
.form-container .right-content .social-links{
    text-align: center;
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
}
.form-container .right-content .social-links li{
    margin: 0 2px 5px;
    display: inline-block;
}
.form-container .right-content .social-links li a{
    color: #fff;
    background-color: #eb6d2f;
    font-size: 12px;
    padding: 9px 12px;
    border-radius: 5px;
    display: block;
    transition: all 0.3s ease 0s;
}
.form-container .right-content .social-links li:nth-child(2) a{ background-color: #3B5897; }
.form-container .right-content .social-links li a i{ margin-right: 10px; }
.form-container .right-content .social-links li a:hover{ box-shadow: 0 0 5px rgba(0,0,0,0.5); }
.form-container .right-content .signup-link{
    color: #999;
    font-size: 13px;
}
.form-container .right-content .signup-link a{
    color: #eb6d2f;
    transition: all 0.3s ease 0s;
}
.form-container .right-content .signup-link a:hover{ text-decoration: underline; }
@media only screen and (max-width:767px){
    .form-container .left-content,
    .form-container .right-content{
        width: 100%;
        padding: 30px;
    }
    .form-container .left-content .title{ margin: 0 0 20px; }
    .form-container .left-content .sub-title{ font-size: 40px; }
}

#unitselect select{
    border: 0;
    background-color: #f3f3f3;
    padding: 10px;
    width:50%;
}

.spinner .btn-primary{
    background-color: #000;
    border-color: #575756;
}

.spinner label, #unitselect label{
    display: inline-flex;
   
    margin-right: 10px;
}

.spinner label{
    padding-top: 5px;
}




@media (max-width: 767px) {
    .spinner label, #unitselect label{
        display: block;
        width: 100%;
    }

    .product-grid .add-to-cart{
        width: 100%;
        font-size: 9px;
    }

}


/* ================ Rating =================*/

.rating-box {
    width: 130px;
    height: 130px;
    margin-right: auto;
    margin-left: auto;
    background-color: #FBC02D;
    color: #fff
}

.rating-label {
    font-weight: bold
}

.rating-bar {
    width: 300px;
    padding: 8px;
    border-radius: 5px
}

.bar-container {
    width: 100%;
    background-color: #f1f1f1;
    text-align: center;
    color: white;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 5px
}

.bar-5 {
    height: 13px;
    background-color: #FBC02D;
    border-radius: 20px
}

.bar-4 {
    height: 13px;
    background-color: #FBC02D;
    border-radius: 20px
}

.bar-3 {
    height: 13px;
    background-color: #FBC02D;
    border-radius: 20px
}

.bar-2 {
    height: 13px;
    background-color: #FBC02D;
    border-radius: 20px;
}

.bar-1 {
    height: 13px;
    background-color: #FBC02D;
    border-radius: 20px
}

td {
    padding-bottom: 10px
}

.star-active {
    color: #FBC02D;
    margin-top: 10px;
    margin-bottom: 10px
}

.star-active:hover {
    color: #F9A825;
    cursor: pointer
}

.star-inactive {
    color: #CFD8DC;
    margin-top: 10px;
    margin-bottom: 10px
}

.blue-text {
    color: #0091EA
}

.content {
    font-size: 18px
}

.profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    margin-right: 30px
}

.pic {
    width: 80px;
    height: 80px;
    margin-right: 10px
}

.vote {
    cursor: pointer
}



.text-muted {
    color: #8898aa!important;
}
.card .card-subtitle {
    font-weight: 300;
    margin-bottom: 10px;
    color: #8898aa;
}
ul.list-style-none li {
    list-style: none;
}
.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #FBC02D;
    transition: width .6s ease;
}
.progress {
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
    -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
    -o-shadow: inset 0 1px 2px rgba(0,0,0,.05);
}

.progress {
    display: flex;
    height: 4px;
    overflow: hidden;
    font-size: .65625rem;
    background-color: rgba(120,130,140,.13);
    border-radius: 0;
    box-shadow: inset 0 0.1rem 0.1rem rgba(0,0,0,.1);
}
.display-5 {
    font-size: 50px !important;
    font-weight: bold;
    line-height: 1.2;
}


/* ========================= user profile============================================= */
.padding {
    padding: 3rem !important
}

.user-card-full {
    overflow: hidden;
}

.card {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 20px 0 rgba(69,90,100,0.08);
    box-shadow: 0 1px 20px 0 rgba(69,90,100,0.08);
    border: none;
    margin-bottom: 30px;
}

.m-r-0 {
    margin-right: 0px;
}

.m-l-0 {
    margin-left: 0px;
}

.user-card-full .user-profile {
    border-radius: 5px 0 0 5px;
}

.bg-c-lite-green {
        background: -webkit-gradient(linear, left top, right top, from(#f29263), to(#ee5a6f));
    background: linear-gradient(to right, #ee5a6f, #f29263);
}

.user-profile {
    padding: 70px 0;
}

.user-profile .card-block {
    padding: 1.25rem;
}

.m-b-25 {
    margin-bottom: 25px;
}

.img-radius {
    border-radius: 5px;
}


 
.user-profile h6 {
    font-size: 14px;
}

.card .card-block p {
    line-height: 25px;
}

.social-link li{
    display: inline-flex;
    color: #db1e22;
    padding: 5px;
}

.social-link li a{color: #db1e22;}

.social-link li a:hover{color: #222;}

@media only screen and (min-width: 1400px){
    .user-profile p {
    font-size: 14px;
}
}

.user-profile .card-block {
    padding: 1.25rem;
}

.b-b-default {
    border-bottom: 1px solid #e0e0e0;
}

.user-profile .m-b-20 {
    margin-bottom: 20px;
}

.user-profile .p-b-5 {
    padding-bottom: 5px !important;
}


/* contact page */


.contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
        margin-bottom: 10px;
  }
  .contact-info-icon {
  margin-bottom: 15px;
  }
  .contact-info-item {
    background: #5a3733;
    padding: 30px 0px;
    min-height: 284px;
  }
  .contact-page-sec .contact-page-form h2 {
    color: #5a3733;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
  }
  .contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0;
  }  
  .contact-page-form.contact-form input {
    margin-bottom: 5px;
  }  
  .contact-page-form.contact-form textarea {
    height: 110px;
  }
  .contact-page-form.contact-form input[type="submit"] {
    background: #071c34;
    width: 150px;
    border-color: #071c34;
  }
  .contact-info-icon i {
    font-size: 48px;
    color: #fda40b;
  }
  .contact-info-text p{margin-bottom:0px;}
  .contact-info-text h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .contact-info-text span {
    color: #fff;
    font-size: 14px;
    
    display: inline-block;
    width: 100%;
  }
  
  .contact-page-form input {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
  }
  
  .contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
  }
  .single-input-field textarea {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
  }
  .single-input-fieldsbtn input[type="submit"] {
    background: #db1e22 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
  }
  .single-input-fieldsbtn input[type="submit"]:hover{background:#071c34;transition: all 0.4s ease-in-out 0s;border-color:#071c34}
  .single-input-field  h4 {
    color: #464646;
    text-transform: capitalize;
    font-size: 14px;
  }
  .contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
  }
  
  .contact-page-map {
    margin-top: 36px;
  }
  .contact-page-form form {
      padding: 20px 15px 0;
  }


  /* =========== about us page =============== */

  @media (max-width: 769px) {

      .aboutus-sections {
          padding: 30px 0;
      }
  }
.aboutus-title {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 32px;
    margin: 0 0 39px;
    padding: 0 0 11px;
    position: relative;
    text-transform: uppercase;
    color: #5a3733;
}
.aboutus-title::after {
    background: #db1e22 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 54px;
}
.aboutus-text {
    color: #222;
    font-size: 18px;
    line-height: 22px;
    margin: 0 0 35px;
}

/* ============ offer page========== */

#offer h2{
    font-size: 36px;
    color: #FFFFFF;
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 20px ;
    display: block;

}

/* breedcum */

    .breadcrumb{
        font-size: 14px!important;
    }



    @media (max-width: 769px) {
    .sidebar{
        display: none;

    }

    .breadcrumb{
        padding: 30px;
    }

    #hero{
        height: 70vh;
    }
    #hero h2{
        padding-top: 0;
    }

    #hero .carousel-container{
        display: block;
        top: 30%;
    }

   
}

