header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  border-bottom: 1px solid gray;
  background-color: #E3E0DB;
}
header .inner {
  display: flex;
  max-width: 1700px;
  margin: auto;
  align-items: center;
}
header nav {
  display: flex;
  gap: 2rem;
}
header nav a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}
header nav a:hover {
  color: #1C6580;
}
header nav #language-btn {
  margin-left: 4em;
}
header .nav-gap {
  flex-grow: 1;
}
header .nav-toggler {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 1024px) {
  header .nav-toggler {
    display: block;
  }
  header nav {
    top: 0;
    right: 0;
    position: fixed;
    height: 100%;
    width: 100%;
    max-width: 400px;
    padding: 3rem;
    background-color: #E3E0DB;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
  }
  header nav.show {
    box-shadow: -2rem 0 2rem rgba(0, 0, 0, 0.2), -2rem 0 4rem rgba(0, 0, 0, 0.2), -2rem 0 8rem rgba(0, 0, 0, 0.2), -2rem 0 16rem rgba(0, 0, 0, 0.2);
    transform: translateX(0);
  }
  header nav #language-btn {
    margin-left: 0;
    margin-top: 2rem;
  }
  header nav .nav-toggler {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
}

html, body {
  background-color: #E3E0DB;
  font-family: "Roboto", sans-serif;
  scroll-behavior: smooth !important;
  -webkit-scroll-behavior: smooth !important;
}

.teal {
  background-color: #1C6580;
}
.teal * {
  color: white;
}

.white {
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Ropa Sans", sans-serif;
  text-transform: none;
}

a {
  color: #1C6580;
  text-decoration: none;
}

.multiply {
  mix-blend-mode: multiply;
}

h1 {
  font-size: clamp(3rem, 6vw, 8rem);
}
h1 + h2 {
  margin-top: 0.5em;
}

h2 {
  font-size: clamp(2.2rem, 3vw, 4rem);
}

h3 {
  font-size: clamp(1.6rem, 3vw, 3rem);
}

p, li {
  font-size: clamp(1rem, 2.3vw, 1.5rem);
  line-height: 1.66;
}
p.big, li.big {
  font-size: clamp(1rem, 2.3vw, 2.2rem);
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 32, 37, 0.8);
  z-index: 1000;
  overflow-y: scroll;
}
.popup .inner {
  margin: 4rem auto;
  top: 0;
  margin-top: 8rem;
  padding: 2rem;
  width: 100%;
  max-width: 768px;
  background-color: #E3E0DB;
}

ul {
  list-style-type: square;
}

.right {
  text-align: right;
}

.hero {
  padding-top: 8rem;
  height: 100vh;
  position: relative;
}

#hero-video {
  width: 100%;
  max-width: 1000px;
  height: auto;
  max-height: 50vh;
}

@media (min-width: 1024px) {
  .container {
    max-width: 1700px !important;
  }
}

.flex-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.read-more-cta {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  background-color: #1C6580;
  padding: 0.75em 1.5em;
  color: white;
  border: 2px solid transparent;
  border-radius: 0;
}
.btn i {
  margin-left: 1em;
}
.btn:hover {
  background-color: #E3E0DB;
  color: #1C6580;
  border-color: #1C6580;
}
.btn.angled {
  font-size: 1.2rem;
  padding-left: 3em;
  padding-right: 3em;
  height: 2em;
  display: flex;
  align-items: center;
  border: none !important;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  --angle: 2em;
  transition: 0.2s;
  -webkit-clip-path: polygon(var(--angle) 0%, 100% 0%, calc(100% - var(--angle)) 100%, 0em 100%);
          clip-path: polygon(var(--angle) 0%, 100% 0%, calc(100% - var(--angle)) 100%, 0em 100%);
}
.btn.angled:hover {
  background-color: #1C6580;
  color: white;
  --angle: 1em;
}

#logo-vertical {
  position: absolute;
  font-size: 1rem;
  height: 12em;
  bottom: 4em;
  right: 4em;
  width: auto;
}
@media (max-width: 1024px) {
  #logo-vertical {
    display: none;
  }
}

.profiles {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem;
}
.profiles a:has(img) {
  display: block;
  margin-bottom: 1em;
}
.profiles img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.profiles:hover circle {
  fill: red !important;
}
@media (max-width: 1024px) {
  .profiles {
    grid-template-columns: 1fr;
  }
}

.hide {
  transition: 1s;
  opacity: 0;
  pointer-events: none;
}

section {
  position: relative;
  padding: 12rem 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  section {
    padding: 4rem 0;
  }
}

.big-icon {
  font-size: 1rem;
  width: auto;
  max-height: 6em;
  height: 100%;
  margin-bottom: 1em;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12rem;
}
@media (max-width: 1024px) {
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.as-background {
  top: 0;
  left: 0;
  opacity: 0.15;
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transform: rotate(15deg) scale(1.05);
}

.news-article-container {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(370px, 80vw), 1fr));
  grid-template-rows: 1fr;
  gap: 3rem;
}

.news-article {
  background-color: #fff;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.news-article h3 {
  font-size: 2.2rem;
  margin-bottom: 0.7em;
}
.news-article .news-article-preview {
  width: 100%;
  padding-top: 56.25%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: white;
}
.news-article .news-article-excerpt,
.news-article .news-article-long-text {
  line-height: 1.8;
}
.news-article .news-article-long-text {
  display: none;
}
.news-article .news-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 2rem;
  min-height: inherit;
}
.news-article .news-article-bottom {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.news-article .news-article-bottom time {
  font-weight: 700;
  font-size: 1rem;
}
.news-article .news-article-bottom time i {
  display: inline-block;
  margin-right: 0.5em;
  transform: scale(1.2);
}
.news-article .news-article-bottom .btn {
  font-size: 0.8rem;
}

#next-dimension {
  width: 100%;
  max-width: 1400px;
  padding-top: 100%;
  position: relative;
  margin: 0 auto;
}
#next-dimension img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#next-dimension [id^=dim-] {
  position: absolute;
  width: 25%;
  transform: translate(-50%, -50%);
  transition: 0.2s;
  text-align: center;
}
@media (max-width: 1024px) {
  #next-dimension {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  #next-dimension img {
    display: none;
    position: relative;
    width: 100%;
    max-width: 50vw;
    margin: 4rem auto;
    height: auto;
  }
  #next-dimension [id^=dim-] {
    position: relative !important;
    top: unset !important;
    left: unset !important;
    transform: unset !important;
    width: 100% !important;
    text-align: left !important;
  }
}
#next-dimension #dim-top-left {
  top: 27%;
  left: 27%;
}
#next-dimension #dim-top-right {
  top: 30%;
  left: 77%;
}
#next-dimension #dim-bottom-left {
  top: 75%;
  top: 66%;
  left: 25%;
}
#next-dimension #dim-bottom-right {
  top: 72%;
  left: 72%;
}

#services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
}
@media (max-width: 1024px) {
  #services {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
#services .service {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 2rem;
}
#services .service img {
  width: auto;
  height: auto;
  max-width: 100%;
  align-self: center;
}
@media (max-width: 1024px) {
  #services .service {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

#references {
  display: grid;
  gap: 8rem;
  align-items: center;
  justify-items: center;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
#references > * {
  width: auto;
  height: auto;
  max-width: 100%;
}

footer {
  color: white;
  padding: 8rem 0;
  background-color: #1C2025;
}
footer .footer-main {
  display: flex;
  justify-content: space-between;
}
footer .footer-main .right {
  position: relative;
}
footer .footer-main .right img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 12rem;
  width: auto;
  filter: invert(1);
}
@media (max-width: 768px) {
  footer .footer-main {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 4rem;
  }
  footer .footer-main .right {
    display: none;
  }
}

.footer-bottom {
  padding: 2rem 0;
  background-color: #111;
  text-align: right;
}
.footer-bottom * {
  font-size: 1rem;
  color: white;
}
.footer-bottom a {
  text-decoration: none !important;
}/*# sourceMappingURL=style.css.map */