@font-face {
    font-family: "Baskerville Old Face V2";
    src: url("/frontend/fonts/9ecec61376083fd290b75d94fdaca380.eot");
    src: url("/frontend/fonts/9ecec61376083fd290b75d94fdaca380.eot?#iefix")format("embedded-opentype"),
    url("./frontend/fonts/9ecec61376083fd290b75d94fdaca380.woff2")format("woff2"),
    url("/frontend/fonts/9ecec61376083fd290b75d94fdaca380.woff")format("woff"),
    url("/frontend/fonts/9ecec61376083fd290b75d94fdaca380.ttf")format("truetype"),
    url("/frontend/fonts/9ecec61376083fd290b75d94fdaca380.svg#Baskerville Old Face V2")format("svg");
}

@font-face {
    font-family: 'Automali';
    src: url('/frontend/fonts/Automali.eot');
    src: local('Automali'),
        url('/frontend/fonts/Automali.eot?#iefix') format('embedded-opentype'),
        url('/frontend/fonts/Automali.woff2') format('woff2'),
        url('/frontend/fonts/Automali.woff') format('woff'),
        url('/frontend/fonts/Automali.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Baskerville-Old-Face-Regular";
    src: url("/frontend/fonts/6eb209971a092120816c08497efe21c2.eot");
    src: url("/frontend/fonts/6eb209971a092120816c08497efe21c2.eot?#iefix")format("embedded-opentype"),
    url("/frontend/fonts/6eb209971a092120816c08497efe21c2.woff2")format("woff2"),
    url("/frontend/fonts/6eb209971a092120816c08497efe21c2.woff")format("woff"),
    url("/frontend/fonts/6eb209971a092120816c08497efe21c2.ttf")format("truetype"),
    url("/frontend/fonts/6eb209971a092120816c08497efe21c2.svg#Baskerville-Old-Face-Regular")format("svg");
}

nav {
  border-radius: 0.5rem;
  margin-left: 5px;
  margin-right: 5px;
  background: #f8d897;
   margin-top: 1px;
   
}
nav .wrapper {
  position: relative;
 
  padding-left: 5px;
  padding-right: 5px;
  height: 42px;
  line-height: 50px;
  margin: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo  {
    margin-right: 100px; 
  text-align: center;
    font-size: 20px;
    font-weight: 400;
      flex: 1;
}
.wrapper .logo a {
 
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links {
  display: inline-flex;
 
}
.nav-links li {
  list-style: none;
}
.nav-links li a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  padding: 5px 10px;
  transition: all 0.3s ease;
}
.nav-links li a:hover {
  background: #ffaa00ff;
  border-radius: 10px;
    color: #fff;
}


.wrapper .nav-links2 {
  display: inline-flex;
    margin-right: 1px; 
 
}
.nav-links2 li {
  list-style: none;
}
.nav-links2 li a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  padding: 5px 10px;
  transition: all 0.3s ease;
}
.nav-links2 li a:hover {
  background: #ffaa00ff;
  border-radius: 10px;
  color: #fff;
}

.nav-links .mobile-item {
  display: none;
}
.nav-links .drop-menu {
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content {
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.row .mega-links li {
  padding: 0 20px;
}
.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover {
  color: #f2f2f2;
}
.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}


#menuleft {
  float: left;
}

#menuright {
  float: right;
}

@media screen and (max-width: 970px) {
  .wrapper .btn {
    display: block;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }
  
   .wrapper .nav-links2 {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #242526;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
  }
  
  
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3a3b3c;
  }
  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }
  .nav-links li {
    margin: 15px 10px;
  }
  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 100%;
  }
  .nav-links .desktop-item {
    display: none;
  }
  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover {
    background: #3a3b3c;
  }
  
    .nav-links2 .desktop-item {
    display: none;
  }
  .nav-links2 .mobile-item {
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links2 .mobile-item:hover {
    background: #3a3b3c;
  }
  .drop-menu li {
    margin: 0;
  }
  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }
  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li {
    margin: 0;
  }
  .content .row header {
    font-size: 19px;
  }
  
.show-mobile{
    display: inline-block;
}

.logo img {
  height: 50px;
  width: 150px;
  float: left;
}

.wrapper .logo {
  margin-right: 1px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  flex: 1;
}

}



nav input {
  display: none;
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div {
  font-size: 45px;
  font-weight: 600;
}


.section {
  display: grid;
  justify-content: center;
  align-content: center;
  gap: 4px;
  grid-auto-flow: column;
}

.colom_part {
  padding: 120px 10px;
  height: 600px;
  width: 420px;
  border-radius: 10px; 
  background-color: #f4f4f4;
  
}

.column-padding {
  padding-left: 0;
  padding-right: 0;
  margin :auto;
}

.banner-part1 {
  padding-left: 1px;
  padding-right: 1px;
  height: 600px;
  width: 400px;
  
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  
}

.banner-img {
 
     border-top-right-radius: 25px;
     border-bottom-right-radius: 25px;
   width: 100%;
   height: 100%;

   }
   

.banner-text {
  color: #fa9928;
  font-size: 15px;
  padding-top: 50px;
  bottom: 100px;
  width: 100%;
  padding-left: 20px;
  padding-right: 70px;
  text-align: center;

}

.bg-theme{
   background-color: #faf2e1;
   padding-left: 20px;
   padding-right: 70px;
   text-align: center;
}

.text-fotter {
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    text-align: left;
}

.btn-linkfotter {
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    text-align: left;
}
.btn-linkfotter:hover {
    color: #0056b3;
    text-decoration: underline;
}
.btn-linkfotter.focus,
.btn-linkfotter:focus {
    text-decoration: underline;
}
 
@media all and (max-width:500px) {
        
.colom_part {
  padding: 40px 5px;
  height: 400px;
  width: 350px;
  background-color: #f4f4f4;
  margin: auto;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.banner-text {
  color: #fa9928;
  font-size: 15px;
  padding-top: 30px;
  bottom: 100px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.banner-part1 {
  padding-left: 30px;
  padding-right: 30px;
  height: 500px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.banner-img {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 25px;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 25px;
}


.slideshow-img {
  vertical-align: middle;
  border-radius: 10px;
  width: 100%;
  height: 300px;
}

.mySlides111 {
  display: none;
  padding-left: 10px;
  padding-right: 10px;
  height: 350px;
}

.show-mobile{
    display: inline-block;
}

.logo img {
  height: 30px;
  width: 150px;
  float: left;
  margin-top: 8px;
}

.single-product-wrapper2 {
      display: block;
      margin: 0 auto 20px;
      max-width: 290px
  }
  
  .wrapper .logo {
  margin-right: 1px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  flex: 1;
}
  
}

 
@media all and (max-width:350px) {
        
.colom_part {
  padding: 40px 5px;
  height: 400px;
  width: 350px;
  background-color: #f4f4f4;
  margin: auto;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.banner-text {
  color: #fa9928;
  font-size: 15px;
  padding-top: 30px;
  bottom: 100px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}

.banner-part1 {
  padding-left: 30px;
  padding-right: 30px;
  height: 500px;
 
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 25px;
}

.banner-img {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 25px;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 25px;
}


.slideshow-img {
  vertical-align: middle;
  border-radius: 10px;
  width: 100%;
  height: 300px;
}

.mySlides111 {
  display: none;
  padding-left: 10px;
  padding-right: 10px;
  height: 350px;
}

.show-mobile{
    display: inline-block;
}

.logo img {
  height: 50px;
  width: 150px;
  float: left;
}

.single-product-wrapper2 {
      display: block;
      margin: 0 auto 20px;
      max-width: 290px
  }
  
  .wrapper .logo {
  margin-right: 1px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  flex: 1;
}
  
}




.single-product-area2new {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    overflow: hidden;
    padding-left: 5px;
    padding-right: 5px;  
}

.single-product-area2new .product-img1n {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.single-product-area2new .product-img1n img {
    width: 100%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

 
.single-product-area2new .product-img1n .hover-img {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    vertical-align : top;
}

.single-product-area2new:hover .product-img1n .hover-img {
    opacity: 1;
    visibility: visible;
}

img {
  vertical-align: top;
  border-style: none;
}

.single-product-area2new .product-img1n .product-favourite a {
    position: absolute;
    height: 25px;
    width: 45px;
    font-size: 14px;
    color: #ccc;
    top: 20px;
    right: 20px;
    z-index: 10;
    line-height: 25px;
    background-color: #ffffff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.single-product-area2new .product-img1n .product-favourite a.active {
    opacity: 1;
    visibility: visible;
}

.single-product-area2new:hover .product-img1n .product-favourite a {
    opacity: 1;
    visibility: visible;
}

.single-product-area2new .product-img1n .product-badge.offer-badge {
    background-color: #dc0345;
}

.single-product-area2new .product-img1n .product-badge {
    height: 25px;
    background-color: #000000;
    color: #ffffff;

    font-weight: 700;
    font-size: 12px;
    padding: 0 10px;
    display: inline-block;
    line-height: 25px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}


.single-product-area2new .favme {
    cursor: pointer;
    color: #ccc;
}

.single-product-area2new .favme.active {
    color: #dc0345 !important;
}

.single-product-area2new .product-description2new {
    position: relative;
    z-index: 1;
    padding-top: 5px;
    background-color :#ffffffff;
}

.single-product-area2new .product-description2new h6 {
    color: #222222;
    margin-bottom: 5px;
    text-align: center;
    font-size: 18px;
}


.single-product-area2new .product-description2new h5 {
    color: #222222;
    text-align: center;
    font-size: 18px;
}

.single-product-area2new .product-description2new p {
    margin-bottom: 0;
    font-size: 14px;
  
    font-weight: 700;
    color: #000000;
}

.section-padding-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.m-center{
    margin :auto;
}
   
.pt-custom5 {
  padding-top: 2rem !important;
}

.mt-custom5 {
  margin-top: 2rem !important;
}   


.single-product-wrapper2:hover .product-overlay{
  visibility: visible;
  opacity: 1
}


.single-product-wrapper2 {
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 5px;
  overflow: hidden;
  padding: 3px;
  position: relative;
  max-width: 300px;
  min-width: 200px
}

.single-product-wrapper2:hover {
  border: 1px solid #ddd;
  box-shadow: 0 10px 20px rgba(44, 44, 44, .1)
}


@media all and (min-width:1025px) {
  .product-grid .single-product-wrapper2 {
      width: calc(100%/5)
  }
}

@media all and (max-width:1024px) {
  .product-grid .single-product-wrapper2 {
      width: calc(100%/4)
  }
  
}

@media all and (max-width:768px) {
  .product-grid .single-product-wrapper2 {
      width: calc(100%/3)
  }
}

@media all and (max-width:600px) {
  .product-grid .single-product-wrapper2 {
      width: calc(100%/2)
  }
}

@media all and (max-width:400px) {
  .product-grid .single-product-wrapper2 {
      width: 100%
  }
}

.single-product-wrapper2:hover .product-overlay a span {
  transform: translate(20px, 0)
}


   
.single-product-item2 {
  margin-bottom: 2px;
     position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
 
}

.single-product-item2 img {
  padding: 0 5px;
  width: 100%;
    
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}


 
.single-product-item2 .hover-img {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    vertical-align : top;
}

.single-product-item2:hover .hover-img {
    opacity: 1;
    visibility: visible;
}

img {
  vertical-align: top;
  border-style: none;
}


.single-product-item2 .product-favourite a {
    position: absolute;
    height: 25px;
    width: 45px;
    font-size: 14px;
    color: #ccc;
    top: 20px;
    right: 20px;
    z-index: 10;
    line-height: 25px;
    background-color: #ffffff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.single-product-item2 .product-favourite a.active {
    opacity: 1;
    visibility: visible;
}

.single-product-item2:hover .product-favourite a {
    opacity: 1;
    visibility: visible;
}

.single-product-item2 .product-badge.offer-badge {
    background-color: #dc0345;
}

.single-product-item2 .product-badge {
    height: 25px;
    background-color: #000000;
    color: #ffffff;

    font-weight: 700;
    font-size: 12px;
    padding: 0 10px;
    display: inline-block;
    line-height: 25px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}


.single-product-item2 .favme {
    cursor: pointer;
    color: #ccc;
}

.single-product-item2 .favme.active {
    color: #dc0345 !important;
}

.single-product-wrapper2 .product-desc {
    position: relative;
    z-index: 1;
    padding-top: 5px;
    background-color :#ffffffff;
}

.single-product-wrapper2 .product-desc h6 {
    color: #222222;
    margin-bottom: 5px;
    text-align: center;
    font-size: 18px;
}

h6.old-price {
  text-decoration: line-through;
  color: #222222 !important;
  font-size: 14px;
  opacity: 3.5;
}


.single-product-wrapper2 .product-desc h5 {
    color: #222222;
    text-align: center;
    font-size: 18px;
    margin-bottom : 3px;
}

.wellcomemsg{
      font-size: 16px;    
      margin-bottom: 0;
      align-content: center;
      text-align: center;
      color: #262423;
      font-family: "Automali";
      font-weight: 300;
      font-style: normal;
}   


.products-column {
  float: left;
  padding: 10px;
}

.products-left {
  width: 15%;
   padding: 10px;
 
}

.products-right {
  width: 75%;
   padding: 10px;
}


/* Disable On Ipad View */
@media only screen and (min-width : 992px) {

.show-mobile{
    display: none;
}


}

/* Disable On DeskTop View */
@media only screen and (min-width : 1200px) {
    
.show-mobile{
    display: none;
}



}

