/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --primary-color: #6e1d8b;
  --background-color: #f8f9fa;
  --text-color: #2d3142;
  --accent-color: #ff8e72;
  --card-bg: #fff;
  --hero-gradient-top: #6e1d8b;
  --hero-gradient-bottom: #0e3560;
  --spacing-s: 8px;
  --spacing-m: 16px;
  --spacing-l: 32px;
  --spacing-xl: 64px;
  --radius-md: 12px;
  --font-main: "Maven Pro", sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-main);
  box-sizing: border-box;
  margin: 0;
  line-height: 1.6;
}

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

img {
  border-radius: inherit;
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 800px;
  padding: 0 var(--spacing-m);
  margin: 0 auto;
}

.main-header {
  background-color: var(--background-color);
  z-index: 1000;
  align-items: center;
  width: 100%;
  height: 70px;
  transition: all .3s;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.header-scrolled {
  height: 65px;
  box-shadow: 0 4px 20px #00000026;
}

.header-flex {
  width: 100%;
  padding: 0 var(--spacing-m);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.logo {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links {
  z-index: 1500;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 300px;
  height: 100vh;
  transition: right .4s cubic-bezier(.77, .2, .05, 1);
  display: flex;
  position: fixed;
  top: 0;
  right: -100%;
  box-shadow: -10px 0 30px #0000001a;
}

.nav-links.nav-open {
  right: 0;
}

.nav-links a {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #1a1a1a !important;
}

.burger-menu {
  z-index: 2000;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.burger-menu span {
  background-color: #1a1a1a;
  border-radius: 2px;
  width: 28px;
  height: 3px;
  margin: 3px 0;
  transition: all .3s ease-in-out;
  display: block;
}

.burger-menu.open span:first-child {
  transform: translateY(9px)rotate(45deg);
}

.burger-menu.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.burger-menu.open span:nth-child(3) {
  transform: translateY(-9px)rotate(-45deg);
}

.service-section-container, .team-section-container {
  clear: both;
  width: 100%;
  margin-bottom: 120px;
  scroll-margin-top: 120px;
}

.service-section-container:after, .team-section-container:after {
  content: "";
  clear: both;
  display: table;
}

.full-width-title {
  color: var(--primary-color);
  clear: both;
  width: 100%;
  margin-bottom: 40px;
  scroll-margin-top: 120px;
  font-size: 3rem;
  display: block;
}

.full-width-title:after {
  content: "";
  background-color: var(--accent-color);
  border-radius: 2px;
  width: 80px;
  height: 5px;
  margin-top: 15px;
  display: block;
}

.service-image {
  float: right;
  backface-visibility: hidden;
  aspect-ratio: 1;
  background-color: #f0f0f0;
  border-radius: 30px;
  width: 45%;
  max-width: 500px;
  margin-bottom: 20px;
  margin-left: 40px;
  overflow: hidden;
  transform: translateZ(0);
  box-shadow: 0 15px 35px #0000001a;
}

.service-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-section-container:nth-child(2n) .service-image, .team-section-container:nth-of-type(2n) .service-image {
  float: left;
  margin-left: 0;
  margin-right: 40px;
}

.schedule-tabs-container {
  margin-top: 40px;
}

.days-nav {
  border-bottom: 2px solid #6e1d8b1a;
  justify-content: space-between;
  margin-bottom: 20px;
  display: flex;
}

.day-tab {
  color: var(--text-color);
  cursor: pointer;
  text-align: center;
  background: none;
  border: none;
  border-bottom: 3px solid #0000;
  flex: 1;
  padding: 10px 5px;
  font-size: .95rem;
  font-weight: 600;
}

.day-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--accent-color);
}

.schedule-row {
  background: #fff;
  border-radius: 20px;
  align-items: center;
  margin-bottom: 12px;
  padding: 15px 20px;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 12px #0000000d;
}

.schedule-row:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #00000014;
}

.schedule-time {
  min-width: 120px;
  color: var(--accent-color);
  font-weight: bold;
}

.schedule-course-name a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.schedule-instructor {
  opacity: .8;
  font-size: .85rem;
}

.schedule-instructor a {
  color: var(--text-color);
  text-decoration: underline;
}

.instructor-list {
  clear: both;
  border-radius: var(--radius-md);
  background-color: #6e1d8b0d;
  margin-top: 30px;
  padding: 20px;
}

.schedule-audience {
  color: var(--primary-color);
  background-color: #6e1d8b0d;
  border-radius: 4px;
  margin-bottom: 8px;
  padding: 2px 8px;
  font-size: .75rem;
  display: inline-block;
}

@media (max-width: 768px) {
  .service-image, .service-section-container .service-image, .team-section-container .service-image {
    border-radius: 20px;
    overflow: hidden;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 25px !important;
  }

  .full-width-title {
    text-align: center;
    font-size: 2rem;
  }

  .full-width-title:after {
    margin: 15px auto 0;
  }

  .days-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .day-tab {
    flex: none;
    padding: 10px 15px;
  }

  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .schedule-time {
    min-width: unset;
  }

  .cta-button {
    justify-content: center;
    width: 100%;
  }
}

.cta-container {
  justify-content: center;
  margin: 40px 0;
  display: flex;
}

.cta-button {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
}

.hero-gradient-bg {
  background: linear-gradient(#6e1d8b1a 0%, #fff 100%);
  width: 100%;
}

.strapi-blocks-wrapper h2.content-heading-2 {
  font-family: var(--font-main);
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.strapi-blocks-wrapper h3.content-heading-3 {
  color: var(--accent-color);
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

.strapi-blocks-wrapper p.content-p {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.service-description h2 {
  color: var(--primary-color);
  margin-top: 20px;
  font-size: 1.5rem;
}

.service-description p {
  margin-bottom: 15px;
}

.description-placeholder {
  opacity: .6;
  font-style: italic;
}

.strapi-blocks-wrapper a[target="_blank"]:after {
  content: " ↗";
  vertical-align: super;
  margin-left: 3px;
  font-size: .8em;
  text-decoration: none;
  display: inline-block;
}

.strapi-blocks-wrapper a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color .2s;
}

.strapi-blocks-wrapper a:hover {
  color: var(--accent-color);
}

.external-link-arrow {
  color: var(--text-color);
  text-decoration: underline;
  transition: color .3s, transform .3s;
  display: inline-block;
}

.external-link-arrow:hover {
  color: var(--accent-color) !important;
}

.external-link-arrow:after {
  content: " ↗";
  vertical-align: super;
  margin-left: 4px;
  font-size: .85em;
  text-decoration: none;
  transition: transform .3s, color .3s;
  display: inline-block;
}

.external-link-arrow:hover:after {
  color: var(--accent-color);
  transform: translate(2px, -2px);
}

.back-to-top {
  background-color: var(--primary-color);
  color: #fff;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  font-size: 1.4rem;
  transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transform: scale(.5);
  box-shadow: 0 10px 25px #6e1d8b4d;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.back-to-top:hover {
  background-color: var(--accent-color);
  transform: scale(1.15)translateY(-5px);
  box-shadow: 0 15px 30px #ff8e7266;
}

.back-button-wrapper {
  margin-top: 100px;
  margin-bottom: 30px;
  display: block;
}

.back-to-overview {
  background-color: var(--secondary-color, #f4f4f4);
  color: #333;
  border: 1px solid #ddd;
  border-radius: 50px;
  align-items: center;
  padding: 12px 24px;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.back-to-overview:hover {
  background-color: #e0e0e0;
  transform: translateX(-5px);
}

.back-to-overview .arrow {
  margin-right: 10px;
}

.map-container {
  border-radius: var(--radius-md, 12px);
  background-color: #e9ecef;
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px #0000000d;
}

.map-container.active {
  background-color: #0000;
}

.map-privacy-content {
  text-align: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: #f8f9fad9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.map-container {
  aspect-ratio: 1;
  border-radius: var(--radius-md, 12px);
  background-color: #e9ecef;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px #0000000d;
}

/* [next]/internal/font/google/maven_pro_37c92794.module.css [app-client] (css) */
@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/c22c2b33ba991ab3-s.d4efe8b3.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/a6e41d0c5bd92cbe-s.4595cd71.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/14898b02b8cd68f8-s.p.e25931b2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/c22c2b33ba991ab3-s.d4efe8b3.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/a6e41d0c5bd92cbe-s.4595cd71.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/14898b02b8cd68f8-s.p.e25931b2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/c22c2b33ba991ab3-s.d4efe8b3.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/a6e41d0c5bd92cbe-s.4595cd71.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/14898b02b8cd68f8-s.p.e25931b2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/c22c2b33ba991ab3-s.d4efe8b3.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/a6e41d0c5bd92cbe-s.4595cd71.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/14898b02b8cd68f8-s.p.e25931b2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/c22c2b33ba991ab3-s.d4efe8b3.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/a6e41d0c5bd92cbe-s.4595cd71.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../media/14898b02b8cd68f8-s.p.e25931b2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../media/c22c2b33ba991ab3-s.d4efe8b3.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../media/a6e41d0c5bd92cbe-s.4595cd71.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Maven Pro;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../media/14898b02b8cd68f8-s.p.e25931b2.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Maven Pro Fallback;
  src: local(Arial);
  ascent-override: 93.12%;
  descent-override: 20.26%;
  line-gap-override: 0.0%;
  size-adjust: 103.63%;
}

.maven_pro_37c92794-module__jmx1QW__className {
  font-family: Maven Pro, Maven Pro Fallback;
  font-style: normal;
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__114a4332._.css.map*/