/*
 *  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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-touch-action: pan-Y;
  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 {
  -ms-touch-action: pan-y;
      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 {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  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;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  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 {
  -webkit-transform-style: preserve-3d;
          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.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
      -ms-transform: scale(1.3, 1.3);
          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;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  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-carousel .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.owl-carousel .owl-nav [class*=owl-] {
  color: #E52A2B;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #E6E3D5;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.owl-carousel .owl-nav [class*=owl-]:hover {
  background: #E52A2B;
  color: #E52A2B;
  text-decoration: none;
}
.owl-carousel .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-carousel .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: inline;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.owl-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 5px 7px;
  border: 1px solid #E6E3D5;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  background: #E6E3D5;
}
.owl-carousel .owl-dots .owl-dot.active span {
  background: #E52A2B;
}
.owl-carousel .owl-dots .owl-dot:hover span {
  background: #e84142;
}

/**
*
* Testing
*
**/
.include-media-test {
  font-size: 5em;
  padding: 2em;
}
@media (max-width: 460px) {
  .include-media-test {
    background-color: #def;
  }
  .include-media-test:before {
    content: "<=phone";
  }
}
@media (min-width: 461px) {
  .include-media-test {
    background-color: #abc;
  }
  .include-media-test:before {
    content: ">phone";
  }
}
@media (min-width: 815px) and (max-width: 1023px) {
  .include-media-test {
    background-color: #fed;
  }
  .include-media-test:before {
    content: ">=815px, <desktop";
  }
}
@media (min-width: 1024px) {
  .include-media-test {
    background-color: #fab;
  }
  .include-media-test:before {
    content: ">=desktop";
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (min-resolution: 192dpi) {
  .include-media-test:after {
    content: "Retina" !important;
  }
}

:root {
  --mw: 1024px;
}

*,
*:after,
*:before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 51.8%;
  scroll-behavior: smooth;
  padding: 0;
}

body {
  color: #AAAAAA;
  font-family: "Hind";
  font-size: 1.6em;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin: 0;
}
body .wrap {
  background-image: url("../img/bg-all.png");
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

blockquote {
  border-left: 0.3rem solid #666666;
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.5rem;
}
blockquote *:last-child {
  margin-bottom: 0;
}

.button,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  background-color: #E52A2B;
  border: 0.1rem solid #E52A2B;
  border-radius: 0.4rem;
  color: #FFFEFA;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  height: 3.8rem;
  letter-spacing: 0.1rem;
  line-height: 3.8rem;
  padding: 0 3rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.button:focus, .button:hover,
button:focus,
button:hover,
input[type=button]:focus,
input[type=button]:hover,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=submit]:focus,
input[type=submit]:hover {
  background-color: #AAAAAA;
  border-color: #000000;
  color: #FFFEFA;
  outline: 0;
}
.button[disabled],
button[disabled],
input[type=button][disabled],
input[type=reset][disabled],
input[type=submit][disabled] {
  cursor: default;
  opacity: 0.5;
}
.button[disabled]:focus, .button[disabled]:hover,
button[disabled]:focus,
button[disabled]:hover,
input[type=button][disabled]:focus,
input[type=button][disabled]:hover,
input[type=reset][disabled]:focus,
input[type=reset][disabled]:hover,
input[type=submit][disabled]:focus,
input[type=submit][disabled]:hover {
  background-color: #E52A2B;
  border-color: #E52A2B;
}
.button.button-outline,
button.button-outline,
input[type=button].button-outline,
input[type=reset].button-outline,
input[type=submit].button-outline {
  background-color: transparent;
  color: #E52A2B;
}
.button.button-outline:focus, .button.button-outline:hover,
button.button-outline:focus,
button.button-outline:hover,
input[type=button].button-outline:focus,
input[type=button].button-outline:hover,
input[type=reset].button-outline:focus,
input[type=reset].button-outline:hover,
input[type=submit].button-outline:focus,
input[type=submit].button-outline:hover {
  background-color: transparent;
  border-color: #AAAAAA;
  color: #AAAAAA;
}
.button.button-outline[disabled]:focus, .button.button-outline[disabled]:hover,
button.button-outline[disabled]:focus,
button.button-outline[disabled]:hover,
input[type=button].button-outline[disabled]:focus,
input[type=button].button-outline[disabled]:hover,
input[type=reset].button-outline[disabled]:focus,
input[type=reset].button-outline[disabled]:hover,
input[type=submit].button-outline[disabled]:focus,
input[type=submit].button-outline[disabled]:hover {
  border-color: inherit;
  color: #E52A2B;
}
.button.button-clear,
button.button-clear,
input[type=button].button-clear,
input[type=reset].button-clear,
input[type=submit].button-clear {
  background-color: transparent;
  border-color: transparent;
  color: #E52A2B;
}
.button.button-clear:focus, .button.button-clear:hover,
button.button-clear:focus,
button.button-clear:hover,
input[type=button].button-clear:focus,
input[type=button].button-clear:hover,
input[type=reset].button-clear:focus,
input[type=reset].button-clear:hover,
input[type=submit].button-clear:focus,
input[type=submit].button-clear:hover {
  background-color: transparent;
  border-color: transparent;
  color: #AAAAAA;
}
.button.button-clear[disabled]:focus, .button.button-clear[disabled]:hover,
button.button-clear[disabled]:focus,
button.button-clear[disabled]:hover,
input[type=button].button-clear[disabled]:focus,
input[type=button].button-clear[disabled]:hover,
input[type=reset].button-clear[disabled]:focus,
input[type=reset].button-clear[disabled]:hover,
input[type=submit].button-clear[disabled]:focus,
input[type=submit].button-clear[disabled]:hover {
  color: #E52A2B;
}
.button.button-arrow,
button.button-arrow,
input[type=button].button-arrow,
input[type=reset].button-arrow,
input[type=submit].button-arrow {
  position: relative;
}
.button.button-arrow:after,
button.button-arrow:after,
input[type=button].button-arrow:after,
input[type=reset].button-arrow:after,
input[type=submit].button-arrow:after {
  content: "";
  display: inline-block;
  background: transparent url("../img/arrow.svg");
  background-size: 99% 99%;
  background-repeat: no-repeat;
  width: 2em;
  height: 2em;
  position: relative;
  top: 0.5em;
  margin-left: 0.5em;
}

input[type=email],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=url],
input[type=color],
input[type=date],
input[type=month],
input[type=week],
input[type=datetime],
input[type=datetime-local],
input:not([type]),
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: 0.1rem solid #666666;
  border-radius: 0.4rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  height: 3.8rem;
  padding: 0.6rem 1rem;
  width: 100%;
}
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=url]:focus,
input[type=color]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
  border-color: #E52A2B;
  outline: 0;
}

select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="%23d1d1d1" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
  padding-right: 3rem;
}
select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="%23E52A2B" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>');
}

textarea {
  min-height: 6.5rem;
}

label,
legend {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

fieldset {
  border-width: 0;
  padding: 0;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

.label-inline {
  display: inline-block;
  font-weight: normal;
  margin-left: 0.5rem;
}

.container {
  margin: 0 auto;
  max-width: 112rem;
  padding: 0 2rem;
  position: relative;
  width: 100%;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  width: 100%;
}
.row.row-no-padding {
  padding: 0;
}
.row.row-no-padding > .column {
  padding: 0;
}
.row.row-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.row.row-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.row.row-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.row.row-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.row.row-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.row.row-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.row.row-justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row .column {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-left: 0;
  max-width: 100%;
  width: 100%;
}
.row .column.column-offset-10 {
  margin-left: 10%;
}
.row .column.column-offset-20 {
  margin-left: 20%;
}
.row .column.column-offset-25 {
  margin-left: 25%;
}
.row .column.column-offset-33, .row .column.column-offset-34 {
  margin-left: 33.3333%;
}
.row .column.column-offset-50 {
  margin-left: 50%;
}
.row .column.column-offset-66, .row .column.column-offset-67 {
  margin-left: 66.6666%;
}
.row .column.column-offset-75 {
  margin-left: 75%;
}
.row .column.column-offset-80 {
  margin-left: 80%;
}
.row .column.column-offset-90 {
  margin-left: 90%;
}
.row .column.column-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10%;
          flex: 0 0 10%;
  max-width: 10%;
}
.row .column.column-20 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}
.row .column.column-25 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}
.row .column.column-33, .row .column.column-34 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.row .column.column-40 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  max-width: 40%;
}
.row .column.column-50 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}
.row .column.column-60 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  max-width: 60%;
}
.row .column.column-66, .row .column.column-67 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666%;
          flex: 0 0 66.6666%;
  max-width: 66.6666%;
}
.row .column.column-75 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}
.row .column.column-80 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  max-width: 80%;
}
.row .column.column-90 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 90%;
          flex: 0 0 90%;
  max-width: 90%;
}
.row .column .column-top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.row .column .column-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.row .column .column-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 40rem) {
  .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: -1rem;
    width: calc(100% + 2.0rem);
  }
  .row .column {
    margin-bottom: inherit;
    padding: 0 1rem;
  }
}
a {
  color: #E52A2B;
  text-decoration: none;
}
a:focus, a:hover {
  color: #AAAAAA;
}

dl,
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}
dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol,
ul ul {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3rem;
}

ol {
  list-style: decimal inside;
}

ul {
  list-style: circle inside;
}

.button,
button,
dd,
dt,
li {
  margin-bottom: 1rem;
}

fieldset,
input,
select,
textarea {
  margin-bottom: 1.5rem;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 2.5rem;
}

b,
strong {
  font-weight: bold;
}

p {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: -0.1rem;
  margin-bottom: 2rem;
  margin-top: 0;
}

h1 {
  font-size: 4.6rem;
  line-height: 1.2;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.3;
}

h4 {
  font-size: 2.2rem;
  letter-spacing: -0.08rem;
  line-height: 1.35;
}

h5 {
  font-size: 1.8rem;
  letter-spacing: -0.05rem;
  line-height: 1.5;
}

h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

header {
  z-index: 10;
  position: relative;
  min-width: 100%;
}

.H-info-content {
  position: relative;
  width: 100%;
  margin: auto;
  max-width: 1024px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.H-info {
  width: 100%;
  background: #000000;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.H-contac, .H-brochure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.H-contac h5, .H-brochure h5 {
  display: inline;
  margin-right: 1em;
  color: #FFFEFA;
}
.H-contac a, .H-brochure a {
  color: #FFFEFA;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.H-contac a .ico-tel,
.H-contac a .ico-email,
.H-contac a .ico-download, .H-brochure a .ico-tel,
.H-brochure a .ico-email,
.H-brochure a .ico-download {
  margin: 0 0.5em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.H-contac a .ico-tel img,
.H-contac a .ico-email img,
.H-contac a .ico-download img, .H-brochure a .ico-tel img,
.H-brochure a .ico-email img,
.H-brochure a .ico-download img {
  max-width: 22px;
  max-width: 22px;
}
.H-contac a .ico-download, .H-brochure a .ico-download {
  width: 22px;
}
.H-contac {
  width: 100%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media (min-width: 769px) {
  .H-contac {
    width: initial;
  }
}
.H-brochure {
  display: none;
}
@media (min-width: 769px) {
  .H-brochure {
    display: block;
  }
}
.H-contac a:nth-child(1) {
  margin-right: 1em;
}

.H-principal {
  width: 100% !important;
  border-top: #E52A2B 2px solid;
  -webkit-box-shadow: 0 4px 12px 0px rgba(102, 102, 102, 0.25);
          box-shadow: 0 4px 12px 0px rgba(102, 102, 102, 0.25);
  background: #FFFEFA;
  height: 105px;
  padding: 0;
}

.H-principal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 95%;
  margin: 0 auto;
  max-width: 1024px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 769px) {
  .H-principal-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.H-logoa {
  max-width: 40%;
  height: 105px;
}

figure.H-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  position: relative;
  left: 0em;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.H-nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  width: 100%;
  padding: 1em 2.5em;
  margin-left: -1em;
  overflow: hidden;
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #FFFEFA;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
}
.H-nav-content a {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  margin: 0;
}
.H-nav-content a.active {
  color: #E52A2B;
  font-weight: bold;
}
@media (min-width: 769px) {
  .H-nav-content {
    overflow: visible;
    -webkit-transform-origin: top right;
        -ms-transform-origin: top right;
            transform-origin: top right;
    position: initial;
    height: initial;
    width: initial;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
            transform: scaleY(1);
  }
  .H-nav-content > a {
    position: relative;
    width: 100px;
    text-align: center;
  }
  .H-nav-content > a:hover:before {
    bottom: -22px;
    top: 60px;
    opacity: 1;
  }
  .H-nav-content > a:before {
    content: "";
    width: 120px;
    height: 10px;
    background: #E52A2B;
    position: absolute;
    top: 30px;
    left: -10px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
  }
}
.H-nav-active {
  background: red;
}
.H-nav-active .H-nav-content {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}
.H-nav-active .H-nav-toggle {
  border-width: 0;
}
.H-nav-active .H-nav-toggle:before {
  top: 11px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.H-nav-active .H-nav-toggle:after {
  top: 11px;
  opacity: 1;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.H-nav-toggle {
  position: absolute;
  top: 30px;
  right: 1em;
  width: 36px;
  height: 33px;
  border-top: 6px solid #E52A2B;
  border-bottom: 6px solid #E52A2B;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.H-nav-toggle:before, .H-nav-toggle:after {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  width: 100%;
  height: 6px;
  content: "";
  background: #E52A2B;
  top: 7px;
}
.H-nav-toggle:after {
  opacity: 0;
}
@media (min-width: 769px) {
  .H-nav-toggle {
    display: none;
  }
}
.H-nav a {
  color: #666666;
  font-size: 2rem;
  padding: 0.5em 0;
}
@media (min-width: 769px) {
  .H-nav a {
    margin-right: 2em;
  }
}
.H-nav a:hover {
  color: #E52A2B;
}
.H-nav .lang {
  color: #666666;
  border: #000000 solid 1px;
  background: #fff;
  position: relative;
  width: 130px;
  height: 42px;
  padding: 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 2em 0 1rem 0;
}
@media (min-width: 769px) {
  .H-nav .lang {
    margin: 0 0 1rem 1.5em;
  }
}
.H-nav .lang:hover .lang-select, .H-nav .lang:focus .lang-select {
  left: 120%;
  top: -5px;
  opacity: 1;
  pointer-events: all;
}
@media (min-width: 769px) {
  .H-nav .lang:hover .lang-select, .H-nav .lang:focus .lang-select {
    left: 0;
    top: 130%;
  }
}
.H-nav .lang .ico-flag {
  position: absolute;
  width: 16px;
  height: 10px;
  top: 9px;
  left: 15px;
  padding: 0;
  margin: 0;
}
.H-nav .lang .ico-flag img {
  padding: 0;
  margin: 0;
  width: 100%;
}
.H-nav .lang .lang-selected {
  background-color: #e6e6e6;
  height: 32px;
  padding-left: 3em;
  border: none;
}
.H-nav .lang .lang-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  background: #FFFEFA;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  top: 200%;
  width: 100%;
  left: 0;
  padding: 0.5em;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.H-nav .lang .lang-select:before {
  content: "";
  position: absolute;
  bottom: 100%;
  width: 100%;
  background: transparent;
  height: 2em;
  left: 0;
}
.H-nav .lang .lang-select-isActive {
  left: 120%;
  top: 0;
  opacity: 1;
}
@media (min-width: 769px) {
  .H-nav .lang .lang-select-isActive {
    left: 0;
    top: 130%;
  }
}
.H-nav .lang .lang-select a {
  position: relative;
  font-size: 1.4rem;
  font-weight: normal;
  padding: 0.5em 5rem;
  text-align: left;
  width: 100%;
}
.H-nav .lang .lang-select a:hover {
  background: rgba(0, 0, 0, 0.09);
  color: #000000;
}

.preload {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  background: #FFFEFA;
}
.preload-logo {
  position: absolute;
  left: calc(50% - 15vh);
  top: calc(50% - 15vh);
  width: 30vh;
  height: 30vh;
  margin: 0;
  padding: 0;
  -webkit-animation: preload 3s ease alternate infinite;
          animation: preload 3s ease alternate infinite;
}
.preload.preload--finish {
  background: transparent;
  pointer-events: none;
}
.preload.preload--finish .preload-logo {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes preload {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes preload {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.C {
  width: 100%;
  position: relative;
  border-bottom: 5px solid #E52A2B;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-box-shadow: 0 9px 9px rgba(0, 0, 0, 0.3);
          box-shadow: 0 9px 9px rgba(0, 0, 0, 0.3);
}
.C-title {
  background: #4F4F4F;
  text-align: center;
  margin: 0;
  padding: 1.5em 0 2em;
  color: #FFFEFA;
}
.C-items, .C ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em 0 3em;
  margin: 0;
  max-width: 100vw;
  background: #4F4F4F;
  list-style: none;
}
.C-item {
  padding: 0;
  margin: 1em;
  height: 50px;
}
.C-item img {
  max-height: 100%;
}

img.C-img {
  padding: 0;
  width: 100%;
  position: relative;
  bottom: -0.6em;
  margin-top: 5em;
  margin-bottom: 0;
  pointer-events: none;
}

.Maps {
  height: 40vh;
  background: #EAECEB;
}
.Maps iframe {
  width: 100%;
  height: 40vh;
}

footer {
  background: #000000;
  padding: 0;
  position: relative;
  z-index: 2em;
  -webkit-box-shadow: 0 -3px 9px rgba(0, 0, 0, 0.3);
          box-shadow: 0 -3px 9px rgba(0, 0, 0, 0.3);
}

.F-cont {
  max-width: 1024px;
  padding: 1em;
  margin: auto;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 6em;
  padding-bottom: 3em;
}
@media (min-width: 769px) {
  .F-cont {
    padding-bottom: 1em;
    padding-top: 1em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.F-cont .logoSVG {
  -webkit-transform: scale(1.8);
      -ms-transform: scale(1.8);
          transform: scale(1.8);
}
.F-cont .logoSVG .b {
  fill: #FFFEFA;
}
.F-cont .logoSVG .circle {
  fill: #E52A2B;
}

.F-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3em;
  position: relative;
  margin: 4.5em 1em 2em;
}
@media (min-width: 769px) {
  .F-text {
    margin: 0;
  }
}
.F-text p {
  max-width: 180px;
  color: #FFFEFA;
}
.F-text ul {
  margin-left: 3em;
  list-style: none;
}
.F-text ul li {
  position: relative;
}
.F-text ul li a {
  color: #FFFEFA;
}
.F-text ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  background: #E52A2B;
  position: absolute;
  display: block;
  left: -20px;
  margin-top: 0.3em;
  border-radius: 50%;
}
.F-text:before, .F-text:after {
  background: #FFFEFA;
  content: "";
  bottom: 3px;
  height: 6px;
  left: -40px;
  position: absolute;
  width: 110%;
}
.F-text:after {
  background: rgba(229, 42, 43, 0.8);
  width: 6px;
  height: 200px;
  left: -10px;
  bottom: 0px;
}

.F-info {
  border: 1px solid white;
  border-radius: 1em;
  padding: 2em 3.5em;
  position: relative;
}
.F-info:before {
  content: "";
  position: absolute;
  left: -40px;
  top: 10px;
  width: 80px;
  height: 120px;
  z-index: 1;
  background-image: url(../img/placeholder.svg);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.F-info p {
  max-width: 190px;
  font-size: 1.8rem;
  margin-bottom: 0;
  color: white;
}

.F-cellos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 30px;
}
.F-cellos img {
  border-radius: 50%;
  max-width: 70px;
  padding: 0.5em 0;
}

.F-info-text {
  line-height: 1.6em;
}

.F-info-buttons {
  position: absolute;
  bottom: -25px;
  left: calc(50% - 62px);
}

.F-disclaimer {
  background: #4C4C4C;
  padding: 0.5em;
}
.F-disclaimer p {
  margin-bottom: 0;
  text-align: center;
}

.GEN-header {
  position: relative;
  height: 140px;
  border-bottom: 5px solid #E52A2B;
  overflow: hidden;
}
.GEN-header.GEN-header-big {
  height: auto;
}
.GEN-header.GEN-header-big .GEN-header-fondo {
  display: block;
  padding: 0;
  margin: 0;
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
@media (min-width: 1025px) {
  .GEN-header.GEN-header-big .GEN-header-fondo {
    min-height: auto;
    min-width: 100%;
  }
}
.GEN-header.GEN-header-big:hover .GEN-header-fondo {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}
.GEN-header.GEN-header-big:hover .GEN-header-text {
  opacity: 0;
}
.GEN-header-fondo {
  display: block;
  -webkit-filter: sepia(60%) brightness(0.7) blur(1px);
          filter: sepia(60%) brightness(0.7) blur(1px);
  width: 100%;
  min-height: 100%;
}
.GEN-header-text {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.GEN-header h1 {
  max-width: 1200;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0.6em 0;
  font-weight: bold;
  margin: 0 auto;
  max-width: 1024px;
  color: #FFFEFA;
  text-transform: uppercase;
}
.GEN-header h1 span {
  font-weight: normal;
  display: block;
  font-size: 0.7em;
  line-height: 0.7em;
}
.GEN-subHeader {
  text-align: center;
  background: #FFFAEF;
  z-index: 4;
}
.GEN-subHeader h2 {
  padding-top: 25px;
  padding-bottom: 25px;
  margin-bottom: 0;
  font-size: 1.9em;
  font-weight: bold;
  color: #E52A2B;
}
.GEN-wrap {
  padding: 2em 3em 58rem;
  max-width: 1024px;
  background: rgba(255, 254, 250, 0.7);
  margin: auto;
}
.GEN-wrap p {
  color: #333333;
  margin-bottom: 1m;
  font-size: 1.6em;
}

.P-volver {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 4em;
  display: none;
  font-size: 2rem;
  padding: 0.5em 0;
  height: auto;
}
.P-volver i {
  display: block;
  font-style: normal;
  margin-right: 1em;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  font-size: 1.7em;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.P-volver:hover, .P-volver:focus {
  background: #E52A2B;
}
.P-volver:hover i, .P-volver:focus i {
  -webkit-transform: translateX(-10px) rotate(180deg);
      -ms-transform: translateX(-10px) rotate(180deg);
          transform: translateX(-10px) rotate(180deg);
}
.P-volver.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.P-wrap {
  width: 90%;
  margin: 0.8em auto 0;
  padding: 0;
  max-width: 1024px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-align: strech;
      -ms-flex-align: strech;
          align-items: strech;
}
@media (min-width: 769px) {
  .P-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.P-aside {
  height: 100%;
  width: 100%;
  margin-top: 1em;
}
@media (min-width: 769px) {
  .P-aside {
    margin-top: 3em;
    height: 100%;
    position: relative;
    margin-top: 1em;
    height: 100%;
    width: 35%;
  }
}
@media (min-width: 1025px) {
  .P-aside {
    width: 25%;
  }
}
.P-aside h3 {
  padding-left: 20px;
  color: #000000;
  position: relative;
  font-weight: bold;
  font-size: 1.7em;
  text-transform: uppercase;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1.1em;
}
@media (min-width: 769px) {
  .P-aside h3 {
    text-align: left;
    margin-bottom: 0.6em;
    font-size: 2.5rem;
  }
}
.P-aside > ul {
  borde: 1px solid #A1A1A1;
  border-radius: 0.5em;
  background: #f1f1f1;
}
@media (min-width: 769px) {
  .P-aside > ul {
    height: 100%;
    padding-bottom: 58rem;
  }
}
.P-aside > ul:after {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: calc(100% + 30px);
  height: 10px;
  background: #000000;
}
@media (min-width: 769px) {
  .P-aside > ul:after {
    top: 30px;
  }
}
.P-aside > ul:before {
  content: "";
  position: absolute;
  left: -5px;
  top: -30px;
  width: 10px;
  height: 160px;
  background: #E52A2B;
}
@media (min-width: 769px) {
  .P-aside > ul:before {
    top: -10px;
    height: 360px;
  }
}
.P-aside .P-aside-subTitleobras {
  cursor: pointer;
  padding: 0.7em 1.2em 0.5em;
  background: #e5e5e5;
  color: #000000;
  display: block;
}
@media (min-width: 769px) {
  .P-aside .P-aside-subTitleobras {
    display: none;
  }
}
.P-aside .P-aside-ul-mobile {
  height: auto;
  margin-top: -2em !important;
  overflow: hidden;
}
.P-aside .P-aside-ul-mobile.P-aside-ul-active {
  margin-top: -2em !important;
  height: auto;
}
.P-aside-obra {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  overflow: hidden;
  -ms-flex-line-pack: center;
      align-content: center;
  min-width: 180px;
}
@media (min-width: 769px) {
  .P-aside-obra {
    border-bottom: 1px solid #e1e1e1;
  }
}
.P-aside-obra:nth-child(1) {
  padding-top: 0.5em;
}
.P-aside-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  line-height: 1em;
  color: #000000;
  margin: 0;
  display: block;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  position: relative;
  padding: 1em;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 769px) {
  .P-aside-title {
    padding: 1.2em 2.2em 0.8em 1.2em;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .P-aside-title:after {
    -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
            transform-origin: center center;
    position: absolute;
    right: 10px;
    content: url("../img/arrow.svg");
    width: 30px;
    height: 30px;
    color: #e1e1e1;
    font-size: 1.6em;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.P-aside-title:hover {
  color: #E52A2B;
}
.P-aside-subNav {
  display: none !important;
}
@media (min-width: 769px) {
  .P-aside-subNav {
    display: block !important;
    margin: 0;
    margin-left: 4rem;
    height: 0;
    -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
            transform-origin: top left;
    position: relative;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
    list-style: none;
    width: 80%;
  }
  .P-aside-subNav li {
    margin-bottom: 0.2em;
    width: 100%;
  }
  .P-aside-subNav a {
    font-size: 1.6rem;
    margin: 0;
    display: block;
    color: #000000;
  }
  .P-aside-subNav a:hover {
    color: #E52A2B;
  }
  .P-aside-subNav a.active {
    color: #E52A2B;
    font-weight: bold;
  }
}
.P-aside-obra-active .P-aside-subNav {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  height: auto;
}
.P-aside-obra-active .P-aside-title {
  font-weight: bold;
  color: #E52A2B;
}
.P-aside-obra-active .P-aside-title:after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  color: blue;
}
.P-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-bottom: 58rem;
}
@media (min-width: 769px) {
  .P-content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 2em;
    padding-top: 1em;
    width: 65%;
  }
}
@media (min-width: 1025px) {
  .P-content {
    width: 75%;
  }
}
.P-content:after {
  content: "";
  height: calc(100% + 67em);
  position: absolute;
  opacity: 0;
  background: #f1f1f1;
  z-index: -1;
}
@media (min-width: 769px) {
  .P-content:after {
    opacity: 1;
    top: 3.5em;
    left: -53%;
    width: 53%;
  }
}
@media (min-width: 1025px) {
  .P-content:after {
    left: -33%;
    width: 33%;
  }
}
.P-content:before {
  content: "";
  width: 180px;
  height: calc(100% + 67em);
  background: #E52A2B;
  position: absolute;
  top: 1em;
  right: 0;
  z-index: -1;
}
.P-articles {
  background: red;
  margin-bottom: 2em;
}

.P-article {
  margin: 0;
  margin-bottom: 2.5em;
  width: 400px;
  height: 230px;
  top: 0;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (min-width: 769px) {
  .P-article {
    margin-left: 10%;
    width: 45%;
    margin-left: 5%;
    height: 150px;
  }
  .P-article.P-article-active {
    margin-left: 0;
    width: 100%;
  }
}
@media (min-width: 1025px) {
  .P-article {
    max-width: 30%;
    min-width: 30%;
    margin-left: 3.333%;
  }
  .P-article.P-article-active {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
  }
}
.P-article.none {
  display: none;
  height: 1px;
}
.P-article-title {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  padding: 1.9em 0.5em 0.2em;
  width: 100%;
  font-size: 2rem;
  display: block;
  z-index: 2;
  color: #FFFEFA;
  pointer-events: none;
  text-shadow: 0 0 1px #000000;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  background: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(95%, rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, black 0%, rgba(0, 0, 0, 0) 95%);
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 95%);
  background-size: 100% 200%;
  background-position: 0 10%;
}
.P-article-button {
  position: absolute;
  z-index: 2;
  bottom: 10%;
  right: 50%;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
.P-article-img {
  position: relative;
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border: 5px white solid;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 769px) {
  .P-article-img {
    height: 150px;
  }
}
.P-article-img img {
  position: relative;
  display: block;
  height: 100%;
}
@media (min-width: 1025px) {
  .P-article:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-box-shadow: 0px 30px 30px 10px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 30px 30px 10px rgba(0, 0, 0, 0.25);
    z-index: 2;
  }
  .P-article:hover .P-article-img {
    border: 5px rgba(0, 0, 0, 0.8) solid;
    border-radius: 6px;
  }
  .P-article:hover .P-article-button {
    right: 2%;
    opacity: 1;
  }
  .P-article:hover .P-article-title {
    bottom: calc(10% + 2em);
    border-radius: 6px 6px 0 0;
    width: 100%;
    font-size: 1.7rem;
    padding: 0.5em 0.5em 1em;
    display: block;
    background-position: 0 50%;
    background-size: 100% 300%;
  }
}
.P-article.P-article-active {
  width: 100%;
  cursor: initial;
  height: auto;
  padding: 0 0 0 1em;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: visible;
}
.P-article.P-article-active:hover {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: initial;
  top: auto;
}
.P-article.P-article-active:hover .P-article-button {
  display: none;
}
.P-article.P-article-active:hover .P-article-img {
  border: none;
  border-radius: 6px;
}
.P-article.P-article-active:hover .P-article-title {
  display: none;
}
.P-article.P-article-active .P-article-title {
  top: 0;
  bottom: auto;
  display: none;
}
.P-article.P-article-active .P-article-img {
  width: 100%;
  overflow: visible;
  height: auto;
  border: none;
}
.P-article.P-article-active .P-article-img img {
  max-height: 450px;
  min-width: 100%;
  position: relative;
  left: 0;
}
.P-article.P-article-active .DP-imageDesc {
  display: block;
  opacity: 1;
  pointer-events: all;
  width: 180px;
}
@media (max-width: 767px) {
  .P-article.P-article-active .DP-imageDesc {
    position: relative;
    width: 100%;
    background: #000000;
    border-top: 20px solid #E52A2B;
    padding-bottom: 1.3em;
  }
}
@media (max-width: 767px) {
  .P-article.P-article-active .DP-details {
    text-align: left;
  }
  .P-article.P-article-active .DP-details h3 {
    margin-bottom: 0.2em;
  }
  .P-article.P-article-active .DP-details p {
    display: inline;
  }
  .P-article.P-article-active .DP-details p:nth-child(3) {
    margin-right: 1em;
  }
  .P-article.P-article-active .DP-details:after, .P-article.P-article-active .DP-details:before {
    display: none;
  }
}
.P-article.P-article-active .DP-imagePri {
  margin: 0 0 2em 0;
}
@media (max-width: 767px) {
  .P-article.P-article-active .DP-imagePri {
    margin: 0;
  }
}
.P-article.P-article-active .DP-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  pointer-events: all;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.P-article.P-article-active .DP-gallery-img {
  margin: 0.5em 0;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.P-article.P-article-active .DP-gallery-img:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media (min-width: 769px) {
  .P-article.P-article-active .DP-gallery-img {
    width: 30%;
  }
}
.P-article.P-article-active .DP-description {
  opacity: 1;
  display: block;
  pointer-events: all;
}

.C {
  margin-top: -56rem;
}
.C img {
  pointer-events: none;
}

.DP-imageDesc {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3;
  opacity: 0;
  display: none;
  pointer-events: none;
}
.DP-imagePri {
  position: relative;
  display: block;
  background-attachment: red;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  width: 100%;
  z-index: 1;
  -webkit-box-shadow: 0 5px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 6px rgba(0, 0, 0, 0.3);
}
.DP-details {
  position: relative;
  text-align: right;
  padding: 2em 2em 0;
}
.DP-details h3 {
  color: #FFFEFA;
  font-size: 2.5rem;
}
.DP-details p {
  margin-bottom: 0;
  color: #FFFEFA;
}
.DP-details p b {
  font-weight: 600;
}
.DP-details p:nth-child(4) {
  margin-top: 1em;
}
.DP-details:before {
  content: "";
  position: absolute;
  background: #000000;
  right: 10px;
  top: 10px;
  width: 10px;
  height: 120%;
}
.DP-details:after {
  content: "";
  position: absolute;
  background: #E52A2B;
  height: 10px;
  width: 220px;
  bottom: -20px;
  right: -20px;
  left: -20px;
}
.DP-gallery {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  opacity: 0;
  display: none;
  pointer-events: none;
}
@media (min-width: 769px) {
  .DP-gallery {
    max-width: calc(100% - 180px);
  }
}
.DP-gallery-img {
  overflow: hidden;
  border-radius: 6px;
  padding: 0;
  display: block;
  margin-right: 2rem;
}
.DP-gallery-img img {
  display: block;
}
.DP-description {
  max-width: calc(100% - 180px - 2rem);
  margin-top: 2em;
  margin-bottom: 2em;
  color: #000000;
  opacity: 0;
  display: none;
  pointer-events: none;
}

.DP-gallery-modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -o-radial-gradient(rgba(0, 0, 0, 0.3) 15%, transparent 6%) 0 0, -o-radial-gradient(rgba(0, 0, 0, 0.3) 15%, transparent 6%) 8px 8px, -o-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 10%) 0 1px, -o-radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 10%) 8px 9px;
  background: radial-gradient(rgba(0, 0, 0, 0.3) 15%, transparent 6%) 0 0, radial-gradient(rgba(0, 0, 0, 0.3) 15%, transparent 6%) 8px 8px, radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 10%) 0 1px, radial-gradient(rgba(255, 255, 255, 0.1) 15%, transparent 10%) 8px 9px;
  background-size: 24px 24px;
  background-color: rgba(40, 40, 40, 0.8);
  z-index: 99;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.DP-gallery-modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 900px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.close {
  color: white;
  position: fixed;
  top: 10px;
  right: 25px;
  font-size: 21px;
  font-weight: bold;
  z-index: 9999;
}

.close:hover,
.close:focus {
  color: #E52A2B;
  text-decoration: none;
  cursor: pointer;
}

.DP-gallery-modal-img {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  max-width: 80%;
  max-height: 80vh;
  position: relative;
}
.DP-gallery-modal-img img {
  border: 10px solid #FFF;
  top: -30px;
  border-radius: 6px;
  -webkit-box-shadow: 0 60px 30px -40px rgba(0, 0, 0, 0.25);
          box-shadow: 0 60px 30px -40px rgba(0, 0, 0, 0.25);
  max-height: 80vh;
}

.DP-prev,
.DP-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 3em 2em;
  margin-top: -3em;
  color: white;
  font-weight: bold;
  font-size: 20px;
  -webkit-transition: 0.6s ease;
  -o-transition: 0.6s ease;
  transition: 0.6s ease;
  border-radius: 0 6px 6px 0;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.DP-prev {
  left: 0;
}

.DP-next {
  right: 0;
  border-radius: 6px 0 0 6px;
}

.DP-prev:hover,
.DP-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: #E52A2B;
}

@media (min-width: 769px) {
  .contContact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    right: 40px;
  }
}

.address {
  margin: 2em;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(#E52A2B), to(#c41819));
  background: -o-linear-gradient(#E52A2B, #c41819);
  background: linear-gradient(#E52A2B, #c41819);
  color: #FFFEFA;
  padding: 3em 2em;
  border-radius: 6px;
}
.address h3 {
  margin-bottom: 0.4em;
}
.address h4 {
  margin-bottom: 0;
}
.address p {
  color: #FFFEFA;
  font-size: 1.6rem;
  margin-bottom: 0.3em;
}
.address a {
  color: #FFFEFA;
}
@media (min-width: 769px) {
  .address {
    left: 80px;
    margin: 0;
  }
}

.contact {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFEFA), to(#fffdf5));
  background: -o-linear-gradient(#FFFEFA, #fffdf5);
  background: linear-gradient(#FFFEFA, #fffdf5);
  border-radius: 6px;
  -webkit-box-shadow: 0 0 40px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 40px 0px rgba(0, 0, 0, 0.1);
  padding: 3em 2em;
}
@media (min-width: 769px) {
  .contact {
    padding: 10rem 12rem 10rem 18rem;
  }
}

.timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18rem;
}

.tm-year {
  position: relative;
  background: #E52A2B;
  display: inline-block;
  color: #FFFEFA;
  padding: 0.2em 1em 0 1em;
  font-size: 2.6rem;
  line-height: 2em;
  letter-spacing: 1px;
  border-radius: 6px;
  text-align: center;
  margin: 3.5em;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0 1.9px 3.6px rgba(0, 0, 0, 0.054), 0 5.3px 10px rgba(0, 0, 0, 0.071), 0 12.7px 24.1px rgba(0, 0, 0, 0.088), 0 42px 80px rgba(0, 0, 0, 0.13);
          box-shadow: 0 1.9px 3.6px rgba(0, 0, 0, 0.054), 0 5.3px 10px rgba(0, 0, 0, 0.071), 0 12.7px 24.1px rgba(0, 0, 0, 0.088), 0 42px 80px rgba(0, 0, 0, 0.13);
}
.tm-year:after, .tm-year:before {
  content: "";
  height: 100%;
  border: 1px solid red;
  position: absolute;
  left: 50%;
}
.tm-year:after {
  bottom: 125%;
}
.tm-year:before {
  top: 125%;
}
.tm-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.tm-content img {
  width: 90%;
  display: block;
  -webkit-box-shadow: 0 1.9px 7.2px -1px rgba(0, 0, 0, 0.14), 0 5.3px 15px -1px rgba(0, 0, 0, 0.097), 0 12.7px 26.4px -1px rgba(0, 0, 0, 0.08), 0 42px 80px -1px rgba(0, 0, 0, 0.062);
          box-shadow: 0 1.9px 7.2px -1px rgba(0, 0, 0, 0.14), 0 5.3px 15px -1px rgba(0, 0, 0, 0.097), 0 12.7px 26.4px -1px rgba(0, 0, 0, 0.08), 0 42px 80px -1px rgba(0, 0, 0, 0.062);
  border-radius: 6px;
  margin-bottom: 3em;
}
.tm-content p {
  min-width: 320px;
  text-align: justify;
}
@media (min-width: 769px) {
  .tm-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .tm-content img {
    width: 55%;
    margin-bottom: auto;
  }
  .tm-content p {
    text-align: right;
    margin: 0 1em 0 0;
  }
  .tm-content:nth-child(4n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .tm-content:nth-child(4n) p {
    margin: 0 0 0 1em;
    text-align: left;
  }
}

.E-title {
  color: #E52A2B;
}

.E-p {
  text-align: justify;
}
@media (min-width: 769px) {
  .E-p {
    text-align: left;
  }
}

h3 {
  color: #E52A2B;
}

.hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 2em;
  background: #000;
  margin-bottom: 2em;
  margin-top: 100px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .hero {
    height: 350px;
  }
}
.hero-image {
  position: absolute;
  -webkit-filter: brightness(0.65);
          filter: brightness(0.65);
  min-height: 100%;
  max-height: 100%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (min-width: 769px) {
  .hero-image {
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    width: 100%;
  }
}
.hero-text {
  z-index: 1;
  text-align: center;
  color: #FFFEFA;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 2px;
  font-size: 3.5rem;
}