@font-face {
    font-family: 'Poppins';
    src: url('fonts/fonPoppins-Bold.eot');
    src: url('fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Poppins-Bold.woff2') format('woff2'),
        url('fonts/Poppins-Bold.woff') format('woff'),
        url('fonts/Poppins-Bold.ttf') format('truetype'),
        url('fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Black.eot');
    src: url('fonts/Poppins-Black.eot?#iefix') format('embedded-opentype'),
        url('fonts/Poppins-Black.woff2') format('woff2'),
        url('fonts/Poppins-Black.woff') format('woff'),
        url('fonts/Poppins-Black.ttf') format('truetype'),
        url('fonts/Poppins-Black.svg#Poppins-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.eot');
    src: url('fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
        url('fonts/Poppins-Medium.woff2') format('woff2'),
        url('fonts/Poppins-Medium.woff') format('woff'),
        url('fonts/Poppins-Medium.ttf') format('truetype'),
        url('fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Light.eot');
    src: url('fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/Poppins-Light.woff2') format('woff2'),
        url('fonts/Poppins-Light.woff') format('woff'),
        url('fonts/Poppins-Light.ttf') format('truetype'),
        url('fonts/Poppins-Light.svg#Poppins-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.eot');
    src: url('fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('fonts/Poppins-SemiBold.woff') format('woff'),
        url('fonts/Poppins-SemiBold.ttf') format('truetype'),
        url('fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.eot');
    src: url('fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Poppins-Regular.woff2') format('woff2'),
        url('fonts/Poppins-Regular.woff') format('woff'),
        url('fonts/Poppins-Regular.ttf') format('truetype'),
        url('fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


body{
    font-family: 'Poppins';
}
a, a:hover{
    text-decoration: none;
}
.owl-carousel .owl-item > div .slider-img{
    position: absolute;
    background-size: cover;
    background-position: center center;
    left: 0;
    right: 0;
    bottom: 0;
    top:0;
}
.owl-carousel .owl-item.active > div .slider-img{
    transform: scale(1);
    transition: 10s all linear;
}

.slider-text{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-text span{
    font-size: 48px;
    font-weight: 600;
    color: #dcdcdc;
}
.owl-carousel .owl-item .overlay{
 background-color: rgba(0, 0, 0,0.5);
 position: absolute;
 left: 0;
 right: 0;
 top: 0;
 bottom: 0;
}

.owl-carousel .owl-item img{
    height: 100%;
}

header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 30px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0,0,0,0.5);
}
header .logo a{
    font-size: 42px;
    color: #FFEB3B;
}
header .logo a img{
    width: 230px;
}
header .logo a sup{
    font-size: 14px;
}
.hamburger {
    display: inline-block;
}
.hamburger .line{
    width: 34px;
    height: 3px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
  } 
  .hamburger:hover{
    cursor: pointer;
  }
  #hamburger-9{
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  #hamburger-9.is-active{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  #hamburger-9:before{
    content: "";
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 70px;
    height: 70px;
    border: 5px solid transparent;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    border-radius: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  #hamburger-9.is-active:before{
    border: 5px solid #ecf0f1;
  }
  
  #hamburger-9.is-active .line{
    width: 35px;
  }
  
  #hamburger-9.is-active .line:nth-child(2){
    opacity: 0;
  }
  
  #hamburger-9.is-active .line:nth-child(1){
    -webkit-transform: translateY(13px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
    transform: translateY(13px);
  }
  
  #hamburger-9.is-active .line:nth-child(3){
    -webkit-transform: translateY(-9px) rotate(90deg);
    -ms-transform: translateY(-9px) rotate(90deg);
    -o-transform: translateY(-9px) rotate(90deg);
    transform: translateY(-9px) rotate(90deg);
  }
  .menu {
    position: fixed;
    background: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height:0%;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: 2;
    background:linear-gradient(0deg, rgba(34, 31, 33, 0.3), rgba(54, 54, 54, 0.3)), url('../images/banner2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 150px 30px 30px 396px;
    overflow-y: auto;
}
.menu.open{
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.menu-show{
    overflow: hidden;
}
.menu nav ul{
    padding-left: 0;
}
.menu nav ul li{
    padding: 10px 0;
}
.menu nav ul li a{
 font-size: 36px;
 color: #fff;
}
.social-media ul{
    padding-left: 0;
    display: flex;
    align-items: center;

}
.social-media ul li a img{
    width: 35px;
}
.social-media ul li{
    padding: 0 10px;
}
nav {
    margin-bottom: 50px;
}
.right-panle{
    display: flex;
    align-items: center;
}
.Inquiry
{
display: inline-block;
margin-right: 50px;
background-color: transparent;
padding: 9px 15px;
font-weight: 600;
font-size: 16px;
color: #ffeb3b;
border: 2px solid #ffeb3b;
border-radius: 20px;
}


/* 2 Section */
.spices{
    position: relative;
    background-color: #fff;
}
.spices:after{
    content:'';
    background-image: url('../images/spcice-background.png');
    background-size: cover;
    background-position: center center;
    position: absolute;
    left: 0;
    right: 0;
    top:0;
    bottom: 0;
    opacity: 0.3;
}
.spices .nav-tabs li a,
.spices .nav-tabs li a:hover,
.spices .nav-tabs li.active a:focus,
.spices .nav-tabs li a:focus{
    background-color: transparent;
    border:0;
    font-size: 18px;
    color: #525252;
    padding-bottom: 15px;
    padding-top: 15px;
}
.spices .nav-tabs{
 display: flex;
 border-bottom: 4px solid #ececec;
 justify-content: space-between;
 position: relative;
 z-index: 1;
}
.spices .tab-content{
    z-index: 1;
    position: relative;
}
.spices .nav-tabs li a{
    position: relative;
    font-size: 18px;
}
.spices .nav-tabs li.active a:after,
.spices .nav-tabs li a:hover:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 4px;
    background-color: #e50e0c;
}
.spices .nav-tabs li.active a{
    color: #e50e0c;
}
.spices .nav-tabs li.active.chill a{ color: #e50e0c;}
.spices .nav-tabs li.active.turmeric a{ color: #ef9b11;}
.spices .nav-tabs li.active.turmeric a:after{background-color: #ef9b11;}
.spices .nav-tabs li.active.garam a{ color: #b66210;}
.spices .nav-tabs li.active.garam a:after{background-color: #b66210;}
.spices .nav-tabs li.active.hing a{ color: #e4b982;}
.spices .nav-tabs li.active.hing a:after{background-color: #e4b982;}
.spices .nav-tabs li.active.coriander a{ color: #dfc74b;}
.spices .nav-tabs li.active.coriander a:after{background-color: #dfc74b;}


.spices .nav-tabs li.chill a:hover{ color: #e50e0c;}
.spices .nav-tabs li.turmeric a:hover:after{background-color: #e50e0c;}
.spices .nav-tabs li.turmeric a:hover{ color: #ef9b11;}
.spices .nav-tabs li.turmeric a:hover:after{background-color: #ef9b11;}
.spices .nav-tabs li.garam a:hover{ color: #b66210;}
.spices .nav-tabs li.garam a:hover:after{background-color: #b66210;}
.spices .nav-tabs li.hing a:hover{ color: #e4b982;}
.spices .nav-tabs li.hing a:hover:after{background-color: #e4b982;}
.spices .nav-tabs li.coriander a:hover{ color: #dfc74b;}
.spices .nav-tabs li.coriander a:hover:after{background-color: #dfc74b;}

.spices .tab-content .inner-content{
    padding: 60px 0;
}

.spices .tab-content .inner-content .pr-img img{
    width: 300px;
    -webkit-box-shadow: 10px 10px 15px -8px rgba(133,133,133,1);
    -moz-box-shadow: 10px 10px 15px -8px rgba(133,133,133,1);
    box-shadow: 10px 10px 15px -8px rgba(133,133,133,1);
}

.detail-content .title{
 font-size: 36px;
 color: #525252;
}
.detail-content .pr-title{
    font-size: 28px;
    color: #525252;
}
.detail-content{
    padding-left: 50px;
}
.pr-description{
    font-size: 16px;
    color: #525252;
    margin-top: 30px;
    margin-bottom: 40px;
}
.detail-content ul{
    padding-left: 15px;
    margin-top: 30px;
    font-size: 16px;
}
.detail-content ul li {
    padding: 5px 0;
}
.spices .tab-content .tab-pane.hing .detail-content ul li::marker {
    color: #e4b982;
}
.spices .tab-content .tab-pane.chill .detail-content .title,
.spices .tab-content .tab-pane.chill .detail-content ul li::marker{
    color: #e50e0c;
}
.spices .tab-content .tab-pane.turmeric .detail-content .title,
.spices .tab-content .tab-pane.turmeric .detail-content ul li::marker{
    color: #ef9b11;
}
.spices .tab-content .tab-pane.garam .detail-content .title{
    color: #b66210;
}
.spices .tab-content .tab-pane.hing .detail-content .title{
    color: #e4b982;
}
.spices .tab-content .tab-pane.coriander .detail-content .title{
    color: #dfc74b;
}
.pr-point{
    display: flex;
    text-align: center;
    margin-top: 30px;
    margin-left:-15px ;
}
.pr-point span{
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    color: #696969;
}
.pr-action{
    margin-top: 60px;
    
}
.pr-action a{
    padding: 15px 20px;
    border: 2px solid #fff;
}
.spices .tab-content .tab-pane .pr-action a{
    color: #e50e0c;
    border-color: #e50e0c;
    position: relative;
    text-decoration: none;
    border-radius: 27px;
    overflow: hidden;
}
.spices .tab-content .tab-pane.turmeric .pr-action a{
    color: #ef9b11;   
    border-color: #ef9b11;
}
.spices .tab-content .tab-pane.garam .pr-action a{
    color: #b66210;
    border-color: #b66210;
}
.spices .tab-content .tab-pane.hing .pr-action a{
    color: #e4b982;
    border-color: #e4b982;
}
.spices .tab-content .tab-pane.coriander .pr-action a{
    color: #dfc74b;
    border-color: #dfc74b;
}
.spices .tab-content .tab-pane.turmeric .pr-action a:after{
    background-color: #ef9b11;
}
.spices .tab-content .tab-pane.garam .pr-action a:after{
    background-color: #b66210;
}

.spices .tab-content .tab-pane.hing .pr-action a:after{
    background-color: #e4b982;
}

.spices .tab-content .tab-pane.coriander .pr-action a:after{
    background-color: #dfc74b;
}
.spices .tab-content .tab-pane.chill .pr-action a:after{
    background-color: #e50e0c;
}

.spices .tab-content .tab-pane .pr-action a:after{
    content:'';
    background-color: #e50e0c;
    left: 0;
    top:0;
    bottom: 0;
    right: 100%;
    position: absolute;
    transition: .3s all linear;
    z-index: 0;
    border-radius: 27px;
   
}

.spices .tab-content .tab-pane .pr-action a:hover{   
    color:#fff;
}
.spices .tab-content .tab-pane .pr-action a:hover:after{
    right: 0%;
}
.spices .tab-content .tab-pane .pr-action a span{
 display: inline-block;
 z-index: 1;
 position: relative;
}
.spices-img > div{
    background-image: url(images/All-spices.png);
    width: 1100px;
    max-width: 90%;
    height: 500px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -150px;
}
.spices-img.gold-img > div{
    width: 600px;
}

.spices-img > span{
position: relative;
top: -130px;
font-weight: 400;
}
.product-content {
    display: flex;
    justify-content: center;
}
.product-slider {
    display: flex;
    margin: 0 -30px;
}
.product-slider .product-inner-content {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 30px;
}

.productitem img{
    border: 1px solid #e0e0e0;
    max-width: 100%;
}
.Gold-Products .title{
text-align: center;
margin-bottom: 50px;
}
.Gold-Products{
    padding: 20px 0 60px;
    background-color: #f5f5f5;
}
.Gold-Products .title h2{
    display: inline-block;
    font-size: 36px;
    position: relative;
    padding-bottom: 30px;
}
.Gold-Products .title h2:after{
    content: '';
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 0px;
    height: 3px;
    background-color: #ffeb3b;
    width: 80px;
    margin: auto;
}
.Gold-Products .productitem.hing .title-product:hover{color: #cdab76;}
.Gold-Products .productitem.garamMasala .title-product:hover{ color: #792912;}
.Gold-Products .productitem.redchill .title-product:hover{
 color: #aa1010;
}
.Gold-Products .productitem.redchill .title-product span:first-child{ color: #aa1010;}
.Gold-Products .productitem.garamMasala .title-product span:first-child{ color: #792912;}
.Gold-Products .productitem.hing .title-product span:first-child{
    color: #cdab76;
}
.Gold-Products .title-product{
    display: inline-block;
    width: 100%;
    font-size: 18px;
    padding: 10px 0px 10px;
    font-weight: 600;
    text-align: center;
    color: #1f1a17;
}
.Gold-Products .title-product span:first-child{
    display: inline-block;
    width: 100%;
    padding: 10px 0px 10px;
}

.productitem a{
    display: inline-block;
}
.social-media-section{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.social-media-section .social-img{
    width: 25%;
    height: 250px;
    position: relative;
    overflow: hidden;
}
.social-media-section .social-img img{
 width: 100%;
 height: 100%;
 object-fit: cover; 
 transition: .3s all linear;
 transform: scale(1);
}
.social-media-section .social-img .ovelay{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
}
.social-media-section .social-img:hover img{
    transform: scale(1.2);
} 
.content-social{
    position: absolute;
    background-color: #313131;
    padding: 60px 60px;
    z-index: 1;
    max-width: 450px;
}
.content-social .icons{
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}
.content-social .icons img{
    width: 50px;

}
.content-social .text{
    font-size: 28px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}
footer{
 background-color: #313131;
 padding: 50px 0;
}
footer .logo img{
    width: 200px;
}
footer ul{
    padding-left: 0;
}
footer .title{
    font-size: 20px;
    color: #fde300;
    margin-bottom: 10px;
}
footer ul li{
    font-size: 16px;
    padding: 5px 0px;
}
footer ul li a{
    color: #fff;
}
footer ul li a:hover{
    color: #fde300;
}
footer ul li img{
    width: 130px;
    border-radius: 5px;
    
}
.footer-bottom-inner{
    border-top: 1px solid #404040;
    margin-top: 50px;
 
}
footer .Available ul li{
  margin: 20px 0;
}
.footer-bottom-inner .left{
    font-size: 14px;
    color: #929292;
    padding-top: 20px;
    text-align: center;
}

/* Abouts */
body.about-us{
    padding-top: 105px;
}
.about-content {
    position: relative;
    padding: 100px 0 150px; 

}
.about-content:after{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 1;
    background-image: url('../images/about-us-img.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    z-index: -1;
}
.career-bg:after {
    background-image: url('../images/career.jpg');
}
.about-content-inner{
    padding-left: 500px;
}
.career-bg .about-content-inner {
    padding-left: 300px;
    padding-right: 200px;
}
.about-content-inner h2{
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    margin-bottom: 35px;
}
.about-content-inner h2::after{   
    content: '';
    position: absolute;
    left: 0;
    height: 3px;
    background-color: #f8c600;
    bottom: -9px;
    right: 0;
    width: 80px;
}
.owl-dot{
    width: 10px;
    height: 10px;
    background-color: #f8c400 !important;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
}
.owl-dot.active{
    opacity: 1;
}
.owl-dots{
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    text-align: center;
}
.about-point{
    margin-top: 30px;
}
.about-point .title{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}
.contact-content{
    /* background-image: url('../images/173-1736823_bannerimages-spices-spices-images-hd-png.png'); */
    background-repeat: no-repeat;
    padding-bottom: 60px;
    background-size: contain;
    background-position: center bottom;
}
.contact-content-inner h2{
    text-align: center;
    font-size: 42px;
    margin-top: 40px;
    margin-bottom: 100px;
    position: relative;
}
.contact-content-inner h2:after{
    content: '';
    background-color: #f8c700;
    width: 100px;
    height: 5px;
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.address{
    padding-left: 30px;
}
.address h3{
    font-size: 28px;
    margin-bottom: 20px;
}
.address h3.mt-0{
    margin-top: 0;
}
.address p{
    font-size: 18px;
    line-height: 2;
    margin-bottom: 40px;
}
.contact-form{
    padding: 30px;
    background-color: #f5f5f5;
    display: inline-block;
    width: 100%;
  border-top:4px solid #f8c300;
}
.contact-form .form-group input{
    background-color: #ffffff;
    box-shadow: none;
    height: 40px;
    border-width: 0px;
}
.contact-form .form-group textarea{
    background-color: #ffffff;
    box-shadow: none;
    border-width: 0px;
}
.contact-form .btn{
    font-size: 18px;
    padding: 6px 30px;
    background-color: #f9cc00;
}
.Product-content-inner h2{
    text-align: center;
    font-size: 42px;
    display: inline-block;
    position: relative;
    margin-bottom: 45px;
}
.Product-content-inner h2:after{
    content: '';
    background-color: #f8c700;
    height: 3px;
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    width: 80px;
    margin: auto;
}
.Product-content-inner{
    position: relative;
    padding-top: 30px;
    padding-bottom: 45px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.Product-content-inner p{
    margin-top: 30px;
    font-size: 18px;
    margin: auto;
    margin-left: 0;
    padding-right: 289px;
    text-align: left;
}
.side-right-img{
    position: absolute;
    right: -50px;
}
.side-left-img{
    position: absolute;
    left: -50px;
    width: 250px;
}
.product{
    position: relative;
}
.product .pr-img{
    border: 1px solid #dedede;
    width: 300px;
    margin: auto;
}
.product{
    padding-bottom: 50px;
    padding-top: 50px;
    border-bottom: 1px solid #e0e0e0;
}
.product .title{
    font-size: 36px;
}
.product h2{
    font-size: 28px;
}
.product ul{
    padding-left: 0;
    padding-left: 15px;
    margin-top: 30px;
    font-size: 16px;
}
.product ul li{
    padding: 5px 0;
}
.product1 ul li::marker{
    color:#755326;
}
.product1 .title{
    color:#755326;
}
.product2 .title{
    color:#e50e0c;
}
.product2 ul li::marker{
    color:#e50e0c;
}
.product3 .title{
    color:#feb204;
}
.product3 ul li::marker{
    color:#feb204;
}
.product4 .title{
    color: #792912;
}
.product4 ul li::marker{
    color: #792912;
}
.product5 .title{
    color: #ebd253;
}
.product5 ul li::marker{
    color: #ebd253;
}
.pr-section > div{
    display: flex;
}
.pr-section > div:nth-child(even) .row {
    flex-direction: row-reverse;
    display: flex;
    width: 100%;
}
.product .ab-pr1{
    position: absolute;
    right: -80px;
    top:30px;
    width: 300px;
    opacity: 0.2;
}
.product .ab-pr2{
    top: -25px;
    left: 441px;
    position: absolute;
    width: 270px;
    opacity: 0.3;
    transform: rotate(20deg);
}
.product2{
    padding-bottom: 60px;
}
.product .ab-pr3{
    position: absolute;
    right: -80px;
    top:100px;
    width: 300px;
    opacity: 0.2;
}
.product .ab-pr4{
    bottom: 0;
    position: absolute;
    width: 280px;
    opacity: 0.2;
    top: 35px;
    left: 365px;
}
.product4{
    padding-bottom: 60px;
}
.product .ab-pr5{
    position: absolute;
    right: -80px;    
    width: 300px;
    bottom: 0;
    opacity: 0.2;
}
.product.gold .ab-pr4{
    right: 0;
    left: auto;
}
.avilable-content h3{
    font-size: 20px;
    margin-bottom: 15px;
}
.avilable-content a{
display: inline-block;
margin-right: 20px;
}
.avilable-content a img{
    width: 150px;
    border-radius: 5px;
}
.pack-size{
    margin-top: 30px;
}
.pack-size .title{
    font-size: 20px;
    margin-bottom: 15px;
    color: #000;
}
.pack-size .packet{
    display: flex;
}
.pack-size .packet span{
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #000;
    border-radius: 20px;
    margin-right: 10px;
}
.product1 .pack-size .packet span{ color:#755326; border-color: #755326;} 
.product2 .pack-size .packet span{ color:#e50e0c; border-color: #e50e0c;} 
.product3 .pack-size .packet span{ color:#feb204; border-color: #feb204;} 
.product4 .pack-size .packet span{ color:#792912; border-color: #792912;} 
.product5 .pack-size .packet span{ color:#ebd253; border-color: #ebd253;} 

.contact-image{
    border: 1px solid #e0e0e0;
}
.xs-hidden {
    display: inline-block;
}
.xs-visible {
    display: none;
}