@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url(layout.min.css);

@font-face {
  font-family: 'Dallas Print Shop Serif';
  src: url('../fonts/DallasPrintShop-Serif.woff2') format('woff2'),
    url('../fonts/DallasPrintShop-Serif.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


html {
  font-size: 16px;
}

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

:root {
  --white: #ffffff;
  --black: #000;
  --theme-color: #275C53;
  --primary: #6D8662;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #828282;
}

h1,
h2,
h3,
h4 {
  font-family: 'Dallas Print Shop Serif';
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

figure {
  margin: 0;
}

section {
  padding: 5rem 0;
  position: relative;
}

/* Home Page CSS Start  */
.main-Banner {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 17rem;
  /*background: linear-gradient(90deg, rgba(39, 92, 83, .8) 0%, rgba(109, 134, 98, .9) 100%) !IMPORTANT;*/
  position: relative;
}

.bannertext h1 {
  font-size: 4rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  z-index: 2;
    position: inherit;
}

.bannertext h1 span {
  display: block;
  font-size: 5rem;
}

.bannertext p {
  color: #fff;
  z-index: 2;
  position: inherit;
  font-size: 1.4rem;
}

h6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  text-transform: capitalize;
}

h4 {
  font-size: 3.75rem;
  color: #000;
}

.callBtn {
  display: flex;
  align-items: center;
}

.callBtn i {
  background: var(--theme-color);
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 1.5rem;
  color: #fff;
  margin-right: 1rem;
  animation: shadowAni 2s ease infinite;
}

@keyframes shadowAni {
  0% {
    box-shadow: 0 0 0 0px rgb(39 92 83 / 55%);
  }

  100% {
    box-shadow: 0 0 0 20px rgb(39 92 83 / 16%);
  }
}

.callBtn a {
  color: #000;
  font-weight: 700;
  font-size: 1.25rem;
}

.productSec {
  background: #ECECEC;
  border-radius: 50px;
}

.productBox {
  background: #fff;
  border-radius: 30px;
  /* border: 1px solid #ffffff00; */
  transition: all 0.5sease;
  /* overflow: hidden; */
  display: block;
}

.productBox img {
  transition: all 0.5s ease;
  border-radius: 30px;
}

.productContnt {
  /* border-top: 1px solid #c9c9c9; */
  padding: 5rem 2rem 2rem 2rem;
  background: var(--white);
  border-radius: 30px;
  margin-top: -3rem;
}

.productContnt h3 {
  font-size: 1.35rem !important;
  color: #000;
}

.productContnt .rate {
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 600;
  color: var(--black);
}

.productContnt p {
  color: #000;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0;
}

.productContnt .priceBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.productBox:hover .productContnt .themeBtn {
  background: var(--primary);
}

.productBox .imgBox {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px;
}

.productBox:hover .imgBox img {
  transform: scale(1.08);
}

.productBox:hover {
  border-color: #6D8662;
}

.productSlider {
  padding: 3rem 0;
}

.proSlide .swiper-button-prev {
  left: -4rem;
}

.proSlide .swiper-button-next {
  right: -4rem;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--theme-color);
  color: #fff;
}

.ctaSec .container {
  
  padding: 5rem 0;
  border-radius: 40px;
  text-align: center;
  position: relative;
}

.ctaSec p {
  color: #fff;
  margin: 1rem 0;
}

.ctaSec a {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
}

.ctaSec a:hover {
  color: var(--primary);
}

.ctaSec .container::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid #ffffff;
  margin: 2rem;
  border-radius: 30px;
}

.shopBox h3 {
  font-size: 1.75rem;
  color: #000;
  margin-top: 1rem;
}

.shopBox {
  text-align: center;
  margin: 2rem;
}

.shopBox a {
  color: #000;
  font-size: 1.25rem;
  text-transform: capitalize;
  font-weight: 500;
  text-decoration: underline !important;
}

.shopBox p {
  margin: 1rem;
}

/* .shopBox .reveal img {
  width: auto;
} */

.shopBox .reveal {
  height: 340px;
}

.greyBox {
  background: #F6F6F6;
  padding: 2rem;
  text-align: center;
  border-radius: 15px;
  border: 1px solid #6D8662;
  transition: all 0.5s ease-in-out;
}

.greyBox img {
  margin-bottom: 2rem;
}

.greyBox:hover {
  transform: scale(1.05);
}

.deliverySec {
  padding-top: 0;
}

.reviewsSec {
  background: url(../images/bg/1.png) bottom center / cover fixed no-repeat;
  border-radius: 50px;
}

.reviewsSec h6, .reviewsSec h4 {
  color: var(--white);
}

.reviewBox {
  background: var(--white);
  padding: 2rem;
  border-radius: 30px;
}

.reviewBox .rate i {
  color: var(--theme-color);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.reviewBox .user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewBox .user h6 {
  color: #000;
  margin: 0;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.4;
}

.reviewBox .user h6 span {
  font-size: 1.125rem;
  font-weight: 400;
  color: #828282;
  display: block;
  text-transform: capitalize;
}

.reviewsSlider {
  padding: 3rem 0;
}

.swiper-pagination {
  bottom: 0rem !important;
}

/* accordion css */
.accordian {
  margin-top: 2rem;
}

.accordian li {
  margin-bottom: 25px;
  border: 1px solid #dedede87;
  border-radius: 12px;
}

.accordian li h4 {
  color: #041e0c;
  font-size: 1.125rem;
  padding: 1.4rem;
  position: relative;
  cursor: pointer;
  background-color: #f8f8f8;
  border-radius: 12px;
  margin: 0;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;
  color: #000;
  padding-right: 3rem;
}

.accordian h4::after {
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-size: 20px;
  position: absolute;
  top: 25px;
  right: 35px;
  line-height: normal;
  transition: all 0.3s ease-in-out;
}

.accordian p {
  margin: 0;
  color: #869289;
  font-weight: 400;
  margin-bottom: 10px;
  font-size: 1rem;
}

.accordian li>div {
  display: none;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 1rem;
}

.accordian li.active h4::after {
  content: "\f068";
}

.accordian li.active {
  border-color: var(--theme-color);
  background: var(--theme-color);
}

.accordian li.active h4 {
  color: var(--theme-color);
  background: var(--theme-color);
  color: #fff;
}

.accordian li.active>div {
  background: var(--theme-color);
}

.accordian li.active>div p {
  color: #fff;
}

/* accordian End */
.blogBox {
  position: relative;
  margin: 2rem 0;
}

.blogBox h3 {
  font-size: 25px;
  margin-top: 2rem;
}

.blogDate .date {
  position: absolute;
  bottom: 0;
  left: 2rem;
}

.blogDate {
  position: relative;
}

.blogDate .date h6 {
  font-size: 15px;
  color: #fff;
  background: var(--theme-color);
  padding: 10px 1rem;
  border-radius: 10px 10px 0 0;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  margin: 0;
  transition: all 0.5s ease;
}

.blogBox:hover .blogDate .date h6 {
  background: var(--primary);
}

.logoImg {
  background: #F6F6F6;
  text-align: center;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.5s ease;
  border: 1px solid transparent;
}

.logoImg img {
  filter: grayscale(1);
  transition: all 0.5s ease;
}

.logoImg:hover {
  border: 1px solid #6D8662;
}

.logoImg:hover img {
  filter: none;
}

.logoSlider {
  padding: 3rem 0;
}

/* Home Page CSS End */

/* Inner Pages CSS Start */
.innerBanner {
  padding-top: 18rem;
  height: 70vh;
}

.reviewsInner .reviewBox {
  background: #f4f4f4;
  margin: 1rem 0;
}

.infoBox {
  background: #f4f7fc;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
}

.infoBox i {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.infoBox h6,
.infoBox a {
  font-size: 1.75rem;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  margin-top: 10px;
  color: #000;
}

.infoBox h6 span,
.infoBox a span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}

.contactForm h4 {
  font-size: 3.75rem;
  margin-top: 4rem;
}

.contactForm form input,
.contactForm form textarea {
  width: 100%;
  height: 3.5rem;
  padding: 1rem;
  border: none;
  border-bottom: 2px solid #b3b3b3;
  margin: 10px 0;
}

.contactForm form textarea {
  height: 150px;
}

.productInner {
  padding-top: 18rem;
  background: #ECECEC;
}

.productInner h3 {
  color: #000;
  margin-top: 2rem;
}

.greyBox2 {
  background: #ececec;
  padding: 3rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.proContnt ol li {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #828282;
}

.number {
  border: 1px solid var(--theme-color);
  display: inline-block;
  padding: 10px 1rem;
  border-radius: 5px;
}

.minus, .plus {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: 1.5rem;
  width: 20px;
}

.number input {
  height: 34px;
  width: 130px;
  text-align: center;
  font-size: 1.25rem;
  border: none;
  border-radius: 4px;
  display: inline-block;
  vertical-align: middle;
  background: transparent;
}

.productTextSec {
  background: #ececec;
}

.productTextSec .rate {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--theme-color);
  margin-bottom: 1rem;
}

.productTextSec .proHead {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.productTextSec .proHead h4 {
  color: var(--theme-color);
  font-size: 3.5rem;
}

.productTextSec .proHead span {
  color: #fff;
  background: var(--theme-color);
  padding: 5px 1rem;
  border-radius: 5px;
  margin: 0;
}

.proTable h3 {
  color: var(--theme-color);
  font-size: 1.5rem;
}

.weightBox ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 2rem;
}

.weightBox ul li a {
  background: #fff;
  color: var(--theme-color);
  font-size: 1.25rem;
  font-weight: 400;
  width: 90px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid;
}

.weightBox ul li a:hover {
  color: #fff;
  background: var(--theme-color);
}


.weightBox p {
  margin-bottom: 10px;
}

.quantityBox {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quantityBox .themeBtn {
  background: #6d8662;
}

.themeBig {
  font-size: 1.5rem;
  width: 100%;
  border-radius: 100px;
}

.abtSec ul li, .proContnt ul li {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  color: #828282;
  padding: 4px 0;
}


.abtSec ul, .proContnt ul {
  margin: 1rem 0;
}

/* Inner Pages CSS End */

.pricingsFlex {
  display: flex;
  gap: 2rem;
  text-align: center;
  width: fit-content;
  border: 1px solid var(--black);
  border-radius: 10px;
  padding: 1rem 1rem;
  margin: 1rem 0;
}

.pricingsFlex li strong {
  display: block;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 8px;
}

.pricingsFlex li span {
  font-size: 14px;
  color: var(--black);
}

.legendaryText p {
  color: var(--black);
  margin-bottom: 1rem;
}

.legendaryText ul li {
  color: var(--black);
}

.legendaryText ul {
  list-style: disc;
  list-style-position: inside;
}

.legendaryText h6 {
  font-size: 1.3rem;
  color: var(--black);
}

.legendaryText h3 {
  color: var(--black);
}

.logo img {
  width: 140px;
  border-radius: 100%;
}

.footLogo img {
  border-radius: 100px;
  width: 150px;
}
.page-id-10 .bannertext {
        position: relative;
        /* padding: 2rem 10rem; */
        border-radius: 10px;
        /* background: #275C53; */
        /* background: linear-gradient(90deg, rgba(39, 92, 83, 1) 0%, rgba(109, 134, 98, 1) 100%); */
}