.videos {
  width: 100%;
  background: radial-gradient(#FCFCF8, #fcd9d6);
}

.fadeIn {
  animation: fadeIn 1.5s ease-in-out;
}

/**
 * Galeria de video
 */
.galeria-video {
  position: relative;
  z-index: 200;

  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 40px 0;
}

.galeria-video__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  margin-bottom: 26px;

  list-style: none;
  cursor: pointer;
  color: #8A1344;
  letter-spacing: 1px;

  opacity: 0.7;
  transition: opacity 0.5s ease-in-out;
}

.galeria-video__item .endereco {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 8px;

  font-size: 14px;
  line-height: 20px;
  font-weight: normal;

  color: #575756;
}

.galeria-video__item .redes-sociais {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  margin-top: 6px;
}

.galeria-video__item .redes-sociais a {
  display: flex;
  align-items: center;
  justify-content: center;

  color: #575756;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 1px;
}

.galeria-video__item .redes-sociais a svg {
  margin-right: 6px;
}

.galeria-video__item .ver-video {
  position: relative;
  font-size: 12px;
  line-height: 20px;

  margin-top: 12px;
}

.galeria-video__item .ver-video svg {
  position: absolute;
  top: 50%;
  right: -14px;
  width: 7px;
  height: 12px;

  transform: translate(0, -50%);
  animation: bounce-right 2s ease-in-out infinite;
}

iframe {
  margin: 12px 0;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.4;

  animation: shimmer-background 6s ease-in-out infinite;
}

.background svg {
  width: auto;
}

.videos .navigation-menu .back-button {
  width: 100%;
}

@media screen and (max-width: 450px) {
  .videos {
    justify-content: flex-start;
    height: auto;
  }

  .galeria-video {
    position: relative;
    display: flex;
    flex-direction: column;

    margin-bottom: 20px;
  }

  .galeria-video__item {
    margin-bottom: 32px;
  }

  iframe {
    width: 100%;
    /*margin-bottom: 60px;*/
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
