@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&display=swap');
:root {
    --primary: #df2129 !important;
}

body {
    font-family: 'Oswald', sans-serif !important;
    background: url('../img/backgrounds/body.png') no-repeat center center;
    background-size: cover !important;
    background-attachment: fixed;
    position: relative;
}


@media (max-width:767px) {
	body{
		background: url('../img/backgrounds/body.png')center center !important;
		background-size: contain !important;
		background-repeat: repeat-y !important;
	}
}

.social-media-container a{
    color: #df2129;
}


/* COMMON COMPONENTS */

.breadcrumb {
    text-transform: uppercase;
    margin-bottom: 50px !important;
}

.breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.btn-primary {
    text-transform: uppercase;
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}

.section-header {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.social-media-container {
    display: flex;
    align-items: center;
}

.social-media-container li:not(:last-child) {
    margin-right: 15px;
}

.social-media-container p {
    font-size: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.social-media-container.light p {
    color: #FFF;
}

.social-media-container p::after {
    top: -6px;
    content: '';
    height: 2px;
    width: 50px;
    margin: 0 15px;
    position: relative;
    display: inline-block;
    background-color: #000;
}

.social-media-container.light p::after {
    background-color: #FFF;
}


/* SITE HEADER */

.site-header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    align-items: center;
    min-height: 100px;
    position: fixed;
    background: url('../img/backgrounds/header-bg.png') no-repeat center center;
    background-size: 100% 100%;
}

.dropdown-menu{
    background-color: #df232b;
}

.site-header-green{
    background: url('../img/backgrounds/header-green-bg.png') no-repeat center center;
    background-size: 100% 100%;
}

.site-header ul {
    width: 100%;
    padding: 25px 0 20px 0;
    padding-left: 0;
    margin-bottom: 0;
    align-items: center;
    /*display: inline-flex;*/
    justify-content: space-between;
}

.site-header ul li {
    display: inline-block;
}

.site-logo,
.site-header ul li a {
    padding: 5px;
    color: #FFF;
    display: block;
    font-size: 24px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

/*.site-header ul li a::after {*/
/*    content: '';*/
/*    left: 50%;*/
/*    width: 30px;*/
/*    height: 3px;*/
/*    bottom: -1px;*/
/*    display: block;*/
/*    position: absolute;*/
/*    transition: .3s ease;*/
/*    transform: translateX(-50%);*/
/*}*/

.site-header ul li a:hover::after,
.site-header ul li a.nav-link.header-link.active::after {
    background-color: #FFF;
}

.btn-nav-toggler {
    background-color: transparent;
    border: none;
}

.btn-nav-toggler span {
    width: 35px;
    height: 3px;
    display: block;
    background-color: #FFF;
}

.btn-nav-toggler span:nth-child(2) {
    margin: 5px 0;
}


/* LANDING SECTION */

.section-landing {
    
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: url(../img/banner/banner1.png) no-repeat;
    background-position: bottom left;
    background-size: 80%;
}

.section-landing .row {
    min-height: 100vh;
}

.section-landing h1 {
    font-size: 80px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.section-landing .social-media-container {
    width: 100%;
    bottom: 50px;
    max-width: 1320px;
    position: absolute;
    left: 50%;
    padding-left: 15px;
    transform: translateX(-50%);
}


/* LANDING SECTION ENDS */

.section-product-listing {
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    padding: 50px 0 50px 0;
    background: url('../img/backgrounds/product-listing-bg.png') no-repeat center bottom;
    background-size: 100% 60%;
    margin-bottom: 125px;
}

.section-product-listing-green {
    background: url('../img/backgrounds/product-listing-green-bg.png') no-repeat center bottom;
    background-size: 100% 60%;
    margin-bottom: 125px;
}

.single-product-unit {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.single-product-unit a {
    text-decoration: none;
}

.single-product-unit h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 30px 0 50px 0;
    text-transform: uppercase;
}

.product-list-img{
    max-height: 500px;
    margin: 0 auto;
}
.products-slick h4{
    text-align: center;
    color: #fff;
}

/* ABOUT US SECTION */

.section-about {
    color: #fff;
    background: url('../img/backgrounds/product-details-bg.png') no-repeat;
    background-size: 90% 100%;
    background-position: left bottom;
    padding: 75px 0;
}
.section-about .section-header{
    color:#fff !important;
}



/* PRODUCT DESCRIPTION SECTION */

.section-product-description {
    color: #fff;
    background: url('../img/backgrounds/product-details-bg.png') no-repeat;
    background-size: 90% 100%;
    background-position: left bottom;
}

.accordion-collapse {
    padding: 75px 0 60px 0;
}

.product-description-content {
    padding: 50px 15px 50px 50px;
}

.section-product-description header {
    font-size: 65px;
    line-height: 1.25;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: bold;
    /*word-break: break-all;*/
}

.section-product-description p {
    font-size: 18px;
    text-align: justify;
}

.product-description-image {
    display: table;
    margin-left: auto;
    position: relative;
    margin-bottom: 10%;
}

.product-description-image-change::before {
    left: 50%;
    top: 0;
    display: block;
    position: absolute;
    transform: translateX(-50%) translateY(-100%);
    content: url(../img/icon/waves-red-1.png);
}

.product-description-image-noodles-change::before {
    left: 50%;
    top: 0;
    display: block;
    position: absolute;
    transform: translateX(-50%) translateY(-100%);
    content: url(../img/icon/waves-red-2.png) !important;
}

.product-description-image img {
    max-height:550px;
}


/* CONTACT SECTION */

.section-contact {
    padding: 75px 0;
}

.contact-unit {
    text-align: center;
    margin-bottom: 75px;
    color: var(--primary);
}

.contact-unit img {
    height: auto;
    max-width: 120px;
}

.contact-unit h4 {
    font-size: 26px;
    font-weight: 500;
    margin: 30px 0 20px 0;
}

.contact-unit p {
    font-size: 22px;
    max-width: 75%;
    margin: 0 auto;
}

/* SLICK */
.slick-prev, .slick-next{
    background-color: var(--primary);
    width: 50px;
    height: 50px;
    top: 45%;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    color: #fff;
    outline: none;
    background: var(--primary);
}

.slick-slide a{
    text-decoration:none;
}

@media(max-width:767px) {
    /* COMMON COMPONENTS */
    .section-header {
        font-size: 32px;
    }
    .site-header {
        min-height: 70px;
        padding: 15px 0;
    }
    .mobile-navigation-container {
        top: 60px;
        width: 100%;
        z-index: 99;
        text-align: center;
        position: absolute;
        background-color: var(--primary);
    }
    .site-logo {
        padding: 0;
        display: table;
    }
    .site-header ul {
        display: block;
        padding-bottom: 0;
    }
    .site-header ul li {
        display: block;
        margin-bottom: 30px;
    }
    .site-header ul li a {
        display: table;
        margin: 0 auto;
    }
    .social-media-container {
        display: table;
        margin: 0 auto;
    }
    .social-media-container p {
        text-align: center;
    }
    .social-media-container p::after {
        top: 0;
        display: table;
        margin: 10px auto 0 auto;
    }
    .social-media-container ul {
        display: table;
        margin: 0 auto;
    }
    /* LANDING SECTION */
    .section-landing {
        padding-top: 50px;
        text-align: center;
        background: none !important;
    }
    .section-landing .social-media-container {
        position: static;
        padding-left: 0;
        transform: translate(0);
    }
    /* PRODUCT LISTING */
    .main-product{
        max-width: 75%;
        max-height:500px;
    }
    .section-product-listing {
        padding-bottom: 0;
        background: none;
        margin-bottom: 30px;
    }
    .single-product-unit {
        max-width: 100%;
        padding-bottom: 50px;
    }
    .single-product-unit a img {
        max-width: 75%;
        max-height:500px;
    }
    .single-product-unit h3 {
        color: #000;
    }
    .single-product-unit p {
        text-align: justify;
    }
    .product-list-img{
        max-height: 300px;
        margin: 0 auto;
    }
    .products-slick h4{
        text-align: center;
        color: #000;
        padding: 0px 10px;
    }
    /* ABOUT US SECTION */
    .section-about{
        background: var(--primary);
    }
    /* CONTACT SECTION */
    .contact-unit {
        margin-bottom: 50px;
    }
    .contact-unit img {
        max-width: 100px;
    }
    .contact-unit h4 {
        margin: 20px 0 10px 0;
    }
}
a.nav-link.header-link:hover{
    color: #fff !important;
}

.navbar-toggler span {
    width: 35px;
    height: 3px;
    display: block;    margin: 6px;
    background-color: #FFF;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem #ffffff !important;
}

@media screen and (min-width: 768px) {
  .hidemess{
    display: none; 
  }
}

@media screen and (min-width: 0px) and (max-width: 768px){
    .site-header .nav { display: none; }   /* hide it elsewhere */

    .hidemess{
        display: block !important; 
      }
}

.fa, .far, .fas {
    font-family: "Font Awesome 5 Free";
}
.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem;
}

.red {
    background-color: #ffffff!important;
    color:red
}


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

.card {
    margin-bottom: 30px;
    border: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    letter-spacing: .5px;
    border-radius: 8px;
    -webkit-box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, .05);
    box-shadow: 1px 5px 24px 0 rgba(68, 102, 242, .05)
}

.card .card-header {
    background-color: #fff;
    border-bottom: none;
    padding: 24px;
    border-bottom: 1px solid #f6f7fb;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px
}

.card-header:first-child {
    border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0
}

.card .card-body {
    padding: 30px;
    background-color: transparent
}

/* .cartpage  .btn-primary,
.cartpage  .btn-primary.disabled,
.cartpage  .btn-primary:disabled {
    background-color: #4466f2 !important;
    border-color: #4466f2 !important
} */







.cartpage  .title {
    margin-bottom: 5vh
}

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

@media(max-width:767px) {
    .cartpage  .card_sb {
        margin: 82px auto
    }
}

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

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

.summary {
    background-color: #ddd;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    padding: 4vh;
    color: rgb(65, 65, 65)
}

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

.summary .col-2 {
    padding: 0
}

.summary .col-10 {
    padding: 0
}

.cartpage  .row {
    margin: 0
}

.cartpage .title b {
    font-size: 1.5rem
}

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

.cartpage form {
    padding: 2vh 0
}

.cartpage 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)
}

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

.cartpage  input:focus::-webkit-input-placeholder {
    color: transparent
}

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

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

.cartpage .btn:hover {
    color: white
} */

.cartpage a {
    color: black
}

.cartpage a:hover {
    color: black;
    text-decoration: none
}

.cartpage #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
}

.badge {
    display: inline-block;
    padding: 0.35 em 0.65 em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;

    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    height: 14px;
    width: 14px;
    background-color: green;
    border-radius: 50%;
    position: absolute;
    left: 54%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;

    border-radi