/*declara una variable para usar en alto del header*/
:root {
  --header-height: 60px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

header {
  width: 100%;
  position: relative;
  .redes {
    position: absolute;
    top: 34px;
    left: 40px;
    a {
      &.col-05 {
        flex: 0 0 auto;
        width: 3.33333333%;
      }
    }
  }
}

.img-whats {
  max-height: 180px;
}
.video-index {
  position: inherit;
  z-index: 1;
}
.img-nosotros {
  position: relative;
  &::before {
    content: "";
    transform: translate(10%, -40%);
    width: 88%;
    height: 100%;
    background-image: url(assets/Nosotros_3.gif);
    background-size: contain;
    background-position: center;
    display: block;
    position: absolute;
    background-repeat: no-repeat;
  }
}
.img-servicios {
  position: relative;
  &::before {
    content: "";
    transform: translate(10%, 0%);
    width: 20%;
    height: 50%;
    background-image: url(assets/Servicios_5.gif);
    background-size: contain;
    background-position: center;
    display: block;
    position: absolute;
    background-repeat: no-repeat;
  }
}

@media (max-width: 425px) {
  header {
    .redes {
      top: 5px;
      left: 10px;
    }
  }
  .img-whats {
    max-height: 100px;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  header {
    .redes {
      top: 20px;
      left: 20px;
    }
  }
  .img-whats {
    max-height: 130px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  header {
    .redes {
      top: 25px;
      left: 25px;
    }
  }
  .img-whats {
    max-height: 150px;
  }
}

.backgroundVideo {
  position: relative;
  div {
    background-image: url(assets/VideoSouth.jpg);
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 1;
    background-size: cover;
  }
}
