@charset "UTF-8";
/*
Sites:
https://easings.net/#easeInOutCubic
*/
/*
  Usage examples for responsive-size mixin:

  For font-size (default property):
  .element {
    @include responsive-size(16, 24, 320, 1440);
    // Font-size scales from 16px at 320px viewport to 24px at 1440px viewport
  }

  For width:
  .element {
    @include responsive-size(100, 200, 768, 1920, width);
    // Width scales from 100px at 768px viewport to 200px at 1920px viewport
  }

  For height:
  .element {
    @include responsive-size(50, 100, 320, 1440, height);
    // Height scales from 50px at 320px viewport to 100px at 1440px viewport
  }
*/
/* CSS */
.fadeup {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s cubic-bezier(0.65, 0, 0.35, 1); /* 30 seconds */
}

.fadeup.visible {
  opacity: 1;
  transform: translateY(0px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "greycliff-cf", sans-serif;
}

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

ul, ol, li {
  list-style: none;
}

html {
  font-size: 16px; /* Base size for `rem` and `em` */
}

body {
  background-color: #EDF0E7;
  /*SERIOUSLY*/
  color: #000000;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  /* test change */
}

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

button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.shell {
  width: 100%;
  padding: 0 3%;
  border-radius: 0px;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .shell {
    border-radius: 10px;
  }
}
@media screen and (min-width: 1850px) {
  .shell {
    border-radius: 10px;
  }
}
.shell .core {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1850px) {
  .shell .core {
    width: 1660px;
  }
}

.ui .cta-footer {
  background-color: rgba(41, 94, 168, 0);
  border: 2px solid #4386E4;
  transition: all 0.125s ease;
  padding: 20px 40px;
  display: inline-block;
}
.ui .cta-footer:hover {
  border-color: white;
}
.ui .btn-pair {
  background-color: #295EA8;
  border: 2px solid #4386E4;
}
.ui .btn-single {
  background-color: #295EA8;
  border: 2px solid #4386E4;
}
.ui .btn-pastwork {
  background-color: rgba(22, 26, 29, 0);
  border: 2px solid #161A1D;
  transition: all 0.125s ease;
}
.ui .btn-pastwork:hover {
  background-color: #161a1d;
}

@media screen and (min-width: 1280px) and (max-width: 1849px) {
  [class^=section_] {
    padding: 30px;
  }
  .core {
    width: 91.8%;
  }
}
@media screen and (min-width: 1850px) {
  [class^=section_] {
    padding: 30px;
  }
  .core {
    width: 1660px;
  }
}
.section_hero {
  background-color: #F9F9F9;
  transition: 0.5s;
}
.section_hero .shell .core {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.section_hero .shell .core .containerli_left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 100px;
  margin-bottom: 85px;
}
.section_hero .shell .core .containerli_left .li_container {
  position: relative;
  transition: all 0.25s ease;
  margin-bottom: clamp(-42px, -6vw, 80px);
  width: fit-content;
}
.section_hero .shell .core .containerli_left .li_container.work, .section_hero .shell .core .containerli_left .li_container.resume {
  cursor: pointer;
}
.section_hero .shell .core .containerli_left .li_container.work .li_text, .section_hero .shell .core .containerli_left .li_container.resume .li_text {
  font-weight: 700;
  font-size: clamp(4.28em, 13.5vw, 9.63em);
  text-decoration-line: underline;
  color: #161A1D;
  text-transform: uppercase;
  text-underline-offset: clamp(12px, 1.5vw, 26px);
  position: relative;
  z-index: 1;
}
.section_hero .shell .core .containerli_left .li_container.work:hover .li_text, .section_hero .shell .core .containerli_left .li_container.resume:hover .li_text {
  animation: fadeOut 0.25s forwards;
}
.section_hero .shell .core .containerli_left .li_container.work:hover .cta_container, .section_hero .shell .core .containerli_left .li_container.resume:hover .cta_container {
  opacity: 1;
  transform: translateX(0px);
}
.section_hero .shell .core .containerli_left .li_container.work:hover .cta_container .text_group, .section_hero .shell .core .containerli_left .li_container.resume:hover .cta_container .text_group {
  transform: translateY(-100%);
}
.section_hero .shell .core .containerli_left .li_container.work:hover .cta_container .line_inside, .section_hero .shell .core .containerli_left .li_container.resume:hover .cta_container .line_inside {
  opacity: 1;
}
.section_hero .shell .core .containerli_left .li_container .cta_container {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-20px);
  background-color: #161A1D;
  padding: 8px 56px 0px;
  opacity: 0;
  transition: all 0.25s ease;
  width: fit-content;
  min-height: 109px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  z-index: 2;
}
.section_hero .shell .core .containerli_left .li_container .cta_container .mask_for_text {
  overflow: hidden;
  text-align: center;
  position: relative;
  min-height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.section_hero .shell .core .containerli_left .li_container .cta_container .mask_for_text .text_group {
  transition: transform 0.25s ease;
  position: relative;
  display: inline-block;
  text-align: center;
}
.section_hero .shell .core .containerli_left .li_container .cta_container .mask_for_text .text_group .text1, .section_hero .shell .core .containerli_left .li_container .cta_container .mask_for_text .text_group .text2 {
  font-weight: 700;
  font-size: clamp(4.28em, 13.5vw, 9.63em);
  color: #EDF0E7;
  text-transform: uppercase;
}
.section_hero .shell .core .containerli_left .li_container .cta_container .mask_for_text .text_group .text2 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
}
.section_hero .shell .core .containerli_left .li_container .cta_container .line_inside {
  margin-bottom: 20px;
  border-bottom: 4px solid #EDF0E7;
  opacity: 0;
  width: 100%;
  z-index: 3;
}
.section_hero .shell .core .containerli_left .li_container .line_outside {
  display: none;
}
.section_hero .shell .core .containerintro_right {
  width: min(100%, 600px);
}
.section_hero .shell .core .containerintro_right .rolebadge {
  background-color: #161A1D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 11px 20px;
  gap: 5.76px;
  border-radius: 4px;
  margin-bottom: 35px;
}
.section_hero .shell .core .containerintro_right .rolebadge .top, .section_hero .shell .core .containerintro_right .rolebadge .bot {
  font-weight: 500;
  font-size: clamp(1em, 1.5vw, 1.27em);
  color: #F9F9F9;
}
.section_hero .shell .core .containerintro_right .rolebadge .top {
  margin-bottom: clamp(5px, 1.5vw, 8px);
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_hero .shell .core .containerintro_right .rolebadge .top {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1850px) {
  .section_hero .shell .core .containerintro_right .rolebadge .top {
    margin-bottom: 0px;
  }
}
.section_hero .shell .core .containerintro_right .rolebadge hr {
  width: 100%;
  border: 0.1px dashed #EDF0E7;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_hero .shell .core .containerintro_right .rolebadge hr {
    height: 40px; /* Full height within its container */
    width: 1px; /* Maintain vertical appearance */
    border-left: 0.1px dashed #EDF0E7;
  }
}
@media screen and (min-width: 1850px) {
  .section_hero .shell .core .containerintro_right .rolebadge hr {
    height: 40px; /* Full height within its container */
    width: 1px; /* Maintain vertical appearance */
    border-left: 0.1px dashed #EDF0E7;
  }
}
.section_hero .shell .core .containerintro_right .rolebadge .bot {
  margin-top: 5px;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_hero .shell .core .containerintro_right .rolebadge .bot {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1850px) {
  .section_hero .shell .core .containerintro_right .rolebadge .bot {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_hero .shell .core .containerintro_right .rolebadge {
    width: 91%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1850px) {
  .section_hero .shell .core .containerintro_right .rolebadge {
    width: 65%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.section_hero .shell .core .containerintro_right p {
  font-weight: 500;
  font-size: clamp(1em, 1.5vw, 1.54em);
  line-height: clamp(24px, 2.25vw, 37px);
  color: #161A1D;
  margin-bottom: 38px;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_hero .shell .core .containerintro_right p {
    margin-bottom: 60px;
  }
}
.section_hero .shell .core .containerintro_right .socialbelt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 100px;
}
.section_hero .shell .core .containerintro_right .socialbelt .instagram, .section_hero .shell .core .containerintro_right .socialbelt .linkedin, .section_hero .shell .core .containerintro_right .socialbelt .codepen, .section_hero .shell .core .containerintro_right .socialbelt .venmo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
  padding: 10px;
  border-radius: 3px;
  transition: 0.125s;
  text-decoration: none;
  cursor: pointer;
}
.section_hero .shell .core .containerintro_right .socialbelt .instagram .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .linkedin .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .codepen .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .venmo .hiddentext {
  display: inline-block;
  overflow: hidden;
  font-weight: 600;
  text-transform: uppercase;
  width: 0px;
  transition: width 0.125s ease-in-out;
}
.section_hero .shell .core .containerintro_right .socialbelt .instagram:hover, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover {
  padding: 10px 20px;
  background-color: #161A1D;
}
.section_hero .shell .core .containerintro_right .socialbelt .instagram:hover svg path, .section_hero .shell .core .containerintro_right .socialbelt .instagram:hover svg rect, .section_hero .shell .core .containerintro_right .socialbelt .instagram:hover svg circle, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover svg path, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover svg rect, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover svg circle, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover svg path, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover svg rect, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover svg circle, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover svg path, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover svg rect, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover svg circle {
  fill: #EDF0E7;
}
.section_hero .shell .core .containerintro_right .socialbelt .instagram:hover svg circle:last-child, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover svg circle:last-child, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover svg circle:last-child, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover svg circle:last-child {
  fill: #EDF0E7;
}
.section_hero .shell .core .containerintro_right .socialbelt .instagram:hover .text, .section_hero .shell .core .containerintro_right .socialbelt .instagram:hover .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover .text, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover .text, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover .text, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover .hiddentext {
  color: #EDF0E7;
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
}
@media screen and (min-width: 1850px) {
  .section_hero .shell .core {
    padding-top: 150px;
    padding-bottom: 130px;
    flex-direction: row;
  }
  .section_hero .shell .core .containerli_left {
    margin: 0px 220px 0 0;
  }
  .section_hero .shell .core .containerintro_right {
    width: 54.578313%;
    margin-top: 73px;
  }
  .section_hero .shell .core .containerintro_right .rolebadge {
    margin-bottom: 48px;
  }
  .section_hero .shell .core .containerintro_right p {
    margin-bottom: 48px;
  }
  .section_hero .shell .core .containerintro_right .socialbelt {
    gap: 20px;
  }
  .section_hero .shell .core .containerintro_right .socialbelt .instagram, .section_hero .shell .core .containerintro_right .socialbelt .linkedin, .section_hero .shell .core .containerintro_right .socialbelt .codepen, .section_hero .shell .core .containerintro_right .socialbelt .venmo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 10px 0;
    border-radius: 3px;
    transition: 0.125s;
    text-decoration: none;
  }
  .section_hero .shell .core .containerintro_right .socialbelt .instagram svg, .section_hero .shell .core .containerintro_right .socialbelt .linkedin svg, .section_hero .shell .core .containerintro_right .socialbelt .codepen svg, .section_hero .shell .core .containerintro_right .socialbelt .venmo svg {
    flex-shrink: 0;
  }
  .section_hero .shell .core .containerintro_right .socialbelt .instagram .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .linkedin .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .codepen .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .venmo .hiddentext {
    width: fit-content;
    overflow: visible;
    font-weight: 600;
    text-transform: uppercase;
  }
  .section_hero .shell .core .containerintro_right .socialbelt .instagram:hover, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover {
    border-left: 4px solid #4386E4;
    padding: 10px 24px 10px 20px;
    background-color: #161A1D;
    cursor: pointer;
  }
  .section_hero .shell .core .containerintro_right .socialbelt .instagram:hover svg path, .section_hero .shell .core .containerintro_right .socialbelt .instagram:hover svg rect, .section_hero .shell .core .containerintro_right .socialbelt .instagram:hover svg circle, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover svg path, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover svg rect, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover svg circle, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover svg path, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover svg rect, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover svg circle, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover svg path, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover svg rect, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover svg circle {
    fill: #EDF0E7;
  }
  .section_hero .shell .core .containerintro_right .socialbelt .instagram:hover svg circle:last-child, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover svg circle:last-child, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover svg circle:last-child, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover svg circle:last-child {
    fill: #EDF0E7;
  }
  .section_hero .shell .core .containerintro_right .socialbelt .instagram:hover .text, .section_hero .shell .core .containerintro_right .socialbelt .instagram:hover .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover .text, .section_hero .shell .core .containerintro_right .socialbelt .linkedin:hover .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover .text, .section_hero .shell .core .containerintro_right .socialbelt .codepen:hover .hiddentext, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover .text, .section_hero .shell .core .containerintro_right .socialbelt .venmo:hover .hiddentext {
    color: #EDF0E7;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

/* —————————————— ENDER OF section_hero —————————————— */
.section_reel {
  background: linear-gradient(to bottom, #F9F9F9, #EDF0E7);
}
.section_reel .shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #161A1D;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.section_reel .shell .gfx_visualreel {
  position: absolute;
  width: 86.259542%;
  max-width: 1118px;
  aspect-ratio: 2.39/1;
  background-image: url("_library/content/gfx/deco/text_visualreel.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: 0;
  right: 3%;
  transform: translate(0%, 4%);
  pointer-events: none;
  z-index: 1;
  transition: 0.25s;
}
.section_reel .shell .container_reel {
  display: flex;
  width: 100%;
  max-width: 1200px;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}
.section_reel .shell .container_reel .reelvideo {
  display: flex;
  width: 93.90625%;
  aspect-ratio: 16/9; /* Automatically sets height */
  align-items: center;
  justify-content: center;
  background-color: black;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: 0.25s;
}
.section_reel .shell .container_reel .reelvideo iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.02);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeInVideo 1.2s ease-in forwards;
}
@keyframes fadeInVideo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section_reel .shell .container_reel .reelvideo .playpause {
  transition: all 0.125s cubic-bezier(0.34, 1.56, 0.64, 1); /* 30 seconds */
  position: absolute;
  display: flex;
  align-items: center;
  z-index: 10;
  padding: 4px;
  background: #161A1D;
  border-radius: 120px;
  width: 183px;
  cursor: pointer;
}
.section_reel .shell .container_reel .reelvideo .playpause .shell_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  border: 1px solid #363636;
  border-radius: 120px;
  margin-right: 20px;
}
.section_reel .shell .container_reel .reelvideo .playpause .shell_icon .icon_play {
  background-image: url("_library/content/gfx/icon/icon_play.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 50%;
  height: 50%;
  transform: translateX(2px);
}
.section_reel .shell .container_reel .reelvideo .playpause .playtext {
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 1.54em;
  color: #FFFFFF;
  margin-left: 9px;
  text-transform: uppercase;
}
.section_reel .shell .container_reel .reelvideo:hover .iframe {
  opacity: 0.5;
}
.section_reel .shell .container_reel .reelvideo:hover .playpause {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  transition: 0.125s;
  transform: scale(1.1);
  background-color: #4386E4;
}
.section_reel .shell .container_reel .reelvideo:hover .playpause .shell_icon {
  transition: 0.5s;
  border-color: #295EA8;
}
.section_reel .shell .container_reel .reelvideo:hover .playpause:hover {
  transition: all 0.125s cubic-bezier(0.34, 1.56, 0.64, 1); /* 30 seconds */
  transform: scale(1.13);
  background-color: #295EA8;
}
.section_reel .shell .container_reel .reelvideo:hover .playpause:hover .shell_icon {
  background-color: #4386E4;
  border-color: #4386E4;
}
.section_reel .shell .right_content_reel {
  width: 78.625954%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5px;
  margin-top: -150px;
  z-index: 2;
  margin-bottom: 170px;
}
.section_reel .shell .right_content_reel .divider {
  width: 2px;
  height: 177px;
  background: #FFFFFF;
  border-radius: 2px;
}
.section_reel .shell .right_content_reel h2 {
  font-weight: 900;
  font-size: clamp(34px, 6vw, 75px);
  color: #FFFFFF;
  text-transform: uppercase;
}
.section_reel .shell .right_content_reel p {
  font-weight: 600;
  font-size: clamp(15px, 2.75vw, 25px);
  line-height: clamp(23px, 4vw, 48px);
  color: #FFFFFF;
  margin-bottom: 20px;
}
.section_reel .shell .gfx_grid_plus {
  position: absolute;
  width: 15%;
  height: 20%;
  background-image: url("_library/content/gfx/deco/gfx_gird_plus.svg");
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: scale(0.6);
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_reel .shell {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .section_reel .shell .gfx_visualreel {
    right: -23%;
    transform: translate(-29%, 4%);
  }
  .section_reel .shell .container_reel {
    width: 69.098361%;
    max-width: 1236.86px;
  }
  .section_reel .shell .container_reel .reelvideo {
    justify-content: flex-end;
    align-items: flex-end;
  }
  .section_reel .shell .container_reel .reelvideo .playpause {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .section_reel .shell .right_content_reel {
    width: 52.540984%;
    margin-left: 19%;
    margin-bottom: 280px;
  }
  .section_reel .shell .right_content_reel h2 {
    font-weight: 900;
    font-size: 45px;
    color: #FFFFFF;
    margin-bottom: 27px;
  }
  .section_reel .shell .right_content_reel p {
    font-weight: 600;
    font-size: 21px;
    line-height: 33px;
  }
}
@media screen and (min-width: 1850px) {
  .section_reel .shell {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .section_reel .shell .container_reel {
    width: 67%;
    max-width: none;
  }
  .section_reel .shell .container_reel .reelvideo {
    justify-content: flex-end;
    align-items: flex-end;
  }
  .section_reel .shell .container_reel .reelvideo .playpause {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .section_reel .shell .right_content_reel {
    position: relative;
    margin-left: auto;
    width: 30%;
    margin-right: 3%;
    bottom: 350px;
    margin-bottom: 380px;
  }
  .section_reel .shell .right_content_reel h2 {
    font-size: clamp(45px, 6vw, 56px);
    margin-bottom: 27px;
  }
  .section_reel .shell .right_content_reel p {
    font-size: clamp(21px, 1.25vw, 27px);
    line-height: clamp(33px, 2vw, 41px);
  }
}

/* —————————————— ENDER OF section_reel —————————————— */
/* —————————————— STARTO OF section_featured_work —————————————— */
/* NOTES 
k i'll want to use @https://swiperjs.com/get-started to try to make this slider work. so far my current // Swipe functionality for featured slider is not working in my JS file. let's please try to work on the function section_featured_work() {code} and my .section_featured_work {code} to make this work.

we're starting with the mobile-first code. I want the card to be 3% from the left of viewport while the parent container fills the width so that when the second card is next to the first card on its right, the second card appears to be past the viewport on the right side. 

interaction
i want to be able to tap and swipe over and i want the card to be endless so that after you swipe past the fourth card, you see the first card come after so it loops
*/
.section_featured_work {
  overflow: auto;
  transition: 0.5s;
  margin-top: -170px;
  width: 100%;
  padding-bottom: 40px;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_featured_work {
    margin-top: -330px;
  }
}
@media screen and (min-width: 1850px) {
  .section_featured_work {
    margin-top: -720px;
  }
}
.section_featured_work .shell {
  padding: 0;
}
.section_featured_work .shell .core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: 0.5s;
  position: relative;
}
.section_featured_work .shell .core .squig_border {
  background-image: url("_library/content/gfx/deco/squigglyline.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 5px;
}
.section_featured_work .shell .core h2 {
  font-size: 34px;
  font-weight: 700;
  color: white;
  margin: 33px 0 25px;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_featured_work .shell .core h2 {
    margin: 60px 0 40px;
  }
}
@media screen and (min-width: 1850px) {
  .section_featured_work .shell .core h2 {
    margin: 60px 0 40px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_featured_work .shell .core {
    width: 91.8%;
  }
}
@media screen and (min-width: 1850px) {
  .section_featured_work .shell .core {
    width: 1660px;
  }
}
.section_featured_work .shell .core .featured-swiper {
  display: flex;
  width: 100%;
  position: relative;
  overflow: visible !important;
}
.section_featured_work .shell .core .featured-swiper .swiper-wrapper {
  display: flex;
  height: 100%;
  overflow: visible !important;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide {
  display: flex;
  width: 270px;
  flex-shrink: 0;
  height: auto;
  margin-right: 12px;
  position: relative;
  z-index: 1;
  overflow: visible !important;
}
@media screen and (min-width: 1280px) {
  .section_featured_work .shell .core .featured-swiper .swiper-slide {
    width: 24.128686%;
    margin-right: 1.161752%;
  }
}
@media screen and (min-width: 1850px) {
  .section_featured_work .shell .core .featured-swiper .swiper-slide {
    width: 24.1%;
    margin-right: 1.807229%;
  }
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container {
  box-shadow: 0 14px 14px 0 rgba(0, 0, 0, 0.04);
  transform: translateY(-7px);
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box .ui_container {
  opacity: 1;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box .four_circles_container {
  opacity: 1;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box .circle {
  opacity: 1;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box .background_container {
  background-color: #161A1D;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box .image_container {
  transform: scale(0.84);
  opacity: 0.5;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box .image_source {
  transform: scale(1.09);
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box .circle1 {
  transform: translate(8px, 8px);
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box .circle2 {
  transform: translate(-8px, 8px);
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box .circle3 {
  transform: translate(8px, -8px);
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .image_box .circle4 {
  transform: translate(-8px, -8px);
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_link:hover .card_container .text_container .project_name {
  color: #4386E4;
  text-decoration: underline;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .card_container {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 6px;
  border-radius: 7px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.25s ease;
  z-index: 2;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: visible;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_featured_work .shell .core .featured-swiper .swiper-slide .image_box {
    height: 220px;
  }
}
@media screen and (min-width: 1850px) {
  .section_featured_work .shell .core .featured-swiper .swiper-slide .image_box {
    height: 414px;
  }
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .ui_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid white;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  backdrop-filter: blur(23px);
  background-color: rgba(217, 217, 217, 0.01);
  border-radius: 76px;
  height: 50px;
  padding: 20px 45px;
  opacity: 0;
  transition: all 0.125s ease;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .ui_container:hover {
  background-color: white;
  color: black;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .background_container {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1A1A1A;
  z-index: 1;
  transition: background-color 0.125s ease;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .image_container {
  overflow: hidden;
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.125s ease;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .image_container .image_source {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: all 0.125s ease;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .four_circles_container {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 15;
  opacity: 0;
  transition: opacity 0.125s ease;
  pointer-events: none;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .four_circles_container .circle {
  position: absolute;
  opacity: 0;
  transition: all 0.125s ease;
  width: 9px;
  height: 9px;
  pointer-events: none;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .four_circles_container .circle circle {
  stroke: white;
  stroke-width: 1;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .four_circles_container .circle1 {
  top: 8px;
  left: 8px;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .four_circles_container .circle2 {
  top: 8px;
  right: 8px;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .four_circles_container .circle3 {
  bottom: 8px;
  left: 8px;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .image_box .four_circles_container .circle4 {
  bottom: 8px;
  right: 8px;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .text_container {
  display: flex;
  flex-direction: column;
  padding: 7px 7px 30px;
  flex: 1;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .text_container .text_top_container {
  padding: 17px 16px 3px;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .text_container .text_top_container .label_type {
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: black;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .text_container .text_top_container .project_name {
  font-size: 25px;
  font-weight: bold;
  line-height: 31px;
  color: black;
  transition: all 0.125s ease;
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .text_container .line_separator {
  display: none;
  margin: 20px 0;
  height: 1px;
  width: 100%;
  background-color: #E3E3E3;
}
@media screen and (min-width: 1850px) {
  .section_featured_work .shell .core .featured-swiper .swiper-slide .text_container .line_separator {
    display: block;
  }
}
.section_featured_work .shell .core .featured-swiper .swiper-slide .text_container .paragraph {
  display: none;
  padding: 2px 16px 0px;
  font-size: 16px;
  font-weight: normal;
  color: black;
  line-height: 23px;
  hyphens: none;
}
@media screen and (min-width: 1850px) {
  .section_featured_work .shell .core .featured-swiper .swiper-slide .text_container .paragraph {
    display: block;
  }
}

.section_work .shell {
  position: relative;
  padding: 0;
}
.section_work .shell .featured-swiper {
  position: relative;
  width: 100%;
  padding-left: 3%;
  padding-right: 3%;
}
.section_work .shell .featured-swiper .swiper-wrapper {
  display: flex;
  width: 100%;
  height: auto;
  transition-timing-function: linear;
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}
.section_work .shell .featured-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: auto;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.1s linear;
  opacity: 1 !important;
}
@media screen and (min-width: 1280px) {
  .section_work .shell .featured-swiper .swiper-wrapper .swiper-slide {
    width: 400px;
  }
}

.section_past_work .shell .core {
  display: flex;
  padding-bottom: 50px;
  align-items: flex-start;
  flex-direction: column;
}
.section_past_work .shell .core h2 {
  font-size: 2.41em;
  line-height: 2.21em;
  color: #161A1D;
  margin-bottom: 56px;
}
.section_past_work .shell .core .container_col {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section_past_work .shell .core .container_col .col_left {
  width: 100%;
}
.section_past_work .shell .core .container_col .col_left h4 {
  font-weight: 500;
  font-size: 0.74em;
  line-height: 0.87em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 25px;
}
.section_past_work .shell .core .container_col .col_left ul {
  width: 100%;
  border-top: 1px dashed black;
  border-bottom: 1px solid black;
}
.section_past_work .shell .core .container_col .col_left ul a {
  text-decoration: none; /* Remove underline from the link itself */
}
.section_past_work .shell .core .container_col .col_left ul a:last-child li {
  border-bottom: none;
}
.section_past_work .shell .core .container_col .col_left ul a li {
  display: flex;
  align-items: center; /* Align all child elements vertically in the center */
  border-bottom: 1px dashed black;
  padding: 18px 0px;
  padding-right: 3%;
  min-height: 90px;
  transition: all 0.125s ease;
}
.section_past_work .shell .core .container_col .col_left ul a li svg.svg_arrow {
  width: 0px;
  height: 14px;
  opacity: 0;
  transition: width 0.125s ease, opacity 0.125s ease;
}
@media screen and (min-width: 1850px) {
  .section_past_work .shell .core .container_col .col_left ul a li svg.svg_arrow path {
    fill: black;
  }
}
.section_past_work .shell .core .container_col .col_left ul a li .image {
  width: 90px;
  height: auto;
  min-height: 65px;
  margin-right: 5%;
  background-color: black;
  border-radius: 3px;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  align-self: stretch;
  flex-shrink: 0;
}
@media screen and (min-width: 1280px) {
  .section_past_work .shell .core .container_col .col_left ul a li .image {
    width: 96px;
    height: 63px;
    margin-right: 20px;
  }
}
.section_past_work .shell .core .container_col .col_left ul a li .container_text {
  display: flex;
  flex-direction: column;
}
.section_past_work .shell .core .container_col .col_left ul a li .container_text h3.title {
  text-decoration: none !important;
  font-weight: 700;
  line-height: 18px;
  color: black;
  margin-bottom: 4px;
  text-transform: capitalize; /* Ensure title case */
  font-size: clamp(0.94em, 0.94em + (1.2em - 0.94em) * (100vw - 393px) / (1280px - 393px), 1.2em);
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
  font-size: clamp(1.07em, 1.07em + (1.07em - 1.07em) * (100vw - 1280px) / (1850px - 1280px), 1.07em);
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
}
@media (min-width: 1850px) {
  .section_past_work .shell .core .container_col .col_left ul a li .container_text h3.title {
    font-size: 1.47em;
  }
}
.section_past_work .shell .core .container_col .col_left ul a li .container_text p {
  text-decoration: none;
  text-transform: capitalize; /* Ensure title case */
  line-height: 18px;
  font-weight: 300;
}
.section_past_work .shell .core .container_col .col_left ul a li .button {
  transition: all ease-in-out 0.125s;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center; /* Center button content horizontally */
  width: 21px;
  height: 100%;
  margin-left: auto;
  align-self: center; /* Center button vertically within the li */
}
.section_past_work .shell .core .container_col .col_left ul a li .button p {
  display: none;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  color: #353535;
  margin-right: 30px;
}
@media screen and (min-width: 1280px) {
  .section_past_work .shell .core .container_col .col_left ul a li .button p {
    order: 1;
    display: flex;
    margin-right: 11px;
  }
}
@media screen and (min-width: 1850px) {
  .section_past_work .shell .core .container_col .col_left ul a li .button p {
    margin-right: 23px;
  }
}
.section_past_work .shell .core .container_col .col_left ul a li .button svg {
  top: 50%; /* Position at vertical center */
  left: 0;
  width: 22px;
  height: 12px;
  position: absolute;
  transform: translateY(-50%); /* Adjust for perfect centering */
}
.section_past_work .shell .core .container_col .col_left ul a li .button svg path {
  fill: black;
}
@media screen and (min-width: 1280px) {
  .section_past_work .shell .core .container_col .col_left ul a li .button svg {
    order: 2;
    position: static;
    transform: none;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_past_work .shell .core .container_col .col_left ul a li .button {
    height: 50px;
    justify-content: flex-end;
    width: 106px;
    display: flex;
  }
}
@media screen and (min-width: 1850px) {
  .section_past_work .shell .core .container_col .col_left ul a li .button {
    border: 2px solid black;
    width: 150px;
    height: 50px;
    border-radius: 50px;
    padding: 0px 18px 0px 36px;
  }
}
@media screen and (min-width: 1850px) {
  .section_past_work .shell .core .container_col .col_left ul a li {
    padding-right: 0;
  }
  .section_past_work .shell .core .container_col .col_left ul a li:hover svg.svg_arrow {
    display: flex;
    width: 20px;
    opacity: 1;
  }
  .section_past_work .shell .core .container_col .col_left ul a li:hover .image {
    margin-left: 12px;
  }
  .section_past_work .shell .core .container_col .col_left ul a li:hover .button {
    background-color: black;
  }
  .section_past_work .shell .core .container_col .col_left ul a li:hover .button p {
    color: white;
  }
  .section_past_work .shell .core .container_col .col_left ul a li:hover .button svg path {
    fill: white;
  }
}
.section_past_work .shell .core .container_col .col_left a {
  font-weight: 700;
  font-size: 1em;
  line-height: 2.21em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #353535;
  margin-left: auto;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_past_work .shell .core .container_col .col_left {
    width: 66.59%;
    margin-right: 3.65%;
  }
}
@media screen and (min-width: 1850px) {
  .section_past_work .shell .core .container_col .col_left {
    width: 64.52%;
  }
}
.section_past_work .shell .core .container_col .col_right {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #161A1D;
  border-radius: 7px;
  width: 100%;
  height: clamp(368px, 368px + 167 * (100vw - 393px) / 1457, 535px);
}
.section_past_work .shell .core .container_col .col_right .container_inner {
  display: flex;
  background: url("https://images.unsplash.com/photo-1720352003062-2cc51e8ebc93?q=80&w=2340&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") center/cover no-repeat;
  width: 100%;
  padding: 4%;
  height: clamp(368px, 368px + 124 * (100vw - 393px) / 1457, 492px);
  max-width: 492px;
  aspect-ratio: 1/1;
  border-radius: 6.03681px;
}
.section_past_work .shell .core .container_col .col_right .container_inner .core_inside {
  background-color: #161A1D;
  border-radius: 3px;
  padding: 35px;
  overflow: hidden;
}
@media screen and (min-width: 1280px) {
  .section_past_work .shell .core .container_col .col_right .container_inner .core_inside {
    padding: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .section_past_work .shell .core .container_col .col_right .container_inner {
    width: 489px;
    height: 489px;
    padding: 35px;
  }
}
@media screen and (min-width: 1280px) {
  .section_past_work .shell .core .container_col .col_right {
    width: 489px;
    height: 489px;
    margin-top: 33px;
  }
}
@media screen and (min-width: 1280px) {
  .section_past_work .shell .core .container_col {
    flex-direction: row;
    justify-content: space-between;
  }
}

.section_behind_the_work {
  background: linear-gradient(to bottom, #EDF0E7, #F9F9F9);
  transition: 0.5s;
}
.section_behind_the_work .shell {
  display: flex;
  flex-direction: column;
  background-image: url("/_library/content/image/about_desktop.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%; /* True center of the image */
  background-attachment: scroll;
  min-height: 336px;
  aspect-ratio: 1.685714286;
  max-height: 566px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1280px) and (max-width: 1850px) {
  .section_behind_the_work .shell {
    height: clamp(336px, 44vw, 566px);
  }
}
@media screen and (min-width: 1850px) {
  .section_behind_the_work .shell {
    height: 640px;
  }
}
.section_behind_the_work .shell .text_behind_the_work {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0 20px;
  pointer-events: none;
}
.section_behind_the_work .shell .text_behind_the_work svg {
  width: 450px;
  max-width: 500px;
  height: auto;
  display: block;
  margin-top: -60px;
}
@media screen and (min-width: 1850px) {
  .section_behind_the_work .shell .text_behind_the_work svg {
    width: 600px;
    max-width: 600px;
    margin-top: -7px;
    margin-right: 44px;
  }
}
@media screen and (max-width: 500px) {
  .section_behind_the_work .shell .text_behind_the_work svg {
    width: 100%;
  }
}
.section_behind_the_work .shell .core {
  margin-top: auto;
  width: 100%;
  display: flex;
}
@media screen and (min-width: 1850px) {
  .section_behind_the_work .shell .core {
    width: 1660px;
  }
}
.section_behind_the_work .shell .core .belt_nametag {
  display: flex;
  padding: 10px 24px;
  flex-direction: row;
  height: 81px;
  width: 100%;
  background: rgba(22, 26, 29, 0.8);
  backdrop-filter: blur(9px);
  border-radius: 3px 3px 0 0;
  margin: auto auto 0 0;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_behind_the_work .shell .core .belt_nametag {
    width: 627px;
    height: 174px;
    border-radius: 7px 7px 0 0;
    padding: 10px;
  }
}
.section_behind_the_work .shell .core .belt_nametag .container_nametag {
  display: flex;
  align-items: center;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.section_behind_the_work .shell .core .belt_nametag .container_nametag .image_profile {
  background-image: url("/_library/content/image/photo_profile.jpg");
  background-size: cover;
  background-position: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.section_behind_the_work .shell .core .belt_nametag .container_nametag .text_container {
  display: inline;
}
.section_behind_the_work .shell .core .belt_nametag .container_nametag .text_container .text_name {
  font-weight: 700;
  font-size: 1.07em;
  color: #FFFFFF;
  margin-bottom: 3px;
  line-height: 17px;
}
.section_behind_the_work .shell .core .belt_nametag .container_nametag .text_container .text_title {
  font-weight: 400;
  font-size: 0.87em;
  line-height: 17px;
  color: #FFFFFF;
}
.section_behind_the_work .shell .core .belt_nametag .container_nametag .text_container .text_description {
  display: none;
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #FFFFFF;
}
.section_behind_the_work .shell .core .belt_nametag .rightside_more {
  display: flex;
  padding: 0 0 0 32px;
  border-left: 1px solid #464646;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  display: none;
}
.section_behind_the_work .shell .core .belt_nametag .rightside_more h3 {
  display: flex;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.section_behind_the_work .shell .core .belt_nametag .rightside_more .arrow_right {
  display: flex;
  width: 21px;
  height: 13px;
  align-items: center;
  justify-content: center;
}
.section_behind_the_work .shell .core .belt_nametag .rightside_more .arrow_right svg path {
  fill: white;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_behind_the_work .shell .core .belt_nametag {
    justify-items: flex-start;
    width: 627px;
    height: 174px;
    border-radius: 7px 7px 0 0;
    padding: 10px;
  }
  .section_behind_the_work .shell .core .belt_nametag .container_nametag .image_profile {
    width: 154px;
    height: 154px;
    border-radius: 3px;
  }
  .section_behind_the_work .shell .core .belt_nametag .container_nametag .text_name {
    padding-bottom: 15px;
  }
  .section_behind_the_work .shell .core .belt_nametag .container_nametag .text_container {
    padding: 0 0 10px 34px;
  }
  .section_behind_the_work .shell .core .belt_nametag .container_nametag .text_container .text_title {
    display: none;
  }
  .section_behind_the_work .shell .core .belt_nametag .container_nametag .text_container .text_description {
    display: block;
    width: 289px;
  }
  .section_behind_the_work .shell .core .belt_nametag .rightside_more {
    display: none;
  }
}
@media screen and (min-width: 1850px) {
  .section_behind_the_work .shell .core .belt_nametag {
    margin: auto auto 0 0;
    width: 627px;
    height: 174px;
    border-radius: 7px 7px 0 0;
    padding: 10px;
  }
  .section_behind_the_work .shell .core .belt_nametag .container_nametag .image_profile {
    width: 154px;
    height: 154px;
    border-radius: 3px;
  }
  .section_behind_the_work .shell .core .belt_nametag .container_nametag .text_name {
    padding-bottom: 15px;
  }
  .section_behind_the_work .shell .core .belt_nametag .container_nametag .text_container {
    padding: 0 0 10px 34px;
  }
  .section_behind_the_work .shell .core .belt_nametag .container_nametag .text_container .text_title {
    display: none;
  }
  .section_behind_the_work .shell .core .belt_nametag .container_nametag .text_container .text_description {
    display: block;
    width: 289px;
  }
  .section_behind_the_work .shell .core .belt_nametag .rightside_more {
    display: none;
  }
}

.section_about_me {
  display: flex;
  background-color: #F9F9F9;
}
.section_about_me .shell {
  padding-bottom: 70px;
}
.section_about_me .shell .core {
  display: flex;
  flex-direction: column;
}
.section_about_me .shell .core .container_current_focus {
  display: none;
  width: 100%;
}
.section_about_me .shell .core .container_current_focus h3 {
  margin: 22px 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 33px;
  color: #2B2B2B;
}
.section_about_me .shell .core .container_current_focus ul {
  border-top: 2px solid black;
  border-bottom: 1px solid black;
}
.section_about_me .shell .core .container_current_focus ul li {
  padding: 21px 20px;
  padding-left: 50px;
  border-bottom: 1px dashed black;
}
.section_about_me .shell .core .container_current_focus ul li:last-child {
  border-bottom: none;
}
.section_about_me .shell .core .container_current_focus ul li p {
  font-weight: 500;
  font-size: 0.94em;
  line-height: 163.4%;
  color: #000000;
}
@media screen and (min-width: 1280px) {
  .section_about_me .shell .core .container_current_focus {
    display: initial;
  }
}
.section_about_me .shell .core .container_about_me {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.section_about_me .shell .core .container_about_me .toggle_buttons {
  align-self: flex-end;
  width: 100%;
  max-width: 721px;
  margin-top: 26px;
  display: flex;
  justify-content: flex-end;
}
.section_about_me .shell .core .container_about_me .toggle_buttons .career {
  margin-right: 1.498645%;
}
.section_about_me .shell .core .container_about_me .toggle_buttons .career, .section_about_me .shell .core .container_about_me .toggle_buttons .personal {
  width: 49.276423%;
  max-width: 186px;
  padding: 8px 20px;
  border-radius: 100px;
  text-align: center;
  border: 2px solid #295EA8;
  color: #295EA8;
  font-weight: 700;
  font-size: 15px;
  line-height: 33px;
  text-transform: uppercase;
}
.section_about_me .shell .core .container_about_me .text_about_content {
  align-self: flex-end;
  width: 100%;
  max-width: none;
}
.section_about_me .shell .core .container_about_me .text_about_content .emoji {
  font-size: 70px;
}
.section_about_me .shell .core .container_about_me .text_about_content .text_about_me {
  font-size: 1.07em;
  margin-bottom: 20px;
}
.section_about_me .shell .core .container_about_me .text_about_content .continue-reading {
  padding: 20px;
  box-sizing: border-box;
  background: #E2E2E2;
  border: 1px solid #FFFFFF;
  border-radius: 7px;
  cursor: pointer;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_about_me .shell .core {
    flex-direction: row;
  }
  .section_about_me .shell .core .container_current_focus {
    align-self: flex-start;
    width: 38.16%;
    margin-right: 4.02%;
  }
  .section_about_me .shell .core .container_about_me {
    align-self: flex-start;
    width: 57.82%;
  }
  .section_about_me .shell .core .container_about_me .text_about_content {
    margin-top: -50px;
  }
}
@media screen and (min-width: 1850px) {
  .section_about_me .shell .core {
    flex-direction: row;
    justify-content: space-between;
  }
  .section_about_me .shell .core .container_current_focus {
    align-self: flex-start;
    width: 37.77%;
    margin-right: 4.02%;
  }
  .section_about_me .shell .core .container_current_focus ul li:hover {
    border-left: 4px solid #4386E4;
    padding-left: 55px !important;
    background-position: left 20px top 20px !important;
  }
  .section_about_me .shell .core .container_about_me {
    display: flex;
    flex-direction: column;
    align-self: flex-start;
    width: 57.23%;
  }
  .section_about_me .shell .core .container_about_me .toggle_buttons {
    align-self: flex-end;
  }
  .section_about_me .shell .core .container_about_me .career, .section_about_me .shell .core .container_about_me .personal {
    align-self: flex-start;
  }
  .section_about_me .shell .core .container_about_me .text_about_content {
    margin-top: -47px;
  }
}

.focus-item {
  cursor: pointer;
  transition: all 0.3s ease;
}
.focus-item:hover {
  opacity: 0.8;
}

.focus-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  width: 90%;
  max-width: 600px;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}
.focus-modal .focus-modal-content {
  padding: 0;
}
.focus-modal .focus-modal-content .focus-modal-image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.focus-modal .focus-modal-content .focus-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 27px 33px 0 33px;
}
.focus-modal .focus-modal-content .focus-modal-header h3.modaltext {
  margin: 0;
  font-size: 1.5rem;
}
.focus-modal .focus-modal-content .focus-modal-header .focus-modal-close {
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}
.focus-modal .focus-modal-content .focus-modal-header .focus-modal-close:hover {
  color: #999;
}
.focus-modal .focus-modal-content .focus-modal-body {
  padding: 0 33px 32px 33px;
}
.focus-modal .focus-modal-content .focus-modal-body p {
  margin: 0 0 15px 0;
  line-height: 1.5;
}
.focus-modal .focus-modal-content .focus-modal-body .focus-modal-url {
  margin-top: 15px;
  text-align: right;
}
.focus-modal .focus-modal-content .focus-modal-body .focus-modal-url a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.focus-modal .focus-modal-content .focus-modal-body .focus-modal-url a:hover {
  background-color: #333;
}

.focus-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.section_followup {
  background: url("_library/content/image/footer.jpg");
  background-size: cover;
  background-position: center;
  transition: 0.5s;
  display: flex;
  height: 425px;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}
.section_followup .shell .core .outer {
  padding: 20px;
}
.section_followup .shell .core .outer .inner {
  display: flex;
  transition: 0.5s;
}
.section_followup .shell .core .outer .inner .message {
  transition: 0.125s;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.section_followup .shell .core .outer .inner .message .text {
  transition: 0.125s;
  font-weight: 700;
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: #FFFFFF;
  margin-bottom: 20px;
}
.section_followup .shell .core .outer .inner .message .cta-footer {
  transition: 0.125s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 40px;
  background: #295EA8;
  border: 2px solid #4386E4;
  border-radius: 25px;
}
.section_followup .shell .core .outer .inner .message .cta-footer .textcta {
  font-weight: 700;
  font-size: 0.9375em;
  text-transform: uppercase;
  color: #ffffff;
}
@media screen and (min-width: 1280px) {
  .section_followup .shell .core .outer .inner .message .cta-footer .textcta {
    color: #ffffff;
  }
}
@media screen and (min-width: 1850px) {
  .section_followup .shell .core .outer .inner .message .cta-footer:hover {
    transform: scale(1.25);
    margin-left: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_followup .shell .core .outer .inner .message {
    /*————handheld*/
    flex-direction: row;
    gap: 20px;
  }
  .section_followup .shell .core .outer .inner .message .text {
    margin-bottom: 0;
    color: #FFFFFF;
  }
}
@media screen and (min-width: 1850px) {
  .section_followup .shell .core .outer .inner .message {
    /*————handheld*/
    flex-direction: row;
    gap: 20px;
  }
  .section_followup .shell .core .outer .inner .message .text {
    margin-bottom: 0;
    color: #FFFFFF;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_followup .shell .core .outer .inner {
    /*————handheld.inner————*/
    background-color: #2A2D30;
    padding: 44px 136px 54px;
    border-radius: 3px;
  }
}
@media screen and (min-width: 1850px) {
  .section_followup .shell .core .outer .inner {
    /*————handheld.inner————*/
    background-color: #2A2D30;
    padding: 44px 136px 54px;
    border-radius: 3px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_followup .shell .core .outer {
    /*————handheld.outer————*/
    background: rgba(13, 17, 22, 0.5);
    border-radius: 8px;
  }
  .section_followup .shell .core .outer .blur-effect {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}
@media screen and (min-width: 1850px) {
  .section_followup .shell .core .outer {
    /*————handheld.outer————*/
    background: rgba(13, 17, 22, 0.5);
    border-radius: 8px;
  }
  .section_followup .shell .core .outer .blur-effect {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

@media screen and (min-width: 1850px) {
  .section_followup {
    height: 780px;
  }
}
.section_copyright {
  margin-top: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #161A1D;
}
.section_copyright .shell .text {
  padding: 20px 0;
  color: #868686;
  font-size: 0.875em;
}

/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––      Portfolio Page       ———————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
/*–––––––––––––––––––––––––––––————————————————————————————————————————————*/
.section_divider {
  background-color: #000000;
}
.section_divider .shell .core .section_divider {
  margin: 50px 0 0;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  padding: 0;
}

.section_cover .shell {
  transition: 0.5s;
  background-color: #555555;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 336px; /* Ensure the element has height to show the background */
  position: relative;
  width: 100%;
}
.section_cover .shell .container_headline {
  align-self: flex-start;
  max-width: 814px;
  margin-top: max(110px, 16.36vh);
  margin-bottom: max(100px, 14.83vh);
  padding-right: 24px;
}
.section_cover .shell .container_headline h1 {
  padding-left: clamp(17px, 5vw, 36px);
  border-left: clamp(4px, 1vw, 6px) solid #FFFFFF;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: clamp(1.61em, 10vw, 100px);
  line-height: clamp(48px, 10vw, 100px);
  text-shadow: 0px 1.71031px 48.7437px rgba(0, 0, 0, 0.75);
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_cover .shell {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1850px) {
  .section_cover .shell {
    justify-content: space-between;
  }
}
.section_cover .shell .core {
  display: flex;
  padding-bottom: 11px;
  /* ———————————————————————————————— */
  /* insert component_info_panel here */
  /* ———————————————————————————————— */
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_cover .shell .core {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1850px) {
  .section_cover .shell .core {
    flex-direction: row;
    justify-content: space-between;
  }
}

.component_info_panel {
  transition: 0.5s;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 603px;
  padding: 3px;
  border-radius: 7px;
  margin-bottom: 5vw;
}
.component_info_panel .container_project_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #191919;
  border-radius: 4px;
  width: 100%;
  padding: 28px 24px;
}
.component_info_panel .container_project_top .project_name {
  font-weight: 800;
  font-size: 1.61em;
  line-height: 144%;
  color: white;
}
.component_info_panel .container_project_top .project_tiny {
  display: none;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  color: #FFFFFF;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .component_info_panel .container_project_top .project_tiny {
    display: block;
  }
}
@media screen and (min-width: 1850px) {
  .component_info_panel .container_project_top .project_tiny {
    display: block;
    line-height: 135%;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1280px) {
  .component_info_panel .container_project_top {
    align-items: flex-start;
    padding: 22px 24px 35px 24px;
  }
}
.component_info_panel .client_info {
  width: 100%;
}
.component_info_panel .client_info li {
  display: flex;
  padding: 18px 23px;
  font-weight: 400;
  font-size: 0.94em;
  color: #000000;
  border-bottom: 1px dashed #000000;
}
.component_info_panel .client_info li:last-child {
  border-bottom: none;
}
.component_info_panel .client_info li.date {
  display: none;
}
.component_info_panel .client_info li.location {
  display: none;
}
.component_info_panel .nda_text {
  width: 100%;
  padding: 22px 23px;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  color: #000000;
  border-top: 1px solid #000000;
}
.component_info_panel .more_details {
  width: 100%;
  padding: 11px 23px;
  background-color: #191919;
  color: white;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-size: 1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .component_info_panel {
    display: flex;
    align-self: center;
    width: 373px;
    margin-bottom: 50px;
  }
  .component_info_panel .client_info li.date {
    display: block;
  }
  .component_info_panel .client_info li.location {
    display: block;
  }
  .component_info_panel .more_details {
    display: none;
  }
}
@media screen and (min-width: 1850px) {
  .component_info_panel {
    width: 373px;
    align-self: center;
    margin-bottom: 50px;
  }
  .component_info_panel .container_project_top {
    line-height: 120%;
  }
  .component_info_panel .client_info li.date {
    display: block;
  }
  .component_info_panel .client_info li.location {
    display: block;
  }
  .component_info_panel .more_details {
    display: none;
  }
}

/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
.section_top3 {
  background-color: #EBEBEB;
}
.section_top3 .shell .core .container_belt_nav_lr {
  position: relative;
  margin: 16px 0 62px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.section_top3 .shell .core .container_belt_nav_lr a.previous,
.section_top3 .shell .core .container_belt_nav_lr a.next {
  transition: 0.125s;
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  width: 177px;
  height: fit-content;
}
.section_top3 .shell .core .container_belt_nav_lr a.previous .container_preview_project,
.section_top3 .shell .core .container_belt_nav_lr a.next .container_preview_project {
  display: flex;
}
.section_top3 .shell .core .container_belt_nav_lr a.previous .container_preview_project .source_preview_project,
.section_top3 .shell .core .container_belt_nav_lr a.next .container_preview_project .source_preview_project {
  display: flex;
}
.section_top3 .shell .core .container_belt_nav_lr a.previous .container_nav_lr,
.section_top3 .shell .core .container_belt_nav_lr a.next .container_nav_lr {
  display: flex;
  padding: 12px 0 6px 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.section_top3 .shell .core .container_belt_nav_lr a.previous .container_nav_lr svg,
.section_top3 .shell .core .container_belt_nav_lr a.next .container_nav_lr svg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 21px;
  height: 12px;
}
.section_top3 .shell .core .container_belt_nav_lr a.previous .container_nav_lr svg path,
.section_top3 .shell .core .container_belt_nav_lr a.next .container_nav_lr svg path {
  fill: black;
}
.section_top3 .shell .core .container_belt_nav_lr a.previous .container_nav_lr p,
.section_top3 .shell .core .container_belt_nav_lr a.next .container_nav_lr p {
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  color: #161A1D;
}
@media screen and (min-width: 1280px) and (max-width: 1850px), screen and (min-width: 1850px) {
  .section_top3 .shell .core .container_belt_nav_lr a.previous .container_nav_lr p,
  .section_top3 .shell .core .container_belt_nav_lr a.next .container_nav_lr p {
    color: white;
  }
  .section_top3 .shell .core .container_belt_nav_lr a.previous .container_nav_lr svg path,
  .section_top3 .shell .core .container_belt_nav_lr a.next .container_nav_lr svg path {
    fill: white;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px), screen and (min-width: 1850px) {
  .section_top3 .shell .core .container_belt_nav_lr a.previous .container_nav_lr p,
  .section_top3 .shell .core .container_belt_nav_lr a.next .container_nav_lr p {
    text-shadow: 0px 0px 5px rgb(0, 0, 0), 0px 0px 10px rgba(0, 0, 0, 0.75);
  }
  .section_top3 .shell .core .container_belt_nav_lr a.previous:hover,
  .section_top3 .shell .core .container_belt_nav_lr a.next:hover {
    padding: 6px;
    background-color: #161A1D;
    border-radius: 5px;
  }
  .section_top3 .shell .core .container_belt_nav_lr a.previous:hover .container_preview_project,
  .section_top3 .shell .core .container_belt_nav_lr a.next:hover .container_preview_project {
    transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
    opacity: 1;
    width: 100%;
    height: 107px;
    border-radius: 2px;
    background-color: #295EA8;
  }
  .section_top3 .shell .core .container_belt_nav_lr a.previous .container_preview_project,
  .section_top3 .shell .core .container_belt_nav_lr a.next .container_preview_project {
    height: 0px;
    opacity: 0;
  }
  .section_top3 .shell .core .container_belt_nav_lr a.previous .container_preview_project .source_preview_project,
  .section_top3 .shell .core .container_belt_nav_lr a.next .container_preview_project .source_preview_project {
    display: flex;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px), screen and (min-width: 1850px) {
  .section_top3 .shell .core .container_belt_nav_lr a.previous,
  .section_top3 .shell .core .container_belt_nav_lr a.next {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50px;
    padding-bottom: 6px;
    background-color: rgba(0, 0, 0, 0.8);
  }
}
.section_top3 .shell .core .container_belt_nav_lr .next {
  align-items: flex-end;
  right: 0;
}
@media screen and (min-width: 1280px) and (max-width: 1850px), screen and (min-width: 1850px) {
  .section_top3 .shell .core .container_belt_nav_lr .next {
    align-items: center;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px), screen and (min-width: 1850px) {
  .section_top3 .shell .core .container_belt_nav_lr .previous {
    align-items: center;
  }
}
.section_top3 .shell .core .container_belt_nav_lr .previous .container_nav_lr svg {
  order: 0;
  transform: scaleX(-1);
}
.section_top3 .shell .core .container_belt_nav_lr .previous .container_nav_lr p {
  order: 1;
}
.section_top3 .shell .core .container_belt_nav_lr .next .container_nav_lr svg {
  order: 1;
  transform: scaleX(1);
}
.section_top3 .shell .core .container_belt_nav_lr .next .container_nav_lr p {
  order: 0;
}
@media screen and (min-width: 1280px) and (max-width: 1850px), screen and (min-width: 1850px) {
  .section_top3 .shell .core .container_belt_nav_lr {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 1850px) {
  .section_top3 .shell .core .container_belt_nav_lr {
    margin-top: -14px;
  }
}
.section_top3 .shell .core .container_top3 {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.section_top3 .shell .core .container_top3 li {
  cursor: pointer;
  transition: transform 0.125s, opacity 0.3s ease;
  display: flex;
  background-color: #161A1D;
  width: 32.5%;
  aspect-ratio: 3/2;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.section_top3 .shell .core .container_top3 li:hover {
  transform: scale(1.05);
}
.section_top3 .shell .core .container_top3 li.video-item {
  background-color: #E2E2E2;
}
.section_top3 .shell .core .container_top3 li.video-item .video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section_top3 .shell .core .container_top3 li.video-item .video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.25);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section_top3 .shell .core .container_top3 li.video-item .video-container .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 10;
}
.section_top3 .shell .core .container_top3:hover li {
  opacity: 0.5;
}
.section_top3 .shell .core .container_top3:hover li:hover {
  opacity: 1;
  transform: scale(1.05);
  z-index: 1;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_top3 {
    margin-top: -173px;
  }
}
@media screen and (min-width: 1850px) {
  .section_top3 {
    margin-top: -130px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px), screen and (min-width: 1850px) {
  .section_top3 {
    padding-bottom: 0px;
  }
}

/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
.image_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 8500; /* Between video-overlay and thank_you_modal */
  display: none; /* Hide by default */
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image_overlay.active {
  opacity: 1;
}
.image_overlay .overlay_content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.image_overlay .overlay_content.active {
  transform: translateY(0);
  opacity: 1;
}
.image_overlay .overlay_content .image_container {
  width: 100%;
}
.image_overlay .overlay_content .image_container img {
  width: 100%;
  aspect-ratio: 6/4;
  object-fit: cover;
  border-radius: 4px;
}
.image_overlay .overlay_content .image_container .video_container {
  position: relative;
  width: 100%;
  height: 80vh;
  max-height: 800px;
  border-radius: 4px;
  overflow: hidden;
}
.image_overlay .overlay_content .image_container .video_container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image_overlay .overlay_content .image_container .description_box {
  margin-top: 20px;
  padding: 20px;
  border-radius: 4px;
  color: white;
}
.image_overlay .overlay_content .image_container .description_box h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.image_overlay .overlay_content .image_container .description_box p {
  line-height: 1.5;
}

/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
.section_contributions {
  padding: 40px 0;
}
.section_contributions .shell {
  padding: 0;
}
.section_contributions .shell .core {
  width: 100%;
}
.section_contributions .shell .core .contributions-swiper {
  display: flex;
  width: 100%;
  position: relative;
  overflow: visible !important;
}
.section_contributions .shell .core .contributions-swiper .swiper-wrapper {
  display: flex;
  height: 100%;
  overflow: visible !important;
}
.section_contributions .shell .core .contributions-swiper .swiper-slide {
  display: flex;
  width: auto;
  flex-shrink: 0;
  height: auto;
  margin-right: 12px;
  position: relative;
  z-index: 1;
  overflow: visible !important;
}
@media screen and (min-width: 1280px) {
  .section_contributions .shell .core .contributions-swiper .swiper-slide {
    margin-right: 1.161752%;
  }
}
@media screen and (min-width: 1850px) {
  .section_contributions .shell .core .contributions-swiper .swiper-slide {
    margin-right: 1.807229%;
  }
}
.section_contributions .shell .core .contributions-swiper .swiper-slide .container_contributions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.section_contributions .shell .core .contributions-swiper .swiper-slide .container_contributions li {
  padding: 8px 16px;
  background: #161A1D;
  border-radius: 4px;
  color: white;
  white-space: nowrap;
  font-size: 14px;
  flex-shrink: 0;
}

/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
.section_overview {
  background-color: #EBEBEB;
}
.section_overview .shell {
  padding-bottom: 48px;
}
.section_overview .shell .core .divider {
  margin: 30px 0 25px;
  border: 1px dashed #000000;
  width: 100%;
}
.section_overview .shell .core .container_overview {
  display: flex;
  flex-direction: column;
}
.section_overview .shell .core .container_overview .overview_left {
  max-width: 1153px;
}
.section_overview .shell .core .container_overview .overview_left h2 {
  font-weight: 800;
  font-size: 1.67em;
  color: #161A1D;
  line-height: 1.5em;
  margin-bottom: 20px;
  font-size: clamp(1.67em, 1.67em + (1.67em - 1.67em) * (100vw - 393px) / (1280px - 393px), 1.67em);
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
  font-size: clamp(1.67em, 1.67em + (2.14em - 1.67em) * (100vw - 1280px) / (1850px - 1280px), 2.14em);
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
}
@media (min-width: 1850px) {
  .section_overview .shell .core .container_overview .overview_left h2 {
    font-size: 2.14em;
  }
}
.section_overview .shell .core .container_overview .overview_left p {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.81em;
  color: #000000;
  font-size: clamp(1em, 1em + (1em - 1em) * (100vw - 393px) / (1280px - 393px), 1em);
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
  font-size: clamp(1.07em, 1.07em + (1.4em - 1.07em) * (100vw - 1280px) / (1850px - 1280px), 1.4em);
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
}
@media (min-width: 1850px) {
  .section_overview .shell .core .container_overview .overview_left p {
    font-size: 1.4em;
  }
}
.section_overview .shell .core .container_overview .overview_left h2 {
  display: flex;
  width: fit-content;
  border-top: 3px solid;
  padding-top: 20px;
  margin-top: -28px;
  max-width: 720px;
}
.section_overview .shell .core .container_overview .overview_left p {
  margin-bottom: 30px;
}
.section_overview .shell .core .container_overview .overview_left .container_bottom {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.section_overview .shell .core .container_overview .overview_left .container_bottom .live, .section_overview .shell .core .container_overview .overview_left .container_bottom .casestudy {
  text-align: center;
  font-weight: 600;
  font-size: 1em;
  line-height: 2.21em;
  text-transform: uppercase;
  color: #FFFFFF;
  box-sizing: border-box;
  height: 50px;
  background: #4386E4;
  border: 2px solid #295EA8;
  border-radius: 152.8px;
  cursor: pointer;
}
.section_overview .shell .core .container_overview .overview_left .container_bottom .live:hover, .section_overview .shell .core .container_overview .overview_left .container_bottom .casestudy:hover {
  background: rgb(30.6418604651, 106.6790697674, 213.3581395349);
  border: 2px solid rgb(30.995215311, 71.0622009569, 127.004784689);
}
.section_overview .shell .core .container_overview .overview_left .container_bottom .casestudy {
  flex: 1;
  display: inline-block;
  padding: 7px 20px 42px 20px;
  width: 50.93%;
  overflow: hidden;
}
.section_overview .shell .core .container_overview .overview_left .container_bottom .live {
  flex: 1;
  display: inline-block;
  padding: 7px 20px 10px;
  width: 47.22%;
  margin-right: 1.85%;
}
.section_overview .shell .core .container_overview .overview_left .container_bottom .credit_due {
  width: 100%;
  margin-top: 20px;
  font-weight: 500;
  font-size: 0.8em;
  line-height: 1.27em;
  color: #2A2D30;
}
.section_overview .shell .core .container_overview .overview_right {
  max-width: 1153px;
}
.section_overview .shell .core .container_overview .overview_right h3.text {
  font-weight: 700;
  font-size: 1.34em;
  line-height: 2.21em;
  color: #2B2B2B;
  margin-bottom: 14px;
}
.section_overview .shell .core .container_overview .overview_right ul.container_design_team {
  border-top: 2px solid black;
  margin-bottom: 30px;
}
.section_overview .shell .core .container_overview .overview_right ul.container_design_team li {
  border-bottom: 1px dashed black;
  padding: 19px 0;
  font-weight: 600;
  font-size: 0.94em;
  line-height: 163.4%;
  color: #000000;
}
.section_overview .shell .core .container_overview .overview_right ul.container_design_team li:last-child {
  border-bottom: 0;
}
.section_overview .shell .core .container_overview .overview_right .expand_team_button {
  padding: 20px;
  box-sizing: border-box;
  background: #E2E2E2;
  border: 1px solid #FFFFFF;
  border-radius: 7px;
  cursor: pointer;
  margin-top: -14px;
  transition: background-color 0.125s;
  cursor: pointer;
}
.section_overview .shell .core .container_overview .overview_right .expand_team_button:hover {
  background-color: #D5D5D5;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_overview .shell .core .container_overview {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .section_overview .shell .core .container_overview .overview_left {
    width: 60.54%;
  }
  .section_overview .shell .core .container_overview .overview_left .container_bottom {
    padding: 20px;
    box-sizing: border-box;
    background: #E2E2E2;
    border: 1px solid #FFFFFF;
    border-radius: 7px;
    cursor: pointer;
    cursor: default;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .section_overview .shell .core .container_overview .overview_left .container_bottom .live {
    flex: none;
    width: 30.05%;
    margin-right: 1.09%;
  }
  .section_overview .shell .core .container_overview .overview_left .container_bottom .casestudy {
    flex: none !important;
    width: 30.05% !important;
    margin-right: 3.28%;
  }
  .section_overview .shell .core .container_overview .overview_left .container_bottom .credit_due {
    display: flex;
    flex: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 3.28%;
    width: 37.71%;
    align-items: center;
  }
  .section_overview .shell .core .container_overview .overview_right {
    width: 32.95%;
  }
}
@media screen and (min-width: 1850px) {
  .section_overview .shell .core .container_overview {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .section_overview .shell .core .container_overview .overview_left {
    width: 69.46%;
  }
  .section_overview .shell .core .container_overview .overview_left .container_bottom {
    padding: 20px;
    box-sizing: border-box;
    background: #E2E2E2;
    border: 1px solid #FFFFFF;
    border-radius: 7px;
    cursor: pointer;
    cursor: default;
    flex-wrap: nowrap;
    flex-direction: row;
    margin-top: 70px;
  }
  .section_overview .shell .core .container_overview .overview_left .container_bottom .live {
    flex: none;
    width: 25.05%;
    margin-right: 1.09%;
  }
  .section_overview .shell .core .container_overview .overview_left .container_bottom .casestudy {
    flex: none !important;
    width: 25.05% !important;
    margin-right: 3.28%;
  }
  .section_overview .shell .core .container_overview .overview_left .container_bottom .credit_due {
    display: flex;
    flex: none;
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 3.28%;
    width: 37.71%;
    align-items: center;
  }
  .section_overview .shell .core .container_overview .overview_right {
    width: 24.04%;
  }
}

.password-protected {
  display: flex;
  justify-content: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.password-protected:before {
  content: "🔒";
  margin-right: 8px;
  font-size: 0.875rem;
}
.password-protected:hover {
  background-color: #333;
}

/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
#section_casestudy {
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
.section_context, .section_results {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #000000;
  width: 100%;
}
.section_context .shell, .section_results .shell {
  display: flex;
  justify-content: center;
  border-radius: 4px;
  padding: 0px 30px;
  background-color: #000000;
  width: 93.64%;
}
.section_context .shell .core, .section_results .shell .core {
  display: flex;
  justify-content: flex-start;
  padding: 28% 0px 20px;
}
.section_context .shell .core h2, .section_results .shell .core h2 {
  z-index: 10;
  align-self: flex-start;
  color: #FFFFFF;
  padding-left: 0;
  margin-top: 0;
  font-size: clamp(3em, 3em + (6em - 3em) * (100vw - 1280px) / (1850px - 1280px), 6em);
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
}
@media screen and (min-width: 1280px) {
  .section_context .shell .core h2, .section_results .shell .core h2 {
    width: fit-content;
    max-width: 100%;
    align-self: center;
    padding: 0;
  }
}
.section_context .shell .core p.overview, .section_results .shell .core p.overview {
  z-index: 10;
  font-weight: 400;
  align-self: flex-start;
  font-size: 1.14em;
  line-height: 1.77em;
  color: #FFFFFF;
  margin-bottom: 50px;
  max-width: 720px;
  font-size: clamp(1.3em, 1.3em + (1.8em - 1.3em) * (100vw - 1280px) / (1850px - 1280px), 1.8em);
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
}
@media screen and (min-width: 1280px) {
  .section_context .shell .core p.overview, .section_results .shell .core p.overview {
    width: 60%;
    max-width: 100%;
    align-self: center;
    text-align: center;
    margin-bottom: 150px;
  }
}
.section_context .shell .core .columns, .section_results .shell .core .columns {
  display: flex;
  z-index: 10;
  flex-direction: column;
  width: 100%;
  align-self: flex-start;
  max-width: 720px;
}
.section_context .shell .core .columns .gfx_registration, .section_results .shell .core .columns .gfx_registration {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
}
.section_context .shell .core .columns .column_left h4, .section_context .shell .core .columns .column_right h4, .section_results .shell .core .columns .column_left h4, .section_results .shell .core .columns .column_right h4 {
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.4em;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.section_context .shell .core .columns .column_left p, .section_context .shell .core .columns .column_right p, .section_results .shell .core .columns .column_left p, .section_results .shell .core .columns .column_right p {
  font-size: 1.14em;
  line-height: 1.77em;
  color: #FFFFFF;
}
.section_context .shell .core .columns .column_left h4, .section_context .shell .core .columns .column_right h4, .section_results .shell .core .columns .column_left h4, .section_results .shell .core .columns .column_right h4 {
  z-index: 10;
}
.section_context .shell .core .columns .column_left p, .section_context .shell .core .columns .column_right p, .section_results .shell .core .columns .column_left p, .section_results .shell .core .columns .column_right p {
  z-index: 10;
  margin-bottom: 13px;
}
.section_context .shell .core .columns .divider, .section_results .shell .core .columns .divider {
  order: 1;
  z-index: 50;
  width: 100%;
  height: fit-content;
  border: #295EA8 dashed 1px;
  margin-bottom: 50px;
}
.section_context .shell .core .columns .column_left, .section_results .shell .core .columns .column_left {
  order: 2;
  margin-bottom: 10px;
}
.section_context .shell .core .columns .column_right, .section_results .shell .core .columns .column_right {
  order: 3;
  margin-top: 20px;
}
@media screen and (min-width: 1280px) {
  .section_context .shell .core .columns, .section_results .shell .core .columns {
    flex-direction: row;
    background: rgba(14, 33, 46, 0.5);
    border-radius: 5px;
    backdrop-filter: blur(12px);
    padding: 10px 3.73% 10px;
    justify-content: space-around;
    max-width: 100%;
  }
  .section_context .shell .core .columns .column_left, .section_results .shell .core .columns .column_left {
    padding: 50px 0;
    order: 1;
    width: 42.36%;
  }
  .section_context .shell .core .columns .divider, .section_results .shell .core .columns .divider {
    order: 2;
    height: 100%;
    width: 1px;
    border-color: rgb(25.9, 61.05, 85.1);
  }
  .section_context .shell .core .columns .column_right, .section_results .shell .core .columns .column_right {
    padding: 50px 0;
    order: 3;
    margin-top: 0px;
    width: 42.36%;
  }
}
.section_context .shell .core .background_fade, .section_results .shell .core .background_fade {
  border-radius: 15px 15px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 6/3;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 102%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 102%);
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_context .shell .core, .section_results .shell .core {
    justify-content: center;
    width: 91.8%;
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1850px) {
  .section_context .shell .core, .section_results .shell .core {
    justify-content: center;
    width: 91.8%;
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_context .shell, .section_results .shell {
    width: 95.31%;
  }
}
@media screen and (min-width: 1850px) {
  .section_context .shell, .section_results .shell {
    width: 1660px;
  }
}

.section_results .shell .core .columns .divider {
  border-color: rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 1280px) {
  .section_results .shell .core .columns {
    background-color: rgba(25, 25, 25, 0.5);
  }
}

/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
.section_process {
  margin-bottom: -1px;
  background-color: #000000;
}
.section_process .shell {
  margin: 0 auto;
}
.section_process .shell .core {
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.section_process .shell .core h2.text {
  justify-content: flex-start;
  font-weight: 800;
  font-size: 2.41em;
  line-height: 1.14em;
  color: #FFFFFF;
  padding: 0 7.07%;
  margin-top: 60px;
  margin-bottom: 30px;
  justify-content: flex-start;
  align-items: flex-start;
  justify-content: flex-start;
  margin-right: auto;
}
@media screen and (min-width: 1280px) {
  .section_process .shell .core h2.text {
    padding: 0 0;
  }
}
.section_process .shell .core .container_process_techstack {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.section_process .shell .core .container_process_techstack .container_process {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
.section_process .shell .core .container_process_techstack .container_process .process_step {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 20px;
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step.even .counter {
    order: 2;
  }
  .section_process .shell .core .container_process_techstack .container_process .process_step.even .counter .step {
    margin-left: 20px;
  }
  .section_process .shell .core .container_process_techstack .container_process .process_step.even .counter .step .tens {
    margin-left: 3px;
  }
  .section_process .shell .core .container_process_techstack .container_process .process_step.even .details {
    order: 1;
  }
  .section_process .shell .core .container_process_techstack .container_process .process_step.even .details .container_imagetext .box_image {
    order: 2;
  }
  .section_process .shell .core .container_process_techstack .container_process .process_step.even .details .container_imagetext .text {
    order: 1;
  }
  .section_process .shell .core .container_process_techstack .container_process .process_step.even .details .container_imagetext .text .block_description {
    padding-left: 66px;
  }
}
.section_process .shell .core .container_process_techstack .container_process .process_step .counter {
  display: flex;
  height: 40px;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .counter .step {
  display: flex;
  margin-top: -26px;
  height: fit-content;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .counter .step .bar {
  display: inline-flex;
  margin-top: 35px;
  margin-right: 12px;
  height: fit-content;
  width: 18px;
  height: 4px;
  background: white;
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .counter .step .bar {
    width: 46px;
    height: 4px;
    margin-right: 0;
    margin-bottom: 12px;
  }
}
.section_process .shell .core .container_process_techstack .container_process .process_step .counter .step .tens, .section_process .shell .core .container_process_techstack .container_process .process_step .counter .step .ones {
  display: inline-flex;
  height: fit-content;
  font-weight: 900;
  font-size: 3.99em;
  color: #FFFFFF;
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .counter .step .tens, .section_process .shell .core .container_process_techstack .container_process .process_step .counter .step .ones {
    transform: scale(1.6);
  }
}
.section_process .shell .core .container_process_techstack .container_process .process_step .counter .step .ones {
  z-index: 50;
  color: transparent; /* Removes the fill color */
  -webkit-text-stroke: 2px white;
  text-stroke: 2px white;
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .counter .step .ones {
    align-self: center;
    margin-top: -16px;
    -webkit-text-stroke: 0px transparent;
    text-stroke: 0px transparent;
    color: white;
  }
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .counter .step {
    flex-direction: column;
  }
}
.section_process .shell .core .container_process_techstack .container_process .process_step .counter .outof .text_outof {
  display: none;
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .counter {
    width: 5.6%;
  }
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  background: #0D1116;
  border: 1px solid #0E212E;
  border-radius: 8px;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext {
  display: flex;
  flex-direction: column;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .box_image {
  display: flex;
  background-color: #0E212E;
  overflow: hidden;
  border-radius: 4px;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .box_image .source_image {
  width: 100%;
  aspect-ratio: 1.4137931/1;
  cursor: pointer;
  transition: transform 0.125s ease, opacity 0.3s ease;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .box_image .source_image:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
@media screen and (min-width: 1280px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .box_image {
    width: 710px;
  }
  .section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .box_image .source_image {
    width: 100%;
    aspect-ratio: 1.4137931/1;
  }
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .text {
  display: flex;
  flex-direction: column;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .text .caption_sm {
  margin: 8px auto 20px;
  width: 96.66%;
  padding: 11px 5% 16px;
  box-sizing: border-box;
  border: 1px solid #213D64;
  border-radius: 3px;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .text .caption_sm p {
  font-size: 0.87em;
  line-height: 19px;
  color: #FFFFFF;
}
@media screen and (min-width: 1280px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .text .caption_sm {
    display: none;
  }
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .text .block_description {
  padding: 0px 6.7% 43px;
  max-width: 730px;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .text .block_description h4 {
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.4em;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .text .block_description p {
  font-size: 1.14em;
  line-height: 1.77em;
  color: #FFFFFF;
}
@media screen and (min-width: 1280px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .text .block_description {
    padding: 6.7% 6.7% 43px;
  }
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .text .block_description {
    width: 100%;
  }
}
@media screen and (min-width: 1280px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext .text {
    width: 52.21%;
  }
}
@media screen and (min-width: 1280px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .details .container_imagetext {
    flex-direction: row;
    padding: 0.91% 0 0.91% 0.91%;
  }
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .caption_lg {
  display: none;
  padding: 11px 22px 16px;
  box-sizing: border-box;
  border: 1px solid #213D64;
  border-radius: 3px;
}
.section_process .shell .core .container_process_techstack .container_process .process_step .details .caption_lg p {
  font-size: 0.87em;
  line-height: 19px;
  color: #FFFFFF;
}
@media screen and (min-width: 1280px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .details .caption_lg {
    display: initial;
    border-left: transparent;
    border-bottom: transparent;
    border-right: transparent;
    text-align: center;
  }
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step .details {
    width: 95%;
  }
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_process .process_step {
    max-width: 1179px;
    flex-direction: row;
  }
}
.section_process .shell .core .container_process_techstack .container_process.even .counter .step .bar {
  background-color: red;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_process {
    width: 68.75%;
    margin: 0;
  }
}
.section_process .shell .core .container_process_techstack .container_techstack_right {
  display: flex;
  flex-direction: column;
  padding: 0 7.07%;
  width: 100%;
  margin-top: 40px;
}
.section_process .shell .core .container_process_techstack .container_techstack_right .techstack {
  font-weight: 800;
  font-size: 22px;
  line-height: 33px;
  color: #FFFFFF;
}
.section_process .shell .core .container_process_techstack .container_techstack_right ul {
  border-top: solid 1px white;
  border-bottom: solid 1px white;
  margin: 18px 0 20px;
}
.section_process .shell .core .container_process_techstack .container_techstack_right ul li {
  padding: 16px 0 16px;
  color: white;
  border-bottom: 1px dashed white;
}
.section_process .shell .core .container_process_techstack .container_techstack_right ul li:last-child {
  border-bottom: 0;
}
.section_process .shell .core .container_process_techstack .container_techstack_right ul li span.bold {
  display: initial;
}
.section_process .shell .core .container_process_techstack .container_techstack_right ul li span.description {
  display: initial;
}
.section_process .shell .core .container_process_techstack .container_techstack_right ul li span.tool_name {
  font-weight: 700;
  margin-right: 10px;
}
.section_process .shell .core .container_process_techstack .container_techstack_right ul li span.tool_description {
  font-weight: 400;
  opacity: 0.8;
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_techstack_right {
    width: 27.59%;
    padding: 0;
  }
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack .container_techstack_right {
    width: 27.59%;
    padding: 0;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_process .shell .core .container_process_techstack {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1850px) {
  .section_process .shell .core .container_process_techstack {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1280px) {
  .section_process .shell .core {
    flex-direction: column;
  }
}

/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
.section_product {
  display: flex;
  justify-content: center;
  background-color: #000000;
}
.section_product .shell {
  width: 93.64%;
  padding: 0;
}
.section_product .shell .core {
  padding: 0;
}
.section_product .shell .core h2 {
  justify-content: flex-start;
  font-weight: 800;
  font-size: 2.41em;
  line-height: 1.14em;
  color: #FFFFFF;
  padding: 0 7.07%;
  margin-top: 60px;
  margin-bottom: 30px;
  justify-content: flex-start;
  margin-right: auto;
}
@media screen and (min-width: 1280px) {
  .section_product .shell .core h2 {
    padding: 0 0;
  }
}
.section_product .shell .core .card_product {
  display: flex;
  flex-direction: column;
}
.section_product .shell .core .card_product .container_photo_product {
  border-radius: 4px;
}
.section_product .shell .core .card_product .container_video_product_ui, .section_product .shell .core .card_product .container_photo_product {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #0E212E;
  overflow: hidden;
  border-radius: 4px;
}
.section_product .shell .core .card_product .container_video_product_ui iframe, .section_product .shell .core .card_product .container_photo_product iframe {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.section_product .shell .core .card_product .container_video_product_ui .button_ui_play, .section_product .shell .core .card_product .container_photo_product .button_ui_play {
  display: none;
  position: absolute;
  background-color: black;
  width: 74px;
  height: 74px;
  border-radius: 74px;
}
.section_product .shell .core .card_product .container_video_product_ui .button_ui_play svg, .section_product .shell .core .card_product .container_photo_product .button_ui_play svg {
  display: initial;
}
@media screen and (min-width: 1280px) {
  .section_product .shell .core .card_product .container_video_product_ui, .section_product .shell .core .card_product .container_photo_product {
    width: 64.28%;
    margin-right: 3.01%;
  }
}
.section_product .shell .core .card_product .container_photo_product {
  width: 100%;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.125s ease, opacity 0.3s ease;
}
.section_product .shell .core .card_product .container_photo_product:hover {
  transform: scale(1.02);
  opacity: 0.9;
}
.section_product .shell .core .card_product .info {
  padding: 30px 30px 43px;
}
.section_product .shell .core .card_product .info h4 {
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.4em;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.section_product .shell .core .card_product .info p {
  font-size: 1.14em;
  line-height: 1.77em;
  color: #FFFFFF;
}
.section_product .shell .core .card_product .info .gfx_registration {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 1280px) {
  .section_product .shell .core .card_product .info {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 1280px) {
  .section_product .shell .core .card_product {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
  }
  .section_product .shell .core .card_product .container_photo_product {
    width: 100%;
    aspect-ratio: 1058/594;
    margin-right: 4%;
  }
  .section_product .shell .core .card_product .info {
    width: 30.72%;
    padding: 0;
  }
}
@media screen and (min-width: 1850px) {
  .section_product .shell .core .card_product {
    margin-bottom: 100px;
  }
  .section_product .shell .core .card_product .container_photo_product {
    margin-right: 3%;
    justify-content: space-between;
  }
}

/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
.section_appreciation {
  background-color: black;
  height: 180px;
}
.section_appreciation .shell .core h4 {
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1.4em;
  margin-bottom: 16px;
  color: #FFFFFF;
}
.section_appreciation .shell .core .container_thankyou {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.section_appreciation .shell .core .container_thankyou:hover {
  transform: scale(1.05);
}
.section_appreciation .shell .core .container_thankyou p {
  text-align: center;
  box-sizing: border-box;
  background: #0D1116;
  border: 1px solid #0E212E;
  border-radius: 8px;
  overflow: hidden;
  padding: 20px;
  width: 100%;
  color: white;
}
.section_appreciation .shell .core .container_thankyou p .likecount {
  font-weight: bold;
  color: white;
}

.thank_you_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9000; /* Lower than password modal (10000) but higher than regular content */
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.thank_you_modal.fade-out {
  opacity: 0;
  visibility: hidden;
}
.thank_you_modal .modal_content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.thank_you_modal .modal_content h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}
.thank_you_modal .modal_content p {
  margin-bottom: 20px;
  line-height: 1.5;
}
.thank_you_modal .modal_content .share_linkedin {
  background-color: #0077B5;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}
.thank_you_modal .modal_content .share_linkedin:hover {
  background-color: #005e93;
  transform: translateY(-1px);
}
.thank_you_modal .modal_content .share_linkedin:active {
  transform: translateY(1px);
}
.thank_you_modal.fade-out .modal_content {
  transform: translateY(-20px);
}

.section_alligator_body {
  display: flex;
}
.section_alligator_body .shell {
  display: flex;
}
.section_alligator_body .shell .core {
  display: flex;
}
.section_alligator_body .shell .core ul {
  display: flex;
  flex-wrap: wrap;
}
.section_alligator_body .shell .core ul li {
  width: 300px;
  aspect-ratio: 6/4;
  position: relative;
  background-color: #0E212E;
}
.section_alligator_body .shell .core ul li iframe {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.section_alligator_body .shell .core ul li .button_ui_play {
  position: absolute;
  background-color: black;
  width: 74px;
  height: 74px;
  border-radius: 74px;
}
.section_alligator_body .shell .core ul li .button_ui_play svg {
  display: initial;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 700px;
  height: 350px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.digit-container {
  display: flex;
  gap: 20px;
  position: relative;
}

.digit-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.digit {
  width: 80px;
  height: 100px;
  border: 2px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  border-radius: 5px;
}

.digit.active {
  border-color: #007bff;
}

.submit-btn {
  width: 80px;
  height: 100px;
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border: 2px solid #000;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn.success {
  background-color: #28a745;
  content: "✔";
}

.submit-btn.success::after {
  content: "✔";
  font-size: 24px;
}

.controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: absolute;
  top: 130px;
  left: 151px;
  transition: left 0.3s ease;
}

.control-btn {
  width: 80px;
  height: 40px;
  font-size: 20px;
  border: none;
  background-color: #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.control-btn:hover {
  background-color: #bbb;
}

.controls .plus {
  position: absolute;
  top: -50px;
}

.controls .minus {
  position: absolute;
  top: 110px;
}

.controls.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cta-container {
  text-align: center;
  margin-top: 20px;
}

.cta {
  padding: 25px 35px;
  border-radius: 50px;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 500;
  border: none;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #0056b3;
}

.case-study-text {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.case-study-text.active {
  opacity: 1;
  visibility: visible;
}

/* Password Modal Styles */
.password-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000; /* Higher z-index */
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.password-modal-overlay.active {
  opacity: 1;
}

.password-modal {
  position: fixed; /* Changed from absolute to fixed */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  background-color: white;
  border-radius: 8px;
  max-width: 430px;
  width: 90%;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10001; /* Higher z-index */
}
.password-modal.active {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.password-modal .password-modal-header {
  margin-bottom: 15px;
}
.password-modal .password-modal-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.password-modal .password-modal-body p {
  margin-bottom: 15px;
  line-height: 1.5;
}
.password-modal .password-modal-body .password-info {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}
.password-modal .password-modal-body .password-input-container {
  margin-bottom: 15px;
}
.password-modal .password-modal-body .password-input-container input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}
.password-modal .password-modal-body .password-input-container input:focus {
  outline: none;
  border-color: #295EA8; /* Maldives color */
}
.password-modal .password-modal-body .password-error {
  color: #dc3545;
  margin: 10px 0;
  font-weight: bold;
  display: none;
}
.password-modal .password-modal-body .password-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
  gap: 11px;
  padding: 0;
}
.password-modal .password-modal-body .password-buttons button, .password-modal .password-modal-body .password-buttons a {
  margin: 0;
  flex: 1;
  height: auto;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.2s, transform 0.1s;
  white-space: nowrap;
}
.password-modal .password-modal-body .password-buttons .password-cancel {
  order: 1;
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}
.password-modal .password-modal-body .password-buttons .password-cancel:hover {
  background-color: #e9e9e9;
}
.password-modal .password-modal-body .password-buttons .password-cancel:active {
  transform: translateY(1px);
}
.password-modal .password-modal-body .password-buttons .password-acquire {
  order: 2;
  background-color: white;
  color: #333;
  border: 1px solid #CCCCCC;
  text-decoration: none;
  text-align: center;
}
.password-modal .password-modal-body .password-buttons .password-acquire:hover {
  background-color: #f5f5f5;
  transform: translateY(-1px);
}
.password-modal .password-modal-body .password-buttons .password-acquire:active {
  transform: translateY(1px);
}
.password-modal .password-modal-body .password-buttons .password-submit {
  order: 3;
  background-color: #000;
  color: white;
  border: none;
}
.password-modal .password-modal-body .password-buttons .password-submit:hover {
  background-color: #333;
}
.password-modal .password-modal-body .password-buttons .password-submit:active {
  transform: translateY(1px);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .password-modal {
    padding: 20px;
  }
  .password-modal .password-modal-body .password-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    /* Reorder buttons for mobile */
  }
  .password-modal .password-modal-body .password-buttons button, .password-modal .password-modal-body .password-buttons a {
    padding: 15px;
    text-align: center;
  }
  .password-modal .password-modal-body .password-buttons .password-submit {
    order: 1; /* Submit first */
  }
  .password-modal .password-modal-body .password-buttons .password-acquire {
    order: 2; /* Acquire second (shown only in error state) */
  }
  .password-modal .password-modal-body .password-buttons .password-cancel {
    order: 3; /* Cancel last */
  }
}
.back-to-home {
  position: fixed;
  top: 3vw;
  left: 3vw;
  width: 65px;
  height: 65px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  z-index: 100;
  transition: transform 0.125s ease, background-color 0.125s ease, box-shadow 0.125s ease;
}
.back-to-home:hover {
  transform: scale(1.05);
}
.back-to-home svg path {
  stroke: #ffffff;
  transition: stroke 0.125s ease;
}
@media screen and (min-width: 1280px) {
  .back-to-home {
    top: 45px;
    left: 45px;
    width: 65px;
    height: 65px;
  }
}

/* In section_top3 and section_overview */
.section_top3 ~ .back-to-home,
.section_overview ~ .back-to-home {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section_top3 ~ .back-to-home svg path,
.section_overview ~ .back-to-home svg path {
  stroke: #0D1116; /* $bali color */
}

/* In section_casestudy */
#section_casestudy ~ .back-to-home {
  background-color: transparent;
  box-shadow: none;
}

#section_casestudy ~ .back-to-home svg path {
  stroke: #ffffff;
}

.core_inside {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 100%;
}
.core_inside p.type-tag {
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.core_inside p.type-tag:hover {
  color: #295EA8;
}

.type-tag-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.type-tag-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.type-tag-modal {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 600px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.type-tag-modal.active {
  transform: translateY(0);
  opacity: 1;
}
.type-tag-modal .type-tag-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px 10px 25px;
  border-bottom: 1px solid #eee;
}
.type-tag-modal .type-tag-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #161A1D;
}
.type-tag-modal .type-tag-header .close-button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #777;
  transition: color 0.2s ease;
}
.type-tag-modal .type-tag-header .close-button:hover {
  color: #000;
}
.type-tag-modal .type-tag-content {
  padding: 16px 25px 45px 25px;
}
.type-tag-modal .type-tag-content p {
  margin: 0 0 15px;
  line-height: 1.6;
  color: #333;
  font-size: 16px;
}
.type-tag-modal .type-tag-content p:last-child {
  margin-bottom: 0;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 8000; /* Lower than password modal */
  display: none;
  justify-content: center;
  align-items: center;
}
.video-overlay .overlay-content {
  width: 90%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
}
.video-overlay .overlay-content .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}
.video-overlay .overlay-content .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay .overlay-content .description {
  color: white;
}
.video-overlay .overlay-content .description h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: white;
}
.video-overlay .overlay-content .description p {
  line-height: 1.5;
  font-size: 16px;
  color: #eee;
}
@media screen and (min-width: 1280px) {
  .video-overlay .overlay-content .description {
    padding: 50px;
  }
}

/* 
* IMPORTANT: Pipe separators for type-tags are now added via PHP, not CSS. 
* The following rule ensures no CSS-generated separators appear, avoiding duplicates.
*/
.core_inside p.type-tag::after,
.core_inside p.type-tag:after {
  content: none !important;
}

/* Thank You Modal Styles */
.thank_you_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9000; /* Lower than password modal (10000) but higher than video overlay */
  opacity: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.thank_you_modal.fade-out {
  opacity: 0;
  visibility: hidden;
}
.thank_you_modal .modal_content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.thank_you_modal .modal_content h3 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: 600;
}
.thank_you_modal .modal_content p {
  margin-bottom: 20px;
  line-height: 1.5;
}
.thank_you_modal .modal_content .share_linkedin {
  background-color: #0077B5;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
}
.thank_you_modal .modal_content .share_linkedin:hover {
  background-color: #005e93;
  transform: translateY(-1px);
}
.thank_you_modal .modal_content .share_linkedin:active {
  transform: translateY(1px);
}
.thank_you_modal.fade-out .modal_content {
  transform: translateY(-20px);
}

/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
/*–––––––––––––––––––––––––––––————|     |—————————————————————————————————*/
.section_next_project {
  background-color: #161A1D;
  padding: 90px 0 140px;
  position: relative;
}
.section_next_project .shell .core h2 {
  font-size: 2.41em;
  line-height: 1.25em;
  color: #FFFFFF;
  margin-bottom: 35px;
}
@media screen and (min-width: 1280px) {
  .section_next_project .shell .core h2 {
    margin-bottom: 56px;
  }
}
.section_next_project .shell .core .col_left {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.section_next_project .shell .core .col_left h4 {
  font-weight: 500;
  font-size: 0.74em;
  line-height: 0.87em;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 25px;
}
.section_next_project .shell .core .col_left ul {
  width: 100%;
  border-top: 1px dashed rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.section_next_project .shell .core .col_left ul a {
  text-decoration: none;
}
.section_next_project .shell .core .col_left ul a:last-child li {
  border-bottom: none;
}
.section_next_project .shell .core .col_left ul a li {
  display: flex;
  align-items: center;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  padding: 18px 0px;
  padding-right: 3%;
  min-height: 90px;
  transition: all 0.125s ease;
}
.section_next_project .shell .core .col_left ul a li svg.svg_arrow {
  width: 0px;
  height: 14px;
  opacity: 0;
  transition: width 0.125s ease, opacity 0.125s ease;
}
@media screen and (min-width: 1850px) {
  .section_next_project .shell .core .col_left ul a li svg.svg_arrow path {
    fill: white;
  }
}
.section_next_project .shell .core .col_left ul a li .image {
  width: 90px;
  height: auto;
  min-height: 65px;
  margin-right: 5%;
  background-color: black;
  border-radius: 3px;
  aspect-ratio: 3/2;
  background-size: cover;
  background-position: center;
  align-self: stretch;
  flex-shrink: 0;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.3s ease, transform 0.3s ease;
}
@media screen and (min-width: 1280px) {
  .section_next_project .shell .core .col_left ul a li .image {
    width: 96px;
    height: 63px;
    margin-right: 20px;
  }
}
.section_next_project .shell .core .col_left ul a li .container_text {
  display: flex;
  flex-direction: column;
}
.section_next_project .shell .core .col_left ul a li .container_text h3.title {
  text-decoration: none !important;
  font-weight: 700;
  line-height: 18px;
  color: white;
  margin-bottom: 4px;
  text-transform: capitalize;
  font-size: clamp(0.94em, 0.94em + (1.2em - 0.94em) * (100vw - 393px) / (1280px - 393px), 1.2em);
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
  font-size: clamp(1.07em, 1.07em + (1.07em - 1.07em) * (100vw - 1280px) / (1850px - 1280px), 1.07em);
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
  /*

    Usage Examples:

    Simple case: single font size with min screen width
    .element-simple {
      @include fluid-type(16px, 320px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), 320px);
    }

    Fluid case: min/max font sizes with min/max screen widths
    .element-fluid {
      @include fluid-type(16px, 24px, 320px, 1920px);
      // Or with figma-size
      // @include fluid-type(figma-size(16px), figma-size(24px), 320px, 1920px);
  }
  */
}
@media (min-width: 1850px) {
  .section_next_project .shell .core .col_left ul a li .container_text h3.title {
    font-size: 1.47em;
  }
}
.section_next_project .shell .core .col_left ul a li .container_text p {
  text-decoration: none;
  text-transform: capitalize;
  line-height: 18px;
  font-weight: 300;
  color: #CCCCCC;
}
.section_next_project .shell .core .col_left ul a li .button {
  transition: all ease-in-out 0.125s;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 100%;
  margin-left: auto;
  align-self: center;
}
.section_next_project .shell .core .col_left ul a li .button p {
  display: none;
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  color: #CCCCCC;
  margin-right: 30px;
}
@media screen and (min-width: 1280px) {
  .section_next_project .shell .core .col_left ul a li .button p {
    order: 1;
    display: flex;
    margin-right: 11px;
  }
}
@media screen and (min-width: 1850px) {
  .section_next_project .shell .core .col_left ul a li .button p {
    margin-right: 23px;
  }
}
.section_next_project .shell .core .col_left ul a li .button svg {
  top: 50%;
  left: 0;
  width: 22px;
  height: 12px;
  position: absolute;
  transform: translateY(-50%);
}
.section_next_project .shell .core .col_left ul a li .button svg path {
  fill: #CCCCCC;
}
@media screen and (min-width: 1280px) {
  .section_next_project .shell .core .col_left ul a li .button svg {
    order: 2;
    position: static;
    transform: none;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_next_project .shell .core .col_left ul a li .button {
    height: 50px;
    justify-content: flex-end;
    width: 106px;
    display: flex;
  }
}
@media screen and (min-width: 1850px) {
  .section_next_project .shell .core .col_left ul a li .button {
    border: 2px solid #295EA8;
    width: 150px;
    height: 50px;
    border-radius: 50px;
    padding: 0px 18px 0px 36px;
  }
}
@media screen and (min-width: 1850px) {
  .section_next_project .shell .core .col_left ul a li {
    padding-right: 0;
  }
  .section_next_project .shell .core .col_left ul a li:hover svg.svg_arrow {
    display: flex;
    width: 20px;
    opacity: 1;
  }
  .section_next_project .shell .core .col_left ul a li:hover .image {
    margin-left: 12px;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
  }
  .section_next_project .shell .core .col_left ul a li:hover .button {
    border-color: #ffffff;
  }
  .section_next_project .shell .core .col_left ul a li:hover .button p {
    color: white;
  }
  .section_next_project .shell .core .col_left ul a li:hover .button svg path {
    fill: white;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1850px) {
  .section_next_project .shell .core .col_left {
    width: 75%;
  }
}
@media screen and (min-width: 1850px) {
  .section_next_project .shell .core .col_left {
    width: 70%;
  }
}

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