:root {
  /**
  @font family declaration
  */
  --bd-ff-body: 'Open Sans', sans-serif;
  --bd-ff-heading: 'beckmanfree', sans-serif;
 /* --bd-ff-p: font-family: 'futura_md_btmedium', sans-serif;; */
 --bd-ff-p: font-family: 'Open Sans', sans-serif;
  --bd-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --clr-common-white: #ffffff;
  --clr-common-black: #000;
  --clr-wildvegan-bg: #161817;
  --clr-common-placeholder: #a0a0a0;
  --clr-common-placeholder-2: #B2B2B2;
  --clr-common-heading: #b0ce36;
  --clr-common-body-text: #777777;
  --clr-text-menu-hv: #b0ce36;
  --clr-theme-1: #959595;
  --clr-text-1: #EBEBEB;
  --clr-text-2: #6AAA2B;
  --clr-text-3: #707070;
  --clr-text-4: #80B500;
  --clr-text-5: #699C47;
  --clr-text-6: #9B9B9B;
  --clr-text-7: #9F9F9F;
  --clr-text-8: #777777;
  --clr-bg-grey: #f8f8f8;
  --clr-bg-grey-2: #F7F5F2;
  --clr-bg-grey-3: #F6F4F0;
  --clr-bg-grey-4: #D6D6D6;
  --clr-border-1: #E5DDD9;
  --clr-border-2: #E2E2E2;
  --clr-border-3: #E5DDD9;
  --clr-border-4: #F2F2F2;
  --clr-border-5: #78A55A;
  --clr-border-6: #9B9B9B;
  --clr-border-7: #D4D4D4;
  --clr-border-8: #efefef;
  --clr-border-9: #9b9b9b;
  --clr-border-10: #AEAEAE;
  --clr-border-11: #8AB46E;
  --clr-border-12: #EAEBEE;
  --clr-border-13: #DBDBDB;
  --clr-border-14: #CCCCCC;
  --clr-border-15: #DCDCDC;
  --clr-border-16: #E3E3E3;
  --clr-border-17: #edeef2;
  --clr-border-18: #efefef;
  --clr-border-19: #ECECEC;
  --clr-footer-1: #E5DDD9;
  --clr-footer-2: #E5DDD9;
  --clr-footer-3: #E5DDD9;
  /**
  @font weight declaration
  */
  --bd-fw-normal: normal;
  --bd-fw-elight: 200;
  --bd-fw-light: 300;
  --bd-fw-regular: 400;
  --bd-fw-medium: 500;
  --bd-fw-sbold: 600;
  --bd-fw-bold: 700;
  --bd-fw-ebold: 800;
  --bd-fw-black: 900;
  /**
  @font size declaration
  */
  --bd-fs-body: 16px;
  --bd-fs-p: 18px;
  --bd-fs-h1: 60px;
  --bd-fs-h2: 50px;
  --bd-fs-h3: 24px;
  --bd-fs-h4: 20px;
  --bd-fs-h5: 16px;
  --bd-fs-h6: 14px;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
    typography css start
---------------------------------*/
body {
  font-family: var(--bd-ff-body);
  font-size: var(--bd-fs-body);
  font-weight: normal;
  color: var(--clr-common-body-text);
  line-height: 26px;
  background: var(--clr-wildvegan-bg);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'beckmanfree';
  color: var(--clr-common-heading);
  margin-top: 0px;
  font-weight: var(--bd-fw-regular);
  line-height: 1.3;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}


h1 {
  font-size: var(--bd-fs-h1);
}

h2 {
  font-size: var(--bd-fs-h2);
}

h3 {
  font-size: var(--bd-fs-h3);
}

h4 {
  font-size: var(--bd-fs-h4);
  font-weight: var(--bd-fw-sbold);
}

h5 {
  font-size: var(--bd-fs-h5);
}

h6 {
  font-size: var(--bd-fs-h6);
}

h1 , h2, h3, h4, h5, h6{
  letter-spacing: 9px;
}

h3, h4, h5, h6{
    letter-spacing: 5px;
}


ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-family: var(--bd-ff-p);
  font-size: var(--bd-fs-p);
  letter-spacing: 1px;
  font-weight: 400;
  color: var(--clr-common-body-text);
  margin-bottom: 15px;
  line-height: 26px;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
  color: var(--clr-theme-1);
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--clr-common-body-text);
  opacity: 1;
  font-size: 16px;
}

*::placeholder {
  color: var(--clr-common-body-text);
  opacity: 1;
  font-size: 16px;
}

*---------------------------------
    common classes css start
---------------------------------*/
.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.display-flex{
  display: flex;
}

.flex-valign-center{
  align-self:center;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}



/*----------------------------------------*/
/*  03. Background color css start
/*----------------------------------------*/
.white-bg {
  background: var(--clr-common-white);
}

.black-bg {
  background: var(--clr-wildvegan-bg);
}

.grey-bg {
  background: var(--clr-bg-grey);
}

.grey-bg-2 {
  background: var(--clr-bg-grey-2);
}

.grey-bg-3 {
  background: var(--clr-bg-grey-3);
}

.theme-bg {
  background: var(--clr-theme-1);
}

.yellow-bg {
  background: var(--clr-theme-2);
}

.danger-bg {
  background: var(--clr-theme-4);
}



/*----------------------------------------*/
/*  05. Button css start
/*----------------------------------------*/
.bd-bn__btn-1 {
  height: 60px;
  background-color: var(--clr-theme-1);
  padding: 0 50px;
  display: inline-block;
  line-height: 57px;
  font-size: 16px;
  color: var(--clr-common-white);
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--clr-theme-1);
}
.bd-bn__btn-1:hover {
  border: 1px solid var(--clr-theme-1);
  background-color: transparent;
  color: var(--clr-theme-1);
}



/*----------------------------------------*/
/*  Header
/*----------------------------------------*/

header .col-md-2,
header .col-md-10{
  padding: 15px 0;
}

header .logo img{
  max-width: 50%;
}

header .menu{
  padding: 65px 0;
}


.menu ul li a{
  font-weight: bold;
}

.menu-icon span {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

.menu-icon span.icon {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.menu-icon span:hover {
  background-color: #ddd;
  color: black;
}

.menu-icon .active {
  background-color: #04AA6D;
  color: white;
}

/* .menu ul li{
  float: left;
  padding-right: 85px;
} */

.menu ul li a{
  font-size: 21px;
  font-family: var(--bd-ff-p);
  text-transform: uppercase;
  color: var(--clr-common-white);
}

.menu ul li a:hover{
  color: var(--clr-text-menu-hv);
}


/*----------------------------------------*/
/*  Slider
/*----------------------------------------*/

.slider-container{
  padding: 0;
  margin:0 auto;
  overflow: hidden;
}

.slider-container .slick-initialized .slick-slide{
  margin-bottom: -8px;
}

.slider{
  position: relative;
  --bs-gutter-x:0;
}

.slider .slick-active div div{
  margin-bottom: -8px;
}

.slider .slider-text{
  position: related;
  bottom:0;
  background-color: #000;
}


.slider-main img{
  width:100%;
}

.slider .slider-text .content{
  width: 90%;
  margin: 50px auto;
  text-align: justify;
}

 h2.title{
   margin-top: 0;
   margin-bottom: 40px;
   font-size: 44px;
   letter-spacing: 9px;
   text-align: center;
   text-transform: uppercase;
   font-family: 'beckmanfree';
}

.slider .slider-text .content h2{
  font-size: 25px;
  text-align: center;
}

.slider .slider-text .content p{
  color: #fff;
  font-size: 22px;
  text-align: center;
}





h2.visionh,
h2.missionh{
  font-size: 25px;
  text-transform: uppercase;
  line-height: initial;
}

.missionh{
  color: #fff;
}

.middle-text{
  width: 90%;
  margin: 25px auto 25px;
}

.middle-text p{
  color: var(--clr-theme-1);
  text-align: center;
}



.standfor-container{
  padding: 0;
}

.standfor-container h2{
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 44px;
  letter-spacing: 9px;
}

.standfor-container img{
  width:100%;
}

.standfor-container .col{

}

.standfor-container .row,
.standfor-container .col,
.standfor-container .col-3{
  padding: 0 !important;
  margin: 0 !important;
  --bs-gutter-x:0;
  --bs-gutter-y:0;
}


.product-values-inner{
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}


.our-impact{
  background: #fff;
  padding:80px 0;
  margin:0;
}

.our-impact .text{
  padding: 0;
}

.our-impact p{
  text-align: left;
}

.our-impact .left img{
  width: 75%;
}

.who-we-are{
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fff;
}


.slider-product-container{
  width:100%;
  background: #fff;
  padding: 50px 30px;
}


.slider-product-container .slick-slide img{
  margin: 10px auto;
  border-radius: 15px;
}

.ptitle{
  padding: 15px 0;
  display: inline-block;
  width:100%;
}

.ptitle h2{
  text-align: center;
}

.slider-product-container .slick-slide  .item{
  background: #fff;
  border-radius: 15px;
}

.slider-product-container .slick-slide  .item h2{
  font-size: 16px;
  letter-spacing: normal;
  font-family: 'Open Sans';
  font-weight: bold;
  font-size: 20px;
  padding-left: 10px;
  padding-right: 10px;
  color: #111;
}

.slider-product-container .slick-slide  .item a{
  border: none;
  text-decoration: none;
}

.slider-product-container .slick-slide{
  margin-left: 10px;
  margin-right: 10px;
}


.certifications{
  padding: 50px 0;
}

.certification-icon{
  display: flex;
}

.certification-icon div{
  margin-right: 30px;
  margin-bottom: 20px;
}


.certifications h2{
  font-size:30px;
  width: 100%;
  text-align: left;
  margin-bottom: 40px;
}

.certifications .text{
  padding: 0 20px 0 0;
  text-align: center;
}


.certifications .text-2{
  color: #555555;
}

.certifications p{
  text-align: left;
}

.bottom-text h2{
  color: #d7df26;
  text-align: center;
  font-size: 29px;
  margin-top: 50px;
}


footer .container-fluid{
  background: url(../images/footer-bg.jpg ) no-repeat right bottom;
  background-size:50%;
}

footer  .footer{
  padding-top: 120px;
  padding: 120px 30px 10px 30px;
}

footer .copywrite{
  padding-bottom: 30px;
}

.copywrite{
  text-align: center;
  font-size:12px;
  color: #555555;
}

.tcenter{
  text-align: center;
}


/* Contact */

.form-container{
  width: 100%;
  max-width: 500px;
  display: inline-block;
}

.form-group{
  margin-bottom: 20px;
  display: inline-block;
    width:100%;
}

.whitebg{
  background: #fff;
  padding-top: 40px;
  padding-bottom: 20px;
}

.black-button{
  background: #000;
    padding: 10px 30px;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
}

.black-button:hover{
  background: #111;
}

.errormsg{
  color: #111;
  margin-bottom: 20px;
}

.errormsg h4{
  color: #111;
}

.address{
  margin-bottom: 40px;
}

label{
  font-weight: bold;
}

.gcaptcha{
  font-weight: bold;
  color: red;
}


.grid-product-container{
  background: #fff;
  padding: 60px 15px;
}

.grid-product-container-inner{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.grid-product-container-inner .item{
/*  max-width: calc(100% / 4); */
  margin-bottom: 20px;
}

.grid-product-container-inner .item a{
  display: inline-block;
  text-align: center;
}

.grid-product-container-inner .item img{
  max-width: 250px;
  width:100%;
  margin:0 auto;
}

.grid-product-container .item h2{
    letter-spacing: normal;
    font-family: 'Open Sans';
    font-weight: bold;
    font-size: 20px;
    padding-left: 10px;
    padding-right: 10px;
    color: #111;
}



.popup_overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.popup_overlay.active {
  visibility: visible;
  opacity: 1;
}

.popup_content {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 90%;
  height: 90%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup_content .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}
.popup_content .close:hover {
  color: #ccc;
}

.popup_content  .main-image{
  text-align: center;
}

.popup_content  .main-image img{
  max-width:100%;
}

.popup_content  .small-image img{
  max-width:100%;
  cursor: pointer;
}


.item  .popup_content h2{
  margin-bottom: 40px;
  padding-left: 0;
  text-transform: uppercase;
}

.popup_content .block{
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px dashed #000;
}

.contact-btn a{
  display: inline-block;
  padding: 20px;
  background: #000;
  color:#fff;
  font-weight: bold;
  text-transform: uppercase;
  width: 50%;
  border-radius: 15px;
  font-size: 24px;
}

.contact-btn a:hover{
  background: #222;
}
