/*

Paleta:

#E33F22 naranja intenso - íconos, botones y pie
#FEE9D1 naranja claro - fondo tarjeta de color
#F1F1F1 gris claro - fondo sección intercalado
#505050 gris oscuro - subtítulo tarjetas

*/

@import url("https://fonts.googleapis.com/css?family=Poppins:300,400");

body {
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: normal;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  height: 100%;
}

/* 5 COLS */
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}

/*---------------------------------------
  Tipografía
-----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: bold;
  letter-spacing: 0px;
}

h1 {
  color: #ffffff; /* Título sitio */
  font-size: 45px;
  line-height: normal;
}

h2 {
  color: #505050; /* Título sección */
  font-size: 35px;
  line-height: 52px;
  margin-top: 0px;
}

h3 {
  color: #282828; /* Título 3, no se usa */
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

h4 {
  color: #000; /* Título tarjeta */
  font-size: 20px;
}

p {
  color: #808080; /* texto general */
  font-size: 16px;
  font-weight: normal;
  line-height: 25px;
  letter-spacing: 0.2px;
}

.bg-grey {
  background: #fee9d1 !important; /* fondo tarjeta color */
}

.white-color {
  color: #f0f0f0;
}

/*---------------------------------------
  Botones
-----------------------------------------*/

.section-btn {
  background: #e33f22;
  border: none;
  border-radius: 50px;
  color: #f0f0f0;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1.5px;
  padding: 18px 32px;
  margin-top: 42px;
  text-transform: uppercase;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.section-btn:focus,
.section-btn:hover {
  background: #ffffff;
  color: #000000;
}

/*---------------------------------------
  General               
-----------------------------------------*/

html {
  -webkit-font-smoothing: antialiased;
}

/*
a {
  color: #757557;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none !important;
}

a:hover, a:active, a:focus {
  color: #000000;
  outline: none;
}
*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.parallax-section {
  padding: 20px;
  background-attachment: fixed !important;
  background-size: cover !important;
}

.section-title {
  margin: 0;
  padding-bottom: 4px; /* 32px */
}

.section-title h4 {
  margin-top: 32px;
}

#biografia,
#docencia,
#work,
#work2,
#ninez,
#contact,
footer {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

#service {
  background: #f1f1f1; /* fondo 1 */
  text-align: center;
}

#docencia,
#ninez {
  background: #f1f1f1; /* fondo 1 */
}

#player-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.7);
}

#video-player {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

#video-player iframe {
  width: 100%;
  height: 80vh;
}

#audio-player {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

#audio-player iframe {
  width: 100%;
  height: 25vh;
}

#video-player-close,
#audio-player-close {
  display: none;
  position: absolute;
  right: 10px;
  top: -40px;
  color: white;
  z-index: 999;
  font-size: 2.5em;
}

.tema-video,
.tema-audio {
  cursor: pointer;
}

.album-title {
  margin-bottom: 18px;
}

/*---------------------------------------
  Pre loader              
-----------------------------------------*/

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 #ffffff; /* fondo blanco */
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 65px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #454545;
  border-top-color: #ffffff;
  animation: spinner 0.9s linear infinite;
}

@-webkit-@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/*---------------------------------------
  Header video
----------------------------------------*/

.header-section {
  overflow: hidden;
}

.video-header {
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  /*height: auto;
  max-height:400px;*/
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
  transition: 1s opacity;
}

.portada-video-container {
  height: 600px;
}

.video-parallax {
  -webkit-transition-position: absolute;
  position: absolute;
}

.header-container {
  margin-top: -100px;
}

/*---------------------------------------
  Home
-----------------------------------------*/

#home {
  /*background: url('../images/nf-portada.jpg') 50% 0 repeat-y fixed;*/
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100vh;
  position: relative;
  text-align: right;
}

/*---------------------------------------
  Tarjetas
-----------------------------------------*/

.service-thumb {
  background: #ffffff;
  border-radius: 5px;
  padding: 32px 18px;
  /* cursor: pointer;*/
  position: relative;
  top: 0;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.card-link {
  text-decoration: none;
}

/*
.service-thumb:hover {
  background: #fe5943
  top: -5px;
}

.service-thumb:hover .fa,
.service-thumb:hover h4 {
  color: #fff;
}

.service-thumb:hover p {
  color: #ddd;
}
*/

.service-thumb:hover {
  top: -5px;
}

.service-thumb h4 {
  padding-bottom: 5px;
}

.service-thumb .fa {
  color: #e33f22; /* color 1 */
  font-size: 62px;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 22px;
}

.read-more {
  display: inline-block;
  padding: 10px;
  border-radius: 30px;
  background: #e33f22; /* color 1 */
  color: white;
}

/*
.bg-grey .fa {
  color: #ffffff;
}
*/

/*---------------------------------------
  Sobre mí
-----------------------------------------*/

#biografia {
  padding-top: 100px;
}

.about-image-thumb img {
  border-radius: 5px;
  margin-bottom: 22px;
}

.about-image-thumb .social-icon li a {
  background: #f0f0f0;
}

.about-thumb {
  padding: 32px 12px;
}

.about-thumb p {
  padding: 2px 0;
}

/*---------------------------------------
  Niñez
-----------------------------------------*/

/*---------------------------------------
  Trabajos
-----------------------------------------*/

.work-thumb {
  margin: 22px 0 12px 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  text-align: left;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.work-thumb h2 {
  font-size: 25px;
}

.work-thumb-overlay {
  position: absolute;
  background: #e33f22; /* color 1 */
  border-radius: 5px;
  /* cursor: crosshair; */
  opacity: 0;
  width: 100%;
  height: 100%;
  padding: 82px 42px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.work-thumb:hover .work-thumb-overlay {
  opacity: 1;
}

/*---------------------------------------
  Contacto
-----------------------------------------*/

.contact-info .fa {
  padding-right: 5px;
}

#contact .form-control {
  border: none;
  border-bottom: 2px solid #f0f0f0;
  border-radius: 0px;
  box-shadow: none;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

#contact .form-control:focus {
  border-bottom-color: #999999;
}

#contact input {
  height: 55px;
}

#contact button#submit {
  background: #2b2b2b;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  height: 50px;
  margin-top: 24px;
}

#contact button#submit:hover {
  background: #e33f22; /* color 1 */
  color: #ffffff;
}

/*---------------------------------------
  Footer
-----------------------------------------*/

footer {
  background: #e33f22; /* color 1 */
  text-align: center;
  padding: 120px 0;
}

footer p {
  padding-bottom: 16px;
}

/*---------------------------------------
  Redes
-----------------------------------------*/

.social-icon {
  position: relative;
  padding: 0;
  margin: 0;
  text-align: center;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  background: #ffffff;
  border-radius: 100%;
  color: #454545;
  cursor: pointer;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  top: 0;
  margin: 0px 6px 10px 6px;
}

.social-icon li a:hover {
  background: #000000;
  color: #ffffff;
  transform: scale(1.1);
  top: -5px;
}

/*---------------------------------------
  Responsive
-----------------------------------------*/

@media (max-width: 980px) {
  #home {
    height: 55vh;
  }

  #video-player iframe {
    height: 80vh;
  }

  #audio-player iframe {
    height: 25vh;
  }

  .service-thumb {
    margin-top: 12px;
    margin-bottom: 22px;
  }

  .contact-info {
    margin-top: 22px;
  }
}

@media (max-width: 768px) {
  #home {
    height: 85vh;
  }

  #video-player iframe {
    height: 70vh;
  }

  #audio-player iframe {
    height: 24vh;
  }
}

@media (max-width: 580px) {
  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 23px;
  }

  #home {
    height: 95vh;
  }

  #video-player iframe {
    height: 50vh;
  }

  #audio-player iframe {
    height: 28vh;
  }

  .contact-info {
    margin-top: 42px;
  }
}

@media (max-width: 320px) {
  #home {
    height: 125vh;
  }

  #video-player iframe {
    height: 30vh;
  }

  #audio-player iframe {
    height: 30vh;
  }
}

.visible-mobile {
  display: none;
}

.visible-desktop {
  display: inline;
}

@media only screen and (max-width: 640px) {
  .visible-mobile {
    display: inline;
  }
  .visible-desktop {
    display: none;
  }
}
