/* added */
:root {
  --theme-color: #492400;
  --theme-color-ultra: #a98e49;
  --theme-color-ultraLight: #e4bf60;
  --theme-color-secondary: #a75e18;
  --theme-color-midgrey: #f7f7f7;
  --theme-color-white: #fff;
  --theme-color-black: #000;
  --theme-color-dark: #232a34;
  --theme-color-lightdark: #969696;
  --theme-body-font: "Poppins", sans-serif;
  --theme-heading-font: "Hind", sans-serif;
  --theme-heading-banner: "Lobster", sans-serif;

  /* font */
  --font48:48px;
  --font36:36px;
  --font24:24px;
  --font20:20px;
  --font18:18px;
  --font16:16px;
  --shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  --transition03: all ease 0.3s;
}

h1, h2, h3, h4, h5 {
  text-transform: uppercase;
}

h1 {
  font-size: var(--font48);
}

h2, h3 {
  font-size: var(--font36);
}

h4 {
  font-size: var(--font24);
}

p {
  font-size: var(--font16);
}

.commonbtn {
  -webkit-user-select: none;
  user-select: none;
  -moz-user-select: none;
  background: var(--theme-color-ultra) none repeat scroll 0 0 !important;
  color: var(--theme-color-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0;
  padding: 18px 25px 18px 30px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  border: 0;
  position: relative;
  z-index: 1;
  border-radius: 5px;
}

.commonbtn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--tg-blue);
  border-radius: 30px;
  z-index: -1;
  transition: all 0.3s ease 0s;
}

.commonbtn::after {
  content: "\f054";
  font-family: FontAwesome;
  font-weight: 700;
  margin-left: 45px;
}

.commonbtn:hover::before {
  width: 100%;
}

.commonbtn:hover {
  color: var(--theme-color);
  background: var(--theme-color-secondary);
  transform: scale(1.05);
}

.banner_cst {
  width: 100%;
  height: auto;
  background: url(../images/banner_cst1.png) no-repeat;
  min-height: 600px;
  background-position: center center;
  background-size: cover;
  position: relative;
  /* border-bottom: 15px solid var(--theme-color); */
}

.banner_text {
  width: 100%;
  max-width: 600px;
  position: absolute;
  left: 40%;
  top: 50%;
  transform: translate(-40%, -50%);
  text-align: center;
  box-sizing: border-box;
  padding: 2em;
  margin-top: 1em;
  color: var(--theme-color-black);
}

.banner_text h1 {
  color: var(--theme-color);
  font-size: var(--font48);
  line-height: var(--font48);
  font-family: var(--theme-heading-banner);
  text-transform: capitalize;
  padding-bottom: 0.3em;
}

.banner_text p {
  color: var(--theme-color-secondary);
}

.con-mid-sec {
  background: var(--theme-color-ultraLight);
}

.cont_heading {
  background-color: var(--theme-color);
  padding: 2em;
  text-align: left;
}

.cont_heading h5 {
  font-size: var(--font48);
  color: var(--theme-color-white);
  text-transform: uppercase;
}

.cont_txt {
  background: var(--theme-color-dark);
  padding: 0em;
  height: 100%;
  display: flex;
  align-items: center;
}

.cont_txt ul {
  margin: 0;
  padding: 2em 2em;
}

.cont_txt ul li {
  list-style: none;
  padding-left: 2em;
  color: var(--theme-color-white);
  text-align: left;
  margin-bottom: 1em;
  position: relative;
}

.cont_txt ul li::before {
  content: "\f00c";
  font-family: FontAwesome;
  color: var(--theme-color);
  position: absolute;
  left: 0;
  top: 0;
}

.cont_img {
  transition: all ease 0.3s;
}

.cont_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.productcontent {
  background: var(--theme-color);
  padding: 1em;
  text-align: center;
}

.mid_heading {
  transition: all ease 0.3s;
  text-align: center;
  background: var(--theme-color-midgrey);
  position: relative;
}

.mid_heading h3 {
  font-size: var(--font48);
  color: var(--theme-color-secondary);
  font-weight: 700;
  text-transform: uppercase;
}

.mid_heading p {
  font-size: var(--font16);
  line-height: 25px;
  color: var(--theme-color-dark);
  font-weight: 300;
  padding-top: 0.1em;
}

.mid_tw {
  padding: 4em 0;
}

/* product */
.prodShowcase-for.slick-initialized .slick-slide {
  padding: 20px;
  background: var(--theme-color-midgrey);
}

.prodShowcase-nav .slick-list img {
    margin: 0 8px;
    background: #ffff;
    max-width: 90px;
}

.prodImg {
  background: var(--theme-color-midgrey);
  padding: 2em;
}

.prodImg img {
  width: 100%;
}

.prodBox {
  margin-bottom: 1em;
}

.productbox .productimg {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  display: flex;
  justify-content: center;
  padding: 1.5em;
}

.productbox .productimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 215px;
  margin-bottom: 0;
  /* filter: drop-shadow(0px 5px 10px black); */
}

.prod_text_bx {
  background-color: var(--theme-color);
  padding: 1.5em;
}

.prod_text_bx h4 {
  font-size: --font18 !important;
  color: var(--theme-color-ultraLight);
  padding-bottom: 0.3em;
}

.fr_img {
  transition: var(--transition03);
}
.fr_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fr_text {
  width: 100%;
  border: 1px solid var(--theme-color-ultra);
  padding: 1.5em 1.5em;
  text-align: left;
  margin: 0.8em 0;
  transition: var(--transition03);
}
.fr_text .fr_icon {
  width: 100%;
  display: flex;
  justify-content: right;
  font-size: var(--font24);
  color: var(--theme-color-secondary);
  padding-bottom: 0.5em;
}
.fr_text h2 {
  color: var(--theme-color-dark);
  padding-bottom: 0.2em;
}
.fr_text h5 {
  color: var(--theme-color-secondary);
  font-size: var(--font20);
}

.fr_text:hover {
  transform: translate(-5px);
}

.tw_text {
  width: 100%;
}
.tw_text h3 {
  color: var(--theme-color-secondary);
  padding-bottom: 0.5em;
}
.tw_text ul {
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--theme-color-ultraLight);
  margin-top: 1em;
  margin-left: 15px;
}
.tw_text ul li {
  list-style: none;
  font-size: var(--font18);
  color: var(--theme-color-lightdark);
  padding-left: 2em;
  position: relative;
  margin-bottom: 1em;
}
.tw_text ul li:after {
  background: var(--theme-color-ultraLight);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
}

.tw_img {
  transition: all ease 0.3s;
}
.tw_img img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.tw_img_cont {
  background: var(--theme-color-secondary);
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50px;
  width: auto;
  padding: 1em 2em;
  animation: alternate 5s linear 2s infinite alternate;
  text-align: center;
  color: var(--theme-color-white);
  font-size: var(--font18);
  line-height: 16px;
}

.pos_rel {
  position: relative;
}

.mid_thr {
  padding-bottom: 4em;
}

.tr_text h3 {
  color: var(--theme-color-secondary);
}

.tr_textnd {
  background: var(--theme-color-secondary);
  width: 100%;
  padding: 2em;
  height: 100%;
}
.tr_textnd h4 {
  color: var(--theme-color-ultraLight);
}
.tr_textnd p {
  color: var(--theme-color-white);
}
.col-lg-5.cont_rg ul{
    margin: 0;
    padding: 0;
}
.col-lg-5.cont_rg ul li{
    line-height: 1.556;
    background: var(--theme-color);
    color: var(--theme-color-ultraLight);
    margin-bottom: 1em;
    width: 100%;
    display: block;
    padding: 1.5em 2em;
}


@keyframes alternate {
  0% {
    top: 130px;
  }
  25% {
    top: 160px;
  }
  50% {
    top: 190px;
  }
  75% {
    top: 160px;
  }
  100% {
    top: 130px;
  }
}



/*  */
@media only screen and (max-width: 1180px) {
    .tw_img_cont{
        width: 300px;
    }
    .fr_img{
        margin-bottom: 1em;
    }
  .banner_cst {
    background: url(../images/mobile_banner.png) no-repeat;
    background-position: right center;
    background-size: cover;
    position: relative;
    /* border-bottom: 15px solid var(--theme-color); */
  }
  .banner_text {
    width: 90%;
    max-width: 500px;
    position: absolute;
    text-align: left;
    box-sizing: border-box;
    padding: 2em;
    background: radial-gradient(rgb(219 195 142), transparent);
  }
  .banner_text h1 {
    padding-bottom: 0.2em;
  }
  .mid_heading h3 {
    font-size: 30px;
    line-height: 45px;
  }
  /*  */
  #products .slick-prev {
    left: 0px;
  }
  #products .slick-next {
    right: 0px;
  }
  /* .prodShowcase-nav .slick-list img {
    width: 65px !important;
    height: 65px !important;
  } */
  /*  */
}
@media only screen and (max-width: 820px) {
  .tr_text {
    padding-top: 1.5em;
  }
  .hd_txt {
    margin-top: 2em;
  }
  .featuresec h3 {
    margin-bottom: 30px;
  }
  .commonbtn {
    font-size: 16px;
  }
  .banner_text {
    max-width: 400px;
  }
  .cmenu2 {
    display: none;
  }
  .cmenu {
    position: absolute;
  }
  .tw_text{
      margin-bottom: 2em;
  }
}
@media only screen and (max-width: 767px) {
    .tw_img_cont{
        width: 300px;
    }
  .banner_cst {
    background: url(../images/mobile_banner.png) no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    /* border-bottom: 15px solid var(--theme-color); */
  }
  .banner_text {
    top: 45%;
  }
  .banner_text h1 {
    font-size: var(--font36);
    line-height: var(--font36);
  }
  .cont_heading h5 {
    font-size: var(--font36);
  }
}/*# sourceMappingURL=custom.css.map */