/**
*
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');
/*@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap');*/


body {
  font-family: "Roboto", sans-serif;
  color: #444444;
}

a {
  color: #94c045;
  text-decoration: none;
}

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

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

#main {
  margin-top: -50px;
  z-index: 3;
  position: relative;
  
}
main{
  margin-bottom: 20px;
}

.padding-text{
  padding: 30px 20px;
}

@media (min-width: 1024px) {

  .padding-text{
    padding: 50px 70px;
  }
}  

section {
 /* padding-bottom: 60px;*/
  overflow: hidden;
}

.section-bg {
  background-color: #f9fbf4;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: "Orbitron", sans-serif;
  color: #646c55;
}

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

/* pagination */
.pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.pagination li a {
  color: #3c4133;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.pagination li.active,
.pagination li:hover {
  background: #94c045;
  color: #fff;
}


/*-----  Header   -------*/
#header {
  height: 70px;
  z-index: 997;
  transition: all 0.5s ease-in-out;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.green-text{
  color: #9fc658;
}

/*----  button  ------*/
.green-button {
    text-decoration: none;
    padding: 9px 46px;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #94c045;
    background-color: #94c045;
    width: 100%;
    font-size: 1.2em;
}

.green-button:hover {
    color: #94c045;
    background-color: #fff;
}

.green-button-secondary {
  text-decoration: none;
  padding: 9px 46px;
  color: #fff;
  border-radius: 8px;
  border: 1px solid #536530;
  background-color: #536530;
  /*width: 100%;*/
  font-size: 1.2em;
  margin-bottom: 10px;
}

.green-button-secondary :hover {
  color: #94c045;
  background-color: #fff;
}
/*----- Desktop  Menu  -------------*/

.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Orbitron", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #565e49;
  white-space: nowrap;
  transition: 0.3s;
}

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #94c045;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #9fc658;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  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.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #94c045;
}

.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%;
  }
}

/*----- Movil  Menu  -------------*/

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

.mobile-nav-toggle.fa-x {
  color: #fff;
}

@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: rgba(34, 36, 29, 0.9);
  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,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #3c4133;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #94c045;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  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;
}

.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 {
  color: #94c045;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/* ----------  Skip to Main Content -------- */
a.button.skip {
  position: absolute;
  top: -400px;
  left: 50%;
  z-index:100;
  outline:2px solid #fff;
  color: white;
  background: #86b03c;
  border-radius: 6px;
  text-transform:uppercase;
  padding: 20px 40px;
  margin-left: -130px;
}
a.button.skip:focus{
  top: 25vh;
}

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


/*-----   Header title Section  ------*/
#header-title {
  position: relative;
  display: inline-block;
  background-color: #86b03c;
  width: 100%;
}
.container-image{
  width: 100%;
}

.header-title-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 20px 10px;
  text-align: center;
  width: 80%;
}

.header-title-container h1 {
  margin-top: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 5px;
  color: #fff;
}

.header-title-container p, .header-title-container h3 {
  margin-bottom: 0;
  font-size: 12px;
}


@media (min-width: 768px) {
  .header-title-container {
    width: 70%;
    padding: 20px;
  }
  
  .header-title-container h1 {
    margin-top: 10;
    font-size: 40px;
    line-height: 40px;
  }
  
  .header-title-container p, .header-title-container h3 {
   /* margin-bottom: 15px;*/
    font-size: 14px;
    line-height: 14px;
  }
}

@media (min-width: 1024px) {
  .header-title-container {
    width: auto;
  }

  .header-title-container h1 {
    margin-top: 20;
    font-size: 50px;
    line-height: 56px;
  }
  
  .header-title-container p, .header-title-container h3 {
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 30px;
  }
}
/* slider*/

#header-title-slider {
  width: 100%;
  height: 33vw;
  background-size: cover;
  background-color: #86b03c;
  position: relative;
  margin-bottom: -140px;
  z-index: 1;
}

#header-title-slider h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#header-title-slider h3 {
  color: #eee;
  margin-bottom: 15px;
  font-size: 24px;
}

#header-title-slider p {
  color: #eee;
  margin-bottom: 15px;
  font-size: 24px;
}

.carousel-control-next, .carousel-control-prev {
	top: -40%;

}
.carousel-indicators {
	bottom: 90%;
}

.carousel-caption {
	bottom: 20vh;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
	background-color: #0c0c0c5c;
}


@media (max-width: 1024px) {
  .carousel-caption {
    bottom: 10vh;
    padding-top: 7.3rem;
  }

  #header-title-slider h1 {
    font-size: 25px;
    line-height: 20px;
    margin-top: -90px;
  }
  #header-title-slider p {
    color: #eee;
    margin-bottom: 0px;
    font-size: 15px;
  }

  
}

@media (max-width: 768px) {

  #header-title-slider {
    width: 100%;
    height: 35vw;
    background-size: cover;
    background-color: #86b03c;
    position: relative;
    margin-bottom: -140px;
    z-index: 1;
  }
  .carousel-caption {
    bottom: 14vh;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    background-color: #0c0c0c5c;
  }
  #header-title-slider h1 {
    font-size: 20px;
    line-height: 30px;
  }

  #header-title-slider h2 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #header-title-slider p {
    font-size: 12px;
  }
}

@media (max-width: 572px) {
  .w-100 {
  max-width: 100% !important; 
  /*height: 260px !important;*/
  }
  #header-title-slider {
  height: 194px !important;
  }
  .carousel-caption {
    bottom: 45px;
  }
}
@media (max-width: 481px) {
  .w-100 {
  max-width: 100% !important; 
  /*height: 260px !important;*/
  }
  #header-title-slider {
  height: 194px !important;
  }
  .carousel-caption {
    bottom: 9px;
  }
}



/* end slider*/

/*  Header pag interiores*/


#headPage {
  position: relative;
  display: inline-block;
  background-color: #86b03c;
  height: 180px;
  width: 100%;
}

.coverImageOverlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(134 176 60 / 40%);
  height: 180px;
  width: 100%;
}

@media (min-width: 768px) {
  #headPage {
    height: 250px;
  }
  
  .coverImageOverlay {
    height: 250px;
    width: 100%;
  }
}

/*------  proyect ---------*/
.proyect .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding-bottom: 15px;
  background: #fff;
  margin-bottom: 20px;
}


/*------ green-bar --------*/
.green-bar {
  background: #86b03c;
  padding: 20px 0;
  margin-top: -7px;
}

.green-bar h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.green-bar p {
  color: #fff;
}

@media (min-width: 768px) {
  .green-bar {
    padding: 50px 0;
  }
}

/*------  votaciones ---------*/
.votaciones {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding-bottom: 15px;
}
.inner-box{
  background-color: #86b03c1f;
  border-radius: 5px;
  padding: 20px;
}
@media (min-width: 800px) {
  .inner-box{
    background-color: #86b03c1f;
    border-radius: 5px;
    padding: 50px;
  }
}

/*------  noticias home ---------*/

.news-bar {
  background: #86b03c;
  padding: 50px 0;
}

.news-bar h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}




/*------   Contact   -------*/


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


.contact .contact-form input,
.contact .contact-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border: 1px solid #86b03c;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus,
.contact .contact-form select:focus{
  border: 2px solid #647d03;
/*  background-color: #86b03c2e;*/
}
.contact .contact-form input {
  height: 44px;
}

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

.contact .contact-form button[type=submit] {
  padding: 9px 46px;
  color: #fff;
  border-radius: 20px;
  border: 1px solid #94c045;
  background-color: #94c045;
  width: 100%;
  font-size: 1.2em;
}

.contact .contact-form button[type=submit]:hover {
  color: #94c045;
  background-color: #fff;
}

/* -----------------  Style the checkbox --------------- */
 
input#agree {
    display: none;
}

.checkmark {
  position: absolute;
  /*top: 0;*/
  /*left: 18px;*/
  margin-left: 10px;
  height: 22px;
  width: 22px;
  background-color: #eee;
  border: solid 1px #86b03c;
}

 
.chekContainer:hover input~.checkmark {
  background-color: #86b03c;
}



 
.chekContainer input:checked~.checkmark {
  background-color: #86b03c;
}

 
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.chekContainer input:checked~.checkmark:after {
  display: block;
}


.chekContainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/*------   Footer  ----*/
#footer {
  background: #141611;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 16px;
}

#footer .footer-top {
  background: #1c1f18;
  padding: 60px 0 30px 0;
}

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

#footer .footer-top h3 {
  font-size: 26px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 3px;
  color: #9fc658;
}

#footer .footer-top .footer-contacta p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

#footer .footer-top .footer-social a {
  display: inline-block;
  background: #3c4133;
  color: #fff;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .footer-social a i {
  line-height: 0;
  font-size: 16px;
  transition: 0.3s;
}

#footer .footer-top .footer-social a:hover {
  background: #94c045;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}


#footer .footer-top h4::after {
  background: #94c045;
  width: 100%;
}

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

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

#footer .footer-top .footer-links ul li {
  padding: 0 0 15px 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
}

#footer .footer-top .footer-links ul a:hover {
  color: #94c045;
}

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

#footer .footer-top .footer-donate p {
  line-height: 26px;
}

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

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

.top-button:hover {
  background: #a6ca63;
  color: #fff;
}

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




.page-error{
  margin: auto;
  max-width: 1200px;
  width: 90%;
  padding-top: 200px;
  padding-bottom: 200px;
}

.error-button {
  padding: 9px 46px;
  color: #fff;
  border-radius: 20px;
  border: 1px solid #94c045;
  background-color: #94c045;
  width: 100%;
  font-size: 1.2em;
}

.error-button:hover {
  color: #94c045;
  background-color: #fff;
}


.sites{
 max-width: 300px;
 border: 1px solid #86b03c;
 padding: 20px;
 box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 text-align: center;
}

.sites p{
  text-align: left;
}

.masonry {
  --masonry-gap: 1rem;
  --masonry-brick-width: 180px;
  column-gap: 15px;
  row-gap: 25px;
  column-fill: initial;
  column-width: 270px;
  
}

.masonry > * {
  break-inside: avoid;
  margin-bottom: 20px;
  justify-items: center;
}

@supports (grid-template-rows: masonry) {
  .masonry {
    display: grid;
    gap: 25px;
    grid-template-rows: masonry;
    grid-template-columns: repeat(
      auto-fill,
      minmax(var(--masonry-brick-width), 1fr)
    );
    align-tracks: stretch;
  }

  .masonry > * {
    margin-bottom: initial;
  }
}

/*   css manual */
.manual-indice .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  background: #fff;
  margin-top: 30px;
}

.manual .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  padding-bottom: 15px;
  background: #fff;
}

.informacion {
	width: 30px;
}
.titulo-manual{
background: #86b03c;
padding: 10px;
color: #fff;
}
h2.titulos_menu{
  font-size: 1.5rem;
}
h3.titulos_menu{
  font-size: 1.2rem;
}
h4.titulos_menu{
  font-size: 1rem;
}
h5.titulos_menu{
  font-size: 0.9rem;
}
h6.titulos_menu{
  font-size: 0.8rem;
}

.nivel_caja_2{
  padding-left: 15px;
}
.nivel_caja_3{
  padding-left: 30px;
}
.nivel_caja_4{
  padding-left: 45px;
}
.nivel_caja_5{
  padding-left: 60px;
}
.nivel_caja_6{
  padding-left: 75px;
}

h2.titulos_informacion{
  padding-top: 70px;
  color: #86b03c;
  border-bottom: #86b03c 3px solid;
}
h3.titulos_informacion{
  padding-top: 70px;
  border-bottom: #86b03c 3px solid;
}
h4.ttitulos_informacion{
  padding-top: 70px;
  color: #86b03c;
}
h5.titulos_informacion{
  padding-top: 70px;
}
h6.titulos_informacion{
  padding-top: 70px;
}


.nivel_caja_2{
  
}
.nivel_caja_3{
  margin-left: 1em;
}

.nivel_caja_4{
  margin-left: 2em;
}

.nivel_caja_5{
  margin-left: 3em;
}

.nivel_caja_6{
  margin-left: 4em;
}




ul.manuales{
  list-style: none;
}

ul.manuales li::before {
                  
  /* \2022 is the CSS Code/unicode for a disc */
  content: "\2022";  
  color: #86b03c; 
  display: inline-block; 
  width: 1em;
  font-weight: bold;
  font-size:1.5rem;

}

ul.manuales li ul{
  list-style: none;
}

ul.manuales li ul li::before {
                  
 
  content: "\25A0";  
  color: #86b03c; 
  display: inline-block; 
  width: 1.4em;
  font-weight: bold;
  font-size: 0.8rem;
}

/*-- Cookie Banner --*/
#cb-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-radius: 0;
  display: none;
  background-color:#86b03ce3 ;
  padding-top: 10px;
  padding-bottom: 10px;
}

.coockie-text {
  font-weight: bold;
  }
.coockie-text a{
color: #b80a0a;
}

.text-uppercase { 
  text-transform: uppercase;
}  

/*---------------------- Blog - NEWS -------------------------*/

.blog-post{
  padding-top: 40px;
}
.only-one-post {
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.post-body{
  padding: 30px;
}

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

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

.post-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}
.post-meta a:hover {
  color: #aacd6b;
  text-decoration: underline;
}

.post-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 20px;
  margin: 0;
  color: #777777;
}

.image-max-width{
  width: 100%;

}

 .post-footer {
  padding: 25px;
  border-top: 1px solid #e6e6e6;
  margin: 20px;
}
.post-footer .category {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.post-footer i {
  color: #8b9578;
  display: inline;
}

.post-footer .category li {
  display: inline-block;
}

.post-footer a {
  color: #494f3e;
  transition: 0.3s;
}
.post-footer a:hover {
  color: #aacd6b;
  text-decoration: none;
}

/*Listado de noticias*/
#allNews{
  margin-top: 30px;
}

.news-article {
  padding: 30px;
  margin-bottom: 60px;
}

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

h2.news-article-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.news-article-title a{
  color: #3c4133;
  transition: 0.3s;
}
.news-article-title a:hover{
  color: #aacd6b;
}
.news-article-content{
  color: #444444;
}

.news-article-read {
  -moz-text-align-last: right;
  text-align-last: right;
}

.card-height{
  height: 600px;
}
.card-footer-home{
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

/*aside de las noticias*/
.aside-item {
  margin-bottom: 30px;
}
.post-item-img {
  max-width: 90%;
  /*float: left;*/
}
.post-item {
	margin: 5px;
	border: solid 1px #ebebec;
	padding: 5px;
}

.post-item h4 a {
  font-size: 1rem;
  color: #3c4133;
  transition: 0.3s;
  margin-left: 20px;
}
.post-item h4 a:hover {
  color: #aacd6b;
}
.post-item time {
  display: block;
  margin-left: 115px;
  font-style: italic;
  font-size: 0.8rem;
  color: #aaaaaa;
}

/* imagenes de un post*/

#galeria, #galeria * {
  box-sizing:border-box
}

#galeria {
  border: 1px solid #EAEAEA;  /* Borde de la galería */
  background: white;  /* Fondo de la galería */
}
#galeria_miniaturas {
  display: table;
  margin: 0 auto;
}

.miniatura {
  width:  150px;  /* Ancho de las miniaturas */
 /* height:  60px; */ /* Alto de las miniaturas */
  float: left;
  cursor: pointer;
  padding: 5px;
  margin: 10px 5px;
}
.miniatura:hover {
  opacity:.7;   /* Opacidad */
}
.miniatura:active {
  opacity:1;
}

/*aside post-news*/
.categories ul {
  list-style: none;
  padding: 0;
  margin-left: 2rem;
  font-size: 1.1rem;
  line-height: 2rem;
}
.categories ul a{
  color:#777777;
  transition: 0.3s;
}
.categories ul a:hover {
  color: #aacd6b;
}



/* Cajas datos como las de la parte de administración*/

.widget-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  color: #FFF;
  margin-bottom: 30px;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.24);
}

.widget-small .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 85px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 4px 0 0 4px;
  font-size: 2.5rem;
}

.widget-small .info {
  -webkit-box-flex: 1;
          flex: 1;
  padding: 0 20px;
      align-self: center;
      display: flex;
}

.widget-small .info h4 {
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 1.1rem;
}

.widget-small .info p {
  margin: 0;
  font-size: 30px;
}

.widget-small.primary {
  background-color: #009688;
}

.widget-small.primary.coloured-icon {
  background-color: #fff;
  color: #2a2a2a;
}

.widget-small.primary.coloured-icon .icon {
  background-color: #009688;
  color: #fff;
}

.widget-small.info {
  background-color: #17a2b8;
}

.widget-small.info.coloured-icon {
  background-color: #fff;
  color: #2a2a2a;
}

.widget-small.info.coloured-icon .icon {
  background-color: #17a2b8;
  color: #fff;
}

.widget-small.warning {
  background-color: #ffc107;
}

.widget-small.warning.coloured-icon {
  background-color: #fff;
  color: #2a2a2a;
}

.widget-small.warning.coloured-icon .icon {
  background-color: #ffc107;
  color: #fff;
}

.widget-small.danger {
  background-color: #dc3545;
}

.widget-small.danger.coloured-icon {
  background-color: #fff;
  color: #2a2a2a;
}

.widget-small.danger.coloured-icon .icon {
  background-color: #dc3545;
  color: #fff;
}


#map li {
  list-style:none;
  line-height: 2.5rem;
  font-size: 1.2rem;
  padding-left: 1rem;
}

/*
.blog .post .post-content p {
  line-height: 24px;
}

.blog .post .post-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .post .post-content .read-more a {
  display: inline-block;
  background: #94c045;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .post .post-content .read-more a:hover {
  background: #9fc658;
}

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

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

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

.blog .post .post-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #3c4133;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .post .post-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .post .post-footer i {
  color: #8b9578;
  display: inline;
}

.blog .post .post-footer a {
  color: #494f3e;
  transition: 0.3s;
}

.blog .post .post-footer a:hover {
  color: #94c045;
}

.blog .post .post-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .post .post-footer .cats li {
  display: inline-block;
}

.blog .post .post-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .post .post-footer .tags li {
  display: inline-block;
}

.blog .post .post-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .post .post-footer .share {
  font-size: 16px;
}

.blog .p .post-footer .share i {
  padding-left: 5px;
}

.blog .post-single {
  margin-bottom: 30px;
}

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

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #3c4133;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(60, 65, 51, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #94c045;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #3c4133;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #565e49;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #c0da91;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #c0da91;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #3c4133;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #494f3e;
}

.blog .blog-pagination {
  color: #717a60;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #3c4133;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #94c045;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

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

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #3c4133;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #94c045;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #9dc554;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #3c4133;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #94c045;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #3c4133;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #94c045;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #7e886b;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #edefea;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #94c045;
  background: #94c045;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #d5d8ce;
  font-size: 14px;
}
*/


