/*Banner calculadora*/
div.banner{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;

  transition: all ease 0.6s;
  /*
  transform: translateY(-300px);
  opacity: 0;
  position: absolute;
  top: 0; */
  z-index: -1;
  .container{
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    img{
      height: 100%;
      width: 100%;
      object-position: center;
      object-fit: cover;
    }
  }
}
div.banner.active{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  
  transform: translateY(0px);
  opacity: 1;
  position: unset;
  z-index: unset;
  .container{
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    img{
      height: 100%;
      width: 100%;
      object-position: center;
      object-fit: cover;
    }
  }
}

div.measures_calc-calculadora {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 1080px;
  background: #FCF5E0;
  border-radius: 30px;
  padding: 4rem 3rem;
  /*border: 2px solid #EB3C96;*/
  transform: none;
  transition: all 0.6s ease;
  position: relative !important;
}

div.measures_calc-calculadora.no-opacity {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transform: translateY(-300px);

  position: absolute !important;
}




/*popup video*/

.open-popup{
  cursor: pointer;
  position: fixed;
  top: 20%;
  right: 0;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  overflow: hidden;
  z-index: 20;

  background: #f2f2f2;
  .container-img{
    width: 80px;
    height: 80px;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
}


.last_news .grid .card_new:nth-child(3n+2) div.content{
  background: none;
}


/** Pagina de Inicio **/
/*
main.front-page{
  background: #EB3C96;
}

.last_news .grid .card_new:nth-child(3n+1) div.content {
  background: #EB3C96;
}
*/

/* zona Experto */
/*
.aside__follow-us {
  background: #EB3C96;
}
.card_resource.small:hover {
  background: rgba(235,60,150,0.15);
}
*/
@media (max-width: 942px) {
  /*
  a.card_resource.small {
    background: rgba(235,60,150,0.15);
  }
  */
  .open-popup{
      top: auto;
      bottom: 10%;
  }
}

/*recursos*/
/*
a.card_resource:hover {
  background: rgba(80,50,145,0.15);
}
@media (max-width: 942px) {
  a.card_resource {
    background: rgba(80,50,145,0.15);
  }
}
*/

/*articulos*/
/*.card_resource.small:hover {
  background: rgba(235,60,150,0.15);
}
@media (max-width: 942px) {
  a.card_resource.small {
    background: rgba(235,60,150,0.15);
  }
}
*/

/*footer*/
/*
.footer {
  background: linear-gradient(180deg, #503291 18.6%, #130040 100%);
}
*/

.cb-search-results__empty {
  width: 100%;
  text-align: center;
  font-family: MetroMedium, sans-serif;
}