@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&family=Rubik:wght@300;400;500;600;700;800&family=Sofia&display=swap");
:root {
  --ff-body:'Poppins', sans-serif;
  /* colors */
  --common-white:#ffffff;
  --common-black:#000;
  --common-placeholder: #4A5764;
  --heading-primary: #285D81;
  --text-body: #646464;
  --body-primary: #ffffff;
  --text-primary: #000;
  --primary-color:#D83F33;
  --seccondry-color:#97C067;
  --shadow-primary: 0px 30px 60px 0px rgba(0, 15, 32, 0.1);
  --border-primary: 1px solid #9FBF54;
  --box-shadow-1: 0px 25px 70px rgba(0, 0, 0, 0.08);
  --box-shadow-2: 0px 10px 70px rgba(0, 0, 0, 0.1);
  --border-color-1: #E7E7E7;
  --border-color-2: #E9E9E8;
  --border-color-3: rgba(19, 19, 19, 0.1);
  --border-color-4: rgba(19, 19, 19, 0.06);
}
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-weight: 300;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: normal;
  color: var(--text-body);
  line-height: var(--lh-body);
  background: var(--body-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	transition: 0.4s;
}
a {  
  outline: none;
  color: inherit;
  text-decoration: none;
}
a,
button,
i {
	text-decoration: none;
	color: inherit;
}
a:focus,
a:hover {
	text-decoration: none;
	color: inherit;
}
p {
  font-size: 16px;
  font-weight: 400;
  color: var(--common-black);
  line-height: 28px;
}
.mb-30 {
  margin-bottom: 30px;
}

section{
  padding: 80px 0px;
}

.bg-cover {
  background-position: center !important;
  background-size: cover !important;
}

.intro {
  margin-bottom: 40px;
}
.intro h6{
  font-weight: 400;
  color: #ff4500;
}
.intro p{
  max-width: 500px;
  margin: auto;
}
h2::after{
    content: "";
    position: absolute;
    left: 45%;
    top: 80px;
    width: calc(100% - 90%);
    background-color: #D83F33;
    height: 1px;
}
/* Header */
.top-header {
  background-color: var(--seccondry-color);
  padding: 7px 0px;
  overflow: hidden;
  z-index: -1;
}
.social-links a{
  width: 32px;
  height: 32px;
  background-color: rgb(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  margin: 0px 3px;
  font-size: 16px;
  border-radius: 100%;
}
.social-links a:hover{
  background-color: #fff;
  color: #ff4500;
}
/* navbar */

.nav-item {
  font-size: 16px;
  padding: 20px 10px !important;
  font-weight: 500;
  color: var(--primary-color) !important;
  border-right: 1px solid #fcf9f9;
  transition: 0.5s all ease-in-out;
}
.nav-item:last-child {
  border-right: none;
}
.nav-item:hover{
  background-color: #fff;
}
.nav-item:hover .nav-link{
  color: #b80f0f !important;
}
/* drop down menu */
.dropdown-menu {
  border-radius: 0px !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 9999;
  background-color: #fff;
}
.dropdown:hover .dropdown-menu {
  display: block;
  transition: all 2s ease-in-out;
}
.dropdown-item.active, .dropdown-item:active {
  background-color: #D83F33;
  color: #fff;
}
.dropdown-item {
  border-bottom: 1px solid #f5f3f3;
}

.dropdown-item:hover {
  background-color: #D83F33;
  color: #fff;
}
.navbar-nav .dropdown-menu {
  margin-top: 15px;
  padding:0px;
  left: 0px;
  top: 80%;
}
.dropdown-item {
  padding: 10px !important;
}
/* @media only screen and (min-width: 250px) and (max-width: 991px) {
  .dropdown-menu {
    border-radius: 0px !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 9999;
    background-color: #fff;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  .dropdown-item.active, .dropdown-item:active {
    background-color: #D83F33;
    color: #fff;
  }
  .dropdown-item {
    border-bottom: 1px solid #f5f3f3;
  }
  
  .dropdown-item:hover {
    background-color: #D83F33;
    color: #fff;
  }
  .navbar-nav .dropdown-menu {
    margin-top: 15px;
    padding:0px;
    left: 0px;
    top: 80%;
  }
  .dropdown-item {
    padding: 10px !important;
  }
} */

/* @media only screen and (min-width: 250px) and (max-width: 991px) {
  .nav-item {
    font-size: 16px;
    padding: 5px 5px !important;
    font-weight: 500;
    color: var(--common-black) !important;
    transition: 0.5s all ease-in-out;
  }
  .nav-item:hover{
    background-color:none;
  }
  .nav-item:hover .nav-link{
    color: #fff !important;
  }
} */

/* verticle menu */
@media only screen and (min-width: 250px) and (max-width: 991px) {
nav {
	position: relative;
}
nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
nav ul li {
  /* Sub Menu */
}
nav ul li a {
	display: block;
	background: #fff;
	padding: 10px 15px;
	color: #000;
	text-decoration: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
}
nav ul li a:hover {
	background: #e7e7e7;
	color: #000;
}
nav ul li a .fa {
	width: 16px;
	text-align: center;
	margin-right: 5px;
	float:right;
}
nav ul ul {
	background-color:#ebebeb;
}
nav ul li ul li a {
	background: #f8f8f8;
	border-left: 4px solid transparent;
	padding: 10px 20px;
}
nav ul li ul li a:hover {
	background: #ebebeb;
	border-left: 2px solid #3a922f;
}
}

/* Slider */
.btn{
  padding: 9px  24px;
}
.btn-brand {
  background-color: #ff4500;
  color: #fff;
  border-color: #ff4500;
}
.btn-brand:hover {
  color: #fff;
  background: #da3c03;
}
.slide1{
  width: 100%;
  height: 700px;
}
/* .slide2{
  background: linear-gradient(rgba(9, 32, 50, 0.4), rgba(9, 32, 50, 0.4)), url('../images/bg_banner2.jpg');
  height: 600px;
} */

/* Owl Crousel */

.owl-prev, 
.owl-next {
  position: absolute;
  top: 50%;
  width: 60px !important;
  height: 60px !important;
  display: grid;
  place-items: center;
  background-color: rgba(255, 255, 255, 0.2) !important;
  margin-top: -30px !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  border-radius: 100% !important;
}
.owl-prev{
  left: 0;
}
.owl-next {
  right: 0;
}
.owl-next:hover,
.owl-prev:hover{
  background-color: #ff4500 !important;
  color: #fff !important;
}

.banner-shape {
  position: absolute;
  left: 0;
  bottom: 16px;
  right: 0;
  z-index: 11;
}
@media only screen and (min-width: 250px) and (max-width: 991px) {
  .banner-shape {
    display: none;
  }
}

/*----------------------------------------*/
/*  2.7 breadcrumb
/*----------------------------------------*/
.breadcrumb-space {
  padding: 40px 0px;
  background: linear-gradient(rgba(203, 21, 4, 0.7), rgba(211, 8, 8, 0.5)), url('../images/bg_banner2.jpg');
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-space {
    padding: 40px 0px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-space {
    padding: 30px 0px;
  }
}

.breadcrumb__area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.breadcrumb__area.overly {
  position: relative;
  z-index: 1;
}

.breadcrumb__title {
  color: var(--body-primary);
  font-family: var(--rr-ff-heading);
  font-weight:700;
  font-size: 35px;
  line-height: 40px;
  font-style: normal;
  margin-bottom: 14px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .breadcrumb__title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__title {
    font-size: 35px;
    line-height: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__title {
    font-size: 25px;
    line-height: 25px;
  }
  .breadcrumb__menu ul li span a {
    background-color: none !important;
  }
}
@media (max-width: 575px) {
  .breadcrumb__title {
    font-size: 28px;
    line-height: 28px;
  }
  .breadcrumb__menu ul li span a {
    background-color: none !important;
  }
}
@media (max-width:450px) {
  .breadcrumb__title {
    font-size: 20px;
    font-weight: bold;
  }
  .breadcrumb__menu ul li span a {
    background-color: none !important;
  }
}

.breadcrumb__menu ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flexbox;
  display: inline-flex;
  gap: 27px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumb__menu ul li {
  list-style: none;
  position: relative;
  line-height: 1;
  color: var(--body-primary);
  font-size: 15px !important;
  font-weight: 300 !important;
}
.breadcrumb__menu ul li:not(:last-child)::before {
  display: inline-block;
  content: "»";
  position: absolute;
  top: 0%;
  font-family: 'fontawesome';
  inset-inline-end: -17px;
  color: var(--rr-text-body);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 10px;
}
.breadcrumb__menu ul li span {
  color: var(--rr-text-body);
  font-family: var(--rr-ff-body);
  font-weight: var(--rr-fw-regular);
  line-height: var(--rr-lh-h5);
  font-size: 15px;
  font-style: normal;
}

.breadcrumb__menu ul li span a:hover {
  color: var(--rr-theme-primary);
}

.breadcrumb__menu ul li.active span {
  color: var(--rr-text-body);
  font-family: var(--rr-ff-body);
  font-weight: var(--rr-fw-regular);
  line-height: var(--rr-lh-h5);
  font-size: 16px;
  font-style: normal;
}

.breadcrumb__area .inner-top-shape {
  z-index: -1;
  opacity: 0.5 !important;
  top: -55px;
  left: 621px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__area .inner-top-shape {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb__area .inner-top-shape {
    display: none;
  }
}
.breadcrumb__area .banner-all-shape-wrapper .first-shape {
  top: 222px;
  left: 585px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .breadcrumb__area .banner-all-shape-wrapper .first-shape {
    left: 370px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__area .banner-all-shape-wrapper .first-shape {
    left: 245px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb__area .banner-all-shape-wrapper .first-shape {
    display: none;
  }
}
.breadcrumb__area .banner-all-shape-wrapper .second-shape {
  top: 500px;
  left: 33px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb__area .banner-all-shape-wrapper .second-shape {
    display: none;
  }
}
.breadcrumb__area .banner-all-shape-wrapper .right-shape {
  position: absolute;
  right: 35px;
}
.breadcrumb__area .banner-all-shape-wrapper .right-shape img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb__area .banner-all-shape-wrapper .right-shape img {
    display: none;
  }
}

/* About us */
.aboutus-sec {
  background: rgba(119, 167, 112, 0.1);
}

.aboutus h5{
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 15px;
}
.aboutus h1{
  font-size: 30px;
  font-weight: 600;
  color: var(--common-black);
  line-height: 28px;
  padding: 10px 0px;
  margin-bottom: 15px;
  position: relative;
}
.aboutus h1::after{
  content: "";
  position: absolute;
  left: 0;
  top: 48px;
  width: 60%;
  background-color: #D83F33;
  height: 1px;
}

.about-img {
  width: 100%;
  height: auto;
  background-color: #97C067;
  border-radius: 5px;
  padding: 10px;
  position: relative;
}
.about-1-shape-1 {
  position: absolute;
  top: -70px;
  left: -70px;
  z-index: -1;
  color: #0d5e04;
}

@media only screen and (min-width: 250px) and (max-width: 991px) {
  .aboutus h1{
    font-size: 22px;
    font-weight: 600;
    color: var(--common-black);
    line-height: 28px;
    padding: 10px 0px;
    margin-bottom: 15px;
    position: relative;
  }
}
.certificate {
  background-color: rgba(242, 98, 62, 0.1);
}
.certificate-box {
  width: 100%;
  height: auto;
  margin: 20px 0px;
  background-color: var(--body-primary);
}
.certificate-box .logo {
  width: 100%;
  height: 100px;
  text-align: center;
  display: block;
  padding: 15px 0px;
}
.certificate-box h4{
  font-size: 16px;
  font-weight: 400;
  color: #0d5e04;
  text-align: center;
  line-height: 25px;
  overflow: hidden;
  padding: 0px 5px;
}

/* Certificates */
.certi-box {
  background: #fff;
  width: 100%;
  height: auto;
}

.certi-box > .certi-img{
  width: 100%;
  height: 100px;
  padding: 10px;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.certi-box h5{
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  color: var(--common-black);
  text-align: center;
  margin-top: 0px;
  padding: 10px 0px;
}

hr {
  margin: 7px 0px;
}
/* Blog Post */
/* Blogs */
.blog-post{
  position: relative;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);;
}
.blog-post img{
  margin-bottom: 14px;
}
.blog-post .tag{
  padding: 4px 10px;
  background-color: #ff4500;
  color: #fff;
  border-radius: 50px;
  top: 20px;
  left: 20px;
  position: absolute;
}
.blog-post a{
  font-weight: 700;
}
.blog-post h4{
  margin: 12px 0px;
  font-size: 16px;
}
.blog-post small{
  color: #ff4500;
  text-transform: uppercase;
  text-decoration: underline;
}
.blog-post .contents{
  padding: 20px;
}
/* Footer */
footer{
  padding-top: 80px;
  padding-bottom: 40px;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(79, 160, 54, 0.6), rgba(84, 138, 39, 0.4)), url('../images/bg_banner1.jpg');
}
footer .navbar-brand{
  color: #fff;
  margin-bottom: 28px;
  display: inline-block;
}
.footer-top{
  margin-bottom: 40px;
}
.footer-bottom{
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 20px;
}
footer .social-links a {
  margin-left: 5px;
  margin: 5px;
}

/* Contact Us */
/*==========================================================================
Contact Two CSS
==========================================================================*/

.conbix-contact-item {
  position: relative;
}
.conbix-contact-item span {
  position: absolute;
  right: 16px;
  top: 23px;
  color: var(--primary-color);
  font-weight: 400;
}
.conbix-contact-item input,
.conbix-contact-item textarea {
  font-size: 15px;
}


.contact__two-content {
  max-width: 600px;
  margin: 0 auto;
}
.contact__two-box {
  box-shadow: var(--box-shadow-1);
  padding: 40px 30px;
  margin: 0;
  background: var(--bg-white);
  position: relative;
  z-index: 2;
}
.contact__two-left {
  margin-right: 50px;
}
.contact__two-left-item {
  border-bottom: 1px solid var(--border-color-1);
  margin-bottom: 28px;
  padding-bottom: 25px;
  display: flex;
  gap: 20px;
}
.contact__two-left-item-icon img {
  max-width: 45px;
}
.contact__two-left-item-info span {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
}
.contact__two-left-item-info p {
  text-transform: lowercase;
  line-height: 27px;
  color: var(--text-heading-color);
  font-weight: 600;
  max-width: 240px;
}
.contact__two-left-item-info p a {
  transition: 0.4s;
}
.contact__two-left-item-info p a:hover {
  color: var(--primary-color-1);
}
.contact__two-left-item-socialIcon ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.contact__two-left-item-socialIcon ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}
.contact__two-left-item-socialIcon ul li:last-child {
  margin: 0;
}
.contact__two-left-item-socialIcon ul li a i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--color-6);
  font-size: 15px;
  border-radius: 50%;
  transition: 0.4s;
}
.contact__two-left-item-socialIcon ul li a i:hover {
  background: var(--primary-color-1);
  color: var(--text-white);
}
.contact__two-right p {
  max-width: 500px;
  margin-bottom: 30px;
}
.contact__two-right-form-item textarea {
  height: 177px;
}
.contact__two-map {
  margin-top: -150px;
  margin-bottom: -130px;
  z-index: 1;
  position: relative;
}
.contact__two-map iframe {
  width: 100%;
  height: 700px;
  display: block;
  filter: grayscale(1);
}

.contact__two-left-item-socialIcon ul {
  padding: 0;
  margin: 0;
  margin-top: 20px;
}
.contact__two-left-item-socialIcon ul li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}
.contact__two-left-item-socialIcon ul li:last-child {
  margin: 0;
}
.contact__two-left-item-socialIcon ul li a i {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(215, 216, 214, 0.6);
  font-size: 15px;
  border-radius: 50%;
  transition: 0.4s;
}
.contact__two-left-item-socialIcon ul li a i:hover {
  background: var(--primary-color);
  color: var(--body-primary);
}

input[type="text"],input[type="email"],textarea{
  color: var(--common-black);
  border-radius: 6px;
  width: 100%;
  height: 60px;
  border: 1px solid var(--border-color-2);
  padding: 0 15px;
  background: var(--body-primary);
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
  color: var(--primary-color);
  outline: none;
  box-shadow: none;
  border-color: var(--primary-color-1);
}

/* Product Detail page */
.prd-slide-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 0 15px;
}
.prd-slide {
  padding: 10px;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  height: 60px;
  width: 60px;
  padding: 15px !important;
  background-color: rgba(0, 0, 0, 0.3);
  background-size: 100%, 100%;
  border-radius: 50%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
  background-size: 15px;
 }
 .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
  background-size: 15px;
}
.bulk-btn {
  background: #41a420;
  padding: 15px 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  border: 0;
  transition: 0.3s all ease-in-out;
}
.bulk-btn:hover {
  background: rgb(7, 115, 5);
  color: #fff;
}

@media only screen and (min-width: 250px) and (max-width: 991px) {
  .bulk-btn {
    background: #41a420;
    padding: 10px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    border: 0;
    transition: 0.3s all ease-in-out;
  }
  .bulk-btn:hover {
    background: rgb(7, 115, 5);
    color: #fff;
  }
}

.product-detail {
  position: relative;
}
.product-detail h3{
  font-size: 25px;
  font-weight: 500;
  color: #b80f0f;
  line-height: 28px;
  padding-bottom: 10px;
}
.product-detail h3::after{
  content: "";
  position: absolute;
  width: 20%;
  height: 2px;
  background-color: #b80f0f;
  top: 35px;
  left: 0;
}
.product-detail p{
  font-size: 16px;
  font-weight: 300;
  color: var(--common-black);
  line-height: 28px;
}

.blog-area {
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 20px;
}

/* whatsapp */

.whatsapp {
  content: '';
  width: 70px;
  height: 70px;
  line-height: 50px;
  position: fixed;
  bottom: 25px;
  left: 1%;
  font-size: 17px;
  z-index: 2;
  color: #fff;
  text-align: center;
  cursor: pointer
}
.whatsapp:before {
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .25) 0, rgba(0, 0, 0, 0) 80%)
}
.whatsapp img {
  width: 50px
}
.vibrate-2 {
  -webkit-animation: vibrate-2 1.5s ease-in-out 0s infinite alternate;
  animation: vibrate-2 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s
}
@-webkit-keyframes vibrate-2 {
  0% {
    bottom: 25px
  }
  50% {
    bottom: 40px
  }
  100% {
    bottom: 25px
  }
}
@keyframes vibrate-2 {
  0% {
    bottom: 25px
  }
  50% {
    bottom: 40px
  }
  100% {
    bottom: 25px
  }
}