@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;700");@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;500;700");

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}
.has-background-primary {
  background-color: #129BA4;
}
.has-color-primary {
  color: #129BA4;
}
.has-background-primary-light {
  background-color: #36C6CF;
}
.has-color-primary-light {
  color: #36C6CF;
}
.has-background-primary-lighter {
  background-color: #E0FDFF;
}
.has-color-primary-lighter {
  color: #E0FDFF;
}
.has-background-primary-dark {
  background-color: #006369;
}
.has-color-primary-dark {
  color: #006369;
}
.has-background-secondary {
  background-color: #006369;
}
.has-color-secondary {
  color: #006369;
}
.has-background-secondary-light {
  background-color: #FFF6E0;
}
.has-color-secondary-light {
  color: #FFF6E0;
}
.has-background-secondary-dark {
  background-color: #E3B130;
}
.has-color-secondary-dark {
  color: #E3B130;
}
.has-background-white {
  background-color: #FFFFFF;
}
.has-color-white {
  color: #FFFFFF;
}
.has-background-black {
  background-color: #000000;
}
.has-color-black {
  color: #000000;
}
.has-background-text {
  background-color: #333333;
}
.has-color-text {
  color: #333333;
}
.has-background-error {
  background-color: #ff3333;
}
.has-color-error {
  color: #ff3333;
}
/**
    Use to set z-index of an element, example: @include layer('header', 1); will set z-index to 101, if header is set to 100 in $layers map.
    * @param {string} $layer - Layer
    * @param {number} $modifier - Modifier
 */
.has-top-cutout--left {
  position: relative;
}
.has-top-cutout--left::before {
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.45rem;
  content: "";
  z-index: 2;
  clip-path: polygon(-0.3% -0.3%, 100.3% -0.3%, -0.3% 100.3%);
  background: #fff;
}
.has-top-cutout--right {
  position: relative;
}
.has-top-cutout--right::before {
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.45rem;
  content: "";
  z-index: 2;
  clip-path: polygon(-0.3% -0.3%, 100.3% -0.3%, 100.3% 100.3%);
  background: #fff;
}
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
::before, ::after {
  box-sizing: border-box;
}
h2 {
  color: #36C6CF;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
h3 {
  color: #333333;
  font-family: "Nunito", sans-serif;
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 1rem;
}
strong {
  font-weight: 700;
}
input, textarea {
  box-sizing: border-box;
  border: 1px solid #999999;
  font-size: 1rem;
  font-family: "Nunito";
  color: #666;
  border-radius: 3px;
  padding: 0.5rem 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
}
button, .button, a.button {
  border: none;
  display: inline-flex;
  cursor: pointer;
  outline: inherit;
  border-radius: 3px;
  transition: background-color 0.3s ease-in-out;
  align-self: flex-end;
  justify-self: flex-end;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background-color: #129BA4;
  color: #fff;
}
button:hover, button:active, .button:hover, .button:active, a.button:hover, a.button:active {
  background-color: #006369;
}
button:disabled, .button:disabled, a.button:disabled {
  background-color: #E0FDFF;
  color: #006369;
  cursor: not-allowed;
}
html {
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  scroll-behavior: smooth;
}
@media (min-width: 1280px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 20px;
  }
}
p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.overflow-hidden {
  overflow: hidden;
}
.columns-2 {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.columns-2--inverted {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .columns-2 {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .columns-2--inverted {
    flex-direction: row-reverse;
  }
}
.columns-2 .columns-2__column {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .columns-2 .columns-2__column {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .columns-2 .columns-2__column--left {
    padding: 0 4rem;
  }
}
@media (min-width: 1024px) {
  .columns-2 .columns-2__column--left {
    padding: 0 6rem;
  }
}
@media (min-width: 1280px) {
  .columns-2 .columns-2__column--left {
    padding: 0 8rem;
  }
}
@media (min-width: 768px) {
  .columns-2 .columns-2__column--right {
    padding: 0 4rem;
  }
}
@media (min-width: 1024px) {
  .columns-2 .columns-2__column--right {
    padding: 0 6rem;
  }
}
@media (min-width: 1280px) {
  .columns-2 .columns-2__column--right {
    padding: 0 8rem;
  }
}
@media (min-width: 768px) {
  .layout--home-layout .header {
    display: none;
  }
}
.layout--default-layout .header {
  margin-bottom: 2rem;
}
.section {
  scroll-margin-top: 100px;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .section {
    min-height: 500px;
    padding-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .section {
    padding-bottom: 6rem;
  }
}
.section--last {
  padding-bottom: 0;
}
.section-columns {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .section-columns {
    flex-direction: row;
  }
}
.section-columns--with-cutouts-right .section-columns__column:nth-child(2) {
  position: relative;
  position: relative;
}
.section-columns--with-cutouts-right .section-columns__column:nth-child(2)::before {
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.45rem;
  content: "";
  z-index: 2;
  clip-path: polygon(-0.3% -0.3%, 100.3% -0.3%, 100.3% 100.3%);
  background: #fff;
}
.section-columns--with-cutouts-right .section-columns__column:nth-child(2)::after {
  pointer-events: none;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5.45rem;
  content: "";
  clip-path: polygon(100% 100%, 0 100%, 0 0);
  background: linear-gradient(to left, #348287 5%, #006369 100%);
}
.section-columns--with-cutouts-left .section-columns__column:nth-child(2) {
  position: relative;
  position: relative;
}
.section-columns--with-cutouts-left .section-columns__column:nth-child(2)::before {
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.45rem;
  content: "";
  z-index: 2;
  clip-path: polygon(-0.3% -0.3%, 100.3% -0.3%, -0.3% 100.3%);
  background: #fff;
}
.section-columns--with-cutouts-left .section-columns__column:nth-child(2)::after {
  pointer-events: none;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5.45rem;
  content: "";
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  background: linear-gradient(to left, #348287 5%, #006369 100%);
}
@media (min-width: 768px) {
  .section-columns--inverted {
    flex-direction: row-reverse;
  }
}
.section-columns__column {
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .section-columns__column {
    width: 50%;
  }
}
.column-content {
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .column-content {
    padding-bottom: 4rem;
  }
}
.column-content__title {
  position: relative;
  margin-top: 0;
  z-index: 2;
}
@media (min-width: 768px) {
  .column-content__title {
    margin-top: calc(4rem + 1px);
  }
}
.column-content__title::before {
  display: block;
  content: "";
  width: 100%;
  border-bottom: 1px solid #129BA4;
  height: 50%;
  top: 0;
  position: absolute;
  left: 0;
  z-index: 1;
}
.column-content__title h2 {
  display: inline-block;
  position: relative;
  background: #FFFFFF;
  z-index: 2;
  padding: 0 0.5rem;
  margin-left: 1rem;
}
@media (min-width: 768px) {
  .column-content__title h2 {
    padding: 0 1rem;
    margin-left: 3rem;
  }
}
@media (min-width: 1024px) {
  .column-content__title h2 {
    padding: 0 1rem;
    margin-left: 5rem;
  }
}
@media (min-width: 1280px) {
  .column-content__title h2 {
    padding: 0 1rem;
    margin-left: 7rem;
  }
}
.column-content__content {
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .column-content__content {
    padding: 0 4rem;
  }
}
@media (min-width: 1024px) {
  .column-content__content {
    padding: 0 6rem;
  }
}
@media (min-width: 1280px) {
  .column-content__content {
    padding: 0 8rem;
  }
}
.column-image {
  width: 100%;
  height: 100%;
}
.column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu {
  display: flex;
  flex-direction: column;
}
.menu--horizontal {
  flex-direction: row;
}
.menu-item {
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.menu-item a {
  color: #000000;
  text-decoration: none;
}
.menu-item a:active {
  color: #129BA4;
}
.menu-item::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out, background-color 0.3s ease-out;
}
.menu-item--active a {
  color: #129BA4;
}
.menu-item--active::after {
  background-color: #129BA4;
}
.menu-item:hover a {
  color: #006369;
}
.menu-item:hover::after {
  color: #006369;
  background-color: #006369;
}
.menu-item:hover::after, .menu-item--active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.menu-item--white a {
  color: #FFFFFF;
}
.menu-item--white:hover a {
  color: #FFFFFF;
}
.menu-item--white:hover::after {
  color: #FFFFFF;
  background-color: #FFFFFF;
}
.menu-item--white::after {
  background-color: #FFFFFF;
}
.menu-item--white:hover::after, .menu-item--white--active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu-trigger {
  font-size: 2rem;
  margin: 2rem;
  cursor: pointer;
  transition: color 0.3s;
  color: #FFFFFF;
}
.mobile-menu-trigger:hover {
  color: #129BA4;
}
@media (min-width: 768px) {
  .mobile-menu-trigger {
    display: none;
  }
}
.mobile-menu__close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 3rem;
  color: #000000;
  cursor: pointer;
  margin: 2rem;
  transition: color 0.3s;
}
.mobile-menu__close:hover {
  color: #129BA4;
}
.mobile-menu .menu {
  align-items: center;
}
.mobile-menu .menu-item {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.mobile-header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
@media (min-width: 768px) {
  .mobile-header {
    display: none;
  }
}
.mobile-header__logo {
  padding: 0.5rem 1rem 0.5rem 1rem;
  background-color: #006369;
  height: 70px;
  min-width: 50%;
}
.home-section__before {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-right: 0;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .home-section__before {
    margin-bottom: 0;
    justify-content: flex-end;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .home-section__before {
    padding-right: 3rem;
  }
}
@media (min-width: 1280px) {
  .home-section__before {
    padding-right: 4rem;
  }
}
.home-section__before .home-section-small-logo {
  overflow: hidden;
  height: 90px;
}
@media (min-width: 768px) {
  .home-section__before .home-section-small-logo {
    display: none;
  }
}
.home-section__before .home-section-small-logo .company-logo {
  padding-left: 1rem;
  height: 90px;
  background-color: #006369;
  justify-content: flex-start;
}
.home-section .section-columns__column--second {
  display: none;
}
@media (min-width: 768px) {
  .home-section .section-columns__column--second {
    display: block;
  }
}
.home-section .company-logo {
  justify-content: center;
  align-items: center;
}
.home-section .company-logo__image {
  width: 70%;
}
.home-section-menu {
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  padding: 2rem 0 0 0;
}
@media (min-width: 768px) {
  .home-section-menu {
    display: flex;
  }
}
.floating-header {
  display: flex;
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  height: 100px;
  flex-direction: row;
  background-color: #006369;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  z-index: 100;
}
.floating-header--visible {
  transition: all 0.5s;
  top: 0;
}
.floating-header__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 50%;
  height: 100%;
  padding-left: 1rem;
}
@media (min-width: 768px) {
  .floating-header__left {
    padding-left: 2rem;
  }
}
@media (min-width: 1024px) {
  .floating-header__left {
    padding-left: 3rem;
  }
}
@media (min-width: 1280px) {
  .floating-header__left {
    padding-left: 4rem;
  }
}
.floating-header__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 50%;
  height: 100%;
  justify-content: flex-end;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .floating-header__right {
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .floating-header__right {
    padding-right: 3rem;
  }
}
@media (min-width: 1280px) {
  .floating-header__right {
    padding-right: 4rem;
  }
}
.floating-header .menu {
  display: none;
}
@media (min-width: 768px) {
  .floating-header .menu {
    display: flex;
  }
}
.floating-header .company-logo {
  height: 80%;
}
.company-logo {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-right: 1rem;
  position: relative;
}
.company-logo__image {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  z-index: 2;
}
.company-logo__background {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}
.footer {
  background-color: #006369;
  background: linear-gradient(120deg, color(primary-dark) 25%, color(primary) 100%);
  clip-path: polygon(0 0, 100% 4.5rem, 100% 4.5rem, 100% 100%, 0 100%);
  color: #FFFFFF;
  padding: 8rem 0 3rem 0;
  margin-top: -5rem;
}
@media (min-width: 768px) {
  .footer {
    clip-path: polygon(0 0, 50% 5rem, 100% 5rem, 100% 100%, 0 100%);
  }
}
.footer img {
  width: 70%;
}
@media (min-width: 768px) {
  .footer img {
    width: 80%;
  }
}
.footer__info {
  padding-top: 2rem;
}
.map-section .google-map {
  height: 600px;
}
.contact-form__message--error {
  color: #ff3333;
}
.contact-form__message--success {
  color: #129BA4;
}
.contact-form__input--error {
  border-color: #ff3333;
}
.contact-form__error {
  color: #ff3333;
}
.contact-form button {
  margin-top: 1rem;
}
.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #006369;
}
.header-logo {
  height: 90px;
  background-color: #006369;
  padding: 0.5rem 1rem;
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .header-logo {
    padding-left: 4rem;
  }
}
@media (min-width: 1024px) {
  .header-logo {
    padding-left: 6rem;
  }
}
@media (min-width: 1280px) {
  .header-logo {
    padding-left: 8rem;
  }
}
.header-menu {
  display: none;
}
@media (min-width: 768px) {
  .header-menu {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    padding-right: 4rem;
  }
}
@media (min-width: 1024px) {
  .header-menu {
    padding-right: 6rem;
  }
}
@media (min-width: 1280px) {
  .header-menu {
    padding-right: 8rem;
  }
}
.grid-image-gallery {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.grid-image-gallery__item {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.3s ease-in-out;
}
.grid-image-gallery__item:hover {
  opacity: 0.8;
  cursor: pointer;
}
.grid-image-gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.grid-image-gallery-modal__content {
  position: relative;
  width: 80%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-image-gallery-modal__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.grid-image-gallery-modal__navigation-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
  color: #fff;
  font-size: 2rem;
  margin: 2rem;
  cursor: pointer;
}
.grid-image-gallery-modal__navigation-button:hover {
  opacity: 0.8;
}
.grid-image-gallery-modal__navigation-button--left {
  left: 0;
}
.grid-image-gallery-modal__navigation-button--right {
  right: 0;
}
.grid-image-gallery-modal__close {
  cursor: pointer;
  position: absolute;
  font-size: 2rem;
  color: #fff;
  top: 0;
  right: 0;
  margin: 2rem;
}
.grid-image-gallery-modal__close:hover {
  opacity: 0.8;
}
.realization-page {
  padding: 2rem 0;
}
.realization-gallery-section {
  width: 100%;
  position: relative;
}
.footer-information {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1rem;
}
.footer-information__column {
  width: 100%;
}
.footer-information strong {
  font-weight: 700;
}
.footer-information span {
  line-height: 1.5rem;
}
.google-map__map {
  width: 100%;
  height: 100%;
}
.last-realizations {
  background-color: #006369;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 4fr);
  min-height: 800px;
}
.last-realizations--hover .last-realizations-item {
  height: 166.6666666667px;
}
.last-realizations--hover .last-realizations-item--hover {
  height: 300px;
}
.last-realizations--hover .last-realizations-item--hover .last-realizations-item__title {
  padding-bottom: 3rem;
}
.last-realizations-item {
  height: 200px;
  position: relative;
  transition: all 0.3s;
  background-color: #006369;
  cursor: pointer;
}
.last-realizations-item__title {
  transition: all 0.3s;
  z-index: 10;
  color: #FFFFFF;
  text-shadow: 0 0 5px #006369;
  text-align: center;
  text-decoration: none;
  padding: 2rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
.last-realizations-item__image {
  width: 100%;
  height: 100%;
}
.last-realizations-item__image:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 99, 105, 0.8) 100%);
}
.last-realizations-item__image img {
  transition: all 0.3s;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.button, a.button {
  font-family: "Open Sans";
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
}
.button__icon, a.button__icon {
  margin-top: 0.1rem;
  font-size: 0.8rem;
  padding: 0 0 0 0.5rem;
}
.vue-map {
  width: 100%;
  height: 100%;
  min-height: 2rem;
}
