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

html {
  font-size: 62.5%;
  font-family: "Montserrat", sans-serif;
}

body {
  box-sizing: border-box;
}

.black_bg {
  background-color: #000 !important;
}

a {
  text-decoration: none;
  color: inherit;
}

@media only screen and (max-width: 56.25em) {
  .no-mobile {
    display: none;
  }
}

button {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  background: #199ad6;
  border-radius: 15rem;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  padding: 1rem 5rem;
}
button:hover {
  background: #60cdff;
  transform: translateY(-5%);
  transition: all 0.1s;
}

.section-head {
  font-size: 3.5rem;
  display: inline-block;
  font-weight: normal;
  text-transform: uppercase;
}

.section-sub-head {
  font-size: 2.2rem;
  display: inline-block;
  font-weight: lighter;
  text-transform: uppercase;
}
@media only screen and (max-width: 56.25em) {
  .section-sub-head {
    font-size: 1.8rem;
  }
}

.section-paragraph {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: left;
}
.section-paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

@keyframes fade-slide-in {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade-slide-in-rev {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(-60px);
  }
}
/* Mixin voor de animatie */
.text-center {
  text-align: center !important;
  z-index: 2;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem !important;
  }
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem !important;
  }
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-huge {
  margin-top: 10rem !important;
}

.showcase__intro {
  text-align: center;
  margin-bottom: 6rem;
}
.showcase__title {
  font-size: 3.4rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 0.8rem;
}
.showcase {
  /* Grid */
}
.showcase-grid {
  width: 90%;
  max-width: 110rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
  gap: 4rem;
}

.showcase .showcase__subtitle {
  font-size: 1.6rem;
  opacity: 0.7;
}

/* Card */
.showcase-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.showcase-item {
  background: linear-gradient(180deg, #dddddd, #f7f9fb);
  border-radius: 15px;
  padding: 0 0 3rem;
  transition: all 0.25s ease;
  text-transform: uppercase;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.showcase__item-title {
  color: #fff !important;
}

/* Thumbnail */
.showcase-thumb {
  width: 100%;
  height: 18rem;
  overflow: hidden;
  border-bottom: 2px solid #e8eef2;
}

.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Titles */
.showcase-item__title {
  margin-top: 2.2rem;
  padding: 0 2.4rem;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}

.showcase-item__meta {
  padding: 0 2.4rem;
  margin-top: 0.4rem;
  margin-bottom: 1.6rem;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #199ad6;
}

/* List */
.showcase-item__list {
  list-style: none;
  padding: 0 2.4rem;
  margin: 0 0 2.2rem;
  font-size: 1.5rem;
  color: #333;
}

.showcase-item__list li + li {
  margin-top: 1rem;
}

/* CTA */
.showcase-item__cta {
  position: relative;
  padding: 0 2.4rem;
  font-size: 1.8rem;
  max-width: fit-content;
  font-weight: 600;
  text-decoration: none;
  color: #199ad6;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
  transition: all 0.2s ease;
}
.showcase-item__cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #199ad6;
  transition: width 0.2s ease;
}
.showcase-item__cta:hover::after {
  width: 100%;
}

.showcase-item__list {
  list-style: none;
  padding: 0 2.4rem;
  margin: 0 0 2.2rem;
  font-size: 1.5rem;
  color: #333;
}

.showcase-item__list li {
  position: relative;
  padding-left: 2.4rem;
}

.showcase-item__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.3rem;
  background: linear-gradient(135deg, #199ad6, #60cdff);
  mask: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><path fill="white" d="M7.8 14.6L3.2 10l1.4-1.4 3.2 3.2 7-7 1.4 1.4-8.4 8.4z"/></svg>') center/contain no-repeat;
}

.hero {
  position: relative;
  display: flex;
}
.hero__inner {
  width: 100%;
  max-width: 900px;
  position: relative;
  padding: 0 1.5rem;
  z-index: 1;
}
.hero__img-box {
  position: absolute;
  left: 60%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}
.hero__img {
  display: block;
  max-height: 500px;
  -webkit-filter: drop-shadow(-15px -15px 15px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(-15px -15px 15px rgba(0, 0, 0, 0.4));
}
.hero__img:nth-child(1) {
  opacity: 0;
  transform: translateX(-60px);
  animation: fade-slide-in-rev 0.8s ease-out 0s forwards;
}
.hero {
  /* --- titel --- */
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.05em;
  margin-bottom: 2.5rem;
}
.hero__title-line {
  font-size: 8.5rem;
  font-weight: 300;
  letter-spacing: 0.25em;
}
.hero__title-line--bold {
  font-weight: 800;
  margin-top: -10px;
}
.hero__title-line:nth-child(1) {
  opacity: 0;
  transform: translateX(-60px);
  animation: fade-slide-in 0.8s ease-out 0s forwards;
}
.hero__title-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-60px);
  animation: fade-slide-in 0.8s ease-out 0.2s forwards;
}
.hero {
  /* --- lijst --- */
}
.hero__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.hero__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  letter-spacing: 0.18em;
}
.hero__item:nth-child(1) {
  opacity: 0;
  transform: translateX(-60px);
  animation: fade-slide-in 0.8s ease-out 0.8s forwards;
}
.hero__item:nth-child(2) {
  opacity: 0;
  transform: translateX(-60px);
  animation: fade-slide-in 0.8s ease-out 0.9s forwards;
}
.hero__item:nth-child(3) {
  opacity: 0;
  transform: translateX(-60px);
  animation: fade-slide-in 0.8s ease-out 1s forwards;
}
.hero__item .hero__bullet {
  width: 0;
  height: 0;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.8rem solid #199ad6;
}
.hero__item .hero__item-text {
  display: inline-block;
}

@media (max-width: 2000px) {
  .hero__img-box {
    left: 70%;
  }
}
@media (min-width: 1400px) {
  .hero {
    padding: 20rem 0 30rem;
  }
}
@media (max-width: 1400px) {
  .hero__img-box {
    right: 20rem;
  }
  .hero__img {
    max-height: 400px;
  }
}
@media (max-width: 1200px) {
  .hero {
    padding: 0;
  }
  .hero__img-box {
    right: 0rem;
  }
  .hero__img {
    max-height: 400px;
  }
}
/* ========== MOBIEL ==========\*/
@media (max-width: 700px) {
  .hero__img-box {
    right: -60px;
    left: auto;
    transform: none;
  }
  .hero__title-line {
    font-size: 3.7rem;
  }
  .hero__title-line--bold {
    margin-top: -10px;
  }
  .hero__item {
    font-size: 1.4rem;
  }
  .hero__img {
    max-height: 300px;
  }
}
@media (max-width: 450px) {
  .hero__inner {
    padding: 4.5rem 2rem 9rem;
  }
}
@media (max-width: 400px) {
  .hero__img {
    max-height: 250px;
  }
}
@media (max-width: 380px) {
  .hero__img {
    max-height: 200px;
  }
}
/* ========== landscape ==========\*/
@media (orientation: landscape) and (max-height: 1100px) {
  .hero__img-box {
    right: 0rem;
    display: block;
    transform: none;
  }
}
@media (orientation: landscape) and (max-height: 900px) {
  .hero__img {
    max-height: 350px;
  }
}
@media (orientation: landscape) and (max-height: 700px) {
  .hero__title-line {
    font-size: 3.7rem;
  }
  .hero__title-line--bold {
    margin-top: -10px;
  }
  .hero__item {
    font-size: 1.4rem;
  }
  .hero__img-box {
    right: -10rem;
  }
  .hero__img {
    max-height: 250px;
  }
}
.section-meet .row {
  margin: auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
@media only screen and (max-width: 56.25em) {
  .section-meet .row {
    padding: 2rem;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.section-meet .col-1-of-2 {
  width: 100%;
}

.image-group {
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .image-group {
    display: flex;
    top: 1rem;
    justify-content: center;
  }
}
.image-group__photo {
  width: 55%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border: solid 2px #fff;
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
}
@media only screen and (max-width: 56.25em) {
  .image-group__photo {
    position: relative;
    width: 30%;
  }
}
.image-group__photo--p1 {
  right: 0;
  top: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .image-group__photo--p1 {
    top: 0;
    transform: scale(1.15);
  }
}
.image-group__photo--p2 {
  left: 0;
  top: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .image-group__photo--p2 {
    top: -1rem;
    z-index: 100;
    transform: scale(1.15);
  }
}
.image-group__photo--p3 {
  left: 20%;
  top: -2rem;
}
@media only screen and (max-width: 56.25em) {
  .image-group__photo--p3 {
    top: 1rem;
    left: 0;
    transform: scale(1.15);
  }
}
.image-group__photo:hover {
  transform: scale(1.25);
  box-shadow: 0 1;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 20;
}

.contact-container {
  width: 80rem;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .contact-container {
    width: 40rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .contact-container {
    width: 30rem;
  }
}
.contact-container__head {
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: lighter;
  text-align: center;
}
.contact-container h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.form-group {
  color: #fff;
  margin-bottom: 16px;
}

.form-cta {
  display: flex;
  justify-content: center;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  font: inherit;
  box-sizing: border-box;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

textarea {
  min-height: 200px;
  resize: vertical;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.bg-layer[data-bg="1"] {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../images/timeline/timeline_img_1.jpg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}

.bg-layer[data-bg="2"] {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../images/timeline/timeline_img_2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-layer.is-active {
  opacity: 1;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: calc(100% + 10rem);
  bottom: 0;
  top: 5rem;
  background: linear-gradient(to bottom, #004d71, #60cdff);
  opacity: 0.4;
}
@media only screen and (max-width: 56.25em) {
  .timeline::before {
    left: 10px;
  }
}
.timeline__location {
  font-size: 1.6rem;
}
.timeline__item {
  position: relative;
  width: 50%;
  padding: 1.5rem 2rem;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.timeline__item.left {
  left: 0;
  text-align: right;
}
.timeline__item.left .timeline__dot {
  right: -7px;
}
@media only screen and (max-width: 56.25em) {
  .timeline__item.left .timeline__dot {
    right: auto;
  }
}
.timeline__item.right {
  left: 50%;
}
.timeline__item.right .timeline__dot {
  left: -7px;
}
@media only screen and (max-width: 56.25em) {
  .timeline__item.right .timeline__dot {
    left: 3px;
  }
}
.timeline__item--sub {
  margin-top: 0.75rem;
}
.timeline__item--sub::before {
  content: "";
  position: absolute;
  background: rgba(148, 163, 184, 0.5);
  width: 2px;
  top: -40px;
  height: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.timeline__item.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media only screen and (max-width: 56.25em) {
  .timeline__item {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 2.5rem;
    padding-right: 0.5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .timeline__item:nth-child(odd) {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 2.5rem;
    padding-right: 0.5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .timeline__item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding-left: 2.5rem;
    padding-right: 0.5rem;
  }
}
.timeline__content {
  background: linear-gradient(to bottom, rgba(25, 154, 214, 0.9), rgba(0, 77, 113, 0.9));
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  color: #fff;
  box-shadow: 0 18px 35px rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(17, 17, 17, 0.2);
}
.timeline__content--sub {
  font-size: 1.6rem;
  background: rgba(17, 17, 17, 0.9);
  opacity: 0.95;
}
.timeline__content--sub h2 {
  margin-bottom: 1.5rem;
}
.timeline__content--sub h3 {
  margin-bottom: 1.5rem;
}
.timeline__content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.timeline__content p {
  font-size: 1.6rem;
}
.timeline__content:hover {
  transform: translateY(-3px);
  transition: transform 0.25s ease-out;
}
.timeline__content .duty-list {
  padding: 1rem 0 0;
  font-size: 1.6rem;
}
.timeline__content .duty-list {
  padding-left: 20px;
}
.timeline__dot {
  position: absolute;
  top: 2.2rem;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #199ad6;
  box-shadow: 0 0 0 6px #004d71;
}
.timeline__dot--small {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 4px #004d71;
}
@media only screen and (max-width: 56.25em) {
  .timeline__dot {
    left: 3px;
    right: auto;
  }
}
.timeline__date {
  display: inline-block;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.header-cases {
  position: relative;
  padding: 20rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 350px;
}
.header-cases__title-line {
  color: #fff;
}
@media only screen and (max-width: 56.25em) {
  .header-cases {
    padding: 5rem 0;
    height: 200px;
  }
}

.grid {
  width: 90%;
  max-width: 114rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
}
@media only screen and (max-width: 56.25em) {
  .grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.grid--case_overview {
  margin: 10rem auto;
}
.grid--case {
  margin: 0 auto;
}

.main-case {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url("../images/cases/work_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.case__card {
  background: #151515;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.case__card:hover {
  transform: scale(1.03);
  transition: all 0.3s ease-out;
  background: #004d71;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.6);
}
.case__card--overlay {
  z-index: 3;
  opacity: 0.5;
  position: absolute;
  inset: 0;
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  pointer-events: none;
}
.case__card--overlay-trav {
  background-color: #053c46;
}
.case__card--overlay-ab {
  background-color: #0d1736;
}
.case__card--overlay-blis {
  background-color: #270410;
}
.case__card--overlay-fit {
  background-color: #0a2414;
}
.case__card--thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/8;
  background-color: #151515;
}
.case__card--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case__card--meta {
  padding: 2rem;
}
.case__card--category {
  display: inline-block;
  font-size: 1.2rem;
  color: #60cdff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}
.case__card--title {
  margin: 0;
  line-height: 2rem;
  font-size: 1.6rem;
  color: #fff;
  text-transform: uppercase;
}

.case_page {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url("../images/cases/hero_travel.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.case-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 0;
}

.case-detail__breadcrumb {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 5rem;
}
.case-detail__breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.case-detail__breadcrumb a:hover {
  color: #199ad6;
}
@media only screen and (max-width: 56.25em) {
  .case-detail__breadcrumb {
    margin: 5rem auto 2rem;
  }
}
.case-detail__section-title {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.case-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.case-media-item {
  display: flex;
  align-items: stretch;
}
.case-media-item__lp-links {
  display: flex;
  width: 100%;
  margin: 5rem 0;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: bold;
  justify-content: flex-start;
}
.case-media-item__lp-links-version {
  padding: 2rem 10rem;
  margin: 0 2rem 0 0;
  border-radius: 15px;
  background: linear-gradient(#5f5f5f, #151515);
}
.case-media-item__lp-links-version:hover {
  background: linear-gradient(#199ad6, #004d71);
  transform: scale(1.05);
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 56.25em) {
  .case-media-item__lp-links-version {
    margin: 0 0 1rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .case-media-item__lp-links {
    flex-wrap: wrap;
  }
}
.case-media-item__label {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.case-media-item__img-wrapper {
  overflow: hidden;
  width: 100%;
}
.case-media-item__img-wrapper.img_square {
  aspect-ratio: 1/1 !important;
}
.case-media-item__img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
.case-media-item__img-wrapper.non-click {
  pointer-events: none !important;
}
.case-media-item__caption {
  font-size: 1.6rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.case-detail__back {
  margin-top: 1.5rem;
  font-size: 1.6rem !important;
}
.case-detail__back:hover {
  color: #199ad6;
}

.case_page {
  min-height: 100vh;
  color: #fff;
  padding-bottom: 5rem;
}
.case_page--travelinto {
  background: linear-gradient(rgba(5, 60, 70, 0.9), black), url("../images/cases/hero_travel.jpg") center/cover fixed no-repeat;
}
.case_page--always {
  background: linear-gradient(rgba(13, 23, 54, 0.9), black), url("../images/cases/hero_ab.jpg") center/cover fixed no-repeat;
}
.case_page--blissy {
  background: linear-gradient(rgba(39, 4, 16, 0.9), black), url("../images/cases/hero_blissy.jpg") center/cover fixed no-repeat;
}
.case_page--fitlyzen {
  background: linear-gradient(rgba(10, 36, 20, 0.9), black), url("../images/cases/hero_fit.jpg") center/cover fixed no-repeat;
}

.case-story {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.case-story__block {
  grid-template-columns: minmax(1fr);
  display: block;
  align-items: center;
}
.case-story__block--banners {
  grid-template-columns: minmax(0, 1.8fr);
  justify-content: flex-start;
}
@media only screen and (max-width: 56.25em) {
  .case-story__block--banners {
    grid-template-columns: 1fr;
  }
}
.case-story__block--banners .case-story__text {
  width: 100%;
}
.case-story__block--banners .case-media-grid {
  margin: 1.5rem 0;
}
.case-story__block--reverse .case-story__text {
  order: 2;
}
.case-story__block--reverse .case-story__media {
  order: 1;
}
@media only screen and (max-width: 56.25em) {
  .case-story__block--reverse .case-story__text,
  .case-story__block--reverse .case-story__media {
    order: initial;
  }
}
.case-story__block--single {
  grid-template-columns: minmax(0, 1.3fr);
}
.case-story__block--single .case-story__media {
  display: none;
}
.case-story__text {
  grid-template-columns: minmax(0, 1.6fr) auto;
  column-gap: 2rem;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 1.9rem 1.8rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
}
.case-story__text--with-logo {
  display: grid;
}
@media only screen and (max-width: 56.25em) {
  .case-story__text--with-logo {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }
}
.case-story__text p {
  font-size: 1.6rem;
  line-height: 1.7;
  max-width: 70ch;
}
.case-story__text__media {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 1.1rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
}
.case-story__text .hero_case_ind {
  width: 200px;
  max-width: 100%;
  height: auto;
  justify-self: end;
  align-self: center;
}
@media only screen and (max-width: 56.25em) {
  .case-story__text .hero_case_ind {
    justify-self: center;
  }
}
.case-story__text .case-story__media-inner {
  border-radius: 15px;
  overflow: hidden;
}
.case-story__text .case-story__media-inner img {
  display: block;
  width: 100%;
  height: auto;
}
.case-story__text ul {
  margin: 2rem 0;
}
.case-story__text li {
  font-size: 1.6rem;
  margin-left: 2rem;
  margin-bottom: 0.5rem;
}

.case-story__block--hero .case-story__media {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.case-story__block--hero .case-story__media-inner {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 15px;
  overflow: visible;
}
.case-story__block--hero .case-story__media-inner img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.8));
}

.case-video-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.case-video-card {
  display: flex;
  flex-direction: column;
}
.case-video-card__inner {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
}
.case-video-card__video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.case-video-card__video:fullscreen, .case-video-card__video:-webkit-full-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.case-video-card__video-card__label {
  margin-top: 0.6rem;
  font-size: 1.6rem;
  opacity: 0.8;
}

.case-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.case-lightbox--open {
  display: flex;
}
.case-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}
.case-lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  z-index: 1;
  overflow: hidden;
}
.case-lightbox__content img {
  display: block;
  max-width: 100%;
  max-height: 90vh;
}
.case-lightbox__content .case-lightbox__close {
  position: absolute;
  top: 0.4rem;
  right: 0.6rem;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  padding: 0 0.4rem;
  cursor: pointer;
  z-index: 2;
}
.case-lightbox__content .case-story__block--lp {
  background: radial-gradient(circle at top left, #252836 0, #0b0c10 55%);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  margin-top: 3rem;
}

.lp-wrapper {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
@media only screen and (max-width: 56.25em) {
  .lp-wrapper {
    flex-direction: column;
  }
}
.lp-left img {
  width: 100%;
  max-width: 450px;
}
.lp-right {
  flex: 1;
  color: #fff;
}
.lp-right p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
}
.lp-right p.note {
  padding-left: 3rem;
  border-left: solid 3px #fff;
  font-style: italic;
}
.lp-right h2 {
  margin-bottom: 1rem;
}
.lp-right ul {
  margin-bottom: 2rem;
}
.lp-right li {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  margin-left: 2rem;
  margin-bottom: 0.5rem;
}
.lp-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.lp-buttons a {
  min-width: 8rem;
  text-align: center;
  padding: 1rem 3rem;
  border-radius: 20rem;
  background: linear-gradient(135deg, #5f5f5f, #151515);
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
  text-decoration: none;
}
@media only screen and (max-width: 56.25em) {
  .lp-buttons a {
    flex: 1 1 48%;
  }
}
.lp-buttons a:hover {
  transform: scale(1px);
  transition: all 0.2s ease-out;
  background: linear-gradient(135deg, #60cdff, #199ad6);
}
@media only screen and (max-width: 56.25em) {
  .lp-buttons {
    width: 100%;
    flex-wrap: wrap;
  }
}

.section-footer,
.section-footer {
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 0;
  background-color: #000;
}
.section-footer__stick,
.section-footer__stick {
  position: fixed;
  width: 100%;
  bottom: 0;
}
@media only screen and (max-width: 56.25em) {
  .section-footer__stick,
  .section-footer__stick {
    position: relative;
  }
}
.section-footer__stick,
.section-footer__stick {
  position: relative;
  width: 100%;
  bottom: 0;
}
@media only screen and (max-width: 56.25em) {
  .section-footer__stick,
  .section-footer__stick {
    position: relative;
  }
}
.section-footer__absolute,
.section-footer__absolute {
  position: absolute;
  width: 100%;
  bottom: 0;
}
@media only screen and (max-width: 56.25em) {
  .section-footer__absolute,
  .section-footer__absolute {
    position: relative;
  }
}
.section-footer__container,
.section-footer__container {
  position: relative;
  margin: auto;
  text-align: center;
  display: block;
  max-width: 500px;
}
.section-footer__title,
.section-footer__title {
  color: #fff;
  font-size: 2.2rem;
}
.section-footer__copy-line,
.section-footer__copy-line {
  color: #199ad6;
}

.social-box {
  display: flex;
  justify-content: center;
  padding: 1rem 0 3rem;
}

.fa {
  font-size: 2.5rem;
  width: 35px;
  margin: 0.5rem 0;
  text-decoration: none;
}

.fa-facebook {
  background: none;
  color: #fff;
}

.fa-instagram {
  background: none;
  color: #fff;
}

.fa-linkedin {
  background: none;
  color: #fff;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background-color: #000;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__logo {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.navbar__text {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.navbar__nav {
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.navbar__nav .navbar__list {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0.5rem 0 0;
  gap: 2.5rem;
}
.navbar__nav .navbar__list .navbar__link {
  font-size: 1.3rem;
  position: relative;
}
.navbar__nav .navbar__list .navbar__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #199ad6;
  transition: width 0.2s ease;
}
.navbar__nav .navbar__list .navbar__link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
}
.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 999px;
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, bottom 0.3s ease;
}
.nav-toggle-label span {
  top: 50%;
  transform: translateY(-50%);
}
.nav-toggle-label span::before {
  content: "";
  top: -8px;
}
.nav-toggle-label span::after {
  content: "";
  bottom: -8px;
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: block;
  }
  .navbar__nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: #111111;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
  }
  .navbar__list {
    flex-direction: column;
    align-items: stretch;
    vertical-align: middle;
    padding: 0.75rem 1.5rem 1rem;
    gap: 1.75rem;
  }
  .navbar__list li {
    width: 100%;
    text-align: left;
    border-bottom: solid #000 1px;
  }
  .navbar__link {
    display: block;
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.6rem !important;
  }
}
.nav-toggle:checked ~ .navbar__nav {
  max-height: 240px;
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle:checked + .nav-toggle-label span {
  transform: rotate(45deg);
}
.nav-toggle:checked + .nav-toggle-label span::before {
  top: 0;
  transform: rotate(0deg);
}
.nav-toggle:checked + .nav-toggle-label span::after {
  bottom: 0;
  transform: rotate(90deg);
}

.hero {
  background: url("./../images/home/j_logo_grey_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: #151515;
  min-height: 80vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow-x: hidden;
  z-index: 2;
}

.section-meet {
  padding: 20rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./../images/home/section-meet__bg.jpg") no-repeat center center;
  background-size: cover;
  color: #fff;
  z-index: 4;
}
@media only screen and (max-width: 56.25em) {
  .section-meet {
    padding: 10rem 0;
  }
}

.section-showcase {
  display: flex;
  padding: 20rem 0;
  background: #f7f9fb;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-showcase__title-line {
  color: #000;
}
@media only screen and (max-width: 56.25em) {
  .section-showcase {
    padding: 10rem 0;
  }
}

.section-contact {
  padding: 20rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("./../images/home/section-contact__bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.section-contact__title-line {
  color: #fff;
}
.section-contact__sub-title-line {
  color: #199ad6;
  font-size: 1.6rem;
}
@media only screen and (max-width: 56.25em) {
  .section-contact {
    padding: 10rem 0;
  }
}

.section-timeline {
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20rem 0;
}
.section-timeline__title-line {
  color: #fff;
}
@media only screen and (max-width: 56.25em) {
  .section-timeline {
    padding: 10rem 0;
  }
}

.section-work {
  padding: 20rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-work__title-line {
  color: #fff;
}
@media only screen and (max-width: 56.25em) {
  .section-work {
    padding: 10rem 0;
  }
}

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