@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap");
.background_color {
  background: rgba(65, 128, 255, 0.75);
  background: -webkit-gradient(linear, left top, right top, from(rgba(65, 128, 255, 0.75)), to(rgba(65, 127, 253, 0.9)));
  background: linear-gradient(left, rgba(65, 128, 255, 0.75), rgba(65, 127, 253, 0.9));
}

.form-label-group input:-webkit-input-placeholder, .form-label-group input::-ms-input-placeholder, .form-label-group input::-moz-placeholder {
  color: transparent;
}

a,
.btn {
  color: #121921;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
}

a:focus,
a:hover,
.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none;
  outline: 0;
}

.under-line {
  text-decoration: underline;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

ul ul,
ol ul,
ul ol,
ol ol {
  padding-left: 20px;
}

h2,
h3,
h4,
h5,
h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Global */
body {
  font-family: 'Poppins', sans-serif;
  background: #FFF;
  color: #121921;
  font-size: 15px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: all 0.4s ease-out 0s;
  -webkit-transition: all 0.4s ease-out 0s;
}

img {
  max-width: 100%;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* padding & margin */
.nopadding {
  padding: 0 !important;
}

.nopadd-bottom {
  padding-bottom: 0 !important;
}

.nomargin {
  margin: 0 !important;
}

.nomargin-bottom {
  margin-bottom: 0 !important;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h4 {
  color: #9db946;
  font-size: 26px;
  font-weight: 600;
}

.section-heading span {
  font-weight: 600;
  text-transform: uppercase;
}

.section-heading::after {
  position: relative;
  content: "";
  width: 80px;
  display: block;
  height: 3px;
  background: #9db946;
  margin-top: 15px;
  top: 0;
}

.section-heading.text-center {
  max-width: 300px;
  margin: 0 auto 30px;
}

.section-heading.text-center:after {
  margin: 15px auto 0;
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6, .text-white p, .text-white .title-small {
  color: #FFF !important;
}

.theme-btn {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 30px;
  background: #9db946;
  color: #FFF;
  padding: 10px 20px;
  overflow: hidden;
  border-radius: 2px;
  margin-right: 10px;
}

.theme-btn i {
  margin-right: 10px;
}

.theme-btn:hover {
  background: #8fb128;
  color: #FFF;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* bg */
.grey-bg {
  background: #F6F6F6;
}

.yellow-text {
  color: #9db946;
}

b {
  font-weight: 600;
}

/* owl-carousel */
.owl-carousel .owl-nav [class*='owl-'] {
  position: absolute;
  background: #FFF;
  top: 50%;
  width: 60px;
  height: 60px;
  line-height: 55px;
  margin-top: -30px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.owl-carousel .owl-nav [class*='owl-']::after, .owl-carousel .owl-nav [class*='owl-']::before {
  position: absolute;
  border: 2px #EEE solid;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  border-radius: inherit;
  -webkit-border-radius: inherit;
}

.owl-carousel .owl-nav [class*='owl-']:hover::after, .owl-carousel .owl-nav [class*='owl-']:hover::before {
  border: 2px #9db946 solid;
}

.owl-carousel .owl-nav .owl-prev {
  left: -35px;
}

.owl-carousel .owl-nav .owl-next {
  right: -35px;
}

.owl-carousel .owl-dots .owl-dot {
  margin: 3px;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #EEE;
  transition: all .15s;
  -webkit-transition: all .15s;
  -webkit-box-shadow: 2px 1px 3px rgba(0, 0, 0, 0.35);
          box-shadow: 2px 1px 3px rgba(0, 0, 0, 0.35);
}

.owl-carousel .owl-dots .owl-dot span:hover {
  background: #9db946;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: #9db946;
  transform: scale(1);
  -webkit-transform: scale(1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* home-product */
.section-title {
  text-align: center;
  margin: 0 auto 30px;
  max-width: 550px;
}

.section-title span {
  background: #FFF;
  position: relative;
  padding: 0 24px;
}

.section-title p {
  margin-bottom: 0;
}

.section-title .f16 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 0;
  color: #9db946;
}

.section-title .f30 {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  color: #9db946;
}

.section-title .f30:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #9db946;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  bottom: 0;
}

.section-title.text-left {
  max-width: 100%;
}

.section-title.text-left span {
  padding: 0 10px 0 0;
}

.header {
  border-top: 5px solid #9db946;
}

.header .navbar-toggler {
  border: 0 solid #9db946;
  font-size: 16px;
  line-height: 24px;
  margin: 45px 0 45px 15px;
  padding: 0;
  float: right;
  outline: none;
}

.header .navbar-toggler.menuicon {
  width: 20px;
  height: 14px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.header .navbar-toggler.menuicon span {
  background: #121921;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.header .navbar-toggler.menuicon span:nth-child(1) {
  top: 0px;
}

.header .navbar-toggler.menuicon span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .navbar-toggler.menuicon span:nth-child(3) {
  bottom: 0;
}

.header .navbar-toggler.menuicon.open span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.header .navbar-toggler.menuicon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.header .navbar-toggler.menuicon.open span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.header .sticky-header .navbar-brand {
  padding: 0;
}

.header .sticky-header .navbar-brand img {
  max-width: 100px;
  padding: 10px 0;
}

.header .sticky-header .menu-bar {
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
}

.header .sticky-header .menu-bar .menu-links {
  float: right;
  margin-right: 0px !important;
}

.header .sticky-header .menu-bar .menu-links .nav i {
  font-size: 9px;
  margin-left: 3px;
  margin-top: -3px;
  vertical-align: middle;
}

.header .sticky-header .menu-bar .menu-links .nav > li {
  line-height: 1;
  margin: 0px;
  font-weight: 400;
  text-transform: uppercase;
}

.header .sticky-header .menu-bar .menu-links .nav > li > a {
  overflow: hidden;
  position: relative;
  font-weight: 500;
  border-radius: 0px;
  font-size: 15px;
  padding: 45px 20px;
  cursor: pointer;
  display: inline-block;
}

.header .sticky-header .menu-bar .menu-links .nav > li > a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  left: 0;
  bottom: -15px;
  background: #9db946;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.header .sticky-header .menu-bar .menu-links .nav > li > a:hover, .header .sticky-header .menu-bar .menu-links .nav > li > a:active, .header .sticky-header .menu-bar .menu-links .nav > li > a:focus {
  color: #9db946;
  background-color: transparent;
}

.header .sticky-header .menu-bar .menu-links .nav > li:hover, .header .sticky-header .menu-bar .menu-links .nav > li.active {
  background-color: transparent;
  color: #9db946;
}

.header .sticky-header .menu-bar .menu-links .nav > li:hover a::after, .header .sticky-header .menu-bar .menu-links .nav > li.active a::after {
  bottom: 0px;
}

.header .sticky-header .menu-bar .menu-links .nav > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu {
  background-color: #FFF;
  border: 1px solid #F6F6F6;
  display: block;
  left: 0;
  list-style: none;
  opacity: 0;
  padding: 10px 0;
  position: absolute;
  z-index: 9;
  visibility: hidden;
  width: 250px;
  z-index: 10;
  border-radius: 6px;
  top: 90%;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu .sub-menu {
  left: auto !important;
  right: 248px;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li {
  border-bottom: 1px dashed #EEE;
  position: relative;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li a {
  text-transform: uppercase;
  color: #121921;
  display: block;
  font-size: 13px;
  padding: 10px 15px;
  transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li a:hover {
  background-color: #F6F6F6;
  text-decoration: none;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li > .sub-menu.left,
.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li:hover .sub-menu.left {
  left: auto;
  right: 240px;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li .fa {
  color: inherit;
  display: block;
  float: right;
  font-size: 15px;
  position: absolute;
  right: 15px;
  top: 12px;
  opacity: 1;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li .fa.fa-nav {
  color: inherit;
  display: inline-block;
  float: none;
  font-size: 13px;
  margin-right: 5px;
  opacity: 1;
  position: unset;
  right: 10px;
  top: 12px;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li > .sub-menu {
  left: 240px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li:hover > .sub-menu {
  left: 240px;
  margin: 0px;
  opacity: 1;
  top: -1px;
  visibility: visible;
}

.header .sticky-header .menu-bar .menu-links .nav > li .sub-menu li:hover > .sub-menu :before {
  background-color: transparent;
  bottom: 0px;
  content: '';
  display: block;
  height: 100%;
  left: -6px;
  position: absolute;
  top: 0px;
  width: 6px;
}

.header .sticky-header .menu-bar .menu-links .nav > li.active > a,
.header .sticky-header .menu-bar .menu-links .nav > li.current-menu-item > a {
  background-color: transparent;
  color: #9db946;
}

@media screen and (max-width: 991px) {
  .header .sticky-header .menu-bar .menu-links {
    width: 100%;
  }
  .header .sticky-header .menu-bar .menu-links .nav > li > a {
    width: 100%;
    padding: 20px 0;
  }
  .header .sticky-header .menu-bar .menu-links .nav > li .sub-menu {
    width: 100% !important;
    top: auto;
  }
  .header .sticky-header .menu-bar .menu-links .nav > li .sub-menu .sub-menu {
    top: auto !important;
    right: auto !important;
    height: 300px;
    overflow-y: auto;
  }
}

.header .sticky-header.is-fixed .menu-logo {
  top: 0;
  height: 70px;
  width: 140px;
}

.header .sticky-header.is-fixed .menu-logo img {
  height: 70px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.header .sticky-header.is-fixed .menu-bar {
  position: fixed;
  background: #FFF;
  z-index: 999;
  top: 0;
  left: 0;
}

/* footer Start */
footer {
  font-size: 14px;
  background: #9db946;
  color: #FFF;
}

footer .footer-inner .footer-middle {
  padding: 45px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .footer-inner .footer-middle .f-col.paddleft40 {
  padding-left: 40px;
}

@media screen and (max-width: 991px) {
  footer .footer-inner .footer-middle .f-col.paddleft40 {
    padding: 0 15px;
  }
}

footer .footer-inner .footer-middle .footer-static-block ul {
  margin: 0;
}

footer .footer-inner .footer-middle .footer-static-block ul li {
  padding: 8px 0;
}

footer .footer-inner .footer-middle .footer-static-block ul li a {
  color: #FFF;
}

footer .footer-inner .footer-middle .footer-static-block ul li a:hover {
  color: #121921;
}

footer .footer-inner .footer-middle .footer-static-block .f-logo {
  margin-bottom: 20px;
}

footer .footer-inner .footer-middle .footer-static-block .f-logo img {
  max-width: 250px;
}

footer .footer-inner .footer-middle .footer-static-block .title {
  text-transform: uppercase;
  position: relative;
  font-size: 18px;
  color: #FFF;
  font-weight: 500;
  margin-bottom: 30px;
}

footer .footer-inner .footer-middle .footer-static-block .title span {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: #FFF;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant {
  display: block;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.link li {
  display: inline-block;
  width: calc(50% - 10px);
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li {
  position: relative;
  display: block;
  padding: 10px 0 10px 30px;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li:last-child {
  padding-bottom: 0;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li i {
  position: absolute;
  color: #FFF;
  left: 0;
  top: 13px;
  font-size: 18px;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li a {
  display: block;
  width: auto;
  height: auto;
  border-radius: inherit;
  border: none;
}

footer .footer-inner .footer-middle .footer-static-block .footer-block-contant.footer-address li a:hover {
  color: #FFF;
}

footer .footer-inner .footer-middle .footer-static-block .contact-bx .form-group {
  margin-bottom: 10px;
}

footer .footer-inner .footer-middle .footer-static-block .contact-bx .form-control {
  font-size: 14px;
  border: 1px solid #FFF;
}

footer .footer-inner .footer-middle .footer-static-block .contact-bx .theme-btn {
  background: #8fb128;
  margin: 0;
  padding: 5px 15px;
}

footer .footer-inner .footer-middle .footer-static-block .contact-bx .theme-btn:hover {
  background: transparent;
  border: 1px solid #FFF;
}

footer .footer-inner .footer-bottom {
  background: #8fb128;
  padding: 20px 0;
}

footer .footer-inner .footer-bottom a {
  color: #FFF;
}

footer .footer-inner .footer-bottom .footer_social {
  text-align: right;
}

footer .footer-inner .footer-bottom .footer_social ul.social-icon {
  margin-bottom: 0;
}

footer .footer-inner .footer-bottom .footer_social ul.social-icon li {
  display: inline-block;
  padding: 0 5px;
}

footer .footer-inner .footer-bottom .footer_social ul.social-icon li .fa {
  color: #FFF;
}

/* footer End */
/* loading Start */
#loading-icon-bx {
  width: 100%;
  height: 100%;
  background-color: #FFF;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 1;
  z-index: 9999;
  background-image: url(../images/loading.gif);
  background-repeat: no-repeat;
  background-size: 150px;
  background-position: center;
}

/* loading End */
/* scroll top Start */
button.back-to-top {
  background: #9db946;
  border-radius: 4px;
  border-style: solid;
  border-width: 0;
  bottom: 15px;
  -webkit-box-shadow: 2px 2px 12px -5px #121921;
          box-shadow: 2px 2px 12px -5px #121921;
  color: #FFF;
  cursor: pointer;
  display: none;
  height: 40px;
  line-height: 26px;
  margin: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  width: 40px;
  z-index: 999;
}

/* scroll top End */
/*  */
.main-slider {
  position: relative;
  overflow: hidden;
}

.main-slider .homeslider {
  -webkit-box-shadow: 4px 5px 8px 0px rgba(0, 0, 0, 0.33);
          box-shadow: 4px 5px 8px 0px rgba(0, 0, 0, 0.33);
}

.main-slider .homeslider .item .cover {
  padding: 75px 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-slider .homeslider .item .cover .header-content {
  position: relative;
  padding: 40px;
  overflow: hidden;
  max-width: 800px;
  margin-left: 10%;
}

.main-slider .homeslider .item .cover .header-content .ask-agro-logo {
  max-width: 310px;
  margin-bottom: 20px;
}

.main-slider .homeslider .item .cover .header-content h2 {
  font-weight: 300;
  font-size: 30px;
  color: #FFF;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-slider .homeslider .item .cover .header-content h2 b {
  font-size: 45px;
  display: block;
  font-weight: 700;
  color: #FFF;
  text-transform: uppercase;
}

.main-slider .homeslider .item .cover .header-content h4 {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #FFF;
}

.main-slider .homeslider .item .cover .header-content .link-box {
  margin-top: 20px;
}

.main-slider .homeslider .item .cover .header-content .link-box .theme-btn {
  padding: 10px 30px;
}

.main-slider .homeslider .item .cover .header-content .link-box .theme-btn.contact-btn {
  background: #8fb128;
  color: #FFF;
}

.main-slider .homeslider .item .cover .header-content .link-box .theme-btn:hover {
  background: #9db946;
}

.main-slider .homeslider .item .cover.right .header-content {
  margin-left: auto;
  margin-right: 10%;
}

@media screen and (max-width: 991px) {
  .main-slider .homeslider .item {
    height: initial;
  }
  .main-slider .homeslider .item .cover {
    position: relative;
    background: #121921;
    padding: 30px 0;
  }
}

@media screen and (max-width: 576px) {
  .main-slider .homeslider .item .cover .header-content {
    padding: 30px 15px;
    margin-left: 5%;
  }
  .main-slider .homeslider .item .cover .header-content h2 {
    font-size: 24px;
  }
  .main-slider .homeslider .item .cover .header-content h4 {
    font-size: 16px;
  }
  .main-slider .homeslider .item .cover .header-content .link-box .theme-btn {
    font-size: 14px;
    padding: 10px;
  }
}

.main-slider .homeslider .owl-item.active h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.main-slider .homeslider .owl-item.active h2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.main-slider .homeslider .owl-item.active h4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.main-slider .homeslider .owl-item.active .line {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.main-slider .homeslider .owl-nav {
  margin: 0;
}

.main-slider .homeslider .owl-nav .owl-prev, .main-slider .homeslider .owl-nav .owl-next {
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  background: #8fb128 !important;
  width: 50px;
  cursor: pointer;
  height: 50px;
  text-align: center;
  line-height: 45px;
  color: #FFF;
  position: absolute;
  display: block;
  z-index: 1000;
  border-radius: 50%;
}

.main-slider .homeslider .owl-nav .owl-prev span, .main-slider .homeslider .owl-nav .owl-next span {
  font-size: 1.6875rem;
  color: #FFF;
}

.main-slider .homeslider .owl-nav .owl-prev:focus, .main-slider .homeslider .owl-nav .owl-next:focus {
  outline: 0;
}

.main-slider .homeslider .owl-nav .owl-prev:hover, .main-slider .homeslider .owl-nav .owl-next:hover {
  background: #9db946 !important;
  color: #FFF;
}

.main-slider .homeslider:hover .owl-prev {
  left: 0px;
  opacity: 1;
}

.main-slider .homeslider:hover .owl-next {
  right: 0px;
  opacity: 1;
}

.main-slider .tagline {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.main-slider .tagline h2 {
  position: relative;
  background: #9db946;
  font-size: 26px;
  color: #FFF;
  font-weight: 400;
  padding: 20px 30px;
  margin: 0;
}

.main-slider .tagline h2::before {
  position: absolute;
  left: -70px;
  top: 0;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 71.5px solid #9db946;
  border-left: 70px solid transparent;
}

/* about-section */
.about-section {
  background: url("../images/about-section-bg.jpg") no-repeat;
  background-size: cover;
  padding: 80px 0;
  overflow: hidden;
}

/* Testimonials */
.testimonial-section {
  padding: 50px 0;
}

.testimonial-section .testimonial-bx {
  text-align: center;
}

.testimonial-section .testimonial-bx .testimonial-thumb {
  width: 80px;
  border-radius: 50px;
  overflow: hidden;
  margin: 20px auto;
  border: 3px solid #FFF;
  -webkit-box-shadow: 0 0 8px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 8px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-section .testimonial-bx .testimonial-info {
  margin-bottom: 15px;
}

.testimonial-section .testimonial-bx .testimonial-info h5 {
  color: #9db946;
  margin-bottom: 0;
}

.testimonial-section .testimonial-bx .testimonial-info p {
  color: #9db946;
  font-size: 15px;
  margin: 0;
}

.testimonial-section .testimonial-bx .testimonial-content {
  position: relative;
  max-width: 800px;
  margin: 20px auto;
  padding: 40px;
  border: 1px solid #EEE;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.2);
}

.testimonial-section .testimonial-bx .testimonial-content::before, .testimonial-section .testimonial-bx .testimonial-content::after {
  color: #9db946;
  font-family: 'Font Awesome 5 Free';
  position: absolute;
  font-size: 20px;
  font-weight: 600;
}

.testimonial-section .testimonial-bx .testimonial-content::before {
  top: 10px;
  content: "\f10d";
  left: 10px;
}

.testimonial-section .testimonial-bx .testimonial-content::after {
  bottom: 10px;
  content: "\f10e";
  right: 10px;
}

.testimonial-section .testimonial-bx .testimonial-content p {
  color: #121921;
  font-size: 15px;
  margin: 0;
}

/* slider-banner-sec */
.slider-banner-sec {
  padding: 50px 0;
}

.slider-banner-sec .banner-col {
  position: relative;
  overflow: hidden;
  border: 1px solid #9db946;
  -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
}

.slider-banner-sec .banner-col::before {
  position: absolute;
  width: 20%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  transform: skew(-20deg);
  -webkit-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  left: -40%;
}

.slider-banner-sec .banner-col img {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.slider-banner-sec .banner-col .content {
  position: absolute;
  width: 240px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}

.slider-banner-sec .banner-col .content h2 {
  font-size: 32px;
  font-weight: 400;
  color: #9db946;
  margin-bottom: 10px;
}

.slider-banner-sec .banner-col .content h2 strong {
  font-weight: 600;
}

.slider-banner-sec .banner-col .content h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #121921;
}

.slider-banner-sec .banner-col .content .link-box {
  margin-top: 20px;
}

.slider-banner-sec .banner-col .content .link-box .theme-btn {
  padding: 5px 20px;
}

.slider-banner-sec .banner-col:hover::before {
  left: 120%;
  transition: left 0.5s ease;
  -webkit-transition: left 0.5s ease;
  -moz-transition: left 0.5s ease;
  -ms-transition: left 0.5s ease;
  -o-transition: left 0.5s ease;
}

.slider-banner-sec .banner-col:hover .content .link-box .theme-btn {
  color: #FFF;
  background-color: #8fb128;
}

/* home-product-section */
.home-product-section {
  padding: 50px 20px;
}

.home-product-section .home-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.home-product-section .home-product .product-thumb {
  width: 100%;
}

.home-product-section .home-product.owl-carousel .owl-nav [class*='owl-'] {
  background: #9db946;
  color: #FFF;
}

.product-thumb {
  background: #FFF;
  width: calc(25% - 10px);
  border: 1px solid #EEE;
  -webkit-box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  margin: 10px 5px;
  overflow: hidden;
  text-align: center;
  padding: 10px 10px 0;
}

.product-thumb .product-thumb-img {
  overflow: hidden;
}

.product-thumb .product-thumb-img img {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}

.product-thumb h3 {
  font-size: 15px;
  margin: 0;
  padding: 20px 0;
}

.product-thumb .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.product-thumb .overlay .view-icon {
  position: absolute;
  top: 0;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-block;
  line-height: 30px;
  font-size: 20px;
  background: #9db946;
  color: #FFF;
  padding: 10px;
  margin: 0 5px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.product-thumb:hover .overlay {
  opacity: 1;
  cursor: pointer;
}

.product-thumb:hover .overlay .view-icon {
  color: #FFF;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}

.product-thumb:hover .overlay .view-icon .fa {
  margin-right: 5px;
}

.product-thumb:hover .product-thumb-img img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/** breadcrumb **/
.page-banner {
  position: relative;
  background: url(../images/slider/slider-1.jpg) no-repeat;
  background-size: cover;
}

.page-banner .breadcrumb {
  padding: 60px 0 30px;
  margin: 0;
  background: rgba(0, 0, 0, 0.5);
  display: block;
  text-align: center;
}

.page-banner .breadcrumb h2 {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
  color: #FFF;
}

.page-banner .breadcrumb ul {
  margin-top: 20px;
}

.page-banner .breadcrumb ul li {
  position: relative;
  padding: 0;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
}

.page-banner .breadcrumb ul li:after {
  content: "/";
  position: relative;
  margin: 0 8px;
  color: #9db946;
}

.page-banner .breadcrumb ul li:last-child::after {
  display: none;
}

.page-banner .breadcrumb ul li a {
  color: #9db946;
}

.page-banner .tagline {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.page-banner .tagline h2 {
  position: relative;
  background: #9db946;
  font-size: 26px;
  color: #FFF;
  font-weight: 400;
  padding: 20px 30px;
  margin: 0;
}

.page-banner .tagline h2::before {
  position: absolute;
  left: -70px;
  top: 0;
  content: "";
  width: 0;
  height: 0;
  border-bottom: 71.5px solid #9db946;
  border-left: 70px solid transparent;
}

/* main-content */
.main-content {
  padding: 50px 0;
  overflow: hidden;
  min-height: 400px;
}

/* product-page */
/* contact-page */
.contact-page .contact-details {
  position: relative;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 24.3px 2.7px rgba(42, 42, 42, 0.26);
          box-shadow: 0px 10px 24.3px 2.7px rgba(42, 42, 42, 0.26);
  margin-top: -100px;
  margin-bottom: 50px;
  padding: 15px 15px 15px 0;
}

.contact-page .contact-text {
  background: #9db946;
  padding: 30px;
  border: 1px solid #EEE;
  color: #FFF;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .contact-page .contact-text {
    margin-bottom: 30px;
    overflow: hidden;
    height: auto;
  }
}

.contact-page .contact-text .heading-bx.left .title-head {
  font-weight: 300;
  padding-left: 15px;
  border-left: 5px solid #FFF;
}

.contact-page .contact-text .heading-bx.left p {
  color: #FFF;
}

.contact-page .contact-text ul li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid #EEE;
  line-height: 30px;
  margin-bottom: 10px;
}

.contact-page .contact-text ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-page .contact-text ul li i {
  position: absolute;
  left: 0;
  top: 18px;
  font-size: 18px;
  color: #FFF;
}

.contact-page .contact-bx .title-head {
  font-weight: 500;
  margin: 0 0 30px;
}

.contact-page .contact-bx .form-group .input-group {
  display: block;
  position: relative;
}

.contact-page .contact-bx .form-group .input-group .form-control {
  width: 100%;
  border-width: 0 0 1px 0;
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 0;
}

.contact-page .contact-bx .form-group .input-group .form-control textarea {
  height: 120px;
}

.contact-page .contact-bx .form-group .input-group input:focus,
.contact-page .contact-bx .form-group .input-group select:focus,
.contact-page .contact-bx .form-group .input-group textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #9db946;
}

.contact-page .contact-bx .btn {
  text-transform: uppercase;
  margin-top: 10px;
}

/* team-page */
.team-page h2 {
  margin-bottom: 30px;
}

.team-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #EEE;
}

.team-wrapper:not(:last-child) {
  margin-bottom: 30px;
}

.team-wrapper .team-thumb {
  width: 25%;
}

.team-wrapper .team-content {
  width: 100%;
  padding: 20px;
  background: #f9f9f9;
}

.team-wrapper .team-content h4 {
  font-size: 22px;
}

@media screen and (max-width: 640px) {
  .team-wrapper .team-thumb, .team-wrapper .team-content {
    width: 100%;
  }
}

/* product-page */
.product-page .product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-page .product-list li {
  width: 50%;
  padding: 10px;
  padding-top: 125px;
  margin-top: -125px;
}

.product-page .product-list li .product-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #9db946;
}

.product-page .product-list li .product-img .thumb {
  width: 35%;
  overflow: hidden;
}

.product-page .product-list li .product-img .thumb img {
  -webkit-transition: all 1s;
  transition: all 1s;
}

.product-page .product-list li .product-img:hover .thumb img {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.product-page .product-list li .product-img .content {
  width: 65%;
  padding: 20px;
  color: #FFF;
}

.product-page .product-list li .product-img .content h5 {
  word-break: break-all;
}

@media screen and (max-width: 991px) {
  .product-page .product-list li {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */