@charset "UTF-8";
/* 🧩 1. abstracts/ (sometimes called “utilities”)

Purpose:
Holds all your global helpers — things that don’t generate actual CSS directly but help the rest of your styles. */
@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.6;
  }
  10% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.55;
  }
  20% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.5;
  }
  30% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.45;
  }
  40% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.35;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0.25;
  }
  70% {
    transform: translate(-50%, -50%) scale(2.1);
    opacity: 0.15;
  }
  80% {
    transform: translate(-50%, -50%) scale(2.4);
    opacity: 0.1;
  }
  90% {
    transform: translate(-50%, -50%) scale(2.7);
    opacity: 0.05;
  }
  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}
/* rotate planet */
@keyframes rotate-planet {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100vh;
  color: #d0d6f9;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: "Bellefair", sans-serif;
}

ul,
ol {
  list-style: none; /* Remove bullets or numbers */
  margin: 0; /* Remove browser default spacing */
  padding: 0;
}

a,
a:visited {
  color: inherit; /* Use the same color as the parent element */
  text-decoration: none; /* Remove underline */
  background: none; /* Remove any background */
  font: inherit; /* Inherit font style and weight */
}

li {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Barlow", "Helvetica Neue", Arial, sans-serif;
  color: #ffffff;
  background-color: #0b0d17;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Bellefair", Georgia, serif;
}

/* Navigation styling helper — use this class on nav links to get the condensed,
	 uppercase, spaced look from the screenshot. */
.nav-link,
header a,
.navbar a {
  font-family: "Barlow Condensed", "Barlow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 400;
  font-size: 16px;
  color: #d0d6f9;
  text-decoration: none;
}

/* Active / hover state example */
.nav-link:hover,
.navbar a:hover,
header a:hover {
  color: #ffffff;
}

.text-bellefair {
  font-family: "Bellefair", serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  font-feature-settings: "liga" off, "clig" off;
  text-align: center;
}
.text-bellefair__primary {
  font-size: 1.5rem;
  min-height: 2rem;
}
@media (min-width: 768px) {
  .text-bellefair__primary {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .text-bellefair__primary {
    max-width: 25rem;
  }
}
.text-bellefair__secondary {
  opacity: 0.5;
  min-height: 1.5rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .text-bellefair__secondary {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .text-bellefair {
    text-align: left;
  }
}

.text-bellafair {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  color: #d0d6f9;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  min-height: 150px;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .text-bellafair {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .text-bellafair {
    text-align: left;
  }
}
.text-bellafair-text {
  transition: opacity 0.3s ease-in-out;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  gap: 4rem;
  flex-shrink: 0;
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .header {
    padding-top: 0;
  }
}
@media (min-width: 1024px) {
  .header {
    margin-top: 2rem;
  }
}
.header__logo {
  margin-left: 48px;
  width: 2.5rem;
  height: 2.5rem;
  align-self: center;
  justify-self: center;
  margin-top: -0.5rem;
}
.header-line {
  display: none;
}
@media (min-width: 768px) {
  .header-line {
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.25);
    left: 15%;
    z-index: 0;
    pointer-events: none;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .header-line {
    left: 13%;
  }
}
@media (min-width: 768px) and (min-width: 1440px) {
  .header-line {
    left: 10%;
  }
}

.footer {
  width: 100%;
  padding: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__text {
  font-family: "Barlow", sans-serif;
  font-size: 0.875rem;
  color: #d0d6f9;
  line-height: 1.5;
  margin: 0;
}
.footer__link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #d0d6f9;
  text-decoration: underline;
}

.btn {
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  border: none;
  color: var(--color-blue-900, #0b0d17);
  font-feature-settings: "liga" off, "clig" off;
  /* mobile/text-preset-4 */
  font-family: "Bellefair";
  font-size: var(--font-size-mobile-text-preset-4, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .btn {
    width: 17rem;
    height: 17rem;
    /* tablet/text-preset-4 */
    font-size: var(--font-size-tablet-text-preset-4, 1.5rem);
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: -1;
}
.btn:hover::after {
  animation: pulse 1.2s linear infinite;
}

/* hamburger menu */
.hamburger {
  cursor: pointer;
  width: 24px;
  height: 24px;
  position: absolute;
  background-color: transparent;
  border: none;
  display: block;
  top: 3.5rem;
  right: 2rem;
  z-index: 10;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger-top, .hamburger-middle, .hamburger-bottom {
  position: absolute;
  width: 24px;
  height: 3px;
  background-color: #ffffff;
  top: 0;
  left: 0;
  transition: all 0.2s ease;
}
.hamburger-top {
  transform: translateY(7px);
}
.hamburger-bottom {
  transform: translateY(14px);
}

.open .hamburger-middle {
  display: none;
}

.open .hamburger-top {
  transform: rotate(45deg) translateY(6px) translateX(6px);
}

.open .hamburger-bottom {
  transform: rotate(-45deg) translateY(6px) translateX(-6px);
}

/* border bottom btn effect  */
.border-bottom-btn {
  color: #ffffff;
  padding-block: 32px;
  border-bottom: transparent 4px solid;
  transition: border 0.2s ease;
  cursor: pointer;
}
.border-bottom-btn:hover {
  border-bottom: #ffffff 4px solid;
}

.nav {
  display: none;
  background-color: #d0d6f9;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  max-width: 40.5rem;
  display: flex;
  justify-content: flex-end;
  padding: 0 40px;
  gap: 48px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .nav {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1024px) {
  .nav {
    max-width: 50rem;
    padding-left: 10rem;
    padding-right: 5rem;
  }
}
.nav__list {
  display: flex;
  gap: 32px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  font-size: 1rem;
  line-height: normal;
  letter-spacing: 0.125rem;
  font-feature-settings: "liga" off;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5rem;
  text-rendering: optimizeSpeed;
}
@media (min-width: 1024px) {
  .nav__list {
    gap: 48px;
  }
}
.nav__item {
  color: #ffffff;
  padding-block: 32px;
  border-bottom: transparent 4px solid;
  transition: border 0.2s ease;
  cursor: pointer;
}
.nav__item:hover {
  border-bottom: #ffffff 4px solid;
}
.nav__item--active {
  border-bottom: #ffffff 4px solid;
}

/* Menu Burger Navbar */
.burger-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 30%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(40px);
  z-index: 9;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 768px) {
  .burger-menu {
    display: none;
  }
}
.burger-menu {
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}
.burger-menu__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 12rem;
  padding-left: 32px;
}
.burger-menu__item {
  transition: border-right 0.3s ease;
}
.burger-menu__item:hover {
  border-right: #ffffff 4px solid;
}
.burger-menu__item--active {
  border-right: #ffffff 4px solid;
}
.burger-menu__link {
  color: var(--color-white, #fff);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Barlow Condensed";
  font-size: var(--font-size-desktop-text-preset-8, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.125rem;
}
.burger-menu.burger-menu--open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.hero {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 80vh;
}
@media (min-width: 1024px) {
  .hero {
    flex-direction: row;
    padding-bottom: 10rem;
    justify-content: center;
    gap: 128px;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__content {
    justify-content: flex-end;
  }
}
.hero__title {
  text-transform: uppercase;
  color: #d0d6f9;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  /* mobile/text-preset-6 */
  font-family: "Barlow Condensed";
  font-size: var(--font-size-mobile-text-preset-6, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.15rem;
}
@media (min-width: 768px) {
  .hero__title {
    /* tablet/text-preset-6 */
    font-size: var(--font-size-tablet-text-preset-6, 1.75rem);
  }
}
.hero__title-highlight {
  align-self: stretch;
  color: var(--color-white, #fff);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  /* mobile/text-preset-1 */
  font-family: Bellefair;
  font-size: var(--font-size-mobile-text-preset-1, 5rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .hero__title-highlight {
    /* tablet/text-preset-1 */
    font-size: var(--font-size-tablet-text-preset-1, 9.375rem);
  }
}
.hero__text {
  color: var(--color-blue-300, #d0d6f9);
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  /* mobile/text-preset-9 */
  font-family: Barlow;
  font-size: var(--font-size-mobile-text-preset-9, 0.9375rem);
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 1.6875rem */
  max-width: 25rem;
}
.hero-explore-btn {
  margin-top: 48px;
  align-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-explore-btn {
    align-self: flex-end;
    margin-bottom: 3.5rem;
  }
}

.page-heading {
  margin-top: 2rem;
  align-self: center;
  margin-left: 1.25rem;
}
@media (min-width: 768px) {
  .page-heading {
    align-self: flex-start;
  }
}
.page-heading h2 {
  color: var(--color-white, #fff);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Barlow Condensed";
  font-size: var(--font-size-tablet-text-preset-5, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .page-heading h2 {
    font-size: 1.75rem;
  }
}
.page-heading h2 span {
  color: var(--color-white, #fff);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Barlow Condensed";
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.1875rem;
  opacity: 0.25;
  padding-right: 1.25rem;
}

/* Home page background images.
	 Scoped to `body.home` so only the home page gets these backgrounds. */
body.home {
  /* Mobile first - default (mobile) image */
  background-image: url("../assets/home/background-home-mobile.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Tablet */
@media (min-width: 768px) {
  body.home {
    background-image: url("../assets/home/background-home-tablet.jpg");
  }
}
/* Desktop / large screens */
@media (min-width: 1024px) {
  body.home {
    background-image: url("../assets/home/background-home-desktop.jpg");
  }
}
.destination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .destination {
    justify-content: center;
    gap: 32px;
    padding-top: 10rem;
  }
}
.destination__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px;
  transition: padding 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .destination__content {
    flex-direction: row;
    gap: 64px;
  }
}
.destination__image {
  width: 9.375rem;
  height: 9.375rem;
  animation: rotate-planet 50s linear infinite;
  transition: opacity 0.5s ease-in-out;
}
@media (min-width: 768px) {
  .destination__image {
    width: 28.56744rem;
    height: 28.56744rem;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .destination__image {
    width: 30rem;
    height: 30rem;
  }
}
.destination__image-container {
  margin-bottom: 40px;
  margin-top: 40px;
  transition: margin 0.3s ease-in-out;
}
.destination__explanation {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  min-height: 550px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .destination__explanation {
    min-height: 650px;
    margin-top: -8rem;
  }
}
@media (min-width: 1024px) {
  .destination__explanation {
    align-items: flex-start;
    min-height: auto;
    min-width: 550px;
  }
}
.destination__tabs {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.destination__tab {
  background-color: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #d0d6f9;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.13125rem;
  font-family: "Barlow Condensed";
  font-size: 0.875rem;
  cursor: pointer;
  padding-bottom: 16px;
  transition: border-bottom-color 0.3s ease;
}
@media (min-width: 768px) {
  .destination__tab {
    font-size: 2rem;
  }
}
.destination__tab:hover {
  border-bottom-color: #ffffff;
}
.destination__tab--active {
  border-bottom-color: #ffffff;
}
.destination__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  max-width: 25rem;
  justify-content: flex-end;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .destination__description {
    max-width: 35rem;
  }
}
@media (min-width: 1024px) {
  .destination__description {
    align-items: flex-start;
  }
}
.destination__description-title {
  text-transform: uppercase;
  font-size: 3.5rem;
  font-family: "Bellefair", serif;
  font-weight: 400;
  line-height: normal;
  transition: opacity 0.3s ease-in-out;
  min-height: 4rem;
}
@media (min-width: 768px) {
  .destination__description-title {
    font-size: 5rem;
    min-height: 5.5rem;
  }
}
@media (min-width: 1024px) {
  .destination__description-title {
    font-size: 6rem;
    min-height: 6.5rem;
  }
}
.destination__description-text {
  color: #d0d6f9;
  font-family: "Barlow", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .destination__description {
    align-items: flex-start;
    text-align: left;
  }
}
.destination__line {
  width: 100%;
  height: 1px;
  background-color: #d0d6f9;
  opacity: 0.25;
  transition: opacity 0.3s ease-in-out;
}
.destination__statistics {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
@media (min-width: 768px) {
  .destination__statistics {
    flex-direction: row;
    align-self: stretch;
    gap: 64px;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .destination__statistics {
    justify-content: flex-start;
  }
}
.destination__details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .destination__details {
    align-items: flex-start;
    text-align: left;
    flex: 0 0 200px;
  }
}
.destination__label {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #d0d6f9;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  transition: opacity 0.3s ease-in-out;
}
.destination__value {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Bellefair", serif;
  font-size: 1.75rem;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
  min-width: 120px;
  min-height: 2rem;
}

/*  */
/*  */
/* background images for the body */
body.destination-page {
  /* Mobile first - default (mobile) image */
  background-image: url("../assets/destination/background-destination-mobile.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Tablet */
@media (min-width: 768px) {
  body.destination {
    background-image: url("../assets/destination/background-destination-tablet.jpg");
  }
}
/* Desktop / large screens */
@media (min-width: 1024px) {
  body.destination {
    background-image: url("../assets/destination/background-destination-desktop.jpg");
  }
}
.main-destination {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .main-destination {
    padding-block: 2rem;
    max-height: 100vh;
  }
}

.crew {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  flex: 1 0 0;
  transition: all 0.3s ease-in-out;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 24px;
}
@media (min-width: 1024px) {
  .crew {
    align-items: flex-start;
    padding-inline: 40px;
  }
}
.crew__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 0 0;
  align-self: stretch;
  transition: all 0.3s ease-in-out;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .crew__content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 64px;
    max-width: 1400px;
    margin: 0 auto;
    padding-inline: 40px;
  }
}
.crew__text-section {
  display: flex;
  flex-direction: column;
  max-width: 32.125rem;
  gap: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: var(--spacing-500, 2.5rem);
  min-height: 400px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .crew__text-section {
    align-items: flex-start;
    text-align: left;
    max-width: 40rem;
  }
}
.crew__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .crew__details {
    align-items: flex-start;
    text-align: left;
  }
}
.crew__pagination {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .crew__pagination {
    gap: 40px;
  }
}
.crew__pagination-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.279);
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .crew__pagination-dot {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.crew__pagination-dot--active {
  background-color: var(--color-white, #ffffff);
}
.crew__pagination-dot:hover {
  background-color: var(--color-white, #ffffff);
}
.crew__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.crew__image {
  width: 16.95225rem;
  height: 21.25rem;
  object-fit: contain;
  object-position: bottom;
  transition: opacity 0.5s ease-in-out;
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 768px) {
  .crew__image {
    width: 25.9565rem;
    height: 37.43531rem;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .crew__image {
    width: 33.70506rem;
    height: 41.38231rem;
    flex-shrink: 0;
  }
}
@media (min-width: 768px) {
  .crew__name {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .crew__name {
    font-size: 3.5rem;
  }
}

/*  */
/*  */
/*  */
/*  */
/*  */
.main-crew {
  padding: 24px;
  transition: padding 0.3s ease-in-out;
}

/*  */
/*  */
/*  */
/*  */
body.crew-page {
  /* Mobile first - default (mobile) image */
  background-image: url("../assets/crew/background-crew-mobile.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Tablet */
@media (min-width: 768px) {
  body.crew-page {
    background-image: url("../assets/crew/background-crew-tablet.jpg");
  }
}
/* Desktop / large screens */
@media (min-width: 1024px) {
  body.crew-page {
    background-image: url("../assets/crew/background-crew-desktop.jpg");
  }
}
.technology {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 64px;
  height: 100%;
}
@media (min-width: 768px) {
  .technology {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .technology {
    gap: 32px;
    margin-top: -5rem;
  }
}
.technology__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 6rem);
}
@media (min-width: 768px) {
  .technology__main {
    min-height: calc(100vh - 7rem);
  }
}
@media (min-width: 1024px) {
  .technology__main {
    min-height: calc(100vh - 8rem);
  }
}
.technology__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  height: auto;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .technology__content {
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .technology__content {
    flex-direction: row-reverse; /* or column-reverse */
    gap: 32px;
    flex: 1;
    overflow: hidden;
  }
}
.technology__content picture {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .technology__content picture {
    width: 100%;
    margin-left: 0;
  }
}
.technology__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
@media (min-width: 1024px) {
  .technology__img {
    object-fit: contain;
    width: clamp(38rem, 30vw, 40vw);
    height: clamp(63.8125rem, 50vh, 70vh);
  }
}
.technology__img-container {
  width: 100vw;
  height: auto;
  min-height: 170px;
  margin-left: calc(-50vw + 50%);
}
@media (min-width: 768px) {
  .technology__img-container {
    min-height: 310px;
  }
}
@media (min-width: 1024px) {
  .technology__img-container {
    width: auto;
    height: auto;
    max-height: 60vh;
    margin-left: 0;
  }
}
.technology__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  padding-inline: 24px;
  padding-bottom: 32px;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .technology__details {
    gap: 40px;
    padding-inline: 40px;
  }
}
@media (min-width: 1024px) {
  .technology__details {
    gap: 48px;
    flex-direction: row;
  }
}
.technology__pagination {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .technology__pagination {
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .technology__pagination {
    flex-direction: column;
    gap: 48px;
  }
}
.technology__pagination-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 1rem;
  cursor: pointer;
  background-color: transparent;
  color: #ffffff;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  font-family: "Bellefair";
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .technology__pagination-btn {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .technology__pagination-btn {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }
}
.technology__pagination-btn:hover {
  border: 1px solid #ffffff;
  background-color: #ffffff;
  color: black;
}
.technology__pagination-btn--active {
  background-color: #ffffff;
  color: black;
  border: 1px solid #ffffff;
}
.technology__explanation {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .technology__explanation {
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .technology__explanation {
    gap: 32px;
    align-items: flex-start;
  }
}
.technology__description {
  max-width: 30rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-family: "Barlow", sans-serif;
  color: #d0d6f9;
  text-transform: none !important;
}
@media (min-width: 768px) {
  .technology__description {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .technology__description {
    font-size: 1.125rem;
    min-width: 30rem;
  }
}
.technology__text-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .technology__text-box {
    gap: 16px;
  }
}
.technology__terminology {
  font-size: 0.875rem;
  font-family: "Bellefair", serif;
  color: #ffffff;
}
@media (min-width: 768px) {
  .technology__terminology {
    font-size: 1rem;
  }
}
.technology__name {
  font-size: 1.5rem;
  font-family: "Bellefair", serif;
  color: #ffffff;
}
@media (min-width: 768px) {
  .technology__name {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .technology__name {
    font-size: 3.5rem;
    min-width: 30rem !important;
  }
}
.technology__terminology {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .technology__terminology {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .technology__terminology {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .technology__heading {
    padding-left: 3rem;
  }
}
.technology__img, .technology__name, .technology__terminology, .technology__description {
  transition: opacity 0.4s ease;
  will-change: opacity;
}

/* ---------------------------------------------------------------------- */
/* Background images */
/* ---------------------------------------------------------------------- */
body.technology-page {
  background-image: url("../assets/technology/background-technology-mobile.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 100vh;
}

@media (min-width: 768px) {
  body.technology-page {
    background-image: url("../assets/technology/background-technology-tablet.jpg");
  }
}
@media (min-width: 1024px) {
  body.technology-page {
    background-image: url("../assets/technology/background-technology-desktop.jpg");
  }
}

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