@charset "UTF-8";
:root {
  --logo-size-l: 4.8rem;
  --logo-padding-l: 6.4rem;
  --nav-hr-line-l: 56rem;
  --logo-size-s: 4rem;
  --logo-padding-s: 2.4rem;
}

/* ==========================================================
  BREAKPOINT SYSTEM
   ----------------------------------------------------------
   Strategy : Desktop-First
   Units    : em (responsive to root font size)
   Reason   : Ensures zoom accessibility and scalable layout

   Design Targets
   ----------------------------------------------------------
   Desktop : 1440px (base layout)
   Tablet  : 768px
   Mobile  : 375px
========================================================== */
/* ==========================================================
   COLOR TOKENS
   ----------------------------------------------------------
   Primitive color scale.
   Semantic layer should consume these.
========================================================== */
/* ==========================================================
   2. TYPOGRAPHY TOKENS (FLUID & REM-BASED)
   ----------------------------------------------------------
   Structured map format.
   No positional lists (prevents fragility).
   Sizes use clamp() for fluid scaling.
========================================================== */
/* ==========================================================
   3. SPACING SCALE (REM SYSTEM)
   ----------------------------------------------------------
      Base: 1rem = 10px
========================================================== */
/* ==========================================================
   DESIGN TOKENS 
   ----------------------------------------------------------
   Single Source of Truth (SSOT) for visual primitives.

   Architectural Principles:
   - No component logic.
   - No hard-coded px values.
   - All sizes derived from root reference.
   - Mobile-first and fluid-ready.
   - Accessible and zoom-friendly.
========================================================== */
/* ==========================================================
   5. LAYOUT TOKENS
   ----------------------------------------------------------
   Container widths use rem for scalability.
   Padding uses fluid clamp for responsive breathing room.
========================================================== */
/* ==========================================================
   6. MOTION & SHAPE
   ----------------------------------------------------------
   Rem-based radius ensures zoom consistency.
========================================================== */
/* ==========================================================
   DESIGN TOKEN FUNCTIONS
   ----------------------------------------------------------
   Central access layer for:
   - Unit conversion
   - Fluid sizing
   - Spacing tokens
   - Color tokens

   Tokens remain pure data.
   Components never access raw maps.
========================================================== */
/* ==========================================================
   CORE UNIT HELPERS
========================================================== */
/* ----------------------------------------------------------
   Fluid clamp helper
   Example:
   fluid(16px, 4vw, 32px)
---------------------------------------------------------- */
/* ==========================================================
   SPACING TOKEN ACCESSOR
========================================================== */
/* ==========================================================
   COLOR TOKEN ACCESSOR
========================================================== */
/* ==========================================================
   TYPOGRAPHY ACCESSOR
========================================================== */
/* ==========================================================
   MIXIN → RESPONSIVE (Desktop First)
   ----------------------------------------------------------
   respond-up()   → Enhancements for larger screens
   respond-down() → Overrides for smaller screens
========================================================== */
/* ───────────────
  Min-width query
  Used when scaling UP from desktop
──────────────── */
/* ───────────────
   Max-width query
   Used to override desktop styles
   for smaller devices
──────────────── */
/*
example usage

.card {
  padding: 2rem; // mobile base

  @include respond(md) {
    padding: 3rem; // tablet+
  }

  @include respond(xl) {
    padding: 4rem; // desktop+
  }
}
*/
/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  height: 100vh;
  /* ----------------------------------------------------------
      Base Background Behavior
  ---------------------------------------------------------- */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse1 {
  0% {
    box-shadow: 0 0 0 0 white;
  }
  100% {
    box-shadow: 0 0 0 9.6rem rgba(255, 107, 107, 0);
  }
}
@keyframes loader-slide {
  to {
    transform: translateX(0%);
  }
}
/* Prevent font size inflation 
1rem= 10px , 62.5%
*/
html {
  font-size: 62.5%;
  font-variant: normal;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* ===================================
   CONTAINERS
=================================== */
.l-container {
  width: min(100% - 4rem, 150rem);
  margin-inline: auto;
}

.l-section {
  width: min(1200px, 90%);
  margin-inline: auto;
  padding-block: 2rem;
}

.l-container {
  width: min(100% - 4rem, 150rem);
  margin-inline: auto;
}

.l-section {
  width: min(1200px, 90%);
  margin-inline: auto;
  padding: 2rem 0;
  margin: 20rem;
}

/* ===================================
   GRID LAYOUTS
=================================== */
.l-grid {
  display: grid;
  gap: 1.5rem;
}

/* responsive auto grid */
.l-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* fixed column grids */
.l-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.l-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.l-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* sidebar layout */
.l-sidebar {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
}

/* split layout */
.l-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ==========================================================
   COMPOSITION → FLEX
   ----------------------------------------------------------
   Layout primitives for flexbox containers.

   RULE:
   Composition classes should ONLY define structure.
   No alignment, spacing, or behavior.

   Alignment and spacing belong in Utilities.
========================================================== */
/* Base flex container */
.l-flex {
  display: flex;
}

/* Column layout */
.l-flex-col {
  display: flex;
  flex-direction: column;
}

/* Wrapping layout container */
.l-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

/* ==========================================================
   LAYOUT → PAGE BACKGROUNDS
   ----------------------------------------------------------
   Purpose:
   Controls full-page background images based on the
   active page state class applied to <body>.

   Contract with JS:
   JS applies: body.page-{name}
   Example: body.page-home

   Responsive Strategy:
   Desktop-first.
   - Default = desktop image
   - Tablet override
   - Mobile override

   This is layout-level styling.
   Not a utility.
========================================================== */
/* ----------------------------------------------------------
   1. Page Registry
   ----------------------------------------------------------
   Central list of supported page states.
   Add new pages here to auto-generate backgrounds.
---------------------------------------------------------- */
/* ---------------------------
   Desktop (Default)
---------------------------- */
body.page-home {
  background-image: url("../../res/assets/home/background-home-desktop.jpg");
}

body.page-destination {
  background-image: url("../../res/assets/destination/background-destination-desktop.jpg");
}

body.page-crew {
  background-image: url("../../res/assets/crew/background-crew-desktop.jpg");
}

body.page-technology {
  background-image: url("../../res/assets/technology/background-technology-desktop.jpg");
}

/* ---------------------------
   Tablet Override (≤ md)
---------------------------- */
@media (max-width: 48em) {
  body.page-home {
    background-image: url("../../res/assets/home/background-home-tablet.jpg");
  }
  body.page-destination {
    background-image: url("../../res/assets/destination/background-destination-tablet.jpg");
  }
  body.page-crew {
    background-image: url("../../res/assets/crew/background-crew-tablet.jpg");
  }
  body.page-technology {
    background-image: url("../../res/assets/technology/background-technology-tablet.jpg");
  }
}
/* ---------------------------
   Mobile Override (≤ sm)
---------------------------- */
@media (max-width: 23.4375em) {
  body.page-home {
    background-image: url("../../res/assets/home/background-home-mobile.jpg");
  }
  body.page-destination {
    background-image: url("../../res/assets/destination/background-destination-mobile.jpg");
  }
  body.page-crew {
    background-image: url("../../res/assets/crew/background-crew-mobile.jpg");
  }
  body.page-technology {
    background-image: url("../../res/assets/technology/background-technology-mobile.jpg");
  }
}
.u-flex {
  display: flex;
}

.u-grid {
  display: grid;
}

.u-block {
  display: block;
}

.u-inline {
  display: inline;
}

.u-inline-block {
  display: inline-block;
}

.u-hidden {
  display: none;
}

.u-visible {
  display: block;
}

.u-center {
  display: grid;
  place-items: center;
}

.u-center-x {
  margin-inline: auto;
}

.u-center-y {
  display: flex;
  align-items: center;
}

.u-w-full {
  width: 100%;
}

.u-w-fit {
  width: fit-content;
}

.u-max-w {
  max-width: 150rem;
}

.u-gap-xs {
  gap: 0.25rem;
}

.u-gap-sm {
  gap: 0.5rem;
}

.u-gap-md {
  gap: 1rem;
}

.u-gap-lg {
  gap: 1.5rem;
}

.u-gap-xl {
  gap: 2rem;
}

.u-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.u-fade-up {
  animation: fadeUp 0.5s ease forwards;
}

.u-scale-in {
  animation: scaleIn 0.4s ease forwards;
}

.u-hover-pulse:hover {
  animation: pulse1 2s infinite;
}

/* ==========================================================
   UTILITIES → FLEX DIRECTION
   ----------------------------------------------------------
   Controls the direction of flex items.

   Usage:
   <div class="l-flex u-row">
   <div class="l-flex u-col">
========================================================== */
.u-row {
  flex-direction: row;
}

.u-col {
  flex-direction: column;
}

/* ==========================================================
   UTILITIES → ALIGN ITEMS
   ----------------------------------------------------------
   Controls vertical alignment inside flex containers.

   Usage:
   <div class="l-flex u-items-center">
========================================================== */
.u-items-center {
  align-items: center;
}

.u-items-start {
  align-items: flex-start;
}

.u-items-end {
  align-items: flex-end;
}

.u-items-stretch {
  align-items: stretch;
}

/* ==========================================================
   UTILITIES → JUSTIFY CONTENT
   ----------------------------------------------------------
   Controls horizontal distribution of flex items.

   Usage:
   <div class="l-flex u-justify-between">
========================================================== */
.u-justify-center {
  justify-content: center;
}

.u-justify-between {
  justify-content: space-between;
}

.u-justify-around {
  justify-content: space-around;
}

.u-justify-end {
  justify-content: flex-end;
}

/* ==========================================================
   UTILITIES → FLEX WRAPPING
   ----------------------------------------------------------
   Controls whether items wrap inside flex containers.
========================================================== */
.u-wrap {
  flex-wrap: wrap;
}

.u-nowrap {
  flex-wrap: nowrap;
}

/* ==========================================================
   UTILITIES → FLEX GROW
   ----------------------------------------------------------
   Controls how flex items expand.

   Very useful for layouts such as sticky footer.
========================================================== */
.u-grow {
  flex: 1;
}

.u-grow-0 {
  flex: 0;
}

/* column helpers */
.u-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.u-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.u-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* auto grid */
.u-grid-auto {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.u-loading {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 56.5685424949vw;
  height: 0.4rem;
  overflow: hidden;
  background: #0b0d17;
}
.u-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, #ffffff 0 1.5rem, transparent 1.5rem 3rem);
  transform: translateX(-50%);
  animation: loader-slide 1.5s linear infinite;
  will-change: transform;
}

body[class^=page-] {
  animation: fadeIn 0.6s ease-in;
}

.c-header {
  position: relative;
}
.c-header::after {
  content: "";
  position: absolute;
  right: 36%;
  bottom: 50%;
  width: var(--nav-hr-line-l);
  height: 0.4rem;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateZ(0);
  will-change: backdrop-filter;
  backdrop-filter: blur(10px) saturate(1);
  -webkit-backdrop-filter: blur(10px) saturate(1);
  border-radius: inherit;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .c-header::after {
    background: rgba(255, 255, 255, 0.6);
  }
}
.c-header .c-logo {
  aspect-ratio: 1;
  width: var(--logo-size-l);
  min-width: fit-content;
  padding: var(--logo-padding-l);
}
.c-header .c-nav {
  background: rgba(255, 255, 255, 0.05);
  transform: translateZ(0);
  will-change: backdrop-filter;
  backdrop-filter: blur(10px) saturate(1);
  -webkit-backdrop-filter: blur(10px) saturate(1);
  border-radius: inherit;
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .c-header .c-nav {
    background: rgba(255, 255, 255, 0.6);
  }
}
.c-header .c-nav {
  padding: 4.8rem 6.4rem;
}

@media (max-width: 30em) {
  .c-logo {
    width: var(--logo-size-s);
    padding: var(--logo-padding-s);
  }
}
.c-attribution {
  font-size: 11px;
  text-align: center;
}
.c-attribution a {
  color: hsl(228, 45%, 44%);
}

.c-nav__list {
  display: flex;
  gap: 4rem;
  font-family: "Barlow Condensed";
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.125em;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  margin-right: 4.8rem;
}

/* Stack nav vertically on tablets and below */
@media (max-width: 48em) {
  .c-nav__list {
    flex-direction: column;
    gap: 0.4rem;
  }
}
.c-nav__item {
  cursor: pointer;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}
.c-nav__item .c-nav__index {
  font-weight: 600;
}
.c-nav__item .c-nav__nav-heading {
  font-weight: 600;
  margin-left: 0.4rem;
}
.c-nav__item.is-active > .c-nav__nav-heading {
  color: #666666;
}
.c-nav__item {
  /* Animated underline */
}
.c-nav__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2.6rem;
  width: 110%;
  height: 0.4rem;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.c-nav__item:hover::after, .c-nav__item.is-active::after {
  transform: scaleX(1);
}

.c-btn {
  cursor: pointer;
  aspect-ratio: 1;
  border-radius: 50%;
}

.c-home {
  display: flex;
  align-items: center;
  color: #ffffff;
}
.c-home__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-home__content {
  max-width: 48rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-home__subtitle {
  font-family: "Barlow Condensed";
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d0d6f9;
  font-weight: 300;
}
.c-home__title {
  font-family: "Bellefair";
  font-size: clamp(7.2rem, 5vw, 14.4rem);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 400;
}
.c-home__description {
  font-family: "Barlow";
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0;
  color: #d0d6f9;
  text-align: justify;
}

.c-btn--explore {
  width: 27.2rem;
  border: none;
  font-family: "Bellefair";
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}
.c-btn--explore:hover {
  color: #d0d6f9;
}

@media (max-width: 30em) {
  .c-btn--explore {
    width: 14.4rem;
  }
}
@media (max-width: 23.4375em) {
  .c-btn--explore {
    width: 14.4rem;
  }
}
.c-destination {
  padding: 3.2rem;
  color: #ffffff;
}

/* ---------- TITLE ---------- */
.c-destination__title {
  display: flex;
  gap: 1.6rem;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Barlow Condensed";
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: 0.25em;
}

.c-destination__index {
  color: #666666;
  font-weight: 600;
}

/* ---------- LAYOUT ---------- */
.c-destination__layout {
  margin-top: 4.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

/* ---------- MEDIA ---------- */
.c-destination__media {
  flex: 1 1 30rem;
  min-height: 32rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-destination__image {
  max-width: 100%;
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
}

/* ---------- BODY ---------- */
.c-destination__body {
  flex: 1 1 30rem;
  min-height: 36rem;
}

/* ---------- TABS ---------- */
.c-destination__tabs {
  display: flex;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
  font-family: "Barlow Condensed";
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0.125em;
}

.c-tab {
  background: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  color: #b3b3b3;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.c-tab:hover,
.c-tab.is-active {
  color: #ffffff;
  border-color: #ffffff;
}

/* ---------- CONTENT ---------- */
.c-destination__name {
  font-family: "Bellefair";
  font-size: clamp(5.6rem, 4vw, 10rem);
  line-height: 1.15;
  letter-spacing: 0;
  font-weight: 300;
  text-transform: uppercase;
}

.c-destination__description {
  font-family: "Barlow";
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0;
  color: #d0d6f9;
  margin: 2.4rem 0 4rem;
  line-height: 1.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
  will-change: opacity, transform;
}

/* ---------- META ---------- */
.c-destination__meta {
  display: flex;
  gap: clamp(2rem, 5vw, 6rem);
  padding-top: 2.4rem;
  border-top: 1px solid #d0d6f9;
}

.c-destination__stat {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}

.c-destination__label {
  font-family: "Barlow Condensed";
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.125em;
  font-weight: 300;
  color: #d0d6f9;
}

.c-destination__value {
  font-family: "Bellefair";
  font-size: 2.8rem;
  line-height: 1.15;
  letter-spacing: 0;
  margin-top: 1.6rem;
}

/* ---------- Animation Utility ---------- */
.is-hidden {
  transform: scale(0.95);
}

.c-crew {
  color: #ffffff;
  margin-top: 6.4rem;
}
.c-crew__title {
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Barlow Condensed";
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: 0.25em;
}
.c-crew__index {
  color: #666666;
  font-weight: 600;
}
.c-crew__layout {
  display: flex;
  justify-content: space-between;
}
.c-crew {
  /* TEXT COLUMN */
}
.c-crew__text-col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  height: 60rem;
}
.c-crew__text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  min-height: 22rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
  will-change: opacity, transform;
}
.c-crew__role {
  font-family: "Bellefair";
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #b3b3b3;
  font-weight: 300;
}
.c-crew__name {
  font-family: "Bellefair";
  font-size: clamp(3.2rem, 3vw, 5.6rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 400;
  width: max-content;
}
.c-crew__bio {
  font-family: "Barlow";
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: 300;
  color: #d0d6f9;
  max-width: 64rem;
}
.c-crew {
  /* IMAGE */
}
.c-crew__image-frame {
  width: 40rem;
  aspect-ratio: 1.2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.c-crew__image-frame .c-crew__image {
  object-fit: contain;
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
}
.c-crew {
  /* NAV DOTS */
}
.c-crew__nav {
  display: flex;
  gap: 1.5rem;
}
.c-crew__dot {
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  opacity: 0.3;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.c-crew__dot:hover {
  transform: scale(1.2);
  opacity: 0.6;
}
.c-crew__dot.is-active {
  transform: scale(1.3);
}

.c-technology {
  color: #ffffff;
  margin-top: 6.4rem;
}
.c-technology__title {
  font-family: "Barlow Condensed";
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 6.4rem;
}
.c-technology__title .c-technology__index {
  color: #666666;
  font-weight: 600;
}
.c-technology__layout {
  display: grid;
  grid-template-columns: auto 4fr 55%;
  gap: 4.8rem;
  align-items: center;
}

.c-technology__nav {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
.c-technology__nav .c-technology__btn {
  font-family: "Bellefair";
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: 0;
  width: 8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
}
.c-technology__nav .c-technology__btn.is-active {
  background: #ffffff;
  color: #0b0d17;
}

/* Content */
.c-technology__content {
  max-width: 50rem;
}

.c-technology__subtitle {
  font-family: "Bellefair";
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: 0;
  color: #b3b3b3;
  text-transform: uppercase;
}

.c-technology__name {
  font-family: "Bellefair";
  font-size: clamp(3.2rem, 3vw, 5.6rem);
  line-height: 1.15;
  letter-spacing: 0;
  margin-top: 1.6rem;
  text-transform: uppercase;
  font-weight: 300;
}

.c-technology__description {
  font-family: "Barlow";
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 2.4rem;
  color: #d0d6f9;
  font-weight: 300;
}

/* Image */
.c-technology__image-frame {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-technology__image-frame .c-technology__image {
  width: 100%;
  max-width: 50rem;
}

/* Animation */
.c-technology__image,
.c-technology__name,
.c-technology__description {
  transition: 0.4s ease;
}

/* Tablet */
@media (max-width: 64em) {
  .c-technology__layout {
    grid-template-columns: auto 1fr;
  }
  .c-technology__image-frame {
    grid-column: span 2;
    justify-content: center;
  }
  .c-technology__btn {
    width: 5.6rem;
  }
}
/* Mobile */
@media (max-width: 48em) {
  .c-technology__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .c-technology__nav {
    flex-direction: row;
    justify-content: center;
  }
  .c-technology__image-frame {
    order: -1;
  }
  .c-technology__btn {
    width: 4rem;
  }
}
.is-active {
  opacity: 1;
}

.is-hidden {
  opacity: 0;
  transform: translateY(0.4rem);
}

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