@charset "UTF-8";
@media screen and (min-width: 769px) {
  .view--pc {
    display: block !important;
  }
  .view--sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .view--pc {
    display: none !important;
  }
  .view--sp {
    display: block !important;
  }
}
.view--sm {
  display: none;
}
@media screen and (max-width: 375px) {
  .view--sm {
    display: block;
  }
}

.view--smb {
  display: none;
}
@media screen and (max-width: 430px) {
  .view--smb {
    display: block;
  }
}

/* Popup Card */
.popup-card {
  max-width: 475px;
  width: 100%;
  height: 615px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  position: fixed;
  z-index: 999;
  right: 20px;
  /* start at bottom-right */
  bottom: 100px;
  padding: 12px;
  /* Start small and hidden */
  transform: scale(0.3);
  transform-origin: bottom right;
  /* scale from bottom-right corner */
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 768px) {
  .popup-card {
    max-width: 360px;
    height: 520px;
    right: 16px;
    bottom: 80px;
    padding: 10px;
  }
}
@media screen and (max-width: 430px) {
  .popup-card {
    max-width: 300px;
    height: 460px;
    right: 12px;
    bottom: 120px;
    padding: 8px;
    border-radius: 18px;
  }
}
.popup-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  /* adjust shadow height */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.91), transparent);
  pointer-events: none;
  /* make sure it doesn’t block clicks */
  z-index: 2;
  /* above video but below buttons */
}
.popup-card .popup-content {
  position: relative;
  z-index: 3;
  max-width: 337px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: auto;
}
.popup-card .popup-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 8%;
     object-position: center 8%;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .popup-card .popup-bg-video {
    -o-object-position: center 5%;
       object-position: center 5%;
  }
}
.popup-card .popup-buttons {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.popup-card .popup-buttons.show {
  opacity: 1;
  transform: translateY(0);
}
.popup-card .popup-buttons button {
  outline: none;
  font-size: 1.6rem;
  background-color: #E5E9F7;
  border-radius: 31px;
  border: none;
  padding: 8px 0;
  color: #0C0C14;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.popup-card .popup-buttons button:hover {
  color: #E5E9F7;
  background-color: #0C0C14;
}
.popup-card .popup-video {
  width: 100%;
  height: auto;
  display: none;
  z-index: 2;
  position: relative;
}

/* Active state: popup grows from bottom-right */
.popup-card.show {
  transform: scale(1);
  opacity: 1;
}

/* Popup toggle button */
.popup-toggle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  overflow: hidden;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .popup-toggle {
    width: 72px;
    height: 72px;
    bottom: 60px;
    right: 16px;
  }
}
@media screen and (max-width: 430px) {
  .popup-toggle {
    width: 58px;
    height: 58px;
    right: 12px;
  }
}
.popup-toggle .toggle-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #E5E9F7;
  /* New border image overlay */
}
.popup-toggle .toggle-img-wrapper .chatbot,
.popup-toggle .toggle-img-wrapper .robot-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
  transition: transform 0.5s ease, opacity 0.5s ease;
  background-color: #E5E9F7;
}
.popup-toggle .toggle-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: url("../img/icons/border-image.png") no-repeat center/cover;
  z-index: 99999;
  pointer-events: none;
  /* clicks go through */
}
.popup-toggle.shrink {
  width: 56px;
  height: 56px;
  transform: scale(0.85);
}

/* Image wrapper - keep as-is but ensure images are absolute inside */
.toggle-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

/* Base image styles + smooth transitions */
.toggle-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transform: translateY(0);
  opacity: 1;
  transition: transform 360ms cubic-bezier(0.2, 0.9, 0.22, 1), opacity 240ms linear;
  will-change: transform, opacity;
  pointer-events: none;
  /* images don't capture clicks */
}

/* Initial states: show chatbot, arrow is slightly below and hidden */
.chatbot {
  transform: translateY(0);
  opacity: 1;
  z-index: 3;
}

.robot-arrow {
  transform: translateY(20px);
  /* starts slightly below */
  opacity: 0;
  z-index: 1;
}

/* OPEN state: chatbot slides down & fades out, arrow slides up & fades in */
.popup-toggle.toggle-open .chatbot {
  transform: translateY(24px);
  /* slide out/down */
  opacity: 0;
  transition-delay: 0ms;
  z-index: 1;
}

.popup-toggle.toggle-open .robot-arrow {
  transform: translateY(0);
  /* slide into place */
  opacity: 1;
  transition-delay: 80ms;
  /* small stagger for a smoother effect */
  z-index: 4;
  /* bring incoming image above while animating */
}

/* CLOSE state: reverse the animation with a tiny stagger */
.popup-toggle.toggle-close .chatbot {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 80ms;
  /* wait a bit so arrow starts leaving first */
  z-index: 3;
}

.popup-toggle.toggle-close .robot-arrow {
  transform: translateY(20px);
  opacity: 0;
  transition-delay: 0ms;
  z-index: 1;
}

/* Optional: slightly shrink container while animating for a tactile feel */
.popup-toggle.toggle-open {
  transition: transform 240ms cubic-bezier(0.2, 0.9, 0.22, 1), width 240ms ease, height 240ms ease;
}

/* _reset.scss */
/* Modern CSS Reset (based on Andy Bell + Normalize mix) */
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

a {
  outline: none;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  cursor: pointer;
}

/* 2. Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
}

/* 3. Allow percentage-based heights */
html, body {
  height: 100%;
  font-size: 62.5%;
}

/* 4. Improve text rendering and prevent font-size adjustments after orientation change */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* 5. Set base font styles */
body {
  line-height: 1.2;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #111;
}

/* 6. Remove default list styles */
ul, ol {
  list-style: none;
}

/* 7. Anchor defaults */
a {
  outline: none;
  text-decoration: none;
  color: inherit;
}

/* 8. Images and media responsive */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 9. Form elements inherit font styles */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

/* 10. Remove animations/transitions for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* 11. Smooth focus outline */
.home .border-gradient {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(#F5FBFF, #F5FBFF), linear-gradient(130deg, #223e92 22%, #d02129 68%, #fecd08 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.home .hero {
  position: relative;
  background-image: url("../img/hero-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .home .hero {
    background-image: url("../img/hero-img-sp.png");
  }
}
.home .hero spline-viewer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .home .hero spline-viewer {
    display: none;
  }
}
.home .hero .hide {
  display: none;
}
.home .hero__text {
  margin: 50px auto;
  max-width: 500px;
}
.home .hero__text p {
  text-align: center;
  display: flex;
  justify-content: center;
}
.home .hero__text p:nth-child(1) span:nth-child(2) {
  margin-right: 10px;
}
.home .hero__text p:nth-child(1) span:nth-child(10) {
  margin-right: 10px;
}
.home .hero__text p:nth-child(2) span:nth-child(6) {
  margin-right: 10px;
}
.home .hero__text p span {
  font-size: 7.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  display: block;
  text-align: center;
  animation: hero__text-ani 0.8s ease forwards;
  opacity: 0;
  transform: translate(70px, 40px);
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .home .hero__text p span {
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .home .hero__text p span {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 430px) {
  .home .hero__text p span {
    font-size: 3.2rem;
  }
}
.home .hero__text p span:nth-child(1) {
  animation-delay: 0.05s;
}
.home .hero__text p span:nth-child(2) {
  animation-delay: 0.1s;
}
.home .hero__text p span:nth-child(3) {
  animation-delay: 0.15s;
}
.home .hero__text p span:nth-child(4) {
  animation-delay: 0.2s;
}
.home .hero__text p span:nth-child(5) {
  animation-delay: 0.25s;
}
.home .hero__text p span:nth-child(6) {
  animation-delay: 0.3s;
}
.home .hero__text p span:nth-child(7) {
  animation-delay: 0.35s;
}
.home .hero__text p span:nth-child(8) {
  animation-delay: 0.4s;
}
.home .hero__text p span:nth-child(9) {
  animation-delay: 0.5s;
}
.home .hero__text p span:nth-child(10) {
  animation-delay: 0.55s;
}
.home .hero__text p span:nth-child(11) {
  animation-delay: 0.6s;
}
.home .hero__text p span:nth-child(12) {
  animation-delay: 0.65s;
}
.home .hero__text p span:nth-child(13) {
  animation-delay: 0.7s;
}
.home .hero__text p span:nth-child(14) {
  animation-delay: 0.75s;
}
.home .hero__text p span:nth-child(15) {
  animation-delay: 0.8s;
}
.home .hero__text p.text-jp span {
  font-size: 2.4rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home .hero__text p.text-jp span {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .home .hero__text p.text-jp span {
    font-size: 1.4rem;
  }
}
@keyframes hero__text-ani {
  0% {
    opacity: 0;
    transform: translate(70px, 40px);
  }
  25% {
    transform: translate(50px, 0px);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0);
  }
}
.home .hero__text {
  position: relative;
  color: #E5E9F7;
}
.home .hero__text .title {
  font-size: 7.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .home .hero__text .title {
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .home .hero__text .title {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 430px) {
  .home .hero__text .title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .home .hero__text .title span {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 430px) {
  .home .hero__text .title span {
    font-size: 3.6rem;
  }
}
.home .hero__text .text {
  font-size: 2.4rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .home .hero__text .text {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .home .hero__text .text {
    font-size: 1.4rem;
  }
}
.home .intro {
  margin: 100px 0 100px 0;
}
@media screen and (max-width: 768px) {
  .home .intro {
    margin: 156px 0 250px 0;
  }
}
@media screen and (max-width: 430px) {
  .home .intro {
    margin: 78px 0 131px 0;
  }
}
.home .intro-container {
  width: 100%;
  margin: auto;
  position: relative;
}
.home .intro__header {
  text-align: center;
  margin-bottom: 112px;
}
.home .intro__title {
  font-size: 6.4rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .home .intro__title {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 430px) {
  .home .intro__title {
    font-size: 2.4rem;
  }
}
.home .intro__title-sub {
  font-size: 3.2rem;
  margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
  .home .intro__title-sub {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 430px) {
  .home .intro__title-sub {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}
.home .intro__title-sub .intro-year {
  font-weight: bold;
}
.home .intro__title .gradient-text {
  padding: 3px;
}
.home .intro__title .gradient-text::after {
  padding: 3px;
  background: linear-gradient(172deg, #223E92 22%, #D02129 68%, #FECD08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home .intro__text {
  font-size: clamp(1.2rem, 4vw, 3.2rem);
  text-align: center;
  font-weight: 600;
  margin-top: -20px;
}
@media screen and (max-width: 768px) {
  .home .intro__text {
    font-size: clamp(1.2rem, 3.4vw, 3rem);
  }
}
.home .intro__text .gradient-text {
  padding: 0;
}
.home .intro__text .gradient-text::after {
  background: linear-gradient(177deg, #223e92 23%, #d02129 86%, #fecd08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home .intro .card {
  max-width: 1447px;
  margin: auto;
  position: relative;
  height: 670px;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .home .intro .card::before {
    content: "";
    background: url(../img/test/shadow-left.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 380px;
    height: 946px;
    width: 100%;
    left: -4%;
    top: 3%;
    position: absolute;
    z-index: 10;
  }
}
@media screen and (min-width: 769px) {
  .home .intro .card::after {
    content: "";
    background: url(../img/test/shadow-right.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 380px;
    height: 946px;
    width: 100%;
    position: absolute;
    z-index: 10;
    right: -4%;
    top: 3%;
  }
}
.home .intro .card-wrap {
  position: relative;
  max-width: 1447px;
  height: 1407px;
  overflow: hidden;
  margin: auto;
  padding-top: 185px;
}
.home .intro .card-list {
  position: absolute;
  max-width: 1447px;
  width: 100%;
  height: 1447px;
  margin: auto;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .home .intro .card-list {
    left: -15%;
  }
}
@media screen and (max-width: 768px) {
  .home .intro .card-list {
    left: -22%;
  }
}
@media screen and (max-width: 480px) {
  .home .intro .card-list {
    left: -28%;
  }
}
@media screen and (max-width: 430px) {
  .home .intro .card-list {
    left: -31%;
  }
}
@media screen and (max-width: 375px) {
  .home .intro .card-list {
    left: -33%;
  }
}
.home .intro .card-item {
  position: absolute;
  max-width: 1447px;
  width: 100%;
  border-radius: 50%;
  height: 1447px;
  left: 4%;
  transform: rotate(-10deg);
}
@media screen and (max-width: 480px) {
  .home .intro .card-item {
    left: 0%;
  }
}
.home .intro .card-item::after {
  max-width: 280px;
  width: 100%;
  height: 290px;
  position: absolute;
  opacity: 0;
}
@media screen and (max-width: 480px) {
  .home .intro .card-item::after {
    max-width: 232px;
    height: 240px;
  }
}
.home .intro .card-item:nth-child(1) {
  z-index: 1;
  left: 3.5%;
  top: 0.5%;
}
.home .intro .card-item:nth-child(1)::after {
  content: "";
  background-image: url(../img/test/card-01.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-40deg);
}
.home .intro .card-item:nth-child(1).shuffle {
  animation: shuffle-01 1s forwards;
}
.home .intro .card-item:nth-child(1).shuffle:after {
  opacity: 1;
}
.home .intro .card-item:nth-child(2) {
  top: 2%;
  z-index: 2;
}
.home .intro .card-item:nth-child(2).shuffle {
  animation: shuffle-02 1s forwards;
}
.home .intro .card-item:nth-child(2).shuffle:after {
  opacity: 1;
}
.home .intro .card-item:nth-child(2)::after {
  content: "";
  background-image: url(../img/test/card-02.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-40deg);
}
@media screen and (max-width: 480px) {
  .home .intro .card-item:nth-child(2) {
    left: 5%;
  }
}
.home .intro .card-item:nth-child(3) {
  top: 3.5%;
  z-index: 3;
}
.home .intro .card-item:nth-child(3).shuffle {
  animation: shuffle-03 1s forwards;
}
.home .intro .card-item:nth-child(3).shuffle:after {
  opacity: 1;
}
.home .intro .card-item:nth-child(3)::after {
  content: "";
  background-image: url(../img/test/card-03.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-40deg);
}
.home .intro .card-item:nth-child(4) {
  top: 5%;
  z-index: 4;
}
.home .intro .card-item:nth-child(4).shuffle {
  animation: shuffle-04 1s forwards;
}
.home .intro .card-item:nth-child(4).shuffle:after {
  opacity: 1;
}
.home .intro .card-item:nth-child(4)::after {
  content: "";
  background-image: url(../img/test/card-04.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-40deg);
}
@media screen and (max-width: 480px) {
  .home .intro .card-item:nth-child(4) {
    left: -5%;
    top: 4%;
  }
}
.home .intro .card-item:nth-child(5) {
  top: 6.5%;
  left: 3%;
  z-index: 5;
}
.home .intro .card-item:nth-child(5).shuffle {
  animation: shuffle-05 1s forwards;
}
.home .intro .card-item:nth-child(5).shuffle:after {
  opacity: 1;
}
.home .intro .card-item:nth-child(5)::after {
  content: "";
  background-image: url(../img/test/card-05.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(-40deg);
}
@keyframes shuffle-01 {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes shuffle-02 {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(20deg);
  }
}
@keyframes shuffle-03 {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(40deg);
  }
}
@keyframes shuffle-04 {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(60deg);
  }
}
@keyframes shuffle-05 {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(80deg);
  }
}
.home .intro img {
  width: auto;
}
.home .intro__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  margin: auto;
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .home .intro__btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 430px) {
  .home .intro__btn {
    margin-top: 24px;
  }
}
.home .intro__btn a {
  border: 3px solid transparent;
  text-align: left;
  width: 100%;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  padding: 9px 25px 9px 30px;
  border-radius: 48px;
}
@media screen and (max-width: 768px) {
  .home .intro__btn a {
    font-size: 1.4rem;
    padding: 3px 10px 3px 14px;
    border-radius: 35px;
    border: 2px solid transparent;
  }
}
.home .services-sec {
  width: 100%;
  margin-bottom: 140px;
  /* Text box for each row */
  /* Hide non-active row text */
}
@media screen and (max-width: 430px) {
  .home .services-sec {
    margin-bottom: 75px;
  }
}
.home .services-sec-inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .services-sec-inner {
    height: auto;
  }
}
@media screen and (min-width: 769px) {
  .home .services-sec-inner .slider-container .slick-slide {
    max-height: 580px;
  }
}
@media screen and (max-width: 768px) {
  .home .services-sec-inner .slider-container .slick-list {
    margin-top: -35%;
  }
}
.home .services-sec__header {
  padding-left: 6.6%;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .home .services-sec__header {
    padding-left: 24px;
    margin-bottom: 22px;
  }
}
.home .services-sec__title {
  font-size: 6.4rem;
}
@media screen and (max-width: 768px) {
  .home .services-sec__title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 430px) {
  .home .services-sec__title {
    font-size: 4rem;
  }
}
.home .services-sec .gradient {
  display: inline;
  background: linear-gradient(171deg, #223E92 40%, #D02129 92%, #FECD08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home .services-sec__text {
  font-size: 2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .home .services-sec__text {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .home .services-sec__text {
    font-size: 1.4rem;
  }
}
.home .services-sec-text {
  color: #F5FBFF;
  position: absolute;
  top: 0;
  right: 0;
  width: 37.1vw;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 3.32vw;
  box-sizing: border-box;
  z-index: 5;
  height: 100%;
  background: linear-gradient(to bottom, rgba(55, 42, 126, 0.8) 0%, rgba(49, 49, 49, 0.6) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* for Safari */
}
.home .services-sec-text.row2 {
  background: linear-gradient(to bottom, rgba(175, 37, 43, 0.8) 0%, rgba(49, 49, 49, 0.6) 100%);
}
@media screen and (max-width: 768px) {
  .home .services-sec-text {
    max-width: 100%;
    width: 100%;
    left: 0;
    height: auto;
    padding: 48px 64px;
  }
}
@media screen and (max-width: 430px) {
  .home .services-sec-text {
    max-width: 100%;
    width: 100%;
    left: 0;
    height: auto;
    padding: 24px 32px;
  }
}
.home .services-sec-text__heading {
  font-size: clamp(2.4rem, 4.3vw, 6.4rem);
  font-weight: bold;
  margin-bottom: 5.7%;
}
@media screen and (max-width: 768px) {
  .home .services-sec-text__heading {
    font-size: 6.4rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .home .services-sec-text__heading {
    font-size: 4rem;
    margin-bottom: 16px;
  }
}
.home .services-sec-text__desc {
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  margin-bottom: 6.5%;
}
.home .services-sec-text__desc:nth-child(4) {
  margin-bottom: 9%;
}
@media screen and (max-width: 768px) {
  .home .services-sec-text__desc:nth-child(4) {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .home .services-sec-text__desc:nth-child(4) {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .home .services-sec-text__desc {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 430px) {
  .home .services-sec-text__desc {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.home .services-sec-text__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  border-radius: 48px;
  display: inline-block;
  align-items: center;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  padding: 2.3% 5% 2.3% 7%;
}
@media screen and (max-width: 768px) {
  .home .services-sec-text__btn {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .home .services-sec-text__btn {
    font-size: 1.4rem;
    border-radius: 35px;
    padding: 3px 10px 3px 14px;
  }
}
.home .services-sec__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  margin: auto;
  margin-top: 32px;
}
.home .services-sec__btn a {
  text-align: left;
  width: 100%;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  padding: 9px 25px 9px 32px;
  border-radius: 48px;
  border: 3px solid transparent;
}
@media screen and (max-width: 768px) {
  .home .services-sec__btn a {
    border: 2px solid transparent;
    font-size: 1.4rem;
    border-radius: 35px;
    padding: 3px 10px 3px 14px;
  }
}
.home .services-sec .carousel-container {
  width: 100vw;
  /* full viewport width */
  max-width: 100%;
  max-height: 33.4vw;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .home .services-sec .carousel-container {
    max-height: 153vw;
  }
}
.home .services-sec .carousel-wrapper {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s ease;
  /* smooth movement */
  will-change: transform;
  /* smooth slide */
}
.home .services-sec .row-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.home .services-sec .carousel-row {
  display: flex;
}
@media screen and (max-width: 768px) {
  .home .services-sec .carousel-row {
    flex-direction: column;
    /* assume .carousel-row uses flex */
    align-items: stretch;
    gap: 0;
  }
}
.home .services-sec .carousel-item {
  flex: 0 0 21.8vw;
  /* 4 items per row using viewport width */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .home .services-sec .carousel-item {
    flex: 0 0 103vw;
  }
}
.home .services-sec .carousel-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .home .services-sec .carousel-item img {
    transform: translateY(25vw);
  }
}
.home .services-sec .buttons {
  position: absolute;
  top: -100px;
  right: 6.6%;
}
@media screen and (max-width: 430px) {
  .home .services-sec .buttons {
    top: -50px;
    right: 2.6%;
  }
}
.home .services-sec .button {
  display: flex;
}
.home .services-sec .button .arrow {
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  opacity: 1;
  border: 2px solid #9DA0A5;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .home .services-sec .button .arrow {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 430px) {
  .home .services-sec .button .arrow {
    width: 35px;
    height: 35px;
  }
}
.home .services-sec .button .arrow__prev {
  margin-right: 16px;
}
@media screen and (max-width: 430px) {
  .home .services-sec .button .arrow__prev {
    margin-right: 5px;
  }
}
.home .services-sec .button .arrow__prev .icn {
  width: 56px;
  height: 56px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease;
}
.home .services-sec .button .arrow__prev .icn.moving {
  transform: translateX(-60px);
}
.home .services-sec .button .arrow__prev .icn:nth-child(1) {
  margin-left: 0;
}
.home .services-sec .button .arrow__prev .icn img {
  width: 21px;
  height: 18px;
}
@media screen and (max-width: 430px) {
  .home .services-sec .button .arrow__prev .icn img {
    width: 15px;
    height: 12px;
  }
}
@media screen and (max-width: 768px) {
  .home .services-sec .button .arrow__prev .icn {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 430px) {
  .home .services-sec .button .arrow__prev .icn {
    width: 35px !important;
    height: 35px !important;
  }
}
.home .services-sec .button .arrow__next .icn {
  width: 56px;
  height: 56px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease;
}
@media screen and (max-width: 430px) {
  .home .services-sec .button .arrow__next .icn {
    width: 35px !important;
    height: 35px !important;
  }
}
.home .services-sec .button .arrow__next .icn.moving2 {
  transform: translateX(60px);
}
.home .services-sec .button .arrow__next .icn img {
  width: 21px;
  height: 18px;
}
@media screen and (max-width: 430px) {
  .home .services-sec .button .arrow__next .icn img {
    width: 15px;
    height: 12px;
  }
}
@media screen and (max-width: 768px) {
  .home .services-sec .button .arrow__next .icn {
    width: 45px;
    height: 45px;
  }
}
.home .services-sec .button .arrow__next .icn:nth-child(1) {
  margin-left: -60px;
}
.home .media-sec {
  margin-bottom: 179px;
  overflow-x: hidden;
  overflow-y: hidden;
}
@media screen and (max-width: 768px) {
  .home .media-sec {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 430px) {
  .home .media-sec {
    margin-bottom: 75px;
  }
}
.home .media-sec__header {
  padding-left: 6.6%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .home .media-sec__header {
    padding-left: 48px;
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 430px) {
  .home .media-sec__header {
    padding-left: 24px;
    margin-bottom: 22px;
  }
}
.home .media-sec-inner {
  position: relative;
}
.home .media-sec__title {
  font-size: 6.4rem;
}
@media screen and (max-width: 768px) {
  .home .media-sec__title {
    font-size: 8rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 430px) {
  .home .media-sec__title {
    font-size: 4rem;
    margin-bottom: 4px;
  }
}
.home .media-sec .gradient {
  background: linear-gradient(171deg, #223E92 40%, #D02129 92%, #FECD08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home .media-sec__text {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .home .media-sec__text {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .home .media-sec__text {
    font-size: 1.4rem;
  }
}
.home .media-sec .slider-container {
  padding-left: 6.62%;
}
@media screen and (max-width: 768px) {
  .home .media-sec .slider-container {
    padding-left: 48px;
  }
}
@media screen and (max-width: 430px) {
  .home .media-sec .slider-container {
    padding-left: 24px;
  }
}
.home .media-sec .slider-container .slick-list {
  margin-right: -21%;
  /* adjust negative margin for overlap */
}
@media screen and (max-width: 768px) {
  .home .media-sec .slider-container .slick-slide {
    max-width: 600px;
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .home .media-sec .slider-container .slick-slide {
    max-width: 383px;
    width: 100%;
  }
}
.home .media-sec__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  margin: auto;
  margin-top: 32px;
}
.home .media-sec__btn a {
  text-align: left;
  width: 100%;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  padding: 9px 25px 9px 32px;
  border: 3px solid transparent;
  border-radius: 48px;
}
@media screen and (max-width: 768px) {
  .home .media-sec__btn a {
    border-radius: 35px;
    border: 2px solid transparent;
    padding: 3px 10px 3px 14px;
    font-size: 1.4rem;
  }
}
.home .news-sec {
  margin-bottom: 179px;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .home .news-sec {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 430px) {
  .home .news-sec {
    margin-bottom: 75px;
  }
}
.home .news-sec__header {
  padding-left: 6.6%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .home .news-sec__header {
    padding-left: 48px;
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 430px) {
  .home .news-sec__header {
    padding-left: 24px;
    margin-bottom: 22px;
  }
}
.home .news-sec-inner {
  position: relative;
}
.home .news-sec__title {
  font-size: 6.4rem;
}
@media screen and (max-width: 768px) {
  .home .news-sec__title {
    font-size: 8rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 430px) {
  .home .news-sec__title {
    font-size: 4rem;
    margin-bottom: 4px;
  }
}
.home .news-sec .gradient {
  background: linear-gradient(171deg, #223E92 40%, #D02129 92%, #FECD08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home .news-sec__text {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .home .news-sec__text {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .home .news-sec__text {
    font-size: 1.4rem;
  }
}
.home .news-sec .slider-container {
  padding-left: 6.62%;
}
@media screen and (max-width: 768px) {
  .home .news-sec .slider-container {
    padding-left: 48px;
  }
}
@media screen and (max-width: 430px) {
  .home .news-sec .slider-container {
    padding-left: 24px;
  }
}
.home .news-sec .slider-container .slick-list {
  margin-right: -21%;
  /* adjust negative margin for overlap */
}
@media screen and (max-width: 768px) {
  .home .news-sec .slider-container .slick-slide {
    max-width: 600px;
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .home .news-sec .slider-container .slick-slide {
    max-width: 383px;
    width: 100%;
  }
}
.home .news-sec__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  margin: auto;
  margin-top: 32px;
}
.home .news-sec__btn a {
  text-align: left;
  width: 100%;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  padding: 9px 25px 9px 32px;
  border: 3px solid transparent;
  border-radius: 48px;
}
@media screen and (max-width: 768px) {
  .home .news-sec__btn a {
    border-radius: 35px;
    border: 2px solid transparent;
    padding: 3px 10px 3px 14px;
    font-size: 1.4rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  background: transparent;
  /* default state */
  transition: background 0.3s ease;
  /* smooth transition */
  /* HAMBURGER */
  /* Common bar styles */
  /* Idle (two lines) - offset above/below center */
  /* Active state -> move both to exact center and rotate */
  /* Rotate to form X */
  /* end .header-right */
}
.header.scrolled {
  background: rgba(0, 0, 0, 0.9);
  /* background when scrolled */
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 6.31%;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .header-inner {
    flex-wrap: nowrap;
    padding: 27px 2.31%;
  }
}
@media screen and (max-width: 768px) {
  .header-inner {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 430px) {
  .header-inner {
    padding: 14.5px 27px;
  }
}
.header__logo {
  max-width: 171px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 260px;
  }
}
@media screen and (max-width: 620px) {
  .header__logo {
    max-width: 200px;
  }
}
@media screen and (max-width: 430px) {
  .header__logo {
    max-width: 136px;
  }
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.header .gradient-border {
  position: relative;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(from 0deg, #fecd08 20%, #223e92 51%, #d02129 95%);
}
.header .gradient-border::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: #fff;
  border-radius: inherit;
  z-index: 1;
}
.header.home-page .nav__list li a {
  color: #F5FBFF;
  font-size: 1.6rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header.home-page .nav__list li a {
    font-size: 36px;
  }
}
.header.home-page .nav__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #F5FBFF;
  transition: width 0.5s ease;
  border-radius: 10px;
}
.header.home-page .nav__list li a:hover, .header.home-page .nav__list li a.active {
  color: #F5FBFF !important;
}
.header.home-page .nav__list li a:hover::after, .header.home-page .nav__list li a.active::after {
  width: 100%;
}
.header.home-page .header-right .box {
  color: #F5FBFF;
  --main-bg: conic-gradient(from var(--border-angle),
      #0C0C14 100%,
      #0C0C14 100%,
      #0C0C14 100%,
      #0C0C14 100%);
}
.header.home-page .header-right .box:hover {
  --gradient-border: linear-gradient(90deg,
      #223E92 0%,
      /* Blue */
      #D02129 54%,
      /* Red */
      #FECD08 100%
      /* Yellow */
    );
  /* Stop the border rotation if you want */
  animation-play-state: paused;
  /* Re-apply backgrounds using new main-bg */
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
}
.header.home-page .header-right .box:hover .arrow {
  transform: rotate(45deg);
  opacity: 1;
}
.header.other-page {
  background: rgba(245, 251, 255, 0.7); /* 0.9 is common for slight transparency */
  z-index: 1000; /* ensures it stays above other content */
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px); /* optional: adds a frosted glass effect */
  transition: background 0.3s ease; /* smooth background change if needed */
}
.header.other-page .nav.is-active .nav__list li a.active {
  color: #9DA0A5;
}
.header.other-page .nav.is-active .nav__list li a:after {
  background: #9DA0A5;
}
.header.other-page .nav .nav__list li a {
  color: #9DA0A5;
}
.header.other-page .nav .nav__list li a.active {
  color: #0C0C14;
}
.header.other-page .header-right {
  color: #9DA0A5;
}
.header.other-page .header-right .box {
  color: #0C0C14;
  --main-bg: conic-gradient(from var(--border-angle),
      #F5FBFF 100%,
      #F5FBFF 100%,
      #F5FBFF 100%,
      #F5FBFF 100%);
  transition: transform 0.4s ease;
}
.header.other-page .header-right .box:hover {
  color: #F5FBFF;
  /* ✨ Hover background gradient (same as your Figma palette) */
  --main-bg: linear-gradient(90deg,
      #223E92 0%,
      /* Blue */
      #D02129 54%,
      /* Red */
      #FECD08 100%
      /* Yellow */
    );
  --gradient-border: linear-gradient(90deg,
      transparent 0%,
      /* Blue */
      transparent 0%,
      /* Red */
      transparent 0%
      /* Yellow */
    );
  /* Stop the border rotation if you want */
  animation-play-state: paused;
  /* Re-apply backgrounds using new main-bg */
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
}
.header.other-page .header-right .box::after {
  background-image: url("../img/icons/arrow-contact-dark.png");
  transition: transform 0.4s ease;
}
.header.other-page .header-right .box:hover::after {
  background-image: url("../img/icons/arrow-contact.png");
}
.header.other-page .menu-toggle .bar {
  background: #000000;
}
.header.other-page .menu-toggle.is-active .bar {
  background: #fff;
}
.header .nav {
  max-width: 366px;
  width: 100%;
  height: 100%;
  line-height: 1.2;
  cursor: pointer;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .header .nav {
    position: fixed;
    /* attach to viewport */
    top: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    /* change to rgba(...) for translucency */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow-y: auto;
    /* hidden state */
    transform: translateY(-6%);
    /* slight offset */
    opacity: 0;
    visibility: hidden;
    transition: transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 240ms ease, visibility 0s linear 360ms;
    /* visible state toggled by your JS */
  }
  .header .nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
}
.header .nav-trl {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .nav-trl {
    display: block;
  }
}
.header .nav-trl .gtranslate_wrapper {
  position: relative;
  left: 0;
  right: 0;
  margin: auto;
  margin-top: 30px;
}
.header .nav-trl .gtranslate_wrapper a {
  color: #9DA0A5;
  font-size: 20px;
  text-align: center;
}
.header .nav__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .header .nav__list {
    flex-direction: column;
    align-items: center;
  }
}
.header .nav__list li {
  margin-right: 8.77%;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .header .nav__list li {
    margin-right: 4%;
  }
}
@media screen and (max-width: 768px) {
  .header .nav__list li {
    margin-right: 0;
    margin-bottom: 40px;
  }
  .header .nav__list li:last-child {
    margin-bottom: 0;
  }
}
.header .nav__list li:last-child {
  margin-right: 0;
}
.header .nav__list li a {
  font-size: 1.6rem;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header .nav__list li a {
    font-size: 36px;
  }
}
.header .nav__list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #0C0C14;
  transition: width 0.5s ease;
  border-radius: 10px;
}
.header .nav__list li a:hover, .header .nav__list li a.active {
  color: #0C0C14;
  outline: none;
}
.header .nav__list li a:hover::after, .header .nav__list li a.active::after {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .header .nav__logo {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header .nav__logo {
    display: block;
    max-width: 300px;
    position: absolute;
    top: 20px;
    left: 20px;
  }
}
@media screen and (max-width: 430px) {
  .header .nav__logo {
    max-width: 200px;
  }
}
.header-right {
  display: flex;
  align-items: center;
  color: #F5FBFF;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-right .gtranslate_wrapper {
    display: none;
  }
}
.header-right .contact {
  margin-right: 36px;
}
.header-right .contact .contact-btn {
  font-size: 2rem;
  border-radius: 50px;
}
.header-right .box {
  display: flex;
  padding: 9px 28px 9px 28px;
  color: white;
  border: solid 3px transparent;
  border-radius: 35px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .header-right .box {
    border: solid 2px transparent;
    margin-right: 12px;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.4rem;
    padding: 3px 0 3px 10px;
  }
}
.header-right .box::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 8px;
  background-image: url("../img/icons/arrow-contact.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 768px) {
  .header-right .box::after {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    margin-top: 2px;
  }
}
.header-right .box:hover {
  animation-play-state: paused;
}
.header-right .box:hover::after {
  transform: rotate(45deg);
}
.header .menu-toggle {
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  cursor: pointer;
  z-index: 10000;
  display: none;
}
@media screen and (max-width: 768px) {
  .header .menu-toggle {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  .header .menu-toggle {
    width: 24px;
    height: 24px;
  }
}
.header .menu-toggle .bar {
  position: absolute;
  left: 50%;
  width: 22px;
  /* visible line length */
  height: 2px;
  /* thickness */
  background: #fff;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1), top 0.28s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.28s;
  transform: translateX(-50%);
  /* center horizontally */
  will-change: transform, top;
}
@media screen and (max-width: 430px) {
  .header .menu-toggle .bar {
    width: 18px;
  }
}
.header .menu-toggle .bar--top {
  top: calc(50% - 6px);
  /* 6px gap from center -> adjust to taste */
}
.header .menu-toggle .bar--bottom {
  top: calc(50% + 6px);
}
.header .menu-toggle.is-active .bar--top,
.header .menu-toggle.is-active .bar--bottom {
  top: 50%;
  /* exact center */
  transform: translateX(-50%);
  /* baseline: keep X centering */
}
.header .menu-toggle.is-active .bar--top {
  transform: translateX(-50%) rotate(45deg);
}
.header .menu-toggle.is-active .bar--bottom {
  transform: translateX(-50%) rotate(-45deg);
}
.header .switch div {
  cursor: pointer;
  margin-right: 20px;
}
.header .switch img {
  max-width: 25px;
  width: 100%;
}

/* end .header */
/* Keyframes for spinning */
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
/* Custom property for animation */
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
.footer {
  background: #09111E;
  color: #333;
  position: relative;
  padding: 154px 20px 80px 20px;
  /* The line that grows */
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .footer {
    padding: 154px 26px 80px 26px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 160px 50px 80px 50px;
  }
}
@media screen and (max-width: 430px) {
  .footer {
    padding: 80px 25px 40px 25px;
  }
}
@media screen and (max-width: 768px) {
  .footer .animation-container {
    width: 100%;
  }
}
.footer-container {
  max-width: 1312px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .footer-container {
    max-width: 100%;
  }
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 430px) {
  .footer-inner {
    padding-bottom: 50px;
  }
}
.footer-inner__right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer-inner__right {
    justify-content: space-between;
    width: 100%;
    margin-top: 100px;
  }
}
@media screen and (max-width: 430px) {
  .footer-inner__right {
    margin-top: 50px;
  }
}
.footer__title {
  font-size: 6.4rem;
  line-height: 1.19;
  font-weight: bold;
  color: #F5FBFF;
}
@media screen and (max-width: 768px) {
  .footer__title {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 430px) {
  .footer__title {
    font-size: 3.2rem;
  }
}
.footer__list {
  font-size: 1.6rem;
  font-weight: 600;
  color: #F5FBFF;
  margin-right: 56px;
}
.footer__list li {
  margin-bottom: 14px;
  line-height: 1.2;
}
.footer__list li:last-child {
  margin-bottom: 0;
}
.footer__links {
  display: flex;
  align-items: flex-start;
}
.footer .sns__list li {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
}
.footer .sns__list li:last-child {
  margin-bottom: 0;
}
.footer-contact {
  position: relative;
  z-index: 1;
  max-width: 1312px;
  width: 100%;
  margin: auto;
  margin-bottom: -67px;
  border-radius: 32px;
  border-radius: 32px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .footer-contact {
    max-width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact {
    margin-bottom: -35px;
    width: calc(100% - 48px);
  }
}
.footer-contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 72px;
}
@media screen and (max-width: 768px) {
  .footer-contact-container {
    flex-direction: column;
    padding: 40px;
  }
}
@media screen and (max-width: 430px) {
  .footer-contact-container {
    padding: 25px;
  }
}
.footer-contact.box {
  border: solid 8px transparent;
}
.footer-contact__header {
  font-size: 6.4rem;
  color: #09111E;
  line-height: 1.13;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .footer-contact__header {
    font-size: 6.4rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .footer-contact__header {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }
}
.footer-contact .gradient-text {
  font-weight: 700;
  background: linear-gradient(90deg, #4a2a7c 0%, #c2292e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  line-height: 1;
}
.footer-contact__text {
  font-size: 2rem;
  color: #09111E;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .footer-contact__text {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .footer-contact__text {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}
.footer-contact__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-contact__btn {
    max-width: 100%;
    text-align: center;
  }
}
.footer-contact__btn a {
  font-size: 2rem;
  display: block;
  border: 3px solid transparent;
  border-radius: 48px;
  padding: 9px 25px 9px 32px;
}
@media screen and (max-width: 768px) {
  .footer-contact__btn a {
    font-size: 3.2rem;
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 9px 0;
  }
}
@media screen and (max-width: 430px) {
  .footer-contact__btn a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 430px) {
  .footer-contact__btn a.box-bg::after {
    width: 20px;
    height: 20px;
    margin-top: 0;
    vertical-align: middle;
  }
}
@media screen and (max-width: 768px) {
  .footer-contact__btn {
    margin-bottom: 48px;
  }
}
.footer-contact__list li {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-contact__list li {
    font-size: 2.8rem;
    margin-bottom: 11px;
    margin-left: 52px;
  }
}
@media screen and (max-width: 430px) {
  .footer-contact__list li {
    font-size: 1.4rem;
    margin-bottom: 11px;
    margin-left: 39px;
  }
}
.footer-contact__list li:last-child {
  margin-bottom: 0;
}
.footer-contact__list li::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: -47px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 430px) {
  .footer-contact__list li::before {
    width: 48px;
    height: 48px;
    left: -78px;
  }
}
@media screen and (max-width: 430px) {
  .footer-contact__list li::before {
    width: 24px;
    height: 24px;
    left: -39px;
  }
}
.footer-contact__list li:nth-child(1)::before {
  background-image: url("../img/icons/contact-icon01.png");
}
.footer-contact__list li:nth-child(2)::before {
  background-image: url("../img/icons/contact-icon02.png");
}
.footer-contact__list li:nth-child(3)::before {
  background-image: url("../img/icons/contact-icon03.png");
}
.footer-form {
  position: relative;
  z-index: 1;
  max-width: 880px;
  width: 100%;
  margin: auto;
  background: #F5FBFF;
  padding: 0 72px;
  border-radius: 32px;
  padding: 64px 72px;
  margin-bottom: -82px;
}
@media screen and (max-width: 768px) {
  .footer-form {
    max-width: 674px;
    padding: 50px;
  }
}
@media screen and (max-width: 430px) {
  .footer-form {
    max-width: 377px;
    padding: 34px;
    margin-bottom: -40px;
  }
}
.footer-form.box {
  border: solid 6px transparent;
}
.footer-form__title {
  font-size: 5.6rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .footer-form__title {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 430px) {
  .footer-form__title {
    font-size: 2.4rem;
  }
}
.footer-form__text {
  font-size: 1.6rem;
  color: #9DA0A5;
}
@media screen and (max-width: 768px) {
  .footer-form__text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 430px) {
  .footer-form__text {
    font-size: 1.2rem;
  }
}
.footer-form form {
  margin-top: 32px;
  color: #9DA0A5;
}
@media screen and (max-width: 768px) {
  .footer-form form {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer-form form {
    margin-top: 24px;
  }
}
.footer-form form .contact__form-group {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .footer-form form .contact__form-group {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 430px) {
  .footer-form form .contact__form-group {
    margin-bottom: 8px;
  }
}
.footer-form form .contact__form-group .contact__input {
  width: 100%;
  padding: 14px 40px 14px 18px;
  font-size: 1.6rem;
  color: #9DA0A5;
  border: 1px solid #9DA0A5;
  border-radius: 12px;
  background-color: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}
@media screen and (max-width: 768px) {
  .footer-form form .contact__form-group .contact__input {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 430px) {
  .footer-form form .contact__form-group .contact__input {
    font-size: 1.2rem;
    padding: 12px 40px 12px 18px;
  }
}
.footer-form form .contact__form-group .contact__input--select {
  position: relative;
  width: 100%;
}
.footer-form form .contact__form-group .contact__input--textarea {
  min-height: 180px;
  line-height: 1.4;
  padding-top: 16px;
}
@media screen and (max-width: 430px) {
  .footer-form form .contact__form-group .contact__input--textarea {
    min-height: 130px;
  }
}
.footer-form form .contact__form-group.contact__form-group--file {
  position: relative;
}
.footer-form form .contact__form-group.contact__form-group--file .contact__file-label {
  font-size: 1.4rem;
  margin-bottom: 8px;
  display: block;
  color: #9DA0A5;
}
.footer-form form .contact__form-group.contact__form-group--file .contact__file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.footer-form form .contact__form-group.contact__form-group--file .contact__file-display {
  padding: 14px 18px;
  font-size: 1.6rem;
  color: #9DA0A5;
  border: 1px solid #9DA0A5;
  border-radius: 12px;
  background-color: transparent;
  pointer-events: none;
}
@media screen and (max-width: 430px) {
  .footer-form form .contact__form-group.contact__form-group--file .contact__file-display {
    padding: 12px 18px;
    font-size: 1.2rem;
  }
}
.footer-form form .contact__form-group.select::after {
  content: "";
  display: block;
  background-image: url("../img/icons/icon-arrow-form.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  position: absolute;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer-form form .contact__form-group.select::after {
    width: 32px;
    height: 32px;
    right: 24px;
  }
}
@media screen and (max-width: 430px) {
  .footer-form form .contact__form-group.select::after {
    width: 16px;
    height: 16px;
    right: 12px;
  }
}
.footer-form form .contact__form-row {
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .footer-form form .contact__form-row {
    gap: initial;
    margin-bottom: 0;
    flex-direction: column;
  }
}
.footer-form form .contact__privacy {
  font-size: 1.6rem;
  margin: 32px 0;
}
@media screen and (max-width: 768px) {
  .footer-form form .contact__privacy {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-form form .contact__privacy {
    font-size: 1.2rem;
    margin: 24px 0;
  }
}
.footer-form form .contact__privacy-link {
  color: #0C0C14;
  font-weight: 500;
  text-decoration: underline;
}
.footer-form form .contact__submit-button {
  padding: 10px 24px;
  font-size: 2rem;
  border-radius: 30px;
}
.footer-form form .contact__submit-button.mod-pad {
  padding: 10px 48px 10px 20px;
}
@media screen and (max-width: 768px) {
  .footer-form form .contact__submit-button.mod-pad {
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-form form .contact__submit-button {
    max-width: 100%;
    width: 100%;
    text-align: center;
    padding: 9px 0;
  }
}
@media screen and (max-width: 430px) {
  .footer-form form .contact__submit-button.box-bg::after {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }
}
.footer__logo {
  max-width: 191px;
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    max-width: 206px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 430px) {
  .footer__logo {
    max-width: 103px;
    margin-bottom: 8px;
  }
}
.footer-credits {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .footer-credits {
    padding-top: 50px;
  }
}
.footer-credits__text {
  display: flex;
  justify-content: space-between;
  color: #F5FBFF;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .footer-credits__text {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 430px) {
  .footer-credits__text {
    font-size: 1.2rem;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer-credits__text .footer-policy {
  text-decoration: underline;
}
.footer .grow-line {
  height: 1px;
  width: 0; /* start at zero width */
  background: #FFFFFF;
  opacity: 0;
  transform-origin: left; /* grows from LEFT */
  transition: opacity 0.5s ease-out, width 2s ease-out; /* slow */
}
.footer .grow-line.active {
  opacity: 1;
  width: 100%; /* final width */
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: #0C0C14;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

html {
  font-size: 62.5%;
  line-height: 1.2;
  color: #0C0C14;
  font-family: -apple-system, "SF Pro Text", "SF Pro Display", "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif !important;
  background-color: #F5FBFF;
  position: relative;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
html::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.article-card {
  border: 2px solid #9DA0A5;
  border-left: none;
  padding: 7% 9.3%;
  position: relative;
  overflow: hidden;
}
.article-card::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: #09111E;
  border-radius: 50%;
  transform: scale(0);
  /* invisible */
  transition: transform 1s ease;
  z-index: -1;
}
.article-card:hover::before {
  transform: scale(10);
}
.article-card:hover .article-title {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .article-card {
    padding: 54px 62px;
  }
}
@media screen and (max-width: 430px) {
  .article-card {
    padding: 27px 31px;
  }
}
.article-card .article-header {
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .article-card .article-header {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .article-card .article-header {
    margin-bottom: 10px;
  }
}
.article-card .article-header .meta {
  color: #9DA0A5;
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-family: "Host Grotesk", sans-serif;
}
@media screen and (max-width: 768px) {
  .article-card .article-header .meta {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 430px) {
  .article-card .article-header .meta {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.article-card .article-title {
  font-size: 2.4rem;
  letter-spacing: -1px;
  color: #0C0C14;
  transition: color 0.5s ease 0.3s;
  /* delay of 1s */
}
@media screen and (max-width: 768px) {
  .article-card .article-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 430px) {
  .article-card .article-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .article-card .article-thumb {
    max-width: 648px;
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .article-card .article-thumb {
    max-width: 319px;
  }
}
.article-card .article-thumb img {
  border-radius: 8px;
  width: 100%;
}
.article-card .article-footer {
  color: #9DA0A5;
  margin-top: 16px;
  font-size: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .article-card .article-footer {
    margin-top: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 430px) {
  .article-card .article-footer {
    margin-top: 11px;
    font-size: 1.1rem;
    padding-right: 14px;
  }
}
.article-card .article-footer:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/story-arrow-up.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 430px) {
  .article-card .article-footer:after {
    width: 12px;
    height: 12px;
  }
}

.animation-container {
  overflow: hidden;
}

.animated‐gradient-border {
  position: relative;
  width: 100%;
  /* thickness of the border */
  background: #f9fbff;
  /* inner background / fill */
  overflow: hidden;
  /* **border thickness** set to 8px */
}
.animated‐gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border‑radius: 32px;
  background: linear-gradient(70deg, #223E92 22%, #D02129 68%, #FECF08 100%);
  background-size: 200% 100%;
  animation: rotateGradient 4s linear infinite;
  z‑index: -1;
}
.animated‐gradient-border .content {
  position: relative;
  /* slightly smaller, so the gradient shows as border */
  background: #f9fbff;
}

@keyframes rotateGradient {
  0% {
    background-position: 0% 50%;
  }
  30% {
    background-position: 50% 50%;
  }
  60% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.box {
  border: solid 3px transparent;
  border-radius: 35px;
  font-size: 2rem;
  /* CSS variables for animation */
  --border-angle: 0turn;
  --main-bg: conic-gradient(from var(--border-angle),
      #F5FBFF 100%,
      #F5FBFF 100%,
      #F5FBFF 100%,
      #F5FBFF 100%);
  /* Gradient border using your colors from the palette */
  --gradient-border: conic-gradient(from var(--border-angle),
      transparent 25%,
      #FECD08,
      /* Yellow */
      #D02129,
      /* Red */
      #223E92 99%,
      /* Blue */
      transparent);
  /* Background layers */
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
  background-size: calc(100% + 1px) calc(100% + 1px);
  background-position: center center;
  animation: bg-spin 4s linear infinite;
}

.box-bg {
  border: solid 3px transparent;
  border-radius: 35px;
  font-size: 2rem;
  --border-angle: 0turn;
  /* Keep background solid */
  color: #0C0C14;
  --main-bg: conic-gradient(from var(--border-angle),
      #F5FBFF 100%,
      #F5FBFF 100%,
      #F5FBFF 100%,
      #F5FBFF 100%);
  /* Remove transparent parts from gradient border */
  --gradient-border: conic-gradient(from var(--border-angle),
      #FECD08,
      #D02129,
      #223E92,
      #FECD08);
  background: var(--main-bg) padding-box, var(--gradient-border) border-box;
  background-position: center center;
  /* Still spins but no transparency visible */
  animation: bg-spin 3s linear infinite;
  transition: all 0.35s ease;
}
.box-bg:hover {
  color: #F5FBFF;
  /* ✨ Hover background gradient (same as your Figma palette) */
  --main-bg: linear-gradient(90deg,
      #223E92 0%,
      /* Blue */
      #D02129 54%,
      /* Red */
      #FECD08 100%
      /* Yellow */
    );
  --gradient-border: linear-gradient(90deg,
      transparent 0%,
      /* Blue */
      transparent 0%,
      /* Red */
      transparent 0%
      /* Yellow */
    );
  /* Stop the border rotation if you want */
  animation-play-state: paused;
  /* Re-apply backgrounds using new main-bg */
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
}
.box-bg::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  vertical-align: middle;
  background-image: url("../img/icons/arrow-contact-dark.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
@media screen and (max-width: 430px) {
  .box-bg::after {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    vertical-align: baseline;
  }
}
.box-bg:hover::after {
  transform: rotate(45deg);
  background-image: url("../img/icons/arrow-contact.png");
}

@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
.box2 {
  position: relative;
  overflow: hidden;
  background: transparent;
  /* white inside */
  /* Arrow */
  /* Hover states */
}
.box2 .arrow {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  background-image: url("../img/icons/arrow-contact.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.4s ease, background-image 0.4s ease;
}
.box2:hover {
  /* ✨ Hover background gradient (same as your Figma palette) */
  --main-bg: linear-gradient(90deg,
      #223E92 0%,
      /* Blue */
      #D02129 54%,
      /* Red */
      #FECD08 100%
      /* Yellow */
    );
  --gradient-border: linear-gradient(90deg,
      transparent 0%,
      /* Blue */
      transparent 0%,
      /* Red */
      transparent 0%
      /* Yellow */
    );
  /* Stop the border rotation if you want */
  animation-play-state: paused;
  /* Re-apply backgrounds using new main-bg */
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
  border-color: transparent;
}
.box2:hover .arrow {
  transform: rotate(45deg);
}
@media screen and (max-width: 430px) {
  .box2 .arrow {
    width: 12px;
    height: 12px;
    margin-left: 4px;
  }
}
.box2:hover::before {
  opacity: 1;
  /* make white border fully visible */
  animation: none;
  /* stop fading */
}
.box2:hover::after {
  opacity: 0;
  /* gradient visible too */
  animation: none;
  /* stop fading */
}

/* White border layer */
.box2::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 48px;
  padding: 3px;
  /* border thickness */
  background: white;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  animation: fadeWhite 3s ease-in-out infinite alternate;
}
@media screen and (max-width: 430px) {
  .box2::before {
    padding: 2px;
    border-radius: 35px;
  }
}

/* Gradient border layer */
.box2::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 48px;
  padding: 3px;
  background: linear-gradient(160deg, #223E92, #D02129, #FECD08);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
  animation: fadeGradient 3s ease-in-out infinite alternate;
}
@media screen and (max-width: 430px) {
  .box2::after {
    padding: 2px;
    border-radius: 35px;
  }
}

@keyframes fadeWhite {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeGradient {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.border-gradient {
  position: relative;
  z-index: 1;
  /* Inner background (white or your page color) */
  /* Gradient border using background layers */
  background-image: linear-gradient(white, white), linear-gradient(130deg, #223e92 22%, #d02129 68%, #fecd08 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Keyframes for spinning */
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
/* Custom property for animation */
@property --border-angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0turn;
}
.gradient-text {
  position: relative;
  color: #9DA0A5;
  /* starting color */
  display: inline;
  overflow: hidden;
  /* important */
  vertical-align: baseline;
}
@media screen and (min-width: 769px) {
  .gradient-text.mod {
    top: 2px;
  }
  .gradient-text.mod:after {
    top: -2px;
  }
}

.gradient-text.animate {
  /* match wipeGradient timing */
}

/* Overlay with gradient, starts hidden */
.gradient-text::after {
  background: linear-gradient(171deg, #223E92 23%, #D02129 68%, #FECD08 100%);
  content: attr(data-text);
  /* fallback if needed */
  position: absolute;
  inset: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 0%;
  /* start hidden */
  white-space: nowrap;
  font: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.gradient-text.text2.animate::after {
  animation: wipeGradient 1s ease forwards;
  animation-delay: 2s;
}

.gradient-text.text3.animate::after {
  animation: wipeGradient 1s ease forwards;
  animation-delay: 3s;
}

.gradient-text.animate::after {
  animation: wipeGradient 1s ease forwards;
  animation-delay: 1s;
}

@keyframes fadeToTransparent {
  0% {
    color: #9DA0A5;
    /* starting color */
  }
  100% {
    color: transparent;
  }
}
/* Animation: expands width left → right */
@keyframes wipeGradient {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* Each line wrapper */
.group-animation .line {
  display: block;
  overflow: hidden;
  line-height: normal;
}

.group-animation .line div {
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 1.5s ease-out;
}

.group-animation .line.show div {
  transform: translateY(0);
  opacity: 1;
}

.single-animation {
  overflow: hidden;
}

.single-animation a {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 1.5s ease-out;
}

.single-animation.show a {
  transform: translateY(0);
  opacity: 1;
}

.carousel-text {
  color: #F5FBFF;
  position: absolute;
  top: 0;
  right: 0;
  width: 37.1vw;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 3.32vw;
  box-sizing: border-box;
  z-index: 5;
  height: 100%;
  background: linear-gradient(to bottom, rgba(55, 42, 126, 0.8) 0%, rgba(49, 49, 49, 0.6) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* for Safari */
}
.carousel-text.row2 {
  left: 0;
  background: linear-gradient(to bottom, rgba(175, 37, 43, 0.8) 0%, rgba(49, 49, 49, 0.6) 100%);
}
@media screen and (max-width: 768px) {
  .carousel-text {
    max-width: 100%;
    width: 100%;
    left: 0;
    height: auto;
    padding: 48px 64px;
  }
}
@media screen and (max-width: 430px) {
  .carousel-text {
    max-width: 100%;
    width: 100%;
    left: 0;
    height: auto;
    padding: 24px 32px;
  }
}
.carousel-text__heading {
  font-size: clamp(2.4rem, 4.3vw, 6.4rem);
  font-weight: bold;
  margin-bottom: 5.7%;
}
@media screen and (max-width: 768px) {
  .carousel-text__heading {
    font-size: 6.4rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .carousel-text__heading {
    font-size: 4rem;
    margin-bottom: 16px;
  }
}
.carousel-text__desc {
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  margin-bottom: 6.5%;
}
.carousel-text__desc:nth-child(4) {
  margin-bottom: 9%;
}
@media screen and (max-width: 768px) {
  .carousel-text__desc:nth-child(4) {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .carousel-text__desc:nth-child(4) {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .carousel-text__desc {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 430px) {
  .carousel-text__desc {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}
.carousel-text__list {
  margin-top: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .carousel-text__list {
    margin-top: 30px;
  }
}
.carousel-text__list li {
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  margin-bottom: 8px;
  position: relative;
  padding-left: 36px;
}
@media screen and (max-width: 768px) {
  .carousel-text__list li {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 430px) {
  .carousel-text__list li {
    font-size: 1.2rem;
  }
}
.carousel-text__list li:last-child {
  margin-bottom: 0;
}
.carousel-text__list li::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/icons/icon-check.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 430px) {
  .carousel-text__list li::after {
    width: 12px;
    height: 12px;
  }
}
.carousel-text__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  border-radius: 48px;
  display: inline-block;
  align-items: center;
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  padding: 2.3% 5% 2.3% 7%;
}
@media screen and (max-width: 768px) {
  .carousel-text__btn {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .carousel-text__btn {
    font-size: 1.4rem;
    border-radius: 35px;
    padding: 3px 0 3px 14px;
    max-width: 114px;
  }
}

/* Initial position */
[data-aos=custom-slide-up] {
  transform: translateY(500px);
  transition: transform 1000ms cubic-bezier(0.25, 0.8, 0.25, 1);
  /* smoother easing */
  will-change: transform;
}

/* When triggered */
[data-aos=custom-slide-up].aos-animate {
  transform: translateY(0);
}

/* Initial position (before animation) */
[data-aos=custom-fade-slide-up] {
  transform: translateY(200px);
  opacity: 0;
  transition: transform 1000ms cubic-bezier(0.25, 0.8, 0.25, 1), opacity 2000ms ease;
  /* fade timing */
  will-change: transform, opacity;
}

/* When AOS triggers the animation */
[data-aos=custom-fade-slide-up].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* Initial state (before AOS triggers) */
[data-aos=custom-slide-down] {
  transform: translateY(-200px);
  /* start ABOVE */
  opacity: 0;
  transition: transform 2000ms cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s, opacity 3000ms ease 0.5s;
  will-change: transform, opacity;
}

/* Final state (when AOS triggers) */
[data-aos=custom-slide-down].aos-animate {
  transform: translateY(0);
  /* slide DOWN into place */
  opacity: 1;
}

[data-aos=grow-line] {
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: width 1s ease-out, opacity 0.5s ease-out;
}

[data-aos=grow-line].aos-animate {
  width: 100%;
  opacity: 1;
}

/* Initial state (before AOS triggers) */
[data-aos=custom-slide-left] {
  transform: translateX(423px);
  /* start from RIGHT */
  transition: transform 2000ms cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
  will-change: transform;
}

/* Final state (when AOS triggers) */
[data-aos=custom-slide-left].aos-animate {
  transform: translateX(0);
  /* slide LEFT into place */
}

[data-aos=custom-slide-right] {
  transform: translateX(-423px);
  /* start from LEFT */
  transition: transform 2000ms cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
  will-change: transform;
}

/* Final state (when AOS triggers) */
[data-aos=custom-slide-right].aos-animate {
  transform: translateX(0);
  /* slide RIGHT into place */
}

/* Initial: visible but smaller */
[data-aos=custom-zoom] {
  transform: scale(0.7);
  transition: transform 1000ms cubic-bezier(0.22, 0.9, 0.35, 1);
  transform-origin: center center;
}

/* When AOS triggers */
[data-aos=custom-zoom].aos-animate {
  transform: scale(1);
}

/* Initial state: smaller and shifted left */
[data-aos=custom-zoom-left] {
  transform: scale(0.7) translateX(0);
  /* start smaller and left */
  transition: transform 1000ms cubic-bezier(0.22, 0.9, 0.35, 1);
  transform-origin: bottom right;
  opacity: 0;
  /* optional: fade in */
}

/* When AOS triggers */
[data-aos=custom-zoom-left].aos-animate {
  transform: scale(1) translateX(0);
  /* zoom to full size and move into place */
  opacity: 1;
  /* optional fade in */
}

.site-title {
  font-size: 1.25rem;
  text-decoration: none;
  color: #222;
}

.entry-title {
  margin: 0 0 0.5rem 0;
}

.entry-content {
  line-height: 1.6;
}

.recruit {
  padding: 260px 0 260px 100px;
  background-image: url("../img/recruit-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #F5FBFF;
  margin-bottom: 100px;
  /* When AOS activates */
}
@media screen and (min-width: 769px) {
  .recruit {
    height: 100vh;
  }
}
@media screen and (min-width: 769px) {
  .recruit-container {
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .recruit {
    padding: 164px 0 164px 48px;
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 430px) {
  .recruit {
    padding: 82px 0 82px 24px;
    margin-bottom: 50px;
  }
}
.recruit__title {
  font-size: 6.4rem;
}
@media screen and (max-width: 768px) {
  .recruit__title {
    font-size: 6.4rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .recruit__title {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }
}
.recruit__text {
  font-size: 2rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .recruit__text {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .recruit__text {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}
.recruit__btn {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding: 10px 25px 10px 32px;
  font-size: 2rem;
  border-radius: 48px;
}
@media screen and (max-width: 768px) {
  .recruit__btn {
    font-size: 1.4rem;
    border-radius: 35px;
    padding: 6px 10px 6px 17px;
  }
}

/* Initial: visible but smaller */
[data-aos=custom-zoom] {
  transform: scale(0.7);
  transition: transform 1000ms cubic-bezier(0.22, 0.9, 0.35, 1);
  transform-origin: center center;
}

/* When AOS triggers */
[data-aos=custom-zoom].aos-animate {
  transform: scale(1);
}

.about {
  margin-bottom: 250px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 430px) {
  .about {
    margin-bottom: 75px;
  }
}
.about__top {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .about__top {
    padding: 0 6.6%;
  }
}
.about__top-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 110px;
}
@media screen and (min-width: 769px) {
  .about__top-text {
    padding: 0 6.6%;
  }
}
@media screen and (max-width: 768px) {
  .about__top-text {
    padding: 0 3%;
    margin-bottom: 750px;
  }
}
.about .animation-container {
  position: relative;
  overflow: hidden;
}
.about__title {
  max-width: 1312px;
  width: 100%;
  margin: auto;
  font-size: clamp(3.2rem, 8vw, 12.8rem);
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  transform: translateY(50px);
  /* start below */
  opacity: 0;
}
.about__title .gradient-text {
  padding-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .about__title .gradient-text {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .about__title {
    text-align: center;
    font-size: clamp(1.4rem, 11vw, 11rem);
    flex-direction: column;
  }
}
@media screen and (max-width: 430px) {
  .about__title {
    font-size: clamp(3.2rem, 12vw, 11rem);
  }
}
.about__text {
  font-size: clamp(1.2rem, 4vw, 6.4rem);
  max-width: 1308px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: clamp(1.2rem, 7.9vw, 6.4rem);
  }
}
@keyframes grow-right {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes line-left {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translateX(100px);
  }
}
@keyframes line-left-sp {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translateX(24px);
  }
}
.about .test .img-wrap {
  max-width: 703.15px;
  width: 100%;
  position: relative;
  margin: auto;
  height: 611.28px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap {
    width: 82%;
    height: 295.5px;
  }
}
.about .test .img-wrap .animate {
  position: absolute;
}
.about .test .img-wrap .animes {
  transition: 1s ease;
  width: 100%;
}
.about .test .img-wrap .img-01 {
  top: -6%;
  left: -18%;
  max-width: 203px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-01 {
    width: 28.8%;
  }
}
.about .test .img-wrap .img-01.animes {
  top: 0;
  left: 0;
}
.about .test .img-wrap .img-02 {
  top: 4%;
  left: 17%;
  max-width: 198px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-02 {
    width: 28.14%;
  }
}
.about .test .img-wrap .img-02.animes {
  top: -13px;
  left: 177px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-02.animes {
    top: -1.5vw;
    left: 20vw;
  }
}
.about .test .img-wrap .img-03 {
  top: -19.5%;
  left: 36%;
  max-width: 298px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-03 {
    width: 42.27%;
  }
}
.about .test .img-wrap .img-03.animes {
  top: -31px;
  left: 252px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-03.animes {
    top: -3.4vw;
    left: 28.5vw;
  }
}
.about .test .img-wrap .img-04 {
  top: -7%;
  right: -13%;
  max-width: 199px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-04 {
    width: 28.215%;
  }
}
.about .test .img-wrap .img-04.animes {
  top: -45px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-04.animes {
    top: -5vw;
    right: 0.6vw;
  }
}
.about .test .img-wrap .img-05 {
  top: 43%;
  left: -17.5%;
  max-width: 140px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-05 {
    width: 19.88%;
  }
}
.about .test .img-wrap .img-05.animes {
  top: 160px;
  left: -3px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-05.animes {
    top: 18vw;
    left: -0.3vw;
  }
}
@media screen and (max-width: 375px) {
  .about .test .img-wrap .img-05.animes {
    top: 17vw;
  }
}
.about .test .img-wrap .img-06 {
  top: 64%;
  left: 19.5%;
  max-width: 145px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-06 {
    width: 20.57%;
  }
}
.about .test .img-wrap .img-06.animes {
  top: 267px;
  left: 176px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-06.animes {
    top: 30.6vw;
    left: 20vw;
  }
}
@media screen and (max-width: 375px) {
  .about .test .img-wrap .img-06.animes {
    top: 30vw;
  }
}
.about .test .img-wrap .img-07 {
  top: 35%;
  left: 63.5%;
  max-width: 155px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-07 {
    width: 21.89%;
  }
}
.about .test .img-wrap .img-07.animes {
  top: 142px;
  left: 397px;
}
@media screen and (max-width: 768px) {
  .about .test .img-wrap .img-07.animes {
    top: 16.1vw;
    left: 44.9vw;
  }
}
@media screen and (max-width: 375px) {
  .about .test .img-wrap .img-07.animes {
    top: 15.8vw;
  }
}
.about .test .mission {
  max-width: 1313px;
  width: 100%;
  margin: auto;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .about .test .mission {
    width: calc(100% - 48px);
    margin-bottom: 100px;
  }
}
.about .test .mission .shrink {
  transition: 1s ease;
}
.about .test .mission-wrap {
  position: relative;
  max-width: 1313px;
  width: 100%;
  margin: auto;
}
.about .test .mission-line img {
  width: calc(100% - 421px);
  max-width: 892px;
  height: 723px;
  margin: auto;
  left: 0;
  right: 0;
  position: absolute;
  overflow: hidden;
  z-index: 1;
  transition: 1s ease;
}
@media screen and (max-width: 768px) {
  .about .test .mission-line img {
    width: calc(100% - 180px);
    height: 521px;
  }
}
.about .test .mission-line .cover {
  width: calc(100% - 421px);
  max-width: 892px;
  height: 723px;
  margin: auto;
  left: 0;
  right: 0;
  position: absolute;
  z-index: 2;
  background-color: #F5FBFF;
  transform: scaleX(1);
}
@media screen and (max-width: 768px) {
  .about .test .mission-line .cover {
    width: calc(100% - 185px);
    height: 521px;
  }
}
.about .test .mission-line.path-01 img {
  top: 130px;
}
@media screen and (max-width: 768px) {
  .about .test .mission-line.path-01 img {
    top: 69px;
  }
}
.about .test .mission-line.path-01 .cover {
  top: 130px;
}
@media screen and (max-width: 768px) {
  .about .test .mission-line.path-01 .cover {
    top: 69px;
  }
}
.about .test .mission-line.path-01 .cover.move {
  transform-origin: right;
  animation: grow-right cubic-bezier(0.785, 0.135, 0.15, 0.86) 3s forwards;
  animation-delay: 1s;
}
.about .test .mission-line.path-02 img {
  top: 864px;
}
@media screen and (max-width: 768px) {
  .about .test .mission-line.path-02 img {
    top: 591px;
    width: calc(100% - 190px);
  }
}
.about .test .mission-line.path-02 .cover {
  top: 864px;
}
@media screen and (max-width: 768px) {
  .about .test .mission-line.path-02 .cover {
    top: 591px;
    width: calc(100% - 150px);
  }
}
.about .test .mission-line.path-02 .cover.move {
  transform-origin: left;
  animation: grow-right cubic-bezier(0.785, 0.135, 0.15, 0.86) 3s forwards;
  animation-delay: 1s;
}
.about .test .mission-item {
  max-width: 421px;
  width: 100%;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item {
    max-width: 282px;
  }
}
.about .test .mission-item-wrap {
  position: relative;
  z-index: 3;
  background-color: #F5FBFF;
}
.about .test .mission-item-tit {
  font-size: 64px;
  word-break: keep-all;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item-tit {
    font-size: 40px;
  }
}
.about .test .mission-item-desc {
  font-size: 20px;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item-desc {
    font-size: 14px;
  }
}
.about .test .mission-item-desc.mb {
  margin-bottom: 24px;
}
.about .test .mission-item-list li {
  font-size: 20px;
}
.about .test .mission-item-list li:not(:last-child) {
  margin-bottom: 8px;
}
.about .test .mission-item-icon {
  margin-bottom: 60px;
  width: 262px;
  height: 262px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) {
  .about .test .mission-item-icon {
    margin: auto;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .about .test .mission-item-icon {
    height: 145px;
    width: 145px;
    margin-bottom: 48px;
  }
}
.about .test .mission-item-icon .circ-outer {
  width: 262px;
  height: 262px;
  border: 2px solid;
  border-radius: 50%;
  transform: scale(0.5);
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item-icon .circ-outer {
    height: 145px;
    width: 145px;
  }
}
.about .test .mission-item-icon .circ-outer.shrink {
  transform: scale(1);
}
.about .test .mission-item-icon .circ-outer.rotate {
  transform: rotate(180deg);
}
.about .test .mission-item-icon .circ-outer::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item-icon .circ-outer::after {
    width: 12.2px;
    height: 12.2px;
  }
}
.about .test .mission-item-icon .circ-mid {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item-icon .circ-mid {
    width: 23.2px;
    height: 23.2px;
  }
}
.about .test .mission-item:nth-child(1) {
  margin-bottom: 102px;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item:nth-child(1) {
    margin-bottom: 85px;
  }
}
.about .test .mission-item:nth-child(1) .circ-outer {
  border-color: #223E92;
}
.about .test .mission-item:nth-child(1) .circ-outer::after {
  background-color: #223E92;
  top: -11px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item:nth-child(1) .circ-outer::after {
    top: -7px;
  }
}
.about .test .mission-item:nth-child(1) .circ-mid {
  background-color: #223E92;
}
.about .test .mission-item:nth-child(1) .circ-mid.line-move::after {
  width: 1200px;
  transition: 1s ease;
}
.about .test .mission-item:nth-child(2) {
  margin-bottom: 108px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item:nth-child(2) {
    margin-bottom: 118px;
  }
}
@media screen and (max-width: 768px) {
  .about .test .mission-item:nth-child(2) .mission-item-icon {
    margin-left: auto;
  }
}
.about .test .mission-item:nth-child(2) .circ-outer {
  border-color: #D02129;
}
.about .test .mission-item:nth-child(2) .circ-outer::after {
  background-color: #D02129;
  right: -11px;
  margin: auto;
  bottom: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item:nth-child(2) .circ-outer::after {
    right: -7px;
  }
}
.about .test .mission-item:nth-child(2) .circ-mid {
  background-color: #D02129;
}
.about .test .mission-item:nth-child(2) .circ-mid.line-move::before {
  width: 1170px;
  transition: 1s ease;
}
.about .test .mission-item:nth-child(3) .circ-outer {
  border-color: #FECD08;
}
.about .test .mission-item:nth-child(3) .circ-outer::after {
  background-color: #FECD08;
  bottom: -11px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .about .test .mission-item:nth-child(3) .circ-outer::after {
    bottom: -7px;
  }
}
.about .test .mission-item:nth-child(3) .circ-mid {
  background-color: #FECD08;
}
.about .test .origin {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .about .test .origin {
    margin-bottom: 75px;
  }
}
.about .test .origin-tit {
  font-size: 64px;
  margin-bottom: 124px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about .test .origin-tit {
    font-size: 40px;
    margin-bottom: 35px;
  }
}
.about .test .origin-wrap {
  max-width: 1370px;
  width: 100%;
  margin: auto;
  background: url(../img/test/origin-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 400px 0 348px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .test .origin-wrap {
    padding: 300px 0 280px;
    background-size: 700px;
  }
}
.about .test .origin-txt {
  position: absolute;
  max-width: 557px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about .test .origin-txt {
    max-width: 100%;
    padding-left: 24px;
  }
}
.about .test .origin-txt.txt-top {
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .about .test .origin-txt.txt-top {
    top: 20px;
  }
}
.about .test .origin-txt.txt-btm {
  right: 0;
  bottom: 0;
}
.about .test .origin-txt p {
  font-size: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .about .test .origin-txt p {
    font-size: 16px;
  }
}
.about .test .origin-txt p:nth-child(1) {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .about .test .origin-txt p:nth-child(1) {
    margin-bottom: 16px;
  }
}
.about .test .timeline {
  position: relative;
  overflow: hidden;
}
.about .test .timeline .heading {
  width: calc(100% - 200px);
  margin: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about .test .timeline .heading {
    width: calc(100% - 50px);
  }
}
.about .test .timeline-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-btn {
    bottom: -95%;
  }
}
.about .test .timeline-btn #leftBtn {
  width: 56px;
  height: 56px;
  border: 2px solid #9DA0A5;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-right: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-btn #leftBtn {
    width: 45px;
    height: 45px;
  }
}
.about .test .timeline-btn #leftBtn .icn {
  width: 56px;
  height: 56px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease;
}
.about .test .timeline-btn #leftBtn .icn.moving {
  transform: translateX(-60px);
}
.about .test .timeline-btn #leftBtn .icn:nth-child(1) {
  margin-left: 0;
}
.about .test .timeline-btn #leftBtn .icn img {
  width: 21px;
  height: 18px;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-btn #leftBtn .icn {
    width: 45px;
    height: 45px;
  }
}
.about .test .timeline-btn #rightBtn {
  width: 56px;
  height: 56px;
  border: 2px solid #9DA0A5;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-btn #rightBtn {
    width: 45px;
    height: 45px;
  }
}
.about .test .timeline-btn #rightBtn .icn {
  width: 56px;
  height: 56px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease;
}
.about .test .timeline-btn #rightBtn .icn.moving2 {
  transform: translateX(60px);
}
.about .test .timeline-btn #rightBtn .icn img {
  width: 21px;
  height: 18px;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-btn #rightBtn .icn {
    width: 45px;
    height: 45px;
  }
}
.about .test .timeline-btn #rightBtn .icn:nth-child(1) {
  margin-left: -60px;
}
.about .test .timeline-tit {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-tit {
    font-size: 40px;
  }
}
.about .test .timeline-txt {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-txt {
    font-size: 14px;
  }
}
.about .test .timeline-line {
  display: block;
  border-bottom: 2px solid #9DA0A5;
  position: absolute;
  top: 71%;
  width: 100%;
}
.about .test .timeline-list {
  margin-top: 63px;
  width: 100%;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  position: relative;
  min-width: 1200px;
}
.about .test .timeline-list::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-list {
    margin-top: 85px;
  }
}
.about .test .timeline-item {
  max-width: 398px;
  width: 100%;
  height: 440px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  transition: all 1s ease-in-out;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-item {
    max-width: 282px;
    height: 351px;
  }
}
.about .test .timeline-item:after {
  content: "";
  display: block;
  background-color: #9DA0A5;
  max-width: 16px;
  width: 100%;
  height: 16px;
  position: absolute;
  border-radius: 50%;
  top: 58%;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-item:after {
    top: 56%;
  }
}
.about .test .timeline-item .month {
  font-size: 20px;
  color: #9DA0A5;
  transition: 0.8s ease-in-out;
  position: absolute;
  top: 40%;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-item .month {
    font-size: 14px;
  }
}
.about .test .timeline-item .year {
  font-size: 32px;
  color: #9DA0A5;
  transition: 0.8s ease-in-out;
  position: absolute;
  top: 45%;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-item .year {
    font-size: 24px;
  }
}
.about .test .timeline-item .desc {
  font-size: 20px;
  opacity: 0;
  transition: 0.8s ease-in-out;
  position: absolute;
  bottom: 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-item .desc {
    font-size: 14px;
  }
}
.about .test .timeline-item.current {
  margin-left: 100px !important;
  margin-right: 450px;
  transition: all 1s ease-in-out;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-item.current {
    margin-right: 1vw;
    margin-left: 25px !important;
  }
}
.about .test .timeline-item.current:after {
  left: -25%;
}
.about .test .timeline-item.current .month {
  font-size: 48px;
  color: #000;
  top: 0;
  transition: 0.8s ease-in-out;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-item.current .month {
    font-size: 40px;
  }
}
.about .test .timeline-item.current .year {
  font-size: 128px;
  color: #000;
  top: 8%;
  transition: 0.8s ease-in-out;
}
@media screen and (max-width: 768px) {
  .about .test .timeline-item.current .year {
    font-size: 64px;
    top: 13%;
  }
}
.about .test .timeline-item.current .desc {
  opacity: 1;
}
.about .ceo {
  margin-top: 150px;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .about .ceo {
    margin-top: 70px;
    margin-bottom: 75px;
  }
}
.about .ceo-wrapper {
  max-width: 1312px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .about .ceo-wrapper {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .about .ceo-wrapper {
    flex-direction: column;
    padding: 0 48px;
  }
}
@media screen and (max-width: 430px) {
  .about .ceo-wrapper {
    flex-direction: column;
    padding: 0 24px;
  }
}
.about .ceo__content {
  max-width: 818px;
  width: 100%;
  margin-right: 72px;
}
@media screen and (max-width: 768px) {
  .about .ceo__content {
    margin-right: 0;
  }
}
.about .ceo__title {
  font-size: 6.4rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .about .ceo__title {
    margin-bottom: 48px;
    font-size: 8rem;
  }
}
@media screen and (max-width: 430px) {
  .about .ceo__title {
    font-size: 4rem;
  }
}
.about .ceo__text {
  font-size: 2rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .about .ceo__text {
    font-size: 2.4rem;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 430px) {
  .about .ceo__text {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
}
.about .ceo__highlight {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .about .ceo__highlight {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 430px) {
  .about .ceo__highlight {
    font-size: 1.4rem;
  }
}
.about .ceo__img {
  max-width: 422px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about .ceo__img {
    max-width: 386px;
    margin: auto;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 430px) {
  .about .ceo__img {
    max-width: 193px;
    margin-bottom: 24px;
  }
}
.about .company-profile-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 64px;
  padding-left: 6.6%;
}
@media screen and (max-width: 768px) {
  .about .company-profile-wrapper {
    flex-direction: column;
    padding: 0 48px;
    gap: 0;
  }
}
@media screen and (max-width: 430px) {
  .about .company-profile-wrapper {
    padding: 0 24px;
  }
}
.about .company-profile__title {
  font-size: 6.4rem;
}
@media screen and (max-width: 768px) {
  .about .company-profile__title {
    font-size: 6rem;
  }
}
@media screen and (max-width: 430px) {
  .about .company-profile__title {
    font-size: 4rem;
  }
}
.about .company-profile__details {
  min-width: 600px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about .company-profile__details {
    min-width: initial;
    max-width: 100%;
  }
}
.about .company-profile__table {
  margin-top: 9%;
}
@media screen and (max-width: 768px) {
  .about .company-profile__table {
    margin-top: 64px;
  }
}
@media screen and (max-width: 430px) {
  .about .company-profile__table {
    margin-top: 32px;
  }
}
.about .company-profile__row {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  padding-bottom: 2%;
  border-bottom: 1px solid #9DA0A5;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .about .company-profile__row {
    font-size: 2.2rem;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .about .company-profile__row {
    font-size: 1.4rem;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.about .company-profile__row:last-child {
  margin-bottom: 0;
}
.about .company-profile__row .company-profile__value {
  font-weight: bold;
  text-align: right;
}
.about .company-profile__img {
  max-width: 638px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 48px 0 0 48px;
  /* Hover or show-map state */
  /* Fade OUT the image when overlay is active */
}
@media screen and (max-width: 768px) {
  .about .company-profile__img {
    max-width: 100%;
    margin-top: 64px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 430px) {
  .about .company-profile__img {
    margin-top: 32px;
    border-radius: 8px;
  }
}
.about .company-profile__img img {
  width: 100%;
  display: block;
  transition: opacity 320ms ease;
}
.about .company-profile__img .map-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
}
.about .company-profile__img:hover .map-overlay, .about .company-profile__img.show-map .map-overlay {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.about .company-profile__img:hover img, .about .company-profile__img.show-map img {
  opacity: 0.4;
}
.about .company-profile__img .map-frame {
  flex: 1 1 auto;
  border: 0;
  display: block;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

@keyframes fillRed {
  to {
    background-position: 0 0;
  }
}
.services {
  padding-top: 196px;
  margin-bottom: 300px;
}
@media screen and (max-width: 768px) {
  .services {
    padding-top: 260px;
    margin-bottom: 200px;
  }
}
@media screen and (max-width: 430px) {
  .services {
    padding-top: 144px;
    margin-bottom: 150px;
  }
}
.services .carousel-container {
  width: 100vw;
  /* full viewport width */
  max-width: 100%;
  max-height: 45.4vw;
  overflow: hidden;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .services .carousel-container {
    max-height: 170vw;
  }
}
.services .carousel-wrapper {
  display: flex;
  flex-direction: column;
  transition: transform 1.5s ease;
  /* smooth movement */
  will-change: transform;
  /* smooth slide */
}
.services .row-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.services .carousel-row {
  display: flex;
}
@media screen and (max-width: 768px) {
  .services .carousel-row {
    flex-direction: column;
    /* assume .carousel-row uses flex */
    align-items: stretch;
  }
}
.services .carousel-item {
  flex: 0 0 25vw;
  /* 4 items per row using viewport width */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .services .carousel-item {
    flex: 0 0 103vw;
  }
}
.services .carousel-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .services .carousel-item img {
    transform: translateY(35vw);
  }
}
.services .gradient-text::after {
  background: linear-gradient(177deg, #223E92 0%, #D02129 74%, #FECD08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.services__top {
  text-align: center;
}
.services__title {
  font-size: 12.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .services__title {
    font-size: 11.2rem;
  }
}
@media screen and (max-width: 430px) {
  .services__title {
    font-size: 5.6rem;
  }
}
.services__text {
  font-size: 6.4rem;
  color: #9DA0A5;
}
@media screen and (max-width: 768px) {
  .services__text {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 430px) {
  .services__text {
    font-size: 2rem;
  }
}
.services .carousel-text {
  color: #F5FBFF;
  position: absolute;
  max-width: 545px;
  width: 38%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(55, 42, 126, 0.8) 0%, rgba(49, 49, 49, 0.6) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* for Safari */
  top: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 2.9%;
}
@media screen and (max-width: 768px) {
  .services .carousel-text {
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 72px 48px;
  }
}
@media screen and (max-width: 430px) {
  .services .carousel-text {
    padding: 36px 24px;
  }
}
.services .shashin {
  position: relative;
  margin: 180px 0 140px 0;
}
@media screen and (max-width: 768px) {
  .services .shashin {
    margin: 182px 0 150px 0;
  }
}
.services .digi-humans {
  position: relative;
  margin-bottom: 140px;
}
.services .digi-humans .slide-arrow {
  display: none !important;
}
.services .digi-humans-text {
  color: #F5FBFF;
  position: absolute;
  max-width: 560px;
  width: 38%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* for Safari */
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 3.3%;
}
.services .digi-humans .carousel-text {
  background: linear-gradient(to bottom, rgba(175, 37, 43, 0.8) 0%, rgba(49, 49, 49, 0.6) 100%);
  left: 0;
}
.services .ai-dev {
  position: relative;
  margin-bottom: 140px;
}
.services .ai-dev__img {
  max-width: 100%;
  width: 100%;
}
.services .ai-dev .carousel-text {
  background: linear-gradient(to bottom, rgba(232, 198, 61, 0.8) 0%, rgba(49, 49, 49, 0.6) 100%);
}
.services .mobile-dev {
  position: relative;
}
.services .mobile-dev__img {
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .services .mobile-dev__img img {
    margin-left: 230px;
  }
}
.services .mobile-dev .carousel-text {
  left: 0;
  background: linear-gradient(to bottom, rgba(55, 42, 126, 0.8) 0%, rgba(49, 49, 49, 0.6) 100%);
}

.slick-vertical .slick-slide {
  border: none !important;
}

.slick-list {
  overflow: visible !important;
}

.slider-container {
  width: 100%;
  max-width: 100%;
  position: relative;
}

li {
  display: block;
}

.slick-slide {
  max-width: 100%;
  width: 378px;
  height: auto !important;
  outline: none;
}
.slick-slide:first-child .article-card {
  border-left: 2px solid #9DA0A5;
}

.slider img {
  width: 100%;
  height: auto;
}

.manual-arrow {
  position: absolute;
  top: -104px;
  right: 6.6%;
}
@media screen and (max-width: 768px) {
  .manual-arrow {
    display: none;
  }
}
.manual-arrow .manual {
  display: flex;
}
.manual-arrow .manual-prev {
  margin-right: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.manual-arrow .manual-prev .icn {
  width: 56px;
  height: 56px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease;
}
.manual-arrow .manual-prev .icn.moving {
  transform: translateX(-60px);
}
.manual-arrow .manual-prev .icn:nth-child(1) {
  margin-left: 0;
}
.manual-arrow .manual-prev .icn img {
  width: 21px;
  height: 18px;
}
@media screen and (max-width: 430px) {
  .manual-arrow .manual-prev .icn img {
    width: 15px;
    height: 12px;
  }
}
@media screen and (max-width: 768px) {
  .manual-arrow .manual-prev .icn {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 430px) {
  .manual-arrow .manual-prev .icn {
    width: 35px !important;
    height: 35px !important;
  }
}
.manual-arrow .manual-prev.slide-arrow {
  position: initial;
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #9DA0A5;
}
@media screen and (max-width: 768px) {
  .manual-arrow .manual-prev.slide-arrow {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 430px) {
  .manual-arrow .manual-prev.slide-arrow {
    width: 35px;
    height: 35px;
  }
}
.manual-arrow .manual-next {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.manual-arrow .manual-next .icn {
  width: 56px;
  height: 56px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 1s ease;
}
.manual-arrow .manual-next .icn.moving2 {
  transform: translateX(60px);
}
.manual-arrow .manual-next .icn:nth-child(1) {
  margin-left: -60px;
}
.manual-arrow .manual-next .icn img {
  width: 21px;
  height: 18px;
}
@media screen and (max-width: 430px) {
  .manual-arrow .manual-next .icn img {
    width: 15px;
    height: 12px;
  }
}
@media screen and (max-width: 768px) {
  .manual-arrow .manual-next .icn {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 430px) {
  .manual-arrow .manual-next .icn {
    width: 35px !important;
    height: 35px !important;
  }
}
.manual-arrow .manual-next.slide-arrow {
  position: initial;
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #9DA0A5;
}
@media screen and (max-width: 768px) {
  .manual-arrow .manual-next.slide-arrow {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 430px) {
  .manual-arrow .manual-next.slide-arrow {
    width: 35px;
    height: 35px;
  }
}
.manual-arrow .manual-prev2 {
  margin-right: 16px;
}
.manual-arrow .manual-prev2.slide-arrow {
  position: initial;
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-image: url("../img/arrow-scroll-left.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .manual-arrow .manual-prev2.slide-arrow {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 430px) {
  .manual-arrow .manual-prev2.slide-arrow {
    width: 35px !important;
    height: 35px !important;
  }
}
.manual-arrow .manual-next2.slide-arrow {
  position: initial;
  cursor: pointer;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-image: url("../img/arrow-scroll-right.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .manual-arrow .manual-next2.slide-arrow {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 430px) {
  .manual-arrow .manual-next2.slide-arrow {
    width: 35px !important;
    height: 35px !important;
  }
}

.slide-arrow {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 56px;
  height: 56px;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .slide-arrow {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 430px) {
  .slide-arrow {
    width: 35px !important;
    height: 35px !important;
  }
}

.prev-arrow {
  background-image: url("../img/arrow-scroll-left.png");
  right: 11.4%;
  top: -88px;
  z-index: 2;
  cursor: pointer;
}

.next-arrow {
  background-image: url("../img/arrow-scroll-right.png");
  right: 6.6%;
  top: -88px;
  z-index: 2;
  cursor: pointer;
}

.career {
  padding-top: 196px;
}
@media screen and (max-width: 768px) {
  .career {
    padding-top: 260px;
  }
}
@media screen and (max-width: 430px) {
  .career {
    padding-top: 144px;
  }
}
.career__top {
  max-width: 1042px;
  width: 100%;
  margin: auto;
  margin-bottom: 285px;
}
@media screen and (max-width: 768px) {
  .career__top {
    max-width: 100%;
    margin-bottom: 280px;
    padding: 0 56px;
  }
}
@media screen and (max-width: 430px) {
  .career__top {
    max-width: 100%;
    margin-bottom: 140px;
    padding: 0 18px;
  }
}
.career .animation-container {
  position: relative;
  overflow: hidden;
}
.career .gradient-text {
  line-height: normal;
}
.career .gradient-text::after {
  /* fallback if needed */
  background: linear-gradient(177deg, #223E92 23%, #D02129 97%, #FECD08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.career__title {
  font-size: 12.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .career__title {
    font-size: 11.2rem;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 430px) {
  .career__title {
    font-size: 5.6rem;
    margin-bottom: 8px;
  }
}
.career__title-sub {
  font-size: 6.4rem;
  text-align: center;
  color: #9DA0A5;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "SF Pro Display", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .career__title-sub {
    flex-wrap: wrap;
    font-size: 4rem;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 430px) {
  .career__title-sub {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
.career__title-sub .gradient-text {
  padding-bottom: 5px;
}
.career__text {
  font-size: 3.2rem;
  text-align: center;
  color: #9DA0A5;
}
@media screen and (max-width: 768px) {
  .career__text {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 430px) {
  .career__text {
    font-size: 1.3rem;
  }
}
.career-slider__container .slider-wrapper {
  margin-bottom: 150px;
  /* Each slider */
}
@media screen and (max-width: 768px) {
  .career-slider__container .slider-wrapper {
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 430px) {
  .career-slider__container .slider-wrapper {
    margin-bottom: 70px;
  }
}
.career-slider__container .slider-wrapper .career-images {
  width: 100%;
}
.career-slider__container .slider-wrapper .career-images img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.career-slider__container .slider-wrapper .career-images.bottom-slider {
  margin-top: 40px;
}
.career-slider__container .slider-wrapper .slick-slide {
  outline: none;
  padding: 0 10px;
}
.career .positions {
  max-width: 1312px;
  width: 100%;
  margin: auto;
  margin-bottom: 150px;
  /* ------------ FILTER TABS ------------ */
  /* ------------ JOB CARD ------------ */
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .career .positions {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .career .positions {
    max-width: 100%;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 430px) {
  .career .positions {
    margin-bottom: 70px;
  }
}
.career .positions__header {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .career .positions__header {
    padding-left: 48px;
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 430px) {
  .career .positions__header {
    padding-left: 24px;
    margin-bottom: 32px;
  }
}
.career .positions__title {
  font-size: 6.4rem;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .career .positions__title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 430px) {
  .career .positions__title {
    font-size: 4rem;
  }
}
.career .positions .gradient {
  background: linear-gradient(171deg, #223E92 22%, #D02129 68%, #FECD08 100%);
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.career .positions__text {
  font-size: 2rem;
  color: #9DA0A5;
}
@media screen and (max-width: 430px) {
  .career .positions__text {
    font-size: 1.4rem;
  }
}
.career .positions .filters {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 67px;
  overflow: auto;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .career .positions .filters {
    padding-left: 48px;
    flex-wrap: nowrap;
    display: -webkit-box;
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
  }
  .career .positions .filters::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
  }
}
@media screen and (max-width: 430px) {
  .career .positions .filters {
    gap: 8px;
    padding-left: 24px;
    margin-bottom: 32px;
  }
}
.career .positions .filters .filter {
  padding: 8px 60px;
  border-radius: 67px;
  border: 2px solid #0C0C14;
  background: #F5FBFF;
  cursor: pointer;
  font-size: 2rem;
  transition: 0.25s ease;
}
@media screen and (max-width: 768px) {
  .career .positions .filters .filter {
    font-size: 3.2rem;
    padding: 12px 74px;
  }
}
@media screen and (max-width: 430px) {
  .career .positions .filters .filter {
    font-size: 1.6rem;
    padding: 6px 36px;
  }
}
.career .positions .filters .filter:last-child {
  margin-right: 0;
}
.career .positions .filter.active {
  border: 2px solid #0C0C14;
}
.career .positions .filter:hover {
  background: #223E92;
  color: white;
  border: 2px solid transparent;
}
@media screen and (max-width: 768px) {
  .career .positions .jobs {
    padding: 0 24px;
  }
}
.career .positions .job {
  font-size: 3.2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 0 0 2px #0C0C14 inset;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 1s ease;
}
@media screen and (max-width: 768px) {
  .career .positions .job {
    font-size: 2rem;
    box-shadow: 0 0 0 3px #0C0C14 inset;
  }
}
.career .positions .job:last-child {
  margin-bottom: 0;
}
.career .positions .job a {
  padding: 41px 32px;
  width: 100%;
  position: relative;
}
.career .positions .job a::after {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  background-image: url("../img/icons/arrow-filter.png");
  background-repeat: no-repeat;
  position: absolute;
  right: 32px;
  top: 50%;
  transition: transform 0.4s ease;
  transform: translateY(-50%) rotate(-35deg);
}
@media screen and (max-width: 768px) {
  .career .positions .job a {
    padding: 28px 97px 28px 32px;
  }
}
.career .positions .job:hover {
  color: white;
  background: #223E92;
  box-shadow: 0 0 0 2px #223E92 inset;
  box-shadow: none;
}
.career .positions .job:hover a::after {
  background-image: url("../img/icons/arrow-filter-white.png");
  transform: translateY(-50%);
}
.career .positions .job.featured .arrow {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.career-slider {
  overflow: hidden;
}

.news {
  max-width: 1330px;
  width: 100%;
  margin: auto;
  padding-top: 196px;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 260px;
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 430px) {
  .news {
    padding-top: 144px;
    margin-bottom: 100px;
  }
}
.news__title {
  font-size: 12.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .news__title {
    font-size: 11.2rem;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 430px) {
  .news__title {
    font-size: 5.6rem;
    margin-bottom: 8px;
  }
}
.news__text {
  font-size: 3.2rem;
  text-align: center;
  color: #9DA0A5;
}
@media screen and (max-width: 768px) {
  .news__text {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 430px) {
  .news__text {
    font-size: 2rem;
  }
}
.news__top {
  margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .news__top {
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 430px) {
  .news__top {
    margin-bottom: 80px;
  }
}
.news .news-article {
  border: 3px solid #9DA0A5;
  border-radius: 8px;
  padding: 39px 46px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news .news-article {
    padding: 46px 58px;
  }
}
@media screen and (max-width: 430px) {
  .news .news-article {
    padding: 23px 29px;
  }
}
.news .news-article::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: #09111E;
  border-radius: 50%;
  transform: scale(0);
  /* invisible */
  transition: transform 1s ease;
  z-index: -1;
}
.news .news-article:hover::before {
  transform: scale(10);
}
.news .news-article:hover .news-article-title {
  color: #fff;
}
.news .news-article__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .news .news-article__list {
    max-width: 89%;
    width: 100%;
    margin: auto;
    flex-direction: column;
  }
}
.news .news-article__list li {
  max-width: 100%;
  width: calc(50% - 12px);
  margin-right: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .news .news-article__list li {
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.news .news-article__list li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (min-width: 769px) {
  .news .news-article__list li:nth-child(n+11) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .news .news-article__list li:last-child {
    margin-bottom: 0;
  }
}
.news .news-article .news-article-header {
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .news .news-article .news-article-header {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .news .news-article .news-article-header {
    margin-bottom: 10px;
  }
}
.news .news-article .news-article-header .meta {
  color: #9DA0A5;
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-family: "Host Grotesk", sans-serif;
}
@media screen and (max-width: 768px) {
  .news .news-article .news-article-header .meta {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 430px) {
  .news .news-article .news-article-header .meta {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}
.news .news-article .news-article-title {
  font-size: 2.4rem;
  color: #0C0C14;
  transition: color 0.5s ease 0.3s;
  /* delay of 1s */
}
@media screen and (max-width: 768px) {
  .news .news-article .news-article-title {
    font-size: 3.2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 430px) {
  .news .news-article .news-article-title {
    font-size: 1.6rem;
  }
}
.news .news-article .news-article-thumb {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news .news-article .news-article-thumb {
    max-width: 648px;
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .news .news-article .news-article-thumb {
    max-width: 319px;
  }
}
.news .news-article .news-article-thumb img {
  transition: transform 0.5s ease;
  /* smooth zoom */
}
.news .news-article .news-article-thumb img:hover {
  transform: scale(1.3);
  /* zoom in slightly */
}
@media screen and (max-width: 768px) {
  .news .news-article .news-article-thumb img {
    border-radius: 5px;
  }
}
.news .news-article .news-article-footer {
  color: #9DA0A5;
  margin-top: 16px;
  font-size: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .news .news-article .news-article-footer {
    margin-top: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 430px) {
  .news .news-article .news-article-footer {
    margin-top: 11px;
    font-size: 1.1rem;
    padding-right: 14px;
  }
}
.news .news-article .news-article-footer:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/story-arrow-up.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 430px) {
  .news .news-article .news-article-footer:after {
    width: 12px;
    height: 12px;
  }
}
.news .news-article__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  margin: auto;
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .news .news-article__btn {
    margin-top: 160px;
  }
}
@media screen and (max-width: 430px) {
  .news .news-article__btn {
    margin-top: 80px;
  }
}
.news .news-article__btn a {
  text-align: center;
  width: 100%;
  font-size: 2rem;
  display: block;
  padding: 9px 30px 9px 30px;
  font-size: 2rem;
  border-radius: 48px;
  border: 2px solid transparent;
}
@media screen and (max-width: 768px) {
  .news .news-article__btn a {
    font-size: 2.8rem;
    padding: 6px 0;
  }
}
@media screen and (max-width: 430px) {
  .news .news-article__btn a {
    font-size: 1.4rem;
    padding: 3px 14px;
  }
}
@media screen and (max-width: 768px) {
  .news .news-article__btn a::after {
    display: none;
  }
}

.media {
  max-width: 1330px;
  width: 100%;
  margin: auto;
  padding-top: 196px;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .media {
    padding-top: 260px;
    margin-bottom: 150px;
  }
}
@media screen and (max-width: 430px) {
  .media {
    padding-top: 144px;
    margin-bottom: 100px;
  }
}
.media__title {
  font-size: 12.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .media__title {
    font-size: 11.2rem;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 430px) {
  .media__title {
    font-size: 5.6rem;
    margin-bottom: 8px;
  }
}
.media__text {
  font-size: 3.2rem;
  text-align: center;
  color: #9DA0A5;
}
@media screen and (max-width: 768px) {
  .media__text {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 430px) {
  .media__text {
    font-size: 2rem;
  }
}
.media__top {
  margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .media__top {
    margin-bottom: 160px;
  }
}
@media screen and (max-width: 430px) {
  .media__top {
    margin-bottom: 80px;
  }
}
.media .media-article {
  border: 3px solid #9DA0A5;
  border-radius: 8px;
  padding: 39px 46px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .media .media-article {
    padding: 46px 58px;
  }
}
@media screen and (max-width: 430px) {
  .media .media-article {
    padding: 23px 29px;
  }
}
.media .media-article::before {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: #09111E;
  border-radius: 50%;
  transform: scale(0);
  /* invisible */
  transition: transform 1s ease;
  z-index: -1;
}
.media .media-article:hover::before {
  transform: scale(10);
}
.media .media-article:hover .media-article-title {
  color: #fff;
}
.media .media-article__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .media .media-article__list {
    max-width: 89%;
    width: 100%;
    margin: auto;
    flex-direction: column;
  }
}
.media .media-article__list li {
  max-width: 100%;
  width: calc(50% - 12px);
  margin-right: 24px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .media .media-article__list li {
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
}
.media .media-article__list li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (min-width: 769px) {
  .media .media-article__list li:nth-child(n+11) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .media .media-article__list li:last-child {
    margin-bottom: 0;
  }
}
.media .media-article .media-article-header {
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .media .media-article .media-article-header {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .media .media-article .media-article-header {
    margin-bottom: 10px;
  }
}
.media .media-article .media-article-header .meta {
  color: #9DA0A5;
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-family: "Host Grotesk", sans-serif;
}
@media screen and (max-width: 768px) {
  .media .media-article .media-article-header .meta {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 430px) {
  .media .media-article .media-article-header .meta {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}
.media .media-article .media-article-title {
  font-size: 2.4rem;
  color: #0C0C14;
  transition: color 0.5s ease 0.3s;
  /* delay of 1s */
}
@media screen and (max-width: 768px) {
  .media .media-article .media-article-title {
    font-size: 3.2rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 430px) {
  .media .media-article .media-article-title {
    font-size: 1.6rem;
  }
}
.media .media-article .media-article-thumb {
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .media .media-article .media-article-thumb {
    max-width: 648px;
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .media .media-article .media-article-thumb {
    max-width: 319px;
  }
}
.media .media-article .media-article-thumb img {
  transition: transform 0.5s ease;
  /* smooth zoom */
}
.media .media-article .media-article-thumb img:hover {
  transform: scale(1.3);
  /* zoom in slightly */
}
@media screen and (max-width: 768px) {
  .media .media-article .media-article-thumb img {
    border-radius: 5px;
  }
}
.media .media-article .media-article-footer {
  color: #9DA0A5;
  margin-top: 16px;
  font-size: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .media .media-article .media-article-footer {
    margin-top: 22px;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 430px) {
  .media .media-article .media-article-footer {
    margin-top: 11px;
    font-size: 1.1rem;
    padding-right: 14px;
  }
}
.media .media-article .media-article-footer:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/icons/story-arrow-up.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 430px) {
  .media .media-article .media-article-footer:after {
    width: 12px;
    height: 12px;
  }
}
.media .media-article__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  margin: auto;
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .media .media-article__btn {
    margin-top: 160px;
  }
}
@media screen and (max-width: 430px) {
  .media .media-article__btn {
    margin-top: 80px;
  }
}
.media .media-article__btn a {
  text-align: center;
  width: 100%;
  font-size: 2rem;
  display: block;
  padding: 9px 30px 9px 30px;
  font-size: 2rem;
  border-radius: 48px;
  border: 2px solid transparent;
}
@media screen and (max-width: 768px) {
  .media .media-article__btn a {
    font-size: 2.8rem;
    padding: 6px 0;
  }
}
@media screen and (max-width: 430px) {
  .media .media-article__btn a {
    font-size: 1.4rem;
    padding: 3px 14px;
  }
}
@media screen and (max-width: 768px) {
  .media .media-article__btn a::after {
    display: none;
  }
}

/* FULL WIDTH SECTION */
.contact-page {
  width: 100%;
  padding-top: 153px;
}
@media screen and (max-width: 768px) {
  .contact-page {
    padding-top: 160px;
  }
}
.contact-page .recruit {
  margin: 0;
}
.contact-page .gradient-text {
  vertical-align: baseline;
}
.contact-page__title {
  font-size: clamp(3.2rem, 4.5vw, 6.4rem);
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .contact-page__title {
    font-size: clamp(1.2rem, 8vw, 4.8rem);
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 430px) {
  .contact-page__title {
    font-size: clamp(2rem, 9.3vw, 4rem);
    margin-bottom: 16px;
  }
}
.contact-page__title .line:nth-child(1) {
  display: block;
}
.contact-page__title .line:nth-child(2), .contact-page__title .line:nth-child(3) {
  margin-right: 10px;
  display: inline-block;
  overflow: hidden;
  line-height: normal;
}
.contact-page__text {
  font-size: clamp(1.2rem, 1.58vw, 2rem);
  margin-bottom: 38.5px;
}
@media screen and (max-width: 768px) {
  .contact-page__text {
    font-size: clamp(1rem, 3.1vw, 2.8rem);
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .contact-page__text {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    margin-bottom: 16px;
  }
}
.contact-page__list {
  padding-left: 47px;
}
@media screen and (max-width: 768px) {
  .contact-page__list {
    padding-left: 0;
  }
}
.contact-page__list li {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-page__list li {
    font-size: clamp(1.2rem, 6vw, 2.8rem);
    margin-bottom: 11px;
    margin-left: 47px;
  }
}
@media screen and (max-width: 430px) {
  .contact-page__list li {
    font-size: 1.4rem;
    margin-bottom: 11px;
    margin-left: 39px;
  }
}
.contact-page__list li:last-child {
  margin-bottom: 0;
}
.contact-page__list li::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: -47px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 430px) {
  .contact-page__list li::before {
    width: 48px;
    height: 48px;
    left: -78px;
  }
}
@media screen and (max-width: 430px) {
  .contact-page__list li::before {
    width: 24px;
    height: 24px;
    left: -39px;
  }
}
.contact-page__list li:nth-child(1)::before {
  background-image: url("../img/icons/contact-icon01.png");
}
.contact-page__list li:nth-child(2)::before {
  background-image: url("../img/icons/contact-icon02.png");
}
.contact-page__list li:nth-child(3)::before {
  background-image: url("../img/icons/contact-icon03.png");
}
.contact-page .contact-page-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 6.6%;
  gap: 5%;
  margin-bottom: 229px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .contact-page .contact-page-wrapper {
    padding: 0 0 0 2.31%;
  }
}
@media screen and (max-width: 768px) {
  .contact-page .contact-page-wrapper {
    flex-direction: column;
    padding: 0;
  }
}
.contact-page .contact-page-wrapper .contact-page-left {
  flex: 1;
  max-width: 537px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-page-wrapper .contact-page-left {
    max-width: 100%;
    padding: 0 50px;
    margin-bottom: 128px;
  }
}
@media screen and (max-width: 430px) {
  .contact-page .contact-page-wrapper .contact-page-left {
    max-width: 100%;
    padding: 0 25px;
    margin-bottom: 64px;
  }
}
.contact-page .contact-page-wrapper .contact-page-form {
  flex: 1;
  padding: 3% 7.1% 3% 3%;
  border-radius: 32px 0 0 32px;
  /* gradient border */
  border: 6px solid transparent;
  border-right: none;
}
.contact-page .contact-page-wrapper .contact-page-form.box3 {
  /* CSS variables for animation */
  --border-angle: 0.5turn;
  --main-bg: conic-gradient(from var(--border-angle),
      #F5FBFF 100%,
      #F5FBFF 100%,
      #F5FBFF 100%,
      #F5FBFF 100%);
  /* Gradient border using your colors from the palette */
  --gradient-border: conic-gradient(from var(--border-angle),
      transparent 60%,
      #FECD08,
      /* Yellow */
      #D02129,
      /* Red */
      #223E92 99%,
      /* Blue */
      transparent);
  /* Background layers */
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
  background-size: calc(100% + 1px) calc(100% + 1px);
  background-position: center center;
  animation: bg3-spin 5s linear infinite;
  animation-delay: 4s;
}
@keyframes bg3-spin {
  to {
    --border-angle: 1.5turn;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .contact-page .contact-page-wrapper .contact-page-form {
    padding: 30px 2.31% 30px 30px;
  }
}
@media screen and (max-width: 768px) {
  .contact-page .contact-page-wrapper .contact-page-form {
    margin-left: 50px;
  }
}
@media screen and (max-width: 430px) {
  .contact-page .contact-page-wrapper .contact-page-form {
    margin-left: 25px;
    padding: 32px 34px 32px 18px;
  }
}
.contact-page .contact-page-wrapper .contact-page-form .input {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  font-size: 1.6rem;
  color: #9DA0A5;
  border: 1px solid #9DA0A5;
  border-radius: 16px;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  margin-bottom: 13px;
}
.contact-page .contact-page-wrapper .contact-page-form .input.select {
  cursor: pointer;
}
.contact-page .contact-page-wrapper .contact-page-form .row-2 {
  display: flex;
  gap: 15px;
}
.contact-page .contact-page-wrapper .contact-page-form .textarea {
  height: 120px;
  resize: none;
  margin-bottom: 24px;
}
.contact-page .contact-page-wrapper .contact-page-form .contact-page__privacy {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: #9DA0A5;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-page-wrapper .contact-page-form .contact-page__privacy {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-page .contact-page-wrapper .contact-page-form .contact-page__privacy {
    font-size: 1.2rem;
  }
}
.contact-page .contact-page-wrapper .contact-page-form .contact-page__privacy-link {
  color: #0C0C14;
  font-weight: 500;
  text-decoration: underline;
}
.contact-page .contact-page-wrapper .contact-page-form .submit-btn {
  cursor: pointer;
  text-align: left;
  max-width: 158px;
  width: 100%;
  padding: 9px 0 9px 32px;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-page-wrapper .contact-page-form .submit-btn {
    max-width: 100%;
    text-align: center;
    padding: 9px 0;
  }
}
@media screen and (max-width: 430px) {
  .contact-page .contact-page-wrapper .contact-page-form .submit-btn.box-bg::after {
    width: 24px;
    height: 24px;
    margin-top: 0;
  }
}

/* FULL WIDTH SECTION */
.policy {
  margin-bottom: 383px;
  padding-top: 96px;
}
@media screen and (max-width: 430px) {
  .policy {
    margin-bottom: 103px;
    padding-top: 56px;
  }
}
.policy .prev-button {
  font-size: 2rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .policy .prev-button {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .policy .prev-button {
    font-size: 1.4rem;
  }
}
.policy .prev-button__img {
  margin-right: 16px;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .policy .prev-button__img {
    margin-right: 16px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 430px) {
  .policy .prev-button__img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
  }
}
.policy .prev-button:hover {
  opacity: 0.6;
}
.policy__top {
  padding: 106px;
  background: linear-gradient(167deg, #223E92 29%, #D02129 73%, #FECD08 100%);
}
@media screen and (max-width: 768px) {
  .policy__top {
    padding: 48px;
  }
}
@media screen and (max-width: 430px) {
  .policy__top {
    padding: 24px;
  }
}
.policy__bottom {
  max-width: 1138px;
  width: 100%;
  margin: auto;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .policy__bottom {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .policy__bottom {
    padding: 0 48px;
    max-width: 100%;
    margin-top: 60px;
  }
}
@media screen and (max-width: 430px) {
  .policy__bottom {
    padding: 0 24px;
    margin-top: 52px;
  }
}
.policy__bottom-text {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .policy__bottom-text {
    font-size: 2.6rem;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 430px) {
  .policy__bottom-text {
    font-size: 1.4rem;
    margin-bottom: 48px;
  }
}
.policy__title {
  font-size: 6.4rem;
  color: #FFFFFF;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .policy__title {
    font-size: 5rem;
    margin-bottom: 16px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 430px) {
  .policy__title {
    font-size: 4.8rem;
    margin-bottom: 8px;
  }
}
.policy__text {
  font-size: 2rem;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .policy__text {
    font-size: 2.8;
  }
}
@media screen and (max-width: 430px) {
  .policy__text {
    font-size: 1.4;
  }
}
.policy-description {
  margin-bottom: 56px;
}
.policy-description__title {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .policy-description__title {
    font-size: 4.2rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .policy-description__title {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }
}
.policy-description__text {
  font-size: 2rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .policy-description__text {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 430px) {
  .policy-description__text {
    font-size: 1.4rem;
  }
}
.policy-description__text.margin {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .policy-description__text.margin {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .policy-description__text.margin {
    margin-bottom: 16px;
  }
}

.benefits {
  max-width: 1311px;
  width: 100%;
  margin: auto;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .benefits {
    max-width: 100%;
    padding: 0 48px;
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 430px) {
  .benefits {
    padding: 0 16px;
    margin-bottom: 70px;
  }
}
.benefits .gradient-hover {
  background: linear-gradient(171deg, #223E92 22%, #D02129 68%, #FECD08 100%);
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.benefits__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .benefits__list {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
  }
}
.benefits__list li {
  border: 3px solid #0C0C14;
  border-radius: 24px;
  max-width: 100%;
  width: calc(33.3333333333% - 16px);
  padding: 4.7% 3.7%;
  margin-right: 22px;
}
@media screen and (max-width: 768px) {
  .benefits__list li {
    width: 100%;
    margin-right: 0;
    padding: 24px;
    margin-bottom: 16px;
  }
}
.benefits__list li:nth-child(3n) {
  margin-right: 0;
}
.benefits__list li:nth-child(-n+3) {
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .benefits__list li:nth-child(-n+3) {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .benefits__list li:nth-child(-n+3) {
    margin-bottom: 16px;
  }
}
.benefits__list li:last-child {
  margin-bottom: 0;
}
.benefits__list li .benefits-card__title {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .benefits__list li .benefits-card__title {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
.benefits__list li .benefits-card__text {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .benefits__list li .benefits-card__text {
    font-size: 1.4rem;
  }
}
.benefits__title {
  font-size: 6.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .benefits__title {
    font-size: clamp(2.8rem, 8vw, 6rem);
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 430px) {
  .benefits__title {
    font-size: 3.8rem;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .benefits .img {
    width: 80px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 430px) {
  .benefits .img {
    width: 40px;
    margin-bottom: 16px;
  }
}

.workspace {
  text-align: center;
  overflow: hidden;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .workspace {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 768px) {
  .workspace {
    margin-bottom: 70px;
  }
}
.workspace__title {
  font-size: 6.4rem;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .workspace__title {
    font-size: clamp(2.8rem, 8vw, 5.6rem);
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 430px) {
  .workspace__title {
    font-size: 2.8rem;
    margin-bottom: 32px;
  }
}
.workspace .gradient-text {
  color: #0C0C14;
}
.workspace .gradient-text::after {
  background: linear-gradient(178deg, #223E92 11%, #D02129 55%, #FECD08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.workspace-images {
  width: 100%;
  overflow: hidden;
  /* breakpoints... */
}
.workspace-images .image-row {
  display: flex;
  gap: 20px;
  margin-left: -100px;
  margin-right: -100px;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 430px) {
  .workspace-images .image-row {
    margin-left: 10px;
    gap: 16px;
  }
}
.workspace-images .image-row.animate {
  animation: smallSlide 1s ease-in forwards;
}
.workspace-images .image-row img {
  width: 100%;
  max-width: 470px;
  height: auto;
  border-radius: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .workspace-images .image-row img {
    max-width: 300px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 430px) {
  .workspace-images .image-row img {
    max-width: 186px;
    border-radius: 16px;
  }
}
@keyframes smallSlide {
  0% {
    transform: translateX(-600px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

.graphic-designer {
  max-width: 1140px;
  width: 100%;
  margin: auto;
  padding-top: 196px;
}
@media screen and (max-width: 768px) {
  .graphic-designer {
    max-width: 100%;
    padding-top: 106px;
    margin-bottom: 280px;
    padding: 106px 48px 0 48px;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer {
    margin-top: 53px;
    padding: 53px 24px 0 24px;
    margin-bottom: 140px;
  }
}
.graphic-designer .prev-button {
  font-size: 2rem;
  color: #9DA0A5;
  display: flex;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .graphic-designer .prev-button {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer .prev-button {
    font-size: 1.4rem;
  }
}
.graphic-designer .prev-button__img {
  margin-right: 16px;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .graphic-designer .prev-button__img {
    margin-right: 16px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer .prev-button__img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
  }
}
.graphic-designer .prev-button:hover {
  opacity: 0.6;
}
.graphic-designer__top {
  margin-bottom: 67px;
}
@media screen and (max-width: 768px) {
  .graphic-designer__top {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__top {
    margin-bottom: 40px;
  }
}
.graphic-designer__title {
  font-size: 6.4rem;
  margin: 41px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .graphic-designer__title {
    font-size: 6.4rem;
    margin: 48px 0;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__title {
    font-size: 3.2rem;
    margin: 24px 0;
  }
}
.graphic-designer__text {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .graphic-designer__text {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__text {
    font-size: 1.4rem;
  }
}
.graphic-designer__img {
  margin-top: 67px;
}
@media screen and (max-width: 768px) {
  .graphic-designer__img {
    margin-top: 80px;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__img {
    margin-top: 40px;
  }
}
.graphic-designer__bottom {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .graphic-designer__bottom {
    margin-bottom: 140px;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__bottom {
    margin-bottom: 70px;
  }
}
.graphic-designer__bottom .job-description {
  margin-bottom: 54px;
}
.graphic-designer__bottom .job-description:last-child {
  margin-bottom: 0;
}
.graphic-designer__bottom .job-description__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #FFFFFF;
  padding: 10px 0 10px 36px;
  margin-bottom: 32px;
  background: linear-gradient(90deg, #223E92 0%, #D02129 54%, #FECD08 100%);
  position: relative;
}
.graphic-designer__bottom .job-description__title::after {
  content: "";
  display: block;
  width: 12px;
  height: 40px;
  background-color: #98A2C2;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .graphic-designer__bottom .job-description__title::after {
    width: 12px;
    height: 56px;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__bottom .job-description__title::after {
    width: 6px;
    height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .graphic-designer__bottom .job-description__title {
    font-size: 3.2rem;
    padding: 12px 0 12px 60px;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__bottom .job-description__title {
    font-size: 1.6rem;
    padding: 6px 0 6px 30px;
    margin-bottom: 24px;
  }
}
.graphic-designer__bottom .job-description__text {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .graphic-designer__bottom .job-description__text {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__bottom .job-description__text {
    font-size: 1.6rem;
  }
}
.graphic-designer__bottom .job-description__text.margin {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .graphic-designer__bottom .job-description__text.margin {
    margin-bottom: 54px;
  }
}
.graphic-designer__bottom .job-description .job-requirements {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .graphic-designer__bottom .job-description .job-requirements {
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__bottom .job-description .job-requirements {
    margin-bottom: 24px;
  }
}
.graphic-designer__bottom .job-description .job-requirements:last-child {
  margin-bottom: 0;
}
.graphic-designer__bottom .job-description .job-requirements__title {
  font-size: 2rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .graphic-designer__bottom .job-description .job-requirements__title {
    font-size: 3.2rem;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__bottom .job-description .job-requirements__title {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.graphic-designer__bottom .job-description .job-requirements__list li {
  font-size: 2rem;
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .graphic-designer__bottom .job-description .job-requirements__list li {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 430px) {
  .graphic-designer__bottom .job-description .job-requirements__list li {
    font-size: 1.6rem;
  }
}
.graphic-designer__bottom .job-description .job-requirements__list li:last-child {
  margin-bottom: 0;
}
.graphic-designer__bottom .job-description .job-requirements__list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: black;
  border-radius: 50%;
  position: absolute;
  left: 13px;
  top: 10px;
}
@media screen and (max-width: 430px) {
  .graphic-designer__bottom .job-description .job-requirements__list li::before {
    width: 5px;
    height: 5px;
    left: 9px;
    top: 10px;
  }
}

.more-news {
  max-width: 1140px;
  width: 100%;
  margin: auto;
  margin-bottom: 491px;
  padding-top: 196px;
}
@media screen and (max-width: 768px) {
  .more-news {
    max-width: 100%;
    padding: 106px 20px 0 20px;
    margin-bottom: 280px;
  }
}
@media screen and (max-width: 430px) {
  .more-news {
    margin-bottom: 140px;
    margin-top: 53px;
  }
}
.more-news__top {
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .more-news__top {
    margin: 30px 0;
  }
}
@media screen and (max-width: 430px) {
  .more-news__top {
    margin: 24px 0;
  }
}
.more-news .prev-button {
  font-size: 2rem;
  color: #9DA0A5;
  display: flex;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .more-news .prev-button {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .more-news .prev-button {
    font-size: 1.4rem;
  }
}
.more-news .prev-button__img {
  margin-right: 16px;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .more-news .prev-button__img {
    margin-right: 16px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 430px) {
  .more-news .prev-button__img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
  }
}
.more-news .prev-button:hover {
  opacity: 0.6;
}
.more-news__title {
  font-size: 6.4rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .more-news__title {
    font-size: 3.6rem;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 430px) {
  .more-news__title {
    font-size: 3.2rem;
    margin-bottom: 24px;
  }
}
.more-news__meta {
  font-size: 2rem;
  color: #9DA0A5;
  font-family: "Host Grotesk", sans-serif;
}
@media screen and (max-width: 768px) {
  .more-news__meta {
    font-size: 1.2rem;
  }
}
.more-news__desc {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .more-news__desc {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .more-news__desc {
    font-size: 1.4rem;
  }
}
.more-news__desc p:first-child {
  margin-bottom: 24px;
}
@media screen and (max-width: 430px) {
  .more-news__desc p:first-child {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 430px) {
  .more-news__desc p:first-child {
    margin-bottom: 15px;
  }
}
.more-news__img {
  max-width: 100%;
  width: 100%;
  margin: 67px 0;
}
@media screen and (max-width: 768px) {
  .more-news__img {
    margin: 50px 0;
  }
}
@media screen and (max-width: 430px) {
  .more-news__img {
    margin: 40px 0;
  }
}
.more-news__bottom .news-description {
  margin-bottom: 54px;
}
.more-news__bottom .news-description:last-child {
  margin-bottom: 0;
}
.more-news__bottom .news-description__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #FFFFFF;
  padding: 10px 0 10px 36px;
  margin-bottom: 32px;
  background: linear-gradient(90deg, #223E92 0%, #D02129 54%, #FECD08 100%);
  position: relative;
}
.more-news__bottom .news-description__title::after {
  content: "";
  display: block;
  width: 12px;
  height: 40px;
  background-color: #98A2C2;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .more-news__bottom .news-description__title::after {
    width: 12px;
    height: 56px;
  }
}
@media screen and (max-width: 430px) {
  .more-news__bottom .news-description__title::after {
    width: 6px;
    height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .more-news__bottom .news-description__title {
    font-size: 3.2rem;
    padding: 12px 0 12px 60px;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 430px) {
  .more-news__bottom .news-description__title {
    font-size: 1.6rem;
    padding: 6px 0 6px 30px;
    margin-bottom: 24px;
  }
}
.more-news__bottom .news-description__text {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .more-news__bottom .news-description__text {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 430px) {
  .more-news__bottom .news-description__text {
    font-size: 1.6rem;
  }
}
.more-news__bottom .news-description__text.margin {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .more-news__bottom .news-description__text.margin {
    margin-bottom: 54px;
  }
}
.more-news__bottom .news-description__img {
  display: flex;
  justify-content: space-between;
  margin-top: 54px;
}
.more-news__bottom .news-description__img img {
  width: calc(50% - 12px);
  max-width: 100%;
}

.news-list {
  margin-bottom: 379px;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .news-list {
    margin-bottom: 400px;
  }
}
@media screen and (max-width: 430px) {
  .news-list {
    margin-bottom: 251px;
  }
}
.news-list__header {
  padding-left: 6.6%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .news-list__header {
    padding-left: 48px;
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 430px) {
  .news-list__header {
    padding-left: 24px;
    margin-bottom: 22px;
  }
}
.news-list-inner {
  position: relative;
}
.news-list__title {
  font-size: 6.4rem;
}
@media screen and (max-width: 768px) {
  .news-list__title {
    font-size: 8rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 430px) {
  .news-list__title {
    font-size: 4rem;
    margin-bottom: 4px;
  }
}
.news-list .gradient {
  background: linear-gradient(171deg, #223E92 40%, #D02129 92%, #FECD08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.news-list__text {
  font-size: 2rem;
}
.news-list .slider-container {
  padding-left: 6.6%;
}
@media screen and (max-width: 768px) {
  .news-list .slider-container {
    padding-left: 48px;
  }
}
@media screen and (max-width: 430px) {
  .news-list .slider-container {
    padding-left: 24px;
  }
}
.news-list .slider-container .slick-list {
  margin-right: -21%;
  /* adjust negative margin for overlap */
}
@media screen and (max-width: 768px) {
  .news-list .slider-container .slick-slide {
    max-width: 600px;
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .news-list .slider-container .slick-slide {
    max-width: 383px;
    width: 100%;
  }
}
.news-list .slider-container .slick-slide.slick-current .article-card {
  border: 2px solid #9DA0A5;
}
.news-list__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  margin: auto;
  margin-top: 32px;
}
.news-list__btn a {
  text-align: left;
  width: 100%;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  padding: 9px 25px 9px 32px;
  border: 3px solid transparent;
  border-radius: 48px;
}
@media screen and (max-width: 768px) {
  .news-list__btn a {
    border-radius: 35px;
    border: 2px solid transparent;
    padding: 3px 10px 3px 14px;
    font-size: 1.4rem;
  }
}
.news-list__btn a::after {
  margin-top: 0;
}

.more-media {
  max-width: 1140px;
  width: 100%;
  margin: auto;
  margin-bottom: 491px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .more-media {
    max-width: 100%;
    padding: 0 20px;
    margin-bottom: 280px;
  }
}
@media screen and (max-width: 430px) {
  .more-media {
    margin-bottom: 140px;
  }
}
.more-media__top {
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .more-media__top {
    margin: 30px 0;
  }
}
@media screen and (max-width: 430px) {
  .more-media__top {
    margin: 24px 0;
  }
}
.more-media .prev-button {
  font-size: 2rem;
  color: #9DA0A5;
  display: flex;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .more-media .prev-button {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .more-media .prev-button {
    font-size: 1.4rem;
  }
}
.more-media .prev-button__img {
  margin-right: 16px;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .more-media .prev-button__img {
    margin-right: 16px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 430px) {
  .more-media .prev-button__img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
  }
}
.more-media .prev-button:hover {
  opacity: 0.6;
}
.more-media__title {
  font-size: 6.4rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .more-media__title {
    font-size: 3.6rem;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 430px) {
  .more-media__title {
    font-size: 3.2rem;
    margin-bottom: 24px;
  }
}
.more-media__meta {
  font-size: 2rem;
  color: #9DA0A5;
  font-family: "Host Grotesk", sans-serif;
}
@media screen and (max-width: 768px) {
  .more-media__meta {
    font-size: 1.2rem;
  }
}
.more-media__desc {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .more-media__desc {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 430px) {
  .more-media__desc {
    font-size: 1.4rem;
  }
}
.more-media__desc p:first-child {
  margin-bottom: 24px;
}
@media screen and (max-width: 430px) {
  .more-media__desc p:first-child {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 430px) {
  .more-media__desc p:first-child {
    margin-bottom: 15px;
  }
}
.more-media__img {
  max-width: 100%;
  width: 100%;
  margin: 67px 0;
}
@media screen and (max-width: 768px) {
  .more-media__img {
    margin: 50px 0;
  }
}
@media screen and (max-width: 430px) {
  .more-media__img {
    margin: 40px 0;
  }
}
.more-media__bottom .media-description {
  margin-bottom: 54px;
}
.more-media__bottom .media-description:last-child {
  margin-bottom: 0;
}
.more-media__bottom .media-description__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #FFFFFF;
  padding: 10px 0 10px 36px;
  margin-bottom: 32px;
  background: linear-gradient(90deg, #223E92 0%, #D02129 54%, #FECD08 100%);
  position: relative;
}
.more-media__bottom .media-description__title::after {
  content: "";
  display: block;
  width: 12px;
  height: 40px;
  background-color: #98A2C2;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .more-media__bottom .media-description__title::after {
    width: 12px;
    height: 56px;
  }
}
@media screen and (max-width: 430px) {
  .more-media__bottom .media-description__title::after {
    width: 6px;
    height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .more-media__bottom .media-description__title {
    font-size: 3.2rem;
    padding: 12px 0 12px 60px;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 430px) {
  .more-media__bottom .media-description__title {
    font-size: 1.6rem;
    padding: 6px 0 6px 30px;
    margin-bottom: 24px;
  }
}
.more-media__bottom .media-description__text {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .more-media__bottom .media-description__text {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 430px) {
  .more-media__bottom .media-description__text {
    font-size: 1.6rem;
  }
}
.more-media__bottom .media-description__text.margin {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .more-media__bottom .media-description__text.margin {
    margin-bottom: 54px;
  }
}
.more-media__bottom .media-description__img {
  display: flex;
  justify-content: space-between;
  margin-top: 54px;
}
.more-media__bottom .media-description__img img {
  width: calc(50% - 12px);
  max-width: 100%;
}

.media-list {
  margin-bottom: 379px;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .media-list {
    margin-bottom: 400px;
  }
}
@media screen and (max-width: 430px) {
  .media-list {
    margin-bottom: 251px;
  }
}
.media-list__header {
  padding-left: 6.6%;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .media-list__header {
    padding-left: 48px;
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 430px) {
  .media-list__header {
    padding-left: 24px;
    margin-bottom: 22px;
  }
}
.media-list-inner {
  position: relative;
}
.media-list__title {
  font-size: 6.4rem;
}
@media screen and (max-width: 768px) {
  .media-list__title {
    font-size: 8rem;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 430px) {
  .media-list__title {
    font-size: 4rem;
    margin-bottom: 4px;
  }
}
.media-list .gradient {
  background: linear-gradient(171deg, #223E92 40%, #D02129 92%, #FECD08 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.media-list__text {
  font-size: 2rem;
}
.media-list .slider-container {
  padding-left: 6.6%;
}
@media screen and (max-width: 768px) {
  .media-list .slider-container {
    padding-left: 48px;
  }
}
@media screen and (max-width: 430px) {
  .media-list .slider-container {
    padding-left: 24px;
  }
}
.media-list .slider-container .slick-list {
  margin-right: -21%;
  /* adjust negative margin for overlap */
}
@media screen and (max-width: 768px) {
  .media-list .slider-container .slick-slide {
    max-width: 600px;
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .media-list .slider-container .slick-slide {
    max-width: 383px;
    width: 100%;
  }
}
.media-list .slider-container .slick-slide.slick-current .article-card {
  border: 2px solid #9DA0A5;
}
.media-list__btn {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 100%;
  margin: auto;
  margin-top: 32px;
}
.media-list__btn a {
  text-align: left;
  width: 100%;
  display: block;
  font-size: 2rem;
  font-weight: 400;
  padding: 9px 25px 9px 32px;
  border: 3px solid transparent;
  border-radius: 48px;
}
@media screen and (max-width: 768px) {
  .media-list__btn a {
    border-radius: 35px;
    border: 2px solid transparent;
    padding: 3px 10px 3px 14px;
    font-size: 1.4rem;
  }
}
.media-list__btn a::after {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  #test .animate-section {
    margin: -190px 20px 0 20px;
  }
}
#test .circular-wrap {
  height: 550px;
  overflow: hidden;
  max-width: 1447px;
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
}
#test .circular-path {
  position: relative;
  padding-top: 450px;
  max-width: 1447px;
  width: 100%;
  margin: auto;
  margin-top: 60px;
}
#test .circular-path.shuffles div.shuffle {
  transform: rotate(225deg) translateX(730px);
}
#test .circular-path.shuffles div.shuffle.c-img-10 {
  transform: rotate(500.5deg) translateX(730px);
}
@media screen and (min-width: 769px) {
  #test .circular-path::before, #test .circular-path::after {
    content: "";
    max-width: 450px;
    height: 946px;
    width: 100%;
    position: absolute;
    z-index: 10;
    top: 37%;
  }
}
#test .circular-path::before {
  background: url(../img/test/shadow-left.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  left: 0%;
}
#test .circular-path::after {
  background: url(../img/test/shadow-right.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  right: -1%;
}
#test .c-path-item {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 2s ease-in;
  transition-timing-function: ease, step-start, cubic-bezier(0.1, 0.7, 1, 0.1);
  left: 0;
  right: 0;
  margin: auto;
  top: 150%;
}
#test .c-path-item img {
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
}
#test .c-path-item:nth-child(1) {
  transition-delay: 0.8s;
  transform: rotate(135deg) translateX(730px);
}
#test .c-path-item:nth-child(2) {
  transition-delay: 0.9s;
  transform: rotate(157.5deg) translateX(730px);
}
#test .c-path-item:nth-child(3) {
  transition-delay: 1s;
  transform: rotate(180deg) translateX(730px);
}
#test .c-path-item:nth-child(4) {
  transition-delay: 1.1s;
  transform: rotate(202.5deg) translateX(730px);
}
#test .c-path-item:nth-child(5) {
  transition-delay: 1.2s;
  transform: rotate(225deg) translateX(730px);
}
#test .c-path-item:nth-child(6) {
  transition-delay: 1.3s;
  transform: rotate(247.5deg) translateX(730px);
}
#test .c-path-item:nth-child(7) {
  transition-delay: 1.4s;
  transform: rotate(270deg) translateX(730px);
}
#test .c-path-item:nth-child(8) {
  transition-delay: 1.5s;
  transform: rotate(292.5deg) translateX(730px);
}
#test .c-path-item:nth-child(9) {
  transition-delay: 1.6s;
  transform: rotate(315deg) translateX(730px);
}
#test .c-path-item:nth-child(10) {
  transition-delay: 0.1s;
  transform: rotate(337.5deg) translateX(730px);
}
#test .c-path-item:nth-child(11) {
  transition-delay: 0.2s;
  transform: rotate(360deg) translateX(730px);
}
#test .c-path-item:nth-child(12) {
  transition-delay: 0.3s;
  transform: rotate(22.5deg) translateX(730px);
}
#test .c-path-item:nth-child(13) {
  transition-delay: 0.4s;
  transform: rotate(45deg) translateX(730px);
}
#test .c-path-item:nth-child(14) {
  transition-delay: 0.5s;
  transform: rotate(67.5deg) translateX(730px);
}
#test .c-path-item:nth-child(15) {
  transition-delay: 0.6s;
  transform: rotate(90deg) translateX(730px);
}
#test .c-path-item:nth-child(16) {
  transition-delay: 0.7s;
  transform: rotate(112.5deg) translateX(730px);
}

#dark-page .header-right .box {
  color: #F5FBFF;
  --main-bg: conic-gradient(from var(--border-angle),
          #0C0C14 100%,
          #0C0C14 100%,
          #0C0C14 100%,
          #0C0C14 100%);
}
#dark-page .header-right .box::after {
  background-image: url("../img/icons/arrow-contact.png");
}
#dark-page .contact-page-form.box3 {
  --main-bg: conic-gradient(from var(--border-angle),
          #0C0C14 100%,
          #0C0C14 100%,
          #0C0C14 100%,
          #0C0C14 100%);
}
#dark-page .contact-page-form .input {
  border: 1px solid #98A2C2;
  color: #98A2C2;
}
#dark-page .contact-page-form .input::-moz-placeholder {
  color: #98A2C2;
  opacity: 1;
  /* Fixes lower opacity default in Firefox */
}
#dark-page .contact-page-form .input::placeholder {
  color: #98A2C2;
  opacity: 1;
  /* Fixes lower opacity default in Firefox */
}
#dark-page .contact-page__list li:nth-child(1)::before {
  background-image: url("../img/icons/contact-icon01-bl.png");
}
#dark-page .contact-page__list li:nth-child(2)::before {
  background-image: url("../img/icons/contact-icon02-bl.png");
}
#dark-page .contact-page__list li:nth-child(3)::before {
  background-image: url("../img/icons/contact-icon03-bl.png");
}
#dark-page .contact-page__privacy {
  color: #98A2C2;
}
#dark-page .contact-page__privacy-link {
  color: #fff;
}
#dark-page img.view-dark {
  display: block !important;
}
#dark-page img.view-light {
  display: none;
}
#dark-page main {
  background-color: #0C0C14;
}
#dark-page main h1,
#dark-page main h2,
#dark-page main h3,
#dark-page main p,
#dark-page main li,
#dark-page main div {
  color: #fff;
}
#dark-page main .gradient-text {
  color: #fff;
}
#dark-page .about .test .mission-item-wrap {
  background-color: #0C0C14;
}
#dark-page .about .test .mission-line .cover {
  background-color: #0C0C14;
}
#dark-page .footer-contact.box {
  border-radius: 25px;
  --border-angle: 0turn;
  --main-bg: conic-gradient(from var(--border-angle),
          #0C0C14 100%,
          #0C0C14 100%,
          #0C0C14 100%,
          #0C0C14 100%);
  /* Gradient border using your colors from the palette */
  --gradient-border: conic-gradient(from var(--border-angle),
          transparent 25%,
          #FECD08,
          /* Yellow */
          #D02129,
          /* Red */
          #223E92 99%,
          /* Blue */
          transparent);
  /* Background layers */
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
}
#dark-page .footer-contact-container {
  background-color: #0C0C14;
  border-radius: 25px;
}
#dark-page .footer-contact-container h2,
#dark-page .footer-contact-container p,
#dark-page .footer-contact-container li,
#dark-page .footer-contact-container a {
  color: #fff !important;
}
#dark-page .footer-contact__list li:nth-child(1)::before {
  background-image: url(../img/icons/contact-icon01-bl.png);
}
#dark-page .footer-contact__list li:nth-child(2)::before {
  background-image: url(../img/icons/contact-icon02-bl.png);
}
#dark-page .footer-contact__list li:nth-child(3)::before {
  background-image: url(../img/icons/contact-icon03-bl.png);
}
#dark-page .footer-contact__btn .box-bg {
  --main-bg: conic-gradient(from var(--border-angle), #0C0C14 100%, #F5FBFF 100%, #F5FBFF 100%, #F5FBFF 100%);
}
#dark-page .footer-contact__btn a::after {
  background-image: url(../img/icons/arrow-contact.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#dark-page .footer {
  background: #fff;
}
#dark-page .footer div,
#dark-page .footer p,
#dark-page .footer a {
  color: #09111E !important;
}
#dark-page .footer .grow-line {
  background: #09111E !important;
}
#dark-page .circular-path::before {
  background: url(../img/test/shadow-left-bl.png);
  background-size: cover;
  background-position: center;
  left: 0%;
}
#dark-page .circular-path::after {
  background: url(../img/test/shadow-right-bl.png);
  background-size: cover;
  background-position: center;
  right: -1%;
}
#dark-page .header.other-page {
  background-color: #0C0C14;
}
#dark-page .header .nav__list li a {
  color: #98A2C2;
}
#dark-page .filter {
  border: 2px solid #F5FBFF;
  background: transparent;
}
#dark-page .filter.active {
  border: 2px solid transparent;
  background: #223E92;
}
#dark-page .filter:hover {
  background: #223E92;
  border: 2px solid transparent;
}
#dark-page .positions .job {
  background: transparent;
  border: 2px solid #F5FBFF;
}
#dark-page .positions .job a:after {
  background-image: url("../img/icons/arrow-filter-bl.png");
}
#dark-page .positions .job:hover {
  color: white;
  background: #223E92;
  box-shadow: 0 0 0 2px #223E92 inset;
  box-shadow: none;
}
#dark-page .positions .job:hover a::after {
  background-image: url("../img/icons/arrow-filter-bl.png");
  transform: translateY(-50%);
}
#dark-page .benefits__list li {
  border: 3px solid white;
}
#dark-page .box-bg {
  border: solid 3px transparent;
  border-radius: 35px;
  /* Keep background solid */
  color: white;
  --main-bg: conic-gradient(from var(--border-angle),
          #0C0C14 100%,
          #0C0C14 100%,
          #0C0C14 100%,
          #0C0C14 100%);
  /* Remove transparent parts from gradient border */
  --gradient-border: conic-gradient(from var(--border-angle),
          #FECD08,
          #D02129,
          #223E92,
          #FECD08);
  background: var(--main-bg) padding-box, var(--gradient-border) border-box;
  background-position: center center;
  /* Still spins but no transparency visible */
}
#dark-page .box-bg:hover {
  color: #F5FBFF;
  /* ✨ Hover background gradient (same as your Figma palette) */
  --main-bg: linear-gradient(90deg,
          #223E92 0%,
          /* Blue */
          #D02129 54%,
          /* Red */
          #FECD08 100%
          /* Yellow */
      );
  --gradient-border: linear-gradient(90deg,
          transparent 0%,
          /* Blue */
          transparent 0%,
          /* Red */
          transparent 0%
          /* Yellow */
      );
}
#dark-page .box-bg::after {
  background-image: url(../img/icons/arrow-contact.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.jp-only {
  display: none;
}

html[lang=ja] .jp-only {
  display: inline;
}

.translated-ltr .gradient-text.jp::after {
  top: -8px;
}
@media screen and (max-width: 768px) {
  .translated-ltr .gradient-text.jp::after {
    top: -4px;
  }
}
.translated-ltr .gradient-text.jp2::after {
  top: -15px;
}
@media screen and (max-width: 768px) {
  .translated-ltr .gradient-text.jp2::after {
    top: -10px;
  }
}
.translated-ltr .gradient-text.jp3 {
  display: block;
}
.translated-ltr .intro__title .gradient-text:nth-child(2) {
  display: none;
}
@media screen and (max-width: 768px) {
  .translated-ltr .about__text {
    font-size: clamp(1.2rem, 6.5vw, 6.4rem);
  }
}/*# sourceMappingURL=style.css.map */