* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}@keyframes slide_scrollbar { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

::-webkit-scrollbar {
    padding: 4px;
    width: auto;
    background: radial-gradient(circle at center, #ffffff 30%, rgb(255, 255, 255, 0.5) 75%, rgb(153,159,190) 59%, rgb(153,159,190,0.5) 47%, rgb(187,193,216) 7%, rgb(187,193,216,0.5) 92%);
}::-webkit-scrollbar-track {
    border-radius: 18%;
    background: rgb(220,222,237);
}::-webkit-scrollbar-thumb {
    background: radial-gradient(ellipse at bottom left, rgb(153,159,190) 79%, rgb(153,159,190,0.5) 57%, rgb(187,193,216) 12%, rgb(187,193,216,0.5) 88%);
    transition: all, transform 1.4s cubic-bezier(0.42, 0, 0.58, 1);
    animation: slide_scrollbar 3.7s ease-out infinite;
}::-webkit-scrollbar-thumb:hover {
    box-shadow: -2px 5px 7px 6px rgba(0, 0, 0, 0.2);
    background: rgb(187,193,216,0.5);
}* {
    scrollbar-width: thin;
}.discord_cta {
    flex: 0 0 auto;
}a {
    color: inherit;
    text-decoration: none;
}html,body {
    scroll-behavior: smooth;
    color: #000000;
    min-height: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}.head_sitewrap {
    flex: 1 0 auto;
}.wrapper-canvas {
    min-height: 100%;
    height: 100%;
    flex-direction: column;
    display: flex;
}header,footer {
    width: 100%;
}svg {
    width: 30px;
    height: 30px;
}.container {
    max-width: 100%;
    width: 1185px;
    margin: auto;
}

@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.contact_information {
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}.contact_information::before {
    background-color: rgb(187,193,216,0.5);
    position: absolute;
    width: 100%;
    z-index: -1;
    left: 0;
    height: 100%;
    top: 0;
    content: '';
}.contact_information .container {
    max-width: 1280px;
    position: relative;
    margin: 0 auto;
    padding: 0 15px;
}.contact_information .message_inquiry {
    position: relative;
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}.contact_information .feedback_section {
    background-color: #ffffff;
    z-index: 2;
    order: 1;
    border-radius: 26px 26px 0 0;
    position: relative;
    width: 100%;
    padding: 50px 30px;
}.contact_information .feedback_section h3 {
    position: relative;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
}.contact_information .feedback_section h3::after {
    content: '';
    left: 0;
    bottom: -8px;
    width: 50%;
    position: absolute;
    background-color: rgb(153,159,190);
    height: 3px;
}.contact_information .feedback_section form {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}.contact_information .feedback_section input[type="text"],
.contact_information .feedback_section input[type="email"] {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    padding: 0 20px;
    flex: 1 0 100%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    background-color: rgb(220,222,237);
    height: 60px;
    color: #000000;
    border: none;
    font-size: 17px;
    border-radius: 10px;
}.contact_information .feedback_section input[type="text"]:focus,
.contact_information .feedback_section input[type="email"]:focus {
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 0 3px rgb(153,159,190,0.5);
    transform: translateY(-2px);
}.contact_information .feedback_section input::placeholder {
    color: #000000;
    opacity: 0.6;
}.contact_information .feedback_section .query_panel {
    display: flex;
    flex: 1 0 100%;
    align-items: flex-start;
    margin-top: 10px;
}.contact_information .feedback_section .query_panel input[type="checkbox"] {
    height: 24px;
    border-radius: 10px;
    position: relative;
    width: 24px;
    background-color: rgb(220,222,237);
    -webkit-appearance: none;
    cursor: pointer;
    margin-right: 10px;
    flex-shrink: 0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    appearance: none;
    margin-top: 2px;
    transition: background-color 0.3s ease;
}.contact_information .feedback_section .query_panel input[type="checkbox"]:checked {
    background-color: rgb(153,159,190);
}.contact_information .feedback_section .query_panel input[type="checkbox"]:checked::before {
    position: absolute;
    transform: rotate(45deg);
    border: solid #ffffff;
    content: '';
    width: 6px;
    left: 9px;
    border-width: 0 2px 2px 0;
    height: 10px;
    top: 6px;
}.contact_information .feedback_section .query_panel label {
    line-height: 1.6;
    font-size: 14px;
    color: #000000;
}.contact_information .feedback_section .query_panel label a {
    color: rgb(187,193,216);
    font-weight: 600;
    position: relative;
    text-decoration: none;
}.contact_information .feedback_section .query_panel label a::after {
    transition: transform 0.3s ease;
    height: 1px;
    transform: scaleX(0);
    position: absolute;
    transform-origin: right;
    bottom: -2px;
    width: 100%;
    content: '';
    left: 0;
    background-color: rgb(187,193,216);
}.contact_information .feedback_section .query_panel label a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}.contact_information .feedback_section .request_panel {
    margin-top: 15px;
    z-index: 1;
    background-color: rgb(153,159,190);
    box-shadow: 0 4px 10px rgb(153,159,190,0.5);
    overflow: hidden;
    height: 60px;
    border-radius: 10px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff;
    border: none;
    flex: 1 0 100%;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}.contact_information .feedback_section .request_panel::before {
    border-radius: 10px;
    transform-origin: right;
    position: absolute;
    left: 0;
    background: rgb(187,193,216);
    transform: scaleX(0);
    top: 0;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
    content: '';
    z-index: -1;
}.contact_information .feedback_section .request_panel:hover {
    box-shadow: 0 6px 15px rgb(187,193,216,0.5);
}.contact_information .feedback_section .request_panel:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.contact_information .message_list {
    background-color: rgb(187,193,216);
    display: flex;
    width: 100%;
    order: 2;
    border-radius: 0 0 26px 26px;
    color: #ffffff;
    position: relative;
    align-items: center;
    flex-direction: column;
    padding: 50px 30px;
}.contact_information .message_list::before {
    left: 0;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    height: 30px;
    position: absolute;
    content: '';
    top: 0;
    transform: translateY(-15px);
    width: 100%;
    background: rgb(187,193,216);
}.contact_information .message_list h3 {
    color: #ffffff;
    position: relative;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
    font-size: 31px;
    font-weight: 700;
}.contact_information .message_list h3::after {
    position: absolute;
    background-color: rgb(153,159,190);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 60px;
    content: '';
}.contact_information .message_list div {
    max-width: 400px;
    padding: 0;
    width: 100%;
    position: relative;
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}.contact_information .message_list div::before {
    content: '';
    bottom: -10px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    height: 1px;
    width: 100%;
    left: 0;
    opacity: 0.2;
    position: absolute;
}.contact_information .message_list div:last-child::before {
    display: none;
}.contact_information .message_list div svg {
    width: 32px;
    margin-right: 20px;
    padding: 6px;
    border-radius: 50%;
    background-color: rgb(153,159,190);
    height: 32px;
    box-shadow: 0 4px 10px rgb(153,159,190,0.5);
}.contact_information .message_list div svg path {
    fill: #ffffff;
}.contact_information .message_list div span {
    color: #ffffff;
    font-weight: 400;
    font-size: 17px;
}.contact_information .message_list div span a {
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    color: #ffffff;
}.contact_information .message_list div span a::after {
    background-color: #ffffff;
    left: 0;
    bottom: -2px;
    height: 1px;
    content: '';
    position: absolute;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
    width: 100%;
}.contact_information .message_list div span a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

@media screen and (min-width: 992px) {.contact_information .message_inquiry {
    align-items: stretch;
    flex-direction: row;
}.contact_information .feedback_section {
    border-radius: 26px 0 0 26px;
    padding: 60px;
    width: 60%;
    order: 1;
}.contact_information .message_list {
    justify-content: center;
    border-radius: 0 26px 26px 0;
    width: 40%;
    order: 2;
    padding: 60px 40px;
}.contact_information .message_list::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    top: 0;
    left: 0;
    transform: translateX(-15px);
    height: 100%;
    width: 30px;
}.contact_information .feedback_section input#email {
    flex: 1 0 100%;
}
}

@media screen and (max-width: 991px) {.contact_information {
    padding: 80px 0;
}.contact_information .message_list div {
    max-width: 100%;
}
}

@media screen and (max-width: 767px) {.contact_information {
    padding: 60px 0;
}.contact_information .feedback_section,
    .contact_information .message_list {
    padding: 40px 25px;
}.contact_information .feedback_section h3,
    .contact_information .message_list h3 {
    font-size: calc(18px + 2px);
}.contact_information .feedback_section input[type="text"],
    .contact_information .feedback_section input[type="email"],
    .contact_information .feedback_section .request_panel {
    height: 55px;
}
}

@media screen and (max-width: 480px) {.contact_information {
    padding: 40px 0;
}.contact_information .feedback_section,
    .contact_information .message_list {
    padding: 30px 20px;
}.contact_information .message_list div svg {
    margin-right: 15px;
    width: 28px;
    height: 28px;
}}.thankPageID {
    background: linear-gradient(135deg, rgb(220,222,237) 0%, rgb(187,193,216,0.5) 100%);
    overflow: hidden;
    position: relative;
    padding: 6rem 0;
}.thankPageID::before {
    bottom: 0;
    background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.03) 10px,
    transparent 10px,
    transparent 20px
  );
    right: 0;
    position: absolute;
    left: 0;
    z-index: 1;
    top: 0;
    content: "";
}.thankPageID::after {
    left: 0;
    content: "";
    top: 0;
    pointer-events: none;
    background: radial-gradient(circle at 75% 25%, rgb(187,193,216,0.5) 0%, transparent 50%);
    z-index: 2;
    width: 100%;
    position: absolute;
    height: 100%;
}.thankPageID .container {
    position: relative;
    padding: 0 2rem;
    z-index: 10;
    max-width: 1200px;
    transform: perspective(1000px) rotateX(1deg);
    margin: 0 auto;
}.thankPageID h2 {
    font-family: Arial, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.3;
    font-size: 29px;
    position: relative;
    animation: slideInTitle 0.8s ease-out forwards;
    color: rgb(187,193,216);
    margin-bottom: 2.5rem;
    font-weight: 700;
    max-width: 90%;
    transform-origin: left center;
}.thankPageID h2::after {
    height: 4px;
    position: absolute;
    animation: expandLine 0.5s 0.8s forwards ease-out;
    width: 100px;
    transform: scaleX(0);
    content: "";
    background: linear-gradient(90deg, rgb(187,193,216) 0%, rgb(153,159,190) 100%);
    left: 0;
    transform-origin: left;
    bottom: -12px;
}.thankPageID .growth_path {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    animation: fadeInUp 0.6s 0.4s both;
    position: relative;
    transition: transform 0.4s ease-out;
    transform: translateY(0);
    border-left: 4px solid rgb(153,159,190);
    overflow: hidden;
    padding: 2.5rem;
}.thankPageID .growth_path::before {
    background: linear-gradient(90deg, rgb(153,159,190) 0%, rgb(187,193,216) 100%);
    width: 100%;
    left: 0;
    height: 5px;
    content: "";
    position: absolute;
    top: 0;
}.thankPageID .growth_path:hover {
    transform: translateY(-5px);
}.thankPageID ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.thankPageID li {
    padding-left: 1.5rem;
    position: relative;
}.thankPageID li::before {
    left: 0;
    transform: scale(0);
    background: rgb(153,159,190);
    height: 8px;
    width: 8px;
    animation: popIn 0.4s 0.9s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    border-radius: 50%;
    position: absolute;
    content: "";
    top: 0.7rem;
}.thankPageID span {
    position: relative;
    font-size: 15px;
    display: block;
    color: #000000;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    animation: fadeText 0.8s 0.6s both;
}

@keyframes slideInTitle {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandLine {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes fadeText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 991px) {.thankPageID {
    padding: 5rem 0;
}.thankPageID h2 {
    font-size: calc(29px * 0.9);
    max-width: 100%;
}.thankPageID .growth_path {
    padding: 2rem;
}
}

@media (max-width: 767px) {.thankPageID {
    padding: 4rem 0;
}.thankPageID h2 {
    margin-bottom: 2rem;
    font-size: calc(29px * 0.8);
}.thankPageID h2::after {
    height: 3px;
    width: 80px;
}.thankPageID .growth_path {
    padding: 1.75rem;
}.thankPageID span {
    font-size: calc(15px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 576px) {.thankPageID {
    padding: 3rem 0;
}.thankPageID .container {
    padding: 0 1.5rem;
    transform: perspective(1000px) rotateX(0deg);
}.thankPageID h2 {
    margin-bottom: 1.75rem;
    font-size: calc(29px * 0.7);
}.thankPageID .growth_path {
    padding: 1.5rem;
}.thankPageID li {
    padding-left: 1.25rem;
}.thankPageID li::before {
    top: 0.65rem;
    width: 6px;
    height: 6px;
}.thankPageID span {
    font-size: calc(15px * 0.9);
    line-height: 1.6;
}}.education_history {
    background: linear-gradient(135deg, rgb(220,222,237) 0%, rgba(245, 248, 250, 0.9) 100%);
    overflow: hidden;
    padding: 6rem 0;
    position: relative;
}.education_history::before {
    background: radial-gradient(circle, rgb(187,193,216,0.5) 0%, transparent 70%);
    position: absolute;
    width: 40vw;
    opacity: 0.15;
    right: -10%;
    transform: translateZ(0);
    content: "";
    top: -5%;
    height: 40vw;
}.education_history::after {
    opacity: 0.1;
    background: radial-gradient(circle, rgb(153,159,190,0.5) 0%, transparent 70%);
    width: 30vw;
    transform: translateZ(0);
    position: absolute;
    left: -10%;
    height: 30vw;
    bottom: -5%;
    content: "";
}.education_history .container {
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    max-width: 1200px;
}.education_history .user_testimonials {
    padding: 2.5rem;
    display: grid;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.03),
        0 0 80px rgba(rgb(187,193,216), 0.03) inset;
    gap: 2rem;
    backdrop-filter: blur(10px);
    grid-template-columns: 1fr;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    transform: translateZ(0);
}.education_history .user_testimonials > div:first-child {
    justify-content: center;
    align-items: center;
    display: flex;
}.education_history .landscape_img {
    height: 200px;
    position: relative;
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.1),
        -10px -10px 20px rgba(255, 255, 255, 0.7);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(-2deg) translateZ(0);
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
}.education_history .landscape_img::after {
    content: "";
    left: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(rgb(187,193,216), 0.1) 100%);
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    z-index: 1;
}.education_history .landscape_img:hover {
    transform: rotate(0deg) scale(1.05) translateZ(0);
}.education_history .name {
    position: relative;
    font-size: 19px;
    color: rgb(187,193,216);
    display: inline-block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
}.education_history .name::after {
    left: 0;
    transition: transform 0.4s ease;
    content: "";
    bottom: -8px;
    background: linear-gradient(90deg, rgb(153,159,190) 0%, transparent 100%);
    position: absolute;
    transform: scaleX(0.8);
    width: 60%;
    transform-origin: left;
    height: 3px;
}.education_history .user_testimonials > div:nth-child(2) {
    flex-direction: column;
    justify-content: center;
    display: flex;
}.education_history .user_testimonials > div:nth-child(2) > div {
    color: rgba(0, 0, 0, 0.5);
    font-size: calc(16px - 0.1rem);
    letter-spacing: 0.02em;
    font-weight: 600;
    margin-top: 0.5rem;
}.education_history .emp_back {
    line-height: 1.6;
    color: #000000;
    position: relative;
    font-size: 16px;
    margin: 0;
    font-family: Arial, sans-serif;
}.education_history .emp_back::before {
    position: absolute;
    content: "";
    top: -2rem;
    font-family: serif;
    z-index: -1;
    opacity: 0.15;
    font-size: 6rem;
    left: -1rem;
    color: rgb(187,193,216,0.5);
}

@media (min-width: 768px) {.education_history {
    padding: 8rem 0;
}.education_history .user_testimonials {
    grid-template-columns: auto 1fr;
    padding: 3rem;
    gap: 2.5rem 3rem;
    grid-template-rows: auto 1fr;
}.education_history .user_testimonials > div:first-child {
    grid-row: span 2;
}.education_history .landscape_img {
    width: 260px;
    height: 260px;
}.education_history .name {
    font-size: calc(19px + 0.2rem);
}.education_history .emp_back {
    font-size: calc(16px + 0.05rem);
}
}

@media (min-width: 1024px) {.education_history .user_testimonials {
    padding: 4rem;
    gap: 3rem 4rem;
    grid-template-columns: auto 1fr;
}.education_history .landscape_img {
    height: 300px;
    transform: rotate(-3deg) translateZ(0);
    width: 300px;
}.education_history .name {
    font-size: calc(19px + 0.4rem);
}.education_history .name::after {
    height: 4px;
}.education_history .emp_back {
    line-height: 1.7;
    font-size: calc(16px + 0.1rem);
}.education_history .user_testimonials > div:nth-child(2) > div {
    font-size: 16px;
}
}

@media (min-width: 1200px) {.education_history .container {
    padding: 0 4rem;
}.education_history .user_testimonials {
    gap: 3rem 5rem;
}.education_history .user_testimonials:hover .name::after {
    transform: scaleX(1);
}
}

@media (max-width: 767px) {.education_history {
    padding: 4rem 0;
}.education_history .container {
    padding: 0 1rem;
}.education_history .user_testimonials {
    padding: 2rem;
}.education_history .landscape_img {
    height: 180px;
    width: 180px;
}}.cookieWarningContainer {
    bottom: 0;
    overflow: hidden;
    padding: 20px;
    z-index: 1050;
    border-top: 3px solid rgb(187,193,216);
    background: rgb(220,222,237);
    position: fixed;
    font-family: Arial, sans-serif;
    width: 100%;
}.edu_cookies {
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    z-index: 1;
}.track_switch {
    margin-right: 20px;
    flex-shrink: 0;
}#cookie_disclosure {
    display: none;
}#cookie_disclosure:checked ~ .cookieWarningContainer {
    visibility: hidden;
    opacity: 0;
}.track_switch svg {
    width: 60px;
    fill: rgb(187,193,216);
    transition: fill 0.3s ease-in-out;
    height: 60px;
}.user_choices {
    flex-grow: 1;
    margin-right: 20px;
}.user_choices h5 {
    color: rgb(187,193,216);
    margin-bottom: 5px;
    font-size: 23px;
    font-weight: 700;
}.user_choices p {
    font-size: 15px;
    color: #000000;
    margin-bottom: 0;
}.cookie_necessary {
    transition: all 0.3s ease-in-out;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-left: 10px;
}.cookie_necessary {
    border: 1px solid rgb(187,193,216);
    background-color: rgb(187,193,216);
    color: #ffffff;
}.cookie_necessary:hover {
    background-color: rgba(0, 0, 0, 0.5);
    border-color: #000000;
}.cookieWarningContainer p a {
    color: rgb(187,193,216);
    text-decoration: underline;
}.cookieWarningContainer p a:hover {
    color: #000000;
}
@media (max-width: 1200px) {.user_choices h5 {
    font-size: calc(23px - 2px);
}.user_choices p {
    font-size: calc(15px - 2px);
}.cookie_necessary {
    font-size: calc(14px - 2px);
    padding: 8px 16px;
}
}
@media (max-width: 800px) {.edu_cookies {
    align-items: center;
    flex-direction: column;
}.track_switch {
    margin-bottom: 15px;
}.user_choices {
    text-align: center;
    margin-bottom: 20px;
}.cookie_necessary {
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
}}
.privacy_shell {
    padding: 5rem 2rem;
    font-family: Arial, sans-serif;
    color: #000000;
    position: relative;
    background: linear-gradient(145deg, rgb(220,222,237), rgba(245, 248, 255, 0.95));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}.privacy_shell::before {
    width: 40%;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent 15%, rgba(rgb(187,193,216,0.5), 0.03) 70%);
    z-index: 0;
    content: "";
    position: absolute;
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 50% 0);
    right: 0;
}.privacy_shell::after {
    left: 0;
    z-index: 1;
    height: 5px;
    width: 100%;
    position: absolute;
    bottom: 0;
    content: "";
    background: linear-gradient(90deg, rgb(187,193,216), rgb(153,159,190), rgb(187,193,216));
}.privacy_shell .container {
    position: relative;
    margin: 0 auto;
    z-index: 2;
    max-width: 1140px;
}.privacy_shell h1 {
    font-weight: 700;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
    position: relative;
    font-size: 45px;
    color: #000000;
    transform: translateX(-0.5rem);
}.privacy_shell h1::after {
    position: absolute;
    content: "";
    height: 3px;
    bottom: 0;
    background: linear-gradient(90deg, rgb(187,193,216), transparent);
    left: 0;
    width: 6rem;
}.privacy_shell h2 {
    margin-top: 3rem;
    position: relative;
    color: #000000;
    transform: translateY(-0.25rem);
    font-weight: 600;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    font-size: 35px;
}.privacy_shell h2::before {
    top: 0.2em;
    left: 0;
    border-radius: 2px;
    content: "";
    height: 80%;
    position: absolute;
    width: 4px;
    background: rgb(187,193,216);
}.privacy_shell h3 {
    font-weight: 600;
    margin-top: 2.5rem;
    color: #000000;
    padding-left: 0.75rem;
    font-size: calc(35px * 0.85);
    margin-bottom: 1.25rem;
    position: relative;
}.privacy_shell h3::before {
    background: rgb(153,159,190);
    height: 75%;
    width: 3px;
    content: "";
    position: absolute;
    left: 0;
    border-radius: 1.5px;
    top: 0.25em;
}.privacy_shell h4 {
    font-size: calc(35px * 0.7);
    margin-top: 2rem;
    color: #000000;
    padding-left: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
}.privacy_shell h4::before {
    opacity: 0.7;
    background: rgb(153,159,190);
    top: 0.3em;
    position: absolute;
    height: 70%;
    content: "";
    width: 2px;
    left: 0;
    border-radius: 1px;
}.privacy_shell p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 90%;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    color: #000000;
    position: relative;
}.privacy_shell p strong {
    font-weight: 600;
    color: #000000;
    background: linear-gradient(to bottom, transparent 85%, rgba(rgb(187,193,216,0.5), 0.15) 15%);
    padding-left: 0.25rem;
    position: relative;
    padding-right: 0.25rem;
}.privacy_shell span {
    border-left: 1px solid rgba(rgb(153,159,190,0.5), 0.3);
    padding-left: 1rem;
    max-width: 95%;
    position: relative;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #000000;
    display: block;
    font-size: 14px;
}.privacy_shell ul {
    counter-reset: privacy-counter;
    margin: 2rem 0;
    list-style: none;
    padding-left: 0;
}.privacy_shell li {
    position: relative;
    line-height: 1.6;
    padding-left: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 14px;
    counter-increment: privacy-counter;
}.privacy_shell li::before {
    position: absolute;
    opacity: 0.9;
    left: 0;
    background: linear-gradient(135deg, rgb(187,193,216), rgb(153,159,190));
    width: 1.25rem;
    top: 0.25rem;
    content: "";
    height: 1.25rem;
    border-radius: 10px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}.privacy_shell li::after {
    left: 0;
    color: #ffffff;
    position: absolute;
    top: 0.25rem;
    content: counter(privacy-counter);
    width: 1.25rem;
    justify-content: center;
    align-items: center;
    display: flex;
    font-weight: 600;
    height: 1.25rem;
    font-size: 0.75rem;
}.privacy_shell li:hover::before {
    transform: rotate(45deg) scale(1.1);
}@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes borderPulse {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.privacy_shell h1, 
.privacy_shell h2, 
.privacy_shell h3, 
.privacy_shell h4,
.privacy_shell p,
.privacy_shell ul {
    animation: fadeIn 0.5s ease-out forwards;
}.privacy_shell::after {
    animation: borderPulse 8s linear infinite;
    background-size: 200% 200%;
}


@media (max-width: 992px) {.privacy_shell {
    padding: 4rem 1.5rem;
}.privacy_shell h1 {
    font-size: calc(45px * 0.9);
}.privacy_shell h2 {
    font-size: calc(35px * 0.9);
}.privacy_shell p, 
    .privacy_shell span {
    max-width: 100%;
}
}

@media (max-width: 768px) {.privacy_shell {
    padding: 3rem 1.25rem;
}.privacy_shell::before {
    opacity: 0.5;
    width: 70%;
}.privacy_shell h1 {
    font-size: calc(45px * 0.8);
    transform: translateX(0);
}.privacy_shell h2 {
    font-size: calc(35px * 0.8);
}.privacy_shell h3 {
    font-size: calc(35px * 0.7);
}.privacy_shell h4 {
    font-size: calc(35px * 0.6);
}.privacy_shell p, 
    .privacy_shell span,
    .privacy_shell li {
    font-size: calc(14px * 0.95);
}.privacy_shell li {
    padding-left: 2rem;
}
}

@media (max-width: 576px) {.privacy_shell {
    padding: 2.5rem 1rem;
}.privacy_shell h1 {
    font-size: calc(45px * 0.7);
}.privacy_shell h1::after {
    width: 5rem;
}.privacy_shell h2 {
    padding-left: 0.75rem;
}.privacy_shell h3 {
    padding-left: 0.5rem;
}.privacy_shell p, 
    .privacy_shell span {
    line-height: 1.6;
}.privacy_shell li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
}.privacy_shell li::before,
    .privacy_shell li::after {
    height: 1rem;
    width: 1rem;
}}.title_greeting {
    width: 100%;
    overflow: hidden;
    background-color: rgb(220,222,237);
    min-height: 100vh;
    position: relative;
}.title_greeting .start_begin {
    align-items: center;
    height: 100vh;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    width: 100%;
    display: flex;
}.title_greeting .page_primary {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 10px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    transform: perspective(1000px) rotateX(2deg);
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 5rem 3rem;
    display: flex;
    width: 100%;
    max-width: 1200px;
}.title_greeting .page_primary::before {
    left: 0;
    position: absolute;
    width: 100%;
    background: linear-gradient(
    135deg,
    rgb(187,193,216,0.5) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
    content: "";
    top: 0;
    height: 100%;
    z-index: 1;
}.title_greeting .page_primary::after {
    content: "";
    height: 100%;
    z-index: 2;
    background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(0, 0, 0, 0.5) 100%
  );
    left: 0;
    width: 100%;
    top: 0;
    position: absolute;
}.title_greeting .page_primary span {
    max-width: 85%;
    opacity: 0;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
    transform: translateX(-1rem);
    animation: slideInLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
}.title_greeting .page_primary h3 {
    font-weight: 600;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    background: linear-gradient(
    120deg,
    rgb(187,193,216) 0%,
    rgb(153,159,190) 100%
  );
    line-height: 1.4;
    transform: skewX(-5deg);
    color: #ffffff;
    border-left: 5px solid #ffffff;
    font-family: Arial, sans-serif;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
}.title_greeting .page_primary h1 {
    color: #ffffff;
    margin: 1rem 0 2rem;
    line-height: 1.2;
    transform: translateY(2rem);
    z-index: 10;
    position: relative;
    opacity: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-family: Arial, sans-serif;
    font-size: clamp(2.5rem, 6vw, 43px);
    font-weight: 700;
    animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.7s;
}.title_greeting .page_primary div {
    transform: translateY(2rem);
    z-index: 10;
    animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards 1s;
    position: relative;
    opacity: 0;
}.title_greeting .page_primary div div {
    transform: none;
    max-width: 600px;
    animation: none;
    opacity: 1;
}.title_greeting .page_primary p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    border-left: 3px solid rgb(153,159,190);
    margin-top: 0.5rem;
    position: relative;
    font-family: Arial, sans-serif;
    padding: 1.2rem 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(
    90deg,
    rgb(153,159,190,0.5) 0%,
    transparent 100%
  );
}.title_greeting .page_primary:hover {
    transform: perspective(1000px) rotateX(0deg);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-1rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media screen and (max-width: 992px) {.title_greeting .start_begin {
    padding: 1.5rem;
}.title_greeting .page_primary {
    padding: 4rem 2.5rem;
    min-height: 65vh;
}.title_greeting .page_primary span {
    max-width: 95%;
}.title_greeting .page_primary h3 {
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
}
}

@media screen and (max-width: 768px) {.title_greeting .start_begin {
    padding: 1rem;
    height: auto;
    min-height: 100vh;
}.title_greeting .page_primary {
    padding: 3rem 1.5rem;
    min-height: 60vh;
}.title_greeting .page_primary span {
    max-width: 100%;
}.title_greeting .page_primary h3 {
    transform: skewX(-3deg);
    font-size: 1rem;
    padding: 0.7rem 1rem;
}.title_greeting .page_primary h1 {
    margin: 0.8rem 0 1.5rem;
}.title_greeting .page_primary p {
    font-size: 1rem;
    padding: 1rem;
}
}

@media screen and (max-width: 480px) {.title_greeting .page_primary {
    padding: 2.5rem 1rem;
    transform: perspective(1000px) rotateX(1deg);
}.title_greeting .page_primary h3 {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
    transform: skewX(-2deg);
}.title_greeting .page_primary h1 {
    font-size: 2rem;
    margin: 0.6rem 0 1.2rem;
}}.join_now {
    padding: 130px 0;
    z-index: 1;
    background: linear-gradient(125deg, rgb(187,193,216) 0%, rgb(153,159,190) 100%);
    overflow: hidden;
    position: relative;
}.join_now::before {
    width: 100%;
    background-size: 20px 20px;
    position: absolute;
    top: 0;
    z-index: -1;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.07) 1px, transparent 1px);
    left: 0;
    content: '';
}.join_now::after {
    width: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.2) 0%, transparent 50%);
    z-index: -1;
    top: 0;
    left: 0;
    height: 100%;
    content: '';
    position: absolute;
    filter: blur(60px);
}.join_now .growth_path {
    z-index: 2;
    max-width: 900px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.15),
        0 5px 15px rgba(255,255,255,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.1);
    transform: rotateX(2deg) rotateY(2deg);
    position: relative;
    padding: 70px 50px;
    margin: 0 auto;
    transform-style: preserve-3d;
    justify-content: center;
    backdrop-filter: blur(15px);
    align-items: center;
    display: flex;
    perspective: 1000px;
    transition: transform 0.6s ease;
    flex-direction: column;
}.join_now .growth_path::before {
    left: -5px;
    z-index: -1;
    filter: blur(5px);
    bottom: -5px;
    right: -5px;
    position: absolute;
    top: -5px;
    content: '';
    opacity: 0.5;
    border-radius: 35px;
    animation: borderGlow 10s linear infinite;
    background: linear-gradient(45deg, 
        rgba(255,255,255,0.1),
        rgba(255,255,255,0),
        rgba(255,255,255,0.1),
        rgba(255,255,255,0),
        rgba(255,255,255,0.1)
    );
}.join_now .growth_path::after {
    border-radius: 30px;
    position: absolute;
    width: 100%;
    z-index: -1;
    height: 100%;
    left: 0;
    content: '';
    background: 
        linear-gradient(to bottom,
            rgba(255,255,255,0.1) 0%,
            transparent 100%
        );
    top: 0;
}.join_now .growth_path:hover {
    transform: rotateX(0deg) rotateY(0deg) translateY(-5px);
}.join_now h3 {
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    position: relative;
    font-size: 35px;
    letter-spacing: 3px;
    color: #ffffff;
    margin-bottom: 55px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}.join_now h3::before {
    background: linear-gradient(90deg, 
        transparent, 
        #ffffff, 
        transparent);
    transform: translateX(-50%);
    box-shadow: 0 2px 10px rgba(255,255,255,0.2);
    height: 4px;
    border-radius: 2px;
    width: 60px;
    position: absolute;
    left: 50%;
    bottom: -20px;
    content: '';
}.join_now h3::after {
    animation: lightScan 5s linear infinite;
    height: 100%;
    top: 0;
    left: -100%;
    z-index: -1;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255,255,255,0.1), 
        transparent
    );
    width: 100%;
    content: '';
    position: absolute;
}.join_now .request_team {
    letter-spacing: 2px;
    transform: perspective(1000px) translateZ(20px);
    text-decoration: none;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.4);
    font-size: 14px;
    background: rgba(255,255,255,0.9);
    padding: 18px 50px;
    border-radius: 50px;
    overflow: hidden;
    display: inline-block;
    text-transform: uppercase;
    z-index: 1;
    font-family: Arial, sans-serif;
    font-weight: 600;
    transition: all 0.4s ease;
    color: rgb(187,193,216);
    position: relative;
}.join_now .request_team::before {
    width: 100%;
    content: '';
    position: absolute;
    top: 0;
    background: linear-gradient(45deg, 
        rgb(187,193,216), 
        rgb(153,159,190));
    transition: opacity 0.4s ease;
    z-index: -1;
    opacity: 0;
    height: 100%;
    left: 0;
}.join_now .request_team::after {
    transform: rotate(35deg);
    transition: all 0.6s ease;
    left: -100px;
    top: -50%;
    position: absolute;
    width: 20px;
    z-index: 1;
    content: '';
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
}.join_now .request_team:hover {
    color: #ffffff;
    transform: perspective(1000px) translateZ(30px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.2),
        0 10px 25px rgba(0,0,0,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.4);
}.join_now .request_team:hover::before {
    opacity: 1;
}.join_now .request_team:hover::after {
    left: 200%;
}

@media screen and (max-width: 992px) {.join_now {
    padding: 110px 0;
}.join_now .growth_path {
    padding: 60px 40px;
    max-width: 85%;
}.join_now h3 {
    font-size: calc(35px * 0.9);
    margin-bottom: 50px;
}.join_now h3::before {
    height: 3px;
    bottom: -18px;
    width: 50px;
}.join_now .request_team {
    font-size: calc(14px * 0.95);
    padding: 16px 45px;
}
}

@media screen and (max-width: 768px) {.join_now {
    padding: 90px 0;
}.join_now .growth_path {
    transform: none;
    padding: 50px 30px;
}.join_now h3 {
    font-size: calc(35px * 0.8);
    margin-bottom: 45px;
    letter-spacing: 2px;
}.join_now h3::before {
    height: 3px;
    width: 45px;
    bottom: -15px;
}.join_now .request_team {
    transform: none;
    padding: 14px 40px;
    letter-spacing: 1.5px;
    font-size: calc(14px * 0.9);
}.join_now .request_team:hover {
    transform: translateY(-5px);
}
}

@media screen and (max-width: 576px) {.join_now {
    padding: 70px 0;
}.join_now .growth_path {
    border-radius: 20px;
    padding: 40px 20px;
}.join_now h3 {
    font-size: calc(35px * 0.7);
    letter-spacing: 1.5px;
    margin-bottom: 40px;
}.join_now h3::before {
    bottom: -12px;
    width: 40px;
    height: 2px;
}.join_now .request_team {
    letter-spacing: 1px;
    border-radius: 30px;
    font-size: calc(14px * 0.85);
    padding: 12px 35px;
}}

@keyframes borderGlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

@keyframes lightScan {
    0%, 100% {
        left: -100%;
        opacity: 0;
    }
    50% {
        left: 100%;
        opacity: 0.5;
    }
}.instructional_approach {
    transform-style: preserve-3d;
    overflow: hidden;
    padding: 120px 0 80px;
    position: relative;
    background: linear-gradient(145deg, rgb(220,222,237) 40%, rgb(153,159,190,0.5) 100%);
    perspective: 1000px;
}.instructional_approach::before {
    content: "";
    background: repeating-linear-gradient(
        45deg,
        rgb(187,193,216,0.5) 0px,
        transparent 2px,
        transparent 8px,
        rgb(187,193,216,0.5) 10px
    );
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0.05;
    pointer-events: none;
    width: 100%;
    left: 0;
}.instructional_approach::after {
    right: -20%;
    width: 70%;
    height: 200%;
    opacity: 0.1;
    background: linear-gradient(
        135deg,
        rgb(187,193,216,0.5) 10%,
        rgb(153,159,190,0.5) 50%,
        transparent 90%
    );
    position: absolute;
    content: "";
    pointer-events: none;
    top: -50%;
    transform: rotate(15deg) translateZ(-10px);
}.instructional_approach .container.growth_path {
    transform-style: preserve-3d;
    z-index: 2;
    position: relative;
}.instructional_approach .container.growth_path > div {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05),
        0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateZ(20px) rotateX(2deg);
    max-width: 92%;
    border-left: 5px solid rgb(187,193,216);
    margin-left: auto;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 3.5rem 3rem;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.8) 100%
    );
}.instructional_approach .container.growth_path > div:hover {
    transform: translateZ(30px) rotateX(0deg);
}.instructional_approach h3 {
    position: relative;
    transform: translateZ(5px);
    font-size: calc(29px * 0.85);
    margin-bottom: 2rem;
    color: #000000;
    font-weight: 700;
}.instructional_approach h3::before {
    background: linear-gradient(
        to right,
        rgb(187,193,216) 0%,
        rgb(153,159,190) 100%
    );
    left: 0;
    transform-origin: left center;
    bottom: -10px;
    transform: scaleX(1);
    position: absolute;
    content: "";
    height: 3px;
    transition: transform 0.4s ease-out;
    width: 80px;
}.instructional_approach .container.growth_path > div:hover h3::before {
    transform: scaleX(1.3);
}.instructional_approach p {
    margin-bottom: 0;
    transform: translateZ(5px);
    line-height: 1.8;
    position: relative;
    color: #000000;
    font-size: 12px;
}.instructional_approach p span {
    padding-left: 10px;
    position: relative;
    display: block;
}.instructional_approach p span::before {
    transform: translateX(-10px);
    content: "";
    width: 15px;
    height: 2px;
    position: absolute;
    left: -15px;
    top: 0.8em;
    background-color: rgb(187,193,216);
    transition: all 0.3s ease;
    opacity: 0;
}.instructional_approach .container.growth_path > div:hover p span::before {
    transform: translateX(0);
    opacity: 1;
}

@media (min-width: 992px) {.instructional_approach {
    padding: 150px 0 100px;
}.instructional_approach .container.growth_path > div {
    max-width: 85%;
    padding: 4rem 4.5rem;
    margin-left: auto;
    transform: translateZ(30px) rotateX(2deg) rotateY(-1deg);
}.instructional_approach .container.growth_path > div:hover {
    transform: translateZ(40px) rotateX(0deg) rotateY(0deg);
}.instructional_approach h3 {
    font-size: 29px;
    margin-bottom: 2.5rem;
}.instructional_approach p {
    line-height: 1.9;
    font-size: calc(12px * 1.05);
}
}

@media (max-width: 991px) {.instructional_approach {
    padding: 90px 0 60px;
}.instructional_approach .container.growth_path > div {
    max-width: 95%;
    padding: 2.5rem 2rem;
    transform: translateZ(10px) rotateX(1deg);
}.instructional_approach h3 {
    font-size: calc(29px * 0.8);
}
}

@media (max-width: 767px) {.instructional_approach {
    padding: 70px 0 50px;
}.instructional_approach .container.growth_path > div {
    max-width: 100%;
    transform: translateZ(5px) rotateX(0deg);
    padding: 2rem 1.5rem;
}.instructional_approach h3 {
    margin-bottom: 1.5rem;
    font-size: calc(29px * 0.7);
}.instructional_approach h3::before {
    width: 60px;
}.instructional_approach p {
    line-height: 1.7;
    font-size: calc(12px * 0.95);
}
}

@media (max-width: 575px) {.instructional_approach {
    padding: 60px 0 40px;
}.instructional_approach .container.growth_path > div {
    padding: 1.8rem 1.2rem;
    border-left-width: 3px;
}.instructional_approach h3 {
    font-size: calc(29px * 0.6);
    margin-bottom: 1.2rem;
}.instructional_approach h3::before {
    width: 50px;
    height: 2px;
}.instructional_approach p {
    line-height: 1.6;
    font-size: calc(12px * 0.9);
}
}

@media (prefers-reduced-motion: reduce) {.instructional_approach .container.growth_path > div,
    .instructional_approach .container.growth_path > div:hover,
    .instructional_approach h3::before,
    .instructional_approach p span::before {
    transform: none;
    transition: none;
}}footer {
    position: relative;
    z-index: 1;
    width: 100%;
}.discord_cta {
    position: relative;
    background: linear-gradient(135deg, #000000, rgb(153,159,190));
    font-family: Arial, sans-serif;
    padding: 80px 0 30px;
    color: #ffffff;
}.discord_cta::before {
    content: "";
    bottom: 0;
    right: 0;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    background: radial-gradient(circle at 10% 20%, rgb(153,159,190,0.5) 0%, transparent 50%);
}.discord_cta::after {
    background: linear-gradient(45deg, transparent 40%, rgb(187,193,216,0.5) 70%, transparent 100%);
    left: 0;
    bottom: 0;
    animation: shiftGradient 15s infinite linear;
    position: absolute;
    top: 0;
    pointer-events: none;
    content: "";
    right: 0;
}@keyframes shiftGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.discord_cta .container {
    position: relative;
    z-index: 2;
}footer .footer_workshops {
    grid-template-columns: 1fr;
    gap: 40px;
    display: grid;
}footer .talk_form {
    flex-wrap: wrap;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 20px;
    backdrop-filter: blur(8px);
}footer .talk_form:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}footer .info_item {
    display: flex;
    align-items: center;
    flex: 1 1 220px;
}footer .info_item svg {
    margin-right: 12px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 3px rgb(187,193,216,0.5));
    fill: rgb(187,193,216);
    height: 20px;
    width: 20px;
}footer .info_item:hover svg {
    transform: scale(1.1);
}footer .info_item p, footer .info_item a {
    text-decoration: none;
    font-size: 15px;
    align-items: center;
    font-weight: 400;
    display: flex;
    transition: color 0.3s ease;
    color: #ffffff;
}footer .info_item a:hover {
    color: rgb(187,193,216);
    text-shadow: 0 0 8px rgb(187,193,216,0.5);
}footer .text_main_holder {
    grid-template-columns: 1fr;
    display: grid;
    gap: 40px;
    margin-top: 20px;
}footer .header_pro {
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
}footer .header_pro svg {
    filter: drop-shadow(0 0 5px rgb(187,193,216,0.5));
    margin-bottom: 10px;
    height: 50px;
    transition: filter 0.3s ease;
    width: auto;
}footer .header_pro:hover svg {
    filter: drop-shadow(0 0 8px rgb(187,193,216));
}footer .academy_info {
    line-height: 1.5;
    opacity: 0.8;
    font-size: 14px;
    max-width: 300px;
    color: #ffffff;
}footer .nav_block {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
    transition: box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
}footer .nav_block:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}footer .nav_block::before {
    z-index: -1;
    left: -2px;
    background: linear-gradient(45deg, rgb(187,193,216), transparent, rgb(153,159,190), transparent);
    position: absolute;
    content: "";
    top: -2px;
    right: -2px;
    border-radius: calc(14px + 2px);
    opacity: 0;
    transition: opacity 0.5s ease;
    bottom: -2px;
}footer .nav_block:hover::before {
    opacity: 0.7;
    animation: borderRotate 6s linear infinite;
}@keyframes borderRotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

footer .nav_block h5 {
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    position: relative;
    font-size: 19px;
}footer .nav_block h5::after {
    content: "";
    height: 2px;
    background: rgb(187,193,216);
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    transition: width 0.3s ease;
}footer .nav_block:hover h5::after {
    width: 100px;
}footer .header_nav {
    flex-direction: column;
    margin-bottom: 25px;
    gap: 10px;
    display: flex;
}footer .header_nav a {
    font-size: calc(15px - 1px);
    padding-left: 15px;
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}footer .header_nav a::before {
    width: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    opacity: 0.7;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    background-color: rgb(187,193,216);
    position: absolute;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 0;
}footer .header_nav a:hover {
    color: rgb(187,193,216);
    padding-left: 20px;
}footer .header_nav a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    background-color: rgb(187,193,216);
    box-shadow: 0 0 5px rgb(187,193,216), 0 0 10px rgb(187,193,216,0.5);
}footer .subscribe_holder {
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    border-radius: 14px;
    background: linear-gradient(135deg, rgb(153,159,190,0.5), #000000);
}footer .subscribe_holder::before {
    z-index: -1;
    animation: pulseBackground 10s infinite ease-in-out;
    height: 200%;
    content: "";
    left: -50%;
    position: absolute;
    width: 200%;
    background: radial-gradient(circle, transparent 20%, #000000 70%);
    top: -50%;
}@keyframes pulseBackground {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

footer .subscribe_holder h5 {
    position: relative;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 19px;
    display: inline-block;
    color: #ffffff;
}footer .subscribe_holder h5::after {
    bottom: -5px;
    position: absolute;
    width: 100%;
    background: linear-gradient(90deg, rgb(187,193,216), transparent);
    height: 2px;
    left: 0;
    content: "";
}footer .subscribe_holder p {
    color: #ffffff;
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}footer .input_holder {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 15px;
}footer .input_holder input[type="email"] {
    width: 100%;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}footer .input_holder input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgb(187,193,216);
    outline: none;
    box-shadow: 0 0 10px rgb(187,193,216,0.5);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .sub_style {
    position: relative;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    display: inline-block;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ffffff;
    padding: 14px 24px;
    background: rgb(187,193,216);
}footer .sub_style::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    content: "";
    top: 0;
    left: -100%;
    position: absolute;
    height: 100%;
    width: 100%;
}footer .sub_style:hover {
    transform: translateY(-3px);
    background: rgb(153,159,190);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}footer .sub_style:hover::before {
    left: 100%;
}footer .workshop_cta {
    padding-top: 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}footer .policy_links {
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

@media (min-width: 768px) {footer .info_item {
    flex: 1 1 60px;
}footer .text_main_holder {
    grid-template-columns: 1fr 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .sub_style {
    white-space: nowrap;
}
}

@media (min-width: 992px) {footer .footer_workshops {
    grid-template-columns: 1fr;
}footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .talk_form {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}footer .info_item {
    flex: 0 1 auto;
}
}

@media (max-width: 767px) {footer .discord_cta {
    padding: 60px 0 30px;
}footer .talk_form {
    gap: 15px;
    padding: 20px;
    flex-direction: column;
}footer .info_item {
    width: 100%;
}footer .nav_block, footer .subscribe_holder {
    padding: 20px;
}footer .subscribe_holder h5, footer .nav_block h5 {
    font-size: calc(19px - 2px);
}footer .subscribe_holder p, footer .header_nav a {
    font-size: calc(15px - 2px);
}footer .workshop_cta {
    margin-top: 30px;
}
}

@media (max-width: 576px) {footer .discord_cta {
    padding: 40px 0 20px;
}footer .talk_form, footer .nav_block, footer .subscribe_holder {
    padding: 15px;
}footer .input_holder input[type="email"], footer .sub_style {
    padding: 12px;
}footer .header_pro svg {
    height: 40px;
}footer .academy_info {
    font-size: calc(14px - 1px);
}}.follow {
    overflow: hidden;
    perspective: 1000px;
    box-shadow: 0 -20px 40px rgba(0,0,0,0.08) inset;
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(187,193,216,0.5), rgb(153,159,190));
}.follow::before {
    background: linear-gradient(45deg, transparent 45%, rgb(153,159,190,0.5) 55%, transparent 65%);
    width: 100%;
    z-index: 1;
    content: '';
    pointer-events: none;
    height: 100%;
    position: absolute;
    left: 0;
    transform: translateZ(-10px) skewY(-5deg);
    top: 0;
}.follow::after {
    z-index: 0;
    width: 150%;
    position: absolute;
    height: 50px;
    left: -25%;
    transform: rotate(-2deg);
    opacity: 0.05;
    background: rgb(255, 255, 255, 0.5);
    top: 20%;
    content: '';
}.follow .container {
    z-index: 2;
    position: relative;
    transform-style: preserve-3d;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}.follow .growth_path {
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
    display: flex;
    background: linear-gradient(160deg, #ffffff 0%, rgba(255,255,255,0.9) 100%);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12), 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    padding: 40px;
    flex-direction: column;
    border-radius: 4px;
}.follow .growth_path:hover {
    transform: translateZ(20px) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.08);
}.follow .growth_path::before {
    height: 100%;
    width: 6px;
    border-top-left-radius: 4px;
    left: 0;
    top: 0;
    border-bottom-left-radius: 4px;
    position: absolute;
    content: '';
    background: linear-gradient(to bottom, rgb(187,193,216), rgb(153,159,190));
}.follow .growth_path h4 {
    line-height: 1.4;
    margin: 0 0 30px 0;
    letter-spacing: -0.01em;
    font-weight: 600;
    transform: translateZ(10px);
    font-size: 21px;
    position: relative;
    color: #000000;
}.follow .input_holder {
    transform: translateZ(5px);
    flex-wrap: wrap;
    display: flex;
    gap: 15px;
    position: relative;
}.follow .input_holder span {
    flex: 1;
    min-width: 200px;
    position: relative;
}.follow .input_holder span:first-child {
    flex: 2;
}.follow .input_holder input[type="email"] {
    padding: 15px 20px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    transform-origin: left center;
    width: 100%;
    outline: none;
    background: #ffffff;
    color: #000000;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}.follow .input_holder input[type="email"]:focus {
    transform: scale(1.01);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: rgb(187,193,216);
}.follow .input_holder input[type="submit"] {
    color: #ffffff;
    border: none;
    width: 100%;
    font-family: Arial, sans-serif;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    position: relative;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgb(187,193,216), rgb(153,159,190));
    cursor: pointer;
    font-weight: 600;
}.follow .input_holder input[type="submit"]::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    z-index: -1;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    transition: all 0.5s ease;
}.follow .input_holder input[type="submit"]:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}.follow .input_holder input[type="submit"]:hover::before {
    left: 100%;
}.follow .input_holder input[type="submit"]:active {
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transform: translateY(1px);
}

@media (max-width: 992px) {.follow {
    padding: 60px 0;
}.follow .growth_path {
    padding: 30px;
}.follow .growth_path h4 {
    margin-bottom: 25px;
    font-size: calc(21px * 0.9);
}
}

@media (max-width: 768px) {.follow {
    padding: 50px 0;
}.follow .growth_path {
    padding: 25px;
}.follow .growth_path h4 {
    font-size: calc(21px * 0.85);
    margin-bottom: 20px;
}.follow .input_holder {
    gap: 10px;
    flex-direction: column;
}.follow .input_holder span {
    width: 100%;
}.follow .input_holder input[type="email"],
  .follow .input_holder input[type="submit"] {
    padding: 12px 15px;
}
}

@media (max-width: 576px) {.follow {
    padding: 40px 0;
}.follow .growth_path {
    padding: 20px;
}.follow .growth_path::before {
    width: 4px;
}.follow .growth_path h4 {
    font-size: calc(21px * 0.8);
    margin-bottom: 15px;
}.follow .input_holder input[type="email"],
  .follow .input_holder input[type="submit"] {
    padding: 10px 12px;
    font-size: calc(17px * 0.9);
}}.price_box {
    overflow: hidden;
    position: relative;
    padding: 4rem 0;
    color: #ffffff;
}.price_box::before {
    content: "";
    background: linear-gradient(135deg, rgba(34, 30, 80, 0.95), rgba(19, 31, 60, 0.85));
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    left: 0;
    top: 0;
}.price_box .container {
    position: relative;
    padding: 0 1.5rem;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}.price_box .plan_rates {
    position: relative;
}.price_box h2 {
    transform: translateY(10px);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    background: linear-gradient(90deg, rgb(187,193,216), rgb(153,159,190));
    animation: fadeIn 0.8s ease-out forwards;
    font-size: 34px;
    color: transparent;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}.price_box .pricing_fees {
    font-size: calc(12px * 1.1);
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    transform: translateY(15px);
    line-height: 1.6;
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    opacity: 0;
    position: relative;
    padding: 0 1rem;
    margin: 0 auto 3rem;
}.price_box .cost_matrix {
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    perspective: 1000px;
    margin: 0;
    display: grid;
    list-style: none;
    gap: 2rem;
}.price_box .cost_matrix li {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}.price_box .cost_matrix li:nth-child(1) {
    animation-delay: 0.2s;
}.price_box .cost_matrix li:nth-child(2) {
    animation-delay: 0.3s;
}.price_box .cost_matrix li:nth-child(3) {
    animation-delay: 0.4s;
}.price_box .cost_matrix li:nth-child(4) {
    animation-delay: 0.5s;
}.price_box .access_rates {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: block;
    height: 100%;
}.price_box .access_rates:hover {
    transform: translateY(-12px) scale(1.02);
}.price_box .deal_board {
    height: 100%;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    flex-direction: column;
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}.price_box .deal_board::before {
    position: absolute;
    content: "";
    height: 5px;
    left: 0;
    transform: scaleX(0);
    top: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: left;
    background: linear-gradient(90deg, rgb(187,193,216), rgb(153,159,190));
    width: 100%;
}.price_box .access_rates:hover .deal_board::before {
    transform: scaleX(1);
}.price_box .trial_pricing {
    flex-direction: column;
    padding: 2.5rem 2rem;
    height: 100%;
    color: #ffffff;
    display: flex;
}.price_box .trial_pricing h4 {
    color: #ffffff;
    position: relative;
    font-weight: 600;
    font-size: calc(20px * 1.2);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    margin-top: 0;
}.price_box .trial_pricing h4::after {
    height: 2px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    background: rgb(153,159,190);
    width: 50px;
}.price_box .trial_pricing p {
    flex-grow: 1;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 2rem;
    word-break: break-word;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 12px;
}.price_box .pricing_levels {
    margin-top: auto;
    align-items: center;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    background: linear-gradient(120deg, rgb(187,193,216), rgb(153,159,190));
    font-size: calc(12px * 1.3);
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    align-self: flex-start;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
}.price_box .access_rates:hover .pricing_levels {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 1200px) {.price_box .cost_matrix {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}.price_box .trial_pricing {
    padding: 2rem 1.5rem;
}
}

@media (max-width: 991px) {.price_box {
    padding: 3.5rem 0;
}.price_box h2 {
    font-size: calc(34px * 0.9);
}.price_box .pricing_fees {
    font-size: 12px;
    margin-bottom: 2.5rem;
}
}

@media (max-width: 768px) {.price_box {
    padding: 3rem 0;
}.price_box h2 {
    font-size: calc(34px * 0.85);
}.price_box .cost_matrix {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
}.price_box .trial_pricing h4 {
    font-size: 20px;
}.price_box .pricing_levels {
    font-size: calc(12px * 1.2);
    padding: 0.6rem 1.2rem;
}
}

@media (max-width: 480px) {.price_box {
    padding: 2.5rem 0;
}.price_box h2 {
    font-size: calc(34px * 0.8);
}.price_box .pricing_fees {
    margin-bottom: 2rem;
    font-size: calc(12px * 0.95);
}.price_box .trial_pricing {
    padding: 1.75rem 1.25rem;
}.price_box .trial_pricing p {
    font-size: calc(12px * 0.95);
    margin-bottom: 1.5rem;
}}header {
    overflow: visible;
    background: linear-gradient(to right, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 100;
    position: relative;
    margin-top: 0;
    padding: 0;
}header::before {
    background-size: 20px 20px;
    left: 0;
    content: '';
    position: absolute;
    height: 100%;
    z-index: 0;
    width: 100%;
    top: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}header::after {
    left: 0;
    background-size: 200% auto;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgb(187,193,216) 0%,
        rgb(153,159,190) 50%,
        rgb(187,193,216) 100%
    );
    animation: gradientSlide 5s linear infinite;
    width: 100%;
    content: '';
    height: 4px;
    position: absolute;
}@keyframes gradientSlide {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

header .main_tutor {
    z-index: 5;
    position: relative;
    padding: 1.3rem 2rem;
    justify-content: space-between;
    display: flex;
    align-items: center;
}header .header_pro {
    z-index: 5;
    flex: 0 0 auto;
    position: relative;
}header .page_header {
    position: relative;
    display: flex;
    transition: all 0.3s ease;
    text-decoration: none;
    align-items: center;
    z-index: 2;
    padding: 0.5rem;
}header .page_header:hover {
    transform: translateY(-3px) scale(1.02);
}header .page_header img {
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    max-height: 40px;
}header .header_pro::before {
    content: '';
    right: -8px;
    bottom: -8px;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0.3;
    position: absolute;
    border: 1px solid rgb(187,193,216);
    top: -8px;
    transform: skew(-3deg);
    left: -8px;
}header .header_pro:hover::before {
    box-shadow: 0 0 15px rgb(187,193,216,0.5);
    transform: skew(-5deg) scale(1.05);
    opacity: 0.7;
}header .nav_block {
    display: flex;
    margin: 0;
    z-index: 5;
    padding: 0;
    position: relative;
    list-style: none;
}header .main_navbar {
    margin: 0 0.3rem;
    position: relative;
    perspective: 800px;
}header .main_navbar a {
    color: #ffffff;
    display: block;
    font-weight: 600;
    position: relative;
    letter-spacing: 0.5px;
    text-decoration: none;
    z-index: 1;
    transition: all 0.4s ease;
    padding: 0.8rem 1.2rem;
    border: 1px solid transparent;
    font-size: 14px;
}header .main_navbar a::before {
    content: '';
    background: rgb(187,193,216);
    bottom: 5px;
    transform: scaleX(0);
    width: 80%;
    opacity: 0.7;
    position: absolute;
    transition: transform 0.3s ease;
    left: 10%;
    height: 1px;
}header .main_navbar a:hover {
    color: rgb(187,193,216);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateZ(10px);
    border-color: rgba(255, 255, 255, 0.1);
}header .main_navbar a:hover::before {
    transform: scaleX(1);
}header .main_navbar::after {
    height: 100%;
    background: radial-gradient(circle at center, rgb(187,193,216,0.5) 0%, transparent 70%);
    z-index: -1;
    transition: opacity 0.3s ease;
    top: 0;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
}header .main_navbar:hover::after {
    opacity: 0.4;
}header .main_tutor::before {
    content: '';
    height: 1px;
    left: 35%;
    width: 30%;
    background: linear-gradient(90deg, transparent, rgb(187,193,216), transparent);
    top: 0;
    position: absolute;
}header .main_tutor::after {
    left: 20%;
    position: absolute;
    height: 1px;
    opacity: 0.1;
    content: '';
    width: 60%;
    bottom: 0;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}.head_sitewrap {
    background: rgb(220,222,237);
    position: relative;
    padding-top: 2rem;
    z-index: 1;
    margin-top: 0;
}

@media (min-width: 1400px) {header .main_tutor {
    max-width: 1300px;
    margin: 0 auto;
}header .main_navbar {
    margin: 0 0.5rem;
}header .main_navbar a {
    padding: 0.8rem 1.5rem;
}
}

@media (max-width: 991px) {header {
    padding: 0;
}header .main_tutor {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    justify-content: space-between;
}header .header_pro {
    margin-bottom: 0;
}header .nav_block {
    justify-content: center;
    margin-top: 1rem;
    flex: 1 0 100%;
}header .main_navbar {
    margin: 0 0.2rem;
}header .main_navbar a {
    padding: 0.6rem 0.8rem;
    font-size: calc(14px - 1px);
}header .header_pro::before {
    right: -5px;
    top: -5px;
    bottom: -5px;
    left: -5px;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .main_tutor {
    padding: 0.8rem 1.2rem;
}header .header_pro {
    max-width: 130px;
}header .header_pro::before {
    display: none;
}header .nav_block {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
    margin-top: 0.8rem;
}header .nav_block::-webkit-scrollbar {
    height: 2px;
}header .nav_block::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(187,193,216);
}header .main_navbar {
    flex: 0 0 auto;
    margin: 0 0.1rem;
}header .main_navbar a {
    letter-spacing: 0;
    white-space: nowrap;
    padding: 0.5rem 0.7rem;
    font-size: calc(14px - 2px);
}header .main_navbar a::before {
    bottom: 3px;
}header::after {
    height: 2px;
}
}

@media (max-width: 479px) {header .main_tutor {
    padding: 0.7rem 1rem;
}header .header_pro {
    max-width: 110px;
}header .main_navbar a {
    font-size: calc(14px - 3px);
    padding: 0.4rem 0.6rem;
}}.our_mission {
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.our_mission::before {
    background: radial-gradient(circle at 30% 40%, rgb(187,193,216,0.5), rgba(20, 30, 80, 0.85));
    right: 0;
    z-index: 1;
    top: 0;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
}.our_mission::after {
    height: 100%;
    z-index: 2;
    content: "";
    width: 100%;
    border-radius: 50%;
    position: absolute;
    animation: orbitGlow 15s infinite alternate ease-in-out;
    background: radial-gradient(circle at center, rgb(153,159,190,0.5), transparent 70%);
    opacity: 0.5;
    right: -50%;
    top: -50%;
}.our_mission .container {
    z-index: 5;
    position: relative;
    padding: 0 30px;
    max-width: 1200px;
    margin: 0 auto;
}.our_mission .text_content {
    transform: perspective(1000px) rotateY(-2deg);
    border-left: 3px solid rgb(153,159,190);
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(10px);
    padding: 60px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}.our_mission .text_content:hover {
    transform: perspective(1000px) rotateY(0deg);
}.our_mission .text_content > div:first-child {
    position: relative;
    margin-bottom: 15px;
}.our_mission .text_content h5 {
    margin: 0;
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 1.5px;
}.our_mission .text_content h5::after {
    content: "";
    height: 3px;
    animation: expandWidth 3s infinite alternate cubic-bezier(0.645, 0.045, 0.355, 1);
    width: 40%;
    left: 0;
    position: absolute;
    background: rgb(153,159,190);
    bottom: -8px;
}.our_mission .text_content > div:nth-child(2) {
    margin-bottom: 30px;
}.our_mission .text_content > div:nth-child(2) p {
    transform: translateX(5px);
    padding-left: 15px;
    position: relative;
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: calc(18px * 1.3);
    color: #ffffff;
    display: inline-block;
}.our_mission .text_content > div:nth-child(2) p::before {
    background: rgb(153,159,190);
    left: 0;
    top: 50%;
    border-radius: 3px;
    width: 6px;
    content: "";
    height: 60%;
    transform: translateY(-50%);
    position: absolute;
}.our_mission .text_content ol {
    counter-reset: item;
    list-style: none;
    margin: 0;
    padding: 0;
}.our_mission .text_content ol li {
    padding: 10px 0 10px 10px;
    font-family: Arial, sans-serif;
    position: relative;
    border-left: 1px dashed rgba(255, 255, 255, 0.3);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: justify;
}.our_mission .text_content ol li::before {
    top: 0;
    box-shadow: 0 0 15px rgb(153,159,190);
    background: rgb(153,159,190);
    position: absolute;
    border-radius: 50%;
    animation: pulseGlow 3s infinite alternate;
    height: 10px;
    content: "";
    width: 10px;
    left: -5px;
}

@keyframes orbitGlow {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.4;
    }
    100% {
        transform: rotate(360deg) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes expandWidth {
    0% {
        width: 40%;
    }
    100% {
        width: 100%;
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgb(153,159,190);
    }
    100% {
        transform: scale(1.5);
        box-shadow: 0 0 15px rgb(153,159,190), 0 0 30px rgb(153,159,190,0.5);
    }
}

@media (max-width: 992px) {.our_mission {
    padding: 80px 0;
}.our_mission .text_content {
    padding: 40px 30px;
}.our_mission .text_content > div:nth-child(2) p {
    font-size: calc(18px * 1.1);
}
}

@media (max-width: 768px) {.our_mission {
    padding: 60px 0;
}.our_mission .text_content {
    transform: perspective(1000px) rotateY(0deg);
    padding: 30px 20px;
}.our_mission .text_content h5 {
    font-size: calc(18px * 0.9);
}.our_mission .text_content > div:nth-child(2) p {
    font-size: 18px;
}.our_mission .text_content ol li {
    line-height: 1.7;
    font-size: calc(18px * 0.95);
}
}

@media (max-width: 576px) {.our_mission {
    padding: 40px 0;
}.our_mission .container {
    padding: 0 15px;
}.our_mission .text_content {
    padding: 25px 15px;
}.our_mission .text_content h5 {
    font-size: calc(18px * 0.85);
}.our_mission .text_content > div:nth-child(2) p {
    font-size: calc(18px * 0.9);
}.our_mission .text_content ol li {
    font-size: calc(18px * 0.9);
    line-height: 1.6;
    padding: 5px 0 5px 10px;
}}.course_fit_for {
    background: rgb(220,222,237);
    padding: 120px 0 100px;
    position: relative;
    perspective: 1000px;
    overflow: hidden;
}.course_fit_for::before {
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    top: -10%;
    position: absolute;
    filter: blur(60px);
    content: '';
    transform: rotate(-15deg);
    animation: rotateBlob 20s infinite linear;
    height: 600px;
    right: -5%;
    background: linear-gradient(45deg, rgb(187,193,216,0.5), rgb(153,159,190,0.5));
    opacity: 0.6;
    width: 600px;
}@keyframes rotateBlob {
    0% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
        transform: rotate(-15deg);
    }
    50% {
        border-radius: 45% 55% 52% 48% / 56% 48% 52% 44%;
        transform: rotate(10deg);
    }
    100% {
        border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
        transform: rotate(-15deg);
    }
}

.course_fit_for .container {
    margin: 0 auto;
    z-index: 3;
    position: relative;
    max-width: 1200px;
    padding: 0 15px;
}.course_fit_for .growth_path {
    padding: 0;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}.course_fit_for h4 {
    font-size: 45px;
    font-weight: 700;
    transform: translateZ(40px);
    position: relative;
    max-width: 700px;
    color: #000000;
    padding-left: 35px;
    margin-bottom: 70px;
}.course_fit_for h4::before {
    position: absolute;
    border-radius: 10px;
    height: calc(100% - 20px);
    background: rgb(187,193,216);
    width: 8px;
    left: 0;
    content: '';
    top: 15px;
}.course_fit_for h4::after {
    left: 30px;
    height: 3px;
    bottom: -15px;
    width: 120px;
    border-radius: 10px;
    background: rgb(153,159,190);
    content: '';
    position: absolute;
}.course_fit_for div > div {
    grid-auto-rows: minmax(100px, auto);
    gap: 25px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    transform-style: preserve-3d;
}.course_fit_for p {
    border-radius: 19px;
    display: flex;
    align-items: flex-start;
    transform: translateZ(0);
    padding: 30px;
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-size: 15px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    line-height: 1.6;
    margin: 0;
}.course_fit_for p:hover {
    transform: translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}.course_fit_for p svg {
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 3px;
    width: 30px;
    margin-right: 20px;
    height: 30px;
}.course_fit_for p:hover svg {
    transform: scale(1.2) rotate(5deg);
}.course_fit_for p svg path {
    fill: rgb(187,193,216);
    transition: fill 0.3s ease;
}.course_fit_for p:hover svg path {
    fill: rgb(153,159,190);
}.course_fit_for p::after {
    transition: transform 0.4s ease;
    width: 100%;
    transform: scaleX(0);
    background: linear-gradient(90deg, rgb(187,193,216), rgb(153,159,190));
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: left;
    content: '';
}.course_fit_for p:hover::after {
    transform: scaleX(1);
}.course_fit_for p:nth-child(1) {
    grid-row: 1;
    z-index: 5;
    grid-column: 1 / span 6;
}.course_fit_for p:nth-child(2) {
    z-index: 4;
    grid-column: 8 / span 5;
    grid-row: 1;
}.course_fit_for p:nth-child(3) {
    z-index: 6;
    grid-column: 3 / span 6;
    grid-row: 2;
}.course_fit_for p:nth-child(4) {
    z-index: 3;
    grid-column: 1 / span 4;
    grid-row: 3;
}.course_fit_for p:nth-child(5) {
    z-index: 2;
    grid-column: 6 / span 7;
    grid-row: 3;
}.course_fit_for p:nth-child(6) {
    z-index: 1;
    grid-row: 4;
    grid-column: 2 / span 5;
}.course_fit_for p:nth-child(7) {
    grid-row: 4;
    z-index: 1;
    grid-column: 8 / span 5;
}.course_fit_for p:nth-child(8) {
    z-index: 1;
    grid-row: 5;
    grid-column: 4 / span 6;
}@keyframes float-in {
    0% {
        opacity: 0;
        transform: translateY(50px) translateZ(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.course_fit_for p {
    animation: float-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}.course_fit_for p:nth-child(1) {
    animation-delay: 0.1s;
}.course_fit_for p:nth-child(2) {
    animation-delay: 0.3s;
}.course_fit_for p:nth-child(3) {
    animation-delay: 0.5s;
}.course_fit_for p:nth-child(4) {
    animation-delay: 0.7s;
}.course_fit_for p:nth-child(5) {
    animation-delay: 0.9s;
}.course_fit_for p:nth-child(6) {
    animation-delay: 1.1s;
}.course_fit_for p:nth-child(7) {
    animation-delay: 1.3s;
}.course_fit_for p:nth-child(8) {
    animation-delay: 1.5s;
}

@media screen and (max-width: 1200px) {.course_fit_for p:nth-child(1) {
    grid-column: 1 / span 7;
}.course_fit_for p:nth-child(2) {
    grid-column: 8 / span 5;
}.course_fit_for p:nth-child(3) {
    grid-column: 2 / span 7;
}.course_fit_for p:nth-child(4) {
    grid-column: 1 / span 5;
}.course_fit_for p:nth-child(5) {
    grid-column: 6 / span 7;
}
}

@media screen and (max-width: 992px) {.course_fit_for {
    padding: 90px 0 80px;
}.course_fit_for h4 {
    margin-bottom: 60px;
    font-size: calc(45px * 0.85);
}.course_fit_for div > div {
    gap: 20px;
    grid-template-columns: repeat(8, 1fr);
}.course_fit_for p {
    padding: 25px;
}.course_fit_for p:nth-child(1) {
    grid-column: 1 / span 4;
}.course_fit_for p:nth-child(2) {
    grid-column: 5 / span 4;
}.course_fit_for p:nth-child(3) {
    grid-column: 2 / span 6;
}.course_fit_for p:nth-child(4) {
    grid-column: 1 / span 3;
}.course_fit_for p:nth-child(5) {
    grid-column: 4 / span 5;
}.course_fit_for p:nth-child(6) {
    grid-column: 2 / span 6;
}.course_fit_for p:nth-child(7) {
    grid-column: 1 / span 4;
}.course_fit_for p:nth-child(8) {
    grid-column: 5 / span 4;
}
}

@media screen and (max-width: 768px) {.course_fit_for {
    padding: 80px 0 70px;
}.course_fit_for h4 {
    margin-bottom: 50px;
    padding-left: 25px;
    font-size: calc(45px * 0.7);
}.course_fit_for h4::before {
    width: 6px;
}.course_fit_for div > div {
    grid-template-columns: 1fr;
    gap: 15px;
}.course_fit_for p {
    grid-column: 1 !important;
    padding: 20px;
    grid-row: auto !important;
}.course_fit_for p svg {
    height: 25px;
    margin-right: 15px;
    width: 25px;
}}.course_program {
    overflow: hidden;
    position: relative;
    background-color: #000000;
    padding: 100px 0;
}.course_program::before {
    background: 
        radial-gradient(circle at 30% 20%, rgb(187,193,216,0.5) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgb(153,159,190,0.5) 0%, transparent 40%);
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    z-index: 1;
    width: 100%;
}.course_program::after {
    content: "";
    top: 0;
    z-index: 1;
    width: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
    height: 100%;
    left: 0;
    position: absolute;
}.course_program .container {
    position: relative;
    z-index: 2;
}.course_program .learn_plan {
    display: grid;
    min-height: 500px;
    grid-template-areas:
        "image title"
        "desc1 desc2";
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
}.course_program .text_content {
    display: contents;
}.course_program .text_content h2 {
    grid-area: title;
    font-size: 30px;
    opacity: 0;
    font-weight: 700;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    padding: 30px;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 100%);
    margin: 0;
    align-self: center;
    border-left: 3px solid rgb(187,193,216);
    animation: slide-in 0.8s forwards 0.2s;
    transform: translateX(-30px);
    color: #ffffff;
}.course_program .text_content .description:nth-of-type(1) {
    animation: fade-up 0.8s forwards 0.4s;
    grid-area: desc1;
    opacity: 0;
    transform: translateY(30px);
}.course_program .text_content .description:nth-of-type(2) {
    grid-area: desc2;
    opacity: 0;
    transform: translateY(30px);
    animation: fade-up 0.8s forwards 0.6s;
}.course_program .text_content .description {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    overflow: hidden;
    border-radius: 30px;
    margin: 0;
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 25px;
    position: relative;
    font-size: 12px;
    line-height: 1.8;
    border-top: 3px solid rgb(153,159,190);
}.course_program .text_content .description::before {
    height: 100%;
    position: absolute;
    pointer-events: none;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}.course_program .landscape_img {
    grid-area: image;
    border-radius: 30px;
    min-height: 100%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    position: relative;
}.course_program .landscape_img::before {
    width: 100%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, transparent 100%);
    position: absolute;
    content: "";
    height: 100%;
    top: 0;
    left: 0;
}

@keyframes slide-in {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-up {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    95% {
        opacity: 0.5;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@media (max-width: 991px) {.course_program {
    padding: 80px 0;
}.course_program .learn_plan {
    min-height: auto;
    grid-template-areas:
            "image image"
            "title title"
            "desc1 desc2";
}.course_program .landscape_img {
    height: 400px;
}
}

@media (max-width: 767px) {.course_program {
    padding: 60px 0;
}.course_program .learn_plan {
    gap: 20px;
    grid-template-areas:
            "image"
            "title"
            "desc1"
            "desc2";
    grid-template-columns: 1fr;
}.course_program .landscape_img {
    height: 350px;
}.course_program .text_content h2 {
    font-size: calc(30px * 0.9);
    padding: 20px;
}.course_program .text_content .description {
    padding: 20px;
}

}

@media (max-width: 480px) {.course_program {
    padding: 40px 0;
}.course_program .landscape_img {
    height: 250px;
}.course_program .text_content h2 {
    padding: 15px;
    font-size: calc(30px * 0.8);
}.course_program .text_content .description {
    font-size: calc(12px * 0.95);
    padding: 15px;
}.course_program .tech-element {
    display: none;
}
}