@font-face {
    font-family: 'Georgia Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Regular'), url('georgia.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Georgia Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Italic'), url('georgiai.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Georgia Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold'), url('georgiab.woff') format('woff');
    }
    

    @font-face {
    font-family: 'Georgia Bold Italic';
    font-style: normal;
    font-weight: normal;
    src: local('Georgia Bold Italic'), url('georgiaz.woff') format('woff');
    }

body {
    background: #fff;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

h1 {
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 0px;
    line-height: normal;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 20px;
    line-height: normal;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: normal;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    line-height: normal;
}

p {
    line-height: 35px;
    font-size: 18px;
    margin: 0px;
    padding-bottom: 15px;
}

nav{
  border-top: 5px solid #decb62;
/*  position: fixed;*/
  z-index: 99;
  width: 100%;
}
nav .wrapper{
  position: relative;
  max-width: 1200px;
  padding: 5px 30px;
/*  height: 70px;*/
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .logo img{
    width: 50%;
    min-width: 50%;
}
.wrapper .nav-links{
  display: inline-flex;
}
.nav-links li{
  list-style: none;
}
.nav-links li a{
  color: #242424;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}
/*.nav-links li a:hover{
  background: #3A3B3C;
}*/
.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: #077fd0;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
}

@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: #f8e671;
    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;
    z-index: 99;
  }
  /* 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: 14px;
    color: #000;
  }
  .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;
  }
  .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;
  }
}
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;
}


/*-----About Us Section-------*/
.aboutuscontainer{
    margin: 50px 0 0 0;
}
.homeheroimg img{
    width: 100%;
}

.aboutherotext h1{
    font-size: 45px;
    font-family:'Georgia Bold';
    color: #077fd0;
}

.aboutherotext p{
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 27px;
}

.homeheroimg{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.aboutcolorbg{
    background: red;
}

.homeheroimg img{
    position: relative;
    left: -60px;
}

.aboutuscontainer .container{
    background: #f5f5f5;
    border-radius: 15px;
    padding: 30px 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.aboutherotext{
    position: relative;
    left: -30px;
}

/*Product and Distyribution Section*/

.productanddistribution{
    margin: 50px 0 0 0;
}
.productdistriimg img{
    width: 100%;
}

.productdistritext h2{
    font-size: 45px;
    font-family:'Georgia Bold';
    color: #077fd0;
}

.productdistritext p{
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 27px;
}
.productdistriimgB img{
    width: 77%;
    min-width: 75%;
}

.productdistriimgB{
    text-align: right;
}


/*-------Products SEction CSS--------*/
.homeproductsection{
    margin: 50px 0 0 0;
}

.homeproductsection h2{
    font-size: 45px;
    font-family:'Georgia Bold';
    color: #077fd0;
    text-align: center;
}

.homeformcontainer .container{
    background: #f1f1f1;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
    padding: 30px;
}

.contactformaddress ul li i{
    color: #4a66b0;
    font-size: 30px;
}
.contactformaddress ul li{
    margin-bottom: 20px;
}
.contactformaddress{
    background: #fff;
    padding: 50px 20px;
    border-radius: 15px;
}

.contactformaddress ul li span{
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    line-height: 27px;
    vertical-align: top;
}
.contactformaddress ul li a{
    color: #000;
}
.homefromcontainer h2{
    font-size: 45px;
    font-family:'Georgia Bold';
    color: #077fd0;
}

.contactformsmfield{
    width: 100%;
    background: #fff;
    border-radius: 25px;
    padding: 0 10px;
    height: 45px;
    color: #000;
    margin-bottom: 10px;
    outline: none;
    border: none;
}

.contactformbgfield{
    width: 100%;
    background: #fff;
    border-radius: 25px;
    padding: 10px 10px;
    height: 100px;
    color: #000;
    margin-bottom: 10px;
    outline: none;
    border: none;
}

.homeformbtn{
    text-align: center;
}

.homesubmitbtn{
    background: #4a66b0;
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 16px;
    color: #fff;
    border: none;
}
.homesubmitbtn:hover{
    background: #eed638;
    transition: all 0.6s ease-in;
    color: #000;
}

.homesocialmedia{
    text-align: center;
}

.homesocialmedia ul li i{
    color: #4967b6;
}

.footercontainer{
    background: #4a66b0;
    padding: 20px 0;
}

.footertext{
    text-align: center;
}

.footertext p{
    font-size: 20px;
    color: #fff;
    font-family: 'Georgia Regular';
    padding-bottom: 0px;
}

.homeformcontainer{
    margin: 50px 0;
}


.main-category {
      cursor: pointer;
      font-weight: 500;
      color: #333;
    }
    .main-category.active {
      border-bottom: 1px solid #000000;
      color: #000000;
    }
    .sub-category {
      cursor: pointer;
      padding: 6px 15px;
      border-radius: 20px;
      transition: all 0.3s;
      display: inline-block;
    }
    .sub-category.active {
      background-color: #f8e671;
      color: #000;
    }
    .sub-category:hover {
      background-color: #e9ecef;
    }
    .gallery img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s;
      padding-bottom: 00px;
    }
    /*.gallery img:hover {
      transform: scale(1.05);
    }*/
    .subcategories-group { display: none; }
    .subcategories-group.active { display: block; }
    .gallery-group { display: none; }
    .gallery-group.active { 
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; /* Centers items horizontally along the main axis */
        align-items: center; 
    }

#subcategories .subcategories-group{
    text-align: center;
}

.productcard{
    border: 5px solid #eed638;
    border-radius: 15px;
    margin:0 10px 30px 10px;
}

.productbtn a{
    background: #4a66b0;
/*    padding: 10px 20px;*/
    font-size: 13px;
    line-height: 16px;
    font-family: 'Georgia Regular';
    color: #fff;
/*    border-radius: 15px;
    border: 3px solid #eed638;*/
}

.productbtn{
    position: relative;
    bottom: -25px;
    background: #4a66b0;
    padding: 10px 20px;
    border-radius: 15px;
    border: 3px solid #eed638;
    margin: 0 10px;
    text-align: center;
}

.homesocialmedia ul li i:hover{
    color: #eed638;
    transition: all 0.6s ease-in;
}

.contactformaddress ul li i:hover{
    color: #eed638;
    transition: all 0.6s ease-in;
}

.abouttxtlogo{
    width: 3%;
    min-width: 3%;
}

.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -95%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.shine:hover::before, .shine:focus::before {
  -webkit-animation: shine 0.85s;
          animation: shine 0.85s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}


.thankyoutext h2{
    font-size: 45px;
    font-family: "Georgia Bold";
    color: rgb(7, 127, 208);
    text-align: center;
}

.thankyoutext{
    margin: 50px 0 0 0;
}

