/* Main: section */

.home__main {
  margin: 0 auto 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 15;
  background-color: #ffffff;
  box-sizing: border-box;
  overflow: auto;
  transition: all ease .5s;
}

.search__result__list {
  overflow: auto;
  max-height: calc(100vh - 200px);
  min-height: 40px;
}

.search__result__list__item {
  list-style: none;
  margin-bottom: 10px;
  border: 1px solid #c1c1c1;
  margin-left: 10px;
  padding: 10px;
  border-radius: 3px;
  cursor: pointer;
  opacity: .8;
}

.search__result__list__item:hover {
  opacity: 1;
}

.search__result__list__item:last-child {
  margin-bottom: 0;
}

.overlay.prepared {
  padding: 40px 20px;
}

.overlay.active {
  height: 130vh;
}

.overlay__search {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  margin-bottom: 40px;
}

.overlay__search > input {
  border: none;
  width: calc(100% - 50px);
  border-bottom: 1px solid #484848;
  background-color: transparent;
  height: 40px;
  font-size: 16px;
  font-weight: 400;
}

.overlay__search > input:focus {
  outline: none;
}

.overlay__section {
  margin-bottom: 40px;
  color: #323330;
  font-size: 16px;
  text-transform: uppercase;
}

.overlay__section.overlay__results {
  text-transform: none;
}

.overlay__title {
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: none;
}

.live__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.live__icon.radio__icon {
  background-image: url("../images/megaphone.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.live__icon.webcam__icon {
  background-image: url("../images/photo-camera.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.overlay__row {
  display: flex;
  margin-left: 10px;
  line-height: 40px;
  align-items: center;
}

.home__gallery {
  height: auto;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  padding: 0 20px;
}

.overlay__body {
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
}

.search__tag {
  margin: 6px 12px 6px 0;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.03);
  color: #696868;
  transition: all ease 0.3s;
}
.search__tag:hover {
  background: rgba(0, 0, 0, 0.08);
}

.slick-prev.slick-arrow {
  position: absolute;
  width: 25px;
  height: 130px;
  left: 0;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slick-next.slick-arrow {
  position: absolute;
  width: 25px;
  height: 130px;
  right: 0;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slick-next:before,
.slick-prev:before {
  color: #484848!important;
}

.slick-prev:before {
  content: url(../images/gallery/prev.png)!important;
}

.slick-next:before {
  content: url(../images/gallery/next.png)!important;
}

.gallery__image {
  position: relative;
  /*height: 100%;*/
  width: 100%;
  overflow: hidden;
  display: grid;
  align-items: end;
  border-radius: 5px 5px 0 0;
}

.gallery__image__image {
  align-self: stretch;
  height: 270px;
  max-width: 100%;
  overflow: hidden;
}

.box__image {
  position: relative;
}
.box__overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 4;
  display: flex;
}
.box__image:hover .box__overlay,
.playing .box__overlay {
  display: flex;
}

.play__icon {
  border-style: solid;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-width: 20px 0px 20px 30px;
  border-color: transparent transparent transparent #fefefe;
  margin-left: 20px;
  transition: all ease 0.2s;
  will-change: border-width;
  cursor: pointer;
}
.playing .play__icon {
  width: 40px;
  height: 25px;
  border-style: double;
  border-width: 0px 0px 0px 20px;
  border-color: #fefefe;
}

.gallery__image > a {
  background-color: #e4e4e4;
  animation: bright 1s ease-in-out .3s 10;
}

.gallery__image img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.gallery__caption {
  border: 1px solid #e8e8e8;
  border-radius: 0 0 5px 5px;
  position: relative;
  min-height: 180px;
}

.gallery__caption__category {
  display: inline-block;
  font-size: 14px;
  padding: 0;
  font-weight: 400;
  color: #A5AAAF;
  text-transform: uppercase;
}

.gallery__caption__title__link {
  position: absolute;
  left: 10px;
  top: 45px;
  width: calc(100% - 30px);
  font-size: 20px;
  line-height: 26px;
  color: #333333;
  font-weight: 600;
  box-decoration-break: clone;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-height: 80px;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical;
  -webkit-box-decoration-break: clone;
}

.gallery__caption__title__link:hover {
  text-decoration: none;
}

.gallery__caption__subtitle {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  line-height: 22px;
  font-weight: 400;
  letter-spacing: -1px;
  max-height: 60px;
  width: calc(100% - 20px);
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: -webkit-box;
  overflow: hidden;
  box-decoration-break: clone;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  -webkit-line-clamp: 2!important;
  -webkit-box-orient: vertical;
  -webkit-box-decoration-break: clone;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.alignnone {
  width: 100%;
  height: auto;
}

/* section: home */

.home__section {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto 40px;
  display: grid;
  grid-gap: 20px;
  padding: 0 20px;
  align-items: start;
  align-content: start;
  position: relative;
}

.home__section.home__section--podcasts {
  grid-template-columns: 2fr 5fr;
  height: calc(100vh - 330px);
  margin: 0 auto;
}

.podcast__list .home__section {
  padding: 0;
}

.podcast__info {
  display: grid;
  grid-gap: 10px;
}

.podcast__list {
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.podcast__title > h1 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
}

.podcast__list__title {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: 400;
}

.home__section.home__section--nomargin {
  margin-bottom: 20px;
}

#enable-infinite-scroll > .home__section,
.home__section > .home__section {
  padding: 0;
}

.home__section__title {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  font-weight: 400;
  display: flex;
  position: relative;
}

.home__section__color {
  width: 2px;
  background-color: #A5AAAF;
  border-radius: 3px;
  margin-right: 10px;
}

.section__content {
  display: grid;
  grid-gap: 20px;
}

.section__content--big .box {
  height: 280px;
}

#programasGallery {
  width: 100%;
  overflow: hidden;
  /*height: 600px;*/
  /*margin-bottom: 40px;*/
  cursor: move;
  cursor: grab;
  opacity: 0;
  transition: all ease .9s;
}

#programasGallery .caption__title {
  position: relative;
  top: 0;
  left: 0;
  padding: 7px 10px 0px 10;
}

#programasGallery.show {
  opacity: 1;
}

#programasGallery * {
  outline: 0;
}

#programasGalleryPreload {
  position: relative;
  width: 100%;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: .25fr repeat(5, 1fr) .25fr;
  margin-bottom: 40px;
  margin-top: -320px;
  transition: all ease .9s;
}

.programa__preload {
  height: 200px;
  background-color: #e4e4e4;
}

#programasGalleryPreload .programa__preload:nth-child(3) {
  animation: bright 1s ease-in-out infinite;
}

#programasGalleryPreload .programa__preload:nth-child(4) {
  animation: bright 1s ease-in-out .3s infinite;
}

#programasGalleryPreload .programa__preload:nth-child(5) {
  animation: bright 1s ease-in-out .6s infinite;
}

#programasGalleryPreload .programa__preload:nth-child(6) {
  animation: bright 1s ease-in-out .9s infinite;
}

#programasGalleryPreload .programa__preload:nth-child(7) {
  animation: bright 1s ease-in-out 1.2s infinite;
}

#programasGalleryPreload .programa__preload:nth-child(8) {
  animation: bright 1s ease-in-out 1.5s infinite;
}

#programasGalleryPreload .programa__preload:nth-child(9) {
  animation: bright 1s ease-in-out 1.8s infinite;
}

#programasGalleryPreload.inactive {
  display: none;
}

#programasGalleryPreload.inactive .programa__preload:nth-child(3),
#programasGalleryPreload.inactive .programa__preload:nth-child(4),
#programasGalleryPreload.inactive .programa__preload:nth-child(5),
#programasGalleryPreload.inactive .programa__preload:nth-child(6),
#programasGalleryPreload.inactive .programa__preload:nth-child(7),
#programasGalleryPreload.inactive .programa__preload:nth-child(8),
#programasGalleryPreload.inactive .programa__preload:nth-child(9) {
  animation: none!important;
}

@keyframes bright {
  0%,
  100% {
    -webkit-filter: brightness(1);
    -ms-filter: brightness(1);
    -o-filter: brightness(1);
    filter: brightness(1);
  }

  50% {
    -webkit-filter: brightness(0.95);
    -ms-filter: brightness(0.95);
    -o-filter: brightness(0.95);
    filter: brightness(0.95);
  }
}

.slick-slide {
  margin: 0 10px;
}

/* box: elementos */

.box {
  width: 100%;
  height: 120px;
  position: relative;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
  transition: border-color ease .9s;
}

.box__programas{
  /*width: 160px;*/
  /*left: 120px;*/
  height: auto;
  position: relative;
  /*border: 1px solid #e8e8e8;*/
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 5px;
  transition: border-color ease .9s;
}

.section__programas__content--grid4{
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
}

.slick-list .box {
  width: 300px;
  height: 270px;
}

.box--featured {
  flex-direction: row;
}

.box--podcast {
  flex-direction: row;
}

.box--podcast a {
  font-weight: 400;
  cursor: pointer;
}

.box--podcast a:hover {
  text-decoration: underline;
}

.box__image {
  height: 100%;
  width: 39%;
  flex-shrink: 0;
  background-color: #e4e4e4;
  animation: bright 1s ease-in-out .3s 10;
}

.box__image > img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  filter: brightness(90%);
  transition: all ease .5s;
  object-position: top;
}

/* .box__image > img:hover {
  filter: brightness(100%);
  height: 106%;
} */

.box__program {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  /*height: calc(100% - 110px);*/
  overflow: hidden;
}

.box__program__caption{
  position: relative;
  top: -5%;
  width: 90%;
  margin-left: 5%;
  /*text-align: center;*/
  background-color: white;
  /*left: 7%;*/
  height: 75px;
  border-radius: 10px;
  border: solid 1px lightgray;
  box-shadow: cadetblue;
  box-shadow: -1px 10px 22px -10px rgba(154,165,184,0.6);
}

.caption__program__footer > div {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  padding: 7px 10px 0px 10;
}

.box--active.box .box__caption::before {
  content: 'En vivo';
  display: inline-block;
  width: 70px;
  position: absolute;
  z-index: 3;
  font-weight: bold;
  bottom: 10px;
  right: 14px;
  color: white;
  background: red;
  text-align: center;
  border-radius: 20px;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
  animation: spark .9s ease-in-out;
  animation-iteration-count: 10;
}

@keyframes spark {
  0%,
  100% {
    -webkit-filter: brightness(1);
    -ms-filter: brightness(1);
    -o-filter: brightness(1);
    filter: brightness(1);
  }

  50% {
    -webkit-filter: brightness(0.6);
    -ms-filter: brightness(0.6);
    -o-filter: brightness(0.6);
    filter: brightness(0.6);
  }
}

.box__program > img {
  width: 100%;
  object-fit: cover;
  /*height: 100%;*/
}

.box__wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  height: calc(100% - 180px);
  overflow: hidden;
  background-color: #e4e4e4;
  animation: bright 1s ease-in-out .3s 10;
}

.box__wrapper > img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  filter: brightness(90%);
  transition: all ease .7s;
}

.box__caption {
  height: 100px;
  padding: 10px;
  display: flex;
  position: relative;
  flex-direction: column;
}

.box__caption--featured {
  height: 100%;
  width: 100%;
}

.box__caption--featured > header {
  flex-grow: 1;
}

.note__content--zodiac .box {
  height: 300px;
}

.note__content--zodiac .box__caption {
  margin: 0;
}

.note__content--zodiac .box__caption .caption__title {
  text-transform: uppercase;
  font-weight: 400;
}

.zodiac__icon {
  width: 100%;
  height: 100px;
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  margin: 10px 0;
}

.acuario--icon {
  background-image: url("../images/zodiac/acuario.jpg");
}

.aries--icon {
  background-image: url("../images/zodiac/aries.jpg");
}

.cancer--icon {
  background-image: url("../images/zodiac/cancer.jpg");
}

.capricornio--icon {
  background-image: url("../images/zodiac/capricornio.jpg");
}

.escorpio--icon {
  background-image: url("../images/zodiac/escorpio.jpg");
}

.geminis--icon {
  background-image: url("../images/zodiac/geminis.jpg");
}

.leo--icon {
  background-image: url("../images/zodiac/leo.jpg");
}

.libra--icon {
  background-image: url("../images/zodiac/libra.jpg");
}

.piscis--icon {
  background-image: url("../images/zodiac/piscis.jpg");
}

.sagitario--icon {
  background-image: url("../images/zodiac/sagitario.jpg");
}

.tauro--icon {
  background-image: url("../images/zodiac/tauro.jpg");
}

.virgo--icon {
  background-image: url("../images/zodiac/virgo.jpg");
}

/* caption: elementos dentro del caption */

.caption__title {
  font-size: 14px;
  overflow: hidden !important;
  position: absolute;
  font-weight: 600;
  top: 27px;
  left: 10px;
  max-height: 43px;
  color: #333333;
  width: calc(100% - 20px);
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2!important;
  -webkit-box-orient: vertical;
}

.title__programacion {
  top:45px;
}

.caption__title--extended {
  line-height: 21px;
  margin-bottom: 5px;
}

.caption__title--small {
  -webkit-line-clamp: 3!important;
  line-height: 20px;
  max-height: 63px;
}

.caption__date {
  color: rgba(0, 0, 0, 0.6);
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.caption__date__text {
  font-size: 10px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-right: 10px;
  color: #A5AAAF;
}

.caption__date time {
  font-weight: 400;
}

.caption__category__container {
  display: flex;
  height: 12px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.caption__category {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  color: #A5AAAF;
}

.caption__category__color {
  width: 2px;
  height: 11px;
  background-color: #A5AAAF;
  border-radius: 3px;
  margin-right: 5px;
}

.gallery__caption__category__color {
  width: 2px;
  height: 16px;
  background-color: #A5AAAF;
  border-radius: 3px;
  margin-right: 5px;
}

.caption__footer,
.caption__footer > div {
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}

.footer {
  width: 100%;
  background-color: #414141;
  min-height: 100px;
  display: grid;
  padding-top: 20px;
  box-sizing: border-box;
  color: #ffffff;
  grid-gap: 20px;
}

.links__footer {
  display: flex;
  flex-direction: column;
  grid-gap: 4px;
  align-items: center;
  margin: 15px;
}

.links__footer :hover{
  text-decoration: underline;
}

.links__footer > a {
  font-weight: 400;
}

.footer__title {
  font-weight: 400;
  background-color: #2E2E2E;
  text-align: center;
  padding: 15px;
}

.mvs__logo--white {
  background-image: url("../images/mvs_white.png");
  width: 100px;
  height: 53px;
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: top left;
}

.gallery__icon {
  width: 10px;
  height: 10px;
  margin-right: 3px;
  background-image: url("../images/camera-alt-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
}

.audio__icon {
  width: 10px;
  height: 10px;
  margin-right: 3px;
  background-image: url("../images/headset-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
}

.clock__icon {
  width: 10px;
  height: 10px;
  margin-right: 3px;
  background-image: url("../images/clock-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
}

.videos__icon {
  width: 10px;
  height: 10px;
  margin-right: 3px;
  background-image: url("../images/play-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
}

.readed__icon {
  width: 10px;
  height: 10px;
  margin-right: 3px;
  /* background-image: url("../images/notread-check.png"); */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
}
.readed .readed__icon {
  background-image: url("../images/read-check.png");
}
.caption__icons {
  display: flex;
}

.intercambio__icon {
  height: 20px;
  margin-left: 5px;
  background-color: #323330;
  display: inline-block;
  background-size: 90%;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: -13px;
  bottom: -4px;
}

.intercambio__icon.--universal {
  background-color: transparent;
  background-image: url("../images/universal.png");
  width: 110px;
}

.intercambio__icon.--sillarota {
  background-image: url("../images/sillarota.png");
  background-color: transparent;
  width: 110px;
}

.intercambio__icon.--quadratin {
  background-image: url("../images/quadratin.png");
  background-color: transparent;
  width: 70px;
}

.pagination {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
}

.pagination .page-numbers {
  border: 1px solid rgba(0, 0, 0, 0.8);
  padding: 3px 5px;
  margin: 0 5px;
  border-radius: 4px;
  cursor: pointer;
}

.capital {
  text-transform: capitalize!important;
}

span.page-numbers.current {
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.8);
  color: #e4e4e4;
}

.anti__footer {
  display: flex;
  flex-direction: column;
  padding: 30px 10% 0px;
  border-top: 1px solid #e8e8e8;
}

.anti__footer__title {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  text-align: center;
}

.anti__footer__title--bold {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  font-weight: 600;
  text-align: center;
}

.anti__footer__container {
  display: flex;
  flex-direction: column;
  padding-top: 0px;
  align-items: center;
  justify-content: center;
}

.anti__footer__section {
    margin-bottom: 0px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.anti__footer__divided {
  display: flex;
  padding-top: 5px;
  margin-bottom: 20px;
  /*justify-content: space-between;*/
  justify-content: center;
  max-width: 430px;
  width: 100%;
}

.appstore__logo {
  width: 177px; /* 180px*/
  height: 60px;
  background-image: url('../images/appstore.png');
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center; /*left top*/
}



.googleplay__logo {
  width: 180px;
  height: 60px;
  background-image: url('../images/googleplay.png');
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
}

.anti__footer__social {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  max-width: 400px;
  width: 100%;
}

.mvs_white {
  width: 150px;
  height: 70px;
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: left top;
  background-image: url('../images/mvsnoticias_logo_blanco.png');
}

.anti__logo {
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.facebook__logo {
  background-image: url('../images/afacebook.png');
}

.twitter__logo {
  background-image: url('../images/atwitter.png');
}

.insta__logo {
  background-image: url('../images/ainsta.png');
}

.youtube__logo {
  background-image: url('../images/ayoutube.png');
}

.daily__logo {
  background-image: url('../images/adaily.png');
}

.whatsapp__logo {
  background-image: url('../images/awhatsapp.png');
}

.spotify__logo {
  background-image: url('../images/aspotify.png');
}

.pre__footer {
  background-color: #414141;
  padding: 40px 5%;
  display: none;
  color: #ffffff;
  flex-direction: column;
  position: relative;
}

.pre__footer__section {
  width: 100%;
  margin-bottom: 20px;
}

.pre__footer__section.row--section {
  flex-direction: row;
  display: flex;
  justify-content: space-between;
}

.pre__footer__nav {
  display: flex;
  flex-direction: column;
}

.pre__footer__nav > a {
  font-weight: 400;
  font-size: 18px;
  padding: 5px;
}

.waze__logo {
  width: 120px;
  height: 30px;
  background-image: url('../images/waze.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.alertamber__logo {
  width: 88px;
  background-image: url('../images/alertamber.png');
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.mvs__powered__logo {
  background-image: url('../images/mvs-radio.png');
  width: 90px;
  height: 57px;
  display: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.centered--content {
  display: flex;
  align-items: center;
}

.footer__powered {
  background-color: #2E2E2E;
  display: flex;
  padding: 40px 5%;
  justify-content: space-between;
  flex-direction: row;
}

.exa {
  width: 70px; /* 110px*/
  background-image: url('../images/exa.png');
  height: 57px; /*57px*/
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.lamejor {
  width: 70px;
  background-image: url('../images/lamejor.png');
  height: 57px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.globo {
  width: 70px;
  background-image: url('../images/globo.png');
  height: 57px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.rey {
  width: 45px;
  background-image: url('../images/rey.png');
  height: 57px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
@media only screen and (min-width: 600px) {
  .gallery__caption__title__link {
    font-size: 23px;
    line-height: 28px;
    max-height: 82px;
  }
  .box__overlay {
    display: none;
  }
  .section__content--grid4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .box__programas{
    width: 220px;
  }

  .section__programas__content--grid4{
    grid-template-columns: repeat(3, 1fr);
  }

  .slick-slide{
    height: 85%;
  }

  .footer {
    grid-gap: 20px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
  }

  .links__footer {
    display: flex;
    justify-self: end;
    justify-content: flex-end;
  }

  .links__footer > a {
    padding-left: 20px;
  }

  .footer__title {
    grid-column-start: 1;
    grid-column-end: 3;
    text-align: center;
    background-color: #2E2E2E;
    line-height: 62px;
  }

  .home__section--many {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .overlay__body {
    justify-content: unset;
  }

}
@media only screen and (min-width: 700px) {
  .home__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 600px;
  }

  .gallery__image__image{
    max-width: 50%;
  }

  .gallery__caption__title__link {
    font-size: 24px;
    line-height: 32px;
    max-height: 162px;
  }

  .home__section--first {
    grid-row-start: 2;
  }

  .home__section--second {
    grid-row-start: 2;

  }

  .home__gallery {
    height: auto;
    grid-column-end: 3;
    grid-column-start: 1;
  }

  .gallery__image {
    display: flex;
  }

  .gallery__caption {
    height: 270px;
    width: 50%;
  }

  .gallery__caption__subtitle {
    font-size: 20px;
    line-height: 29px;
  }
}
@media only screen and (min-width: 800px) {

  .gallery__caption__title__link {
    font-size: 28px;
    line-height: 32px;
  }

  .section__content--grid {
    grid-template-columns: 1fr;
  }

  .pre__footer{
    display: flex;
  }

  .pre__footer__section.row--section {
    width: 230px;
  }

  .footer__powered {
    flex-direction: row;
    padding: 20px 20%;

  }

  .waze__logo {
    width: 100px;
    height: 20px;
  }

  .alertamber__logo {
    width: 68px;
    height: 26px;
  }

  .pre__footer {
    flex-direction: row;
    padding: 40px 15%;
  }

  .anti__footer__container {
    flex-direction: row;
  }

  .overlay__sections {
    display: flex;
    flex-wrap: wrap;
  }

  .overlay__section {
    flex-grow: 1;
  }

  .overlay.prepared {
    padding: 40px 20%;
  }

  .search__result__list__item {
    margin-bottom: 20px;
  }

  .overlay__tendencias {
    width: 100%;
  }

  .mvs__powered__logo{
    display: block;
  }

}
@media only screen and (min-width: 900px) {
  .gallery__caption__title__link {
    font-size: 32px;
    line-height: 35px;
    max-height: 140px;
  }
}
@media only screen and (min-width: 1000px) {
  .home__main,
  .home__section {
    max-width: 900px;
  }

  .menuBar__child{
    max-width: 900px;
    padding: 0 20px;
    padding-right: 45px;
  }

  .aligncenter {
    width: 100%;
    height: auto !important;
  }

  .menu__overlay__section {
    display: none;
  }
  .links__footer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 1200px) {
  .gallery__caption__title__link {
    font-size: 32px;
    line-height: 35px;
    max-height: 108px;
  }
  .home__main,
  .home__section {
    max-width: 100%;
  }

  .menuBar__child{
    max-width: 100%;
    padding: 0 20px;
  }

  .gallery__image {
    display: grid;
  }

  .gallery__caption {
    height: 215px;
    width: 100%;
  }

  .gallery__image__image {
    height: 370px;
    max-width: 100%;
  }

  .home__section--second {
    grid-row-start: inherit;
  }

  .section__content--grid4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .section__programas__content--grid4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .box__programas{
    width: 290px;
  }

  .overlay__results {
    margin-bottom: 80px;
  }

  .home__main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-rows: inherit;
  }

  .home__main > .home__section {
    margin: 0 auto;
  }

  .home__gallery {
    grid-column-start: 2;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .home__section--first {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .home__section--many {
    grid-template-columns: repeat(4, 1fr);
  }

}
@media only screen and (min-width: 1400px) {
  .home__main,
  .home__section {
    max-width: 1300px;
  }

  .menuBar__child{
    max-width: 1300px;
  }

}
@media only screen and (min-width: 1600px) {
  .home__main,
  .home__section {
    max-width: 1500px;
  }

  .menuBar__child{
    max-width: 1500px;
  }

  .gallery__image__image{
    height: 360px;
  }
  .gallery__caption {
    height: 230px;
  }
  .gallery__caption__title__link {
    font-size: 35px;
    line-height: 39px;
    max-height: 118px;
  }
}
