@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Jost:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: TypoGraphica;
  src: url("../fonts/TypoGraphica.ttf");
}

:root {
  --font-family-dm-sans: "DM Sans", sans-serif;
  --font-family-jost: "Jost", serif;
  --font-family-manrope: "Manrope", sans-serif;
  --font-family-montserrat: "Montserrat", sans-serif;
  --font-family-playfair: "Playfair Display", serif;
  --font-family-plus-jakarta: "Plus Jakarta Sans", sans-serif;
  --font-family-raleway: "Raleway", sans-serif;
  --font-family-typographica: "TypoGraphica", sans-serif;
  --theme-blue: #06538d;
  --theme-orange: #ef6124;
  --theme-orange-light: #ef612473;
  --theme-blue-2: #073c65;
  --theme-blue-3: #092438;
  --theme-blue-4: #edf2ff;
  --theme-grey: #f2f2f2;
  --theme-light-blue: #c1e3fd;
  --theme-light-skyblue: #e0f0fc;
  --theme-anchor-blue: #b2d4fd;
  --theme-bg: #f6f6f6;
  --font-12: 1.12rem;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-manrope);
}

/* GLOBAL */

a {
  text-decoration: none !important;
}

.font-typo {
  font-family: var(--font-family-typographica) !important;
}

.bg-bl {
  background: var(--theme-blue);
}

.bg-bl2 {
  background: var(--theme-blue-2);
}

.bg-or {
  background: var(--theme-orange);
}

.bg-gr {
  background: var(--theme-grey);
}

.bg-l-bl {
  background: var(--theme-light-blue);
}

.bg-l-sbl {
  background: var(--theme-light-skyblue);
}

.bg-l-abl {
  background: var(--theme-anchor-blue);
}

.bg-theme {
  background: var(--theme-bg);
}

.color-bl {
  color: var(--theme-blue);
}

.color-bl2 {
  color: var(--theme-blue-2);
}

.color-or {
  color: var(--theme-orange);
}

.color-gr {
  color: var(--theme-grey);
}

.color-l-bl {
  color: var(--theme-light-blue);
}

.color-l-sbl {
  color: var(--theme-light-skyblue);
}

.color-l-abl {
  color: var(--theme-anchor-blue);
}

.moving-circle {
  position: absolute;
  top: 20%;
  left: -15%;
  width: 350px;
  height: 350px;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 132, 255, 0.6) 0%, rgba(102, 132, 255, 0) 70%);
  filter: blur(100px);
  animation: rotateCircle 15s linear infinite;
}

@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* THEME BUTTON */
.theme-button {
  position: relative;
  padding: 14px 32px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}

.theme-button .button-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  transition: transform 0.2s ease;
}

.theme-button .button-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--theme-blue) 0%, var(--theme-blue-2) 50%, var(--theme-blue-3) 100%);
  transition: all 0.3s ease;
}

.theme-button .button-icon {
  display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.theme-button:hover .button-content {
  transform: translateY(-1px);
}

.theme-button:hover .button-icon {
  transform: translateX(4px);
}

.theme-button:hover .button-background {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.theme-button:active .button-content {
  transform: translateY(1px);
}

.theme-button:active .button-background {
  transform: scale(0.98);
  filter: brightness(0.95);
}

.theme-button:focus-visible {
  outline: 2px solid var(--theme-blue);
  outline-offset: 2px;
}

.theme-button {
  box-shadow: 0 2px 4px rgba(70, 120, 229, 0.1), 0 4px 8px rgba(70, 134, 229, 0.1), 0 -1px 2px rgba(70, 139, 229, 0.05);
  transition: all 0.3s ease;
}

.theme-button:hover {
  box-shadow: 0 4px 8px rgba(70, 107, 229, 0.2), 0 8px 16px rgba(70, 126, 229, 0.301), 0 -2px 4px rgba(70, 112, 229, 0.1);
}

@keyframes shine {
  from {
    transform: translateX(-100%) rotate(45deg);
  }
  to {
    transform: translateX(100%) rotate(45deg);
  }
}

.theme-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%) rotate(45deg);
  z-index: 1;
}

.theme-button:hover::after {
  animation: shine 1s ease;
}

.theme-button .button-text{
  font-size: var(--font-12);
}


/* contact-link-btn */
.contact-link-btn {
  background: var(--theme-orange);
  color: #ffffff;
  padding: 0.5em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  font-weight: 600;
}

.contact-link-btn span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.contact-link-btn svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.contact-link-btn:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.contact-link-btn:hover svg {
  transform: translateX(2em) rotate(45deg) scale(1.1);
}

.contact-link-btn:hover span {
  transform: translateX(5em);
}

.contact-link-btn:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}



/* HEAD */
.head-subtitle {
  text-transform: uppercase;
  color: var(--theme-orange);
  letter-spacing: 3px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.head-subtitle::before,
.head-subtitle::after {
  content: "";
  position: relative;
  background-color: var(--theme-orange);
  width: 40px;
  height: 2px;
  display: inline-block;
}
.head-title {
  color: var(--theme-blue);
}

/* WAVE */
.wave {
  animation: slide-down 3s linear infinite alternate both;
  position: relative;
}

@keyframes slide-down {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(10px);
  }
}

/* ---------------------------------------- */
/* HEADER */

header {
  backdrop-filter: blur(5px);
  background-color: transparent;
}

header .nav-link {
  color: #ffffff;
  font-weight: 600;
}

header.slided {
  background-color: var(--theme-light-skyblue);
}

header.slided .nav-link {
  color: var(--theme-blue);
}

header .navbar-nav .nav-link.active,
header .navbar-nav .nav-link.show,
header .navbar-nav .nav-link:hover {
  color: var(--theme-orange);
}


header.slided .navbar-toggler-icon {
    filter: invert(1);
}

.logo {
  max-height: 36px;
  width: auto;
}

main {
  margin-top: -70px;
}

/* HERO */

.hero {
  height: 780px;
}

.hero-subtitle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.hero-subtitle::before,
.hero-subtitle::after {
  position: relative;
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ffffff;
  display: inline-block;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-bg video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero > div:not(.video-bg, .anim-circle) {
  position: relative;
}

.anim-circle {
  position: absolute;
  top: 0;
  background-image: url("../asset/circle.png");
  width: 400px;
  height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  left: -20%;
  animation: blobAnimation 8s ease-in-out infinite;
}

.anim-circle-2 {
  top: 60%;
  left: auto;
  right: -20%;
}

@keyframes blobAnimation {
  0% {
    transform: scale(1) translateY(0) translateX(0);
  }
  25% {
    transform: scale(1.1) translateY(-20px) translateX(20px);
  }
  50% {
    transform: scale(1) translateY(0) translateX(0);
  }
  75% {
    transform: scale(1.1) translateY(20px) translateX(-20px);
  }
  100% {
    transform: scale(1) translateY(0) translateX(0);
  }
}

.btn-hero {
  background-color: var(--theme-orange);
  color: #ffffff;
  border: 1px solid var(--theme-orange);
  transition: all 0.3s ease;
}
.btn-hero:hover {
  background-color: transparent;
  color: var(--theme-orange);
}

/* TRAINING */
.training {
  background-image: url("../asset/home/net-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.training-card {
  background-color: #ffffff15;
  backdrop-filter: blur(20px);
  color: #ffffff;
  transition: all 0.3s ease-in-out;
  position: relative;
  top: 0;
}

.training-card:hover {
  background-color: var(--theme-orange-light);
  top: -10px;
}

.training-card h2 {
  color: var(--theme-orange);
}

.training-card-btn {
  background: var(--theme-orange);
  border-radius: 1em;
  color: #ffffff;
  margin-top: 2em;
  border: 1px solid var(--theme-orange);
  transition: all 0.3s ease-in-out;
}

.training-card-btn:hover {
  background: transparent;
  color: var(--theme-orange);
}

/* OFFER */

.offer-tag-list li {
  background-color: var(--theme-orange);
  padding: 0.5em 1em 0.5em 3em;
  border-radius: 5em;
  position: relative;
  color: #ffffff;
  font-size: 1.1em;
}

.offer-tag-list li::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  background-color: var(--theme-bg);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 1.25em;
}

/* WORKSHOP */
.workshop-card {
  min-height: 500px;
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.workshop-card-content {
  background-color: #022a5f6e;
  position: relative;
  z-index: 1;
}

.workshop-card-content::before {
  --workshop-size: 70%;
  content: "";
  position: absolute;
  width: var(--workshop-size);
  height: var(--workshop-size);
  background: var(--theme-blue);
  top: 0;
  left: 110%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}

.workshop-card:hover .workshop-card-content::before {
  width: 150%;
  height: 150%;
  top: 125%;
  left: 125%;
  transform: translate(-100%, -100%);
  opacity: 0.7;
}

.workshop-card:hover .workshop-card-content {
  background-color: transparent;
}

/*----------- TRAINER ------------*/

.trainers::before,
.trainers::after {
  content: "";
  position: absolute;
  background-image: url("../asset/home/blue.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 1066px;
  height: 951px;

  transform: translateY(-50%);
}

.trainers::before {
  top: 30%;
  left: -700px;
}

.trainers::after {
  top: 70%;
  right: -700px;
}

.trainer-content {
  font-size: var(--font-12);
}

/* CLIENTS */

.clients::before,
.clients::after {
  content: "";
  position: absolute;
  width: 437px;
  height: 466px;
  background-image: url("../asset/home/pattern.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.clients::before {
  width: 656px;
  height: 700px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 0.1;
}

.clients::after {
  top: calc(-437px / 2.5);
  right: calc(-466px / 3);
}

.clients > div,
p {
  position: relative;
}

.testimonial-swiper h1 {
  color: var(--theme-blue);
  margin-top: 0.2em;
}

.swiper-pagination-bullet-active {
  background-color: var(--theme-orange) !important;
}

.client-title {
  height: 100%;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-title p {
  transform: rotate(-90deg);
  white-space: nowrap;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonial-client-wrapper {
  max-height: 420px;
}

.testimonial-text {
  font-size: var(--font-12);
}

/* CONTACT */

.contact-info-wrap .card {
  background: linear-gradient(135deg, #073c65, #0e4877, #1462a2);
  transition: all 0.3s ease-in;
}

.btn-contact-card {
  color: #ffffff;
  border: 1px solid #ffffff;
  transition: all 0.3s ease-in;
}

.btn-contact-card:hover {
  color: var(--theme-blue);
  background-color: #ffffff;
}

.contact-info-wrap .card:hover {
  box-shadow: 0 0 70px 0px #0e48779a;
}

.contact-card-img-wrap {
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: max-content;
}
