/* Copyright ANTSA 2023. Todos los derechos reservados.*/

/*--------------------------------------------------------------
# GENERAL
--------------------------------------------------------------*/
:root {
  --verde: #028143;
  --verde-oscuro: #006535;
  --verde-blur: #00653494;
  --gris: rgb(142, 142, 144);
  --dorado: #a5853f;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none;
  color: var(--verde);
}

a:hover {
  color: var(--verde);
  text-decoration: none;
  cursor: pointer;
}

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

/*--------------------------------------------------------------
# IR HACIA ARRIBA
--------------------------------------------------------------*/
.ir-hacia-arriba {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--verde);
  box-shadow: 0px 0px 5px 5px #00000040;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.ir-hacia-arriba i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.ir-hacia-arriba:hover {
  background: var(--verde-oscuro);
  color: #fff;
}

.ir-hacia-arriba.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# CARGANDO
--------------------------------------------------------------*/
#cargando {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--verde-blur);
}

#cargando:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--verde-oscuro);
  border-top-color: var(--verde-blur);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-cargando 1s linear infinite;
  animation: animate-cargando 1s linear infinite;
}

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

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

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

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

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
 
}

#header-second {
  background: var(--verde);
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  border-bottom: 5px solid var(--dorado);
  box-shadow: 0px 0px 20px 0px black;
}

#header.header-scrolled {
  background: var(--verde);
  border-bottom: 5px solid var(--dorado);
  top: 0;
}

#header .logo, #header-second .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo img, #header-second .logo img {
  max-height: 40px;
  width: 100px;
}

/*--------------------------------------------------------------
# MENU RESPONSIVE
--------------------------------------------------------------*/
/* DESKTOP */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background-color: var(--dorado);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

/* MOVILES */
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--verde-oscuro);
}

@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(--verde-blur);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  position: absolute;
  top: 55px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--verde);
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

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

/*--------------------------------------------------------------
# INICIO
--------------------------------------------------------------*/
#inicio {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: url("../img/fondo-index.jpg") top center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  z-index: 99;
  transition: 0.3s;
  flex-wrap: wrap;
  align-content: flex-end;
  justify-content: space-around;
  padding: 60px 20px;
}

#inicio .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#inicio h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#inicio p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

/*--------------------------------------------------------------
# DOLAR Y SEMILLAS
--------------------------------------------------------------*/
.align-items-flex-end{
  align-items: flex-end;
}

.parte-izq{
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  justify-content: center;
  margin-right: 20px;
}

.widget-clima{
  position: relative;
  top: 60px;
}

.cajas-dolar-semillas{
  width: max-content;
  display: flex;
  justify-content: space-around;
  align-self: flex-end;
  margin-top: 50px;
  flex-wrap: wrap;
}

.caja-dolar, .caja-semillas{
  display: flex;
  background-color: var(--verde);
  color: white;
  border-radius: 10px;
  align-items: center;
  width: 400px;
  height: 60px;
  padding: 15px 85px;
  background-size: cover;
  transition: all 0.3s ease-in-out;
  margin: 0px 10px;
}

.caja-dolar:hover, .caja-semillas:hover{
  transform: translateY(-10px);
}

.caja-dolar a, .caja-semillas a{
  display: block;
  width: max-content;
}

.caja-dolar {
  background-image: url(../img/boton-dolar.png);
}

.caja-semillas {
  background-image: url(../img/boton-granos.png);
}

/*--------------------------------------------------------------
# SECCION
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: var(--verde-blur);
}

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

.section-title-about{
  padding-bottom: 0 !important;
}

.section-title-second {
  text-align: center;
}

.section-title-second p {
  padding-top: 10px;
}

.senasa-logo{
  margin: 0px 5px;
  color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-title h2, .section-title-second h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--verde);
}

.section-title p {
  margin-bottom: 15px;
  font-style: italic;
}

/*--------------------------------------------------------------
# CAJAS
--------------------------------------------------------------*/
#icon-boxes {
  padding-bottom: 1em;
  margin: 0px 20px;
  display: flex;
}

#icon-boxes .icon-box {
  padding: 0;
  margin: 0px 10px;
}

#icon-box:hover {
transform: translateY(-10px);
}

#icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#icon-box {
  display: flex;
  align-items: flex-start;
}

#icon-box img {
  max-width: 95%;
  object-fit: cover;
}

.icon-boxes {
  padding-top: 20px;
  position: relative;
  z-index: 100;
}

.icon-boxes .icon-box {
  position: relative;
  transition: all 0.3s ease-in-out; 
}

@media (max-width: 991px){
  #inicio {
    padding: 10px 20px;
    align-content: center;
  }

  #icon-boxes {
    margin: 0;
    flex-wrap: wrap;
  }

  #icon-box {
    margin: 5px !important;
    
  }

  .icon-box-image {
    display: flex;
    justify-content: center;
  }

  .boxes-servicios {
    display: none !important;
  }

  .caja-dolar, .caja-semillas {
    width: 300px;
    height: 45px;
    margin: 5px 0px;
  }

  .cajas-dolar-semillas {
    margin-top: 0;
    flex-flow: column;
  }

  .parte-izq {
    width: 100%;
    margin-right: 0;
  }

  .widget-clima {
    top: 0;
    margin-top: 10px;
  }

  .col-lg-contact {
    width: 90% !important;
  }
}

@media (max-width: 991px) and (orientation:landscape) {
  .parte-izq, .widget-clima {
    display: none;
  }
}

/*--------------------------------------------------------------
# WIDGETS
--------------------------------------------------------------*/
#widgets{
  padding: 0;
}

#widgets .hide{
  display: none !important;
}

#widget-granos, #widget-dolares{
  width: 100%;
  display: flex; 
}

#widget-granos > div{
  width: 20%;
  margin: 1px;
}

#widget-dolares > div{
  border-top: 5px solid #079a7d;
  width: 20%;
  margin: 1px;
}

#widget-dolares .card-compra-label,
#widget-dolares .card-venta-label{
  background-color: #EBEBEB;
  margin-bottom: 1px;
}

#widget-granos .card-header, #widget-dolares .card-header{
  background-color: #EBEBEB;
  font-weight: 700;
  margin-bottom: 1px;
}

#widget-granos img{
 height: 30px;
}

#widget-granos .card-price, #widget-dolares .card-price{
  background-color: #EBEBEB;
  font-size: 200%;
  font-weight: 400;
  margin-bottom: 1px;
}

#widget-granos .card-variation{
  background-color: #EBEBEB;
  margin-bottom: 1px;
}

#widget-granos .card-estimativo{
  background-color: #EBEBEB;
  margin-bottom: 1px;
  font-size: 15px;
  height: 30px;
}

#widget-granos .card-variation p{
  font-size: 11.5px;
  color: #777777;
  font-weight: 400;
  margin: 0;
}

#widget-granos .trigo-card .card-header{
  border-top: 5px solid rgb(195, 153, 107);
}

#widget-granos .soja-card .card-header{
  border-top: 5px solid rgb(0, 147, 69);
}

#widget-granos .maiz-card .card-header{
  border-top: 5px solid rgb(249, 165, 45);
}

#widget-granos .sorgo-card .card-header{
  border-top: 5px solid rgb(210, 92, 58);
}

#widget-granos .girasol-card .card-header{
  border-top: 5px solid rgb(255, 214, 25);
}

@media (max-width: 768px) {
  #widget-granos{
      flex-wrap: wrap;
  }

  #widget-dolares{
      flex-wrap: wrap;
  }

  #widget-granos > div{
      width: 100%;
  }

  #widget-dolares > div{
      width: 100%;
  }
}

/*--------------------------------------------------------------
# SOBRE NOSOTROS
--------------------------------------------------------------*/
.about {
  background: url("../img/nosotros.png") top center no-repeat;
  position: relative;
}

.about:before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .row{
  justify-content: center;
}

.about .container {
  position: relative;
}

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

.about .content ul li {
  position: relative;
  text-align: center;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: relative;
  margin-right: 10px;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--verde);
  line-height: 1;
}

.about .content b {
  margin-right: 10px;
}

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

.about .content .btn-learn-more {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: var(--verde);
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid var(--verde);
}

.about .content .btn-learn-more:hover {
  background: var(--verde);
  color: #fff;
  text-decoration: none;
}

.col-lg-6{
  display: flex;
  width: 100%;
  justify-content: center;
}

.col-lg-contact{
  display: flex;
  width: 50%;
  justify-content: center;
}

.nuestros-productos {
  padding-top: 25px;
  font-weight: bold;
}

@media (max-width: 992px) {
  .about {
    padding: 60px 0;
  }
}


/*--------------------------------------------------------------
# DESPLEGABLES
--------------------------------------------------------------*/
.desplegable {
  background: rgba(28, 128, 34, 23%);
  padding: 0;
}

.desplegable .content {
  padding: 60px 100px 0 100px;
}

.desplegable-ganaderia .content {
  padding: 0px 20px;
}

.desplegable-ganaderia .content p {
  text-align: center;
}

.desplegable .content h3 {
  margin-bottom: 35px;
  font-weight: 400;
  font-size: 34px;
}

.desplegable .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.desplegable .accordion-list {
  padding: 0 100px 60px 100px;
}

.desplegable .accordion-list ul {
  padding: 0;
  list-style: none;
}

.desplegable .accordion-list li+li {
  margin-top: 15px;
}

.desplegable .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.desplegable .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.desplegable .accordion-list span {
  color: var(--verde);
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.desplegable .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.desplegable .accordion-list .icon-show {
  display: none;
}

.desplegable .accordion-list a.collapsed {
  color: #343a40;
}

.desplegable .accordion-list a.collapsed:hover {
  color: var(--verde);
}

.desplegable .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.desplegable .accordion-list a.collapsed .icon-close {
  display: none;
}

.desplegable .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--verde) 50%, rgba(12 117 0 / 49%) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.desplegable .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.desplegable .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid var(--verde-oscuro);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.desplegable .play-btn:hover::after {
  border-left: 15px solid var(--verde);
  transform: scale(20);
}

.desplegable .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.video-title {
  margin-top: 10px;
  border-bottom: 3px solid var(--dorado);
  padding: 2px 5px;
  background-color: var(--verde);
  color: white;
  
  position: relative;
  top: 10px;
}

@media (max-width: 1024px) {

  .desplegable .content,
  .desplegable .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .desplegable .content {
    padding-top: 30px;
  }

  .desplegable .accordion-list {
    padding-bottom: 30px;
  }

  .video-title {
    font-size: 11px;
  }
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# SERVICIOS
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 50px 40px;
  border-radius: 6px;
  text-align: center;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover {
  outline: 2px solid var(--verde);
}

.services img {
  position: absolute;
  width: 55px;
}

.services .icon-box h4 {
  color: var(--verde);
  margin-left: 70px;
  font-weight: 700;
  margin-right: 10px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: var(--verde);
  transition: 0.3s;
}

.services .icon-box h4 a:hover {
  color: var(--verde);
}

.services .icon-box p {
  color: var(--verde);
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (max-width: 991px){
  .mobile-touch-icon {
    display: inline !important;
  }

  .services .icon-box p {
    margin-left: 0;
  }
}

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

.clients .swiper-slide:hover img {
  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;
  border: 1px solid #0880e8;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0880e8;
}

.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  width: 60%;
  opacity: 0.5;
  transition: 0.3s;
}

.clients .owl-item img:hover {
  opacity: 1;
}

.clients .owl-nav,
.clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.clients .owl-dot.active {
  background-color: #0880e8 !important;
}

/*--------------------------------------------------------------
# IR A NOTICIAS
--------------------------------------------------------------*/
.ir-a-noticias {
  background: linear-gradient(rgba(255, 255, 255, 0), var(--verde)), url("../img/campo.jpg") fixed center center;
  background-size: cover;
  padding: 100px 0;
}

.ir-a-noticias h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.ir-a-noticias p {
  color: #fff;
}

.ir-a-noticias .ir-a-noticias-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 2px;
  transition: 100ms;
  margin: 10px;
  border-radius: 50px;
  background: var(--verde-oscuro);
  color: #fff;
}

.ir-a-noticias .ir-a-noticias-btn:hover {
  outline: 5px solid var(--verde-oscuro);
}

[data-aos^=zoom][data-aos^=zoom].aos-animate{
  justify-content: center;
}

.title-noticias{
  text-align: center !important;
}

@media (max-width: 1024px) {
  .ir-a-noticias {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .ir-a-noticias .ir-a-noticias-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# FOTOS
--------------------------------------------------------------*/
.portfoio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfoio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 18px 10px 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0 3px 10px 3px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
}

.portfoio #portfolio-flters li:hover,
.portfoio #portfolio-flters li.filter-active {
  color: #fff;
  background: var(--verde);
}

.portfoio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfoio .portfolio-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.portfoio .portfolio-item img {
  position: relative;
  top: 0;
  transition: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
}




/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

a#link-hisepra {
  display: inline;
  padding: 0;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: var(--verde);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: var(--verde);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

.faq-lab {
display: flex;
justify-content: center;
}

.faq-lab-list {
 width: 50%;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

@media (max-width: 800px){
  .faq-lab-list {
    width: 100%;
   }
}

/*--------------------------------------------------------------
# CONTACTO
--------------------------------------------------------------*/
.contact {
  background: url("../img/contacto.png") left center no-repeat;
  position: relative;
}

.contact:before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .container {
  position: relative;
}

.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  background: var(--verde);
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  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: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--verde);
}

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

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

.contact .php-email-form {
  width: 100%;
}

.form-control{
  border: 1px solid var(--verde) !important;
}

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

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

.contact .php-email-form input {
  height: 44px;
}

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

.contact .php-email-form button[type=button] {
  border: 0;
  padding: 10px 32px;
  color: white;
  transition: 0.4s;
  border-radius: 50px;
  background: var(--verde);
}

.contact .php-email-form button[type=button]:hover {
  background: var(--verde-oscuro);
  color: #fff;
}

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

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

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

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

/*--------------------------------------------------------------
# BANNERS
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(128, 128, 128, 0.447);
  margin-top: 70px;
}

.breadcrumbs a:hover{
color: var(--verde-oscuro);
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--verde);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
}

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

/*--------------------------------------------------------------
# NOTICIAS
--------------------------------------------------------------*/
.noticias {
  padding: 40px 0 20px 0;
}

.noticias .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.noticias .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.noticias .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.noticias .entry .entry-title a {
  color: var(--verde);
  transition: 0.3s;
}

.noticias .entry .entry-title a:hover {
  color: var(--verde-oscuro);
}

.noticias .entry .entry-meta {
  margin-bottom: 15px;
  color: var(--verde-oscuro);
}

.noticias .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.noticias .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.noticias .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.noticias .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.noticias .entry .entry-content p {
  line-height: 24px;
}

.noticias .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.noticias .entry .entry-content .read-more a {
  display: inline-block;
  background: var(--verde);
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.noticias .entry .entry-content .read-more a:hover {
  background: var(--verde-oscuro);
}

.noticias .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.noticias .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.noticias .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.noticias .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--verde);
  margin-top: 20px;
  margin-bottom: 20px;
}

.noticias .entry-single {
  margin-bottom: 30px;
}

.noticias .noticias-paginas {
  color: var(--verde);
}

.noticias .noticias-paginas ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.noticias .noticias-paginas li {
  margin: 0 5px;
  transition: 0.3s;
}

.noticias .noticias-paginas li a {
  color: var(--verde);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noticias .noticias-paginas li.active {
  background: var(--verde);
}

.noticias .noticias-paginas li:hover {
  background: var(--verde-blur);
}

.noticias .noticias-paginas li.active a,
.noticias .noticias-paginas li:hover a {
  color: #fff;
}

.noticias .sidebar {
  padding: 30px;
  margin: 0 0 0 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.noticias .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 15px 0;
  margin: 0 0 15px 0;
  color: var(--verde);
  position: relative;
  text-align: center;
  border-bottom: 1px solid var(--verde);
}

.noticias .sidebar .sitios-recomendados .post-item+.post-item {
  margin-top: 15px;
}

.post-item.clearfix {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid var(--verde);
  margin: 10px 0px;
}

.post-item.clearfix:hover {
  outline: 1px solid var(--verde-blur);
}

.noticias .sidebar .sitios-recomendados img {
  width: 80px;
  float: left;
}

.noticias .sidebar .sitios-recomendados h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.noticias .sidebar .sitios-recomendados h4 a {
  color: var(--verde);
  transition: 0.3s;
}

.noticias .sidebar .sitios-recomendados h4 a:hover {
  color: var(--verde-oscuro);
}

.noticias .sidebar .sitios-recomendados time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

@media (max-width: 992px) {
  .noticias .entry .entry-content .read-more {
    text-align-last: center;
  }
  .noticias .sidebar {
    margin: 60px 0px;
  }
  article.entry {
    text-align: center;
  }
  .entry-meta ul {
    justify-content: center;
  }
}

/* FOOTER */
#footer {
  background: var(--verde);
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

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

#footer .copyright span {
  color: var(--verde-oscuro);
}

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

#footer .credits a {
  color: var(--verde-oscuro);
}