/*modal*/
.modal {
  background: rgba(255, 255, 255, 0.7);
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }
  .modal:before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 60px;
    background: url("../imgs/icono-cerrar.svg");
    background-size: cover;
    position: absolute;
    top: 20px;
    right: 20px; }
    .modal:before:hover {
      cursor: pointer !important; }
  .modal .contenedor-video {
    max-width: 1140px;
    background: #fff;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 1001;
    -webkit-box-shadow: 0px 6px 45px -8px rgba(0, 0, 0, 0.85);
    -moz-box-shadow: 0px 6px 45px -8px rgba(0, 0, 0, 0.85);
    box-shadow: 0px 6px 45px -8px rgba(0, 0, 0, 0.85); }
    .modal .contenedor-video .video {
      position: relative;
      overflow: hidden;
      padding-top: 56.25%;
      background: #fff; }
      .modal .contenedor-video .video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0; }

/***************** desktop y tablet *******************/
@media screen and (min-width: 750px) {
  .modal .contenedor-video {
    width: 80vw; } }

/***************** tablet *******************/
/***************** mobile y tablet *******************/
/***************** mobile *******************/
@media screen and (min-width: 100px) and (max-width: 749px) and (orientation: portrait) {
  .modal .contenedor-video {
    width: 100%; } }

@media screen and (min-width: 100px) and (max-width: 749px) and (orientation: landscape) {
  .modal .contenedor-video {
    width: 70vw; } }

body {
  font-family: 'Roboto';
  font-weight: 400; }
  body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease; }

a {
  text-decoration: none; }

a.boton {
  padding: 15px 20px;
  font-weight: 700;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#81ABFE), to(#CF588B));
  background-image: -webkit-linear-gradient(left, #81ABFE, #CF588B);
  background-image: -o-linear-gradient(left, #81ABFE, #CF588B);
  background-image: linear-gradient(to right, #81ABFE, #CF588B); }
  a.boton:hover {
    background-image: -webkit-gradient(linear, left top, right top, from(#CF588B), to(#81ABFE));
    background-image: -webkit-linear-gradient(left, #CF588B, #81ABFE);
    background-image: -o-linear-gradient(left, #CF588B, #81ABFE);
    background-image: linear-gradient(to right, #CF588B, #81ABFE); }

.logo {
  margin: 18px 0 18px 22px;
  display: inline-block;
  width: 312px;
  height: 48px;
  background: url("../imgs/giselle-logo.svg");
  background-size: cover; }

/*header*/
header {
  position: relative; }
  header .logo {
    width: 312px;
    height: 48px; }
  header .burguer {
    display: inline-block;
    width: 63px;
    height: 36px;
    background: url("../imgs/icono-menu.svg");
    background-size: cover;
    position: absolute;
    top: 26px;
    right: 22px; }
    header .burguer:hover {
      cursor: pointer;
      opacity: 0.6; }
  header .desplegable {
    width: 283px;
    float: right;
    height: calc(100vh - 86px);
    background: url("../imgs/apertura.jpg");
    background-size: cover;
    position: relative;
    padding-top: 30px; }
    header .desplegable:before {
      content: '';
      display: block;
      background-color: rgba(0, 0, 0, 0.7);
      background-size: cover;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0; }
    header .desplegable a {
      text-decoration: none;
      display: block;
      padding: 20px 0 20px 40px;
      font-weight: 300;
      font-size: 27px;
      color: #fff;
      position: relative; }
      header .desplegable a:hover {
        background: rgba(113, 115, 116, 0.8); }
        header .desplegable a:hover:after {
          content: '';
          display: inline-block;
          width: 26px;
          height: 19px;
          background: url("../imgs/icono-hover-nav.svg");
          background-size: cover;
          position: absolute;
          top: 22px;
          right: 20px; }
  header .apertura {
    position: relative;
    background: url("../imgs/apertura.jpg");
    background-size: cover; }
    header .apertura:before {
      content: '';
      display: block;
      background: url("../imgs/icono-apertura.svg");
      background-size: cover;
      opacity: 0.5;
      margin: auto;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0; }

main .seccion {
  max-width: 1140px; }
  main .seccion h2 {
    font-weight: 300;
    color: #666666;
    margin-top: -15px; }
    main .seccion h2:before {
      content: '';
      display: block;
      float: left;
      width: 52px;
      height: 52px;
      background: url("../imgs/icono-seccion.svg");
      background-size: cover;
      margin: 2px 20px 0 0; }
    main .seccion h2 b {
      font-weight: 500; }
    main .seccion h2.small:before {
      width: 36px;
      height: 36px; }
    main .seccion h2.small b {
      font-weight: 500; }
  main .seccion p {
    font-weight: 300;
    font-size: 19px;
    line-height: 32px;
    margin-bottom: 40px;
    color: #656565; }
  main .seccion .mosaico {
    margin-bottom: 40px; }
    main .seccion .mosaico .item {
      display: block;
      line-height: 0;
      margin-bottom: 20px;
      position: relative;
      overflow: hidden; }
      main .seccion .mosaico .item img {
        -webkit-transition: .3s ease-in-out;
        -o-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
        transform: translateY(-50%) translateX(-50%);
        z-index: 1; }
      main .seccion .mosaico .item.zoom:hover {
        cursor: pointer; }
        main .seccion .mosaico .item.zoom:hover:before {
          content: '';
          position: absolute;
          display: block;
          height: 100%;
          width: 100%;
          background-image: -webkit-gradient(linear, left top, left bottom, from(#CF588B), to(#81ABFE));
          background-image: -webkit-linear-gradient(#CF588B, #81ABFE);
          background-image: -o-linear-gradient(#CF588B, #81ABFE);
          background-image: linear-gradient(#CF588B, #81ABFE);
          opacity: 0.7;
          top: 0;
          left: 0;
          z-index: 2; }
        main .seccion .mosaico .item.zoom:hover:after {
          content: '';
          display: block;
          width: 146px;
          height: 146px;
          background: url("../imgs/icono-hover-item.svg");
          background-size: cover;
          z-index: 3;
          margin: auto;
          position: absolute;
          top: 0;
          bottom: 0;
          right: 0;
          left: 0; }
  main .seccion.reel .zoom {
    width: 100%;
    max-width: 1140px;
    cursor: pointer; }
    main .seccion.reel .zoom img {
      width: 100%; }
  main .seccion.directores ul li {
    font-weight: 300;
    color: #A3A3A3; }
  main .seccion.marcas .marca {
    line-height: 0;
    margin-bottom: 20px;
    float: left;
    position: relative;
    overflow: hidden; }
    main .seccion.marcas .marca img {
      -webkit-transition: .3s ease-in-out;
      -o-transition: .3s ease-in-out;
      transition: .3s ease-in-out;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
      transform: translateY(-50%) translateX(-50%);
      z-index: 1; }
  main .seccion.bio p {
    max-width: 1020px; }
  main .seccion.workshops h2 {
    display: inline-block; }
  main .seccion.workshops .boton {
    display: inline-block;
    margin-top: -24px;
    margin-left: 28px;
    vertical-align: text-top; }
  main .seccion.workshops figure {
    background: #f2f2f2;
    text-align: center; }
  main .seccion.warehouse h2 span {
    display: block;
    padding-left: 61px; }
    main .seccion.warehouse h2 span b {
      font-weight: 300;
      display: inline-block;
      -ms-transform: rotate(-180deg);
      transform: rotate(-180deg);
      -webkit-transform: rotate(-180deg);
      -moz-transform: rotate(-180deg);
      -o-transform: rotate(-180deg);
      transform: rotate(-180deg); }
  main .seccion.contacto ul li {
    font-weight: 300;
    color: #656565;
    margin-bottom: 40px; }
    main .seccion.contacto ul li.direccion:before {
      content: '';
      display: block;
      float: left;
      width: 23px;
      height: 36px;
      background: url("../imgs/icono-pin.svg");
      background-size: cover;
      margin: 0px 25px 0 5px; }
    main .seccion.contacto ul li.email:before {
      content: '';
      display: block;
      float: left;
      width: 32px;
      height: 24px;
      background: url("../imgs/icono-mail.svg");
      background-size: cover;
      margin: 0 20px 0 0; }
    main .seccion.contacto ul li.email a {
      color: #656565; }
      main .seccion.contacto ul li.email a:hover {
        cursor: pointer; }

main footer .copyright {
  font-weight: 300; }

/***************** desktop *******************/
@media screen and (min-width: 1024px) {
  main {
    padding: 85px 110px 0; }
    main .seccion {
      margin: 0 auto 105px; }
      main .seccion .mosaico .item {
        width: calc((100% - 44px)/3);
        padding-top: 32%;
        margin-bottom: 20px; }
        main .seccion .mosaico .item:not(:nth-child(3n)) {
          margin-right: 20px; }
      main .seccion.marcas .marca {
        width: calc((100% - 40px)/5);
        padding-top: 15%; }
        main .seccion.marcas .marca:not(:nth-child(5n)) {
          margin-right: 10px; }
      main .seccion.directores ul li {
        font-size: 30px;
        line-height: 38px; }
      main .seccion.workshops figure {
        width: 460px;
        height: 310px;
        margin: 0 37px 20px 0;
        float: left; }
        main .seccion.workshops figure img {
          width: 100%; }
      main .seccion.contacto iframe {
        float: right;
        width: 50%; }
      main .seccion.contacto ul {
        float: left;
        width: 50%;
        padding-top: 50px; }
  footer .copyright {
    float: right;
    margin-right: 22px;
    padding-top: 60px; } }

/***************** desktop y tablet *******************/
@media screen and (min-width: 750px) {
  header .apertura {
    float: left;
    width: calc(100% - 283px);
    height: calc(100vh - 86px); }
    header .apertura:before {
      width: 410px;
      height: 410px; }
  header.ocultar .desplegable {
    width: 0; }
  header.ocultar .apertura {
    width: 100%; }
  header:not(.ocultar) .desplegable {
    width: 283px; }
  header:not(.ocultar) .apertura {
    width: calc(100% - 283px); }
  main .seccion h2 {
    font-size: 69px;
    margin-bottom: 45px; }
    main .seccion h2 b {
      font-size: 69px; }
    main .seccion h2.small {
      font-size: 50px; }
      main .seccion h2.small b {
        font-size: 50px; }
  main .seccion .mosaico .item {
    float: left;
    margin-bottom: 20px; }
  main .seccion.directores ul {
    width: 29%;
    float: left; }
    main .seccion.directores ul:first-of-type {
      margin-right: 3%; }
    main .seccion.directores ul:nth-child(3) {
      width: 33%;
      margin-right: 6%; }
  main .seccion.warehouse h2 span {
    padding-left: 61px;
    font-size: 60px;
    margin-top: -15px; }
    main .seccion.warehouse h2 span b {
      font-size: 70px; }
  main .seccion.contacto ul li {
    font-weight: 300; }
    main .seccion.contacto ul li.direccion {
      font-size: 26px; }
    main .seccion.contacto ul li.email {
      font-size: 25px; }
  footer .logo {
    width: 491px;
    height: 76px; }
  footer .copyright {
    font-weight: 300;
    font-size: 18px; } }

/***************** tablet *******************/
@media screen and (min-width: 750px) and (max-width: 1023px) {
  header .apertura, header .desplegable {
    height: 550px; }
  main {
    padding: 50px 40px 0; }
    main .mosaico .item {
      width: calc(50% - 20px);
      padding-top: 42%; }
      main .mosaico .item:not(:nth-child(2n)) {
        margin-right: 20px; }
    main .seccion {
      margin: 0 auto 40px; }
      main .seccion.directores ul {
        width: 29%;
        float: left; }
        main .seccion.directores ul li {
          font-size: 18px;
          line-height: 31px; }
      main .seccion.marcas .marca {
        width: calc((100% - 30px)/4);
        padding-top: 24%; }
        main .seccion.marcas .marca:not(:nth-child(4n)) {
          margin-right: 10px; }
      main .seccion.contacto iframe {
        width: 100%; }
  footer .copyright {
    margin-left: 22px; } }

/***************** moviles y tablet *******************/
@media screen and (min-width: 100px) and (max-width: 1023px) {
  main .seccion.workshops figure {
    width: 100%;
    margin-bottom: 40px; }
    main .seccion.workshops figure img {
      width: 100%;
      max-width: 460px; } }

/***************** moviles *******************/
@media screen and (min-width: 100px) and (max-width: 749px) {
  header .logo {
    width: 250px;
    height: 38px; }
  header .burguer {
    width: 45px;
    height: 25px; }
  header .desplegable {
    width: 0; }
  header .apertura {
    width: 100%;
    z-index: 1; }
    header .apertura:before {
      width: 300px;
      height: 300px; }
  header.ocultar .desplegable {
    width: 283px;
    position: absolute;
    top: 76px;
    right: 0;
    z-index: 2; }
  main {
    padding: 60px 15px; }
    main .seccion h2 {
      font-size: 45px;
      margin-bottom: 35px; }
      main .seccion h2:before {
        margin: 2px 10px 0 0; }
      main .seccion h2 b {
        font-size: 45px; }
      main .seccion h2.small {
        font-size: 37px; }
        main .seccion h2.small b {
          font-size: 37px; }
    main .seccion .mosaico .item {
      width: 100%;
      max-width: 367px;
      height: 367px;
      margin: 0 auto 20px; }
    main .seccion.workshops .boton {
      margin-left: 12px;
      padding: 15px 10px; }
    main .seccion.directores {
      font-size: 25px;
      line-height: 33px; }
    main .seccion.marcas .marca {
      width: calc((100% - 10px)/2); }
      main .seccion.marcas .marca:not(:nth-child(2n)) {
        margin-right: 10px; }
    main .seccion.contacto iframe {
      width: 100%; }
  footer {
    padding: 0 22px; }
    footer .logo {
      width: 300px;
      height: 48px;
      margin: auto;
      padding: 0 22px; }
    footer .copyright {
      font-weight: 300;
      font-size: 15px;
      line-height: 20px;
      padding-top: 10px;
      margin: auto; } }

@media screen and (min-width: 100px) and (max-width: 749px) and (orientation: portrait) {
  header .apertura {
    height: calc(100vh - 76px); }
  header.ocultar .desplegable {
    height: calc(100vh - 76px); }
  main .seccion.marcas .marca {
    padding-top: 50%; } }

@media screen and (min-width: 100px) and (max-width: 749px) and (orientation: landscape) {
  header .apertura {
    height: 500px; }
  header.ocultar .desplegable {
    height: 500px; }
  main .seccion.marcas .marca {
    padding-top: 25%; } }
