/* CSS RESET */
html {
  box-sizing: border-box;
  font-size: 16px;
  scrollbar-width: none;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

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

@font-face {
  font-family: Code-Black;
  src: url(../../Code-Next/CodeNext-Black.otf);
}
@font-face {
  font-family: Code-Bold;
  src: url(../../Code-Next/CodeNext-Bold.otf);
}
@font-face {
  font-family: Code-Book;
  src: url(../../Code-Next/CodeNext-Book.otf);
}
@font-face {
  font-family: Code-Light;
  src: url(../../Code-Next/CodeNext-Light.otf);
}
@font-face {
  font-family: NVRFNSHD-Display;
  src: url(../../NVRFNSHD/NVRFNSHD-Display.ttf);
}
@font-face {
  font-family: NVRFNSHD-Display-Italic;
  src: url(../../NVRFNSHD/NVRFNSHD-DisplayItalic.ttf);
}
@font-face {
  font-family: NVRFNSHD-Italic;
  src: url(../../NVRFNSHD/NVRFNSHD-Italic.ttf);
}
@font-face {
  font-family: NVRFNSHD-Regular;
  src: url(../../NVRFNSHD/NVRFNSHD-Regular.ttf);
}
@font-face {
  font-family: NVRFNSHD-Regular;
  src: url(../../NVRFNSHD/NVRFNSHD-Regular.otf);
}

/*  */
:root {
  --header-height-desktop: 90px;
  --header-height-mobile: 75px;
  --swiper-slide-height: 100vh;

  --bg-black: #000000;
  --bg-black-light: #151515;
  --bg-white: #ffffff;

  --bg-gradient-pink: linear-gradient(
    45deg,
    rgb(85, 56, 93) 0%,
    rgb(215, 19, 103) 45%,
    rgb(215, 19, 103) 55%,
    rgb(85, 56, 93) 100%
  );

  --bg-gradient-blue: linear-gradient(
    45deg,
    rgb(41, 53, 86) 0%,
    rgb(0, 87, 225) 45%,
    rgb(0, 87, 225) 55%,
    rgb(41, 53, 86) 100%
  );

  --bg-gradient-orange: linear-gradient(
    45deg,
    rgb(86, 52, 41) 0%,
    rgb(225, 87, 0) 45%,
    rgb(225, 87, 0) 55%,
    rgb(86, 52, 41) 100%
  );

  --font-white: #ffffff;
  --font-black: #000000;

  --font-size-xlg: 40px;
  --font-size-lg: 27.5px;
  --font-size-md: 20px;
  --font-size-sm: 16px;
  --font-size-xsm: 13px;
  --font-size-2xsm: 12px;

  --spacing-2xsm: 5px;
  --spacing-xsm: 10px;
  --spacing-sm: 25px;
  --spacing-md: 50px;
  --spacing-lg: 75px;
  --spacing-xlg: 100px;

  --letter-spacing-sm: 1px;

  --line-height-normal: 1;
  --line-height-medium: 1.5;

  --management-img-xlg: 55vh;
  --management-img-lg: 120px;
  --management-img-slg: 105px;
  --management-img-md: 90px;
  --management-img-sm: 60px;

  --menu-gradient: linear-gradient(
    45deg,
    rgb(1, 110, 255) 0%,
    rgb(208, 31, 165) 45%,
    rgb(224, 32, 18) 55%,
    rgb(255, 205, 5) 100%
  );

  --swiper-pagination-bottom: 20px;
  --swiper-pagination-top: 20px;
}

* {
  color: var(--font-white);
  font-family: "NVRFNSHD-Display";
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-black);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-j-center-a-end {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.bg-black {
  background: var(--bg-black) !important;
}

.bg-gradient-pink {
  background: var(--bg-gradient-pink);
}
.bg-gradient-blue {
  background: var(--bg-gradient-blue);
}

.bg-gradient-orange {
  background: var(--bg-gradient-orange);
}

/*  */

.fcb-main-body {
  position: relative;
}

.fcb-header {
  position: fixed;
  z-index: 2;
  width: 100%;
  padding: var(--spacing-xsm) var(--spacing-md);
  height: var(--header-height-desktop);
  background-color: var(--bg-black);
}

.fcb-header__logo-container {
  margin-right: auto;
  position: relative;
  z-index: 3;
}

.fcb-header__logo-anchor {
  display: block;
  pointer-events: auto;
}

.fcb-header__logo-img {
  width: 330px;
}

.fc-header__right-menu {
  gap: var(--spacing-sm);
}

.fc-header__right-menu-button {
  background: transparent;
  border: none;
  cursor: pointer;
}

/*  */
.fcb-main-swiper {
  height: auto; /* this will make the swiper container adjust to its content */
}

.swiper-slide {
  height: var(--swiper-slide-height) !important;
  background-color: var(--bg-black);
  transition: transform 0.5s ease-out;
  overflow: hidden;
}

.flex-double {
  display: flex;
}

.flex-double__first-child,
.flex-double__second-child {
  width: 50%;
}

.flex-double__second-child {
  height: 100%;
  overflow: hidden;
}

.flex-double__text-container {
  font-size: var(--font-size-lg);
  letter-spacing: var(--letter-spacing-sm);
  color: var(--font-white);
  padding: var(--spacing-md) var(--spacing-lg);

  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: var(--spacing-sm);
  max-width: 40ch;
}

.flex-double__title {
  font-family: "Code-Bold";
}

.flex-double__text-container p {
  font-weight: 800;
}

.flex-double__img-item {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  will-change: transform;
}

.fcb-image-map {
  padding: 1rem;
}

.fcb-image-full-wh {
  object-fit: cover;
}

@media (max-width: 1200px) {
  .flex-double__img-item {
    object-position: center center;
  }
}

.flex-double__grid-container {
  width: 90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.grid-item {
  display: flex;
  gap: var(--spacing-sm);
  height: 180px;
}

.grid-item > * {
  width: 50%;
}

.grid-item__img {
  width: 80px;
}

.grid-item__text {
  font-family: "Code-Light";
}
/*  */

.video-wrapper {
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: scale(1);
}

.view-clients {
  flex-direction: column;
  gap: var(--spacing-sm);

  font-size: var(--font-size-md);
  letter-spacing: var(--letter-spacing-sm);
  line-height: var(--line-height-medium);
}

.view-clients__text-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.view-clients__text-container {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: var(--spacing-xsm);
  max-width: 90%;
}

.view-clients__text-container > * {
  max-width: 100%;
  padding: 0 var(--spacing-xsm);
}

.view-clients__link-container {
  padding-bottom: var(--spacing-sm);
}

.view-clients__link-container a {
  border: 1.5px solid var(--font-white);
  border-radius: var(--spacing-xsm);
  padding: var(--spacing-2xsm);
  text-decoration: none;
}

.best-cases-link-container {
  margin-top: var(--spacing-xsm);
}

.best-cases-link-container a {
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.best-cases-link-container a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--bg-gradient-orange);
  background-size: 400% 100%;
  animation: gradient 15s ease infinite;
}

/* FCB Management Section Styles */
.fcb-management {
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  color: var(--font-black);
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--spacing-xsm);
}

@media (max-width: 1200px) {
  .fcb-management {
    gap: var(--spacing-xsm);
  }
}

.fcb-management * {
  color: var(--font-black);
}

.fcb-management__header {
  font-size: var(--font-size-xlg);
  font-weight: 600;
}

.fcb-management__wrapper {
  align-items: flex-start;
  gap: var(--spacing-sm);
  width: 90%;
  max-width: 1200px;
  justify-content: center;
}

.middle-wrapper,
.bottom-wrapper {
  flex-wrap: wrap;
}

.middle-wrapper .fcb-management__item,
.bottom-wrapper .fcb-management__item {
  width: calc(var(--management-img-md) * 1.2); /* Base width on image height */
  margin: 0 var(--spacing-xsm);
}

.top-wrapper .fcb-management__item {
  width: calc(
    var(--management-img-lg) * 1.3
  ); /* Base width on larger image height */
  margin: 0 var(--spacing-sm);
}

@media (min-width: 1500px) {
  .middle-wrapper .fcb-management__item,
  .bottom-wrapper .fcb-management__item {
    width: calc(
      var(--management-img-md) * 1.6
    ); /* Base width on image height */
    margin: 0 var(--spacing-xsm);
  }

  .top-wrapper .fcb-management__item {
    width: calc(
      var(--management-img-lg) * 1.8
    ); /* Base width on larger image height */
    margin: 0 var(--spacing-sm);
  }
}

/* Update responsive styles */
@media (max-width: 1200px) {
  .fcb-management__wrapper {
    width: 100%;
  }
}

.bottom-wrapper {
  margin-bottom: var(--spacing-sm);
}

.fcb-management__item {
  flex-direction: column;
  gap: var(--spacing-2xsm);
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.fcb-management__item:hover {
  text-decoration: none;
  color: inherit;
}

.fcb-management__title {
  text-align: center;
  max-width: 20ch;
  font-size: var(--font-size-xsm);
  font-weight: 600;
}

.fcb-management__desc {
  text-align: center;
  max-width: 20ch;
  font-size: var(--font-size-2xsm);
}

.top-wrapper .fcb-management__item .fcb-management__img {
  height: var(--management-img-lg);
  width: auto;
}

@media (min-width: 1500px) {
  .top-wrapper .fcb-management__item .fcb-management__img {
    height: calc(var(--management-img-lg) + 6vh);
  }
}

@media (max-width: 1200px) {
  .top-wrapper .fcb-management__item .fcb-management__img {
    height: var(--management-img-slg);
  }
}

.middle-wrapper .fcb-management__item .fcb-management__img,
.bottom-wrapper .fcb-management__item .fcb-management__img {
  height: var(--management-img-md);
  width: auto;
}

@media (min-width: 1500px) {
  .middle-wrapper .fcb-management__item .fcb-management__img,
  .bottom-wrapper .fcb-management__item .fcb-management__img {
    height: calc(var(--management-img-lg) + 3vh);
    width: auto;
  }
}

.horizontal-swiper {
  width: 100%;
  height: 100%;
}

.horizontal-swiper .swiper-slide {
  background-color: var(--bg-white);
}

.horizontal-swiper .fcb-management__item {
  width: 100%;
  height: 100%;
  gap: var(--spacing-xsm);
}

.horizontal-swiper .fcb-management__title {
  font-size: var(--font-size-lg);
  color: var(--font-black);
}

.horizontal-swiper .fcb-management__desc {
  font-size: var(--font-size-sm);
  color: var(--font-black);
}

.horizontal-swiper .fcb-management__item .fcb-management__img {
  height: var(--management-img-xlg);
  width: auto;
}

@media (max-width: 600px) {
  .horizontal-swiper .fcb-management__item {
    justify-content: flex-start;
    padding-top: calc(var(--header-height-mobile) + 10px);
  }

  .horizontal-swiper .fcb-management__item .fcb-management__img {
    max-width: 80%;
    height: auto;
  }

  .horizontal-swiper .swiper-pagination-horizontal {
    top: 500px;
  }
}

/*  */

/* Swiper pagination custom styles */
.swiper-pagination-bullet {
  background: var(--bg-gradient-pink) !important;
  opacity: 0.4;
  margin-bottom: var(--spacing-sm) !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* Awards Swiper Pagination styles */
.awards-swiper-pagination {
  position: static;
  margin-top: var(--spacing-sm);
  width: fit-content !important;
  margin: auto;
}

.awards-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--bg-gradient-pink) !important;
  opacity: 0.4;
  margin: 0 4px;
}

.awards-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Styles to animate hide/show */
.hide {
  display: none;
  animation: vanish 0.3s;
}

.show {
  display: flex;
  animation: appear 0.3s;
}

@keyframes appear {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes vanish {
  from {
    display: flex;
    opacity: 1;
  }

  to {
    display: none;
    opacity: 0;
  }
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*  */

/* Scroll Indicator styles */
.scroll-indicator {
  position: fixed;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  color: var(--font-white);
  z-index: 100;
  font-size: var(--font-size-sm);
  font-family: "Code-Bold";
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  flex-direction: column;
  gap: var(--spacing-2xsm);
  width: 100%;
}

.scroll-indicator__text {
  position: relative;
  z-index: 1;
  font-family: "Code-Bold";
}

.scroll-indicator__sign {
  font-size: calc(var(--font-size-lg) * 0.8);
  transform: scaleY(1.15);
  transition: transform 0.3s ease;
  order: 2; /* Place sign after text by default */
  font-family: "Code-Bold";
}

.scroll-indicator.up {
  flex-direction: column-reverse;
}

.scroll-indicator.up .scroll-indicator__sign {
  transform: rotate(180deg) scaleY(1.15);
}

/* Media query for mobile devices */
@media (max-width: 600px) {
  .scroll-indicator {
    bottom: var(--spacing-sm);
    font-size: var(--font-size-xsm);
  }
}
/*  */

/* Overlay styles */
.overlay {
  position: absolute;
  z-index: 900;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Light overlay */
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease-in-out,
    visibility 0.3s ease-in-out;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}
/*  */

/* Right Menu Styles */
.fcb-right-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(500px, 100%);
  height: 100vh;
  background: var(--menu-gradient);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  padding: var(--spacing-xlg) var(--spacing-md) 0 var(--spacing-md);
  z-index: 999;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  font-family: "Code-Bold";
  font-size: var(--font-size-md);
}

.fcb-right-menu.show {
  right: 0;
}

.fcb-right-menu a,
.fcb-right-menu button,
.countries-dropdown__button,
.countries-dropdown__list li {
  font-family: "Code-Bold";
  font-size: var(--font-size-md);
}

.countries-dropdown__list li a:hover {
  text-decoration: underline;
}

.fcb-right-menu a {
  text-decoration: none;
  font-size: var(--font-size-md);
}

.fcb-right-menu ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xsm);
  font-size: var(--font-size-sm);
}

.fcb-right-menu ul li {
  padding-left: var(--spacing-sm);
}

.fcb-right-menu__close {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: var(--spacing-2xsm);
}

.countries-dropdown {
  position: relative;
  width: 100%;
}

.countries-dropdown__button {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--font-white);
  font-size: var(--font-size-sm);
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.countries-dropdown__list {
  display: none;
  margin-top: var(--spacing-sm);
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.countries-dropdown__list.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.countries-dropdown__button::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--font-white);
  border-bottom: 2px solid var(--font-white);
  margin-left: var(--spacing-xsm);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.countries-dropdown__button.active::after {
  transform: rotate(-135deg);
}

.fcb-right-menu__footer {
  margin-top: auto;
}

.fcb-right-menu__footer-links {
  justify-content: space-between;
}

.fcb-right-menu__footer-links a {
  font-size: var(--font-size-sm);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fcb-right-menu__social-wrapper {
  margin-top: var(--spacing-md);
  gap: var(--spacing-sm);
  padding-bottom: var(--spacing-md);
  justify-content: space-between;
}

.fcb-right-menu__social-icon {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.fcb-right-menu__social-icon:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

@media (max-width: 1200px) {
  .flex-double__second-child {
    align-items: center !important;
  }

  .flex-double__text-container {
    font-size: var(--font-size-md);
  }

  .view-clients__text-container {
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 1000px) {
  .fcb-header {
    padding: var(--spacing-xsm) var(--spacing-xsm);
  }

  .flex-double__first-child,
  .flex-double__second-child {
    width: 100%;
    height: 100%;
  }

  .flex-double__text-container {
    padding: var(--spacing-md) var(--spacing-md);
    gap: var(--spacing-xsm);
  }

  .view-clients {
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .view-clients__text-container {
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 600px) {
  .fcb-header {
    height: var(--header-height-mobile);
  }

  .fcb-header__logo-img {
    width: 220px;
  }

  .flex-double__text-container {
    padding: var(--spacing-md) var(--spacing-md);
  }

  .view-clients__text-container {
    gap: var(--spacing-sm);
  }

  .flex-double__grid-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(1fr);
  }
}

@media (max-width: 400px) {
  .flex-double__text-container {
    font-size: var(--font-size-sm);
    padding: var(--spacing-sm) var(--spacing-sm);
    gap: var(--spacing-sm);
  }

  .view-clients__text-container {
    font-size: var(--font-size-2xsm);
    gap: var(--spacing-2xsm);
  }

  .fcb-right-menu {
    padding: var(--spacing-lg) var(--spacing-sm) 0 var(--spacing-sm);
  }
}

/* Hover animations to interactive elements */
.fc-header__right-menu-button,
.fcb-right-menu a,
.fcb-right-menu__close,
.countries-dropdown__button,
.fcb-right-menu__social-icon {
  transition: transform 0.3s ease;
}

.fc-header__right-menu-button:hover,
.fcb-right-menu a:hover,
.fcb-right-menu__close:hover,
.countries-dropdown__button:hover,
.fcb-right-menu__social-icon:hover {
  transform: scale(1.1);
}

/* Footer slide styles */
.footer-slide {
  height: auto !important;
  min-height: fit-content !important;
  background-color: #000;
}

.footer-slide .swiper-slide {
  height: auto !important;
}

/* Ensure other slides maintain full height */
.swiper-slide:not(.footer-slide) {
  height: 100vh !important;
}

/* Footer styles */
.footer-slide {
  height: auto !important;
  min-height: fit-content !important;
  background-color: var(--bg-black);
}

.footer-content {
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
}

.footer-awards {
  width: 100%;
  height: 100%;
  align-items: flex-end;
}

.footer-awards__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: var(--spacing-md);
  padding: var(--spacing-xsm);
}

.footer-awards__swiper {
  display: none !important; /* Hide swiper by default */
  width: 100%;
}

.footer-awards__swiper .swiper-slide {
  height: auto !important;
  display: flex;
  justify-content: center;
}

@media (min-width: 1500px) {
  .footer-awards {
    align-items: center;
  }
}

@media (max-width: 600px) {
  .footer-awards {
    padding: 0;
    padding-bottom: 0;
  }

  .footer-awards__wrapper {
    display: none !important; /* Hide grid on mobile */
  }

  .footer-awards__swiper {
    display: block !important; /* Show swiper on mobile */
  }
}

.award-item {
  gap: var(--spacing-md);
}

.award-item__img {
  width: 80px;
}

.award-item__text {
  max-width: 120px;
  font-size: var(--font-size-xsm);
  color: #d9d9d9;
  font-family: Code-Light;
}

@media (max-width: 1200px) {
  .footer-awards__wrapper {
    font-size: var(--font-size-xsm);
    gap: var(--spacing-sm);
  }
}

@media (max-width: 1000px) {
  .award-item {
    gap: var(--spacing-sm);
  }
}

@media (max-width: 600px) {
  .footer-awards__wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: var(--spacing-md);
  }

  .award-item {
    gap: var(--spacing-sm);
  }
}

.footer-cta {
  width: 100%;
  flex-direction: column;
  background-color: var(--bg-black-light);
  padding: var(--spacing-xsm);
  gap: var(--spacing-sm);
  position: relative;
}

/* style for the animated border */
.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--menu-gradient);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

.footer-cta p {
  font-family: "NVRFNSHD-Display";
  font-size: var(--font-size-lg);
  font-weight: 600;
}

.footer-cta__links {
  gap: var(--spacing-md);
  text-underline-offset: 3px;
  padding: var(--spacing-sm);
}

.footer-cta__links a {
  font-family: "NVRFNSHD-Display";
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 1000px) {
  .footer-cta {
    padding: var(--spacing-xsm);
    gap: var(--spacing-xsm);
  }
}

@media (max-width: 600px) {
  .footer-cta {
    gap: var(--spacing-xsm);
  }
}

.footer-copyright {
  width: 100%;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm);
  justify-content: space-around;
}

.footer-social {
  text-align: center;
  gap: var(--spacing-md);
}

.footer-social ul {
  gap: var(--spacing-sm);
}

.footer-social ul li a {
  font-size: var(--font-size-md);
  transition: opacity 0.3s ease;
}

.footer-social ul li a:hover {
  opacity: 0.7;
}

.footer-social p {
  font-weight: 600;
}

.footer-social p a {
  text-decoration: none;
  font-size: var(--font-size-xsm);
}

.footer-menu ul {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-menu ul li a {
  text-decoration: underline;
  text-underline-offset: 1px;
  font-size: var(--font-size-xsm);
  transition: opacity 0.3s ease;
  font-weight: 600;
}

.footer-menu ul li a:hover {
  opacity: 0.7;
}

@media (max-width: 1000px) {
  .footer-copyright {
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-menu ul {
    align-items: center;
    gap: var(--spacing-xsm);
  }

  .footer-social ul {
    gap: var(--spacing-xsm);
  }
}
/*  */

/* Animation classes */
.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.slide-up.active {
  opacity: 1;
  transform: translateY(0);
}

.scale-down {
  transform: scale(1.15);
  transition: transform 0.8s ease;
}

.scale-down.active {
  transform: scale(1);
  padding:0px;
}
/*  */

.mobile-management-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg-white);
}

.mobile-management-wrapper .fcb-management__header {
  color: var(--font-black);
  margin-top: calc(var(--header-height-mobile) + var(--spacing-sm));
  margin-bottom: var(--spacing-xsm);
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-align: center;
}

.mobile-management-wrapper .horizontal-swiper {
  flex: 1;
  width: 100%;
}

@media (max-width: 600px) {
  .mobile-management-wrapper .fcb-management__header {
    font-size: calc(var(--font-size-xlg) * 0.7);
  }
}
