@charset "UTF-8";
@font-face {
  font-family: "Archivo";
  src: url("../fonts/font-web/Archivo-Regular.woff2") format("woff2"), url("../fonts/font-web/Archivo-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Albert Sans";
  src: url("../fonts/font-web/AlbertSans-Regular.woff2") format("woff2"), url("../fonts/font-web/AlbertSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/font-web/Archivo-Medium.woff2") format("woff2"), url("../fonts/font-web/Archivo-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/font-web/Archivo-Bold.woff2") format("woff2"), url("../fonts/font-web/Archivo-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/font-web/Archivo-SemiBold.woff2") format("woff2"), url("../fonts/font-web/Archivo-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
html {
  font-size: 16px;
}

@media (min-width: 992px) {
  html {
    font-size: clamp(9.4476190476px, 0.9523809524vw, 18.2857142857px);
  }
}
:root {
  --TTcapital_black: #000000;
  --TTcapital_white: #FFFFFF;
  --TTcapital_yellow: #FFBD93;
  --primary-gradient: linear-gradient(90deg,
      #FFBD93 0%,
      #FFF 46.15%,
      #376CFF 100%);
}

.ff-style {
  font-family: "Albert Sans", sans-serif;
}

.cl-black {
  color: var(--TTcapital_black);
}

.cl-white {
  color: white;
}

.cl-yellow {
  color: var(--TTcapital_yellow);
}

.f-italic {
  font-style: italic;
}

.fs-56 {
  font-size: 3.5rem;
}

.fs-48 {
  font-size: 3rem;
}

.fs-40 {
  font-size: 2.5rem;
}

.fs-32 {
  font-size: 2rem;
}

.fs-24 {
  font-size: 1.5rem;
}

.fs-18 {
  font-size: 1.125rem;
}

.fs-16 {
  font-size: 1rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-13 {
  font-size: 0.8125rem;
}

.fs-12 {
  font-size: 0.75rem;
}

.fs-10 {
  font-size: 0.625rem;
}

.fs-8 {
  font-size: 0.5rem;
}

.op-75 {
  opacity: 0.75;
}

.op-80 {
  opacity: 0.8;
}

.text-gradient {
  background: linear-gradient(0deg, #DEDDFF 0%, #FFF1E5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 0.625rem;
  margin-bottom: 1rem !important;
}

.j-container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  max-width: calc(100% - 4rem + 1.5rem);
}

@media (max-width: 991px) {
  .j-container {
    max-width: 100%;
  }
  .fs-56 {
    font-size: 36px;
  }
  .fs-48 {
    font-size: 32px;
  }
  .fs-40 {
    font-size: 28px;
  }
  .fs-32 {
    font-size: 24px;
  }
  .fs-24 {
    font-size: 20px;
  }
  .fs-18 {
    font-size: 18px;
  }
  .fs-16 {
    font-size: 15px;
  }
}
@property --neon-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes neonRun {
  to {
    --neon-angle: 360deg;
  }
}
.light_glass {
  position: relative;
  isolation: isolate;
  --neon-angle: 0deg;
}
.light_glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(from var(--neon-angle), transparent 0deg, rgba(170, 205, 255, 0.1) 30deg, rgba(170, 205, 255, 0.55) 62deg, #ffffff 75deg, rgba(170, 205, 255, 0.55) 88deg, rgba(170, 205, 255, 0.1) 120deg, transparent 165deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: neonRun 4s linear infinite;
  animation-play-state: paused;
}
.light_glass::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  width: 120%;
  height: 8rem;
  pointer-events: none;
  transform: translate(-50%, 50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(120, 175, 255, 0.55) 0%, rgba(120, 175, 255, 0.2) 45%, transparent 72%);
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.blue_glass {
  position: relative;
  isolation: isolate;
  --neon-angle: 0deg;
}
.blue_glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(from var(--neon-angle), transparent 0deg, rgba(74, 127, 224, 0.1) 30deg, rgba(74, 127, 224, 0.55) 62deg, #2b5cd9 75deg, rgba(74, 127, 224, 0.55) 88deg, rgba(74, 127, 224, 0.1) 120deg, transparent 165deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: neonRun 4s linear infinite;
  animation-play-state: paused;
}
.blue_glass::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  width: 120%;
  height: 5rem;
  pointer-events: none;
  transform: translate(-50%, 50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(43, 92, 217, 0.45) 0%, rgba(43, 92, 217, 0.2) 45%, transparent 72%);
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.light_glass.active::before, .light_glass:not(.glass_focus):hover::before, .light_glass.glass_focus:focus-within::before,
.blue_glass.active::before,
.blue_glass:not(.glass_focus):hover::before,
.blue_glass.glass_focus:focus-within::before {
  opacity: 1;
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  .light_glass.active::before, .light_glass:not(.glass_focus):hover::before, .light_glass.glass_focus:focus-within::before,
  .blue_glass.active::before,
  .blue_glass:not(.glass_focus):hover::before,
  .blue_glass.glass_focus:focus-within::before {
    animation-play-state: paused;
  }
}
.light_glass.active::after, .light_glass:not(.glass_focus):hover::after, .light_glass.glass_focus:focus-within::after,
.blue_glass.active::after,
.blue_glass:not(.glass_focus):hover::after,
.blue_glass.glass_focus:focus-within::after {
  opacity: 1;
}

.has-reveal body > section [data-reveal]:not([data-reveal-stagger]),
.has-reveal body > section [data-reveal-stagger] > * {
  visibility: hidden;
}

.image_glass {
  overflow: hidden;
  position: relative;
}
.image_glass img {
  transition: all 0.5s ease;
}
.image_glass::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  transition: transform 0.6s;
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -110%, 0);
  z-index: 1;
  pointer-events: none;
}
.image_glass:hover img {
  transform: scale(1.1);
}
.image_glass:hover::before {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 110%, 0);
}

@keyframes bannerScroll {
  0%, 100% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(6px);
  }
  70% {
    opacity: 0;
    transform: translateY(16px);
  }
}
@media (min-width: 992px) {
  body.fp-active {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  body.fp-active > section {
    position: absolute;
    inset: 0;
    height: 100vh;
    min-height: 0;
    will-change: transform;
  }
}
body {
  font-family: "Archivo", sans-serif;
  font-size: 0.875rem;
  text-rendering: geometricPrecision;
  color: var(--TTcapital_white);
}
body a {
  text-decoration: none;
  transition: all 0.5s ease;
}
body .btn.btn-blur, body .btn.btn-gradient, body .btn.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  line-height: 1.5;
  white-space: nowrap;
  color: var(--TTcapital_white);
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  -ms-border-radius: 0.75rem;
  -o-border-radius: 0.75rem;
  transition: all 0.5s ease;
  position: relative;
  isolation: isolate;
  --neon-angle: 0deg;
}
body .btn.btn-blur::before, body .btn.btn-gradient::before, body .btn.btn-line::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(from var(--neon-angle), transparent 0deg, rgba(170, 205, 255, 0.1) 30deg, rgba(170, 205, 255, 0.55) 62deg, #ffffff 75deg, rgba(170, 205, 255, 0.55) 88deg, rgba(170, 205, 255, 0.1) 120deg, transparent 165deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: neonRun 3s linear infinite;
  animation-play-state: paused;
}
body .btn.btn-blur::after, body .btn.btn-gradient::after, body .btn.btn-line::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  width: 120%;
  height: 1.75rem;
  pointer-events: none;
  transform: translate(-50%, 50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(120, 175, 255, 0.45) 0%, rgba(120, 175, 255, 0.2) 45%, transparent 72%);
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
body .btn.btn-blur:hover, body .btn.btn-gradient:hover, body .btn.btn-line:hover {
  transition: all 0.5s ease;
  background-color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.0425rem;
}
body .btn.btn-blur:hover::before, body .btn.btn-gradient:hover::before, body .btn.btn-line:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  body .btn.btn-blur:hover::before, body .btn.btn-gradient:hover::before, body .btn.btn-line:hover::before {
    animation-play-state: paused;
  }
}
body .btn.btn-blur:hover::after, body .btn.btn-gradient:hover::after, body .btn.btn-line:hover::after {
  opacity: 1;
}
body .btn.btn-blur {
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  opacity: 0.9;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(32px);
}
body .btn.btn-gradient {
  gap: 2rem;
  text-transform: uppercase;
  background: linear-gradient(90deg, #E5C39F 0%, #E5C39F 0%, #BFA98E 0%, #6D6570 0%, #12172E 52%, #12172E 100%);
  border: 0;
  border-radius: 0.75rem;
  transition: all 0.5s ease;
}
body .btn.btn-gradient .arrow_r {
  transform: rotate(-90deg);
}
body .btn.btn-line {
  gap: 2rem;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
body .btn.btn-line .arrow_r {
  transform: rotate(-90deg);
}
body .bg-gradient-text {
  background: var(--Linear-New, linear-gradient(90deg, #FFBD93 0%, #FFF 46.15%, #8A99C3 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#header_site {
  top: 2rem;
}
#header_site.standout .logo_site img {
  height: 2.525rem;
  width: auto;
}
#header_site.standout .menu_site li a {
  color: #000;
}
#header_site.standout .menu_site li:hover::before, #header_site.standout .menu_site li.current-menu-item::before, #header_site.standout .menu_site li.active::before {
  opacity: 1;
}
#header_site.standout .menu_site li:hover::after, #header_site.standout .menu_site li.current-menu-item::after, #header_site.standout .menu_site li.active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}
#header_site.standout .menu_site li:hover > a, #header_site.standout .menu_site li.current-menu-item > a, #header_site.standout .menu_site li.active > a {
  text-shadow: 0 0 0.75rem rgba(43, 92, 217, 0.45);
  opacity: 1;
}
#header_site.standout .language_site img {
  filter: brightness(0);
}
#header_site.standout .language_site li a {
  border-color: #FFBD93;
  color: #FFBD93;
}
#header_site.standout .btn-blur {
  border-color: #FFBD93;
}
#header_site.standout .btn-gradient {
  color: #fff !important;
}
#header_site.standout .btn-gradient img {
  filter: brightness(1);
}
#header_site.standout .btn-blur,
#header_site.standout .btn-gradient,
#header_site.standout .btn-line {
  position: relative;
  isolation: isolate;
  --neon-angle: 0deg;
}
#header_site.standout .btn-blur::before,
#header_site.standout .btn-gradient::before,
#header_site.standout .btn-line::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(from var(--neon-angle), transparent 0deg, rgba(74, 127, 224, 0.1) 30deg, rgba(74, 127, 224, 0.55) 62deg, #2b5cd9 75deg, rgba(74, 127, 224, 0.55) 88deg, rgba(74, 127, 224, 0.1) 120deg, transparent 165deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: neonRun 3s linear infinite;
  animation-play-state: paused;
}
#header_site.standout .btn-blur::after,
#header_site.standout .btn-gradient::after,
#header_site.standout .btn-line::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  width: 120%;
  height: 1.75rem;
  pointer-events: none;
  transform: translate(-50%, 50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(43, 92, 217, 0.45) 0%, rgba(43, 92, 217, 0.2) 45%, transparent 72%);
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#header_site.standout .btn-blur:hover::before,
#header_site.standout .btn-gradient:hover::before,
#header_site.standout .btn-line:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  #header_site.standout .btn-blur:hover::before,
  #header_site.standout .btn-gradient:hover::before,
  #header_site.standout .btn-line:hover::before {
    animation-play-state: paused;
  }
}
#header_site.standout .btn-blur:hover::after,
#header_site.standout .btn-gradient:hover::after,
#header_site.standout .btn-line:hover::after {
  opacity: 1;
}
#header_site.standout a {
  color: #000;
}
#header_site.standout a img {
  filter: brightness(0);
}
#header_site.standout .menu_tab span {
  background: #000;
}
body.menu-open #header_site.standout .menu_tab span {
  background: #fff;
}
#header_site .logo_site img {
  height: 2.525rem;
  width: auto;
}
#header_site .menu_site {
  display: flex;
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  -ms-border-radius: 0.75rem;
  -o-border-radius: 0.75rem;
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(32px);
  margin-bottom: 0;
  padding: 0.5rem 1.5rem;
  gap: 2rem;
  list-style: none;
}
#header_site .menu_site li {
  position: relative;
  isolation: isolate;
}
#header_site .menu_site li::before {
  content: "";
  position: absolute;
  inset: 0.5rem 0.75rem;
  z-index: -1;
  pointer-events: none;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
  background: linear-gradient(0deg, rgba(130, 175, 255, 0.18) 0%, rgba(130, 175, 255, 0.05) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#header_site .menu_site li::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  width: 115%;
  height: 2px;
  z-index: -1;
  pointer-events: none;
  transform: translateX(-50%) scaleX(0.5);
  background: linear-gradient(90deg, transparent 0%, rgba(120, 170, 255, 0.5) 18%, #eaf2ff 50%, rgba(120, 170, 255, 0.5) 82%, transparent 100%);
  box-shadow: 0 0 0.5rem rgba(150, 195, 255, 0.9), 0 0 1.25rem rgba(90, 150, 255, 0.7), 0 0 2.5rem rgba(60, 120, 255, 0.45);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.5s cubic-bezier(0.22, 0.9, 0.3, 1);
}
#header_site .menu_site li a {
  color: var(--TTcapital_white);
  opacity: 0.5;
  transition: opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), text-shadow 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
#header_site .menu_site li:hover::before, #header_site .menu_site li.current-menu-item::before, #header_site .menu_site li.active::before {
  opacity: 1;
}
#header_site .menu_site li:hover::after, #header_site .menu_site li.current-menu-item::after, #header_site .menu_site li.active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}
#header_site .menu_site li:hover > a, #header_site .menu_site li.current-menu-item > a, #header_site .menu_site li.active > a {
  opacity: 1;
  text-shadow: 0 0 0.75rem rgba(170, 205, 255, 0.8);
}
#header_site .language_site {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
#header_site .language_site li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  line-height: 1.5;
  color: var(--TTcapital_white);
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  opacity: 0.9;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(32px);
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  -ms-border-radius: 0.75rem;
  -o-border-radius: 0.75rem;
}
#header_site .menu_tab {
  width: 2rem;
  height: 1.125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#header_site .menu_tab span {
  width: 100%;
  height: 1px;
  background: #fff;
  display: block;
  transition: all 0.35s ease;
  transform-origin: center;
}
#header_site .menu_tab.active span:nth-child(1) {
  transform: translateY(0.53125rem) rotate(45deg);
}
#header_site .menu_tab.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
#header_site .menu_tab.active span:nth-child(3) {
  transform: translateY(-0.53125rem) rotate(-45deg);
}
#header_site .menu_mobile {
  position: fixed;
  inset: 0;
  z-index: -1;
  padding: 6.5rem 0 2.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(32px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.75rem);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
#header_site .menu_mobile.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#header_site .menu_mobile .menu_site {
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
#header_site .menu_mobile .menu_site li {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.15);
}
#header_site .menu_mobile .menu_site li::before {
  inset: -0.5rem -0.75rem;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
#header_site .menu_mobile .menu_site li::after {
  width: 100%;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(120, 170, 255, 0.5) 18%, #eaf2ff 50%, rgba(120, 170, 255, 0.5) 82%, transparent 100%);
}
#header_site .menu_mobile .menu_site li a {
  display: block;
  padding: 1rem 0.75rem;
  font-size: 1.125rem;
  color: var(--TTcapital_white);
}
#header_site .menu_mobile .menu_mobile_atc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

body.menu-open {
  overflow: hidden;
}

.tt_general {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .tt_general {
    min-height: auto;
  }
}
.tt_general::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 41.56%);
  z-index: 1;
}
@media (max-width: 991px) {
  .tt_general::before {
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.38) 41.56%);
  }
}
.tt_general .bg_general {
  position: absolute;
  inset: 0;
}
.tt_general .bg_general img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  position: none;
}
.tt_general .bg_general::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 42%);
  position: none;
}
.tt_general .bg_general .video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  mix-blend-mode: screen;
  position: none;
}
.tt_general .bg_general .video-wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tt_general .bg_general .png-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  position: none;
}
.tt_general .content_general {
  position: relative;
  margin-top: 7.75rem;
  z-index: 2;
  padding: 0 0.75rem;
}
@media (max-width: 991px) {
  .tt_general .content_general {
    margin-top: 30%;
  }
}
.tt_general .content_general .sub_title {
  line-height: 1.35;
  letter-spacing: 0.40625rem;
  text-transform: uppercase;
  text-indent: 0.40625rem;
  margin-bottom: 0;
}
.tt_general .content_general .title_general {
  line-height: 1.5;
  text-indent: 4rem;
  margin-bottom: 0;
  white-space: nowrap;
  background: linear-gradient(90deg, #8A99C3 0%, #FFF 53.85%, #FFBD93 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Albert Sans";
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 5rem;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .tt_general .content_general .title_general {
    letter-spacing: 0.625rem;
    text-indent: 0;
  }
}
.tt_general .content_general .shine_general {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58.125rem;
  max-width: 100%;
  pointer-events: none;
}
.tt_general .content_general .desc_general {
  line-height: 1.25;
  letter-spacing: 0.04375rem;
  max-width: 72ch;
  margin-bottom: 0;
}
.tt_general .scroll_general {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  letter-spacing: 0.0375rem;
}
.tt_general .scroll_general .banner_scroll {
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 26px;
  height: 42px;
  padding-top: 8px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
}
.tt_general .scroll_general .banner_scroll span {
  width: 3px;
  height: 8px;
  background-color: var(--TTcapital_white);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  animation: bannerScroll 1.8s ease infinite;
  -webkit-animation: bannerScroll 1.8s ease infinite;
}
.tt_general .scroll_general .banner_scroll:hover {
  border-color: #376CFF;
}
.tt_general .scroll_general .banner_scroll:hover span {
  background-color: #376CFF;
}

.tt_overview {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 1.875rem;
}
.tt_overview .bg_overview {
  position: absolute;
  inset: 0;
}
.tt_overview .bg_overview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tt_overview .bg_overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 12, 40, 0.25) 0%, rgba(2, 12, 40, 0) 60%);
}
.tt_overview .bg_overview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 12, 40, 0.5) 0%, rgba(2, 12, 40, 0) 60%);
  mix-blend-mode: soft-light;
}
.tt_overview .j-container {
  position: relative;
  z-index: 2;
}
.tt_overview .j-container .title_overview {
  background: var(--Linear444, linear-gradient(90deg, #E9DDCA 0%, #FFF 46.15%, #8A99C3 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tt_overview .j-container .reveal_line {
  max-width: 68ch;
}
.tt_overview .list_static {
  margin-top: 2rem;
}
.tt_overview .list_static .item_static {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.tt_overview .list_static .item_static .num_site {
  padding: 2rem;
  border-left: 0.5px solid rgba(255, 255, 255, 0.25);
  border-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.tt_overview .list_static .item_static .content_site {
  border-radius: 0 0 1rem 1rem;
  padding: 2rem 1rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.02) 100%);
  transition: background 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), border-color 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.tt_overview .list_static .item_static .head_static {
  min-height: 2.1875rem;
}
.tt_overview .list_static .item_static:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.45), 0 0 2.5rem rgba(90, 150, 255, 0.18);
}
.tt_overview .list_static .item_static:hover .num_site {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.02) 100%);
}
.tt_overview .list_static .item_static:hover .content_site {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%);
}
.tt_overview .list_static .item_static:first-child {
  border-left: 0;
}
.tt_overview .list_static .item_static .name_static {
  line-height: 1.25;
  letter-spacing: 0.04375rem;
  margin-bottom: 0px;
}
.tt_overview .list_static .item_static .number_static {
  line-height: 1;
  margin-top: 3.1875rem;
}
.tt_overview .list_static .item_static .number_static .num {
  font-size: 5rem;
  line-height: 1;
  background: linear-gradient(90deg, #F8DBC8 0%, #FFF 46.15%, #8A99C3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tt_overview .list_static .item_static .number_static .unit {
  line-height: 1;
}
.tt_overview .list_static .item_static .number_static .unit.plus {
  font-size: 2rem;
}
.tt_overview .list_static .item_static .desc_static {
  line-height: 1.25;
  letter-spacing: 0.04375rem;
  max-width: 20rem;
  margin-bottom: 0;
}
.tt_overview .brochure-btn {
  border-radius: 0.75rem;
  border: 0.5px solid var(--Line, rgba(255, 255, 255, 0.25));
  opacity: 0.9;
  background: rgba(0, 0, 0, 0.05);
  /* Glass */
  backdrop-filter: blur(32px);
  position: relative;
  isolation: isolate;
  --neon-angle: 0deg;
}
.tt_overview .brochure-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(from var(--neon-angle), transparent 0deg, rgba(170, 205, 255, 0.1) 30deg, rgba(170, 205, 255, 0.55) 62deg, #ffffff 75deg, rgba(170, 205, 255, 0.55) 88deg, rgba(170, 205, 255, 0.1) 120deg, transparent 165deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: neonRun 3s linear infinite;
  animation-play-state: paused;
}
.tt_overview .brochure-btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  width: 120%;
  height: 1.75rem;
  pointer-events: none;
  transform: translate(-50%, 50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(120, 175, 255, 0.45) 0%, rgba(120, 175, 255, 0.2) 45%, transparent 72%);
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.tt_overview .brochure-btn:hover {
  transition: all 0.5s ease;
  background-color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.0425rem;
}
.tt_overview .brochure-btn:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  .tt_overview .brochure-btn:hover::before {
    animation-play-state: paused;
  }
}
.tt_overview .brochure-btn:hover::after {
  opacity: 1;
}
.tt_overview .brochure-btn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: var(--White, #FFF);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
}
@media (max-width: 991px) {
  .tt_overview {
    height: auto;
    min-height: 100vh;
    padding: 5rem 0;
  }
  .tt_overview .list_static .item_static .number_static .num {
    font-size: 4rem;
  }
}

.tt_intro {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
.tt_intro .bg_intro {
  position: absolute;
  inset: 0;
}
.tt_intro .bg_intro img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tt_intro .content_intro {
  position: relative;
  z-index: 3;
  width: 60ch;
  max-width: 90%;
  margin: 25vh auto 0;
  letter-spacing: 0.04375rem;
}
.tt_intro .content_intro .title_intro {
  background: linear-gradient(90deg, #FFBD93 0%, #FFF 46.15%, #506397 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Archivo;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  text-transform: uppercase;
}
.tt_intro .content_intro p {
  line-height: 1.5;
  margin-bottom: 0.5625rem;
}
.tt_intro .content_intro p:last-child {
  margin-bottom: 0;
}
.tt_intro .clouds_intro {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.tt_intro .clouds_intro .cloud_layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 40%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 40%);
  opacity: 0;
}
@media (max-width: 991px) {
  .tt_intro {
    height: auto;
  }
}

.tt_exercise {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 991px) {
  .tt_exercise {
    height: auto;
    padding: 5rem 0;
  }
}
.tt_exercise .bg_exercise {
  position: absolute;
  inset: 0;
}
.tt_exercise .bg_exercise img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tt_exercise .bg_exercise::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 40, 0.2);
}
.tt_exercise .content_exercise {
  position: relative;
  z-index: 2;
  margin-top: 5.75rem;
}
@media (max-width: 991px) {
  .tt_exercise .content_exercise {
    margin-top: 0;
  }
}
.tt_exercise .content_exercise .title_exercise {
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 0 !important;
  background: var(--Linear-New, linear-gradient(90deg, #FFBD93 0%, #FFF 46.15%, #8A99C3 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tt_exercise .content_exercise .desc_exercise {
  max-width: 38.75rem;
  line-height: 1.25;
  letter-spacing: 0.04375rem;
  margin-bottom: 0;
}
.tt_exercise .slider_wrapper {
  position: relative;
}
.tt_exercise .slider_exercise {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  overflow: hidden;
}
.tt_exercise .slider_exercise .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
}
.tt_exercise .slider_exercise .swiper-slide {
  width: 40vw;
  height: 55vh;
}
@media (max-width: 991px) {
  .tt_exercise .slider_exercise .swiper-slide {
    width: 90vw;
    height: 35vh;
  }
}
.tt_exercise .slider_exercise .swiper-slide .box_slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.9;
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  -ms-border-radius: 0.75rem;
  -o-border-radius: 0.75rem;
  transform: scale(0.6);
  transition: transform 0.7s ease;
  border-radius: 1rem;
}
.tt_exercise .slider_exercise .swiper-slide .box_slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tt_exercise .slider_exercise .swiper-slide .box_slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.7s ease;
}
.tt_exercise .slider_exercise .swiper-slide .box_slide .tag_slide {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.625rem;
  line-height: 1.25;
  letter-spacing: 0.03125rem;
  padding: 0.125rem 0.5rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  opacity: 0;
  border-radius: 4rem;
  -webkit-border-radius: 4rem;
  -moz-border-radius: 4rem;
  -ms-border-radius: 4rem;
  -o-border-radius: 4rem;
  transition: opacity 0.7s ease;
}
.tt_exercise .slider_exercise .swiper-slide .caption_slide {
  position: absolute;
  left: 0;
  bottom: 4.375rem;
  z-index: 2;
  width: 100%;
  opacity: 0;
  padding: 0 1rem;
  transition: all 0.7s ease;
}
.tt_exercise .slider_exercise .swiper-slide .caption_slide p {
  line-height: 1.25;
  margin-bottom: 0;
}
.tt_exercise .slider_exercise .swiper-slide .caption_slide .name_slide {
  letter-spacing: 0.05rem;
}
.tt_exercise .slider_exercise .swiper-slide .caption_slide .sub_slide {
  letter-spacing: 0.04375rem;
  opacity: 0.8;
}
.tt_exercise .slider_exercise .swiper-slide.swiper-slide-active .box_slide {
  transform: scale(1);
}
.tt_exercise .slider_exercise .swiper-slide.swiper-slide-active .box_slide::after {
  opacity: 1;
}
.tt_exercise .slider_exercise .swiper-slide.swiper-slide-active .box_slide .tag_slide {
  opacity: 0.8;
}
.tt_exercise .slider_exercise .swiper-slide.swiper-slide-active .caption_slide {
  bottom: 1rem;
  opacity: 1;
}
.tt_exercise .control_exercise {
  position: relative;
  z-index: 2;
  width: 22.375rem;
  margin: 2rem auto 0;
}
.tt_exercise .control_exercise .fraction_slider {
  font-weight: 500;
  letter-spacing: 0.075rem;
}
.tt_exercise .control_exercise .fraction_slider .sep_slider {
  font-size: 0.5rem;
  letter-spacing: 0.05rem;
}
.tt_exercise .control_exercise .progress_slider {
  position: relative;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.tt_exercise .control_exercise .progress_slider span {
  position: absolute;
  left: 0;
  top: -0.5px;
  height: 2px;
  width: 0;
  background: var(--primary-gradient);
  transition: width 0.5s ease;
}
.tt_exercise .nav_slider {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  transform: translateY(-50%);
  transition: all 0.5s ease;
  background: transparent;
  border: 0;
}
.tt_exercise .nav_slider .btn_sight {
  position: relative;
  isolation: isolate;
  --neon-angle: 0deg;
}
.tt_exercise .nav_slider .btn_sight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(from var(--neon-angle), transparent 0deg, rgba(170, 205, 255, 0.1) 30deg, rgba(170, 205, 255, 0.55) 62deg, #ffffff 75deg, rgba(170, 205, 255, 0.55) 88deg, rgba(170, 205, 255, 0.1) 120deg, transparent 165deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: neonRun 3s linear infinite;
  animation-play-state: paused;
}
.tt_exercise .nav_slider .btn_sight::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 0;
  width: 120%;
  height: 1.75rem;
  pointer-events: none;
  transform: translate(-50%, 50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(120, 175, 255, 0.45) 0%, rgba(120, 175, 255, 0.2) 45%, transparent 72%);
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.tt_exercise .nav_slider .btn_sight {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.28569rem;
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(36.5714263916px);
  overflow: hidden;
}
.tt_exercise .nav_slider .btn_sight:hover {
  transition: all 0.5s ease;
  background-color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.0425rem;
}
.tt_exercise .nav_slider .btn_sight:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  .tt_exercise .nav_slider .btn_sight:hover::before {
    animation-play-state: paused;
  }
}
.tt_exercise .nav_slider .btn_sight:hover::after {
  opacity: 1;
}
.tt_exercise .nav_slider:hover {
  transition: all 0.5s ease;
}
.tt_exercise .nav_slider:hover img {
  transform: scale(1.2);
  transition: all 0.5s ease;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}
.tt_exercise .nav_slider img {
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
}
.tt_exercise .nav_slider.prev_slider {
  left: 1rem;
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .tt_exercise .nav_slider.prev_slider {
    left: 0;
  }
}
.tt_exercise .nav_slider.next_slider {
  right: 1rem;
}
@media (max-width: 991px) {
  .tt_exercise .nav_slider.next_slider {
    right: 0;
  }
}

/* Floorplan Section: 0px padding, 100% Full Content, Flush Edge-to-Edge */
#floorplan_site .slider_exercise .swiper-slide {
  width: 50vw;
  max-width: 860px;
  height: 52vh;
  max-height: 520px;
}
@media (max-width: 991px) {
  #floorplan_site .slider_exercise .swiper-slide {
    width: 90vw;
    height: 35vh;
  }
}
#floorplan_site .slider_exercise .swiper-slide .box_slide {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
#floorplan_site .slider_exercise .swiper-slide .box_slide img {
  padding: 0 !important;
  width: 100%;
  height: 100%;
  -o-object-fit: fill !important;
     object-fit: fill !important;
  display: block;
  border-radius: 1rem;
}
#floorplan_site .slider_exercise .swiper-slide .box_slide::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.5) 100%);
  pointer-events: none;
}

.tt_location {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-image: url("../images/bg-location.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  .tt_location {
    height: auto;
    padding: 3rem 0 0 0;
  }
}
.tt_location .map-gif {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: screen;
}
@media (max-width: 991px) {
  .tt_location .map-gif {
    position: unset;
  }
}
.tt_location .content-location {
  padding: 2rem 0px 0 5.625rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  .tt_location .content-location {
    padding: 0;
    height: auto;
  }
}
.tt_location .content-location .link-gg-map {
  border-radius: 0.75rem;
  border: 0.5px solid var(--White-25, rgba(255, 255, 255, 0.25));
  background: rgba(0, 0, 0, 0.05);
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2rem;
  transition: all 0.5s ease;
}
.tt_location .content-location .link-gg-map:hover {
  background: rgba(221, 221, 221, 0.4588235294);
  backdrop-filter: blur(32px);
  transition: all 0.5s ease;
}
.tt_location .content-location .link-gg-map a {
  padding: 0.5rem 0.75rem;
  font-size: 0.625rem;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tt_location .content-location .link-gg-map a svg {
  margin-left: 0.625rem;
}
.tt_location .content-location .table_location {
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  margin-top: 2rem;
}
.tt_location .content-location .table_location .head-table {
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.05);
}
.tt_location .content-location .table_location .content-table {
  padding: 0.5rem;
}
.tt_location .content-location .table_location .content-table .item-location {
  padding: 0.25rem 0;
  margin-bottom: 0.25rem;
}
.tt_location .content-location .table_location .content-table .item-location:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.tt_location .content-location .table_location .content-table .item-location.active .topic-location::after {
  transform: rotateX(180deg);
  transition: all 0.5s ease;
}
.tt_location .content-location .table_location .content-table .item-location .topic-location {
  display: flex;
  margin-bottom: 0;
  color: white;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  /* 15px */
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0px 0.5rem 0px;
  cursor: pointer;
}
.tt_location .content-location .table_location .content-table .item-location .topic-location::after {
  transition: all 0.5s ease;
  position: absolute;
  content: "";
  right: 0;
  top: 0.5rem;
  background-image: url("../images/down-icon.png");
  width: 1rem;
  height: 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.tt_location .content-location .table_location .content-table .item-location .list_locate {
  display: none;
}
.tt_location .content-location .table_location .content-table .item-location .list_locate ul {
  list-style: none;
  margin-bottom: 0;
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  padding-left: 1rem;
}
.tt_location .content-location .table_location .content-table .item-location .list_locate ul li {
  flex: 0 0 50%;
  width: 50%;
  padding: 0 12px;
}
.location-map-btn-wrap {
  margin-top: 1.25rem;
}
.btn-gmaps-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(13, 27, 62, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50px;
  color: #ffffff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.15);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn-gmaps-site::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: all 0.65s ease;
}
.btn-gmaps-site:hover::before {
  left: 100%;
}
.btn-gmaps-site:hover {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.45) 0%, rgba(20, 38, 85, 0.95) 100%);
  border-color: #d4af37;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.4);
}
.btn-gmaps-site .gmaps-pin-icon {
  color: #d4af37;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.btn-gmaps-site:hover .gmaps-pin-icon {
  transform: scale(1.2) translateY(-1px);
  color: #ffd700;
}
.btn-gmaps-site .gmaps-arrow-icon {
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.btn-gmaps-site:hover .gmaps-arrow-icon {
  transform: translateX(4px);
}

.tt_video {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  background-image: url("../images/bg-blue.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  .tt_video {
    min-height: auto;
    height: auto;
  }
}
.tt_video video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .tt_video video {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.tt_archive {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-image: url("../images/bg-white.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 8.125rem 0 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .tt_archive {
    height: auto;
    padding: 3rem 0;
  }
}
.tt_archive .invest_partner {
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(25px);
  padding: 2rem;
}
.tt_archive .invest_partner:not(:last-child) {
  margin-bottom: 0.5rem;
}
.tt_archive .invest_partner {
  overflow: hidden;
}
@media (max-width: 991px) {
  .tt_archive .invest_partner {
    padding: 1rem 0.5rem;
    margin-bottom: 2rem;
  }
}
.tt_archive .invest_partner .head_invest .logo-invest img {
  width: auto;
  height: 4.625rem;
}
.tt_archive .invest_partner .slide_partner-wrap {
  margin-top: 4rem;
  border-radius: 0.25rem;
  padding: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
@media (max-width: 991px) {
  .tt_archive .invest_partner .slide_partner-wrap {
    margin-top: 2rem;
  }
}
.tt_archive .invest_partner .slide_partner-wrap .slider_partner .partner-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tt_archive .invest_partner .slide_partner-wrap .slider_partner .partner-photo img {
  width: 5.625rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.tt_archive .invest_partner .list-block-partner {
  margin-top: 1.25rem;
}
.tt_archive .award_site {
  width: 100%;
  height: 100%;
  background-color: lightblue;
  position: relative;
  border-radius: 0.25rem;
  border: 0.5px solid var(--Line, rgba(255, 255, 255, 0.25));
  overflow: hidden;
}
.tt_archive .award_site::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%);
}
.tt_archive .award_site video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tt_archive .award_site .award-content {
  position: absolute;
  padding: 3rem 3rem 2rem;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .tt_archive .award_site .award-content {
    position: relative;
    z-index: 1;
    padding: 1rem;
  }
}
.tt_archive .award_site .award-content .award-logo .item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 0.625rem;
}
.tt_archive .award_site .award-content .award-logo .item:not(:last-child) {
  margin-bottom: 1rem;
}
.tt_archive .award_site .award-content .award-logo .item img {
  width: auto;
  height: 9rem;
}
.tt_archive .award_site .award-content .award-logo .item .name-award {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  /* 20px */
  letter-spacing: 0.05rem;
  margin-bottom: 0.625rem;
}
.tt_archive .award_site .award-content .award-logo .item .year-award {
  border-radius: 3.125rem;
  padding: 0.125rem 0.5rem;
  border: 1px solid var(--Line, rgba(255, 255, 255, 0.25));
  font-size: 0.625rem;
}

.tt_news {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-image: url("../images/bg-news.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 8.125rem 0 2.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .tt_news {
    height: auto;
    padding: 3rem 0;
  }
}
.tt_news .video-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
}
.tt_news .video-text svg {
  width: 100%;
  height: auto;
}
.tt_news .video-text .wrap-video {
  clip-path: url(#text-path);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.tt_news .desc_news {
  max-width: 58ch;
}
.tt_news .news_wrap {
  margin-top: 4rem;
}
.tt_news .news_wrap .news-feature {
  position: relative;
}
@media (max-width: 991px) {
  .tt_news .news_wrap .news-feature::after {
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg, #FFBD93 0, #FFF 46.15%, #376CFF 100%) !important;
  }
  .tt_news .news_wrap .news-feature {
    margin-bottom: 1.5rem;
    padding-bottom: 0px;
    height: auto !important;
  }
}
.tt_news .news_wrap .news-feature::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  /* độ dày border */
  background: linear-gradient(0deg, #FFBD93 0%, #FFF 46.15%, #376CFF 100%);
}
.tt_news .news_wrap .news-feature .thumb-news {
  height: 100%;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.tt_news .news_wrap .news-feature .thumb-news figure {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.tt_news .news_wrap .news-feature .thumb-news figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tt_news .news_wrap .news-feature .news-item-content {
  position: relative;
  padding: 0 2rem 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 991px) {
  .tt_news .news_wrap .news-feature .news-item-content {
    padding: 1rem 0;
  }
}
.tt_news .news_wrap .news-feature .news-item-content a {
  line-height: 150%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.tt_news .news_wrap .news-feature .news-item-content .except_news p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.tt_news .news_wrap .news-item:not(:last-child) {
  margin-bottom: 1rem;
}
.tt_news .news_wrap .news-item .thumb-news {
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.tt_news .news_wrap .news-item .thumb-news figure {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.tt_news .news_wrap .news-item .thumb-news figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s ease;
}
.tt_news .news_wrap .news-item .thumb-news figure img:hover {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
.tt_news .news_wrap .news-item .news-item-content {
  position: relative;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tt_news .news_wrap .news-item .news-item-content a {
  line-height: 150%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.tt_news .news_wrap .news-item .news-item-content .except_news p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
@media (max-width: 991px) {
  .tt_news .news_wrap .news-item .news-item-content {
    padding: 1rem 0;
  }
}
.tt_news .news_wrap .news-item .news-item-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  /* độ dày border */
  background: linear-gradient(90deg, #FFBD93 0%, #FFF 46.15%, #376CFF 100%);
}

.tt_footer {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-image: url("../images/bg-footer.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 8.125rem 0 0px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.tt_footer .moon-png {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-59%);
  width: auto;
  height: 15%;
}
.tt_footer .ct_item {
  position: relative;
  padding-left: 1rem;
}
.tt_footer .ct_item .ct_icon {
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 991px) {
  .tt_footer {
    height: auto;
    padding: 3rem 0;
  }
}
.tt_footer .building-ft {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.tt_footer .form_ft {
  border-radius: 1rem;
  border: 0.5px solid var(--Line, rgba(255, 255, 255, 0.25));
  background: rgba(4, 9, 18, 0.5);
  backdrop-filter: blur(32px);
  padding: 2rem;
  width: 80%;
  overflow: hidden;
}
.tt_footer .form_ft::before {
  animation-duration: 6s;
}
.tt_footer .form_ft::after {
  height: 10rem;
}
@media (max-width: 991px) {
  .tt_footer .form_ft {
    width: 100%;
  }
}
.tt_footer .form_ft .form_wrap .field-item {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.tt_footer .form_ft .form_wrap .field-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.5px;
  /* độ dày border */
  background: white;
  opacity: 0.5;
}
.tt_footer .form_ft .form_wrap .field-item:focus-within {
  box-shadow: none;
  outline: none;
}
.tt_footer .form_ft .form_wrap .field-item:focus-within::after {
  background: var(--primary-gradient);
}
.tt_footer .form_ft .form_wrap .field-item label {
  font-size: 0.75rem;
  opacity: 0.75;
}
.tt_footer .form_ft .form_wrap .field-item textarea:focus,
.tt_footer .form_ft .form_wrap .field-item input:focus {
  box-shadow: none;
  outline: none;
}
.tt_footer .form_ft .form_wrap .field-item textarea::-moz-placeholder, .tt_footer .form_ft .form_wrap .field-item input::-moz-placeholder {
  font-size: 0.75rem;
  color: white;
  opacity: 0.2;
}
.tt_footer .form_ft .form_wrap .field-item textarea::placeholder,
.tt_footer .form_ft .form_wrap .field-item input::placeholder {
  font-size: 0.75rem;
  color: white;
  opacity: 0.2;
}
.tt_footer .form_ft .form_wrap .field-item textarea,
.tt_footer .form_ft .form_wrap .field-item input {
  background-color: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  color: white;
  position: relative;
}
.tt_footer .form_ft .form_wrap .check-field .wpcf7-list-item {
  margin: 0;
}
.tt_footer .form_ft .form_wrap .check-field .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  color: #fff;
}
.tt_footer .form_ft .form_wrap .check-field .wpcf7-list-item label span {
  font-size: 0.625rem !important;
}
.tt_footer .form_ft .form_wrap .check-field .wpcf7-list-item input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  transition: 0.2s ease;
}
.tt_footer .form_ft .form_wrap .check-field .wpcf7-list-item input[type=checkbox]:focus {
  outline: none;
  box-shadow: none;
}
.tt_footer .form_ft .form_wrap .check-field .wpcf7-list-item input[type=checkbox]:checked {
  border-color: white;
}
.tt_footer .form_ft .form_wrap .check-field .wpcf7-list-item input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}
.tt_footer .form_ft .form_wrap .check-field .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 0.875rem;
  line-height: 1.5;
}
.tt_footer .form_ft .form_wrap .check-field .wpcf7-list-item .wpcf7-list-item-label a {
  color: inherit;
  text-decoration: underline;
}
.tt_footer .form_ft .form_wrap .btn-form {
  margin-top: 1.5rem;
  position: relative;
  width: 100%;
  height: 2.375rem;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  border-radius: 0.75rem;
  background-image: url("../images/bg-btn.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.5s ease;
  position: relative;
  isolation: isolate;
  --neon-angle: 0deg;
}
.tt_footer .form_ft .form_wrap .btn-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(from var(--neon-angle), transparent 0deg, rgba(170, 205, 255, 0.1) 30deg, rgba(170, 205, 255, 0.55) 62deg, #ffffff 75deg, rgba(170, 205, 255, 0.55) 88deg, rgba(170, 205, 255, 0.1) 120deg, transparent 165deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: neonRun 3s linear infinite;
  animation-play-state: paused;
}
.tt_footer .form_ft .form_wrap .btn-form:hover {
  opacity: 0.7;
  transition: all 0.5s ease;
}
.tt_footer .form_ft .form_wrap .btn-form:hover::before {
  opacity: 1;
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  .tt_footer .form_ft .form_wrap .btn-form:hover::before {
    animation-play-state: paused;
  }
}
.tt_footer .form_ft .form_wrap .btn-form:hover::after {
  opacity: 1;
}
.tt_footer .form_ft .form_wrap .btn-form::after {
  position: absolute;
  content: "";
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/right-angle.png");
  width: 0.9375rem;
  height: 0.9375rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.tt_footer .form_ft .form_wrap .btn-form input {
  padding: 0 2rem;
  background-color: transparent;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  border: 0;
}
.tt_footer .list-social {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
  display: flex;
  width: 40%;
}
@media (max-width: 991px) {
  .tt_footer .list-social {
    width: 100%;
  }
}
.tt_footer .list-social li {
  position: relative;
  padding-right: 0.625rem;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
.tt_footer .list-social li:hover {
  opacity: 0.7;
  transition: all 0.5s ease;
}
.tt_footer .list-social li::after {
  position: absolute;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: url("../images/link-social.png") no-repeat center/contain;
}
.tt_footer .list-social li::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  content: "";
}
.tt_footer .list-social li a {
  color: var(--White, #FFF);
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.0375rem;
  text-transform: uppercase;
}
.tt_footer .copy_right {
  padding: 1.375rem 0;
  position: relative;
  z-index: 1;
  width: 100%;
}
.tt_footer .copy_right .policy {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
  display: flex;
}
.tt_footer .copy_right .policy li {
  position: relative;
  margin-right: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.5s ease;
}
.tt_footer .copy_right .policy li:hover {
  opacity: 0.7;
  transition: all 0.5s ease;
}
.tt_footer .copy_right .policy li a {
  color: var(--White, #FFF);
  text-align: center;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.0375rem;
  text-decoration: underline;
}
.tt_footer .copy_right .btn-back-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.tt_footer .copy_right .btn-back-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
}
.tt_footer .copy_right .btn-back-top span {
  text-transform: uppercase;
  font-size: 0.625rem;
  padding-top: 0.625rem;
}
.tt_footer .copy_right .btn-back-top .square {
  width: 2.375rem;
  height: 2.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.05);
  /* Glass */
  backdrop-filter: blur(32px);
  animation: bounceUpDown 1.5s infinite ease-in-out;
  position: relative;
  isolation: isolate;
  --neon-angle: 0deg;
}
.tt_footer .copy_right .btn-back-top .square::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: conic-gradient(from var(--neon-angle), transparent 0deg, rgba(170, 205, 255, 0.1) 30deg, rgba(170, 205, 255, 0.55) 62deg, #ffffff 75deg, rgba(170, 205, 255, 0.55) 88deg, rgba(170, 205, 255, 0.1) 120deg, transparent 165deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: neonRun 3s linear infinite;
  animation-play-state: paused;
}
.tt_footer .copy_right .btn-back-top:hover .square::before {
  opacity: 1;
  animation-play-state: running;
}
@media (prefers-reduced-motion: reduce) {
  .tt_footer .copy_right .btn-back-top:hover .square::before {
    animation-play-state: paused;
  }
}
.tt_footer .copy_right .btn-back-top:hover .square::after {
  opacity: 1;
}
@keyframes bounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.375rem);
  }
}

.page_404 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-image: url("../images/bg-blue.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
}
.page_404 .section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}
.page_404 .section h1 {
  line-height: 1.5;
  text-indent: 1.25rem;
  margin-bottom: 0;
  white-space: nowrap;
  font-size: 12.5rem;
  background: linear-gradient(90deg, #8A99C3 0%, #FFF 53.85%, #FFBD93 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Albert Sans";
  font-style: normal;
  font-weight: 400;
  letter-spacing: 5rem;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .page_404 .section h1 {
    letter-spacing: normal;
    font-size: 5rem;
  }
}
.page_404 .section .back-home {
  margin-top: 3rem;
  display: inline-block;
  background-color: transparent;
  border: 1px solid #fff;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.75rem 1rem 0.6rem;
  transition: all 0.2s linear;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  -webkit-transition: background-color 0s 600000s, color 0s 600000s !important;
  transition: background-color 0s 600000s, color 0s 600000s !important;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-spinner {
  position: absolute;
  pointer-events: none;
  margin: 0;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #F8ECCE;
  background: #F8ECCE;
  color: #15191A;
  margin: 1rem 0 0;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #56624B;
  background: #56624B;
  color: #ffffff;
  margin: 1rem 0 0;
}

.wpcf7-not-valid-tip {
  position: absolute;
  right: 0.3125rem;
  bottom: 0.875rem;
  pointer-events: none;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-acceptance .wpcf7-list-item label {
  cursor: pointer;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #E5C39F 0%, #E5C39F 0%, #BFA98E 0%, #6D6570 0%, #12172E 52%, #12172E 100%);
  transition: opacity 0.7s ease;
}
#preloader .logo_preloader {
  position: relative;
  width: min(390px, 90vw);
  height: auto;
  opacity: 1;
  animation: preloaderFadeIn 1s ease;
}
#preloader.is-flying {
  pointer-events: none;
}
#preloader.is-flying::before {
  opacity: 0;
}
#preloader.is-flying .logo_preloader {
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.35s ease;
}
#preloader.is-done .logo_preloader {
  opacity: 0;
}
#preloader.hide {
  animation: preloaderFadeOut 0.8s ease forwards;
}

#preloader ~ #header_site .logo_site .logo {
  opacity: 0;
}

#preloader.is-done ~ #header_site .logo_site .logo,
#preloader.hide ~ #header_site .logo_site .logo {
  opacity: 1;
}

@keyframes preloaderFadeIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes preloaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
#investModal .modal-content {
  border: 0;
  max-width: 425px;
}
#investModal .modal-content .modal-body {
  background: url(../images/bgpopup.jpg) no-repeat center center/cover;
  color: var(--TTcapital_white);
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
  padding: 2.5rem;
  position: relative;
}
#investModal .modal-content .modal-body .close-popup {
  position: absolute;
  top: 8px;
  right: 8px;
}
#investModal .modal-content .modal-body .logo_invest img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
  max-height: 2rem;
  max-width: 5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
#investModal .modal-content .modal-body .table {
  background: transparent;
}
#investModal .modal-content .modal-body .table tbody tr td {
  background: transparent;
  color: var(--TTcapital_white);
  padding-top: 0;
  padding-bottom: 0;
}
#investModal .modal-content .modal-body .table tbody tr td:first-child {
  padding-left: 0;
}

/* ==========================================================================
   VIDEO SHOWCASE SLIDER SECTION (.tt_video_showcase)
   ========================================================================== */
.tt_video_showcase {
  position: relative;
  background: radial-gradient(circle at 50% 30%, #112240 0%, #081120 100%);
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  min-height: 100vh;
}
.tt_video_showcase .bg_video_showcase {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/bg-exercise-2.jpg') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
.tt_video_showcase .tag_video_showcase {
  letter-spacing: 2px;
  display: inline-block;
}
.tt_video_showcase .title_video_showcase {
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 1px;
}
.tt_video_showcase .slider_video_wrap {
  width: 100%;
}
.tt_video_showcase .slider_video_showcase {
  width: 100%;
  padding: 10px 4px 20px;
}
.tt_video_showcase .slider_video_showcase .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
}
.tt_video_showcase .video_card_box {
  background: rgba(16, 28, 54, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tt_video_showcase .video_card_box:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
}
.tt_video_showcase .video_card_media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.tt_video_showcase .video_card_poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.tt_video_showcase .video_card_box:hover .video_card_poster {
  transform: scale(1.06);
}
.tt_video_showcase .video_play_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
  text-decoration: none;
}
.tt_video_showcase .video_card_box:hover .video_play_overlay {
  background: rgba(0, 0, 0, 0.15);
}
.tt_video_showcase .play_btn_ripple {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
  color: #0b1528;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  padding-left: 4px;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  transition: all 0.3s ease;
}
.tt_video_showcase .video_card_box:hover .play_btn_ripple {
  transform: scale(1.12);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.9);
}
.tt_video_showcase .video_duration_badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.tt_video_showcase .video_tag_pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(170, 130, 10, 0.9) 100%);
  color: #0b1528;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
}
.tt_video_showcase .video_card_info {
  padding: 16px 18px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tt_video_showcase .video_card_title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tt_video_showcase .video_card_desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.65) !important;
}
.tt_video_showcase .btn_video_nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(16, 28, 54, 0.8);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tt_video_showcase .btn_video_nav:hover {
  background: #d4af37;
  color: #0b1528;
  border-color: #d4af37;
  transform: scale(1.08);
}
.tt_video_showcase .video_pagination {
  width: auto !important;
  display: flex;
  gap: 8px;
}
.tt_video_showcase .video_pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}
.tt_video_showcase .video_pagination .swiper-pagination-bullet-active {
  background: #d4af37;
  width: 24px;
  border-radius: 6px;
}

/* ==========================================================================
   VIDEO PLAYER POPUP MODAL (TIKTOK & DIRECT VIDEO)
   ========================================================================== */
.video_player_modal .modal-dialog {
  max-width: 800px;
  margin: 1.75rem auto;
  transition: all 0.3s ease;
}
.video_player_modal .modal-dialog.tiktok_dialog {
  max-width: 430px;
  width: 94vw;
}
.video_player_modal .modal-content {
  background: #000 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.3) !important;
  position: relative;
  transition: all 0.3s ease;
}
.video_player_modal .video_modal_top_bar {
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1055;
  pointer-events: auto;
}
.video_player_modal .btn_video_action {
  background: rgba(8, 17, 32, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  cursor: pointer;
}
.video_player_modal .btn_video_action:hover {
  background: #d4af37;
  color: #081120;
  border-color: #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}
.video_player_modal .btn_close_video {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.video_player_modal .btn_close_video:hover {
  background: #d4af37;
  color: #081120;
  border-color: #d4af37;
  transform: rotate(90deg) scale(1.1);
}
.video_player_modal .video_modal_body {
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  min-height: 320px;
}
.video_player_modal .tiktok_embed_iframe {
  width: 100%;
  height: 760px;
  max-height: 84vh;
  border: none;
  background: #000;
  display: block;
}
.video_player_modal .direct_html5_video {
  width: 100%;
  max-height: 80vh;
  display: block;
}
.video_player_modal .generic_embed_iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
}

/* Fullscreen / Theater Mode */
.video_player_modal.is-fullscreen .modal-dialog {
  max-width: 100vw !important;
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
}
.video_player_modal.is-fullscreen .modal-content {
  height: 100vh !important;
  border-radius: 0 !important;
  border: none !important;
}
.video_player_modal.is-fullscreen .video_modal_body {
  height: 100vh !important;
  max-height: 100vh !important;
}
.video_player_modal.is-fullscreen .tiktok_embed_iframe {
  height: 100vh !important;
  max-height: 100vh !important;
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .video_player_modal .modal-dialog {
    margin: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    height: 100vh !important;
  }
  .video_player_modal .modal-content {
    border-radius: 0 !important;
    height: 100vh !important;
    border: none !important;
  }
  .video_player_modal .video_modal_body {
    height: 100vh !important;
  }
  .video_player_modal .tiktok_embed_iframe {
    height: 100vh !important;
    max-height: 100vh !important;
  }
}
/*# sourceMappingURL=main.css.map */