/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    --colornavbar: #10351ece;
    --verdeoscuro: #10351E;
    --verdeclaro: #1D9C00;
    --verdemasclaro: #6DDF00;
    --verdehover: #A3FF00;
    --fonthorticola: "Poppins";
  }
  
  body {
    font-family: "Poppins";
  }
  
  #main{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  a {
    color: var(--verdemasclaro);
    text-decoration: none;
  }
  
  a:hover {
    color: var(--verdehover);
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins";
  }
  
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--verdemasclaro);
    width: 40px;
    height: 40px;
    border-radius: 25px;
    transition: all 0.4s;
  }
  
  .back-to-top i {
    font-size: 28px;
    color: var(--verdeoscuro);
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: var(--verdeoscuro);
  }
  
  .back-to-top:hover i {
    color: var(--verdemasclaro);
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Whatsapp button
  --------------------------------------------------------------*/
  .btn-ws {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 60px;
    z-index: 996;
    background: var(--verdemasclaro);
    width: 60px;
    height: 60px;
    border-radius: 30px;
    transition: all 0.4s;
    text-align: center;
  }
  
  .btn-ws i {
    font-size: 34px;
    color: var(--verdeoscuro);
    /*color: #09CD56;*/
    line-height: 1.48;
  }
  
  .btn-ws:hover {
    background: #09CD56;
  }
  
  .btn-ws:hover i {
    color: #fff;
  }
  
  .btn-ws.active {
    visibility: visible;
    opacity: 1;
  }
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--verdeoscuro);
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    inset: 0;
    margin: auto;
    border: 6px solid var(--verdemasclaro);
    border-top-color: var(--verdeoscuro);
    border-bottom-color: var(--verdeoscuro);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  #preloader .logo {
    position: absolute;
    width: 10vh;
    height: 10vh;
    inset: 0;
    margin: auto;
    z-index: 5;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @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;
    }
  }
  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    transition: all 0.5s;
    z-index: 997;
    padding: 40px 0;
  }
  
  #header.header-scrolled, #header.header-inner-pages {
    background: var(--verdeoscuro);
    padding: 6px;
  }
  
  #header.header-scrolled .get-started-btn, 
  #header.header-scrolled .navbar a, 
  #header.header-scrolled .logo a {
    color: #fff;
  }
  
  #header.header-scrolled .navbar .down{
    background: var(--colornavbar)
  }
  
  #header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    font-weight: 100;
    /*letter-spacing: 2px;*/
  }
  
  #header .logo img {
    max-height: 50px;
    transition: all 1s;
  }
  
  #header.header-scrolled .logo img{
    max-height: 30px;
  }
  
  @media screen and (max-width: 768px) {
    #header {
      padding: 6px;
    }
    #header .logo img {
      max-height: 25px;
    }
    #header .logo a {
      /*display: none;*/
      margin-left: 10px;
      font-size: 26px;
    }
  }
  
  /*--------------------------------------------------------------
  #  Get Startet Button
  --------------------------------------------------------------*/
  /*.get-started-btn {
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    padding: 4px 25px 4px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-family: "Poppins";
    font-size: 14px;
    display: inline-block;
    border: 2px solid var(--amarillo);
  }
  
  .get-started-btn:hover {
    background: var(--amarillo);
    color: #343a40;
  }
  
  @media (max-width: 992px) {
    .get-started-btn {
      font-size: 12px;
      padding: 4px 20px 4px 20px;
      margin-right: 15px;
    }
  }*/
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
    font-family: "Poppins";
  }
  
  .navbar .mega-menu {
    width: 300px;
  }
  
  .navbar .mega-menu li{
    display: flex;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0 5px 30px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
  }
  
  .navbar a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  
  #header.header-scrolled .navbar a:hover,
  #header.header-scrolled .navbar .active,
  #header.header-scrolled .navbar .navbar li:hover > a {
    color: var(--verdemasclaro);
  }

  .navbar a:hover, .navbar .active, .navbar li:hover > a {
    color: var(--verdemasclaro);
  }


  
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.70);
    transition: 0.3s;
    border-radius: 15px;
  }
  
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--verdeoscuro);
    font-weight: 400;
  }
  
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    font-weight: 700;
    color: var(--verdemasclaro);
  }
  
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }
  
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
    .navbar ul {
      display: none;
    }
  }
  
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--colornavbar);
    transition: 0.3s;
    z-index: 999;
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  
  .navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--verdeoscuro);
  }
  
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: var(--verdeoscuro);
    background-color: var(--verdemasclaro);
  }

  #header.header-scrolled .navbar-mobile a:hover,
  #header.header-scrolled .navbar-mobile .active,
  #header.header-scrolled .navbar-mobile li:hover > a {
    color: var(--verdeoscuro);
    background-color: var(--verdemasclaro);
  }
  
  .navbar-mobile .getstarted {
    margin: 15px;
  }
  
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
    color: var(--verdeoscuro);
  }
  
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    background-color: var(--verdemasclaro);
  }

  #header.header-scrolled .navbar-mobile .dropdown ul a:hover,
  #header.header-scrolled .navbar-mobile .dropdown ul .active:hover,
  #header.header-scrolled .navbar-mobile .dropdown ul li:hover > a {
    color: var(--verdemasclaro);
  }
  
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  /*#hero {
    width: 100%;
    height: 100vh;
    background: url("../img/hero-slider-horticultor/main-bg.jpg");
    background-size: cover;
    position: relative;
  }*/
  
  /*#hero:before {
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }*/
  
  /*#hero .carousel {
    width: 100%;
    min-height: calc(100vh - 75px);
    padding: 0;
    margin: 0;
    position: relative;
  }
  
  @media (max-height: 500px),
  (max-width: 1200px) {
    .hero .carousel {
      min-height: calc(100vh - 48px);
    }
  }
  
  #hero .carousel-item {
    margin-top: 150px;
    justify-content: center;
    text-align: center; 
    transition: all .45s .3s ease-in-out;
  }
  
  #hero .data-item{
    justify-content: center;
    text-align: center;
    padding-top: 140px;
    padding-left: 300px;
    color: #fff;
  }
  
  #hero .data-item .logo-producto {
    max-height: 50px;
    margin-top: -50px;
    margin-bottom: 10px;
  }
  
  
  #hero .data-item h2 {
    font-family: "Poppins";
    animation: fadeInDown 0.5s both 0.8s;
    margin-bottom: 20px;
  }
  
  #hero .data-item p {
    font-family: "Poppins";
    font-size: 25px;
    animation: fadeInDown 0.5s both 1.2s;
  }
  
  #hero .data-item p span{
    font-weight: 700;
    color: var(--verdeclaro);
  }
  
  #hero .data-item a {
    font-family: "Poppins";
    background: var(--verdeoscuro);
    color: #fff;
    padding: 5px 15px;
    border-style: solid;
    border-color: var(--amarillo);
    border-radius: 10px;
    animation: fadeInUp 0.5s both 1.6s;
  }
  
  #hero .data-item a:hover {
    background: var(--verdeclaro);
  }
  
  #hero .carousel-image img {
    max-height: 500px;
    align-items:end;
  }
  
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    opacity: 0.5;
  }
  
  #hero .carousel-control-prev:focus,
  #hero .carousel-control-next:focus {
    opacity: 0.5;
  }
  
  #hero .carousel-control-prev:hover,
  #hero .carousel-control-next:hover {
    opacity: 0.9;
  }
  
  @media (min-width: 1024px) {
  
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
      width: 5%;
    }
  }
  
  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -100%, 0);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  @keyframes scroll {
    0% {
      -webkit-transform: translateX(102%);
      transform: translateX(102%);
    }
  
    100% {
      -webkit-transform: translateX(-102%);
      transform: translateX(-102%);
    }
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 768px) {
    #hero {
      height: auto;
      background-size: cover;
    } 
  
    #hero .carousel-item {
      margin-top: 15px;
    }
    
    #hero .data-item{
      padding-top: 130px;
      padding-left: 0;
    }
    
    #hero .data-item .logo-producto {
      max-height: 40px;
    }
    
    
    #hero .data-item h2 {
      font-size: 18px;
    }
    
    #hero .data-item p {
      font-size: 16px;
    }
    
    #hero .data-item a {
      font-size: 14px;
    }
    
    #hero .carousel-image img {
      max-height: 300px;
      margin-left: 20px;
      margin-top: 90px;
    }
  }*/
  
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding-top: 40px;
    overflow: hidden;
  }
  
  .section-title {
    padding-bottom: 0;
  }
  
  .section-title h2 {
    position: absolute;
    left: 45px;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
  }
  
  /*.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--amarillo);
    margin: 4px 10px;
  }*/
  
  .section-title img {
    width: 50px;
    position: absolute;
    top: -26px;
    left: 0;
  }
  
  .section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: var(--verdeoscuro);
  }
  
  @media (max-width: 768px) {
    .section-title p {
      font-size: 22px;
    }
  }
  
  /*--------------------------------------------------------------
  # Clients
  --------------------------------------------------------------*/
  .clients {
    width: 100%;
    padding-top: 0;
    padding-bottom: 10px;
  }
  
  .clients .swiper-slide img {
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
  }
  
  .clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
  }
  
  .clients .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .clients .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    background-color: #ddd;
  }
  
  .clients .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--verdemasclaro);
  }
  
  @media (max-width: 768px) {
    .clients .swiper-slide img {
      opacity: 1;
      filter: none;
    }
  }

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-family: "Poppins";
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--verdeoscuro);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
    justify-content: space-between;
  }
  
  .contact .info i {
    font-size: 20px;
    background: var(--verdemasclaro);
    color: var(--verdeoscuro);
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }
  
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-family: "Poppins";
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--verdeoscuro);
  }
  
  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    font-family: "Poppins";
    color: #484848;
  }
  
  .contact .imagen img{
    margin-top: -20px;
    max-height: 600px;
  }
  
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
  margin-top: auto;
}

#footer .footer-top {
  background: var(--verdeoscuro);
  border-bottom: 1px solid var(--verdeclaro);
  padding: 40px 0 0 0;
}

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

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 100;
  }

#footer .footer-top .footer-info .logo img {
  max-height: 55px;
  margin-bottom: 20px;
}

#footer .footer-top .footer-info h3 span {
  font-weight: 700;
  text-decoration: 4px solid;
  text-decoration-line: underline;
  text-underline-offset: 6px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 25px;
  display: inline-block;
  background: var(--verdeoscuro);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--verdemasclaro);
  color: var(--verdeoscuro);
  text-decoration: none;
}

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

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

#footer .footer-top .footer-links h4{
  font-family: "Poppins";
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--verdemasclaro);
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--verdemasclaro);
}

#footer .footer-top .footer-links .btn{
  margin-left: 20px;
  margin-bottom: 0;
  color: transparent;
  font-family: "Poppins";
  font-size: 15px;
  font-weight: 500;
}

#footer .footer-top .footer-links .btn:hover {
  color: #fff;
  border-color: #fff;
}

#footer .footer-top .footer-logo img {
  max-width: 200px;
  margin-left: 180px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .footer-top .footer-links .btn {
    display: none;
}

@media (max-width: 768px){
  #footer .footer-top .footer-logo img {
    max-width: 20vh;
    margin-top: -80%;
  }
}