/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Raleway';
  color: #272829;
}

a {
  color: #00bb00;
  text-decoration: none;
}

a:hover {
  color: #00bb00;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway";
}

.noSelect {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #00bb00;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #01cc01;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000000;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #00bb00;
  border-top-color: #000;
  border-bottom-color: #000;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Scrollbar
--------------------------------------------------------------*/
.scrollbar { height: 1000px; }
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: #f4f4f5;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 11px;
  background: #00bb00; 
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: #f4f4f5;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}

/* @media (min-width: 991px) {
  #main {
    margin-left: 100px;
  }
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu img {
  height: 25px;
  width: 25px;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fff;
  background: #00bb00;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

.nav-menu li:first-child:hover a {
  background: #000;
}

.nav-menu li:first-child:hover a span {
  color: #00bb00;
}

.nav-menu li:first-child a.active {
  background: #fff;
}

.nav-menu li:first-child a.active span {
  color: #00bb00;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: #455b45;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #00bb00;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero_bg.webp") top right no-repeat;
  background-size: cover;
  position: relative;
}

@media (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
}

#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .blur-bg {
  padding: 10px;
  width: 100%;
  transition: all ease-in-out 0.3s;
  margin-bottom: 10px;
  backdrop-filter: blur(50px); 
}

#hero h1 {
  font-size: 60px;
  font-weight: 700;
  color: #5f5f5f;
}

#hero p {
  color: #3b3b3b;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #00bb00;
  bottom: 0;
  left: calc(50% - 20px);
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #728394;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: #00bb00;
  line-height: 0;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Choose Us
--------------------------------------------------------------*/
.why .chooseUs-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #00bb00;
  position: relative;
}

.why .chooseUs-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #00bb00;
  margin-bottom: 10px;
}

.why .chooseUs-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.why .chooseUs-item ul {
  padding-left: 20px;
}

.why .chooseUs-item ul li {
  padding-bottom: 10px;
}

.why .chooseUs-item:last-child {
  padding-bottom: 0;
}

.why .chooseUs-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #00bb00;
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.partners .swiper-slide img:hover {
  opacity: 1;
}

.partners .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.partners .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #00bb00;
}

.partners .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00bb00;
}

/*--------------------------------------------------------------
# Core Business
--------------------------------------------------------------*/
.crBus {
  width: 100%;
  height: 100%;
  /* background: linear-gradient(rgba(2, 2, 2, 0.2), rgba(0, 0, 0, 0.5)), url("../img/service-bg.jpg") fixed; */
  background: url("../img/core_bg.webp") fixed;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.crBus h2 {
  color: #fff;
}

.crBus .bus-card-head {
  border: 1px solid #ffffff;
  padding: 10px;
  width: 100%;
  transition: all ease-in-out 0.3s;
  margin-bottom: 10px;
  backdrop-filter: blur(50px); 
}

.crBus .bus-card {
  /* text-align: center; */
  border: 1px solid #ffffff;
  padding: 20px;
  width: 100%;
  transition: all ease-in-out 0.3s;
  /* background: rgba(255, 255, 255, 0.7); */
  margin-bottom: 10px;
  backdrop-filter: blur(50px); 
}

.crBus .bus-card .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.crBus .bus-card .icon i {
  color: #fff;
  font-size: 32px;
  transition: ease-in-out 0.3s;
  font-weight: bold;
}

.crBus .bus-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
}

.crBus .bus-card h4 a {
  color: #ffffff;
  transition: ease-in-out 0.3s;
}

.crBus .bus-card h4:hover,
.crBus .bus-card a:hover {
  color: #fff;
  ;
}

.crBus .bus-card a {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
}

.crBus .bus-card:hover .icon {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 #fff;
  transform: translateY(-5px);
}

.crBus .bus-card:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 #fff;
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.products .pro-card {
  text-align: center;
  padding: 25px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}
.products .pro-card h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.products .pro-card p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.products .pro-card:hover{
  border-color: #fff;
  box-shadow: 0px 0 50px 0 rgba(0, 0, 0, 0.15);
}

.products .pro-card:hover h4{
  transform: translateY(-5px);
  transition: ease-in-out 0.3s;
}

.products .pro-card .item{
  width: 150px;
}

.products .pro-card .item:hover {
  transform: translateY(-5px);
  transition: ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #00bb00;
  float: left;
  width: 44px;
  height: 44px;
  background: #e3f8e4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000000;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #000000;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #00bb00;
  color: #fff;
}

.contact .contact-form {
  width: 100%;
  background: #fff;
}

.contact .contact-form .form-group {
  padding-bottom: 8px;
}

.contact .contact-form input,
.contact .contact-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
  border-color: #00bb00;
}

.contact .contact-form input[type=text],
.contact .contact-form input[type=email] {
  height: 44px;
}

.contact .contact-form textarea {
  padding: 10px 12px;
}

.contact .contact-form button[type=submit] {
  background: #00bb00;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .contact-form button[type=submit]:hover {
  background: #09eb09;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #eeeeee;
  padding: 0 0 20px 0;
  color: #000000;
  font-size: 14px;
}

#footer .footer-top {
  background: #f4f4f5;
  border-bottom: 1px solid #dbdbdb;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 21px;
  margin: 0 0 20px 0;
  padding: 0px 12px;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}

#footer .footer-top .fb a {
  font-size: 18px;
  display: inline-block;
  background: #1877f2;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .fb a:hover {
  background: #00bb00;
  color: #ffffff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #00bb00;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000000;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #00bb00;
}

#footer .footer-top .footer-time ul a:hover {
  color: #000;
}

#footer .privacy {
  cursor: pointer;
}

#footer .privacy a:hover {
  color: #00bb00;
  transition: 0.3s;
}

#footer .logo-footer {
  width: 25%;
  height: 25%;
  object-fit: cover;
}

