/*
EJEMPLO RETINA:
@include retina('../img/menu/barra_menu_logo.png', 2, 808px 187px, top right no-repeat);
*/
/* RM */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
ol,
p,
ul {
  margin: 0;
  padding: 0;
}

li {
  display: block;
  vertical-align: top;
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: .3s;
  transition: .3s;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

/* FIN RM */
/* VARIABLES */
/* MIXINS */
/* ESTILOS GENERALES */
.oculto {
  display: none;
}

.max-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.clearfix, section#home {
  overflow: auto;
  zoom: 1;
}

.titulos {
  background: -webkit-linear-gradient(#ffffff, #c6c5c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* COMIENZA SCSS */
body {
  font-family: "Fjalla One", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: white;
  /*
   * Set a counter and get the length of the image path.
   */
  /*
   * Loop ver the image path and figure out the
   * position of the dot where the extension begins.
   */
  /*
   * If we were able to figure out where the extension is,
   * slice the path into a base and an extension. Use that to
   * calculate urls for different density environments. Set
   * values for different environments.
   */
  /*
     * Set a base background for 1x environments.
     */
  background: url("../img/1_home/fondoHome.jpg") top center repeat;
  background-size: 1920px 1500px;
  /*
     * Create an @2x-ish media query.
     */
  /*
     * Create media queries for all environments that the user has
     * provided images for.
     */
  /*
     * If anything went wrong trying to separate the file from its
     * extension, set a background value without doing anything to it.
     */
  background-color: #161410;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  body {
    background: url("../img/1_home/fondoHome@2x.jpg") top center repeat;
    background-size: 1920px 1500px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    background: url("../img/1_home/fondoHome@2x.jpg") top center repeat;
    background-size: 1920px 1500px;
  }
}

div.boton-wrap-menu button,
.boton-wrap button {
  background: none;
  border: none;
  cursor: pointer;
}

/* OWL SLIDER */
.owl-theme .owl-dots {
  padding-top: 20px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
  width: 40px;
  height: 2px;
  margin: 0;
  background: #e7e7e7;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /*border-radius: 30px;*/
}

@media screen and (max-width: 710px) {
  .owl-theme .owl-dots .owl-dot span {
    width: 25px;
  }
}

.owl-theme .owl-dots .owl-dot.active span {
  background: #2b292a;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.owl-theme .owl-dots .owl-dot:hover span {
  background: #b2b2b2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

div.boton-wrap {
  position: relative;
  z-index: 1000;
  width: 100%;
  margin-top: -18px;
}

div.boton-wrap button {
  position: absolute;
}

div.boton-wrap button.izq {
  left: 30px;
}

div.boton-wrap button.der {
  right: 30px;
}

.galeria-g .item {
  opacity: 0.4;
  -webkit-transition: .4s ease all;
  transition: .4s ease all;
  margin: 0 20px;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.galeria-g .item img {
  max-height: 418px;
}

@media (max-width: 1000px) {
  .galeria-g .item {
    margin: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

.galeria-g .active .item {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.galeria-g .owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

/* MENU */
.c-menu {
  position: fixed;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  overflow: auto;
}

.c-menu:before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

div#o-wrapper nav button.cerrar-menu {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

div#o-wrapper nav button.cerrar-menu:hover {
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  transform: rotate(90deg);
}

div#o-wrapper nav ul.c-menu__items {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

div#o-wrapper nav ul.c-menu__items > li {
  text-align: center;
  border-bottom: 2px solid #2b292a;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

div#o-wrapper nav ul.c-menu__items > li:last-child {
  border-bottom: none;
}

div#o-wrapper nav ul.c-menu__items > li > a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 14px 0;
  width: 100%;
  display: block;
  font-size: 22px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  color: white;
}

@media screen and (max-width: 880px) {
  div#o-wrapper nav ul.c-menu__items > li > a {
    padding: 12px 30px;
  }
}

div#o-wrapper nav ul.c-menu__items ul.redes {
  padding-top: 30px;
}

@media screen and (max-width: 880px) {
  div#o-wrapper nav ul.c-menu__items ul.redes {
    padding-top: 30px;
  }
}

div#o-wrapper nav ul.c-menu__items ul.redes li {
  display: inline-block;
  margin: 0 15px;
}

div#o-wrapper nav ul.c-menu__items ul.redes li:first-child {
  margin-left: 0;
}

div#o-wrapper nav ul.c-menu__items ul.redes li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 880px) {
  div#o-wrapper nav ul.c-menu__items ul.redes li {
    margin-bottom: 12px;
  }
}

div#o-wrapper nav ul.c-menu__items ul.redes li:last-child {
  margin-bottom: 0;
}

/* HEADER */
header {
  top: 0;
  /* HEADER */
}

header h1 {
  margin-left: 20px;
  top: 0;
}

header div.boton-wrap-menu {
  position: fixed;
  right: 90px;
  top: 50px;
  z-index: 10000;
}

@media screen and (max-width: 720px) {
  header div.boton-wrap-menu {
    right: 40px;
  }
}

/* HOME */
section#home {
  top: 0;
}

section#home aside {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 4px;
  margin-left: 38px;
  vertical-align: middle;
  position: absolute;
  left: -100px;
  top: 390px;
  /* IE 9 */
  -webkit-transform: rotate(270deg);
  /* Chrome, Safari, Opera */
  transform: rotate(270deg);
}

@media screen and (max-width: 880px) {
  section#home aside {
    display: none;
  }
}

section#home aside img {
  vertical-align: middle;
  margin-right: 10px;
}

section#home div.imagenes {
  margin-top: 35px;
}

section#home div.imagenes img {
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 720px) {
  section#home div.imagenes img {
    margin-top: 100px;
  }
}

@media screen and (max-width: 720px) {
  section#home div.imagenes img.img1 {
    max-width: 70%;
  }
}

section#home div.imagenes img.img2 {
  margin-top: -97px;
}

@media screen and (max-width: 720px) {
  section#home div.imagenes img.img2 {
    margin-top: -40px;
  }
}

section#home div.imagenes img.img3 {
  margin-top: -67px;
}

@media screen and (max-width: 720px) {
  section#home div.imagenes img.img3 {
    margin-top: -20px;
  }
}

section#home a.flecha-abajo {
  float: right;
  margin-right: 80px;
  margin-top: 220px;
}

@media screen and (max-width: 720px) {
  section#home a.flecha-abajo {
    margin-top: 100px;
    margin-right: 40px;
  }
}

section#dj-edmond {
  text-align: right;
  margin-top: 270px;
}

section#dj-edmond div.izq {
  text-align: left;
  position: absolute;
  z-index: 100;
  max-width: 440px;
  margin-left: 130px;
}

@media screen and (max-width: 880px) {
  section#dj-edmond div.izq {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 85%;
  }
}

section#dj-edmond div.izq h2 {
  font-size: 47px;
  line-height: 47px;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 5px;
}

section#dj-edmond div.izq p {
  font-size: 19px;
  line-height: 36px;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

section#dj-edmond div.der {
  margin-top: 76px;
  text-align: left;
  display: inline-block;
}

@media screen and (max-width: 880px) {
  section#dj-edmond div.der {
    display: block;
    margin: 0 auto;
    max-width: 85%;
    margin-top: 80px;
  }
}

section#dj-edmond div.der div#slider-edmond {
  max-width: 730px;
}

@media screen and (max-width: 1170px) {
  section#dj-edmond div.der div#slider-edmond {
    max-width: 600px;
  }
}

@media screen and (max-width: 1030px) {
  section#dj-edmond div.der div#slider-edmond {
    max-width: 418px;
  }
}

@media screen and (max-width: 880px) {
  section#dj-edmond div.der div#slider-edmond {
    margin: 0 auto;
  }
}

section#servicios {
  margin-top: -315px;
  padding-top: 570px;
  /*
   * Set a counter and get the length of the image path.
   */
  /*
   * Loop ver the image path and figure out the
   * position of the dot where the extension begins.
   */
  /*
   * If we were able to figure out where the extension is,
   * slice the path into a base and an extension. Use that to
   * calculate urls for different density environments. Set
   * values for different environments.
   */
  /*
     * Set a base background for 1x environments.
     */
  background: url("../img/3_experiencia/fondoExperienciaServicios.jpg") top center no-repeat;
  background-size: 1920px 2000px;
  /*
     * Create an @2x-ish media query.
     */
  /*
     * Create media queries for all environments that the user has
     * provided images for.
     */
  /*
     * If anything went wrong trying to separate the file from its
     * extension, set a background value without doing anything to it.
     */
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  section#servicios {
    background: url("../img/3_experiencia/fondoExperienciaServicios@2x.jpg") top center no-repeat;
    background-size: 1920px 2000px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  section#servicios {
    background: url("../img/3_experiencia/fondoExperienciaServicios@2x.jpg") top center no-repeat;
    background-size: 1920px 2000px;
  }
}

section#servicios h3 {
  font-size: 43px;
  line-height: 57px;
  letter-spacing: 5px;
  max-width: 85%;
  margin: 0 auto;
  text-transform: uppercase;
  text-align: center;
}

section#servicios p {
  font-size: 26px;
  line-height: 41px;
  letter-spacing: 1px;
  max-width: 85%;
  margin: 0 auto;
  width: 730px;
  text-align: center;
  margin-bottom: 95px;
}

section#servicios p.serv {
  font-size: 22px;
  margin-bottom: 75px;
}

section#servicios div.separador {
  height: 6px;
  width: 45px;
  margin: 55px auto 45px auto;
  background: white;
}

section#servicios img.flechita {
  margin: 0 auto;
  display: block;
}

section#servicios ul.servicios {
  margin-top: 60px;
  text-align: center;
}

section#servicios ul.servicios li {
  display: inline-block;
  text-align: center;
  width: 33.3%;
  margin-bottom: 65px;
}

@media screen and (max-width: 750px) {
  section#servicios ul.servicios li {
    width: 50%;
  }
}

@media screen and (max-width: 550px) {
  section#servicios ul.servicios li {
    width: 100%;
  }
}

section#servicios ul.servicios li h4 {
  margin-top: -55px;
  font-size: 21px;
  line-height: 20px;
  text-transform: uppercase;
}

div#fondo-galvid {
  margin-top: -10px;
  /*
   * Set a counter and get the length of the image path.
   */
  /*
   * Loop ver the image path and figure out the
   * position of the dot where the extension begins.
   */
  /*
   * If we were able to figure out where the extension is,
   * slice the path into a base and an extension. Use that to
   * calculate urls for different density environments. Set
   * values for different environments.
   */
  /*
     * Set a base background for 1x environments.
     */
  background: url("../img/4_galeria/FondoGaleria.jpg") top center no-repeat;
  background-size: 1920px 1625px;
  /*
     * Create an @2x-ish media query.
     */
  /*
     * Create media queries for all environments that the user has
     * provided images for.
     */
  /*
     * If anything went wrong trying to separate the file from its
     * extension, set a background value without doing anything to it.
     */
  min-height: 1625px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  div#fondo-galvid {
    background: url("../img/4_galeria/FondoGaleria@2x.jpg") top center no-repeat;
    background-size: 1920px 1625px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  div#fondo-galvid {
    background: url("../img/4_galeria/FondoGaleria@2x.jpg") top center no-repeat;
    background-size: 1920px 1625px;
  }
}

/* SLIDERS GALS */
@media screen and (max-width: 600px) {
  #wslider-galeria .owl-theme .owl-dots .owl-dot span {
    width: 20px;
  }
}

@media screen and (max-width: 500px) {
  #wslider-galeria .owl-theme .owl-dots .owl-dot span {
    width: 10px;
  }
}

#wslider-galeria div#slider-galeria {
  margin-top: 240px;
}

#wslider-galeria div#slider-galeria button {
  margin-top: 220px;
}

#wslider-galeria div#slider-galeria div.slider-wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}

@media screen and (max-width: 1130px) {
  #wslider-galeria div#slider-galeria div.flechas-desktop {
    display: none;
  }
}

#wslider-galeria div#slider-galeria div.flechas-resp {
  display: none;
}

@media screen and (max-width: 1130px) {
  #wslider-galeria div#slider-galeria div.flechas-resp {
    display: block;
  }
  #wslider-galeria div#slider-galeria div.flechas-resp button {
    margin-top: -15px;
  }
}

section#galeria {
  padding-top: 160px;
}

section#galeria h2 {
  font-size: 120px;
  line-height: 150px;
  text-transform: uppercase;
  letter-spacing: 15px;
  margin: 0 auto;
  display: block;
  text-align: center;
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 650px) {
  section#galeria h2 {
    font-size: 70px;
    line-height: 115px;
    letter-spacing: 5px;
  }
}

section#galeria #slider-galeria {
  margin-top: -50px;
}

section#videos {
  margin-top: 260px;
}

section#videos h2 {
  font-size: 120px;
  line-height: 150px;
  text-transform: uppercase;
  margin: 0 auto;
  display: block;
  letter-spacing: 15px;
  text-align: center;
  position: relative;
  z-index: 1000;
}

@media screen and (max-width: 650px) {
  section#videos h2 {
    font-size: 70px;
    line-height: 115px;
    letter-spacing: 5px;
  }
}

section#videos #slider-videos {
  margin-top: 0;
}

section#videos #slider-videos iframe {
  width: 100%;
  height: 418px;
}

div#fondo-testifuego {
  margin-top: -10px;
  /*
   * Set a counter and get the length of the image path.
   */
  /*
   * Loop ver the image path and figure out the
   * position of the dot where the extension begins.
   */
  /*
   * If we were able to figure out where the extension is,
   * slice the path into a base and an extension. Use that to
   * calculate urls for different density environments. Set
   * values for different environments.
   */
  /*
     * Set a base background for 1x environments.
     */
  background: url("../img/6_testimonios/FondoTestimonios.jpg") top center no-repeat;
  background-size: 1920px 1625px;
  /*
     * Create an @2x-ish media query.
     */
  /*
     * Create media queries for all environments that the user has
     * provided images for.
     */
  /*
     * If anything went wrong trying to separate the file from its
     * extension, set a background value without doing anything to it.
     */
  min-height: 1625px;
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  div#fondo-testifuego {
    background: url("../img/6_testimonios/FondoTestimonios@2x.jpg") top center no-repeat;
    background-size: 1920px 1625px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  div#fondo-testifuego {
    background: url("../img/6_testimonios/FondoTestimonios@2x.jpg") top center no-repeat;
    background-size: 1920px 1625px;
  }
}

section#testimonios h2 {
  font-size: 95px;
  line-height: 120px;
  text-transform: uppercase;
  margin: 0 auto;
  display: block;
  letter-spacing: 10px;
  text-align: center;
}

section#fuego {
  padding-top: 230px;
  text-align: center;
}

@media screen and (max-width: 650px) {
  section#fuego {
    padding-top: 100px;
  }
}

section#fuego img.collage {
  position: relative;
  z-index: 50;
}

@media screen and (max-width: 720px) {
  section#fuego img.collage {
    width: 85%;
  }
}

section#fuego img.hashtag {
  position: relative;
  z-index: 10;
  margin-top: -75px;
}

@media screen and (max-width: 720px) {
  section#fuego img.hashtag {
    margin-top: 0;
    max-width: 85%;
  }
}

section#contacto {
  margin-top: -485px;
  /*
   * Set a counter and get the length of the image path.
   */
  /*
   * Loop ver the image path and figure out the
   * position of the dot where the extension begins.
   */
  /*
   * If we were able to figure out where the extension is,
   * slice the path into a base and an extension. Use that to
   * calculate urls for different density environments. Set
   * values for different environments.
   */
  /*
     * Set a base background for 1x environments.
     */
  background: url("../img/8_contacto/ContactoVinil_ConInfo.png") top center no-repeat;
  background-size: 1563px 1563px;
  /*
     * Create an @2x-ish media query.
     */
  /*
     * Create media queries for all environments that the user has
     * provided images for.
     */
  /*
     * If anything went wrong trying to separate the file from its
     * extension, set a background value without doing anything to it.
     */
  min-height: 1360px;
}

@media screen and (max-width: 950px) {
  section#contacto {
    margin-top: -585px;
  }
}

@media screen and (max-width: 770px) {
  section#contacto {
    margin-top: -750px;
  }
}

@media screen and (max-width: 550px) {
  section#contacto {
    margin-top: -1000px;
  }
}

@media all and (-webkit-min-device-pixel-ratio: 1.5), all and (-o-min-device-pixel-ratio: 3 / 2), all and (min--moz-device-pixel-ratio: 1.5), all and (min-device-pixel-ratio: 1.5) {
  section#contacto {
    background: url("../img/8_contacto/ContactoVinil_ConInfo@2x.png") top center no-repeat;
    background-size: 1563px 1563px;
  }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  section#contacto {
    background: url("../img/8_contacto/ContactoVinil_ConInfo@2x.png") top center no-repeat;
    background-size: 1563px 1563px;
  }
}

@media screen and (max-width: 550px) {
  section#contacto {
    background-size: 1000px 1000px;
    background-position-y: 440px;
  }
}

section#contacto h2 {
  font-size: 120px;
  line-height: 150px;
  text-transform: uppercase;
  text-align: center;
}

@media screen and (max-width: 650px) {
  section#contacto h2 {
    font-size: 70px;
    line-height: 115px;
  }
}

section#contacto form {
  display: block;
  margin: 55px auto 0 auto;
  max-width: 920px;
  width: 85%;
}

section#contacto form input::-webkit-input-placeholder {
  color: white;
}

section#contacto form input:-moz-placeholder {
  /* Firefox 18- */
  color: white;
}

section#contacto form input::-moz-placeholder {
  /* Firefox 19+ */
  color: white;
}

section#contacto form input:-ms-input-placeholder {
  color: white;
}

section#contacto form textarea::-webkit-input-placeholder {
  color: white !important;
}

section#contacto form textarea:-moz-placeholder {
  /* Firefox 18- */
  color: white !important;
}

section#contacto form textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: white !important;
}

section#contacto form textarea:-ms-input-placeholder {
  color: white !important;
}

section#contacto form input[type=text],
section#contacto form textarea {
  -webkit-appearance: none;
  border-radius: 0;
  font-family: "Fjalla One", sans-serif;
  text-transform: uppercase;
  background: none;
  color: white;
  border: none;
  border-bottom: 3px solid white;
  font-size: 23px;
  line-height: 30px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section#contacto form input[type=text].right,
section#contacto form textarea.right {
  float: right;
}

@media screen and (max-width: 550px) {
  section#contacto form input[type=text].right,
  section#contacto form textarea.right {
    float: none;
  }
}

section#contacto form input[type=text] {
  width: 47%;
}

@media screen and (max-width: 550px) {
  section#contacto form input[type=text] {
    width: 100%;
  }
}

section#contacto form textarea {
  width: 100%;
}

section#contacto form input[type=submit] {
  cursor: pointer;
  border: 2px solid white;
  background: #0e0e0e;
  color: white;
  font-family: "Fjalla One", sans-serif;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 30px;
  padding: 15px 35px;
  float: right;
  margin-top: -70px;
  position: relative;
  z-index: 100;
  margin-right: 10px;
  border-radius: 100px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

@media screen and (max-width: 550px) {
  section#contacto form input[type=submit] {
    margin-top: 0;
    margin-right: 0;
  }
}

section#contacto form input[type=submit]:hover {
  color: #0e0e0e;
  background: white;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

footer {
  margin-top: -100px;
  font-size: 20px;
  text-align: center;
  letter-spacing: 3px;
}
/*# sourceMappingURL=style.css.map */