@import url("https://fonts.googleapis.com/css?family=Lato:100,300,400&display=swap");
@media only screen and (max-width: 800px) {
  .navbar {
    flex-direction: column; }
    .navbar__logo-container {
      position: absolute;
      left: 0;
      top: 0.35rem; }
    .navbar__links ul.links {
      position: absolute;
      width: 100vw;
      background-color: #303438;
      transform: translateY(-70%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      z-index: -1;
      transition: transform 1s ease;
      padding-bottom: 10px;
      box-shadow: 0px 10px 16px -10px rgba(0, 0, 0, 0.3); }
      .navbar__links ul.links.active {
        transform: translateY(11.5rem);
        animation: fades .5s ease; }
      .navbar__links ul.links li {
        padding: 0.5rem 0; }
    .navbar label.nav-checkbox {
      position: absolute;
      top: 0;
      right: 0; }
      .navbar label.nav-checkbox.active {
        color: #b1b6cf; }
  .nav-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    margin-right: 1rem;
    transition: all .2s ease-in-out; }
    .nav-checkbox__burger {
      opacity: 1;
      width: 3rem;
      height: .4rem;
      background: #E0E2EC;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      transition: all .5s ease-in-out; }
      .nav-checkbox__burger::before {
        content: "";
        position: absolute;
        width: 3rem;
        height: .4rem;
        background: #E0E2EC;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transform: translateY(-1.1rem);
        transition: all .5s ease-in-out; }
      .nav-checkbox__burger::after {
        content: "";
        position: absolute;
        width: 3rem;
        height: .4rem;
        background: #E0E2EC;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        transform: translateY(1.1rem);
        transition: all .5s ease-in-out; }
  .nav-checkbox.open .nav-checkbox__burger {
    transform: translateX(-50px);
    background: transparent;
    box-shadow: none; }
    .nav-checkbox.open .nav-checkbox__burger::before {
      transform: rotate(45deg) translate(35px, -35px); }
    .nav-checkbox.open .nav-checkbox__burger::after {
      transform: rotate(-45deg) translate(35px, 35px); } }

@keyframes fades {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  user-select: none; }

html {
  font-size: 10px;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth; }
  html a:focus {
    outline: none !important; }

body {
  width: 100%;
  height: 100%; }

.navbar {
  transition: all 0.25s ease;
  width: 100%;
  height: 6rem;
  position: fixed;
  z-index: 2;
  background-color: #303438;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  justify-content: space-between; }
  .navbar label {
    font-size: 3rem;
    padding: 0 2rem;
    color: #E0E2EC;
    position: relative;
    transition: color 0.3s ease;
    display: none; }
    .navbar label:hover {
      color: #a1a7c5; }
  .navbar__logo-container {
    margin-top: 0.5rem;
    margin-left: 2rem; }
  .navbar__logo img {
    width: 9rem; }
  .navbar__links {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    .navbar__links ul {
      display: flex;
      list-style: none; }
      .navbar__links ul li a.boton {
        color: #E0E2EC;
        margin: 0 1.5rem;
        text-decoration: none;
        font-size: 2.5rem;
        text-transform: uppercase;
        position: relative;
        font-weight: 300;
        letter-spacing: 0.2rem; }
        .navbar__links ul li a.boton::after {
          content: "";
          position: absolute;
          bottom: -.2rem;
          right: 0;
          height: 0.2rem;
          border-radius: .2rem;
          transform: translateX(-1.5rem);
          width: 90%;
          background-color: #E0E2EC;
          opacity: 0;
          transition: all .5s ease; }
        .navbar__links ul li a.boton.active {
          color: #B4B3A9; }
          .navbar__links ul li a.boton.active::after {
            transform: translateX(-0.3rem);
            opacity: 1; }

.page-section {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  .page-section a img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 10rem;
    z-index: 1;
    transform: translateY(0.1rem); }
  .page-section__container {
    width: 100%;
    margin: 0;
    padding: 0 0 5rem 0; }
    .page-section__container.photo-gallery {
      padding: 0; }
    .page-section__container.contacto {
      padding: 0; }
    .page-section__container.main {
      padding: 0; }
    .page-section__container--button-holder {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 10rem; }
      .page-section__container--button-holder .btn {
        background-color: #dd2c00;
        color: #E0E2EC;
        padding: 1.5rem 5rem;
        border-radius: 5rem;
        font-size: 2rem;
        text-decoration: none;
        font-weight: 400;
        letter-spacing: 0.3rem;
        transform: translateY(0);
        transition: transform 0.5s ease, background-color 0.5s ease, box-shadow 1s ease;
        box-shadow: -1px 3px 5px 0px rgba(0, 0, 0, 0);
        animation: logoremsa 1s ease;
        animation-delay: 1s;
        animation-fill-mode: backwards; }
        .page-section__container--button-holder .btn:hover {
          transform: translateY(-0.5rem);
          background-color: #cc0801;
          box-shadow: -1px 3px 5px 0px rgba(0, 0, 0, 0.5); }
    .page-section__container.red {
      background: #cc0801; }
      .page-section__container.red h1,
      .page-section__container.red h2 {
        color: #E0E2EC; }
    .page-section__container.black {
      background: #303438; }
      .page-section__container.black h1,
      .page-section__container.black h2 {
        color: #E0E2EC; }
    .page-section__container--header {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center; }
      .page-section__container--header.columna {
        flex-direction: column; }
      .page-section__container--header h1 {
        margin-top: 2rem;
        font-size: 4.5rem;
        display: block;
        color: #303438;
        padding: 1rem;
        text-transform: uppercase;
        font-weight: 300;
        letter-spacing: 0.8rem;
        position: relative; }
        .page-section__container--header h1::after {
          content: "";
          position: absolute;
          width: 100%;
          height: 0.5rem;
          bottom: 0;
          right: 0;
          clip-path: polygon(0 93%, 100% 74%, 100% 100%, 0 100%);
          background: #dd2c00; }
      .page-section__container--header span {
        margin: 1rem 0 0 0;
        color: #E0E2EC;
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem; }
        .page-section__container--header span.dark-span {
          color: #303438;
          text-align: center; }
      .page-section__container--header h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
        display: block;
        color: #303438;
        padding: 1rem;
        text-transform: uppercase;
        font-weight: 300;
        letter-spacing: 0.8rem;
        position: relative; }
        .page-section__container--header h2::after {
          content: "";
          position: absolute;
          width: 100%;
          height: 0.5rem;
          bottom: 0;
          right: 0;
          clip-path: polygon(0 93%, 100% 74%, 100% 100%, 0 100%);
          background: #dd2c00; }
    .page-section__container--info {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around; }
      .page-section__container--info.pbottom {
        padding: 0 0 10rem 0; }
  .page-section .dark-bg {
    background: linear-gradient(to bottom, #303438, rgba(180, 179, 169, 0.8)), url("../img/gallery/8.jpg");
    background-size: cover;
    background-position: bottom right; }
    .page-section .dark-bg h1 {
      color: #E0E2EC; }
  .page-section .item {
    width: 30rem;
    height: 30rem;
    background-color: #E0E2EC;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.3rem;
    box-shadow: 0px 5px 10px -1px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: all 0.5s ease;
    padding: 1rem;
    margin: 10rem 0 0; }
    .page-section .item:hover {
      transform: translateY(-0.5rem);
      box-shadow: 0px 10px 10px -1px rgba(0, 0, 0, 0.3); }
    .page-section .item__header {
      height: 30%;
      width: 100%;
      display: flex;
      align-items: flex-end;
      position: relative;
      padding: 1rem 0 2.5rem 0; }
      .page-section .item__header--heading {
        display: flex;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center; }
        .page-section .item__header--heading h3 {
          font-size: 200%;
          font-weight: 300;
          color: #303438; }
        .page-section .item__header--heading h4 {
          font-size: 1.5rem;
          font-weight: 300;
          color: #cc0801; }
    .page-section .item__info {
      width: 100%;
      height: 70%;
      padding: 1rem 3rem;
      display: flex;
      border-radius: 15px;
      justify-content: center;
      align-items: flex-start;
      background: linear-gradient(to top, rgba(48, 52, 56, 0.1), #E0E2EC); }
      .page-section .item__info ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start; }
        .page-section .item__info ul li {
          color: #303438;
          font-size: 1.5rem;
          padding-bottom: 1.2rem;
          text-align: left; }
    .page-section .item__customers {
      width: 100%;
      background: linear-gradient(to bottom, #fff, #eee);
      box-shadow: inset 0px 20px 17px -11px rgba(0, 0, 0, 0.3); }
  .page-section #galeria {
    background-size: cover;
    background-position: bottom; }
  .page-section .slick-slide {
    margin: 0px 20px; }
  .page-section .slick-slide img {
    width: 70%;
    margin: 0 auto; }
  .page-section .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    margin-bottom: -0.1rem; }
  .page-section .slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0; }
  .page-section .slick-list:focus {
    outline: none; }
  .page-section .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }
  .page-section .slick-slider .slick-track,
  .page-section .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  .page-section .slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block; }
  .page-section .slick-track:before,
  .page-section .slick-track:after {
    display: table;
    content: ""; }
  .page-section .slick-track:after {
    clear: both; }
  .page-section .slick-loading .slick-track {
    visibility: hidden; }
  .page-section .slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px; }
  .page-section [dir="rtl"] .slick-slide {
    float: right; }
  .page-section .slick-slide img {
    display: block; }
  .page-section .slick-slide.slick-loading img {
    display: none; }
  .page-section .slick-slide.dragging img {
    pointer-events: none; }
  .page-section .slick-initialized .slick-slide {
    display: block; }
  .page-section .slick-loading .slick-slide {
    visibility: hidden; }
  .page-section .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }
  .page-section .slick-arrow.slick-hidden {
    display: none; }
  .page-section .galeria-container {
    height: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #fff, rgba(224, 226, 236, 0.8)), url(../img/bg-gallery.jpg);
    background-size: cover;
    background-position: center; }
  .page-section .swiper-container {
    width: 90%;
    height: 80vh;
    margin-left: auto;
    margin-right: auto;
    padding: 5rem; }
  .page-section .swiper-slide {
    min-width: 25rem;
    text-align: center;
    font-size: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc((100% - 30px) / 2);
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    border-radius: 0.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease; }
    .page-section .swiper-slide:hover {
      opacity: 0.8;
      transform: scale(1.01); }
    .page-section .swiper-slide a img {
      object-fit: cover; }
  .page-section .swiper-pagination-bullet-active {
    background: #cc0801; }
  .page-section .contact-form {
    margin: 5rem;
    width: 50rem;
    height: 40rem;
    background: rgba(48, 52, 56, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-radius: 0.5rem; }
    .page-section .contact-form form {
      width: 80%;
      display: flex;
      flex-direction: column;
      align-items: space-around;
      justify-content: center; }
      .page-section .contact-form form .form-control {
        color: black;
        background: #E0E2EC;
        border-radius: 0.2rem;
        border: none;
        height: 3rem;
        padding: 0.5rem 1rem; }
        .page-section .contact-form form .form-control:focus {
          outline: none !important;
          border: 1px solid #B4B3A9;
          box-shadow: 0px 0px 10px 0px rgba(48, 52, 56, 0.5); }
        .page-section .contact-form form .form-control.mensaje {
          height: 15rem;
          font-family: "Lato", sans-serif;
          font-size: 1.5rem;
          resize: none; }
        .page-section .contact-form form .form-control.submit {
          margin-top: 2rem;
          align-self: flex-end;
          background: #303438;
          color: #E0E2EC;
          transition: background 0.3s ease, transform 0.3s ease;
          border-radius: 0.4rem; }
          .page-section .contact-form form .form-control.submit:hover {
            background: #535a61;
            transform: translateY(-0.2rem); }
  .page-section .footer {
    width: 100%;
    height: 4rem;
    background: #303438;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem; }
    .page-section .footer .emkauno {
      width: 10rem;
      height: 100%;
      padding: 1rem 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden; }
      .page-section .footer .emkauno a img {
        height: 100%;
        left: 0;
        bottom: 0;
        transition: transform .3s ease; }
        .page-section .footer .emkauno a img:hover {
          transform: translateY(-0.1rem); }
    .page-section .footer .social-links {
      width: 20rem;
      height: 100%;
      padding: 1rem 0;
      display: flex;
      align-items: center;
      justify-content: space-around; }
      .page-section .footer .social-links i {
        font-size: 2rem;
        color: #E0E2EC;
        transition: transform .3s ease; }
        .page-section .footer .social-links i:hover {
          transform: translateY(-0.1rem);
          color: #B4B3A9;
          cursor: pointer; }
  @media only screen and (max-width: 1300px) {
    .page-section .item {
      width: 50rem;
      height: 50rem; }
      .page-section .item h3 {
        font-size: 2.5rem; }
      .page-section .item h4 {
        font-size: 2rem; }
      .page-section .item ul li {
        font-size: 2rem; }
    .page-section .slick-slider {
      height: 20%;
      margin-bottom: -0.1rem; }
    .page-section .logox .logo-holder {
      max-width: 70vw;
      height: 60%;
      position: relative; } }
  @media only screen and (max-width: 800px) {
    .page-section .navbar__links ul {
      display: flex;
      flex-direction: column; }
    .page-section .page-section__container--header h2 {
      text-align: center; }
    .page-section .page-section__container--header span.dark-span {
      font-size: 1.8rem; }
    .page-section .contact-form {
      margin: 0; }
    .page-section .page-section__container--hero img {
      width: 80vw; }
    .page-section .page-section__container--hero img {
      width: 80vw; }
    .page-section .slick-slider {
      height: 20%;
      margin-bottom: -0.1rem; }
    .page-section .logox .logo-holder {
      max-width: 80vw;
      height: 40%;
      position: relative; } }
  .page-section .fotorama {
    margin: 5rem auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 75%, rgba(48, 52, 56, 0.5)); }
    .page-section .fotorama__thumb-border {
      border-color: #cc0801; }
  @media only screen and (max-width: 500px) {
    .page-section .item {
      width: 35rem;
      height: 30rem;
      margin-top: 2.5rem;
      margin-right: 0; }
      .page-section .item:first-child {
        margin-top: 5rem; }
      .page-section .item ul li {
        font-size: 1.6rem; }
    .page-section .slick-slider {
      height: 20%;
      margin-bottom: -0.1rem; }
    .page-section .page-section__container--header span {
      font-size: 1.5rem;
      padding: 0 1rem;
      margin-bottom: 1rem; }
    .page-section .footer {
      padding: 0 .8rem; }
      .page-section .footer .social-links {
        width: 10rem; }
    .page-section .logox .logo-holder {
      max-width: 80vw;
      height: 30%;
      position: relative; } }

[data-aos^=fade][data-aos^=fade].aos-animate {
  display: flex;
  align-items: center;
  justify-content: center; }

@keyframes dash {
  to {
    stroke-dashoffset: 0; } }

.logox {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #E0E2EC, rgba(224, 226, 236, 0.8)), url(../img/bg-header2.jpg);
  background-position: bottom;
  background-size: cover; }
  .logox .logo-holder {
    max-width: 50vw;
    height: 60%;
    position: relative; }
    .logox .logo-holder img {
      width: 100%;
      animation: logofade 3.5s ease; }
      .logox .logo-holder img.sub-remsa {
        margin-top: 1rem;
        margin-right: 1.5rem;
        animation-delay: 0.8s;
        animation-fill-mode: backwards; }
    .logox .logo-holder svg {
      position: absolute;
      top: 0;
      left: 0; }
      .logox .logo-holder svg g .path {
        stroke-dasharray: 800;
        stroke-dashoffset: 1100;
        animation: dash 5s linear forwards; }

@keyframes logofade {
  0% {
    opacity: 0; }
  80% {
    opacity: 0; }
  90% {
    opacity: 1; } }
