@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,700);
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("~owl.carousel/src/img/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  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: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* ------------------------------------------------------------------------- */
/* WordPress WYSIWYG Editor Styles */
/* ------------------------------------------------------------------------- */
.entry-content img {
  margin: 0 0 1.5em 0;
}

.alignleft, img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}

.alignright, img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}

.aligncenter, img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}

.alignnone,
img.alignnone {
  /* not sure about this one */
}

.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}

.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}

.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}

.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/* ------------------------------------------------------------------------- */
/* VARIABLES */
/* ------------------------------------------------------------------------- */
/* ==========================================================================
   RESET CSS
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
figure,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  list-style: none;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
}

body {
  background-color: white;
}

a {
  text-decoration: none;
  outline: 0;
}

a:hover {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

p a {
  text-decoration: underline;
  outline: 0;
  color: black;
  font-weight: bold;
}

p a:hover {
  text-decoration: underline;
  color: #555;
}

input[type=submit],
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html,
body {
  overflow-x: hidden;
}

/* ------------------------------------------------------------------------- */
/* GENEREAL STYLE - Classes used throught all the project */
/* ------------------------------------------------------------------------- */
html {
  overflow: overlay;
}

body {
  background-color: white;
  min-height: 100%;
  font-family: "Montserrat";
  color: #222;
  font-size: 17px;
  line-height: 150%;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1440px;
  position: relative;
}

.container-mini {
  width: 70%;
  margin: 0 auto;
  max-width: 1000px;
}

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

a,
button {
  cursor: pointer;
}

.clearfix, .clear {
  clear: both;
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 15px;
}

ul {
  margin: 20px 0;
}

p a, a {
  text-decoration: none;
}

p i, i {
  font-style: italic;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

/* ------------------------------------------------------------------------- */
/* COOKIES */
/* ------------------------------------------------------------------------- */
.cookies {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 90%;
  max-width: 400px;
  padding: 25px 40px 20px 25px;
  z-index: 100;
  background-color: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.cookies p {
  font-size: 14px;
  color: black;
  line-height: 130%;
  margin-bottom: 0pc;
}

.cookies p.cookies__text {
  margin-bottom: 25px;
}

.cookies p:last-child {
  text-align: right;
}

.cookies p a {
  color: black;
  font-weight: 600;
  font-size: 15px;
}

.cookies p a:hover {
  color: black;
}

@media only screen and (max-width: 800px) {
  .cookies p {
    font-size: 13px;
  }

  .cookies p a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 600px) {
  .cookies {
    width: calc(100% - 20px);
    max-width: none;
  }

  .cookies p {
    font-size: 12px;
  }

  .cookies p a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1200px) {
  .container-mini {
    width: 90%;
  }
}
@media only screen and (max-width: 1000px) {
  .container-mini {
    width: 100%;
    padding: 0 20px;
    overflow: auto;
  }
}
@media only screen and (max-width: 800px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  border-radius: 0px;
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 3px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  background-color: #4a4a4a;
}

/* ------------------------------------------------------------------------- */
/* HEADER STYLES */
/* ------------------------------------------------------------------------- */
header.header {
  width: 100%;
  padding: 30px 0 16px;
  background-color: white;
  position: fixed;
  z-index: 10;
  border-bottom: 1px solid #d4d4d4;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

header.header-home {
  position: absolute;
  background-color: transparent;
  border-bottom: none;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
}

header.header.fixed {
  padding: 5px 0;
  z-index: 10;
}

header.header-home.fixed {
  position: fixed;
  background-color: black;
  padding: 5px 0;
  z-index: 10;
}

header.header .menu-desplegable {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 20px;
  display: none;
  z-index: 10;
}

header.header .menu-desplegable .texto-menus {
  margin: 0 auto;
  width: 100%;
  display: table;
  height: 100%;
  left: 0;
  top: 0;
}

header.header .menu-desplegable .texto-menus ul {
  margin: 0;
}

header.header .menu-desplegable .texto-menus ul li {
  text-align: center;
  margin: 20px 0;
  display: block;
}

header.header .menu-desplegable .texto-menus ul li a {
  font-weight: 600;
  color: white;
  font-size: 30px;
  line-height: 120%;
  transition: all 0.2s;
}

header.header .menu-desplegable .texto-menus ul li a:hover {
  opacity: 0.7;
}

header.header .menu-desplegable .texto-menus div {
  display: table-cell;
  vertical-align: middle;
}

header.header .menu-desplegable .header_idiomas {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  text-align: center;
}

header.header .menu-desplegable .header_idiomas ul li {
  display: inline-block;
  margin: 0 20px;
}

header.header .menu-desplegable .header_idiomas ul li a {
  color: white;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0 3px 5px;
}

header.header .header_logo-container {
  float: left;
}

header.header .header_logo-container .header_logo {
  max-width: 55px;
}

header.header.fixed .header_logo-container .header_logo {
  max-width: 21%;
}

header.header-home .header_logo-container .header_logo {
  max-width: 100%;
}

header.header-home.fixed .header_logo-container .header_logo {
  max-width: 21%;
}

header.header .header_idiomas {
  float: right;
  text-align: right;
}

header.header .header_idiomas ul li {
  display: inline-block;
  margin: 0 10px;
}

header.header .header_idiomas ul li a {
  color: #222;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0 3px 5px;
}

header.header .header_idiomas ul li a:after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
  will-change: transform;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #222;
  opacity: 0.5;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  transform: translate3d(-103%, 0%, 0);
  -webkit-transform: translate3d(-103%, 0%, 0);
}

header.header .header_idiomas ul li a.active:after, header.header .header_idiomas ul li a:hover:after, header.header .header_idiomas ul li.wpml-ls-current-language a:after {
  transform: translate3d(0%, 0%, 0);
  -webkit-transform: translate3d(0%, 0%, 0);
}

header.header-home .header_idiomas ul li a {
  color: #FFF;
}

header.header-home .header_idiomas ul li a:after {
  background: white;
}

header.header nav.texto-menus {
  position: absolute;
  text-align: center;
  width: 60%;
  left: 20%;
}

header.header nav.texto-menus ul li {
  display: inline-block;
  margin: 0 20px;
}

header.header nav.texto-menus ul li a {
  color: #222;
  font-size: 20px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0 3px 10px;
}

header.header nav.texto-menus ul li a:after {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(0);
  will-change: transform;
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: #222;
  transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.71, 0.1, 0.9);
  transform: translate3d(-103%, 0%, 0);
  -webkit-transform: translate3d(-103%, 0%, 0);
}

header.header nav.texto-menus ul li.current_page_item a:after,
header.header nav.texto-menus ul li.project-selected a:after,
header.header nav.texto-menus ul li a:hover:after {
  transform: translate3d(0%, 0%, 0);
  -webkit-transform: translate3d(0%, 0%, 0);
}

header.header-home nav.texto-menus ul li a {
  color: white;
}

header.header-home nav.texto-menus ul li a:after {
  background: white;
}

header.header-home.fixed nav.texto-menus ul,
header.header-home.fixed .header_idiomas ul,
header.header.fixed nav.texto-menus ul,
header.header.fixed .header_idiomas ul {
  margin: 10px 0 0;
}

header.header nav.texto-menus ul li.client-area {
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  margin-left: 0 !important;
  padding-left: 20px;
}

header.header-home nav.texto-menus ul li.client-area {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: 0 !important;
  padding-left: 20px;
}

#nav-open-close {
  display: none;
  z-index: 1000;
  position: absolute;
  right: 20px;
  top: 10px;
  width: 30px;
  height: 30px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#nav-open-close span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #222;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-open-close.blanco span {
  background: #FFF;
}

#nav-open-close span:nth-child(1) {
  top: 0px;
}

#nav-open-close span:nth-child(2) {
  top: 13px;
}

#nav-open-close span:nth-child(3) {
  top: 26px;
}

#nav-open-close.open {
  position: fixed;
}

#nav-open-close.open span:nth-child(1) {
  top: 13px;
  transform: rotate(135deg);
  width: 40px;
  left: -5px;
  background: #FFF;
}

#nav-open-close.open span:nth-child(2) {
  opacity: 0;
  left: 0px;
}

#nav-open-close.open span:nth-child(3) {
  top: 13px;
  transform: rotate(-135deg);
  width: 40px;
  left: -5px;
  background: #FFF;
}

h1, h2 {
  font-weight: 700;
  line-height: 100%;
  color: #262626;
  font-family: "Montserrat";
}

hr {
  width: 40px;
  height: 5px;
  border: none;
  background: #262626;
  margin: 20px 0;
}

hr.hr-top {
  margin-bottom: 30px;
}

hr.hr-bottom {
  margin-top: 30px;
}

@media only screen and (max-width: 1000px) {
  header.header nav.texto-menus {
    width: 70%;
    left: 15%;
  }

  header.header nav.texto-menus ul li {
    margin: 0 10px;
  }

  header.header nav.texto-menus ul li a {
    font-size: 18px;
  }

  header.header-home .header_logo-container .header_logo {
    max-width: 80px;
  }
}
@media only screen and (max-width: 800px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }

  header.header .header_logo-container .header_logo {
    max-width: 50px;
  }

  header.header {
    padding: 20px 0;
  }

  header.header nav.texto-menus, header.header .header_idiomas {
    display: none;
  }

  #nav-open-close {
    display: block;
  }

  hr {
    width: 35px;
    height: 3px;
    margin: 10px 0;
  }

  hr.hr-top {
    margin-bottom: 20px;
  }

  hr.hr-bottom {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .slider video {
    height: 100% !important;
  }

  header.header {
    padding: 10px 0;
  }

  header.header .header_logo-container .header_logo {
    max-width: 35px;
  }

  header.header .menu-desplegable .texto-menus ul li {
    margin: 10px 0;
  }

  header.header .menu-desplegable .texto-menus ul li a {
    font-size: 30px;
  }

  hr {
    width: 25px;
    height: 2px;
    margin: 5px 0;
  }

  hr.hr-top {
    margin-bottom: 10px;
  }

  hr.hr-bottom {
    margin-top: 10px;
  }
}
/* ------------------------------------------------------------------------- */
/* SINGLE PHP STYLES */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* HOME STYLES */
/* ------------------------------------------------------------------------- */
.slider {
  z-index: 1;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.color-slider {
  width: 100%;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  /* For browsers that do not support gradients */
  /* For Safari 5.1 to 6.0 */
  /* For Opera 11.1 to 12.0 */
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  /* Standard syntax (must be last) */
  /*animation: changecolor 5s linear infinite;
  -webkit-animation: changecolor 5s linear infinite;*/
}

/*.image-slider {width:100%; height:100%; background-position:center; background-size:cover; overflow:hidden; -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1);  animation: blinkingimage 20s ease-in-out infinite; -webkit-animation: blinkingimage 20s ease-in-out infinite; }*/
#videobt {
  display: none;
  z-index: 2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  cursor: pointer;
}

.slider .slider__image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  transform: translateX(-50%) translateY(-50%);
  transition: 1s opacity;
}

.home-slider_slogan {
  opacity: 0;
  z-index: 2;
  position: absolute;
  top: 40%;
  width: 100%;
  font-size: 40px;
  font-weight: 400;
  color: white;
  line-height: 90%;
  text-align: center;
  padding: 0 20px;
  transition: all 0.5s ease-in-out;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -o-text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.home-slider_slogan.moverAbajo {
  top: 85%;
}

img.icon-scroll {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  margin-left: -20px;
  opacity: 0;
  animation: blinking 3s linear infinite;
  -webkit-animation: blinking 3s linear infinite;
}

.play-home {
  position: absolute;
  z-index: 3;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin-left: -50px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3) url(../images/play.svg) no-repeat;
  background-size: 100%;
  border-radius: 50px;
}

.play-home:hover {
  background: rgba(0, 0, 0, 0.5) url(../images/play.svg) no-repeat;
  background-size: 100%;
}

/* ANIMATIONS */
.animated {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.fadeToLeft {
  -webkit-animation-name: fadeToLeft;
  animation-name: fadeToLeft;
}

.fadeToRight {
  -webkit-animation-name: fadeToRight;
  animation-name: fadeToRight;
}

.fadeOpacity {
  -webkit-animation-name: fadeOpacity;
  animation-name: fadeOpacity;
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes blinkingimage {
  50% {
    transform: scale(1.1);
  }
}

@keyframes blinkingimage {
  50% {
    transform: scale(1.1);
  }
}
@-webkit-keyframes blinking {
  50% {
    opacity: 1;
  }
}
@keyframes blinking {
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(0, 200px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate(0, 200px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fadeToLeft {
  0% {
    opacity: 0;
    transform: translate(10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeToLeft {
  0% {
    opacity: 0;
    transform: translate(10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fadeToRight {
  0% {
    opacity: 0;
    transform: translate(-10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeToRight {
  0% {
    opacity: 0;
    transform: translate(-10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fadeOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* PROJECTS */
.home-projects {
  margin: 100px 0 0 0;
}

h1.h1-home {
  font-size: 100px;
  margin-bottom: 20px;
  letter-spacing: -5px;
}

.project-item-home {
  position: relative;
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
}

.project-item-home a .project__colorbox {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4;
  transition: all 0.2s;
}

.project-item-home:hover a .project__colorbox {
  opacity: 0.7;
}

.project-item-home a .project__title {
  display: table;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.project-item-home a .project__title p {
  display: table-cell;
  vertical-align: middle;
  color: white;
  font-family: "Montserrat";
  font-size: 60px;
  line-height: 90%;
  font-weight: 700;
  text-align: center;
  padding: 0 15px;
  margin: 0;
}

.owl-theme .owl-nav .owl-prev {
  color: rgba(0, 0, 0, 0);
  float: left;
  background: transparent url(../images/slide_flecha_izq.svg) no-repeat center !important;
  background-size: 100% !important;
  width: 20px;
  height: 20px;
}

.owl-theme .owl-nav .owl-prev:hover {
  opacity: 0.7;
  color: rgba(0, 0, 0, 0);
  background: transparent url(../images/slide_flecha_izq.svg) no-repeat center;
  background-size: 100%;
}

.owl-theme .owl-nav .owl-next {
  color: rgba(0, 0, 0, 0);
  float: right;
  background: transparent url(../images/slide_flecha_der.svg) no-repeat center !important;
  background-size: 100% !important;
  width: 20px;
  height: 20px;
}

.owl-theme .owl-nav .owl-next:hover {
  opacity: 0.7;
  color: rgba(0, 0, 0, 0);
  background: transparent url(../images/slide_flecha_der.svg) no-repeat center;
  background-size: 100%;
}

.owl-theme .owl-nav .owl-prev span, .owl-theme .owl-nav .owl-next span {
  display: none;
}

.owl-theme .owl-dots .owl-dot span {
  background: #b9b9b9;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: black;
}

/* VIDEO PRESENTACION*/
.home-presentation-video {
  margin: 100px 0;
  position: relative;
  /*height:750px;*/
  overflow: hidden;
}

.home-presentation-video video {
  position: relative;
  /*top: 50%; left: 50%;*/
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  z-index: -100;
  /*transform: translateX(-50%) translateY(-50%); background: url(../images/bg1.jpg) no-repeat center; background-size: cover;*/
  transition: 1s opacity;
}

.home-presentation-video #bgvid2 {
  width: 100%;
}

.play-home2 {
  position: absolute;
  z-index: 3;
  width: 100px;
  height: 100px;
  top: 50%;
  left: 75%;
  margin-top: -50px;
  margin-left: -50px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3) url(../images/play.svg) no-repeat;
  background-size: 100%;
  border-radius: 50px;
}

.play-home2:hover {
  background: rgba(0, 0, 0, 0.5) url(../images/play.svg) no-repeat;
  background-size: 100%;
}

#video-controls {
  display: none;
  z-index: 3;
  position: absolute;
  width: 300px;
  bottom: 12px;
  margin-left: -150px;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  padding: 0 10px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
}

#video-controls button {
  text-indent: -9999px;
  width: 16px;
  height: 16px;
  line-height: 100%;
  border: none;
  cursor: pointer;
  background: transparent url(../images/video-controls.png) no-repeat 0 0;
}

#video-controls .pause {
  background-position: -19px 0;
}

#video-controls .stop {
  background-position: -38px 0;
}

#video-controls .replay {
  background-position: -133px 0;
}

#video-controls progress {
  color: white;
  font-size: 12px;
  width: 200px;
  height: 16px;
  border: 2px solid white;
  margin-right: 10px;
  background: rgba(0, 0, 0, 0);
  border-radius: 9px;
  vertical-align: middle;
}

#video-controls progress::-moz-progress-bar {
  color: white;
  background: rgba(0, 0, 0, 0);
}

#video-controls progress[value]::-webkit-progress-bar {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset;
}

#video-controls progress[value]::-webkit-progress-value {
  background-color: white;
}

/* PRESESNTATION */
.home-presentation {
  margin: 100px 0;
  position: relative;
  height: 700px;
  background-position: center;
  background-size: cover;
}

.home-frase {
  margin: 0;
  position: relative;
}

.home-frase .home-frase__image {
  width: 80%;
  height: 750px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}

.presentation__textbox {
  opacity: 0;
  z-index: 2;
  position: absolute;
  background-color: white;
  padding: 60px 50px;
  width: 50%;
}

.presentation__textbox p {
  font-size: 20px;
  line-height: 150%;
  font-weight: 400;
}

.presentation__textbox.top50 {
  top: 50px;
}

.presentation__textbox.top100 {
  top: 100px;
}

.presentation__textbox.alignRight {
  right: 0;
}

.presentation__textbox.phrase p {
  font-size: 23px;
  color: #3d3d3d;
}

.presentation__textbox h2 {
  font-size: 140px;
  margin: -150px 0 20px -50px;
}

.presentation__textbox a.link {
  display: inline-block;
  float: right;
  font-size: 16px;
  color: black;
  border-bottom: 1px solid black;
}

/* NEWS */
.home-news {
  margin: 40px 0 20px;
}

h1.h1-news {
  position: absolute;
  top: -20px;
  z-index: 2;
  letter-spacing: -5px;
}

.news-item-home {
  position: relative;
  width: 100%;
  text-align: right;
}

.news-item-home .news-box {
  position: absolute;
  z-index: 1;
  top: 50px;
  left: 0;
  width: 40%;
  min-height: 300px;
  padding: 90px 50px 40px;
  background-color: white;
}

.news-item-home .news-box__title {
  font-family: "Montserrat";
  font-size: 25px;
  line-height: 110%;
  font-weight: 700;
  text-align: left;
  margin-bottom: 25px;
}

.news-item-home .news-box__text p {
  font-family: "Montserrat";
  text-align: left;
  font-size: 16px;
  line-height: 150%;
  margin-bottom: 15px;
}

.news-item-home .news-image {
  display: inline-block;
  width: 70%;
  height: 520px;
  background-size: cover;
  background-position: center;
}

.owl-carousel-news .owl-theme .owl-nav {
  margin-top: -50px;
  text-align: left;
}

.owl-carousel-news .owl-theme .owl-nav .owl-prev, .owl-carousel-news .owl-theme .owl-nav .owl-next {
  float: none;
}

@media only screen and (max-width: 1200px) {
  h1.h1-home {
    font-size: 100px;
  }

  .project-item-home {
    height: 300px;
  }

  .project-item-home a .project__title p {
    font-size: 40px;
  }

  .presentation__textbox p {
    font-size: 18px;
  }

  .presentation__textbox h2 {
    font-size: 100px;
    margin: -120px 0 20px -50px;
  }

  .presentation__textbox.phrase p {
    font-size: 22px;
  }

  .news-item-home .news-box {
    padding: 60px 50px 40px;
  }

  .news-item-home .news-box__title {
    font-size: 26px;
  }

  .news-item-home .news-box__text p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1000px) {
  .play-home {
    width: 60px;
    height: 60px;
    margin-left: -30px;
  }

  .play-home2 {
    width: 60px;
    height: 60px;
    margin-top: -30px;
    margin-left: -30px;
  }

  .home-slider_slogan {
    font-size: 30px;
  }

  h1.h1-home {
    font-size: 70px;
  }

  .project-item-home a .project__title p {
    font-size: 35px;
  }

  /*.home-presentation-video {height:600px;}*/
  .presentation__textbox {
    padding: 40px;
  }

  .presentation__textbox p {
    font-size: 16px;
  }

  .presentation__textbox h2 {
    font-size: 70px;
    margin: -90px 0 20px -50px;
  }

  .presentation__textbox.phrase p {
    font-size: 18px;
  }

  .news-item-home .news-box {
    padding: 40px;
    width: 45%;
  }

  .news-item-home .news-box__title {
    font-size: 22px;
  }

  .news-item-home .news-box__text p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 800px) {
  .home-slider_slogan {
    font-size: 20px;
  }

  .home-slider_slogan.moverAbajo {
    top: 75%;
  }

  /*.home-presentation-video {height:500px;}*/
  .presentation__textbox, .news-item-home .news-box {
    width: 55%;
  }

  .home-frase .home-frase__image {
    width: 80%;
    height: 500px;
  }

  .news-item-home .news-image {
    height: 450px;
  }

  .presentation__textbox p {
    font-size: 14px;
  }

  #video-controls {
    bottom: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .play-home, .play-home2 {
    width: 60px;
    height: 60px;
  }

  /*.owl-theme .owl-nav {display:none;}*/
  .owl-theme .owl-dots {
    margin-top: 10px;
  }

  .home-presentation {
    height: 350px;
  }

  .presentation__textbox.top50 {
    top: 10px;
  }

  .presentation__textbox.top100 {
    top: 40px;
  }

  .presentation__textbox h2 {
    font-size: 50px;
    margin: -50px 0 10px -20px;
  }

  .home-presentation-video .presentation__textbox hr {
    display: none;
  }

  .presentation__textbox {
    padding: 20px;
  }

  .presentation__textbox p {
    font-size: 13px;
    line-height: 135%;
  }

  .presentation__textbox.phrase p {
    font-size: 13px;
  }

  .home-frase .home-frase__image {
    width: 100%;
    height: 460px;
  }

  h1.h1-news {
    position: relative;
    top: auto;
  }

  h1.h1-home {
    position: relative;
    top: auto;
  }

  .news-item-home .news-image {
    width: 100%;
    height: 350px;
  }

  .news-item-home .news-box {
    width: 100%;
    min-height: auto;
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
  }

  .news-item-home .news-box__text p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 480px) {
  .home-presentation-video {
    min-height: 300px;
  }

  .presentation__textbox p {
    font-size: 11px;
    line-height: 120%;
  }

  .news-item-home .news-image {
    height: 250px;
  }

  .home-frase .home-frase__image {
    height: 350px;
  }

  h1.h1-home {
    font-size: 40px;
  }
}
/* ------------------------------------------------------------------------- */
/* PAGE PAGE STYLES */
/* ------------------------------------------------------------------------- */
.page {
  padding: 170px 0 100px;
}

.page h1 {
  font-family: "Montserrat";
  font-size: 70px;
  line-height: 120%;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: -3px;
}

.page h2 {
  font-family: "Montserrat";
  font-size: 35px;
  line-height: 120%;
  margin: 60px 0 30px;
  font-weight: 700;
  color: #262626;
  text-align: left;
}

.page ul {
  padding-left: 18px;
}

.page ul li {
  padding: 0 0 20px 15px;
  list-style-image: url(../images/bullet.svg);
  margin-bottom: 10px;
}

.page a {
  text-decoration: underline;
  color: black;
}

.cabecera {
  height: 450px;
  position: relative;
  background-position: center;
  background-size: auto;
  margin-bottom: 60px;
  margin-top: 55px;
}

.cabecera h1 {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 50%;
  color: white;
  font-size: 75px;
  text-align: center;
  line-height: 100%;
  font-weight: 700;
}

.cabecera .cabecera__colorbox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.cabecera_proyectos {
  background-size: cover;
}

.breadcrumb {
  color: white;
  font-size: 15px;
  position: absolute;
  width: 100%;
  z-index: 1;
  bottom: 20px;
  left: 0;
}

.breadcrumb a {
  color: white;
  font-size: 15px;
  line-height: 100%;
  font-weight: 700;
  text-decoration: none;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 1000px) {
  .page h1 {
    font-size: 40px;
  }

  .page h2 {
    font-size: 28px;
  }

  .cabecera {
    height: 350px;
  }

  .cabecera h1 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 800px) {
  .page {
    padding: 150px 0 80px;
  }

  .page h1 {
    font-size: 30px;
  }

  .page h2 {
    font-size: 20px;
  }

  .cabecera {
    height: 250px;
  }

  .cabecera h1 {
    position: relative;
    font-size: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .page {
    padding: 100px 0 50px;
  }

  .cabecera {
    height: auto;
    padding: 60px 10px 40px;
  }
}
/* ------------------------------------------------------------------------- */
/* CONTACT ABOUT STYLES */
/* ------------------------------------------------------------------------- */
.contact-left {
  float: left;
  width: 50%;
  padding-right: 40px;
}

.contact-right {
  float: left;
  width: 50%;
  position: relative;
}

.contact-right h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-direccion {
  margin-bottom: 50px;
  padding-left: 50px;
  background: transparent url(../images/point.svg) no-repeat left 5px;
}

.contact-direccion a.contact-gotomaps {
  display: block;
  font-size: 22px;
  line-height: 110%;
  margin-right: 20px;
  color: #1e1e1e;
  margin-bottom: 20px;
  opacity: 1;
  transition: all 0.2s;
}

.contact-direccion a.contact-gotomaps:hover {
  opacity: 0.7;
}

.contact-direccion a.contact-tel {
  display: block;
  font-size: 18px;
  line-height: 110%;
  font-weight: 400;
  color: #1e1e1e;
  opacity: 1;
  transition: all 0.2s;
}

.contact-direccion a.contact-tel:hover {
  opacity: 0.7;
}

a.contact-mailto {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  line-height: 110%;
  margin-bottom: 20px;
  font-weight: 700;
  color: #000;
  opacity: 1;
  transition: all 0.2s;
}

a.contact-mailto:hover {
  opacity: 0.7;
}

/*   FORMS    */
.submit_loader {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20% 0;
  top: 0;
}

#alert {
  margin-top: 20px;
  font-weight: 700;
  font-size: 12px;
  color: #ff3b3b;
  text-transform: uppercase;
}

#alert p {
  font-size: 16px;
  color: #ff3b3b;
}

.contact-form_input__error {
  border-bottom: 3px solid #ff3b3b !important;
}

label.contact-form_label__error:before {
  border-color: #ff3b3b !important;
}

form input[type=mail], form input[type=text], form textarea.textarea {
  border: none;
  border-bottom: 3px solid #000;
  margin-bottom: 20px;
  padding: 10px;
  color: #000;
  font-size: 25px;
  font-weight: 700;
  background: transparent;
  outline: 0;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  -webkit-appearance: none;
}

form textarea.textarea {
  resize: none;
  height: 56px;
}

form input[type=checkbox] {
  display: none;
}

form label {
  color: #000;
  cursor: pointer;
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  vertical-align: middle;
  padding-left: 30px;
  margin-top: 15px;
  position: relative;
}

form label:before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  height: 14px;
  width: 14px;
  border: 3px solid #000;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}

form label a {
  color: #000;
  border-bottom: 1px solid #000;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}

form input[type=checkbox]:checked + label {
  color: #000;
}

form input[type=checkbox]:checked + label:before {
  border-color: #000;
  background-color: #000;
}

form button[type=submit] {
  border: 1px solid #000;
  position: relative;
  background: #000;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  color: white;
  float: right;
  opacity: 1;
  margin-top: 14px;
  outline: 0;
  padding: 20px 60px;
  transition: all 0.5s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  -webkit-appearance: none;
}

form button[type=submit]:hover {
  color: #000;
}

form button[type=submit] span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

form button[type=submit]:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0, 1);
  transform-origin: right center;
  background: white;
}

form button[type=submit]:hover:before {
  transform: scale(1, 1);
  transform-origin: left center;
}

::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #a1a6a9;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #a1a6a9;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #a1a6a9;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #a1a6a9;
}

@media only screen and (max-width: 1100px) {
  .contact-left {
    float: left;
    width: 40%;
    padding-right: 40px;
  }

  .contact-right {
    float: left;
    width: 60%;
    position: relative;
  }

  .contact-direccion a.contact-gotomaps {
    font-size: 18px;
    margin-bottom: 30px;
    margin-right: 20px;
  }

  .contact-direccion a.contact-tel {
    font-size: 15px;
  }

  a.contact-mailto {
    font-size: 18px;
  }

  form input[type=mail], form input[type=text] {
    padding: 8px 0;
  }
}
@media only screen and (max-width: 800px) {
  .contact-left, .contact-right {
    float: none;
    width: 100%;
    padding-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  form input[type=submit] {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
  }

  form input[type=mail], form input[type=text] {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
/* ------------------------------------------------------------------------- */
/* PROJECTS STYLES */
/* ------------------------------------------------------------------------- */
/* PROJECTS PAGE */
ul.projects {
  margin: 20px 0;
}

ul.projects li.project-item {
  position: relative;
  float: left;
  width: 48%;
  margin: 10px 1%;
  height: 350px;
  background-size: cover;
  background-position: center;
}

ul.projects li.project-item a .project__colorbox {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4;
  transition: all 0.2s;
}

ul.projects li.project-item:hover a .project__colorbox {
  opacity: 0.7;
}

ul.projects li.project-item a .project__title {
  display: table;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

ul.projects li.project-item a .project__title p {
  display: table-cell;
  vertical-align: middle;
  color: white;
  font-family: "Montserrat";
  font-size: 42px;
  line-height: 90%;
  font-weight: 700;
  text-align: center;
  padding: 0 15%;
  margin: 0;
  text-transform: uppercase;
}

/* SINGLE PROJECT */
.cabecera-project {
  height: 390px;
  position: relative;
  background-position: center;
  background-size: cover;
  margin-bottom: 60px;
  margin-top: 110px;
}

.cabecera-project h1 {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 37%;
  left: 0;
  color: white;
  font-size: 65px;
  text-align: center;
  line-height: 100%;
  font-weight: 700;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.cabecera-project h3 {
  position: absolute;
  z-index: 1;
  width: 100%;
  top: 55%;
  left: 0;
  color: white;
  font-size: 15px;
  text-align: center;
  line-height: 100%;
  font-weight: 700;
}

.cabecera-project .cabecera__colorbox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.fondogris {
  background-color: #faf8f8;
}

.page_nav {
  padding: 50px 0;
}

.page_nav a {
  opacity: 1;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 110%;
  color: #000;
}

.nav-previous a {
  float: right;
  text-align: right;
  background: url(../images/slide_flecha_der.svg) center right no-repeat;
  padding: 4px 65px 0 0;
}

.nav-next a {
  float: left;
  background: url(../images/slide_flecha_izq.svg) center left no-repeat;
  padding: 4px 0 0 65px;
}

.nav-next a, .nav-previous a {
  display: table;
  width: 44%;
  min-height: 48px;
  overflow: hidden;
  color: black;
}

.nav-next a span, .nav-previous a span {
  display: table-cell;
  vertical-align: middle;
}

.nav-next a:hover, .nav-previous a:hover {
  opacity: 0.8;
}

.project-bloque1 {
  margin-bottom: 20px;
  position: relative;
  text-align: right;
}

.project-bloque1 img {
  width: 70%;
}

.project-bloque1 .textbox {
  opacity: 0;
  z-index: 2;
  top: 30px;
  left: 0;
  position: absolute;
  background-color: white;
  text-align: left;
  padding: 30px 35px 20px 20px;
  width: 35%;
}

/*.project-bloque1 .textbox h1 {font-size:140px; font-weight:700; margin:-60px 0 10px -90px; letter-spacing:-5px;}*/
.project-bloque1 .textbox h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.project-bloque1 .textbox h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 40px;
}

.project-bloque1 .textbox p {
  font-size: 15px;
  line-height: 130%;
  font-weight: 400;
}

.project-bloque1 .textbox a.project-url {
  display: inline-block;
  margin-top: 30px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  color: black;
}

.project-bloque1 .textbox a.project-url:hover {
  text-decoration: none;
  opacity: 0.7;
}

/*.project-bloque2 { margin-bottom:20px; position:relative;}
.project-bloque2 img {width:90%;}
.project-bloque2 .textbox {opacity:0; z-index:2; top:60px; right:0; position:absolute; background-color:white; padding:60px 50px 60px 10px; width:40%;}
.project-bloque2 .textbox h2 {font-size:70px; font-weight:700; margin:-100px 0 30px -20px; letter-spacing:-3px;}
.project-bloque2 .textbox p {font-size:17px; line-height:130%; font-weight:400; }
*/
.project-imagenes-full {
  text-align: center;
}

.project-imagenes-full img, .project-imagenes-left img, .project-imagenes-right img {
  margin-bottom: 35px;
}

.project-imagenes-full img:last-child {
  margin-top: 30px;
}

.project-imagenes-left, .project-imagenes-right {
  float: left;
  width: 50%;
}

.project-imagenes-left {
  padding-right: 8px;
}

.project-imagenes-right {
  padding-left: 8px;
}

.project-map {
  margin: 20px 0 40px;
}

.project-map__map {
  background: #f1f1f1;
  height: 450px;
}

.project__info {
  position: relative;
  margin-bottom: 20px;
}

.project__info p {
  font-size: 17px;
  font-weight: 700;
  line-height: 110%;
}

.project__info p span {
  font-weight: 300;
}

a.project-bt {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px 10px;
  color: #5a5a5a;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
}

.project-planos {
  margin: 20px 0 40px;
}

.project-planos .project-planos__plano {
  float: left;
  width: 50%;
  padding-right: 20px;
}

/* SINGLE PROJECT CHANGESSS!! */
.project-bloquetexto {
  margin-bottom: 50px;
}

.project-bloquetexto .project-texto-columna1 {
  float: left;
  width: 25%;
  padding-right: 3%;
}

.project-bloquetexto .project-texto-columna2 {
  float: left;
  width: 50%;
  padding-right: 3%;
}

.project-bloquetexto .project-texto-columna3 {
  float: left;
  width: 25%;
  text-align: right;
}

.project-bloquetexto .project-texto-columna1 h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.project-bloquetexto .project-texto-columna1 h3 {
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 40px;
}

.project-bloquetexto .project-texto-columna1 a.link-project-url {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: black;
  width: 100%;
}

.project-bloquetexto .project-texto-columna1 a.link-project-url:hover {
  text-decoration: none;
  opacity: 0.7;
}

.project-bloquetexto .project-texto-columna2 p {
  font-size: 26px;
  line-height: 130%;
  font-weight: 400;
}

.project-bloquetexto .project-texto-columna3 a.link-project-googlemaps {
  display: inline-block;
  color: #5a5a5a;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent url(../images/googlemaps.svg) no-repeat right center;
  padding-right: 30px;
  line-height: 27px;
}

.project-bloquetexto .project-texto-columna3 a.link-project-googlemaps:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media only screen and (max-width: 1200px) {
  .project-bloque1 .textbox {
    padding: 40px 20px 40px 0;
  }

  /*.project-bloque1 .textbox h1 { font-size: 100px; margin: -40px 0 10px -60px;}*/
  .project-bloque1 .textbox h2 {
    font-size: 26px;
  }

  .project-bloque1 .textbox h3 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .project-bloque1 .textbox p, .project-bloque2 .textbox p {
    font-size: 14px;
  }

  .project-bloque1 .textbox a.project-url {
    margin-top: 20px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 1000px) {
  .cabecera-project {
    height: 250px;
  }

  .cabecera-project h1 {
    font-size: 50px;
  }

  /*.project-bloque1 .textbox h1 { font-size: 70px; margin: -20px 0 10px -45px;}*/
  .project-bloque1 .textbox h2 {
    font-size: 20px;
  }

  .project-bloque1 .textbox h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .project-bloque1 .textbox p, .project-bloque2 .textbox p {
    font-size: 13px;
  }

  .project-bloque1 .textbox a.project-url {
    margin-top: 15px;
    font-size: 13px;
  }

  .project-map__map {
    height: 400px;
  }

  .project-bloquetexto .project-texto-columna1 {
    width: 30%;
  }

  .project-bloquetexto .project-texto-columna2 {
    width: 70%;
    padding-right: 0;
  }

  .project-bloquetexto .project-texto-columna3 {
    width: 100%;
    margin-top: 20px;
  }

  .project-bloquetexto .project-texto-columna1 a.link-project-url {
    font-size: 12px;
  }

  ul.projects li.project-item {
    height: 250px;
  }

  ul.projects li.project-item a .project__title p {
    font-size: 35px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 800px) {
  .cabecera-project {
    height: auto;
    padding: 100px 10px;
  }

  .cabecera-project h1 {
    position: relative;
    font-size: 30px;
  }

  .cabecera-project h3 {
    top: 57%;
  }

  .project-bloque1 img {
    width: 100%;
  }

  .project-bloque1 .textbox {
    width: 100%;
    padding: 0 0 20px 0;
    position: relative;
    transform: none !important;
    opacity: 1 !important;
  }

  .project-imagenes-left, .project-imagenes-right {
    float: none;
    width: 100%;
    padding: 0;
  }

  a.project-bt {
    padding: 0;
    position: relative;
  }

  .nav-next a {
    padding: 4px 0 0 25px;
  }

  .nav-previous a {
    padding: 4px 25px 0 0;
  }

  .nav-previous a, .nav-next a {
    background-size: 15px;
  }

  .nav-next a span, .nav-previous a span {
    font-size: 12px;
  }

  .project-map__map {
    height: 350px;
  }

  .project-bloquetexto .project-texto-columna1 {
    float: none;
    width: 100%;
    padding-right: 0;
  }

  .project-bloquetexto .project-texto-columna2 {
    float: none;
    width: 100%;
  }

  .project-bloquetexto .project-texto-columna3 {
    float: none;
    width: 100%;
  }

  .project-bloquetexto .project-texto-columna1 h2 {
    font-size: 20px;
  }

  .project-bloquetexto .project-texto-columna1 h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  ul.projects li.project-item {
    height: 200px;
  }

  ul.projects li.project-item a .project__title p {
    font-size: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .cabecera-project {
    margin-top: 60px;
  }

  ul.projects li.project-item {
    width: 100%;
    float: none;
    height: 130px;
  }

  ul.projects li.project-item a .project__title p {
    font-size: 25px;
  }
}
/* ------------------------------------------------------------------------- */
/* FOOTER STYLES */
/* ------------------------------------------------------------------------- */
footer {
  background-color: #000;
  padding: 50px 0 20px;
  position: relative;
  margin-top: 40px;
}

footer .footer-logo {
  float: left;
  margin-right: 130px;
}

footer .footer-logo .bottom_logo {
  width: 70px;
}

footer .footer-bottom {
  margin: 40px 0 20px;
  color: white;
  font-size: 14px;
}

footer .footer-bottom a {
  display: inline-block;
  text-decoration: none;
  color: white;
  margin-left: 20px;
}

footer .footer-bottom a:hover {
  text-decoration: underline;
}

footer .footer-box {
  float: left;
  margin-right: 20px;
  width: 260px;
}

footer .footer-box h5 {
  font-size: 20px;
  color: white;
  margin-bottom: 15px;
}

footer .footer-box p {
  font-size: 14px;
  line-height: 170%;
  color: white;
  margin-bottom: 15px;
}

footer .footer-box p a {
  display: inline-block;
  text-decoration: none;
  color: white;
  font-weight: 600;
}

footer .footer-box p a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 1000px) {
  footer .footer-logo {
    margin-right: 50px;
  }

  footer .footer-box {
    width: 220px;
  }
}
@media only screen and (max-width: 800px) {
  footer .footer-box p {
    font-size: 12px;
  }

  footer .footer-box {
    width: 180px;
  }
}
@media only screen and (max-width: 600px) {
  footer .footer-logo .bottom_logo {
    width: 50px;
  }

  footer .footer-logo, footer .footer-box {
    margin-right: 0;
    float: none;
    margin-bottom: 20px;
  }
}

/*# sourceMappingURL=webcooking.min.css.map*/