@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/***** General CSS *****/

html {
  overflow-x: hidden;
}

body {
  word-break: break-word;
  font: 15px/25px "Poppins", sans-serif;
  color: #393939;
  overflow-x: hidden;
}

.slicknav_nav a:hover {
    background: #43ae23;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

i {
  font-family: FontAwesome !important;
  font-style: normal;
}

i::before {
  font-family: FontAwesome !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

.heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  margin: 0 0 50px 0;
  position: relative;
  z-index: 9;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  border-radius: 5px;
  border: none;
  overflow: hidden;
  padding: 0 30px;
  background-color: #43ae23;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  width: 0;
  background-color: #000;
  border-radius: 100px;
  position: absolute;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon,
.theme1:focus span.theme1-icon {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  width: 0;
  color: #43ae23;
  border-radius: 100px;
  overflow: hidden;
  font-size: 14px;
  background-color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon i,
.theme1:focus span.theme1-icon i {
  height: 30px;
  width: 30px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  border-radius: 5px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  border-bottom: 1px solid #43ae23;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover::before {
  width: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  color: #43ae23;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.theme3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 5px;
  overflow: hidden;
  padding: 0 20px;
  border: none;
  background-color: #112912;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 span.theme3-txt {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.theme3 span.theme3-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  width: 0;
  background-color: #000;
  border-radius: 100px;
  position: absolute;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover span.theme3-icon,
.theme3:focus span.theme3-icon {
  height: 100%;
  width: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 span.theme3-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  width: 0;
  color: #43ae23;
  border-radius: 100px;
  overflow: hidden;
  font-size: 14px;
  background-color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover span.theme3-icon i,
.theme3:focus span.theme3-icon i {
  height: 30px;
  width: 30px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 100%;
  background-color: #44af23;
  border-radius: 100px;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme4:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4 span.theme4-txt,
.theme4 span.theme4-txt-ex {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme4 span.theme4-txt-ex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 100px;
  overflow: hidden;
  background-color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4:focus span.theme4-txt-ex {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: 110px;
  line-height: 110px;
  color: #fff;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 55px;
  line-height: 65px;
  color: #000;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
}

h3 {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat";
  font-weight: 400;
  margin: 0;
  opacity: 0.7;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*Header Css Starts */

header {
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.topSec,
.menuSec {
  width: 100%;
}

.menuSec {
  padding: 0px 0;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.menu-box ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  color: #000;
  font-weight: 600;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a:hover {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}

.menu-box ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
  border-bottom: 1px solid #43ae23;
  transition: ease-out;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.menu-box ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  height: 0;
  background-color: #43ae23;
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::after {
  height: 100%;
  transition: ease-out;
  transition-delay: 0.5s;
  transition-duration: 0.5s;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;
  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
}

.menu-box li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menu-box ul ul ul {
  left: 100%;
  top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0px;
}

.goog-text-highlight {
  background: transparent !important;
  box-shadow: transparent !important;
}

#google_translate_element select {
  background: #f4f4f4;
  color: #000;
  border: none;
  font-weight: 400;
  border-radius: 5px;
  padding: 0 30px 0 10px;
  height: 40px;
  margin: 0 !important;
  cursor: pointer;
}

.header-search-main form {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  position: relative;
  width: 100%;
}

.header-search-main form button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 100px;
  overflow: hidden;
  position: absolute;
  padding: 0;
  top: 20%;
  left: 1%;
}

.header-search-main form input {
  height: 40px;
  background-color: #f4f4f4;
  border: 1px solid #0000;
  border-radius: 5px;
  padding: 0 0 0 35px;
  width: 100%;
  font-size: 14px;
  line-height: 1;
  color: #000;
  outline: none;
}

.header-search-main form input::placeholder {
  font-size: 14px;
  line-height: 1;
  color: #6f6f6f;
  text-transform: uppercase;
}

.header-search-main form button i {
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  margin: 0 auto;
}

.header-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.header-logo a img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.header-tran-acc-main {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.header-tran {
  position: relative;
}

div#google_translate_element i {
  position: absolute;
  top: 30%;
  right: 1%;
}

.header-acc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}

.header-acc a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.goog-te-gadget {
  font-size: 0 !important;
}

body > .skiptranslate,
.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt-tt {
  display: none !important;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
}

/*Header Css Ends */

/*Banner Sec Css Starts */

section.banner-sec {
  height: 100vh;
  background-image: url("../images/ban-bg.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 80px;
  position: relative;
  width: 95%;
  margin: 0 auto;
}

section.banner-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0) 0%,
    rgba(17, 41, 18, 1) 100%
  );
}

section.banner-sec .container-fluid,
section.banner-sec .row {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.nav-thumb {
  background: #fff;
  border: 4px solid #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  height: 190px;
}

.nav-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

section.banner-sec .slick-current,
section.banner-sec .slick-active {
  opacity: 1;
}

section.banner-sec .slick-slide {
  margin: 0;
}

.nav-thumb {
  margin: 20px 0;
}

.banner-txt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 90%;
  margin: 0 auto 0 0;
}

.banner-txt p {
  color: #fff;
}

.svg_box_main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 60%;
  height: 250px;
}

.svg_box {
  position: relative;
  gap: 50px;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #ffffffd5;
  border-left: 0;
  border-bottom: 0;
  border-radius: 100px;
  overflow: hidden;
  animation-name: svg_box1;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes svg_box1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.svg_box::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 80%;
  width: 80%;
  border: 1px solid #ffffffd5;
  border-right: 0;
  border-top: 0;
  border-radius: 100px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: svg_box2;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes svg_box2 {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.svg_box a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  font-size: 40px;
  color: #43ae23;
  background-color: #fff;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.svg_box_main h5 {
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-transform: capitalize;
}

.banner-box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
}

.banner-txt-main {
  width: 100%;
}

/*Banner Sec Css Ends */

/*Inner Banner Sec Css Starts */

section.inner-banner-sec {
  height: 500px;
  width: 100%;
  padding: 0;
}

section.inner-banner-sec .banner-txt {
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}

section.inner-banner-sec .banner-txt h1 {
  font-size: 90px;
  line-height: 95px;
}

section.inner-banner-sec::before {
  background: radial-gradient(
    circle,
    rgb(17 41 18 / 59%) 0%,
    rgba(17, 41, 18, 1) 100%
  );
}

/*Inner Banner Sec Css Ends */

/*About Us Sec Css Starts */

section.about-sec {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0 150px 0;
}

section.about-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  height: 100%;
  width: 100px;
  background-color: #43ae23;
  z-index: -1;
}

.about-txt-main {
  padding: 40px 30px 40px 180px;
  background-color: #f1f1f1;
}

.about-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  position: relative;
  z-index: 9;
}

.about-left {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 48%;
  /* height: 100%; */
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  margin: 10px auto 0 70px;
}

.about-left::before {
  content: "";
  position: absolute;
  top: 28%;
  right: 80%;
  width: 25%;
  border-top: 2px solid #43ae23;
}

.about-ex-main {
  width: 5%;
  /* height: 100%; */
}

.about-ex {
  width: 100%;
  height: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
  padding: 40px 0 0 0;
}

.about-img-main {
  width: 95%;
  /* height: 100%; */
}

.about-ex h5 {
  font-family: "Montserrat";
  font-size: 12px;
  line-height: 1;
  writing-mode: sideways-lr;
  text-transform: uppercase;
  font-weight: 500;
}

.about-ex h6 {
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 1;
  color: #43ae23;
  font-weight: 500;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 475px;
  width: 100%;
}

.about-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*About Us Sec Css Ends */

/*Product Sec Css Starts */

section.pro-sec {
  background-image: url("../images/pro-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  width: 95%;
  margin: 0 auto;
}

section.pro-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #112912e0;
}

.pro-heading h2 {
  color: #fff;
}

.pro_slider .slick-active {
  opacity: 1;
}

.pro_slider .slick-slide {
  margin: 0px 10px;
}

.pro-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 10px 20px 10px;
  background-color: #fff;
}

.pro-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 235px;
  width: 100%;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
}

.pro-card-img:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.pro-card-img a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.pro-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  object-fit: cover;
  transition: ease-in;
  transition-duration: 0.5s;
}

.pro-card-img:hover img {
  scale: 1.2;
  transition: ease-out;
  transition-duration: 0.5s;
}

.pro-card-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.pro-card-txt a:hover {
  transition: ease-in;
  transition-duration: 0.5s;
}

.pro-card-txt a:hover h5 {
  color: #43ae23;
  transition: ease-out;
  transition-duration: 0.5s;
}

.pro-card-txt h5 {
  color: #000;
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  transition: ease-out;
  transition-duration: 0.5s;
}

/*Product Sec Css Ends */

/*Choose Sec Css Starts */

section.choose-sec .about-left {
  margin: 10px 0 70px auto;
}

section.choose-sec .about-ex h5 {
  writing-mode: sideways-rl;
}

section.choose-sec .about-txt-main {
  padding: 40px 180px 40px 30px;
}

section.choose-sec::before {
  display: none;
}

section.choose-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 80%;
  height: 100%;
  width: 100px;
  background-color: #43ae23;
  z-index: -1;
}

section.choose-sec .about-left::before {
  right: 0;
  left: 85%;
  top: 35%;
  width: 18%;
}

/*Choose Sec Css Ends */

/*Testi Sec Css Starts */

section.testi-sec {
  background-image: url(../images/testi-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
  width: 95%;
  margin: 0 auto;
}

section.testi-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #112912e0;
}

.testi_slider .slick-slide {
  margin: 0px 10px;
}

.testi_slider .slick-active {
  opacity: 1;
}

.testi-card-main {
  margin: 0 0 30px 0;
}

.testi-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  /* text-align: center; */
  gap: 20px;
  padding: 20px 20px 40px 20px;
  background-color: #fff;
  border-radius: 5px;
  /* overflow: hidden; */
}

.testi-user-main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  /* overflow: hidden; */
  margin: 0 auto;
}

.testi-user-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  border: 2px solid #000;
  border-radius: 100px;
  overflow: hidden;
}

.testi-user-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.testi-user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  border-radius: 100px;
  overflow: hidden;
  background-color: #fff;
  position: absolute;
  top: 40%;
  left: 83%;
  padding: 5px;
  box-shadow: 0 0 20px 0 #00000040;
}

.testi-user-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.testi-heading h2 {
  color: #fff;
}

.testi-txt p {
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
}

.testi-user-txt {
  height: 60px;
  width: 60%;
  position: absolute;
  top: 90%;
  left: 0;
}

.testi-user-txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 0 0, 95% 100%);
  background-color: #225514;
  height: 30px;
  width: 30px;
}

.testi-user-txt h5 {
  background-color: #43ae23;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 10px;
  margin: 0 20px 0 0;
  z-index: 9;
  clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
  color: #fff;
  font-size: 27px;
  line-height: 35px;
  text-transform: uppercase;
  font-weight: 400;
  width: 100%;
  height: 100%;
}

.testi-user-txt h5::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 69%;
  background-color: #fff;
  height: 5px;
  width: 28%;
}

.testi_slider ul {
  bottom: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testi_slider li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 60px;
  border-radius: 2px;
  overflow: hidden;
}

.testi_slider ul li button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-color: #fff;
  padding: 5px;
  transition: ease-in-out;
  transition-duration: 0.5s;
}

.testi_slider ul li button::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testi_slider ul li button:hover {
  background-color: #43ae23;
  transition: ease-out;
  transition-duration: 0.5s;
}

.testi_slider ul li.slick-active button {
  background-color: #43ae23;
  transition: ease-in;
  transition-duration: 0.5s;
}

.testi_slider ul li.slick-active button:hover {
  background-color: #505050;
  transition: ease-in;
  transition-duration: 0.2s;
}

/*Testi Sec Css Ends */

/*Recipes Sec Css Starts */

section.recipes-sec {
  width: 95%;
  margin: 0 auto;
}

.recipes-card {
  position: relative;
  transition: ease-in;
  transition-duration: 0.5s;
  margin: 0 0 20px 0;
}

.recipes-card:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.recipes-card-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.recipes-card-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0000008c;
  transition: ease-in;
  transition-duration: 0.5s;
}

.recipes-card:hover .recipes-card-img::before {
  background-color: #00000048;
  transition: ease-out;
  transition-duration: 0.5s;
}

.recipes-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.recipes-nav .recipes-card-img {
  height: 265px;
}

.recipes-for .recipes-card-img {
  height: 645px;
}

.recipes-card-video-img-main {
  position: relative;
}

.recipes-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 20px;
  height: 100%;
  width: 100%;
}

.recipes-card-link ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.recipes-card-link ul li a {
  position: relative;
  line-height: 1;
  font-family: "Montserrat";
  color: #000;
  font-weight: 500;
  text-transform: uppercase;
  transition: ease-in;
  transition-duration: 0.5s;
}

.recipes-for .recipes-card-link ul li a {
  font-size: 15px;
}

.recipes-nav .recipes-card-link ul li a {
  font-size: 12px;
}

.recipes-card:hover .recipes-card-link ul li a {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.recipes-card-link ul li a:hover {
  color: #000 !important;
  transition: ease-out;
  transition-duration: 0.5s;
}

.recipes-card-link ul li:nth-child(2) a {
  padding: 0 30px;
}

.recipes-card-link ul li:nth-child(2) a::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: #d7d7d7;
  border-radius: 100px;
}

.recipes-card-link ul li:nth-child(2) a::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 0;
  height: 12px;
  width: 12px;
  background-color: #d7d7d7;
  border-radius: 100px;
}

.recipes-card-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  background-color: #fff;
  position: relative;
  z-index: 9;
  box-shadow: 0 0 20px 0 #0000002e;
  transition: ease-in;
  transition-duration: 0.5s;
}

.recipes-card:hover .recipes-card-txt-main {
  background-color: #43ae23;
  transition: ease-out;
  transition-duration: 0.5s;
}

.recipes-for .recipes-card-txt-main {
  width: 90%;
  padding: 40px;
  margin: -70px auto 20px auto;
}

.recipes-nav .recipes-card-txt-main {
  width: 100%;
  padding: 10px 20px 20px 20px;
  margin: 0;
  box-shadow: 0 0 0 0 #0000;
}

.recipes-card-txt h3 {
  font-weight: 500;
  text-transform: uppercase;
  transition: ease-in;
  transition-duration: 0.5s;
}

.recipes-card:hover .recipes-card-txt h3 {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.recipes-for .recipes-card-txt h3 {
  font-size: 45px;
  line-height: 50px;
}

.recipes-nav .recipes-card-txt h3 {
  font-size: 20px;
  line-height: 25px;
}

.recipes-nav .slick-active {
  opacity: 1;
}

.recipes-nav .svg_box {
  width: 120px;
  height: 120px;
}

.recipes-nav .svg_box a {
  height: 70px;
  width: 70px;
  font-size: 20px;
}

.recipes-video a h5 {
  font-family: "Montserrat";
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-transform: capitalize;
}

.recipes-nav .slick-slide,
.recipes-for .slick-slide {
  margin: 0 10px;
}

/*Recipes Sec Css Ends */

/*Hassle Sec Css Starts */

section.hassle-sec {
  position: relative;
}

section.hassle-sec::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 80%;
  height: 450px;
  background-color: #062213;
  border-radius: 20px;
}

.hassle-heading h2 {
  color: #fff;
}

.hassle-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 #00000036;
  width: 100%;
  /* height: 320px; */
  position: relative;
  z-index: 9;
  background-color: #fff;
}

.hassle-card-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hassle-card-txt h4 {
  font-size: 26px;
  line-height: 35px;
  text-transform: uppercase;
}

/*Hassle Sec Css Ends */

/*Membership Sec Css Starts */

section.membership-sec {
  position: relative;
}

section.membership-sec::before {
  content: "";
  position: absolute;
  bottom: 25%;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 90%;
  height: 130px;
  background-color: #062213;
  border-radius: 20px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.membership-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 0 20px 0 #00000026;
  margin: 60px 0;
  background-color: #fff;
}

.membership-card-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 90px;
  width: 100%;
  background-color: #44af23;
}

.membership-card-heading h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 35px;
  line-height: 40px;
}

.membership-card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  width: 100%;
}

.membership-card-price h4 {
  font-family: "Poppins";
  font-size: 50px;
  line-height: 55px;
  font-weight: 200;
}

.membership-card-price h6 {
  font-family: "Poppins";
  font-size: 12px;
  line-height: 1;
  font-weight: 200;
}

.membership-card-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
  padding: 0 30px;
}

.membership-card-list {
  width: 100%;
}

.membership-card-list ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.membership-card-list ul li {
  width: 100%;
}

.membership-card-list ul li .membership-card-list-item {
  position: relative;
  height: 50px;
  background-color: #f1f1f1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 0 0 0 90px;
}

.membership-card-list ul li .check::before,
.membership-card-list ul li .no-check::before {
  font-family: "Font Awesome 7 Pro";
  font-size: 25px;
  position: absolute;
  top: 10%;
  left: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}

.membership-card-list ul li .check::before {
  content: "\f00c";
  color: #44af23;
}

.membership-card-list ul li .no-check::before {
  content: "\f00d";
  color: rgb(255, 0, 0);
}

.membership-card-list ul li .membership-card-list-item p {
  font-size: 16px;
  line-height: 30px;
}

.membership-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 10px 20px 20px 20px;
}

.membership_slider .slick-slide {
  scale: 0.9;
  opacity: 1;
}

.membership_slider .slick-current {
  scale: 1.1;
}

/*Membership Sec Css Ends */

/*Footer Sec Css Starts */

footer {
  background-color: #112912 !important;
}

.footer-box {
  width: 95%;
  margin: 0 auto;
}

.footer-sub-main,
footer {
  padding: 30px;
  background-color: #43ae23;
}

.footer-sub-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.footer-sub-txt h4 {
  font-size: 70px;
  line-height: 75px;
  color: #fff;
}

.footer-sub-txt p {
  color: #fff;
  opacity: 1;
}

.footer-sub-form form {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 50px;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.footer-sub-form form input {
  height: 100%;
  width: 100%;
  border: none;
  background-color: #0000;
  padding: 0 150px 0 20px;
}

.footer-sub-form form button {
  position: absolute;
  top: 0;
  right: 0;
}

.footer-logo-main {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 20px;
}

.footer-logo-txt p {
  color: #fff;
  opacity: 1;
}

.footer-link-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 30px;
  width: 70%;
  height: 100%;
  margin: 0 auto;
}

.footer-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 0 5px 0;
  border-bottom: 2px solid #fff;
}

.footer-heading::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 45%;
  border-bottom: 3px solid #43ae23;
  z-index: 9;
}

.footer-heading h5 {
  font-size: 25px;
  line-height: 30px;
  color: #fff;
  text-transform: uppercase;
}

.footer-contact ul,
.footer-menu ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.footer-contact ul {
  gap: 40px;
}

.footer-menu ul {
  gap: 10px;
}

.footer-menu {
  width: 100%;
}

.footer-help-box {
  width: 100%;
}

.footer-help-box a .footer-help-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background-color: #43ae23;
  border-radius: 5px;
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-help-box a .footer-help-main:hover {
  background-color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-help-icon {
  height: 50px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-help-box a .footer-help-main:hover .footer-help-icon {
  background-color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-help-box a .footer-help-main:hover .footer-help-icon i {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-help-icon i {
  font-size: 25px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-help-txt {
  width: 80%;
}

.footer-help-txt p {
  color: #fff;
  font-size: 18px;
  line-height: 25px;
  font-family: "Montserrat";
  text-transform: uppercase;
  opacity: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-help-box a .footer-help-main:hover .footer-help-txt p {
  color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-help-bottom-txt p {
  color: #fff;
  opacity: 1;
}

.footer-contact ul li a,
.footer-menu ul li a {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 15px;
}

.footer-contact ul li a p,
.footer-menu ul li a {
  font-size: 14px;
  line-height: 20px;
  font-family: "Montserrat";
  text-transform: capitalize;
  color: #fff;
  opacity: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-contact ul li a:hover p {
  padding: 0 0 0 10px;
}

.footer-menu ul li a:hover {
  padding: 0 0 0 10px;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-contact ul li a i {
  color: #fff;
  font-size: 14px;
}

.footer-bottom-txt-socials-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-main {
  background-color: #2a7115 !important;
  padding: 10px 30px;
}

.footer-bottom-txt p {
  color: #fff;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat";
  opacity: 1;
  text-transform: uppercase;
}

.footer-bottom-txt p a {
  position: relative;
  color: #fff;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-bottom-txt p a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  left: 0;
  width: 0;
  margin: 0 auto;
  border-bottom: 1px solid #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-bottom-txt p a:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-socials ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 5px;
}

.footer-socials ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #fff;
  border-radius: 100px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-socials ul li a:hover {
  border: 1px solid #0000;
  background-color: #112912;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-socials ul li a i {
  color: #fff;
  font-size: 18px;
}

/*Footer Sec Css Ends */

/*About Us Page Css Starts */

section.inner-about-sec {
  padding: 100px 0 100px 0;
}

section.inner-choose-sec {
  padding: 0 0 200px 0;
}

section.inner-choose-sec::after {
  top: -15%;
}

/*About Us Page Css Ends */

/*Produce Page Css Starts */

section.inner-pro-sec {
  background-image: none;
}

section.inner-pro-sec::before {
  display: none;
}

section.inner-pro-sec .pro-card-main {
  margin: 20px 0;
}

/*Produce Page Css Ends */

/*Produce Details Page Css Starts */

section.inner-pro-det-sec .pro-card-img {
  height: 500px;
}

section.inner-pro-det-sec .pro-card-main {
  margin: 0;
  padding: 0;
}

section.inner-pro-det-sec .pro-card-txt {
  text-align: start;
  justify-content: start;
  align-items: start;
}

.pro-card-bottom {
  margin: 30px 0 0 0 !important;
}

/*Produce Details Page Css Ends */

/*Recipes Details Page Css Starts */

section.recipes-details-sec .recipes-card-txt-main {
  box-shadow: 0 0 0 0 #0000;
}

section.recipes-details-sec .recipes-card-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

section.recipes-details-sec .recipes-card:hover .recipes-card-txt-main {
  background-color: #0000;
}

section.recipes-details-sec .recipes-card:hover .recipes-card-txt h3 {
  color: #000;
}

/*Recipes Details Page Css Ends */

/*Contact Us Page Css Starts */

/* Contact Us Start*/
.btn-theme.snd {
  padding: 2%;
}

/* .cntct-head h4 {
  font-size: 40px;
  line-height: normal;
  font-weight: 400;
  margin: 0 0 30px;
  color: #2a2a2a;
} */

.contact-input {
  position: relative;
}

.contact-input::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 45px;
  top: 5px;
  left: 55px;
  background: url(../images/contact-input-bef.png) no-repeat;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
}

.contact-input input {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-family: "Montserrat";
  border-radius: 7px;
}

.contact-input textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 12px 20px 12px 21px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  resize: none;
  background: transparent;
  border-radius: 11px;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
  color: #7e7e7e;
}

.contact-input i {
  position: absolute;
  top: 15px;
  left: 18px;
  color: #008077;
  /* padding: 12px 16px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.send-btn {
  background-color: var(--golden);
  padding: 15px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  background: #0288d1;
  font-family: "Montserrat";
  border: none;
}

button.send-btn:hover {
  background: transparent;
  color: var(--golden);
  border: 1px solid var(--golden);
  transition: 0.5s all ease-in-out;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px 30px;
  border: 1px solid #c1c1c1;
  margin: 15px 0;
  transition: 0.8s all ease-in-out;
  background: #008077;
  border-radius: 6px;
}

.cntct-info-icon {
  width: 55px;
  height: 55px;
  border: 1px solid var(--golden);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.8s all ease-in-out;
}

.cntct-info-icon i {
  font-size: 28px;
  transition: 0.8s all ease-in-out;
  border: 1px solid;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 0px 20px 0px #8d88883b;
  color: #008077;
}

.contact-info-item:hover i {
  transform: rotate(360deg);
  transition: 0.8s all ease-in-out;
}

.contact-info-item-details h5 {
  margin: 0;
  font-size: 24px;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 1px;
  line-height: 35px;
}

.contact-info-item-details a,
.contact-info-item-details p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  font-family: "Montserrat";
}

.contact-input.selectbox select {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 80px 0 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-family: "Montserrat";
  border-radius: 7px;
  z-index: 1;
  position: relative;
  cursor: pointer;
}

section.contact-us .rates button.theme1 {
  border: 0px;
}

section.contact-us .get-in-touch.cntct-head {
  padding-right: 30px;
}

.contact-input.selectbox:before {
  left: unset !important;
  right: 60px;
  transform: rotateY(156deg);
}

.contact-input.selectbox i.fa-solid.fa-angle-down {
  position: absolute;
  right: 20px;
  left: unset !important;
  top: 19px;
  color: #000;
  opacity: 40%;
  cursor: pointer;
}

.contact-input.textaryea:before {
  display: none;
}

.contact-input.textaryea textarea::placeholder {
  position: absolute;
  bottom: 20px;
}

section.contact-us .formWraper {
  width: 88%;
  margin: 0px auto;
}

section.contact-us .heading {
  margin-bottom: 50px;
}

section.contact-us .heading p {
  font-weight: 500;
  opacity: 100%;
  line-height: 26px;
  width: 60%;
  margin: 0px auto;
}

section.contact-map {
  position: relative;
  overflow: hidden;
}

section.contact-map iframe {
  width: 100%;
  margin-bottom: -7px;
}

.contact-heading {
  margin: 0 0 30px 0;
}

.cntct-head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  width: 100%;
  border-radius: 5px;
}

.cntct-head img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 0 0;
}

/*Contact Us Page Css Ends */

/*Contact Us Page Css Ends */

/*Order css Starts*/

.book-form-input input,
.book-form-input textarea,
.book-form-input select {
  width: 100%;
  padding: 15px 20px;
  margin: 0 0 30px 0;
  border-radius: 5px;
  border: 1px solid #6c757d63;
  background-color: #f8f8f8;
  cursor: pointer;
}

.book-form-input textarea {
  height: 200px;
  resize: none;
}

.book-form-btn {
  width: 15%;
  margin: 0 auto;
}

.contact-sec-h p a {
  color: #6c757d;
  font-weight: 600;
  position: relative;
  transition: ease-in;
  transition-duration: 0.2s;
}

.contact-sec-h p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0;
  margin: 0 auto;
  border-bottom: 1px solid #000;
  transition: ease-out;
  transition-duration: 0.2s;
}

.contact-sec-h p a:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.2s;
}

/*Order Page Css Ends */

/*Account Page Css Starts */

.login-txt form input {
  width: 100%;
  margin-bottom: 10px;
  outline: none;
  padding: 10px 40px 10px 20px;
  color: #000;
  font-weight: 400;
  border: 1px solid #0000002b;
  border-radius: 5px;
}
.login-txt form input::placeholder {
  color: #c7c7c7;
}
.login-txt form input:focus {
  box-shadow: none;
  border: 1px solid #0000002b;
}
.login-txt h2 {
  /* font-family: 'Recoleta'; */
  text-align: center;
  margin: 0 0 30px 0;
  font-weight: 700;
  text-transform: capitalize;
}
.password-box {
  position: relative;
}
.password-box-input input {
  padding: 10px 40px 10px 20px;
}
.password-icon {
  position: absolute;
  top: 20%;
  right: 3%;
}
.password-icon span {
  color: #000;
  cursor: pointer;
}
.login-txt {
  padding: 45px 25px 35px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 20px 0px #0000001a;
}
.login-txt ul {
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 20px 0;
  gap: 10px;
}
li.head {
  color: #43ae23;
  font-size: 17px;
  font-weight: 600;
}
.login-txt ul li {
  display: flex;
  gap: 7px;
  font-weight: 400;
}
li.head a {
  color: #43ae23;
}
.login-txt form button {
  width: 100%;
  color: #fff;
  /* border-radius: 30px; */
  padding: 10px 0px;
  outline: none;
  border: none;
  margin-bottom: 20px;
  /* background-image: linear-gradient(to right, #d38cff, rgba(54, 230, 243, 1)); */
  /* background-size: 600%; */
  /* background-position: 0 0; */
  /* height: 100%; */
  justify-content: center;
  /* animation-duration: 10s; */
  /* animation-iteration-count: infinite; */
  /* animation-name: gradients; */
  font-size: 16px;
  border-radius: 5px;
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: 400;
  transition: ease-in;
  transition-duration: 0.2s;
  background-color: #43ae23;
}

.login-txt form button:hover {
  background-image: unset;
  background-color: #000;
  transition: ease-out;
  transition-duration: 0.2s;
}

li.head-ex {
  text-decoration: underline;
}

.login-txt ul li label {
  cursor: pointer;
}

.login-txt-ex {
  background-color: #43ae23;
  box-shadow: unset;
}

.login-txt-ex * {
  color: #fff;
}

.login-txt-ex form input {
  background-color: #0000;
  border: 1px solid #fff;
  color: #fff;
}

.login-txt-ex form input:focus {
  background-color: #fff;
  color: #000;
}

.login-txt-ex ul {
  justify-content: space-between;
}

.login-txt-ex li.head a {
  color: #fff;
}

.login-txt-ex form button {
  background-color: #fff;
  color: #000;
}

.login-txt-ex form button:hover {
  background-color: #000;
  color: #fff;
}

/*Account Page Css Ends */

/*Subscription Page Css Starts */

.inner-subscription-sec .footer-sub-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin: 0 auto 30px auto;
  text-align: center;
}

.inner-subscription-sec {
  padding: 100px 0;
  width: 80%;
}

.inner-subscription-sec .footer-sub-main {
  border-radius: 20px;
  overflow: hidden;
  padding: 80px 20px;
}
html {
    overflow-x: hidden !important;
}
/*Subscription Page Css Ends */

















/*Media Query Starts*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1500px) and (max-width: 1599px) {

/* Fonts css Starts */
.about-txt h2 {
    font-size: 44px;
    line-height: 54px;
}

.book-form-btn {
    width: fit-content;
}


}

@media only screen and (min-width: 1400px) and (max-width: 1499px) {

    
.about-txt h2 {
    font-size: 40px;
}

.footer-contact ul li a p, .footer-menu ul li a {
    font-size: 13px;
}
.book-form-btn {
    width: fit-content;
}

}

@media only screen and (min-width: 1300px) and (max-width: 1399px) {

.about-txt h2 {
    font-size: 40px;
    line-height: 50px;
}

.hassle-card-main {
    padding: 20px 10px;
}

.footer-link-main {width: 80%;}

.VIpgJd-ZVi9od-aZ2wEe-OiiCO {
    display: none;
}
.book-form-btn {
    width: fit-content;
}

}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {

.menu-box ul {
    width: 90%;
}

.header-btn {
    margin-left: -15px;
}

.banner-txt h1 {
    font-size: 70px;
    line-height: 80px;
}

.nav-thumb {
    height: 150px;
}

.svg_box_main {
    gap: 20px;
    width: 80%;
}

.about-txt h2 {
    font-size: 40px;
    line-height: 50px;
}

.hassle-card-main {
    padding: 20px 10px;
}

.recipes-card-link ul a {
    font-size: 11px !important;
}

.footer-link-main {
    width: 90%;
}
.book-form-btn {
    width: fit-content;
}
.login-txt h2 {
    font-size: 40px;
}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  
.sec {
    padding: 60px 0;
}

.heading {
    margin: 0 0 40px 0;
}

/* Fonts css Starts */

h1 {
    font-size: 45px;
    line-height: 50px;
}

h2 {
    font-size: 35px;
    line-height: 40px;
}

p {
    font-size: 14px;
    line-height: 25px;
}

/* Fonts css Ends */



/* Buttons css Starts */

.theme1 {
    height: 40px;
    padding: 0 10px;
}

.theme1 span.theme1-txt {
    font-size: 14px;
    line-height: 1;
}

.theme1:hover span.theme1-icon i {
    height: 20px;
    width: 20px;
    font-size: 12px;
}

.theme2 {
    height: 20px;
}

.theme2 span.theme2-txt {
    font-size: 14px;
}

.theme4 {
    height: 40px;
    padding: 0 20px;
}

.theme4 span.theme4-txt, .theme4 span.theme4-txt-ex {
    font-size: 14px;
}

/* Buttons css Ends */




/* Home css Starts */

header {
    padding: 10px;
    gap: 10px;
}

.header-search-main form button {
    top: 15%;
}

.header-logo {
    width: 70%;
    margin: 20px auto;
}

.header-tran-acc-main {
    justify-content: center;
    gap: 20px;
}

.header-btn {
    justify-content: end;
}

.menu-box ul {
    gap: 5px;
}

.menu-box ul li a {
    padding: 0 10px;
    font-size: 14px;
}

section.banner-sec {
    width: 100%;
    margin: 0;
    padding: 0;
        height: 700px;
}

    .banner-box {
        gap: 10px;
        align-items: center;
        justify-content: start;
    }

    .banner-txt {
        width: 80%;
        margin: 0;
        gap: 10px;
    }
    
    .svg_box_main {
        width: 50%;
        height: 100%;
        gap: 20px;
        align-items: center;
        justify-content: start;
    }

.svg_box {
    gap: 10px;
    width: 100px;
    height: 100px;
}

.svg_box a {
    height: 50px;
    width: 50px;
    font-size: 20px;
}

.svg_box_main h5 {
    font-size: 12px;
    line-height: 1;
}

section.banner-sec .slick-list.draggable .slick-track {
    margin-bottom: 0 !important;
}

    .nav-thumb {
        height: 150px;
    }

section.about-sec {
    padding: 20px 0;
}

    .about-txt-main {
        padding: 20px 10px;
    }

.about-txt {
    gap: 10px;
}

.about-left {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
        padding: 0 10px;
}

.about-ex-main {
    width: 100%;
}

.about-ex {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    justify-content: start;
    align-items: start;
}

.about-ex h5 {
    writing-mode: horizontal-tb;
}

.about-img-main {
    width: 100%;
}

.about-img {
    height: 250px;
}

section.about-sec::before {
    left: 30%;
    width: 50px;
}

section.pro-sec {
    width: 100%;
    margin: 0;
}

.pro-card-img {
    height: 200px;
}

.pro-card-txt h5 {
    font-size: 20px;
    line-height: 25px;
}

section.choose-sec .about-txt-main {
    padding: 20px 10px;
}

section.choose-sec .about-ex h5 {
    writing-mode: horizontal-tb;
}

section.choose-sec::after {
    left: 70%;
    width: 50px;
}

section.choose-sec .about-left {
    margin: 0;
}

section.hassle-sec::before {
    height: 100%;
    width: 98%;
    margin: 0 auto;
    border-radius: 5px;
}

.hassle-card-main {
    padding: 20px 10px;
    width: 98%;
    margin: 0 auto 10px auto !important;
    border-radius: 5px;
    gap: 10px;
}

.hassle-card-txt h4 {
    font-size: 20px;
    line-height: 25px;
}

.membership-card-main {
    gap: 10px;
    border-radius: 10px;
    margin: 10px 0;
}

.membership_slider .slick-current {
    scale: 1;
}

.membership-card-heading {
    height: 50px;
}

.membership-card-heading h4 {
    font-size: 25px;
    line-height: 30px;
}

.membership-card-price h4 {
    font-size: 40px;
    line-height: 45px;
}

.membership-card-mid {
    gap: 10px;
    padding: 0 10px;
}

.membership-card-list ul li .membership-card-list-item {
    height: 40px;
    padding: 0 0 0 40px;
}

.membership-card-list ul li .check::before, .membership-card-list ul li .no-check::before {
    font-size: 16px;
    top: 25%;
    left: 5%;
    height: 20px;
    width: 20px;
}

.membership-card-btn {
    padding: 10px;
}

.membership_slider .slick-slide {
    scale: 1;
}
	
    .testi-card {
        padding: 10px 20px 10px 10px;
        height: 300px;
        overflow-y: scroll;
    }


.testi-txt p {
    font-size: 14px;
    line-height: 25px;
    align-items: start !important;
}

.recipes-for .recipes-card-img {
    height: 300px;
    width: 100%;
}

.recipes-for .recipes-card-txt-main {
    width: 100%;
    padding: 20px 10px;
    margin: 0;
}

.recipes-for .recipes-card-link ul li a {
    font-size: 10px;
}

.recipes-card-link ul {
    gap: 5px;
}

.recipes-card-link ul li:nth-child(2) a {
    padding: 0 10px;
}

.recipes-card-link ul li:nth-child(2) a::before, .recipes-card-link ul li:nth-child(2) a::after {
    height: 5px;
    width: 5px;
    top: 30%;
}

.recipes-for .recipes-card-txt h3 {
    font-size: 20px;
    line-height: 25px;
}

/*.recipes-nav .recipes-card-img {*/
/*    height: 150px;*/
/*}*/

.recipes-nav .svg_box {
    width: 80px;
    height: 80px;
}

.recipes-nav .svg_box a {
    height: 50px;
    width: 50px;
    font-size: 14px;
}

.recipes-nav .recipes-card-link ul li a {
    font-size: 9px;
}

.recipes-nav .recipes-card-txt-main {
    padding: 10px;
}

.footer-sub-main, footer {
    padding: 20px 10px;
}

.footer-sub-txt {
    gap: 10px;
    margin: 0 0 20px 0;
}

.footer-sub-txt h4 {
    font-size: 30px;
    line-height: 35px;
}

.footer-sub-form form {
    height: 100%;
    background-color: #0000;
}

.footer-sub-form form input {
    height: 50px;
    background-color: #fff;
    margin: 0 0 20px 0;
    border-radius: 5px;
    padding: 0 20px;
}

.footer-sub-form form button {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
}

.footer-logo-main {
    gap: 10px;
}

.footer-link-main {
    width: 100%;
    margin: 20px 0;
    gap: 20px;
}

.footer-contact ul li a, .footer-menu ul li a {
    gap: 10px;
}

.footer-contact ul {
    gap: 10px;
}

.footer-bottom-main {
    padding: 20px 10px;
}

.footer-bottom-txt-socials-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.footer-box {
    width: 100%;
}
	
.footer-sub-main .hf-fields-wrap {
    width: 100%;
}

.footer-heading::before {
    bottom: -2px;
}

.testi_slider ul {
    bottom: 10px;
}

.footer-logo-main, .footer-link-main {
    padding: 0 10px;
}

/* Home css Ends */



}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	
  
.sec {
    padding: 50px 0;
}

.heading {
    margin: 0 0 20px 0;
}

/* Fonts css Starts */

h1 {
    font-size: 45px;
    line-height: 50px;
}

h2 {
    font-size: 35px;
    line-height: 40px;
}

p {
    font-size: 14px;
    line-height: 25px;
}

/* Fonts css Ends */



/* Buttons css Starts */

.theme1 {
    height: 40px;
    padding: 0 10px;
}

.theme1 span.theme1-txt {
    font-size: 14px;
    line-height: 1;
}

.theme1:hover span.theme1-icon i {
    height: 20px;
    width: 20px;
    font-size: 12px;
}

.theme2 {
    height: 20px;
}

.theme2 span.theme2-txt {
    font-size: 14px;
}

.theme4 {
    height: 40px;
    padding: 0 20px;
}

.theme4 span.theme4-txt, .theme4 span.theme4-txt-ex {
    font-size: 14px;
}

/* Buttons css Ends */




/* Home css Starts */

header {
    padding: 10px;
    gap: 10px;
}

.header-search-main form button {
    top: 15%;
}

.header-logo {
    width: 70%;
    margin: 20px auto;
}

.header-tran-acc-main {
    justify-content: center;
    gap: 20px;
}

.header-btn {
    justify-content: end;
}

.header-btn .theme1 span.theme1-txt {
    font-size: 11px;
}

.menu-box ul {
    gap: 5px;
}

.menu-box ul li a {
    padding: 0 10px;
    font-size: 14px;
}

section.banner-sec {
    width: 100%;
    margin: 0;
    padding: 0;
        height: 700px;
}

    .banner-box {
        gap: 10px;
        align-items: center;
        justify-content: start;
    }

    .banner-txt {
        width: 80%;
        margin: 0;
        gap: 10px;
    }
    
    .svg_box_main {
        width: 50%;
        height: 100%;
        gap: 20px;
        align-items: center;
        justify-content: start;
    }

.svg_box {
    gap: 10px;
    width: 100px;
    height: 100px;
}

.svg_box a {
    height: 50px;
    width: 50px;
    font-size: 20px;
}

.svg_box_main h5 {
    font-size: 12px;
    line-height: 1;
}

section.banner-sec .slick-list.draggable .slick-track {
    margin-bottom: 0 !important;
}

    .nav-thumb {
        margin: 0 5px;
        height: 250px;
    }

section.about-sec {
    padding: 20px 0;
}

    .about-txt-main {
        padding: 20px 10px;
    }

.about-txt {
    gap: 10px;
}

.about-left {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
        padding: 0 10px;
}

.about-ex-main {
    width: 100%;
}

.about-ex {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    justify-content: start;
    align-items: start;
}

.about-ex h5 {
    writing-mode: horizontal-tb;
}

.about-img-main {
    width: 100%;
}

.about-img {
    height: 250px;
}

section.about-sec::before {
    left: 30%;
    width: 50px;
}

section.pro-sec {
    width: 100%;
    margin: 0;
}

.pro-card-img {
    height: 200px;
}

.pro-card-txt h5 {
    font-size: 20px;
    line-height: 25px;
}

section.choose-sec .about-txt-main {
    padding: 20px 10px;
}

section.choose-sec .about-ex h5 {
    writing-mode: horizontal-tb;
}

section.choose-sec::after {
    left: 70%;
    width: 50px;
}

section.choose-sec .about-left {
    margin: 0;
}

section.hassle-sec::before {
    height: 100%;
    width: 98%;
    margin: 0 auto;
    border-radius: 5px;
}

.hassle-card-main {
    padding: 20px 10px;
    width: 98%;
    margin: 0 auto 10px auto !important;
    border-radius: 5px;
    gap: 10px;
}

.hassle-card-txt h4 {
    font-size: 20px;
    line-height: 25px;
}

.membership-card-main {
    gap: 10px;
    border-radius: 10px;
    margin: 10px 0;
}

.membership_slider .slick-current {
    scale: 1;
}

.membership-card-heading {
    height: 50px;
}

.membership-card-heading h4 {
    font-size: 25px;
    line-height: 30px;
}

.membership-card-price h4 {
    font-size: 40px;
    line-height: 45px;
}

.membership-card-mid {
    gap: 10px;
    padding: 0 10px;
}

.membership-card-list ul li .membership-card-list-item {
    height: 40px;
    padding: 0 0 0 40px;
}

.membership-card-list ul li .check::before, .membership-card-list ul li .no-check::before {
    font-size: 16px;
    top: 25%;
    left: 5%;
    height: 20px;
    width: 20px;
}

.membership-card-btn {
    padding: 10px;
}

.membership_slider .slick-slide {
    scale: 1;
}
	
    .testi-card {
        padding: 10px 20px 10px 10px;
        height: 300px;
        overflow-y: scroll;
    }


.testi-txt p {
    font-size: 14px;
    line-height: 25px;
    align-items: start !important;
}

.recipes-for .recipes-card-img {
    height: 300px;
    width: 100%;
}

.recipes-for .recipes-card-txt-main {
    width: 100%;
    padding: 20px 10px;
    margin: 0;
}

.recipes-for .recipes-card-link ul li a {
    font-size: 10px;
}

.recipes-card-link ul {
    gap: 5px;
}

.recipes-card-link ul li:nth-child(2) a {
    padding: 0 10px;
}

.recipes-card-link ul li:nth-child(2) a::before, .recipes-card-link ul li:nth-child(2) a::after {
    height: 5px;
    width: 5px;
    top: 30%;
}

.recipes-for .recipes-card-txt h3 {
    font-size: 20px;
    line-height: 25px;
}

.recipes-nav .recipes-card-img {
    height: 150px;
}

.recipes-nav .svg_box {
    width: 80px;
    height: 80px;
}

.recipes-nav .svg_box a {
    height: 50px;
    width: 50px;
    font-size: 14px;
}

.recipes-nav .recipes-card-link ul li a {
    font-size: 9px;
}

.recipes-nav .recipes-card-txt-main {
    padding: 10px;
}

.footer-sub-main, footer {
    padding: 20px 10px;
}

.footer-sub-txt {
    gap: 10px;
    margin: 0 0 20px 0;
}

.footer-sub-txt h4 {
    font-size: 30px;
    line-height: 35px;
}

.footer-sub-form form {
    height: 100%;
    background-color: #0000;
}

.footer-sub-form form input {
    height: 50px;
    background-color: #fff;
    margin: 0 0 20px 0;
    border-radius: 5px;
    padding: 0 20px;
}

.footer-sub-form form button {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
}

.footer-logo-main {
    gap: 10px;
}

.footer-link-main {
    width: 100%;
    margin: 20px 0;
    gap: 20px;
}

.footer-contact ul li a, .footer-menu ul li a {
    gap: 10px;
}

.footer-contact ul {
    gap: 10px;
}

.footer-bottom-main {
    padding: 20px 10px;
}

.footer-bottom-txt-socials-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.footer-box {
    width: 100%;
}
	
.footer-sub-main .hf-fields-wrap {
    width: 100%;
}

.footer-heading::before {
    bottom: -2px;
}

.testi_slider ul {
    bottom: 10px;
}

.footer-logo-main, .footer-link-main {
    padding: 0 10px;
}
.book-form-btn {
    width: fit-content;
}
section.banner-sec.inner-banner-sec {
    height: 450px;
}
section.inner-banner-sec .banner-txt h1 {
    font-size: 50px;
}
.about-txt h2 {
    margin: 25px 0 0;
}
/* Home css Ends */

	
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
    
   
.sec {
    padding: 40px 0;
}

.heading {
    margin: 0 0 20px 0;
}

/* Fonts css Starts */

h1 {
    font-size: 45px;
    line-height: 50px;
}

h2 {
    font-size: 35px;
    line-height: 40px;
}

p {
    font-size: 14px;
    line-height: 25px;
}

/* Fonts css Ends */



/* Buttons css Starts */

.theme1 {
    height: 40px;
    padding: 0 10px;
}

.theme1 span.theme1-txt {
    font-size: 14px;
    line-height: 1;
}

.theme1:hover span.theme1-icon i {
    height: 20px;
    width: 20px;
    font-size: 12px;
}

.theme2 {
    height: 20px;
}

.theme2 span.theme2-txt {
    font-size: 14px;
}

.theme4 {
    height: 40px;
    padding: 0 20px;
}

.theme4 span.theme4-txt, .theme4 span.theme4-txt-ex {
    font-size: 14px;
}

/* Buttons css Ends */




/* Home css Starts */

header {
    padding: 10px;
    gap: 10px;
}

.header-search-main form button {
    top: 15%;
}

.header-logo {
    width: 70%;
    margin: 20px auto;
}

.header-tran-acc-main {
    justify-content: center;
    gap: 20px;
}

.header-btn {
    justify-content: center;
    margin: 20px 0 0 0;
}

section.banner-sec {
    width: 100%;
    margin: 0;
    padding: 0;
        height: 700px;
}

.banner-box {
    gap: 10px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

    .banner-txt {
        width: 100%;
        margin: 0;
        gap: 10px;
    }
    
.svg_box_main {
    width: 100%;
    height: 100%;
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.svg_box {
    gap: 10px;
    width: 100px;
    height: 100px;
}

.svg_box a {
    height: 50px;
    width: 50px;
    font-size: 20px;
}

.svg_box_main h5 {
    font-size: 12px;
    line-height: 1;
}

section.banner-sec .slick-list.draggable .slick-track {
    margin-bottom: 0 !important;
}

.nav-thumb {
    margin: 0 5px;
    height: 150px;
    /*width: 100%;*/
}

section.about-sec {
    padding: 20px 0;
}

    .about-txt-main {
        padding: 20px 10px;
    }

.about-txt {
    gap: 10px;
}

.about-left {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
        padding: 0 10px;
}

.about-ex-main {
    width: 100%;
}

.about-ex {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    justify-content: start;
    align-items: start;
}

.about-ex h5 {
    writing-mode: horizontal-tb;
}

.about-img-main {
    width: 100%;
}
.about-txt-main {
    margin-top: 50px;
}
.about-img {
    height: 250px;
}

section.about-sec::before {
    left: 30%;
    width: 50px;
}
section.banner-sec.inner-banner-sec {
    height: 450px;
}

section.inner-banner-sec .banner-txt h1 {
    font-size: 50px;
    line-height: 60px;
}
section.pro-sec {
    width: 100%;
    margin: 0;
}

.pro-card-img {
    height: 200px;
}

.pro-card-txt h5 {
    font-size: 20px;
    line-height: 25px;
}

section.choose-sec .about-txt-main {
    padding: 20px 10px;
}

section.choose-sec .about-ex h5 {
    writing-mode: horizontal-tb;
}

section.choose-sec::after {
    left: 70%;
    width: 50px;
}

section.choose-sec .about-left {
    margin: 0;
}

section.hassle-sec::before {
    height: 100%;
    width: 98%;
    margin: 0 auto;
    border-radius: 5px;
}

.hassle-card-main {
    padding: 20px 10px;
    width: 98%;
    margin: 0 auto 10px auto !important;
    border-radius: 5px;
    gap: 10px;
}

.hassle-card-txt h4 {
    font-size: 20px;
    line-height: 25px;
}
section.inner-pro-det-sec .pro-card-txt {
    margin-top: 40px;
}
.inner-subscription-sec .footer-sub-txt {
    width: 90%;
}
.membership-card-main {
    gap: 10px;
    border-radius: 10px;
    margin: 10px 0;
}

.membership_slider .slick-current {
    scale: 1;
}

.membership-card-heading {
    height: 50px;
}

.membership-card-heading h4 {
    font-size: 25px;
    line-height: 30px;
}

.membership-card-price h4 {
    font-size: 40px;
    line-height: 45px;
}

.membership-card-mid {
    gap: 10px;
    padding: 0 10px;
}

.membership-card-list ul li .membership-card-list-item {
    height: 40px;
    padding: 0 0 0 40px;
}

.membership-card-list ul li .check::before, .membership-card-list ul li .no-check::before {
    font-size: 16px;
    top: 25%;
    left: 5%;
    height: 20px;
    width: 20px;
}

.membership-card-btn {
    padding: 10px;
}

.membership_slider .slick-slide {
    scale: 1;
}
	
    .testi-card {
        padding: 10px 20px 10px 10px;
        height: 200px;
        overflow-y: scroll;
    }


.testi-txt p {
    font-size: 14px;
    line-height: 25px;
    align-items: start !important;
}

.recipes-for .recipes-card-img {
    height: 300px;
    width: 100%;
}

.recipes-for .recipes-card-txt-main {
    width: 100%;
    padding: 20px 10px;
    margin: 0;
}

.recipes-for .recipes-card-link ul li a {
    font-size: 10px;
}

.recipes-card-link ul {
    gap: 5px;
}

.recipes-card-link ul li:nth-child(2) a {
    padding: 0 10px;
}

.recipes-card-link ul li:nth-child(2) a::before, .recipes-card-link ul li:nth-child(2) a::after {
    height: 5px;
    width: 5px;
    top: 30%;
}

.recipes-for .recipes-card-txt h3 {
    font-size: 20px;
    line-height: 25px;
}

.recipes-nav .recipes-card-img {
    height: 150px;
}

.recipes-nav .svg_box {
    width: 80px;
    height: 80px;
}

.recipes-nav .svg_box a {
    height: 50px;
    width: 50px;
    font-size: 14px;
}

.recipes-nav .recipes-card-link ul li a {
    font-size: 9px;
}

.recipes-nav .recipes-card-txt-main {
    padding: 10px;
}

.footer-sub-main, footer {
    padding: 20px 10px;
}

.footer-sub-txt {
    gap: 10px;
    margin: 0 0 20px 0;
}

.footer-sub-txt h4 {
    font-size: 30px;
    line-height: 35px;
}

.footer-sub-form form {
    height: 100%;
    background-color: #0000;
}

.footer-sub-form form input {
    height: 50px;
    background-color: #fff;
    margin: 0 0 20px 0;
    border-radius: 5px;
    padding: 0 20px;
}

.footer-sub-form form button {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
}

.footer-logo-main {
    gap: 10px;
}

.footer-link-main {
    width: 100%;
    margin: 20px 0;
    gap: 20px;
}

.footer-contact ul li a, .footer-menu ul li a {
    gap: 10px;
}

.footer-contact ul {
    gap: 10px;
}

.footer-bottom-main {
    padding: 20px 10px;
}

.footer-bottom-txt-socials-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.footer-box {
    width: 100%;
}
	
.footer-sub-main .hf-fields-wrap {
    width: 100%;
}

.footer-heading::before {
    bottom: -2px;
}

.testi_slider ul {
    bottom: 10px;
}

/* Home css Ends */


}
.book-form-btn {
    width: fit-content;
}

@media only screen and (min-width: 300px) and (max-width: 519px) {

.sec {
    padding: 20px 0;
}

.heading {
    margin: 0 0 20px 0;
}

/* Fonts css Starts */

h1 {
    font-size: 40px;
    line-height: 45px;
}

h2 {
    font-size: 30px;
    line-height: 35px;
}

p {
    font-size: 12px;
    line-height: 25px;
}

/* Fonts css Ends */



/* Buttons css Starts */

.theme1 {
    height: 40px;
    padding: 0 10px;
}

.theme1 span.theme1-txt {
    font-size: 14px;
    line-height: 1;
}

.theme1:hover span.theme1-icon i {
    height: 20px;
    width: 20px;
    font-size: 12px;
}

.theme2 {
    height: 20px;
}

.theme2 span.theme2-txt {
    font-size: 14px;
}

.theme4 {
    height: 40px;
    padding: 0 20px;
}

.theme4 span.theme4-txt, .theme4 span.theme4-txt-ex {
    font-size: 14px;
}

/* Buttons css Ends */




/* Home css Starts */

header {
    padding: 10px;
    gap: 10px;
}

.header-search-main form button {
    top: 15%;
}

.header-logo {
    width: 70%;
    margin: 20px auto;
}

.header-tran-acc-main {
    justify-content: center;
    gap: 20px;
}

.header-btn {
    justify-content: center;
    margin: 20px 0 0 0;
}

section.banner-sec {
    width: 100%;
    margin: 0;
    padding: 0;
        height: 700px;
}

.banner-box {
    gap: 10px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}

    .banner-txt {
        width: 100%;
        margin: 0;
        gap: 10px;
    }
    
.svg_box_main {
    width: 100%;
    height: 100%;
    gap: 10px;
    align-items: center;
    justify-content: start;
}

.svg_box {
    gap: 10px;
    width: 100px;
    height: 100px;
}

.svg_box a {
    height: 50px;
    width: 50px;
    font-size: 20px;
}

.svg_box_main h5 {
    font-size: 12px;
    line-height: 1;
}

section.banner-sec .slick-list.draggable .slick-track {
    margin-bottom: 0 !important;
}

.nav-thumb {
    margin: 0 5px;
    height: 150px;
    /*width: 100%;*/
}

section.about-sec {
    padding: 20px 0;
}

    .about-txt-main {
        padding: 20px 10px;
    }

.about-txt {
    gap: 10px;
}

.about-left {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    bottom: unset;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
        padding: 0 10px;
}

.about-ex-main {
    width: 100%;
}

.about-ex {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    justify-content: start;
    align-items: start;
}

.about-ex h5 {
    writing-mode: horizontal-tb;
}

.about-img-main {
    width: 100%;
}

.about-img {
    height: 250px;
}

section.about-sec::before {
    left: 30%;
    width: 50px;
}

section.pro-sec {
    width: 100%;
    margin: 0;
}

.pro-card-img {
    height: 200px;
}

.pro-card-txt h5 {
    font-size: 20px;
    line-height: 25px;
}

section.choose-sec .about-txt-main {
    padding: 20px 10px;
}

section.choose-sec .about-ex h5 {
    writing-mode: horizontal-tb;
}

section.choose-sec::after {
    left: 70%;
    width: 50px;
}

section.choose-sec .about-left {
    margin: 0;
}

section.hassle-sec::before {
    height: 100%;
    width: 98%;
    margin: 0 auto;
    border-radius: 5px;
}

.hassle-card-main {
    padding: 20px 10px;
    width: 98%;
    margin: 0 auto 10px auto !important;
    border-radius: 5px;
    gap: 10px;
}

.hassle-card-txt h4 {
    font-size: 20px;
    line-height: 25px;
}

.membership-card-main {
    gap: 10px;
    border-radius: 10px;
    margin: 10px 0;
}

.membership_slider .slick-current {
    scale: 1;
}

.membership-card-heading {
    height: 50px;
}

.membership-card-heading h4 {
    font-size: 25px;
    line-height: 30px;
}

.membership-card-price h4 {
    font-size: 40px;
    line-height: 45px;
}

.membership-card-mid {
    gap: 10px;
    padding: 0 10px;
}

.membership-card-list ul li .membership-card-list-item {
    height: 40px;
    padding: 0 0 0 40px;
}

.membership-card-list ul li .check::before, .membership-card-list ul li .no-check::before {
    font-size: 16px;
    top: 25%;
    left: 5%;
    height: 20px;
    width: 20px;
}

.membership-card-btn {
    padding: 10px;
}

    .testi-card {
        padding: 10px 20px 10px 10px;
        height: 200px;
        overflow-y: scroll;
    }


.testi-txt p {
    font-size: 14px;
    line-height: 25px;
    align-items: start !important;
}

.recipes-for .recipes-card-img {
    height: 300px;
    width: 100%;
}

.recipes-for .recipes-card-txt-main {
    width: 100%;
    padding: 20px 10px;
    margin: 0;
}

.recipes-for .recipes-card-link ul li a {
    font-size: 10px;
}

.recipes-card-link ul {
    gap: 5px;
}

.recipes-card-link ul li:nth-child(2) a {
    padding: 0 10px;
}

.recipes-card-link ul li:nth-child(2) a::before, .recipes-card-link ul li:nth-child(2) a::after {
    height: 5px;
    width: 5px;
    top: 30%;
}

.recipes-for .recipes-card-txt h3 {
    font-size: 20px;
    line-height: 25px;
}

.recipes-nav .recipes-card-img {
    height: 150px;
}

.recipes-nav .svg_box {
    width: 80px;
    height: 80px;
}

.recipes-nav .svg_box a {
    height: 50px;
    width: 50px;
    font-size: 14px;
}

.recipes-nav .recipes-card-link ul li a {
    font-size: 9px;
}

.recipes-nav .recipes-card-txt-main {
    padding: 10px;
}

.footer-sub-main, footer {
    padding: 20px 10px;
}

.footer-sub-txt {
    gap: 10px;
    margin: 0 0 20px 0;
}

.footer-sub-txt h4 {
    font-size: 30px;
    line-height: 35px;
}

.footer-sub-form form {
    height: 100%;
    background-color: #0000;
}

.footer-sub-form form input {
    height: 50px;
    background-color: #fff;
    margin: 0 0 20px 0;
    border-radius: 5px;
    padding: 0 20px;
}

.footer-sub-form form button {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
}

.footer-logo-main {
    gap: 10px;
}

.footer-link-main {
    width: 100%;
    margin: 20px 0;
    gap: 20px;
}

.footer-contact ul li a, .footer-menu ul li a {
    gap: 10px;
}

.footer-contact ul {
    gap: 10px;
}

.footer-bottom-main {
    padding: 20px 10px;
}

.footer-bottom-txt-socials-main {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.footer-box {
    width: 100%;
}

.footer-heading::before {
    bottom: -2px;
}

.testi_slider ul {
    bottom: 10px;
}
section.banner-sec.inner-banner-sec {
    height: 450px;
}

section.inner-banner-sec .banner-txt h1 {
    font-size: 45px;
    line-height: 60px;
}

.login-txt h2 {
    font-size: 27px;
}

.login-txt ul li {
    flex-wrap: wrap;
}
section.contact-us .get-in-touch.cntct-head {
    padding: 0;
}

.cntct-head {
    height: auto;
    margin-bottom: 50px;
}

.hf-fields-wrap {
    margin-top: 20px;
}
.recipes-heading.heading h2 {
    font-size: 30px !important;
}
.inner-subscription-sec .footer-sub-txt {
    width: 90%;
}

.inner-subscription-sec .footer-sub-main {
    padding: 40px 20px;
}
section.inner-pro-det-sec .pro-card-img {
    height: 350px;
    margin-bottom: 20px;
}


.about-txt-main {
    margin-top: 90px;
}

/* Home css Ends */


}


/*Media Query End*/







