@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zain:ital,wght@0,200;0,300;0,400;0,700;0,800;0,900;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bogle&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Flavors&display=swap');
:root{
    --green: #255946;
    --yellow: #efb443;
    --bg: #ebfff8;
    --bg2: #fff6e6;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rethink Sans", sans-serif;
    /* font-family: "Zain", sans-serif; */
    /* font-family: "BBH Sans Bogle", sans-serif; */
    scroll-behavior: smooth;
}

/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f106";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.9em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--yellow);
  }
  #top:active {
    background-color: var(--yellow);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

/********* Header Section Start *********/

#topbar{
    background-color: #f6f5f2;
}
#topbar .t-left span{
    font-size: 15px;
    font-weight: 500;
    color: #6e7673;
    transition: .3s ease-in-out;
}
#topbar .t-left i{
    color: var(--green);
}
#topbar ul{
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
}
#topbar ul li{
    list-style: none;
}
#topbar ul li a{
    text-decoration: none;
    font-size: 16px;
    padding: 5px;
    color: #6e7673;
    transition: .4s ease-in-out;
}
#topbar ul li a:hover{
    color: var(--yellow);
}
#topbar .t-left a:hover span{
    color: var(--yellow) !important;
}

#header {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 999999999999;
  width: 100%;
}

#nav {
  padding-top: 10px;
  background-color: var(--white);
  box-shadow: 0 15px 20px 2px rgba(0, 0, 0, 0.1);
}

/* fixed header animation */
#navs.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeInDown 1s ease forwards;
}

/* ------------------------------------------
   MENU LINKS
------------------------------------------- */
#nav .menu ul {
  justify-content: center;
  display: flex;
}

#nav .menu ul li {
  padding: 10px 25px;
  list-style: none;
}

#nav .menu ul li a {
  opacity: 1;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #6e7673;
  position: relative;
  transition: 0.4s ease-in-out;
}

#nav .menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  border-radius: 30px;
  height: 3px;
  transition: 0.4s ease-in-out;
  background-color: var(--yellow);
}

#nav .menu ul li a:hover::after {
  width: 100%;
}

#nav .menu ul li a:hover {
  color: var(--green);
}

#nav .menu ul li a.active {
  color: var(--green);
}

#nav .menu ul li a.active::after {
  width: 100%;
}

/* ------------------------------------------
   WHATSAPP BUTTON
------------------------------------------- */
#header .h-btn a {
  display: inline-block;
  border-radius: 10px;
  padding: 12px 20px;
  background-color: var(--yellow);
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

#header .h-btn a:hover {
  background-color: var(--green);
}

#header .h-btn h6 {
  color: var(--white);
  opacity: 1;
  font-size: 12px;
}

#header .h-btn h4 {
  color: var(--white);
  font-weight: 700;
  opacity: 1;
  font-size: 16px;
  margin-bottom: 0;
}

#header .h-btn i {
  color: var(--white);
  font-size: 22px;
}

/* ------------------------------------------
   DROPDOWN MENU + ANIMATION
------------------------------------------- */
#nav .drop {
  position: relative;
}

/* hidden state */
#nav .drop .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: var(--green);
  border-radius: 15px;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;

  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

/* visible state */
#nav .drop .sub-menu.show {
  opacity: 1;
  /*visibility: visible;*/
  transform: translateY(0);
  pointer-events: auto;
}

/* inner links */
#nav .drop > .sub-menu ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav .drop > .sub-menu li {
  padding: 0;
}

#nav .drop > .sub-menu li a {
  color: var(--white);
  display: block;
  padding: 12px 20px;
  text-decoration: none;
}

#nav .drop > .sub-menu li a:hover {
  background: var(--yellow);
  color: var(--white);
}


/* Keyframes for fade in down */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-color{
    background-image: none !important;
    background-color: var(--white) !important;
    box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.3);
}
.col-black{
    color: var(--black) !important;
}
.logo-white img{
    filter: none !important;
}
#header .divide img{
    width: 100% !important;
    margin-top: -10px;
}

/********* Header Section End *********/

/********* Banner Section Start *********/

#banner{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 700px;
}
#banner .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
#banner .ban-text{
    width: 700px;
    position: absolute;
    bottom: 100px;
    left: 270px;
    z-index: 2;
}
#banner .ban-text h1{
        font-family: "Zain", sans-serif;
    font-size: 80px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
    line-height: 0.9;
    font-weight: 700;
    color: var(--white);
}
#banner .ban-text p{
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: var(--white);
}
#banner img{
    width: 100%;
    height: 700px;
    object-fit: cover;
}
#banner .b-btn a{
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    background-color: var(--yellow);
    padding: 14px 30px;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: .4s ease-in-out;
}
#banner .b-btn a:hover{
    background-color: var(--green);
    color: var(--white);
}
#banner .carousel-indicators {
    left: auto !important;
    right: 32% !important;
    transform: translateX(-50%);
    bottom: 20px;
    display: flex;
    align-items: center;
}
#banner .carousel-indicators > li{
  border-radius: 0 !important;
}
#banner .carousel-indicators [data-bs-target]{
    border-radius: 0;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    margin: -5px 3px;
}
#banner .carousel-indicators .active{
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
    /* background-color: var(--yellow) !important; */
}
.carousel-control-next, .carousel-control-prev{
    opacity: .9;
}
.carousel-control-next:hover i{
    color: var(--blue) !important;
}
.carousel-control-prev:hover .carousel-control-prev-icon{
    background-color: var(--black);
}
.carousel-control-next, .carousel-control-prev{
    width: 7%;
}
#banner .custom-icon{
    width: 38px !important;
  height: 38px !important;
  border-radius: 5px;
  background-color: var(--black);
  transition: .4s ease-in-out;
}
#banner .custom-icon:hover{
    background-color: var(--green);
}
#banner .custom-icon i {
  color: var(--white) !important;
  font-size: 25px;
  transition: .4s ease-in-out !important;
}


.carousel-control-next:hover .custom-icon {
  background-color: none !important;
}
#banner .carousel-control-next:hover .custom-icon i {
  color: var(--white) !important;
}
.carousel-control-prev:hover .custom-icon {
  background-color: none !important;
}
#banner .carousel-control-prev:hover i {
  color: var(--white) !important;
}
.carousel-item {
  transition: transform 1.5s ease-in-out;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  transition: opacity 0s 1.5s;
}

/********* Banner Section End *********/

/********* About Section Start *********/

#about{
    background-color: var(--bg2);
}
#about h1{
    font-weight: 700;
    font-size: 34px;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 25px;
    color: var(--green);
    font-family: "Zain", sans-serif;
    
}
#about p{
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 0;
    color: #6e7673;
}
#about a{
    position: relative;
    text-decoration: none;
    color: var(--black2);
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: .4s ease-in-out;
}
#about a::after{
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--yellow);
    transition: .4s ease-in-out;
}
#about a:hover{
    color: var(--yellow);
}
#about a:hover::after{
    background-color: var(--green);
}
.head{
    font-family: "Zain", sans-serif;
    font-weight: 600;
    color: var(--green);
    font-size: 45px;
    position: relative;
}
.head::after{
    position: absolute;
    content: "";
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--yellow);
    transition: .4s ease-in-out;
}

/********* About Section End *********/

/********* Why Us Section Start *********/

#whyus .why-icon-wrap{
    display: flex;
    justify-content: center;
}
#whyus .why-icon{
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
}
#whyus .why-icon img{
    height: 55px;
    filter: brightness(0) saturate(100%) invert(90%) sepia(1%) saturate(2063%) hue-rotate(241deg) brightness(113%) contrast(103%);
}
#whyus .why-text p{
    font-size: 18px;
    line-height: 1.1;
}


/********* Why Us Section Start *********/

/********* Grade Section Start *********/

#grade p{
    font-weight: 600;
    font-size: 22px;
    margin-top: -2px;
    font-family: "Zain", sans-serif;
}
#grade h5{
    font-size: 18px;
    color: #6e7673;
    line-height: 1.5;
}

/********* Grade Section End *********/

/********* Use Section Start *********/

#use{
    background-color: var(--bg2);
}
#use h1{
    font-size: 60px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--black2);
    font-family: "Zain", sans-serif;
    line-height: 1;
}
#use h1 span{
    font-weight: 800;
    color: var(--green);
    font-family: "Zain", sans-serif;
}
#use .use-num{
    width: 70px;
    height: 70px;
    background-color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#use .use-num h2{
    font-size: 45px;
    color: var(--yellow);
    font-family: "BBH Sans Bogle", sans-serif;
}
#use .u-right h5{
    text-align: right;
}

/********* Use Section End *********/

/********* Para Section Start *********/

#para{
    /* background-color: var(--green); */
    margin-top: -2px;
    position: relative;
    height: 700px;
    overflow: hidden;
}
#para .para-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 2;
}
#para .para-text h1{
    font-family: "Zain", sans-serif;
    font-size: 75px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    color: var(--white);
}
#para .para-text h5{
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    font-size: 23px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--white);
}
#para .para-btn a{
    text-decoration: none;
    font-size: 18px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 14px 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    background-color: var(--yellow);
    transition: .4s ease-in-out;
}
#para .para-btn a:hover{
    background-color: var(--green);
}
#para video{
    width: 100%;
    height: 700px;
    z-index: 1;
}

/********* Para Section Start *********/

/********* Why Section Start *********/

#why h1{
    position: relative;
    font-family: "Zain", sans-serif;
    font-size: 55px;
    font-weight: 700;
    color: var(--green);
}
/* #why h1::after{
    position: absolute;
    content: "";
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: var(--yellow);
} */
#why p{
    font-size: 18px;
    color: #6e7673;
}
#why .w-btn a{
    text-decoration: none;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 50px;
    padding: 15px 35px;
    letter-spacing: 1px;
    background-color: var(--yellow);
    transition: .4s ease-in-out;
}
#why .w-btn a:hover{
    background-color: var(--green);
}

/********* Why Section End *********/

/********* Benifits Section Start *********/

#benifits{
    background-color: var(--bg);
}
#benifits h1{
    font-size: 70px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--black2);
    font-family: "Zain", sans-serif;
    line-height: 0.8;
}
#benifits h4{
    text-transform: uppercase;
    color: var(--black);
    font-family: "Zain", sans-serif;
    font-weight: 700;
}
#benifits p{
    line-height: 1.3;
    font-size: 14px;
}
#benifits h1 span{
    font-weight: 800;
    color: var(--green);
    font-family: "Zain", sans-serif;
}
#benifits .ben-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: var(--green);
}
#benifits .ben-icon img{
    width: 70px;
    height: auto;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(109deg) brightness(107%) contrast(103%);
}

/********* Benifits Section End *********/

/********* Recipes Section Start *********/

/* #videos{
    height: 720px;
    overflow: hidden;
} */
#recipe h5{
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
    overflow: hidden;
    font-size: 18px;
    color: var(--black);
}
#recipe .r-img-wrap{
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #d2d2d2;
}
#recipe .r-img-wrap .youtube{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: auto;
    opacity: 0.8;
    transition: .3s ease-in-out;
}
#recipe .r-img-wrap:hover .youtube{
    opacity: 1;
}
#recipe .r-img-wrap .you-thumb{
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    transition: .3s ease-in-out;
}
#recipe .r-img-wrap:hover .you-thumb{
    transform: scale(1.05);
}

#recipe span{
    font-size: 14px;
}
#recipe a{
    text-decoration: none;
}
#recipe a:hover h5{
    color: var(--green);
}
#recipe span i{
    vertical-align: middle;
    font-size: 8px;
    color: var(--green);
    margin: 0 6px;
    margin-bottom: 2px;
}
#recipe .r-btn a{
    text-decoration: none;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 50px;
    padding: 15px 35px;
    letter-spacing: 1px;
    background-color: var(--yellow);
    transition: .4s ease-in-out;
}
#recipe .r-btn a:hover{
    background-color: var(--green);
}

/********* Recipes Section End *********/

/********* Newsletter Section Start *********/

#newsletter{
    background-color: var(--bg2);
}
#newsletter .n-btn{
    background-color: var(--green);
    border-color: var(--green);
    transition: .4s ease-in-out;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
#newsletter .n-btn:hover{
    background-color: var(--yellow);
    border-color: var(--yellow);
}
#newsletter .form-control{
    border-color: var(--yellow);
}
#newsletter .form-control:focus{
    box-shadow: none;
    border-color: var(--green);
}

/********* Newsletter Section End *********/

/********* Footer Section Start *********/

.divide2{
    margin-top: -16px;
    margin-bottom: -3px;
}
.divide2 img{
    width: 100%;
}

#footer{
    background-color: var(--green);
}
#footer p{
    color: #B5C3BE;
    font-size: 16px;
    font-weight: 500;
}
#footer h4{
    color: var(--white);
    font-size: 27px;
    font-weight: 400;
    font-family: "Flavors", cursive;
    letter-spacing: 1px;
}
#footer h5{
    font-size: 28px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 30px;
    /* text-transform: uppercase; */
    font-family: "Zain", sans-serif;
}
#footer .link li{
    list-style: none;
    margin-bottom: 10px;
}
#footer .link li:last-of-type{
    margin-bottom: 0;
}
#footer .link li a{
    color: #B5C3BE;
    text-decoration: none;
    font-weight: 500;
    transition: .4s ease-in-out;
}
#footer .link li a:hover{
    color: var(--yellow);
}
#footer .link li a i{
    margin-right: 10px;
    transition: .4s ease-in-out;
}
#footer .link li a:hover i{
    color: var(--white);
    margin-right: 12px;
}
#footer .f-icon{
    color: var(--yellow);
    margin-right: 10px;
}
#footer .f-text a{
    text-decoration: none;
    color: #B5C3BE;
    transition: .4s ease-in-out;
}
#footer .f-text a:hover{
    color: var(--white);
}
#footer .f-wrap{
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #4b9076;
}
#footer .f-wrap:first-of-type{
    padding-top: 0;
}
#footer .f-wrap:last-of-type{
    padding-bottom: 0;
    border-bottom: 0;
}
#footer .logo img{
    filter: brightness(0) saturate(100%) invert(88%) sepia(100%) saturate(51%) hue-rotate(148deg) brightness(110%) contrast(98%);
}
#footer .social{
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}
#footer .social li{
    list-style: none;
}
#footer .social li a{
    text-decoration: none;
    font-size: 20px;
    padding: 5px;
    color: var(--white);
    transition: .4s ease-in-out;
}
#footer .social li a:hover{
    color: var(--yellow);
}
#copy{
    background-color: var(--yellow);
    font-size: 15px;
}

/********* Footer Section End *********/

/********* Inner Banner Section Start *********/

#inner-banner{
    position: relative;
    height: 450px;
    overflow: hidden;
    /* margin-top: 135px; */
}
#inner-banner .inner-ban-text{
    position: absolute;
    z-index: 2;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#inner-banner .inner-ban-text h1{
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-weight: 700;
}
#inner-banner .inner-ban-text .bread{
    text-align: center;
    font-size: 17px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: var(--white);
    font-weight: 500;
}
#inner-banner .inner-ban-text a{
    color: var(--yellow);
    font-weight: 700;
    text-decoration: none;
}
#inner-banner .inner-ban-text i{
    font-size: 14px;
}
#inner-banner .inner-ban-text a:hover{
    text-decoration: underline;
}
#inner-banner .inner-ban-text span{
    opacity: 0.8;
}
#inner-banner{
    position: relative;
}
#inner-banner .over{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 89, 70, 0.7);
}


/********* Inner Banner Section End *********/

/********* Inner Content Section Start *********/


#inner-content h3{
    font-size: 26px;
    line-height: 1.4;
}
#inner-content p{
    font-size: 19px;
}
#inner-cer .cer-wrap img{
    padding: 15px;
    margin: 0 10px;
    background-color: var(--bg2);
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid var(--yellow);
    border-radius: 5px;
    transition: .4s ease-in-out;
}
#inner-cer .cer-wrap{
    margin: 0 10px;
}
#inner-cer a:hover img{
    border-color: var(--green);
    box-shadow: 0 0 25px 0 #4d9e80c7;
}


/********* Inner Content Section End *********/


/********* Inner About Page Start *********/


.a-img-wrap {
  position: relative;
}

.a-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.a-img-wrap .pn-wrap {
  position: absolute;
  top: 10px;
  right: -30px;
  width: 200px;
  z-index: 2;
  animation: up 5s infinite linear both;
}

@keyframes up{
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
}
    100% {
        transform: scale(1);
    }
}


/********* Inner About Page End *********/

/********* Inner Packaging Page Start *********/


#inner-pack-section h1{
    line-height: 1.4;
    color: var(--green);
    margin-bottom: 30px;
    text-align: center;
}
#inner-pack-section p{
    font-size: 19.5px;
    text-align: center;
}
#in-pack-section table{
    border-collapse: separate;
    border-spacing: 15px;
    width: 100%;
}
#in-pack-section td{
    border: 1px solid var(--yellow);
    border-spacing: 10px;
    padding: 15px 20px;
    background-color: var(--bg2);
    margin: 10px;
    font-size: 18px;
}
#in-pack-section h5{
    font-size: 30px;
    color: var(--green);
}
#in-pack-section img{
    border-radius: 30px 120px 30px 30px;
    border-right: 20px solid var(--yellow);
    border-top: 20px solid var(--yellow);
    box-shadow: 5px 0 15px 0 rgba(0, 0, 0, 0.25);
}


/********* Inner Packaging Page End *********/

/********* Inner Products Page Start *********/


#inner-pro-section h1{
    line-height: 1.4;
    color: var(--green);
    margin-bottom: 30px;
    text-align: center;
    font-size: 31px;
}
#inner-pro-section p{
    font-size: 19.5px;
    text-align: center;
}
#inner-pro-section2{
    background-color: var(--bg);
}
#inner-pro-section2 .pro-img-wrap{
    position: sticky;
    top: 140px;
}
/* #inner-pro-section2 .pro-img-wrap img{
    border-radius: 20px;
    box-shadow: 0 10px 25px 0 rgba(37, 89, 70, 0.2);
} */
#inner-pro-section2 h1{
    color: var(--black);
    font-family: "Zain", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}
#inner-pro-section2 h4{
    color: var(--green);
    font-family: "Zain", sans-serif;
    font-weight: 700;
    font-size: 27px;
}
#inner-pro-section2 p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}
#inner-pro-section2 ul li{
   list-style: none;
   margin-bottom: 10px;
   font-size: 18px;
}
#inner-pro-section2 ul li span{
   font-weight: 700;
   margin-right: 7px;
}
#inner-pro-section2 ul{
    margin-bottom: 20px !important;
}
#inner-pro-section2 ul li i{
    margin-right: 10px;
    color: var(--green);
    font-size: 16px;
}
#inner-pro-section2 ol li i{
    margin-right: 10px;
    color: var(--yellow);
    font-size: 14px;
}
#inner-pro-section2 ol li{
    margin-bottom: 5px;
}
#inner-pro-section2 .p-btn a{
    padding: 12px 30px;
    display: inline-block;
    background-color: var(--green);
    color: var(--white);
    font-size: 18px;
    border-radius: 50px;
    border: 2px solid var(--yellow);
    text-decoration: none;
    transition: .3s ease-in-out;
}
#inner-pro-section2 .p-btn a:hover{
    background-color: var(--yellow);
    color: var(--black);
}
#inner-pro-section3 table{
    font-size: 18px;
    background-color: var(--bg2) !important;
    border-color: var(--yellow);
}
#inner-pro-section3 .table>:not(caption)>*>*{
    background: transparent;
}
#inner-pro-section3 table th,
#inner-pro-section3 table td{
    padding: 12px;
    text-align: center;
}
#inner-pro-section3 table th{
    font-weight: 700;
}
#inner-pro-section3 table tr td:first-of-type{
    font-weight: 500;
}


/********* Inner Products Page End *********/

/********* Inner Contact Page Start *********/

#in-con .in-con-wrap .in-con-icon{
    width: 80px;
    height: 80px;
    border-radius: 15px;
    font-size: 28px;
    margin-right: 15px;
    background-color: var(--green);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}
#in-con .in-con-wrap .in-con-det h5{
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
}
.in-con-bg{
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: -1px 5px 50px -15px #a9a9a9;
}
    #in-con .form {
      background: transparent;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    #in-con .form-control:focus {
      box-shadow: none;
      border-color: var(--yellow);
    }

    #in-con .btn-custom {
      background-color: var(--yellow);
      color: var(--black);
      margin-top: 10px;
      display: inline;
      padding: 14px 22px !important;
      border-radius: 10px;
      text-transform: uppercase;
    }

    #in-con .btn-custom:hover {
      background-color: var(--green);
      color: var(--white);
    }
    #in-con .form{
        border-radius: 0;
    }
    #in-con .form-control{
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #d1d1d1;
        border-radius: 0;
    }
.in-con-form-left h1{
    font-weight: 700;
    color: var(--green);
    font-size: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.in-con-form-left p{
    font-size: 19px;
}
.in-con-form-right h2{
    font-weight: 700;
    color: var(--green);
    font-size: 35px;
    text-transform: uppercase;
}
#in-con iframe{
    margin-bottom: -7px;
}
.in-con-form-left h6 span {
    color: var(--yellow);
    font-weight: 700;
}
.in-con-form-left h6{
    line-height: 1.5;
    font-size: 18px;
}
.direct-box {
    background: var(--green);
    width: 100%;
    padding: 30px 20px;
    box-shadow: 1px 15px 25px 1px #bbbbbb;
}

h3.direct-header {
    font-size: 24px;
    color: #ffffff;
    text-transform: capitalizE;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
h5.get-cap {
    color: var(--yellow);
    font-size: 16px;
    margin-bottom: 15px;
}

p.direct-para {
    font-size: 14px;
    color: #585656;
    line-height: 26px;
    text-align: justify;
     margin-bottom: 1.25rem;
}

.ico-direct {
    color: var(--yellow);
    margin-right: 10px;
}

.ico-direct-1 {
    color: #ffffff !important;
    margin-right: 28px;
    font-size: 20px;
    transform: translateY(3px);
}

.direct-2 {
    margin: 8px 0;
}

h4.direct-text {
    color: #e1e1e1;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    line-height: 23px;
}

.direct-1.d-flex {
    margin: 10px 0 10px;
}

/********* Inner Contact Page End *********/

/********* Inner Global Page Start *********/

#in-globe-section h2{
    font-weight: 700;
    color: var(--green);
    font-size: 40px;
    margin-bottom: 25px;
}
#in-globe-section p{
    font-size: 18.5px;
    margin-bottom: 25px;
}
#in-globe-section img{
    width: 100%;
    height: auto;
    border-radius: 30px;
}

/********* Inner Global Page End *********/



.offcanvas {
    width: 250px !important;
    height: 100vh;
}
.offcanvas-backdrop.show{
    opacity: .7;
}
.custom-toggler {
    border: none;
    background: transparent;
    padding: 10px;
}
.custom-toggler:focus{
    box-shadow: none;
}

.hamburger {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    transition: all 0.4s ease-in-out;
}

@media screen and (max-width: 1200px) {
  #topbar{
    display: none;
  }
  #header{
    top: 0;
  }
  .divide{
    display: none;
  }
  .divide2{
    display: none;
  }
  #inner-banner{
    height: 300px;
    margin-top: 40px;
  }
  #nav .logo img{
    height: 55px;
  }
  #nav .h-btn a{
    display: block;
  }
  #use .u-right h5{
    text-align: left;
  }
  #use h1{
    font-size: 40px;
  }
  #why h1{
    font-size: 35px;
  }
  #para .para-text h1{
    font-size: 35px;
  }
  #para .para-text{
    width: 90%;
    z-index: 2;
}
#para{
    height: auto;
    
}
#para video{
    width: 800px !important;
    height: 300px;
}
#para .para-text h5{
    font-size: 18px;
}
#grade p{
    line-height: 1.2;
}
#grade h6{
    margin-bottom: 8px !important;
}
.head{
    font-size: 30px;
}
.a-img-wrap .pn-wrap {
  top: 30px;
  right: 10px;
  width: 100px;
}
#inner-cer .cer-wrap{
    margin: 10px 0;
}
#inner-pro-section h1{
    font-size: 23px;
}
#inner-pro-section p{
    font-size: 18px;
}
#in-pack-section h5{
    font-size: 25px;
}
#in-pack-section td{
    padding: 15px;
    font-size: 16px;
}
.in-con-form-right h2{
    font-size: 26px;
}
#in-globe-section h2{
    font-size: 30px;
}
#in-globe-section p{
    font-size: 18px;
}
#in-globe-section img{
    border-radius: 15px;
}
#footer h5{
    margin-bottom: 20px;
}
#footer .social{
    margin-top: 5px;
}
#banner .ban-text{
    width: 75%;
    top: 47%;
    left: 54%;
    transform: translate(-50%, -50%);
}
#banner .ban-text h1{
    font-size: 25px;
    line-height: 1.1;
}
#banner{
    height: auto;
}
#banner img{
    height: 400px;
}
#banner .ban-text p{
    font-size: 15px;
}
#banner .b-btn a{
    font-size: 15px;
    padding: 10px 20px;
}
#banner .carousel-indicators{
    display: none;
}
#whyus .why-text p{
    font-size: 16px;
}