@font-face {
  font-family: "Oswald";
  src: url("./font/oswald/Oswald-VariableFont_wght.ttf");
}
@font-face {
  font-family: "icomoon";
  src: url("./font/icomoon/icomoon.woff?3jmvvb") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-youtube:before {
  content: "\ea9d";
}

.icon-linkedin:before {
  content: "\eaca";
}

.icon-menu:before {
  content: "\e9bd";
}

.icon-cross:before {
  content: "\ea0f";
}

/**
* Used to declare media queries. Usage examples :
* - @include above(sm) {...}
* - @include below(sm) {...}
* - @include between(sm, md) {...}
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  font-family: "Oswald", "sans-serif";
}

body {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  body {
    padding-top: 7.6rem;
  }
}

.grecaptcha-badge {
  z-index: 1;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 1.8rem 7vw;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 100;
}
@media (max-width: 767px) {
  .nav-container {
    position: fixed;
    width: 100%;
    top: 0;
  }
}
.nav-container .nav-logo {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .nav-container .nav-logo img {
    max-height: 4rem;
  }
}
.nav-container .nav-items {
  display: flex;
  gap: 6rem;
  list-style: none;
  padding-bottom: 0.8rem;
}
@media (max-width: 767px) {
  .nav-container .nav-items {
    display: none;
  }
}
.nav-container .nav-items .nav-item a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-container .nav-items .nav-item a:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 0.1rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #000000;
  transition: width 0.3s, background-color 0.3s;
}
.nav-container .nav-items .nav-item a:hover:after, .nav-container .nav-items .nav-item a:focus:after, .nav-container .nav-items .nav-item a.active:after {
  width: 100%;
}
.nav-container .nav-items .nav-item a:hover, .nav-container .nav-items .nav-item a:focus, .nav-container .nav-items .nav-item a.active {
  color: #C51A21;
}
.nav-container .nav-items .nav-item a:hover:after, .nav-container .nav-items .nav-item a:focus:after, .nav-container .nav-items .nav-item a.active:after {
  background-color: #C51A21;
}
.nav-container .nav-button {
  display: none;
  margin-bottom: 0.7rem;
  background-color: transparent;
  border: none;
  color: #000000;
}
@media (max-width: 767px) {
  .nav-container .nav-button {
    display: block;
  }
}
.nav-container .nav-button:before {
  font-size: 3.2rem;
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  content: "\e9bd";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nav-container .nav-button.active:before {
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  content: "\ea0f";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-phone {
  background-color: #FFFFFF;
  position: fixed;
  left: 0;
  top: 0;
  width: calc(100% - 3.2rem - 7vw * 2);
  min-height: 100dvh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  box-shadow: 4px 0px 4px 0px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  transition: transform 0.3s;
}
.nav-phone.active {
  transform: translateX(0);
}
.nav-phone--logo {
  max-height: 7.6rem;
  padding: 1.1rem;
  width: 100%;
  display: flex;
  justify-content: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.nav-phone--logo img {
  object-fit: contain;
  max-width: 100%;
}
.nav-phone--items {
  flex: 1;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  align-items: center;
  padding: 2rem;
  justify-content: center;
}
.nav-phone--item {
  text-align: center;
}
.nav-phone--item a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-phone--item a:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 0.1rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #000000;
  transition: width 0.3s, background-color 0.3s;
}
.nav-phone--item a:hover:after, .nav-phone--item a:focus:after, .nav-phone--item a.active:after {
  width: 100%;
}
.nav-phone--item a:hover, .nav-phone--item a:focus, .nav-phone--item a.active {
  color: #C51A21;
}
.nav-phone--item a:hover:after, .nav-phone--item a:focus:after, .nav-phone--item a.active:after {
  background-color: #C51A21;
}
.nav-phone--footer {
  background-color: #ebe7e7;
  width: 100%;
  padding: 2rem;
}
.nav-phone--footer--social-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.nav-phone--footer--social-links a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-phone--footer--social-links a:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 0.1rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #FFFFFF;
  transition: width 0.3s, background-color 0.3s;
}
.nav-phone--footer--social-links a:hover:after, .nav-phone--footer--social-links a:focus:after, .nav-phone--footer--social-links a.active:after {
  width: 80%;
}
.nav-phone--footer--social-links a:hover, .nav-phone--footer--social-links a:focus {
  color: #C51A21;
}
.nav-phone--footer--social-links a:hover:after, .nav-phone--footer--social-links a:focus:after {
  background-color: #C51A21;
}
.nav-phone--footer--social-links .linkedin a:before {
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  content: "\eaca";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nav-phone--footer--social-links .facebook a:before {
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  content: "\ea90";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nav-phone--footer--social-links .instagram a:before {
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  content: "\ea92";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nav-phone--footer--social-links .youtube a:before {
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  content: "\ea9d";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.nav-phone--footer--social-link {
  height: 4rem;
  width: 4rem;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.nav-phone--footer--nav-items {
  display: flex;
  list-style: none;
  padding-bottom: 0.8rem;
  flex-direction: column;
  align-items: center;
  text-transform: none;
  font-weight: 400;
  gap: 1rem;
  margin-top: 3rem;
  position: relative;
}
.nav-phone--footer--nav-items:after {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #C51A21;
}
.nav-phone--footer--nav-item {
  font-size: 1.8rem;
  text-align: center;
}
.nav-phone--footer--nav-item a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-phone--footer--nav-item a:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 0.1rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #000000;
  transition: width 0.3s, background-color 0.3s;
}
.nav-phone--footer--nav-item a:hover:after, .nav-phone--footer--nav-item a:focus:after, .nav-phone--footer--nav-item a.active:after {
  width: 100%;
}
.nav-phone--footer--nav-item a:hover, .nav-phone--footer--nav-item a:focus, .nav-phone--footer--nav-item a.active {
  color: #C51A21;
}
.nav-phone--footer--nav-item a:hover:after, .nav-phone--footer--nav-item a:focus:after, .nav-phone--footer--nav-item a.active:after {
  background-color: #C51A21;
}

.footer-container {
  background-color: #ebe7e7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0 6rem;
}
.footer-container a:not(.footer-logo) {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-container a:not(.footer-logo):after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #000000;
  transition: width 0.3s, background-color 0.3s;
}
.footer-container a:not(.footer-logo):hover:after, .footer-container a:not(.footer-logo):focus:after, .footer-container a:not(.footer-logo).active:after {
  width: 100%;
}
.footer-container a:not(.footer-logo):hover, .footer-container a:not(.footer-logo):focus {
  color: #C51A21;
}
.footer-container a:not(.footer-logo):hover:after, .footer-container a:not(.footer-logo):focus:after {
  background-color: #C51A21;
}
.footer-container .footer-nav-items {
  display: flex;
  list-style: none;
  max-width: 40rem;
  justify-content: space-between;
  width: 100%;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 439px) {
  .footer-container .footer-nav-items {
    justify-content: center;
  }
}
.footer-container .footer-nav-items .footer-nav-item {
  font-size: 1.6rem;
}
.footer-container .footer-nav-items.legals {
  justify-content: space-evenly;
  margin-top: 4rem;
  position: relative;
}
.footer-container .footer-nav-items.legals:before {
  content: "";
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 1px;
  background-color: #C51A21;
}
.footer-container .footer-nav-items.footer-social-links {
  justify-content: center;
  gap: 2rem;
}
.footer-container .footer-social-links .footer-social-link {
  height: 4rem;
  width: 4rem;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.footer-container .footer-social-links .linkedin a:before {
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  content: "\eaca";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer-container .footer-social-links .facebook a:before {
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  content: "\ea90";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer-container .footer-social-links .instagram a:before {
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  content: "\ea92";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer-container .footer-social-links .youtube a:before {
  display: inline-block;
  font-family: "icomoon";
  font-style: normal;
  font-weight: normal;
  content: "\ea9d";
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.index-brand {
  background-color: #C51A21;
  background-image: url("/assets/images/index-section-brand-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  position: relative;
  color: #FFFFFF;
}
.index-brand--image {
  position: absolute;
  right: 0;
  width: 56%;
  top: 0;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .index-brand--image {
    display: none;
  }
}
.index-brand--text-container {
  width: calc(100% - 56%);
  padding: 20rem 4.4rem 6rem 7vw;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .index-brand--text-container {
    padding-top: 10rem;
    width: 100%;
  }
}
.index-brand--title {
  font-size: 5.2rem;
  font-weight: 600;
  margin-bottom: 9rem;
}
.index-brand--description {
  font-size: 2.4rem;
  margin-bottom: 6rem;
}
.index-brand--button {
  background-color: #000000;
  font-size: 2.2rem;
  font-weight: 600;
  padding: 2rem 3rem;
  margin-left: auto;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}
.index-brand--button:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #FFFFFF;
  transition: width 0.3s, background-color 0.3s;
}
.index-brand--button:hover:after, .index-brand--button:focus:after, .index-brand--button.active:after {
  width: calc(100% - 6rem);
}

.index-services {
  padding: 6rem 7vw 4rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .index-services {
    padding: calc(7.6rem + 1rem) 0 4rem;
  }
}
.index-services--title {
  font-size: 3.4rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  width: fit-content;
  margin: 0 auto 6rem;
}
@media (max-width: 767px) {
  .index-services--title {
    margin: 0 auto calc(7.6rem + 1rem);
  }
}
.index-services--title:after {
  content: "";
  width: 50%;
  height: 0.2rem;
  background-color: #C51A21;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.8rem;
}
.index-services--image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: inline;
  z-index: -1;
}
.index-services--container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2rem;
  color: #FFFFFF;
}
@media (max-width: 1599px) {
  .index-services--container {
    grid-gap: 5rem;
  }
}
.index-services--container-title {
  font-size: 5.2rem;
  font-weight: 700;
  text-shadow: 0 0 0.2rem #000000;
  text-align: center;
  max-width: 80%;
}
@media (max-width: 1599px) {
  .index-services--container-title {
    font-size: 4.6rem;
  }
}
@media (max-width: 1239px) {
  .index-services--container-title {
    font-size: 4rem;
  }
}
@media (max-width: 989px) {
  .index-services--container-title {
    font-size: 3.4rem;
  }
}
@media (max-width: 767px) {
  .index-services--container-title {
    font-size: 2.8rem;
  }
}
.index-services--container-grid-item {
  min-height: 50rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
@media (max-width: 767px) {
  .index-services--container-grid-item {
    padding: 2rem 7vw;
  }
}
.index-services--container-grid-item.item-width-1 {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .index-services--container-grid-item.item-width-1 {
    grid-column: span 5;
  }
}
.index-services--container-grid-item.item-width-1 .index-services--container-title {
  max-width: 39rem;
}
.index-services--container-grid-item.item-width-2 {
  grid-column: span 3;
}
@media (max-width: 767px) {
  .index-services--container-grid-item.item-width-2 {
    grid-column: span 5;
  }
}
.index-services--container-grid-item.item-width-2 .index-services--container-title {
  max-width: 48rem;
}
.index-services--container-grid-item.item-width-3 {
  grid-column: span 5;
}
@media (max-width: 767px) {
  .index-services--container-grid-item.item-width-3 {
    grid-column: span 5;
  }
}
.index-services--container-grid-item.item-width-3 .index-services--container-title {
  max-width: 48rem;
}
.index-services--container--navigate-container {
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  padding: 1.2rem 1rem;
  background-color: rgba(197, 26, 33, 0.5);
  max-width: calc(100% - 2rem);
}
@media (max-width: 767px) {
  .index-services--container--navigate-container {
    left: 7vw;
    max-width: calc(100% - 7vw * 2);
  }
}
.index-services--container--navigate-container--title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.index-services--container--navigate-container--description {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.index-services--container--navigate-container--link {
  padding: 1rem 2rem;
  background-color: #C51A21;
  text-transform: uppercase;
  font-size: 1.4rem;
  width: fit-content;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}
.index-services--container--navigate-container--link:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 0.8rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #FFFFFF;
  transition: width 0.3s, background-color 0.3s;
}
.index-services--container--navigate-container--link:hover:after, .index-services--container--navigate-container--link:focus:after, .index-services--container--navigate-container--link.active:after {
  width: calc(100% - 4rem);
}

.index-contact {
  background-color: #C51A21;
  padding: 2rem 3rem;
  font-size: 3.4rem;
  margin: 4rem auto 9rem;
  width: fit-content;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  color: #FFFFFF;
}
.index-contact:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #FFFFFF;
  transition: width 0.3s, background-color 0.3s;
}
.index-contact:hover:after, .index-contact:focus:after, .index-contact.active:after {
  width: calc(100% - 6rem);
}
@media (max-width: 767px) {
  .index-contact {
    font-size: 2.4rem;
    padding: 1rem 1.5rem;
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    color: #FFFFFF;
  }
  .index-contact:after {
    content: "";
    position: absolute;
    width: 0;
    left: 50%;
    bottom: 0.8rem;
    transform: translateX(-50%);
    height: 0.2rem;
    background-color: #FFFFFF;
    transition: width 0.3s, background-color 0.3s;
  }
  .index-contact:hover:after, .index-contact:focus:after, .index-contact.active:after {
    width: calc(100% - 3rem);
  }
}

.about-image-brand {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: inline;
}

.about-section {
  padding-top: 6rem;
}
.about-section--title {
  font-size: 3.4rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  width: fit-content;
  margin: 0 auto 8rem;
  text-align: center;
  padding: 0 2rem;
}
.about-section--title:after {
  content: "";
  width: 50%;
  height: 0.2rem;
  background-color: #C51A21;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.8rem;
}
.about-section--subtitle {
  font-size: 2.2rem;
  font-weight: 700;
  padding: 0 15vw;
}
.about-section--paragraph {
  padding: 0 15vw;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}
.about-section--paragraph strong {
  font-weight: 700;
  color: #C51A21;
}
.about-section--image-aside {
  font-size: 1.8rem;
  height: fit-content;
  margin: 6rem 0;
  display: grid;
  grid-template-columns: 45vw 1fr;
  gap: 6rem;
  align-items: center;
  flex-wrap: wrap;
  flex-grow: 0;
  padding-right: 15vw;
}
@media (max-width: 1239px) {
  .about-section--image-aside {
    grid-template-columns: 1fr;
    padding: 0 15vw;
  }
}
.about-section--image-aside .about-section--paragraph {
  padding: unset;
  margin: unset;
}
.about-section--image-aside--image {
  max-height: 100%;
  width: 100%;
  object-fit: contain;
}
.about-section--image-aside--text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.about-section--image-aside--list h2 {
  font-size: inherit;
  font-weight: 700;
}
.about-section--image-aside--list ul {
  margin-left: 3rem;
}
.about-section--footer-text {
  font-size: 1.8rem;
  padding: 0 15vw;
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  text-align: center;
}
.about-section--footer-text .about-section--subtitle {
  padding: unset;
  width: fit-content;
}
.about-section--footer-text .about-section--paragraph {
  width: fit-content;
  margin: unset;
  padding: unset;
}

.about-navigation {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin: 10rem 0;
  padding: 0 15vw;
  flex-wrap: wrap;
}
.about-navigation--link {
  padding: 2rem 3rem;
  font-size: 3.4rem;
  background-color: #C51A21;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  color: #FFFFFF;
}
.about-navigation--link:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #FFFFFF;
  transition: width 0.3s, background-color 0.3s;
}
.about-navigation--link:hover:after, .about-navigation--link:focus:after, .about-navigation--link.active:after {
  width: calc(100% - 6rem);
}
@media (max-width: 767px) {
  .about-navigation--link {
    font-size: 2.4rem;
    padding: 1rem 1.5rem;
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    color: #FFFFFF;
  }
  .about-navigation--link:after {
    content: "";
    position: absolute;
    width: 0;
    left: 50%;
    bottom: 0.8rem;
    transform: translateX(-50%);
    height: 0.2rem;
    background-color: #FFFFFF;
    transition: width 0.3s, background-color 0.3s;
  }
  .about-navigation--link:hover:after, .about-navigation--link:focus:after, .about-navigation--link.active:after {
    width: calc(100% - 3rem);
  }
}

.contact-image-brand {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: inline;
}

.contact-section {
  padding-top: 6rem;
}
.contact-section--title {
  font-size: 3.4rem;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  width: fit-content;
  margin: 0 auto 8rem;
  text-align: center;
  padding: 0 2rem;
}
.contact-section--title:after {
  content: "";
  width: 50%;
  height: 0.2rem;
  background-color: #C51A21;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.8rem;
}
.contact-section .contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5rem;
  grid-row-gap: 8rem;
  padding: 0 15vw;
}
@media (max-width: 767px) {
  .contact-section .contact-form {
    grid-row-gap: 2rem;
  }
}
.contact-section .contact-form--input {
  grid-column: span 1;
  height: 7rem;
  position: relative;
  box-shadow: inset 0px 0px 10px -5px #000000;
  transition: box-shadow 0.25s;
}
@media (max-width: 767px) {
  .contact-section .contact-form--input {
    grid-column: span 2;
  }
}
.contact-section .contact-form--input--error {
  display: block;
  color: #C51A21;
}
@media (max-width: 767px) {
  .contact-section .contact-form--input--error {
    font-size: 1.4rem;
    margin-top: -0.2rem;
  }
}
.contact-section .contact-form--input label {
  display: block;
  margin-bottom: 1rem;
  position: absolute;
  font-size: 1.8rem;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  transition: opacity 0.25s;
}
.contact-section .contact-form--input input {
  border: none;
  background-color: transparent;
  font-size: 1.8rem;
  width: 100%;
  height: 100%;
  padding: 0 3rem;
}
.contact-section .contact-form--input.focus label, .contact-section .contact-form--input.filled label {
  opacity: 0;
}
.contact-section .contact-form--input.error {
  box-shadow: inset 0px 0px 10px 0px #C51A21;
}
.contact-section .contact-form--input.error.focus input {
  outline-color: #C51A21;
}
.contact-section .contact-form--textarea {
  grid-column: span 2;
  position: relative;
  box-shadow: inset 0px 0px 10px -5px #000000;
  padding: 3rem;
  padding-top: 5rem;
}
.contact-section .contact-form--textarea--error {
  color: #C51A21;
}
@media (max-width: 767px) {
  .contact-section .contact-form--textarea--error {
    font-size: 1.4rem;
  }
}
.contact-section .contact-form--textarea.error {
  box-shadow: inset 0px 0px 10px 0px #C51A21;
}
.contact-section .contact-form--textarea.error.focus {
  outline-color: #C51A21;
}
.contact-section .contact-form--textarea.focus {
  outline: 2px solid #000000;
  border-radius: 1px;
}
.contact-section .contact-form--textarea textarea {
  border: none;
  font-size: 1.8rem;
  width: 100%;
  height: 20rem;
  resize: none;
  outline: none;
}
.contact-section .contact-form--textarea label {
  margin-bottom: 1rem;
  position: absolute;
  font-size: 1.8rem;
  left: 3rem;
  top: 1.5rem;
  opacity: 0.5;
  transition: opacity 0.25s;
}
.contact-section .contact-form--submit {
  margin: 0 auto;
  grid-column: span 2;
  width: fit-content;
}
.contact-section .contact-form--submit.success {
  pointer-events: none;
}
.contact-section .contact-form--submit.success button {
  background-color: #4CAF50;
}
.contact-section .contact-form--submit button {
  border: none;
  background-color: #000000;
  padding: 1.5rem 2.5rem;
  font-size: 2.4rem;
  text-transform: uppercase;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  color: #FFFFFF;
}
.contact-section .contact-form--submit button:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #FFFFFF;
  transition: width 0.3s, background-color 0.3s;
}
.contact-section .contact-form--submit button:hover:after, .contact-section .contact-form--submit button:focus:after, .contact-section .contact-form--submit button.active:after {
  width: calc(100% - 5rem);
}
@media (max-width: 767px) {
  .contact-section .contact-form--submit button {
    font-size: 1.8rem;
    padding: 1rem 1.5rem;
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    color: #FFFFFF;
  }
  .contact-section .contact-form--submit button:after {
    content: "";
    position: absolute;
    width: 0;
    left: 50%;
    bottom: 0.8rem;
    transform: translateX(-50%);
    height: 0.2rem;
    background-color: #FFFFFF;
    transition: width 0.3s, background-color 0.3s;
  }
  .contact-section .contact-form--submit button:hover:after, .contact-section .contact-form--submit button:focus:after, .contact-section .contact-form--submit button.active:after {
    width: calc(100% - 3rem);
  }
}

.contact-navigation {
  display: flex;
  justify-content: center;
  gap: 6rem;
  margin: 10rem 0;
  padding: 0 15vw;
  flex-wrap: wrap;
}
.contact-navigation--link {
  padding: 2rem 3rem;
  font-size: 3.4rem;
  background-color: #C51A21;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  color: #FFFFFF;
}
.contact-navigation--link:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #FFFFFF;
  transition: width 0.3s, background-color 0.3s;
}
.contact-navigation--link:hover:after, .contact-navigation--link:focus:after, .contact-navigation--link.active:after {
  width: calc(100% - 6rem);
}
@media (max-width: 767px) {
  .contact-navigation--link {
    font-size: 2.4rem;
    padding: 1rem 1.5rem;
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    color: #FFFFFF;
  }
  .contact-navigation--link:after {
    content: "";
    position: absolute;
    width: 0;
    left: 50%;
    bottom: 0.8rem;
    transform: translateX(-50%);
    height: 0.2rem;
    background-color: #FFFFFF;
    transition: width 0.3s, background-color 0.3s;
  }
  .contact-navigation--link:hover:after, .contact-navigation--link:focus:after, .contact-navigation--link.active:after {
    width: calc(100% - 3rem);
  }
}

.service {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
}
.service strong {
  font-weight: 700;
  color: #C51A21;
}
.service .bold {
  font-weight: 700;
}
.service .center {
  text-align: center;
}
.service .marged {
  margin-bottom: 3rem;
}
.service .marged--2 {
  margin-bottom: 6rem;
}
.service .marged--3 {
  margin-bottom: 9rem;
}
.service--title {
  font-size: 3.4rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  text-align: center;
  padding: 0 2rem;
  margin: 11rem auto;
}
.service--title:after {
  content: "";
  width: 50%;
  height: 0.2rem;
  background-color: #C51A21;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.8rem;
}
.service--media-aside {
  display: flex;
  align-items: center;
  gap: 6rem;
  padding-left: 15vw;
  justify-content: center;
  max-width: 100%;
  padding: 0;
}
@media (max-width: 1599px) {
  .service--media-aside {
    justify-content: flex-start;
  }
}
@media (max-width: 1239px) {
  .service--media-aside {
    flex-direction: column;
    padding: 0 15vw;
  }
}
.service--media-aside--media {
  width: 100%;
  object-fit: cover;
}
.service--media-aside--text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-right: 15vw;
}
@media (max-width: 1239px) {
  .service--media-aside--text {
    margin-right: unset;
  }
}
.service--media-aside--text h2 {
  font-size: 2.2rem;
  font-weight: 700;
}
.service--media-aside.right .service--media-aside--media {
  order: 1;
}
.service--media-aside.right .service--media-aside--text {
  order: 0;
  margin-left: 15vw;
  margin-right: unset;
}
@media (max-width: 1239px) {
  .service--media-aside.right .service--media-aside--text {
    margin-left: unset;
  }
}
.service--list {
  padding: 0 15vw;
}
.service--list ul {
  padding: 0 3rem;
}
.service--text {
  padding: 0 15vw;
}
.service--contact {
  display: flex;
  justify-content: center;
  margin-bottom: 9rem;
}
.service--contact a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  padding: 2rem 3rem;
  font-size: 3.4rem;
  background-color: #C51A21;
  color: #FFFFFF;
}
.service--contact a:after {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  height: 0.2rem;
  background-color: #FFFFFF;
  transition: width 0.3s, background-color 0.3s;
}
.service--contact a:hover:after, .service--contact a:focus:after, .service--contact a.active:after {
  width: calc(100% - 6rem);
}
@media (max-width: 767px) {
  .service--contact a {
    font-size: 2.4rem;
    padding: 1rem 1.5rem;
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
    color: #FFFFFF;
  }
  .service--contact a:after {
    content: "";
    position: absolute;
    width: 0;
    left: 50%;
    bottom: 0.8rem;
    transform: translateX(-50%);
    height: 0.2rem;
    background-color: #FFFFFF;
    transition: width 0.3s, background-color 0.3s;
  }
  .service--contact a:hover:after, .service--contact a:focus:after, .service--contact a.active:after {
    width: calc(100% - 3rem);
  }
}

.error-title {
  height: 60dvh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.error-title h1 {
  font-size: 20dvw;
}

/*# sourceMappingURL=main.css.map */
