@charset "UTF-8";
@media (min-width: 1080px) {
  .animate--goUp {
    opacity: 0;
  }
  .animate--goUp:first-child {
    animation: goUp 2s ease-in forwards;
  }
  .animate--goUp:nth-child(2) {
    animation: goUp 1.5s ease-in forwards;
  }
  .animate--goUp:last-child {
    animation: goUp 1s ease-in forwards;
  }
  @keyframes goUp {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
}

html, body {
  min-height: 100vh;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a[href^="tel:"] {
  color: var(--base-text-color);
  text-decoration: none;
}

iframe {
  border: none;
}

ul[class] {
  list-style: none;
}

li {
  margin-left: 1rem;
}

img, picture, svg {
  height: auto;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

body {
  margin: 0 !important;
  overflow-x: hidden;
}
body.outside--show {
  position: fixed;
  overflow: auto;
}

body.home {
  content: "";
  background: url("/assets/img//svg/crane-bg1.svg") no-repeat;
  background-size: cover;
}

body.formulario {
  content: "";
  background: url("/assets/img//svg/crane-bg1.svg") 100% no-repeat;
  background-size: cover;
}

hr {
  content: "";
  background: url("/assets/img//svg/footer-hr.svg") center center;
  width: auto;
  height: 60px;
  margin: 0;
  border: none;
}

img {
  border-radius: 5px;
}

.first-title {
  font-family: "Rubik", sans-serif;
}

.main-footer {
  background-color: black;
  position: sticky;
  top: 100vh;
  padding: 50px 30px 100px;
}
.main-footer .logo__footer {
  display: grid;
  justify-content: center;
}
@media (max-width: 767px) {
  .main-footer .logo__footer {
    transform: scale(0.8);
  }
}
.main-footer__content {
  display: flex;
  flex-wrap: wrap;
  color: #FFFFFF;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  font-family: "Quattrocento Sans", sans-serif;
}
@media (max-width: 686px) {
  .main-footer__content {
    justify-content: center;
  }
}
.main-footer__title {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1.75em;
  margin-top: 50px;
}
@media (max-width: 686px) {
  .main-footer__title {
    text-align: center;
  }
}
.main-footer__contact-phone {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-top: 15px;
}
.main-footer__contact-phone::before {
  content: "";
  background: url("/assets/img//svg/phone-white.svg") center center no-repeat;
  width: 35px;
  aspect-ratio: 1;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 686px) {
  .main-footer__contact-phone {
    justify-content: center;
    margin-top: 10px;
  }
}
.main-footer__contact-email {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-top: 15px;
  text-decoration: none;
  color: white;
}
.main-footer__contact-email::before {
  content: "";
  background: url("/assets/img//svg/email-white.svg") center center no-repeat;
  width: 35px;
  aspect-ratio: 1;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 686px) {
  .main-footer__contact-email {
    justify-content: center;
    margin-top: 10px;
  }
}
.main-footer .widget-link {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.main-footer .widget-socialmedia {
  margin-top: 10px;
}
@media (max-width: 686px) {
  .main-footer .widget-socialmedia {
    justify-content: center;
  }
}

.outside .widget-link {
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.main-header {
  position: sticky;
  top: 0;
  background-color: #000000;
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  align-items: center;
  height: 120px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 0 20px;
}
.main-header__trigger {
  background: url("/assets/img//svg/menu-trigger.svg") center center no-repeat;
  width: 40px;
  height: 15px;
  margin: 0 auto;
  z-index: 999999999;
  opacity: 1;
  transition: opacity 0.5s;
}
.main-header__trigger:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.5s;
}
@media (max-width: 767px) {
  .main-header__trigger {
    grid-row: 1;
    grid-column: 1;
  }
}
.main-header__phone, .main-header__lng {
  color: #FFFFFF;
  font-family: "Quattrocento Sans", sans-serif;
  font-weight: bold;
  opacity: 1;
  transition: opacity 0.5s;
}
.main-header__phone:hover, .main-header__lng:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.5s;
}
.main-header__phone {
  display: flex;
  align-items: center;
  margin: 0 20px;
}
.main-header__phone::before {
  content: "";
  background: url("/assets/img///svg/call-us.svg") center center no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .main-header__phone {
    text-indent: -9999em;
    grid-column: 3;
    grid-row: 1;
  }
}
.main-header__lng {
  display: flex;
  align-items: center;
  margin: 0 20px;
  text-transform: uppercase;
}
.main-header__lng::before {
  content: "";
  background: url("/assets/img///svg/chevron-down.svg") center center no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .logo {
    grid-column: 1/-1;
    grid-row: 1;
    display: flex;
    justify-content: center;
  }
}

.loading {
  background: rgba(235, 235, 235, 0.7);
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 999999999;
  min-height: 100vh;
}
.loading-circles {
  position: relative;
  width: 120px;
  height: 120px;
  animation: animateLoader 10s linear infinite;
}
.loading span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(calc(18deg * var(--i)));
}
.loading span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: black;
  animation: animateCircles 2s linear infinite;
  animation-delay: calc(0.1s * var(--i));
}

.outside {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  background: #000000;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s;
  width: 100%;
  height: 100%;
  z-index: 999999999;
}
.outside__close {
  background: url("/assets/img///svg/close-white.svg") center center no-repeat;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-left: 95%;
  margin-top: 2%;
}
.outside__close:hover {
  cursor: pointer;
  opacity: 0.7;
}
.outside .logo {
  display: flex;
  justify-content: center;
}
.outside__nav {
  font-family: "Rubik", sans-serif;
  text-align: center;
}
.outside__nav ul {
  display: grid;
  gap: 20px;
  list-style: none;
  margin-top: 100px;
}
.outside__nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 2.5em;
}
.outside__nav ul li a:hover {
  color: #FF3131;
  transition: 0.5s;
}

.outside--show .outside {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

#splide1 .splide__slide img {
  transform: scale(0.85);
  transition: 0.5s;
}
@media (max-width: 1679px) {
  #splide1 .splide__slide img {
    width: 100%;
  }
}
@media (min-width: 1680px) {
  #splide1 .splide__slide img {
    transition: 0.5s;
    width: 600px;
    height: 400px;
    object-fit: cover;
  }
}
#splide1 .splide__track {
  margin-top: 40px;
}
#splide1 .splide__pagination {
  transform: translateY(-50px);
}
#splide1 .splide__pagination__page.is-active {
  background-color: #FF3131 !important;
}

#splide1 .splide__slide.is-active img {
  transform: scale(1);
  transition: 0.5s;
}

#splide2 .splide__arrow {
  background-color: transparent;
  top: 87%;
}
#splide2 .splide__arrow svg {
  width: 40px;
  height: 40px;
}
#splide2 .splide__arrow--prev {
  left: 5%;
}
#splide2 .splide__arrow--next {
  left: 9%;
}

@media (max-width: 767px) {
  #splide2 .splide__slide {
    height: 80vh;
  }
  #splide2 .splide__slide img {
    min-height: 100%;
    object-fit: cover;
  }
}

.card__carousel.splide {
  align-items: center;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr;
  justify-content: center;
}

.slideshow__img:not(iframe) {
  min-height: 100%;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 1240px) {
  .slideshow__img:not(iframe) {
    max-height: 800px;
  }
}
@media (max-width: 766px) {
  .slideshow__img:not(iframe) {
    height: 800px;
  }
}

.nav-legal {
  max-width: 1240px;
  margin: 50px auto;
}
.nav-legal__list {
  color: white;
  font-size: 0.875em;
  text-align: center;
  font-family: "Quattrocento Sans", sans-serif;
}
.nav-legal__list [class*=item] {
  display: inline-block;
  list-style: none;
  margin: 5px 0;
  color: white;
}
.nav-legal__list [class*=item]:not(:first-of-type):before {
  content: "·";
  margin: 0 5px;
}
.nav-legal__list [class*=link] {
  color: white;
  text-decoration: none;
  transition: opacity 0.5s;
}
.nav-legal__list [class*=link]:hover, .nav-legal__list [class*=link]:focus {
  opacity: 0.7;
  transition: opacity 0.5s;
}

.page-default-content {
  max-width: 940px;
  margin: 50px auto;
  font-family: "Quattrocento Sans", sans-serif;
  line-height: 32px;
}
.page-default-content h1 {
  text-align: center;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.page-default-content h2 {
  font-size: 1.375em;
  font-weight: 600;
}

.home-welcome {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin: 100px 0;
}
@media (max-width: 1300px) {
  .home-welcome {
    padding: 0 20px;
  }
}
@media (max-width: 1080px) {
  .home-welcome {
    flex-wrap: wrap;
  }
}
.home-welcome__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
  opacity: 1;
}
@media (min-width: 1080px) {
  .home-welcome__content {
    opacity: 0;
  }
}
.home-welcome__title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 3em;
  margin-bottom: 0;
}
.home-welcome__wyswyg {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 10px;
}
.home-welcome__photo {
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  line-height: 0;
  max-width: 600px;
  opacity: 1;
}
@media (min-width: 1080px) {
  .home-welcome__photo {
    opacity: 0;
  }
}
.home-welcome img {
  width: 600px;
}

.home-projects {
  padding: 100px 0;
  background-color: rgba(175, 175, 175, 0.2);
}
.home-projects__title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 2em;
  text-align: center;
}
@media (max-width: 1440px) {
  .home-projects__carousel .splide__slide {
    display: flex;
    justify-content: center;
  }
}
.home-projects .splide__slide:not(.is-active) img {
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.246613);
}
.home-projects img {
  width: 100%;
}

.home-services {
  padding: 100px 0;
}
.home-services__title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 2em;
  text-align: center;
}
.home-services__list {
  display: grid;
  list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(315px, 375px));
  gap: 90px;
  justify-content: center;
  margin-top: 40px;
}
.home-services__service {
  margin: 0 auto;
  max-width: 360px;
}
.home-services__service-title {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  font-size: 1.75em;
  color: #FF3131;
  margin-top: 10px;
}
.home-services__service-wyswyg {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 10px;
  text-align: justify;
}
.home-services__link {
  display: flex;
  justify-content: center;
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1em;
  text-align: center;
  margin-top: 50px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}
.home-services__link:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
}
.home-services__photo {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.246613);
  border-radius: 5px;
  line-height: 0;
}
.home-services__photo img {
  width: 360px;
  height: 315px;
  object-fit: cover;
}

.gallery {
  max-width: 1280px;
  margin: 100px auto;
  padding: 0 20px;
}
.gallery__title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 2em;
  text-align: center;
  margin-bottom: 50px 0 0;
}
.gallery__wyswyg {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 20px;
}
.gallery__list {
  display: grid;
  list-style: none;
  align-items: flex-start;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-template-rows: 300px;
  margin-top: 50px;
}
.gallery__list img {
  width: 300px;
  height: 300px;
  object-fit: cover;
}
.gallery__list a {
  opacity: 1;
  transition: opacity 0.5s;
}
.gallery__list a:hover {
  opacity: 0.7;
  transition: opacity 0.5s;
}

.about-us {
  max-width: 1280px;
  margin: 200px auto;
  padding: 0 20px;
}
.about-us__title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 2em;
  text-align: center;
  margin-bottom: 50px 0 0;
}
.about-us__wyswyg {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 20px;
}
.about-us__photo {
  border-radius: 5px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  line-height: 0;
}
.about-us__photo img {
  width: 600px;
  height: 400px;
  object-fit: cover;
}
.about-us__subtitle {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 2em;
  color: #FF3131;
}
.about-us__container:not(:first-child) {
  margin-top: 200px;
}
.about-us__container:nth-child(odd) {
  display: flex;
  gap: 50px;
}
.about-us__container:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
}
@media (max-width: 1080px) {
  .about-us__container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.about-us__content {
  max-width: 600px;
}
@media (min-width: 1081px) {
  .about-us__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.trucks {
  max-width: 1280px;
  margin: 100px auto;
  padding: 0 20px;
}
.trucks article:not(:first-child) {
  margin-top: 200px;
}
.trucks__title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 2em;
  text-align: center;
  margin-bottom: 50px 0 0;
}
.trucks__wyswyg {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 20px;
}
.trucks__wyswyg ul li {
  line-height: 38px;
}
.trucks__wyswyg ul li:first-child {
  margin-top: 10px;
}
@media (max-width: 1080px) {
  .trucks__wyswyg {
    padding: 0 20px;
  }
}
.trucks__subtitle {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 2em;
  color: #FF3131;
}
@media (max-width: 1080px) {
  .trucks__subtitle {
    padding: 0 20px;
  }
}
.trucks__container {
  margin-top: 100px;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(auto, 600px);
}
@media (min-width: 1080px) {
  .trucks__container {
    grid-template-columns: 600px auto;
  }
}
@media (max-width: 1080px) {
  .trucks__container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.trucks__photo {
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.246613);
  border-radius: 5px;
  line-height: 0;
}
.trucks__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trucks img {
  width: 600px;
  height: 400px;
  object-fit: cover;
}

.services {
  max-width: 1280px;
  margin: 100px auto;
  padding: 0 20px;
}
.services__title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 2em;
  text-align: center;
  margin-bottom: 50px 0 0;
}
.services__subtitle {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 2em;
  color: #FF3131;
}
.services__wyswyg {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 20px;
}
.services__photo {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  line-height: 0;
}
.services__photo img {
  width: 600px;
  height: 400px;
  object-fit: cover;
}
.services__container {
  margin-top: 100px;
  gap: 50px;
}
.services__container:nth-child(odd) {
  display: flex;
}
.services__container:nth-child(even) {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 1080px) {
  .services__container {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.services__link {
  text-align: center;
}
@media (min-width: 1081px) {
  .services__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 1080px) {
  .services__content {
    max-width: 600px;
  }
}

.form {
  max-width: 1280px;
  margin: 100px auto;
  padding: 0 20px;
}
.form__title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 2em;
  text-align: center;
  margin-bottom: 50px 0 0;
}
.form__wyswyg {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 1em;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  margin-top: 20px;
}
.form-helper {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1280px) {
  .form-helper {
    flex-direction: column;
  }
}
.form form {
  margin-top: 50px;
}
.form form .form-row {
  margin-bottom: 10px;
}
.form form label {
  font-family: "Rubik", sans-serif;
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 20px;
}
.form form input {
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid black;
  border-radius: 5px;
}
.form form .form-row label {
  display: block;
}
.form form input {
  padding: 10px 20px;
  height: 40px;
  font-family: "Quattrocento Sans", sans-serif;
}
.form form #name {
  width: 440px;
  margin-right: 100px;
}
.form form #surname {
  width: 700px;
}
.form form #email {
  width: 660px;
  margin-right: 105px;
}
.form form #phone-number {
  width: 475px;
}
.form form #subject {
  width: 100%;
}
@media (max-width: 1280px) {
  .form form #name, .form form #surname, .form form #email, .form form #phone-number, .form form #subject {
    width: 100%;
  }
}
.form form textarea {
  width: 100%;
  height: 200px;
}
.form form .error {
  border-color: red;
}

#acepto_priv {
  display: flex;
  align-content: center;
  align-items: center;
}
#acepto_priv a {
  color: rgba(0, 0, 0, 0.8);
}
#acepto_priv span {
  font-family: "Quattrocento Sans", sans-serif;
}

.widget-socialmedia {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  justify-content: start;
}
.outside--show .widget-socialmedia {
  justify-content: center;
}
.widget-socialmedia .widget-facebook, .widget-socialmedia .widget-instagram, .widget-socialmedia .widget-whatsapp, .widget-socialmedia .widget-youtube {
  content: "";
  width: 40px;
  height: 40px;
  position: relative;
}
.widget-socialmedia .widget-facebook::after, .widget-socialmedia .widget-instagram::after, .widget-socialmedia .widget-whatsapp::after, .widget-socialmedia .widget-youtube::after {
  content: "";
  position: absolute;
  background-color: #FF3131;
  height: 3px;
  width: 0;
  bottom: -10px;
  left: 0;
  transition: 0.3s;
}
.widget-socialmedia .widget-facebook:hover::after, .widget-socialmedia .widget-instagram:hover::after, .widget-socialmedia .widget-whatsapp:hover::after, .widget-socialmedia .widget-youtube:hover::after {
  width: 100%;
}
.widget-socialmedia .widget-facebook {
  background: url("/assets/img//socialmedia/facebook-white.svg") center center no-repeat;
}
.widget-socialmedia .widget-instagram {
  background: url("/assets/img//socialmedia/instagram-white.svg") center center no-repeat;
}
.widget-socialmedia .widget-whatsapp {
  background: url("/assets/img//socialmedia/whatsapp-white.svg") center center no-repeat;
}
.widget-socialmedia .widget-youtube {
  background: url("/assets/img//socialmedia/youtube-white.svg") center center no-repeat;
}