/*
Software Developer: Roberto Bartolo
Graphic Designer: Daissy Perez
*/

:root {
  --primary-color: #1D4E89;
  --light-color: #47b2e4;
  --ligth-cards-borders: #c5daf2;
  --white-color: #ffffff;
  --dark-color: #212121;

  --fs11: 11px;
  --fs14: 14px;
  --fs22: 22px;
  --fw600: 600;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

/* CARGA ANIMACION */
#contenedor_carga{
  background-color: var(--white-color);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 10000;
}

#contenedor_carga:hover{
transition: all .4s ease;
}

#carga img{
width: 100%;
opacity: 0.7;
}

#carga {
  height: 100px;
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

section {
  padding: 100px 100px; 
}

.home {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.home:before {
  z-index: 777;
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.home .content {
  z-index: 888;
  color: var(--white-color);
  width: 100%;
  margin-top: 50px;
}

.home .content h1 {
  font-size: 3em;
  font-weight: 100;
}

.home .content span {
  font-size: 4em;
  font-weight: var(--fw600);
}

.home .content a {
  color: var(--white-color);
  margin-top: 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
}

.home .media-icons {
  z-index: 888;
  position: absolute;
  right: 30px;
  display: flex;
  flex-direction: column;
  transition: 0.5s ease;
}

.home .media-icons a {
  color: white;
  font-size: 1.6em;
  transition: 0.3s ease;
  text-decoration: none;
}

.home .media-icons a:not(:last-child) {
  margin-bottom: 20px;
}

.home .media-icons a:hover {
  transform: scale(1.3);
}

.home video {
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 395px) {
  .home video 
  {        
      aspect-ratio: 16/9;
  }

  .home:before {
      aspect-ratio: 16/9;
  }
}

@media (max-width: 1000px) {

  section {
      padding: 100px 20px
  }

  .home .media-icons {
      right: 15px;
  }
}