@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Lora:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap");
/*-- Some Variables --*/
:root {
  /*-- Fonts --*/
  --font-default: "Poppins", sans-serif;
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Kaushan Script", cursive;
  --font-third: "Lora", serif;
  /*-- Color --*/
  --main-color: #3cb815;
  --second-color: rgb(255, 156, 38);
  --third-color: #ffdd67;
  /*-- Box-shadow --*/
  --box-shadow: 2px 2px 5px 2px rgb(14 55 54 / 15%);
}

/*--  General  --*/
body {
  font-family: var(--font-default);
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  list-style: none;
  outline: none;
}
a {
  text-decoration: none;
}

/*--  Spinner Start  --*/
#loader {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  top: 0%;
  left: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .spinner-one {
  color: green;
}
.loader .spinner-two {
  color: green;
  margin: 0 10px;
}
.loader .spinner-three {
  color: green;
}

/*--  Topbar Start  --*/
.topbar{
	background-color:#fff;
	border-bottom:1px solid #eee;
}
.topbar{
	padding-left:0;
  padding-right: 0;
  padding-top: 15px;
  padding-bottom: 0px;
}
.topbar .top-link li{
	display:inline-block;
	margin-right:15px;
}
.topbar .top-link li:last-child{
	margin-right:0px;
}
.topbar .top-link li a{
	color:#2C2D3F;
	font-size:15px;
	font-weight:400;
}
.topbar .top-link li:hover a{
  color: rgb(8, 216, 8);	
  transition: all 0.3s ease;
}
.topbar .top-contact{
	float:right;
}
.topbar .top-contact li{
	display:inline-block;
	margin-right:25px;
	color:#2C2D3F;
}
.topbar .top-contact li:last-child{
	margin-right:0;
}
.topbar .top-contact li a{
	font-size:15px;
  color:#2C2D3F;
}
.topbar .top-contact li a:hover{
	transition: all 0.3s ease;
  color: rgb(8, 216, 8);  
}
.topbar .top-contact li i{
	color: orangered;
  font-size: 16px;
	margin-right:8px;
}

/*--  Header Section  --*/
.header-area {
  position: relative;
}
.header-area .navbar {
  padding-top: 0;
  padding-bottom: 0;
}
.sticky {
  position: fixed;
  top: 0;
  padding: 0;
  width: 100%;
  box-shadow: var(--box-shadow);
  z-index: 99;
  background-color: #fff;
  animation: slideDown 900ms ease-in-out;
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-area .navbar ul li a {
  font-family: var(--font-third);
}
#header-area.sticky ul li a {
  color: #303030;
}
#header-area.sticky ul li a.active {
  color: rgb(255, 156, 38);
}
#header-area.sticky ul li a.active:hover {
  color: rgb(255, 156, 38);
}
#header-area.sticky ul li a:hover {
  color: rgb(8, 216, 8);
}
.header-area .navbar .navbar-brand {
  font-size: 35px;
  line-height: 80px;
  color: #666;
  font-family: var(--font-secondary);
  padding: 0% 5%;
  transition: all 0.3s ease;
}
.header-area .navbar .navbar-brand:hover {
  color: var(--main-color);
}
.header-area .navbar .ct {
  display: flex;
  align-items: center;
}
#header-area.sticky .navbar-brand {
  color: #fff;
}
.header-area .navbar .navbar-nav {
  gap: 15px;
  padding-right: 5%;
}
.header-area .navbar-nav .nav-item a {
  color: #000;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.header-area .nav-item a:hover {
  color: rgb(8, 216, 8);
}
.header-area .nav-item a.active {
  color: rgb(8, 216, 8);
  transition: all 0.3s ease;
}

/*--  Image Slider Section  --*/
.banner-section {
  overflow: hidden;
}
.banner-section .banner-slider .slick-next {
  right: 5%;
  z-index: 999;
}
.banner-section .banner-slider .slick-prev {
  left: 5%;
  z-index: 999;
}
.banner-slider .slick-prev:before,
.banner-slider .slick-next:before {
  color: rgba(61, 59, 59, 0.2);
  font-size: 60px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.banner-slider:hover .slick-prev:before {
  opacity: 1;
  visibility: visible;
}
.banner-slider:hover .slick-next:before {
  opacity: 1;
  visibility: visible;
}
.banner-section .slick-dotted.slick-slider {
  margin-bottom: 0px;
}
.banner-section .banner-slider .slick-dots {
  bottom: 30px;
}
.banner-section .slick-dots .slick-active {
  background-color: #d3cdcd;
  border-radius: 50%;
}
.banner-section .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}
.banner-section .banner-slider .slide {
  min-height: 800px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.banner-section .banner-slider .slide1 {
  background-image: url(../images/slider/slide1.png);
}
.banner-section .banner-slider .slide2 {
  background-image: url(../images/slider/slide2.png);
}
.banner-section .banner-slider .slide3 {
  background-image: url(../images/slider/slide3.png);
}
.banner-section .banner-slider .slide4 {
  background-image: url(../images/slider/slide4.png);
}
.banner-section .banner-slider .slide-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1480px;
  transform: translateY(-50%);
  padding: 0 15px;
}
.banner-section .slide .slide-content h3 {
  font-size: 38px;
  font-family: var(--font-third);
  margin-left: 6px;
  margin-bottom: 0px;
  color: #666;
}
.slick-active.animation-1 .slide-content .small-title {
  animation: fadeDown 0.4s linear 0.6s backwards;
  animation-duration: 0.9s;
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }
}
.banner-section .slide .slide-content h1 {
  font-family: var(--font-primary);
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 0;
}
.slick-active.animation-1 .slide-content .main-title {
  animation: fadeLeft 0.4s linear 0.6s backwards;
  animation-delay: 1.2s;
  animation-duration: 0.9s;
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.banner-section .slide .slide-content h2 {
  font-family: var(--font-primary);
  font-size: 72px;
  margin-bottom: 25px;
  font-weight: 400;
}
.slick-active.animation-1 .slide-content .title2 {
  animation: fadeLeft 0.4s linear 0.6s backwards;
  animation-delay: 1.2s;
  animation-duration: 0.9s;
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.banner-section .slide-content .banner-btn {
  font-size: 20px;
  position: relative;
  font-weight: 700;
  padding: 12px 45px;
  text-transform: uppercase;
  border-radius: 30px;
  background-color: #3cb815;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: var(--font-third);
  border: none;
  outline: none;
  transition: all 0.5s ease;
}
.banner-section .slide-content .banner-btn:hover {
  background-color: orange;
}
.banner-section .slide-content .banner-btn span {
  background-color: rgba(247, 253, 243, 0.2);
  height: 100%;
  border-radius: 22px;
  width: 0;
  position: absolute;
  left: 1%;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
.banner-section .slide-content .banner-btn:hover span {
  width: 99%;
}
.banner-section .slide-content .main-btn {
  position: relative;
}
.slick-active.animation-1 .slide-content .banner-btn {
  animation: fadeUp 0.4s linear 0.6s backwards;
  animation-delay: 1.6s;
  animation-duration: 0.9s;
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/*--  Shipping Section  --*/
.shipping-section {
  padding-top: 96px;
  padding-bottom: 87px;
}
.shipping-section .row1 .title {
  margin-bottom: 40px;
}
.shipping-section .row1 .title h3 {
  font-size: 38px;
  color: var(--main-color);
  letter-spacing: 1px;
  margin-bottom: 0;
  font-family: var(--font-secondary);
}
.shipping-section .row1 .title h2 {
  font-size: 48px;
  font-family: var(--font-primary);
}
.shipping-section .row1 .title p {
  max-width: 420px;
  margin: auto;
}
.shipping-section .row2 .box {
  position: relative;
  padding: 18px;
  overflow: hidden;
}
.shipping-section .row2 .box:hover {
  box-shadow: var(--box-shadow);
  transition: all 0.5s ease;
}
.shipping-section .row2 .top-box {
  position: relative;
  overflow: hidden;
}
.shipping-section .row2 .top-box img {
  transition: all 0.8s ease;
  width: 100%;
}
.shipping-section .row2 .box:hover img {
  transform: scale(1.2);
}
.shipping-section .row2 .bottom-box {
  position: absolute;
  padding: 15px;
  left: 0;
  right: 0;
  bottom: -150px;
  width: 100%;
  background-color: #fff;
  transition: all 0.8s ease;
}
.shipping-section .row2 .box:hover .bottom-box {
  bottom: 0px;
}
.shipping-section .bottom-box .bi {
  font-size: 30px;
  font-weight: 700;
  color: #3cb815;
}
.shipping-section .bottom-box .bi:hover {
  color: orange;
  transition: all 0.5s ease;
}
.shipping-section .row2 .bottom-box a {
  color: #333;
}
.shipping-section .row2 .bottom-box a:hover {
  color: #666;
  transition: all 0.3s ease;
}
.shipping-section .row2 .bottom-box h3 {
  font-size: 17px;
  margin-top: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-third);
}

/*--  Advertisement Section  --*/
.adv {
  padding-top: 70px;
  padding-bottom: 70px;
  background: linear-gradient(
      180deg,
      rgba(86, 182, 94, 0.85) 35%,
      rgba(58, 37, 25, 0.15) 100%
    ),
    url(../images/adv/adv-bg.png);
  background-repeat: no-repeat;
  background-position: top left;
}
.adv .col1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.adv .banner-content h3 {
  color: #fff;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}
.adv .banner-content h2 {
  font-size: 85px;
  font-family: var(--font-primary);
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  margin-bottom: 25px;
  transition: all 0.5s ease;
}
.adv .banner-content h2:hover {
  animation: color 3s infinite;
}
@keyframes color {
  0% {
    -webkit-text-stroke: 2px #fff;
    text-shadow: 1px 1px 0 orange;
  }
  20% {
    -webkit-text-stroke: 2px #fff;
    text-shadow: 1px 1px 0 orange;
  }
  50% {
    -webkit-text-stroke: 2px #fff;
    text-shadow: 1px 1px 0 yellow;
  }
  100% {
    -webkit-text-stroke: 2px #fff;
    text-shadow: 1px 1px 0 #3cb815;
  }
}
.adv .banner-content h4 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.adv .banner-content .wrapper {
  margin-top: 30px;
}
.adv .banner-content .adv-btn {
  position: relative;
  padding: 11px 24px;
  background-color: transparent;
  border-radius: 0px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--font-third);
  letter-spacing: 1.2px;
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}
.adv .banner-content .adv-btn span {
  background-color: rgba(247, 253, 243, 0.2);
  height: 100%;
  width: 0;
  position: absolute;
  left: 1%;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
.adv .banner-content .adv-btn:hover span {
  width: 99%;
}
.adv .banner-content .adv-btn:hover {
  background-color: var(--main-color);
}
.adv .col2 .wrapper img:hover {
  animation: rotate-img 4s;
  transition: all 2.1s ease;
}
@keyframes rotate-img {
  50% {
    transform: translateY(30%);
  }
  60% {
    opacity: 0;
  }
  70% {
    transform: translateY(-20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*--  Services Section  --*/
.service {
  padding-top: 102px;
  padding-bottom: 75px;
}
.service .row1 .title {
  margin-bottom: 57px;
}
.service .row1 h3 {
  font-size: 35px;
  color: var(--main-color);
  letter-spacing: 1px;
  font-family: var(--font-secondary);
}
.service .row1 h2 {
  font-family: var(--font-primary);
  font-size: 48px;
}
.service .row2 .wrapper {
  background-color: rgb(243, 246, 250);
  padding: 30px 35px 37px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.service .row2 .wrapper a {
  color: #333;
}
.service .row2 .wrapper h5 {
  font-family: var(--font-third);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 22px;
}
.service .row2 .wrapper i {
  color: #3cb815;
  font-size: 32px;
  padding-right: 13px;
}
.service .row2 .wrapper p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

/*--  Discount Section  --*/
.discount {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
}
#discount {
  background-image: url(../images/discount/discount-img.png);
  background-size: cover;
  background-position: bottom left;
}
.custom {
  position: relative;
  z-index: 2;
}
.discount .cover {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -100;
}
.discount .discount-content h4 {
  font-size: 35px;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}
.discount .discount-content h2 {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  font-family: var(--font-third);
  margin-bottom: 14px;
}
.discount .discount-content h2 span {
  color: yellow;
  font-size: 54px;
}
.discount .discount-content p {
  max-width: 450px;
  margin: 0 auto;
  color: #fff;
  margin-bottom: 25px;
  line-height: 28px;
}
.discount .discount-content .discount-btn {
  position: relative;
  padding: 11px 23px;
  background-color: transparent;
  border-radius: 0px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--font-third);
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}
.discount .discount-content .discount-btn:hover {
  background-color: var(--main-color);
}
.discount .wrapper .discount-btn span {
  background-color: rgba(247, 253, 243, 0.2);
  height: 100%;
  width: 0;
  position: absolute;
  left: 1%;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
.discount .wrapper .discount-btn:hover span {
  width: 99%;
}

/*--  Banner-2 Section  --*/
.banner-2 {
  padding-top: 102px;
  padding-bottom: 80px;
}
.banner-2 .row1 .title {
  margin-bottom: 57px;
}
.banner-2 .row1 .title h3 {
  font-size: 35px;
  color: var(--main-color);
  letter-spacing: 1px;
  font-family: var(--font-secondary);
}
.banner-2 .row1 .title h2 {
  font-size: 48px;
  font-family: var(--font-primary);
}
.banner-2 .row2 .box {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 10px;
}
.banner-2 .row2 .box:hover {
  transition: all 0.5s ease;
}
.banner-2 .row2 .box img {
  transition: all 1.1s ease;
  width: 100%;
}
.banner-2 .row2 .box:hover img {
  transform: scale(1.2) rotate(3deg);
  transition: all 1.1s ease;
}

/*--  About Section  --*/
.about {
  padding-top: 100px;
  padding-bottom: 105px;
  background-color: rgb(243, 246, 250);
}
.about .left-content img:hover {
  animation: run-aboutimg 4s;
  transition: all 2.1s ease;
}
@keyframes run-aboutimg {
  50% {
    transform: translateX(10%);
  }
  60% {
    opacity: 0;
  }
  70% {
    transform: translateY(-10%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.about .right .right-content h3 {
  font-size: 38px;
  color: var(--main-color);
  letter-spacing: 1px;
  margin-bottom: 0;
  font-family: var(--font-secondary);
}
.about .right .right-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
  font-family: var(--font-primary);
}
.about .right .right-content .p1,
.p2 {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
}
.about .right .right-content .p2 {
  margin-bottom: 30px;
}
.about .right .right-content .wrapper {
  margin-top: 10px;
}
.about .right .right-content .about-btn {
  position: relative;
  padding: 12px 24px;
  background-color: var(--main-color);
  border-radius: 0px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--font-third);
  color: #fff;
  border: 2px solid #fff;
  font-weight: 700;
  transition: all 0.3s ease;
}
.about .right-content .about-btn span {
  background-color: rgba(247, 253, 243, 0.2);
  height: 100%;
  width: 0;
  position: absolute;
  left: 1%;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
.about .right-content .about-btn:hover span {
  width: 99%;
}
.about .right-content .about-btn:hover {
  background-color: rgb(255, 156, 38);
}

/*--  Product Section  --*/
.product-section {
  padding-top: 102px;
  padding-bottom: 105px;
}
.product-section .row1 .product-header {
  margin-bottom: 40px;
}
.product-section .product-header h3 {
  font-size: 35px;
  color: var(--main-color);
  letter-spacing: 1px;
  font-family: var(--font-secondary);
}
.product-section .product-header h2 {
  font-family: var(--font-primary);
  font-size: 48px;
}
.product-section .row2 .product-content {
  position: relative;
  padding: 18px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}
.product-section .row2 .product-content:hover {
  box-shadow: var(--box-shadow);
}
.product-section .product-content .product-img {
  position: relative;
  overflow: hidden;
}
.product-section .product-content .product-img img {
  width: 100%;
}
.product-section .product-img .img1 {
  transition: all 0.7s ease;
}
.product-section .product-img .img2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.7s ease;
  transform: translateX(100%);
}
.product-section .product-img:hover .img2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.product-section .product-img:hover .img1 {
  transform: translateX(-100%);
}
.product-section .product-img .new-ct {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.product-section .product-img span {
  color: #fff;
  padding: 4px 10px;
  background-color: rgb(255, 204, 0);
  font-weight: 600;
}
.product-section .product-content .action {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
.product-section .product-content .quickview {
  width: 46px;
  height: 46px;
  line-height: 46px;
  margin: 0 5px;
  background-color: #fff;
  color: #3cb815;
  font-weight: bolder;
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.01);
  text-align: center;
  border-radius: 50%;
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.product-section .product-content .quickview i {
  line-height: 46px;
  font-size: 18px;
  font-weight: bolder;
  transition: all 0.5s ease;
}
.product-section .product-content .action a:hover {
  background-color: #3cb815;
}
.product-section .action a:hover i {
  color: #fff;
}
.product-section .product-content:hover .quickview {
  opacity: 1;
  visibility: visible;
}
.product-section .product-content .product-text {
  padding-top: 30px;
}
.product-section .product-text .title a {
  color: #000;
  transition: all 0.3s ease;
}
.product-section .product-content .product-text h4 {
  font-size: 20px;
  line-height: 24px;
  font-family: var(--font-third);
  margin-bottom: 7px;
}
.product-section .product-text .rating {
  margin-bottom: 5px;
}
.product-section .product-text .rating i {
  font-size: 16px;
  color: rgb(255, 204, 0);
}
.product-section .product-text .order {
  margin-top: 23.5px;
  text-align: center;
}
.product-section .product-text .order .product-btn {
  position: relative;
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 22px;
  background-color: var(--main-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  border: none;
  outline: none;
  font-weight: 500;
  transition: all 0.5s ease;
  margin-bottom: 30px;
}
.product-section .product-text .product-btn:hover {
  background-color: orange;
}
.product-section .product-text .product-btn span {
  background-color: rgba(247, 253, 243, 0.2);
  height: 100%;
  border-radius: 22px;
  width: 0;
  position: absolute;
  left: 1%;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
.product-section .product-btn:hover span {
  width: 99%;
}
.product-section .product-text .price-box {
  margin-bottom: 7px;
}
.product-section .product-text .price-box p {
  font-weight: 500;
  font-size: 18px;
}
.product-section .product-text .price-box span {
  color: #666;
  text-decoration: line-through;
  margin-left: 2%;
  opacity: 0.6;
  font-size: 17px;
}
.product-section .wrapper-viewmore .product-viewmore {
  position: relative;
  padding: 11px 30px;
  background-color: transparent;
  border-radius: 0px;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-third);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  font-weight: 600;
  transition: all 0.3s ease;
}
.product-section .wrapper-viewmore .product-viewmore span {
  background-color: rgba(247, 253, 243, 0.2);
  height: 100%;
  width: 0;
  position: absolute;
  left: 1%;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
.product-section .wrapper-viewmore .product-viewmore:hover span {
  width: 99%;
}
.product-section .wrapper-viewmore .product-viewmore:hover {
  background-color: var(--main-color);
  color: #fff;
}

/*--  Testimonial Section  --*/
.testimonial {
  padding-top: 102px;
  background-color: rgb(243, 246, 250);
  padding-bottom: 75px;
}
.testimonial .row1 .title {
  margin-bottom: 57px;
}
.testimonial .row1 .title h3 {
  font-size: 35px;
  color: var(--main-color);
  letter-spacing: 1px;
  font-family: var(--font-secondary);
}
.testimonial .row1 .title h2 {
  font-family: var(--font-primary);
  font-size: 48px;
}
.testimonial .row2 .box {
  background-color: #fff;
  padding: 40px 40px 50px 40px;
  margin: 0 10px;
}
.testimonial .box .testi-content p {
  color: #666;
  line-height: 26px;
  font-style: italic;
  font-family: var(--font-third);
}
.testimonial .box .client-info {
  display: flex;
  align-items: center;
}
.testimonial .client-info .thumb {
  margin-right: 20px;
}
.testimonial .client-info .name a {
  color: #000;
  font-weight: 500;
  font-size: 21px;
  font-family: var(--font-third);
}
.testimonial .client-info .name p {
  margin-bottom: 0;
  color: #918e8e;
}
.testimonial .client-info .name i {
  color: orange;
}
.testimonial .testimonial-content .slick-dots {
  bottom: 15px;
}
.testimonial .testimonial-content .slick-dots .slick-active {
  background-color: #d3cdcd;
  border-radius: 50%;
}
.testimonial-content .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
}

/*--  Discover Section  --*/
.discover {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  text-align: center;
}
#discover {
  background-image: url(../images/discover/discover-img.png);
  background-size: cover;
}
.discover.custom {
  position: relative;
  z-index: 2;
}
.discover .cover {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -100;
}
.discover .discover-content h4 {
  font-size: 35px;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}
.discover .discover-content .coming {
  font-size: 35px;
  letter-spacing: 0.5px;
  color: #fff;
  margin-bottom: 0px;
  font-family: var(--font-secondary);
}
.discover .discover-content .newsletter {
  font-weight: 600;
  -webkit-text-stroke: 1px yellow;
  text-shadow: 1px 1px 0 #666;
  color: #fff;
  font-size: 70px;
  transition: all 0.5s ease;
  font-family: var(--font-third);
  margin-bottom: 10px;
}
.discover .discover-content .newsletter:hover {
  color: var(--main-color);
}
.discover .discover-content p {
  max-width: 450px;
  margin: 0 auto;
  color: #fff;
  margin-bottom: 20px;
  line-height: 28px;
}
.discover .discover-content .discover-btn {
  position: relative;
  padding: 8px 23px;
  background-color: transparent;
  border-radius: 0px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--font-third);
  color: #fff;
  border: 2px solid #fff;
  letter-spacing: 1.2px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.discover .discover-content .discover-btn:hover {
  background-color: var(--main-color);
}
.discover .wrapper .discover-btn span {
  background-color: rgba(247, 253, 243, 0.2);
  height: 100%;
  width: 0;
  position: absolute;
  left: 1%;
  top: 0;
  z-index: 2;
  transition: all 0.5s ease;
}
.discover .wrapper .discover-btn:hover span {
  width: 99%;
}

/*--  Footer Section  --*/
.footer-header {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: rgb(243, 246, 250);
}
.footer-header .footer-about .footer-logo {
  margin-bottom: 15px;
}
.footer-header .footer-about p {
  font-size: 14px;
  margin-bottom: 12px;
}
.footer-header .footer-about ul {
  margin-bottom: 0;
}
.footer-header .footer-about ul span {
  text-decoration: underline;
}
.footer-section .footer-about ul {
  padding-left: 0;
}
.footer-section .footer-about ul li {
  list-style: none;
  font-size: 14px;
  line-height: 28px;
}
.footer-section .footer-header .footer-item {
  margin-top: 20px;
}
.footer-section .footer-item ul {
  padding-left: 0;
  margin-bottom: 0;
}
.footer-section .footer-item ul li {
  list-style: none;
}
.footer-section .footer-item h6 {
  line-height: 20px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-section .footer-item ul li a {
  color: #141414;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  line-height: 29px;
}
.footer-section .footer-item ul li a:hover {
  color: rgb(8, 216, 8);
  padding-left: 4px;
}
.footer-section .footer-bottom {
  background-color: rgb(27, 158, 5);
  padding: 10px 0;
}
.footer-bottom .copyright-content p {
  margin-bottom: 0;
  color: #fff;
}
.footer-bottom .copyright-content a {
  text-decoration: underline;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}
.footer-bottom .copyright-content a:hover {
  color: rgb(255, 156, 38);
}
.footer-section .footer-bottom .icon {
  display: flex;
  align-items: center;
  justify-content: end;
}
.footer-section .social-link a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 16px;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all 0.5s ease;
  margin-right: 10px;
}
.footer-section .social-link a:hover {
  background-color: #fff;
  color: #3cb815;
  box-shadow: 0 0 20px #fff;
}
.footer-section .social-link a i {
  font-size: 18px;
  line-height: 30px;
}
.footer-section .social-link a:last-child {
  margin-right: 0;
}

/*--  Responsive Code  --*/
@media (max-width: 1800px) {
  .banner-section .banner-slider .slide {
    min-height: 700px;
  }
  .banner-section .banner-slider .slide-content {
    max-width: 1320px;
  }
}
@media (max-width: 1500px) {
  .banner-section .banner-slider .slide {
    min-height: 600px;
  }
  .banner-section .banner-slider .slide-content {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .banner-section .banner-slider .slide {
    min-height: 550px;
  }
  .banner-section .banner-slider .slide-content {
    max-width: 960px;
  }
  .banner-section .slide .slide-content h3 {
    margin-bottom: 0;
  }
  .banner-section .slide .slide-content h1 {
    font-size: 62px;
  }
  .banner-section .slide .slide-content h2 {
    font-size: 62px;
    margin-bottom: 20px;
  }
  .banner-section .slide-content .banner-btn {
    padding: 12px 40px;
  }
  .discount {
    padding: 60px 0;
  }
  .about {
    padding-top: 80px;
    padding-bottom: 85px;
  }
  .about .right .right-content h3 {
    font-size: 35px;
  }
  .about .right .right-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }
  .about .right .right-content .p1,
  .p2 {
    line-height: 28px;
  }
  .about .right .right-content .p2 {
    margin-bottom: 20px;
  }
  .about .right .right-content .about-btn {
    padding: 11px 22px;
  }
}
@media (max-width: 991px) {
  .topbar {
    display: none;
  }
  .banner-section .banner-slider .slide {
    min-height: 500px;
  }
  .banner-section .banner-slider .slide-content {
    max-width: 720px;
  }
  .shipping-section {
    padding-top: 65px;
    padding-bottom: 47px;
  }
  .shipping-section .row1 .title {
    margin-bottom: 20px;
  }
  .shipping-section .row1 .title h2 {
    font-size: 40px;
  }
  .adv {
    padding-top: 60px;
    padding-bottom: 10px;
  }
  .adv .banner-content h2 {
    font-size: 75px;
  }
  .adv .banner-content .adv-btn {
    padding: 10px 23px;
    font-size: 15px;
  }
  .service {
    padding-top: 72px;
    padding-bottom: 35px;
  }
  .service .row1 .title {
    margin-bottom: 37px;
  }
  .service .row1 h3 {
    font-size: 30px;
  }
  .service .row1 h2 {
    font-size: 40px;
  }
  .discount .discount-content .discount-btn {
    padding: 10px 22px;
    font-size: 15px;
  }
  .banner-2 {
    padding-top: 72px;
    padding-bottom: 50px;
  }
  .banner-2 .row1 .title {
    margin-bottom: 37px;
  }
  .banner-2 .row1 .title h3 {
    font-size: 30px;
  }
  .banner-2 .row1 .title h2 {
    font-size: 40px;
  }
  .about {
    padding-top: 30px;
    padding-bottom: 65px;
  }
  .about .left .left-content {
    text-align: center;
  }
  .about .right .right-content h3 {
    font-size: 30px;
  }
  .about .right .right-content h2 {
    font-size: 40px;
  }
  .product-section {
    padding-top: 72px;
    padding-bottom: 65px;
  }
  .product-section .row1 .product-header {
    margin-bottom: 20px;
  }
  .product-section .product-header h3 {
    font-size: 30px;
  }
  .product-section .product-header h2 {
    font-size: 40px;
  }
  .product-section .wrapper-viewmore .product-viewmore {
    padding: 10px 28px;
    font-size: 15px;
  }
  .testimonial .row1 .title h3 {
    font-size: 30px;
  }
  .testimonial {
    padding-top: 72px;
    padding-bottom: 35px;
  }
  .testimonial .row1 .title {
    margin-bottom: 37px;
  }
  .testimonial .row2 .left {
    display: none;
  }
  .testimonial .row1 .title h2 {
    font-size: 40px;
  }
  .discover .discover-content .newsletter {
    font-size: 60px;
  }
  .discover .discover-content .discover-btn {
    padding: 8px 22px;
    font-size: 15px;
  }
  .footer-header {
    padding: 50px 0 40px 0;
  }
  .footer-header .footer-item h6 {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {  
  .banner-section .banner-slider .slide {
    min-height: 400px;
  }
  .banner-section .banner-slider .slide-content {
    max-width: 540px;
  }
  .banner-section .slide .slide-content h3 {
    font-size: 26px;
  }
  .banner-section .slide .slide-content h1 {
    font-size: 52px;
  }
  .banner-section .slide .slide-content h2 {
    font-size: 52px;
  }
  .banner-section .slide-content .banner-btn {
    padding: 10px 35px;
  }
  .shipping-section {
    padding-top: 50px;
    padding-bottom: 40px;
  }
  .shipping-section .row1 .title h2 {
    font-size: 35px;
  }
  .shipping-section .row2 .box {
    padding: 15px;
    margin-bottom: 10px;
  }
  .adv .banner-content h3 {
    font-size: 20px;
  }
  .adv .banner-content h2 {
    font-size: 65px;
  }
  .adv .banner-content h4 {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .adv .banner-content .wrapper {
    margin-top: 20px;
  }
  .adv .banner-content .adv-btn {
    font-size: 14px;
  }
  .service {
    padding-top: 57px;
    padding-bottom: 28px;
  }
  .discount .discount-content .discount-btn {
    font-size: 14px;
  }
  .discount .discount-content h4 {
    font-size: 22px;
  }
  .discount .discount-content h2 span {
    font-size: 50px;
  }
  .banner-2 {
    padding-top: 57px;
    padding-bottom: 40px;
  }
  .about {
    padding-top: 10px;
    padding-bottom: 55px;
  }
  .about .right .right-content .p2 {
    margin-bottom: 15px;
  }
  .about .right .right-content .about-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .product-section {
    padding-top: 57px;
    padding-bottom: 58px;
  }
  .product-section .wrapper-viewmore .product-viewmore {
    font-size: 14px;
  }
  .testimonial {
    padding-top: 57px;
    padding-bottom: 28px;
  }
  .testimonial .row1 .title {
    margin-bottom: 30px;
  }
  .discover .discover-content .coming {
    font-size: 28px;
  }
  .discover .discover-content .newsletter {
    font-size: 50px;
  }
  .discover .discover-content .discover-btn {
    font-size: 14px;
  }
  .footer-header {
    padding: 50px 0 30px 0;
  }
  .footer-section .footer-bottom .col1 {
    text-align: center;
  }
  .footer-section .footer-bottom .icon {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .banner-section .banner-slider .slide {
    min-height: 350px;
  }
  .banner-section .slide .slide-content h3 {
    font-size: 20px;
  }
  .banner-section .slide .slide-content h1 {
    font-size: 42px;
  }
  .banner-section .slide .slide-content h2 {
    font-size: 42px;
    margin-bottom: 12px;
  }
  .banner-section .slide-content .banner-btn {
    padding: 5px 25px;
    letter-spacing: 0;
    font-size: 16px;
  }
  .shipping-section .row2 .top-box img {
    width: 100%;
  }
  .adv .banner-content .adv-btn {
    font-size: 12px;
  }
  .service .row1 h3 {
    font-size: 28px;
  }
  .service .row1 h2 {
    font-size: 35px;
  }
  .discount .discount-content .discount-btn {
    font-size: 12px;
  }
  .discount .discount-content h2 span {
    font-size: 40px;
  }
  .banner-2 .row1 .title h3 {
    font-size: 28px;
  }
  .banner-2 .row1 .title h2 {
    font-size: 35px;
  }
  .about {
    padding-bottom: 25px;
  }
  .about .right .right-content {
    padding: 20px;
  }
  .about .right .right-content h3 {
    font-size: 28px;
  }
  .about .right .right-content h2 {
    font-size: 35px;
  }
  .about .right .right-content .p1,
  .p2 {
    line-height: 26px;
  }
  .about .right .right-content .about-btn {
    font-size: 12px;
  }
  .product-section .product-header h3 {
    font-size: 28px;
  }
  .product-section .product-header h2 {
    font-size: 35px;
  }
  .product-section .wrapper-viewmore .product-viewmore {
    font-size: 12px;
  }
  .testimonial .row1 .title h3 {
    font-size: 28px;
  }
  .testimonial .row1 .title h2 {
    font-size: 35px;
  }
  .discover .discover-content .discover-btn {
    font-size: 12px;
  }
}
@media (max-width: 479px) {
  .banner-section .banner-slider .slide {
    min-height: 300px;
  }
  .banner-section .slide .slide-content h3 {
    font-size: 16px;
  }
  .banner-section .slide .slide-content h1 {
    font-size: 32px;
  }
  .banner-section .slide .slide-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .banner-section .slide-content .banner-btn {
    padding: 5px 20px;
    font-size: 13px;
  }
  .shipping-section {
    padding-top: 45px;
    padding-bottom: 30px;
  }
  .shipping-section .row1 .title h2 {
    font-size: 30px;
  }
  .shipping-section .row2 .box {
    margin-bottom: 5px;
    padding: 10px;
  }
  .adv {
    padding-top: 50px;
    padding-bottom: 10px;
  }
  .adv .banner-content h2 {
    font-size: 57px;
  }
  .adv .banner-content h4 {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .adv .banner-content .adv-btn {
    padding: 9px 22px;
  }
  .service {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .service .row2 .wrapper {
    padding: 30px 25px 37px 25px;
  }
  .service .row2 .wrapper h5 {
    margin-bottom: 10px;
  }
  .service .row1 h3 {
    font-size: 25px;
  }
  .service .row1 h2 {
    font-size: 30px;
  }
  .discount {
    padding: 50px 0;
  }
  .discount .discount-content h4 {
    font-size: 18px;
  }
  .discount .discount-content .discount-btn {
    padding: 9px 21px;
  }
  .discount .discount-content h2 {
    font-size: 30px;
  }
  .banner-2 {
    padding-top: 52px;
    padding-bottom: 25px;
  }
  .banner-2 .row1 .title h3 {
    font-size: 25px;
  }
  .banner-2 .row1 .title h2 {
    font-size: 30px;
  }
  .about .right .right-content h3 {
    font-size: 25px;
  }
  .about .right .right-content h2 {
    font-size: 30px;
  }
  .about .right .right-content .about-btn {
    padding: 9px 18px;
  }
  .product-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .product-section .product-header h3 {
    font-size: 25px;
  }
  .product-section .product-header h2 {
    font-size: 30px;
  }
  .product-section .wrapper-viewmore .product-viewmore {
    padding: 9px 26px;
  }
  .testimonial .row1 .title h3 {
    font-size: 25px;
  }
  .testimonial .row1 .title h2 {
    font-size: 30px;
  }
  .testimonial .row2 .box {
    padding: 30px 30px 50px 30px;
  }
  .testimonial {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .testimonial .box .testi-content p {
    font-size: 15px;
  }
  .discover {
    padding: 50px 0;
  }
  .discover .discover-content .coming {
    font-size: 24px;
  }
  .discover .discover-content .newsletter {
    font-size: 42px;
  }
  .discover .discover-content .discover-btn {
    padding: 7px 21px;
  }
}
@media (max-width: 319px) {
  .adv .banner-content h2 {
    font-size: 49px;
  }
  .adv .banner-content .adv-btn {
    padding: 8px 21px;
  }
  .discount .discount-content .discount-btn {
    padding: 8px 20px;
  }
  .banner-2 {
    padding-bottom: 20px;
  }
  .about .right .right-content .about-btn {
    padding: 8px 16px;
  }
  .product-section .wrapper-viewmore .product-viewmore {
    padding: 8px 24px;
  }
  .testimonial .row2 .box {
    padding: 20px 10px 50px 10px;
  }
  .discover .discover-content .newsletter {
    font-size: 36px;
  }
  .discover .discover-content .discover-btn {
    padding: 6px 20px;
  }
  .footer-section .footer-item ul li a {
    line-height: 26px;
  }
}
@media (min-width: 992px) {
  .footer-header .footer-about p {
    padding-right: 30px;
  }
}
@media (min-width: 1200px) {
  .footer-header .footer-about p {
    padding-right: 45px;
  }
}
@media (min-width: 1500px) {
  .adv {
    padding: 120px 0;
  }
  .discount {
    padding: 120px 0;
  }
  .discover {
    padding: 100px 0;
  }
}
