* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

:root {
  --dark-blue: #060a13;
  --light-blue: #dbe4ee;
  --white: #fff;
  --blue-card: #252535;
  --blue: #6290c8;
  --grey: #999999;
  --light-grey: #99999970;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: "DM Sans", sans-serif;
  color: var(--light-blue);
  background-color: var(--dark-blue);
}

.container {
  max-width: 140rem;
  padding: 0 2rem;
  margin: 0 auto;
}

.contact-btn {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  justify-self: end;
}
.contact-btn a {
  position: relative;
  display: inline-block;
  color: var(--light-blue);
  text-decoration: none;
  padding-bottom: 0.2rem;
  border-bottom: 0.1rem solid var(--light-grey);
}
.contact-btn a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background: var(--light-blue);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.contact-btn a:hover::after {
  transform: scaleX(1);
}

.lineDivider {
  width: 0.1rem;
  height: 18rem;
  background: var(--light-grey);
  margin: 4rem auto 3rem;
}

.pageIntro {
  padding: 24rem 0 4rem;
}

.pageIntroWrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.pageIntroHeadLine {
  font-size: 1.6rem;
  color: var(--blue);
  align-self: flex-end;
}

.pageIntroTitle {
  justify-self: center;
  text-align: center;
  font-size: 12rem;
  font-weight: 300;
  color: var(--light-blue);
  line-height: 0.9;
  align-self: flex-end;
}

.pageIntro .contact-btn {
  grid-column: auto;
  grid-row: auto;
  justify-self: flex-end;
  align-self: flex-end;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 780px) {
  .pageIntro {
    padding: 14rem 0 3rem;
  }
  .pageIntroWrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.2rem;
    text-align: left;
  }
  .pageIntroHeadLine {
    font-size: 1.4rem;
    align-self: flex-start;
  }
  .pageIntroTitle {
    font-size: 8rem;
    text-align: left;
    margin-bottom: 2rem;
    align-self: flex-start;
  }
  .pageIntro .contact-btn {
    align-self: flex-start;
  }
}
@media (max-width: 600px) {
  .pageIntroTitle {
    font-size: 7rem;
  }
}
:root {
  --a-ease: cubic-bezier(0.16, 1, 0.3, 1);
  /* tempos MUITO mais lentos */
  --a-fast: 1.4s;
  --a-med: 1.8s;
  --a-slow: 2s;
  --a-blur: 1.6rem;
  --a-lift: 2.2rem;
  --a-scale: 0.97;
}

.a {
  --a-delay: 0s;
  --a-dur: var(--a-med);
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}

.a {
  opacity: 0;
  transform: translate3d(0, 0.8rem, 0);
  filter: blur(var(--a-blur));
}

html:not(.is-loading) .a {
  animation-duration: var(--a-dur);
  animation-timing-function: var(--a-ease);
  animation-fill-mode: both;
  animation-delay: var(--a-delay);
}

.a--fade {
  animation-name: kFade;
}

.a--fade-up {
  animation-name: kFadeUp;
}

.a--blur-up {
  animation-name: kBlurUp;
}

.a--pop {
  animation-name: kPop;
}

.a--line-vertical {
  opacity: 1;
  filter: none;
  transform: none;
  transform-origin: top;
  animation-name: kLineVertical;
}

.t-fast {
  --a-dur: var(--a-fast);
}

.t-med {
  --a-dur: var(--a-med);
}

.t-slow {
  --a-dur: var(--a-slow);
}

.d0 {
  --a-delay: 0s;
}

.d1 {
  --a-delay: 0.12s;
}

.d2 {
  --a-delay: 0.24s;
}

.d3 {
  --a-delay: 0.36s;
}

.d4 {
  --a-delay: 0.48s;
}

.d5 {
  --a-delay: 0.6s;
}

.d6 {
  --a-delay: 0.72s;
}

@keyframes kFade {
  from {
    opacity: 0;
    filter: blur(var(--a-blur));
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes kFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, var(--a-lift), 0);
    filter: blur(var(--a-blur));
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
@keyframes kBlurUp {
  from {
    opacity: 0;
    transform: translate3d(0, 1.6rem, 0);
    filter: blur(calc(var(--a-blur) * 1.2));
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
@keyframes kPop {
  from {
    opacity: 0;
    transform: scale(var(--a-scale));
    filter: blur(var(--a-blur));
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes kLineVertical {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}
@supports (animation-timeline: view()) {
  .a--scroll {
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
  }
  .a--line-vertical {
    animation-timeline: view();
    animation-range: entry 15% cover 35%;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  margin-bottom: 4rem;
}
header .headerContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}
header .headerContent .headerLogo a img {
  width: 8rem;
}
header .headerContent .headerMenuToggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  width: 3.2rem;
  height: 3.2rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
}
header .headerContent .headerMenuToggle span {
  display: block;
  width: 100%;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--light-blue);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
header .headerContent .headerMenuToggle.is-active span:nth-child(1) {
  transform: translateY(0.6rem) rotate(45deg);
}
header .headerContent .headerMenuToggle.is-active span:nth-child(2) {
  opacity: 0;
}
header .headerContent .headerMenuToggle.is-active span:nth-child(3) {
  transform: translateY(-0.6rem) rotate(-45deg);
}
header .headerContent nav ul {
  display: flex;
  gap: 28rem;
}
header .headerContent nav ul a {
  color: var(--light-blue);
  transition: 0.2s ease;
}
header .headerContent nav ul a:hover {
  color: var(--blue);
}

body.menu-open {
  overflow: hidden;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1170px) {
  header .headerContent nav ul {
    gap: 24rem;
  }
}
@media (max-width: 990px) {
  header .headerContent nav ul {
    gap: 8rem;
  }
}
@media (max-width: 780px) {
  header {
    position: absolute;
  }
  header .headerContent {
    position: relative;
  }
  header .headerContent .headerMenuToggle {
    display: flex;
    margin-left: auto;
    position: relative;
    z-index: 30;
  }
  header .headerContent nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 50vh;
    z-index: 20;
    background-color: var(--dark-blue);
    border-bottom: 0.01rem solid var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    will-change: transform, opacity;
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }
  header .headerContent nav ul {
    flex-direction: column;
    gap: 2.4rem;
    text-align: center;
  }
  header .headerContent nav a {
    font-size: 2rem;
  }
  header .headerContent nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.floatingMenuToggle {
  position: fixed;
  right: 2rem;
  bottom: 1rem;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border-radius: 99rem;
  border: 0.1rem solid rgba(219, 228, 238, 0.6);
  background: rgba(6, 10, 19, 0.35);
  backdrop-filter: blur(1.6rem) saturate(1.2);
  -webkit-backdrop-filter: blur(1.6rem) saturate(1.2);
  box-shadow: rgba(149, 157, 165, 0.4) 0 0 1.2rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  z-index: 40;
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.floatingMenuToggle span {
  display: block;
  width: 70%;
  margin: 0 auto;
  height: 0.2rem;
  border-radius: 99rem;
  background: var(--light-blue);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.floatingMenuToggle span:nth-child(1) {
  transform: translateY(0);
}
.floatingMenuToggle span:nth-child(2) {
  position: relative;
}
.floatingMenuToggle span:nth-child(3) {
  transform: translateY(0);
}
.floatingMenuToggle span:nth-child(2)::before,
.floatingMenuToggle span:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0.2rem;
  margin-top: -0.1rem;
  border-radius: 99rem;
  background: var(--light-blue);
  opacity: 0;
  transform: translateY(0) scaleX(0.2);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.floatingMenuToggle span:nth-child(2)::before {
  left: -0.9rem;
}
.floatingMenuToggle span:nth-child(2)::after {
  right: -0.9rem;
}
.floatingMenuToggle.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floatingMenuToggle:hover {
  background: rgba(6, 10, 19, 0.5);
  border-color: rgba(219, 228, 238, 0.9);
}
.floatingMenuToggle.is-active span:nth-child(1) {
  transform: translateY(0.6rem) rotate(45deg);
}
.floatingMenuToggle.is-active span:nth-child(2) {
  background: transparent;
}
.floatingMenuToggle.is-active span:nth-child(3) {
  transform: translateY(-0.7rem) rotate(-45deg);
}
.floatingMenuToggle.is-active span:nth-child(2)::before,
.floatingMenuToggle.is-active span:nth-child(2)::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 780px) {
  .floatingMenuToggle {
    display: flex;
  }
}
.hero {
  min-height: 100vh;
  position: relative;
}
.hero .heroWrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto;
  padding-bottom: 4rem;
}
.hero .heroMain {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.hero .heroMain span {
  font-size: 1.6rem;
  color: var(--blue);
  margin-bottom: 1rem;
}
.hero .heroMain h1 {
  font-size: 12rem;
  font-weight: 400;
  line-height: 0.9;
  color: var(--light-blue);
}
.hero .heroBottomContent {
  display: contents;
}
.hero .heroDescription {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: start;
}
.hero .heroDescription p {
  max-width: 40rem;
  color: var(--grey);
  text-align: left;
}
.hero .contact-btn {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  justify-self: end;
}
.hero .contact-btn a {
  position: relative;
  display: inline-block;
  color: var(--light-blue);
  text-decoration: none;
  padding-bottom: 0.2rem;
  border-bottom: 0.1rem solid var(--light-grey);
}
.hero .contact-btn a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  background: var(--light-blue);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.hero .contact-btn a:hover::after {
  transform: scaleX(1);
}

.heroShapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  contain: layout paint;
}

.heroShape {
  position: absolute;
  background: var(--light-blue);
  overflow: hidden;
  contain: content;
}
.heroShape img,
.heroShape video,
.heroShape .heroShapeVideo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.heroShape--hasVideo {
  background: transparent;
}

.heroShapeVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
  will-change: opacity;
}

.heroShapeVideo.is-active {
  opacity: 1;
}

.heroShape--tl {
  top: 13rem;
  left: 17%;
  width: 14rem;
  height: 18rem;
}

.heroShape--tr {
  top: 14rem;
  right: 7%;
  width: 18rem;
  height: 23rem;
}

.heroShape--bl {
  bottom: 5rem;
  left: 9%;
  width: 18rem;
  height: 22rem;
}

.heroShape--mr {
  bottom: 15rem;
  right: 15%;
  width: 20rem;
  height: 23rem;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1150px) {
  .heroShape--tl {
    left: 10%;
  }
  .heroShape--tr {
    right: 5%;
  }
  .heroShape--bl {
    left: 3%;
  }
  .heroShape--mr {
    bottom: 12rem;
    right: 7%;
  }
}
@media (max-width: 930px) {
  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero .heroDescription p {
    font-size: 1.4rem;
    max-width: 30rem;
  }
  .hero > .container {
    order: 1;
    margin: 4rem 0 0 0;
  }
  .hero > .heroShapes {
    order: 2;
  }
  .hero .heroWrapper {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 8rem 0 4rem;
  }
  .hero .heroMain {
    grid-column: auto;
    grid-row: auto;
    align-self: flex-start;
    justify-self: auto;
    margin-bottom: 2.4rem;
  }
  .hero .heroMain span {
    font-size: 1.4rem;
  }
  .hero .heroMain h1 {
    font-size: 8rem;
    line-height: 1;
  }
  .hero .heroBottomContent {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  .hero .heroDescription,
  .hero .contact-btn {
    grid-column: auto;
    grid-row: auto;
    align-self: flex-start;
    justify-self: auto;
  }
  .heroShapes {
    position: static;
    inset: auto;
    z-index: auto;
    pointer-events: none;
    margin-top: 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 4rem;
  }
  .heroShape {
    position: relative;
    width: 100%;
    height: 48rem;
    background: var(--light-blue);
    overflow: hidden;
    top: 0;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .heroShape--tl {
    top: 8rem;
  }
  .heroShape--tr {
    top: 0;
  }
  .heroShape--bl {
    top: 8rem;
  }
  .heroShape--mr {
    top: 0rem;
  }
}
@media (max-width: 600px) {
  .hero .heroWrapper {
    padding-top: 8rem;
  }
  .heroShapes {
    padding: 0 1.6rem;
    -moz-column-gap: 1.6rem;
         column-gap: 1.6rem;
    row-gap: 3rem;
  }
  .heroShape {
    height: 26rem;
  }
  .heroShape--tr {
    top: 1.5rem;
  }
  .heroShape--bl {
    top: 7rem;
  }
  .heroShape--mr {
    top: 0.5rem;
  }
}
/* =========================================
   ACCESSIBILITY / PERFORMANCE FALLBACK
   ========================================= */
@media (prefers-reduced-motion: reduce) {
  .heroShapeVideo {
    transition: none;
  }
}
.sectionIntro {
  width: 100%;
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
}

.sectionIntroHeadline {
  display: block;
  font-size: 1.4rem;
  color: var(--grey);
  margin-bottom: 1rem;
}

.sectionIntroTitle {
  font-size: 4.2rem;
  line-height: 1.25;
  color: var(--light-blue);
  font-weight: 300;
}
.sectionIntroTitle span {
  font-weight: 800;
  font-style: italic;
  color: var(--blue);
}

.sectionIntro .contact-btn {
  display: inline-block;
}

.sectionIntro--left {
  text-align: left;
  margin-left: 0;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 780px) {
  .sectionIntroTitle {
    font-size: 3.2rem;
  }
}
@media (max-width: 600px) {
  .sectionIntroTitle {
    font-size: 2.6rem;
  }
  .sectionIntroHeadline {
    font-size: 1.3rem;
  }
}
.myServices {
  display: flex;
  align-items: center;
  padding: 24rem 0 4rem 0;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 780px) {
  .myServices {
    padding: 28rem 0 4rem 0;
  }
}
.ctaContact {
  padding: 10rem 0;
}

@media (max-width: 780px) {
  .ctaContact {
    padding: 8rem 0;
  }
}
@media (max-width: 600px) {
  .ctaContact {
    padding: 6rem 0;
  }
}
.highlightedWorks {
  padding: 8rem 0;
}

.highlightedWorksGrid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(2, minmax(28rem, 38rem));
  justify-content: center;
  align-items: start;
}

.highlightedWork {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.highlightedWorkMedia {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--dark-blue);
  isolation: isolate;
  border-radius: 0;
  aspect-ratio: 9/16;
}

.highlightedWorkVideo {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.highlightedWorkPlay {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  border: 0.1rem solid var(--blue);
  background: var(--blue);
  backdrop-filter: blur(1.2rem) saturate(1.2);
  -webkit-backdrop-filter: blur(1.2rem) saturate(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.highlightedWorkPlay::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 1.6rem solid var(--light-blue);
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  margin-left: 0.4rem;
}
.highlightedWorkPlay:hover {
  transform: scale(1.06);
}
.highlightedWorkPlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.92);
}

.highlightedWorkInfo {
  margin-top: 1.2rem;
  text-align: left;
}
.highlightedWorkInfo h3 {
  font-size: 1.5rem;
  color: var(--light-blue);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.highlightedWorkInfo p {
  font-size: 1.2rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .highlightedWorks {
    padding: 7rem 0;
  }
  .highlightedWorksGrid {
    gap: 2.4rem;
    grid-template-columns: repeat(2, minmax(26rem, 34rem));
  }
}
@media (max-width: 768px) {
  .highlightedWorks {
    padding: 4rem 0;
  }
  .highlightedWorksGrid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 4rem;
  }
  .highlightedWork {
    width: min(44rem, 100%);
  }
  .highlightedWorkMedia {
    max-height: 78vh;
  }
  .highlightedWorkVideo {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .highlightedWorkPlay {
    width: 5rem;
    height: 5rem;
  }
  .highlightedWorkPlay::before {
    border-left-width: 1.4rem;
    border-top-width: 0.9rem;
    border-bottom-width: 0.9rem;
  }
  .highlightedWorkInfo h3 {
    font-size: 1.3rem;
  }
  .highlightedWorkInfo p {
    font-size: 1.1rem;
  }
}
.servicesGrid {
  padding: 6rem 0 10rem;
}

.servicesRow {
  display: grid;
  grid-template-columns: minmax(0, 32rem) minmax(0, 1fr);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  align-items: stretch;
  margin-bottom: 6rem;
}

.servicesMedia {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--dark-blue);
}

.servicesMediaVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.servicesCard {
  background: var(--blue-card);
  padding: 3.2rem 3.2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--light-blue);
}

.servicesCardHeader {
  margin-bottom: 6rem;
}

.servicesCardIndex {
  display: block;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 1.4rem;
}

.servicesCardTitle {
  font-size: 5.2rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.servicesCardDescription {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--grey);
  max-width: 100%;
}

.servicesCardTags {
  margin-top: auto;
}

.servicesCardTags ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  row-gap: 0.6rem;
  font-size: 1.4rem;
  color: var(--blue);
}

.servicesRow--imageRight {
  grid-template-columns: minmax(0, 1fr) minmax(0, 32rem);
}

@media (max-width: 980px) {
  .servicesRow {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .servicesRow--imageRight {
    grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
  }
  .servicesCardTitle {
    font-size: 4.2rem;
  }
}
@media (max-width: 780px) {
  .servicesGrid {
    padding: 5rem 0 8rem;
  }
  .servicesRow {
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
    margin-bottom: 5rem;
  }
  .servicesCard {
    order: 1;
  }
  .servicesMedia {
    order: 2;
    max-width: 32rem;
  }
  .servicesRow--imageLeft .servicesMedia {
    margin: 0 auto 0 0;
  }
  .servicesRow--imageRight .servicesMedia {
    margin: 0 0 0 auto;
  }
  .servicesCardDescription {
    max-width: 40rem;
    font-size: 1.4rem;
  }
  .servicesCardTags ul {
    font-size: 1.2rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .servicesMedia {
    max-width: 100%;
  }
  .servicesCard {
    padding: 2.4rem 1.8rem;
  }
  .servicesCardTitle {
    font-size: 3.2rem;
  }
}
.contactInfos {
  padding: 4rem 0 8rem;
}

.contactInfosWrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -moz-column-gap: 6rem;
       column-gap: 6rem;
}

.contactInfo {
  position: relative;
  padding-top: 1.6rem;
  font-size: 2rem;
  line-height: 1.4;
  color: var(--light-blue);
}

.contactInfo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.1rem;
  background: var(--light-grey);
  opacity: 0.3;
}

.contactInfo a {
  color: var(--light-blue);
  text-decoration: none;
}

.contactInfo span {
  margin-right: 0.4rem;
}

.contactInfo:last-child a {
  color: var(--blue);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1090px) {
  .contactInfos {
    padding: 6rem 0 6rem;
  }
  .contactInfosWrapper {
    grid-template-columns: 1fr;
    row-gap: 2.4rem;
  }
  .contactInfo {
    font-size: 2.6rem;
  }
}
@media (max-width: 780px) {
  .contactInfo {
    font-size: 2rem;
  }
}
@media (max-width: 400px) {
  .contactInfo {
    font-size: 1.8rem;
  }
}
footer {
  padding: 6rem 0 4rem 0;
}

.footerWrapper {
  width: 100%;
}

.footerHero {
  position: relative;
  min-height: 70rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./../../assets/footer/timeline-after.avif);
}

.footerInfoCard {
  position: absolute;
  left: 4rem;
  bottom: 4rem;
  width: 30rem;
  min-height: 26rem;
  background: var(--white);
  box-shadow: rgba(100, 100, 111, 0.7) 0px 7px 29px 0px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footerInfoTop {
  display: flex;
  gap: 5rem;
  padding-bottom: 6rem;
  width: 100%;
}

.footerMenu h4,
.footerSocial h4 {
  font-size: 1.8rem;
  color: var(--grey);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.footerMenu ul,
.footerSocial ul {
  list-style: none;
}

.footerMenu li,
.footerSocial li {
  font-size: 1.4rem;
  line-height: 1.8;
}

.footerMenu a,
.footerSocial a {
  color: var(--dark-blue);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footerMenu a:hover,
.footerSocial a:hover {
  opacity: 0.7;
}

.footerLogo {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.footerLogo span {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dark-blue);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media (max-width: 1024px) {
  .footerHero {
    min-height: 60rem;
  }
  .footerInfoCard {
    left: 3rem;
    bottom: 3rem;
    width: 28rem;
  }
}
@media (max-width: 780px) {
  footer {
    padding: 4rem 0 3rem 0;
  }
  .footerHero {
    min-height: auto;
    padding: 28rem 2rem 2rem;
  }
  .footerInfoCard {
    position: static;
    width: 100%;
    max-width: 65rem;
    margin: 0 auto;
  }
  .footerLogo {
    text-align: center;
  }
  .footerLogo span {
    font-size: 6rem;
  }
}
@media (max-width: 600px) {
  .footerLogo span {
    font-size: 2.6rem;
  }
}/*# sourceMappingURL=styles.css.map */