* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}.head_core_ex {
    flex: 1 0 auto;
}.footnote_ref_ex {
    flex: 0 0 auto;
}.segment-wrapper_ex {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}svg {
    height: 30px;
    width: 30px;
}a {
    text-decoration: none;
    color: inherit;
}header,footer {
    width: 100%;
}html,body {
    color: #000000;
    auto
contain
    scroll-behavior: auto;
    height: 100%;
    font-family: Arial, sans-serif;
    min-height: 100%;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1118px;
}

@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
header .main_start_ex {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 100;
    overflow: hidden;
    background: linear-gradient(120deg, rgb(216,197,203) 0%, rgb(191,151,157,0.5) 100%);
}header .main_start_ex::before {
    animation: slidePattern 25s linear infinite;
    width: 100%;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgb(166,104,135,0.5) 10px,
        rgb(166,104,135,0.5) 11px
    );
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.1;
}header .main_start_ex::after {
    left: -25%;
    position: absolute;
    opacity: 0.1;
    height: 100px;
    background: rgb(191,151,157);
    width: 150%;
    transform: rotate(-2deg);
    content: "";
    top: -50px;
    z-index: -2;
}header .container {
    padding: 1.5rem 2rem;
    position: relative;
}header .head_prime_ex {
    align-items: center;
    grid-template-columns: auto 1fr;
    display: grid;
    gap: 2rem;
}header .nav_master_ex {
    position: relative;
    z-index: 2;
}header .main_base_ex {
    padding: 15px;
    position: relative;
    display: block;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgb(191,151,157,0.5);
    transform: rotate(-3deg);
    background: #ffffff;
}header .main_base_ex::before {
    bottom: -5px;
    left: -5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    border: 2px dashed rgb(191,151,157,0.5);
    opacity: 0;
    top: -5px;
    right: -5px;
}header .main_base_ex:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 8px 8px 0 rgb(191,151,157);
}header .main_base_ex:hover::before {
    left: -8px;
    right: -8px;
    bottom: -8px;
    top: -8px;
    opacity: 1;
}header .main_base_ex svg {
    height: 45px;
    width: auto;
    filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.5));
}header .head_pagewrap_ex {
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    list-style: none;
    display: flex;
}header .head_pagewrap_ex::before {
    border-radius: 0 17px 17px 0;
    right: 0;
    bottom: 0;
    position: absolute;
    width: 85%;
    background: linear-gradient(90deg, transparent, rgb(166,104,135,0.5) 100%);
    transition: width 0.3s ease;
    content: "";
    top: 0;
    z-index: -1;
    opacity: 0.15;
}header .head_pagewrap_ex:hover::before {
    width: 100%;
}header .page_header_ex {
    position: relative;
    margin: 5px 3px;
}header .page_header_ex:nth-child(odd) {
    transform: translateY(-3px);
}header .page_header_ex:nth-child(even) {
    transform: translateY(3px);
}header .page_header_ex a {
    padding: 8px 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
    display: block;
    border-left: 3px solid transparent;
    overflow: hidden;
    position: relative;
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 15px;
    border-radius: 0 10px 0 10px;
}header .page_header_ex a::before {
    transition: transform 0.3s ease;
    transform-origin: top;
    height: 100%;
    width: 5px;
    position: absolute;
    background: rgb(191,151,157);
    content: "";
    transform: scaleY(0);
    top: 0;
    right: 0;
}header .page_header_ex a::after {
    content: "";
    position: absolute;
    transition: transform 0.3s ease 0.1s;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(191,151,157) 0%, rgb(166,104,135) 100%);
    left: 0;
    height: 2px;
    transform-origin: left;
    transform: scaleX(0);
}header .page_header_ex a:hover {
    border-left-color: rgb(191,151,157);
    transform: translateX(5px);
    color: rgb(191,151,157);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
}header .page_header_ex a:hover::before {
    transform: scaleY(1);
}header .page_header_ex a:hover::after {
    transform: scaleX(1);
}

@keyframes slidePattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 500px 500px;
    }
}

@media (max-width: 991px) {header .head_prime_ex {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-template-rows: auto auto;
}header .nav_master_ex {
    justify-self: center;
}header .head_pagewrap_ex {
    justify-content: center;
}header .head_pagewrap_ex::before {
    background: rgb(166,104,135,0.5);
    width: 100%;
    opacity: 0.1;
}
}

@media (max-width: 767px) {header .container {
    padding: 1.2rem 1rem;
}header .head_pagewrap_ex {
    width: 100%;
    flex-direction: column;
}header .page_header_ex {
    margin: 3px 0;
    transform: none !important;
    width: 100%;
}header .page_header_ex a {
    text-align: center;
    border-radius: 10px;
    border-left: none;
    border-bottom: 3px solid transparent;
}header .page_header_ex a:hover {
    transform: translateY(-3px);
    border-bottom-color: rgb(191,151,157);
    border-left-color: transparent;
}header .page_header_ex a::before {
    height: 5px;
    right: auto;
    transform: scaleX(0);
    left: 0;
    bottom: 0;
    top: auto;
    width: 100%;
}header .page_header_ex a:hover::before {
    transform: scaleX(1);
}
}

@media (max-width: 480px) {header .main_base_ex {
    transform: none;
    padding: 10px;
}header .main_base_ex svg {
    height: 40px;
}header .main_base_ex:hover {
    transform: translateY(-3px);
}}.appWrap_ex {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(216,197,203) 0%, rgb(191,151,157,0.5) 100%);
    overflow: hidden;
}.appWrap_ex::before {
    position: absolute;
    width: 40%;
    background: linear-gradient(120deg, rgb(166,104,135,0.5) 0%, transparent 70%);
    right: -5%;
    z-index: 1;
    content: "";
    top: -10%;
    opacity: 0.6;
    transform: rotate(-15deg) skewX(15deg);
    height: 70%;
}.appWrap_ex::after {
    transform: rotate(10deg) skewY(-5deg);
    background: linear-gradient(220deg, rgb(191,151,157,0.5) 0%, transparent 80%);
    left: -2%;
    z-index: 1;
    height: 60%;
    bottom: -5%;
    content: "";
    position: absolute;
    width: 30%;
    opacity: 0.4;
}.appWrap_ex .container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}.appWrap_ex h2 {
    position: relative;
    color: #000000;
    transform: translateY(0);
    font-weight: 700;
    margin-bottom: 50px;
    font-size: 32px;
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out forwards;
    line-height: 1.4;
    opacity: 1;
}.appWrap_ex h2::after {
    background: linear-gradient(90deg, rgb(191,151,157) 0%, rgb(166,104,135) 100%);
    width: 80px;
    position: absolute;
    bottom: -15px;
    content: "";
    transition: transform 0.5s ease;
    height: 3px;
    transform: scaleX(1);
    left: 0;
    transform-origin: left;
}.appWrap_ex .academy_track_ex {
    animation: fadeIn 1s ease-out 0.3s forwards;
    padding: 40px;
    background: #ffffff;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 
                0 5px 15px rgba(0, 0, 0, 0.03);
    opacity: 0;
    transform: perspective(1000px) rotateY(0deg);
    position: relative;
    border-left: 4px solid rgb(191,151,157);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}.appWrap_ex .academy_track_ex::before {
    content: "";
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    top: 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}.appWrap_ex .academy_track_ex:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 10px 20px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(2deg) translateY(-5px);
}.appWrap_ex ul {
    padding: 0;
    list-style: none;
    margin: 0;
}.appWrap_ex li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}.appWrap_ex li::before {
    border-radius: 50%;
    width: 6px;
    height: 6px;
    top: 10px;
    position: absolute;
    left: 0;
    content: "";
    transform: translateY(-50%);
    background: rgb(166,104,135);
}.appWrap_ex span {
    font-family: Arial, sans-serif;
    color: #000000;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(10px);
    font-size: calc(12px * 1.05);
    display: block;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    line-height: 1.8;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (min-width: 768px) {.appWrap_ex {
    padding: 150px 0;
}.appWrap_ex h2 {
    max-width: 80%;
    font-size: calc(32px * 1.1);
}.appWrap_ex .academy_track_ex {
    margin-left: 30px;
    padding: 50px 60px;
}.appWrap_ex span {
    font-size: calc(12px * 1.1);
}
}

@media (min-width: 992px) {.appWrap_ex .container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}.appWrap_ex h2 {
    max-width: 70%;
}.appWrap_ex .academy_track_ex {
    margin-left: 60px;
    width: 85%;
}.appWrap_ex span {
    font-size: calc(12px * 1.15);
    line-height: 1.9;
}
}

@media (max-width: 767px) {.appWrap_ex {
    padding: 80px 0;
}.appWrap_ex h2 {
    font-size: calc(32px * 0.9);
    margin-bottom: 40px;
}.appWrap_ex .academy_track_ex {
    padding: 30px 25px;
}.appWrap_ex span {
    font-size: 12px;
    line-height: 1.7;
}.appWrap_ex h2::after {
    width: 60px;
}
}

@media (max-width: 480px) {.appWrap_ex {
    padding: 60px 0;
}.appWrap_ex h2 {
    font-size: calc(32px * 0.8);
    margin-bottom: 35px;
}.appWrap_ex .academy_track_ex {
    padding: 25px 20px;
}.appWrap_ex span {
    line-height: 1.6;
    font-size: calc(12px * 0.95);
}.appWrap_ex h2::after {
    height: 2px;
    width: 50px;
}}.educational_rewards_ex {
    overflow: hidden;
    padding: 150px 0;
    perspective: 1000px;
    position: relative;
    background: linear-gradient(120deg, rgb(216,197,203), #ffffff);
}.educational_rewards_ex::before {
    background: rgb(191,151,157,0.5);
    height: 400px;
    opacity: 0.6;
    z-index: 1;
    top: -100px;
    border-radius: 50%;
    width: 400px;
    right: -100px;
    position: absolute;
    filter: blur(100px);
    content: '';
}.educational_rewards_ex::after {
    left: -100px;
    content: '';
    bottom: -100px;
    opacity: 0.5;
    z-index: 1;
    width: 300px;
    border-radius: 50%;
    position: absolute;
    background: rgb(166,104,135,0.5);
    height: 300px;
    filter: blur(80px);
}.educational_rewards_ex .academy_track_ex {
    position: relative;
    margin: 0 auto;
    display: flex;
    z-index: 2;
    max-width: 1300px;
}.educational_rewards_ex .hero_image_ex {
    border-radius: 0 100px 100px 0;
    height: 110%;
    transform: rotateY(15deg);
    width: 42%;
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease;
    z-index: 3;
    left: -5%;
    top: -5%;
    position: absolute;
    transform-style: preserve-3d;
}.educational_rewards_ex .hero_image_ex:hover {
    transform: rotateY(0deg);
}.educational_rewards_ex .hero_image_ex::before {
    z-index: 1;
    background: linear-gradient(135deg, rgb(191,151,157,0.5) 0%, transparent 70%);
    content: '';
    inset: 0;
    border-radius: inherit;
    position: absolute;
}.educational_rewards_ex .statement_holder_ex {
    position: relative;
    z-index: 4;
    margin-left: auto;
    padding-right: 20px;
    width: 60%;
}.educational_rewards_ex h2 {
    font-weight: 700;
    position: relative;
    width: fit-content;
    color: #000000;
    margin-bottom: 50px;
    border-bottom: 3px solid rgb(191,151,157);
    font-size: 35px;
    padding-bottom: 20px;
}.educational_rewards_ex h2::after {
    border-radius: 50%;
    width: 15px;
    position: absolute;
    height: 15px;
    background: rgb(191,151,157);
    bottom: -9px;
    right: 0;
    content: '';
}.educational_rewards_ex .text_main_holder {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    transform-style: preserve-3d;
    display: grid;
}.educational_rewards_ex .text_main_holder > div {
    position: relative;
    display: flex;
    gap: 15px;
    padding: 30px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    transition: all 0.4s ease;
    border-radius: 10px;
    transform: rotateY(-5deg);
    background: #ffffff;
    transform-style: preserve-3d;
}.educational_rewards_ex .text_main_holder > div:nth-child(even) {
    transform: rotateY(5deg);
}.educational_rewards_ex .text_main_holder > div:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 5;
    transform: rotateY(0) translateZ(20px);
}.educational_rewards_ex .text_main_holder > div::before {
    top: 0;
    left: 0;
    position: absolute;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: -1;
    content: '';
    width: 100%;
    background: linear-gradient(135deg, rgb(191,151,157,0.5) 0%, transparent 80%);
    opacity: 0;
    height: 100%;
}.educational_rewards_ex .text_main_holder > div:hover::before {
    opacity: 1;
}.educational_rewards_ex .text_main_holder svg {
    height: 60px;
    transform: translateZ(10px);
    width: 60px;
    transition: transform 0.4s ease;
}.educational_rewards_ex .text_main_holder > div:hover svg {
    transform: translateZ(30px) scale(1.1);
}.educational_rewards_ex .text_main_holder svg path {
    transition: fill 0.3s ease;
    fill: rgb(191,151,157);
}.educational_rewards_ex .text_main_holder > div:hover svg path {
    fill: rgb(166,104,135);
}.educational_rewards_ex .text_main_holder p {
    transform: translateZ(5px);
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
    margin: 0;
    transition: transform 0.4s ease;
}.educational_rewards_ex .text_main_holder > div:hover p {
    transform: translateZ(25px);
}

@media (max-width: 1200px) {.educational_rewards_ex .hero_image_ex {
    width: 35%;
}.educational_rewards_ex .statement_holder_ex {
    width: 65%;
}
}

@media (max-width: 992px) {.educational_rewards_ex {
    padding: 100px 0;
}.educational_rewards_ex .academy_track_ex {
    padding: 0 20px;
    flex-direction: column;
}.educational_rewards_ex .hero_image_ex {
    top: 0;
    border-radius: 26px;
    width: 90%;
    transform: rotateY(0);
    height: 400px;
    position: relative;
    margin: 0 auto 50px;
    left: 0;
}.educational_rewards_ex .statement_holder_ex {
    padding: 0;
    width: 100%;
    margin: 0;
}.educational_rewards_ex .text_main_holder {
    grid-template-columns: 1fr;
}.educational_rewards_ex .text_main_holder > div,
    .educational_rewards_ex .text_main_holder > div:nth-child(even) {
    transform: rotateY(0);
}
}

@media (max-width: 576px) {.educational_rewards_ex {
    padding: 80px 0;
}.educational_rewards_ex .hero_image_ex {
    height: 300px;
}.educational_rewards_ex h2 {
    font-size: calc(35px * 0.85);
    margin-bottom: 40px;
}.educational_rewards_ex .text_main_holder > div {
    padding: 20px;
}.educational_rewards_ex .text_main_holder svg {
    height: 50px;
    width: 50px;
}}.privacy_vault_ex {
    border: 1px solid rgba(0, 0, 0, 0.5);
    position: relative;
    font-family: Arial, sans-serif;
    padding: 50px;
    background-color: rgb(216,197,203);
    overflow: hidden;
    color: #000000;
}.privacy_vault_ex::before,
.privacy_vault_ex::after {
    border-radius: 50%;
    background: rgb(191,151,157,0.5);
    position: absolute;
    opacity: 0.1;
    content: '';
}.privacy_vault_ex::before {
    left: -50px;
    top: -50px;
    height: 200px;
    width: 200px;
}.privacy_vault_ex::after {
    height: 300px;
    right: -100px;
    width: 300px;
    bottom: -100px;
}.privacy_vault_ex h1,
.privacy_vault_ex h2 {
    padding-left: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    margin: 20px 0;
}.privacy_vault_ex h1::before,
.privacy_vault_ex h2::before {
    background: rgb(191,151,157);
    left: 0;
    border-radius: 50%;
    height: 30px;
    content: '';
    position: absolute;
    width: 30px;
}.privacy_vault_ex h1 {
    color: rgb(191,151,157);
    font-weight: 700;
    font-size: 39px;
}.privacy_vault_ex h2 {
    font-weight: 600;
    color: rgb(166,104,135);
    font-size: 28px;
}.privacy_vault_ex ul {
    counter-reset: custom-counter;
    padding: 0;
    margin: 20px 0;
    list-style-type: none;
}.privacy_vault_ex ul li {
    font-weight: 400;
    position: relative;
    font-size: 15px;
    padding: 10px 0;
    color: #000000;
    padding-left: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}.privacy_vault_ex ul li::before {
    border-radius: 50%;
    display: flex;
    background: rgb(166,104,135);
    transform: translateY(-50%);
    justify-content: center;
    position: absolute;
    left: 0;
    color: #ffffff;
    align-items: center;
    counter-increment: custom-counter;
    top: 50%;
    font-weight: 700;
    content: counter(custom-counter);
    width: 30px;
    height: 30px;
}.privacy_vault_ex p {
    font-size: 15px;
    position: relative;
    color: #000000;
    padding-left: 15px;
    font-weight: 300;
    border-left: 4px solid rgb(191,151,157);
    line-height: 1.8;
    margin: 20px 0;
}.privacy_vault_ex p::before {
    transform: translate(-50%, -50%);
    height: 10px;
    width: 10px;
    left: 0;
    top: 0;
    background: rgb(191,151,157);
    position: absolute;
    content: '';
    border-radius: 50%;
}.privacy_vault_ex .container div {
    padding: 20px;
    margin: 20px 0;
    border-radius: 10px;
    position: relative;
    border: 1px dashed rgb(166,104,135,0.5);
}.privacy_vault_ex .container div::before {
    width: 20px;
    border-radius: 50%;
    left: -10px;
    content: '';
    height: 20px;
    position: absolute;
    opacity: 0.5;
    background: rgb(166,104,135);
    top: -10px;
}.privacy_vault_ex .container div::after {
    width: 20px;
    bottom: -10px;
    background: rgb(166,104,135);
    right: -10px;
    opacity: 0.5;
    height: 20px;
    position: absolute;
    border-radius: 50%;
    content: '';
}
@media only screen and (max-width: 800px) {.privacy_vault_ex {
    padding: 30px;
}.privacy_vault_ex h1 {
    font-size: calc(18px - 8px);
}.privacy_vault_ex h2 {
    font-size: calc(18px - 8px);
}.privacy_vault_ex ul li {
    font-size: calc(15px - 2px);
}.privacy_vault_ex p {
    font-size: calc(15px - 2px);
}}
.cookie_dialog_banner_ex {
    border-top: 3px solid rgb(191,151,157);
    padding: 20px 0;
    width: 100%;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    background: rgb(216,197,203);
    bottom: 0;
    position: fixed;
    z-index: 90;
}.consent_ack_ex {
    padding: 0 20px;
    align-items: center;
    margin: auto;
    flex-wrap: nowrap;
    justify-content: space-between;
    display: flex;
    max-width: 1200px;
}#cookieMessageBanner_ex {
    display: none;
}#cookieMessageBanner_ex:checked ~ .cookie_dialog_banner_ex {
    opacity: 0;
    visibility: hidden;
}.cookie_dialog_banner_ex h5 {
    text-transform: uppercase;
    color: rgb(191,151,157);
    margin-bottom: 6px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 1px;
}.cookie_dialog_banner_ex p {
    color: #000000;
    font-size: 12px;
    max-width: 500px;
}.cookie_all_ex {
    margin-right: 20px;
    flex-shrink: 0;
}.cookie_all_ex svg, .cookie_all_ex svg path {
    width: 80px;
    fill: rgb(191,151,157);
    height: 80px;
}.edu_cookie_ex {
    flex-shrink: 0;
    min-width: 140px;
    transition: border 0.2s;
    padding: 12px 24px;
    background: rgb(191,151,157);
    margin-left: 10px;
    font-size: 19px;
    border: 2px solid transparent;
    text-transform: uppercase;
    border-radius: 10px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}.cookie_button.cookie_check_ex {
    background: rgb(191,151,157);
}.cookie_button.visitor_acceptance_ex {
    background: rgb(166,104,135);
}.edu_cookie_ex:hover {
    border: 2px solid #ffffff;
}.cookie_dialog_banner_ex p a {
    text-decoration: underline;
    color: rgb(191,151,157);
    font-weight: 700;
}
@media only screen and (max-width: 1200px) {.consent_ack_ex {
    padding: 0 10px;
}
}
@media only screen and (max-width: 800px) {.cookie_all_ex {
    display: none;
}.consent_ack_ex {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}.cookie_dialog_banner_ex h5, .cookie_dialog_banner_ex p {
    text-align: center;
}.edu_consent_ex {
    margin-bottom: 20px;
}.edu_cookie_ex {
    width: 100%;
    max-width: 300px;
    margin-left: 0;
    margin-top: 10px;
}}
.segment-wrapper_ex .cookie_dialog_banner_ex {
    padding: 30px 0;
    border: none;
    background: rgb(166,104,135);
}.segment-wrapper_ex .edu_cookie_ex {
    color: #ffffff;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    margin-left: 0;
    background: rgb(191,151,157);
    font-size: 19px;
}.segment-wrapper_ex .edu_consent_ex h5, .segment-wrapper_ex .edu_consent_ex p {
    color: #ffffff;
}footer {
    position: relative;
    width: 100%;
}footer .footnote_ref_ex {
    background-color: rgb(166,104,135);
    overflow: hidden;
    font-family: Arial, sans-serif;
    padding: 80px 0 30px;
    position: relative;
    color: #ffffff;
}footer .footnote_ref_ex::before {
    left: 0;
    content: "";
    position: absolute;
    top: -50px;
    height: 100px;
    background-color: rgb(166,104,135);
    transform: skewY(-3deg);
    right: 0;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    z-index: 0;
}footer .insta_feed_ex {
    z-index: 1;
    position: relative;
}footer .submit_feedback_ex {
    flex-wrap: wrap;
    display: flex;
    margin-bottom: 60px;
    gap: 15px;
    justify-content: center;
}footer .info_item {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 0 5px 5px 0;
    flex: 1 1 200px;
    padding: 15px 20px 15px 25px;
    background-color: rgb(166,104,135,0.5);
    max-width: 300px;
    transition: all 0.3s ease;
    position: relative;
}footer .info_item::before {
    left: 0;
    width: 5px;
    top: 0;
    height: 100%;
    background-color: rgb(191,151,157);
    content: "";
    position: absolute;
}footer .info_item::after {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    content: "";
}footer .info_item:nth-child(even) {
    background-color: rgb(191,151,157,0.5);
}footer .info_item:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}footer .info_item svg {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    top: -1px;
    fill: rgb(191,151,157);
    position: relative;
}footer .info_item p,
footer .info_item a {
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s ease;
}footer .info_item a:hover {
    color: rgb(191,151,157);
}footer .text_main_holder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
}footer .nav_master_ex {
    border-radius: 14px;
    background-color: rgb(166,104,135,0.5);
    position: relative;
    padding: 30px;
}footer .nav_master_ex::before {
    bottom: 15px;
    content: "";
    top: 15px;
    right: 15px;
    position: absolute;
    left: 15px;
    pointer-events: none;
    border-radius: calc(14px - 8px);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}footer .nav_master_ex svg {
    margin-bottom: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    display: block;
    height: 45px;
}footer .faq_block_ex {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 13px;
}footer .head_pagewrap_ex {
    position: relative;
}footer .head_pagewrap_ex h5 {
    padding-left: 15px;
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    color: #ffffff;
    display: inline-block;
}footer .head_pagewrap_ex h5::before {
    left: 0;
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgb(191,151,157);
}footer .nav_primary_ex {
    position: relative;
    margin-bottom: 25px;
}footer .nav_primary_ex a {
    background-color: rgb(166,104,135,0.5);
    margin: 0 10px 10px 0;
    display: inline-block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
}footer .nav_primary_ex a::before {
    background-color: rgb(191,151,157);
    height: 100%;
    left: 0;
    transition: width 0.3s ease;
    top: 0;
    width: 3px;
    position: absolute;
    content: "";
}footer .nav_primary_ex a:hover {
    color: #ffffff;
    background-color: rgb(191,151,157,0.5);
    transform: translateX(5px);
}footer .nav_primary_ex a:hover::before {
    width: 5px;
}footer .subscribe_holder {
    position: relative;
    padding: 30px;
    background-color: rgb(166,104,135,0.5);
    border-radius: 14px;
}footer .subscribe_holder::before {
    position: absolute;
    left: 15px;
    content: "";
    top: 15px;
    right: 15px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    pointer-events: none;
    bottom: 15px;
    border-radius: calc(14px - 8px);
}footer .subscribe_holder h5 {
    position: relative;
    font-size: 23px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    padding-left: 15px;
}footer .subscribe_holder h5::before {
    top: 0;
    content: "";
    left: 0;
    background-color: rgb(191,151,157);
    height: 100%;
    position: absolute;
    width: 3px;
}footer .subscribe_holder p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}footer .input_holder {
    gap: 15px;
    flex-direction: column;
    display: flex;
}footer .input_holder input[type="email"] {
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 14px;
    border-radius: 10px;
    padding: 14px 16px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}footer .input_holder input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgb(191,151,157);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}footer .discover_learning_ex {
    font-size: 20px;
    cursor: pointer;
    border: none;
    padding: 14px 20px;
    background-color: rgb(191,151,157);
    border-radius: 10px;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    font-weight: 600;
}footer .discover_learning_ex::after {
    position: absolute;
    content: "";
    width: 200%;
    transform: rotate(30deg);
    height: 200%;
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.1);
    top: -50%;
    left: -100%;
}footer .discover_learning_ex:hover {
    background-color: rgb(166,104,135);
}footer .discover_learning_ex:hover::after {
    left: 100%;
}footer .app_store_ex {
    position: relative;
    margin-top: 50px;
    text-align: center;
}footer .app_store_ex::before {
    content: "";
    width: 50px;
    position: absolute;
    left: 50%;
    top: -25px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    height: 1px;
    transform: translateX(-50%);
}footer .trust_badge_ex {
    position: relative;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
}

@media (min-width: 768px) {footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .discover_learning_ex {
    white-space: nowrap;
}
}

@media (max-width: 767px) {footer .footnote_ref_ex {
    padding: 60px 0 30px;
}footer .submit_feedback_ex {
    margin-bottom: 40px;
}footer .nav_master_ex, footer .subscribe_holder {
    padding: 25px 20px;
}footer .nav_primary_ex a {
    margin: 0 5px 8px 0;
    padding: 8px 12px;
}footer .app_store_ex {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .footnote_ref_ex {
    padding: 50px 0 20px;
}footer .head_pagewrap_ex h5, footer .subscribe_holder h5 {
    font-size: calc(23px - 2px);
    margin-bottom: 20px;
}footer .nav_master_ex::before, footer .subscribe_holder::before {
    bottom: 10px;
    left: 10px;
    top: 10px;
    right: 10px;
}footer .input_holder input[type="email"],
    footer .discover_learning_ex {
    padding: 12px;
}}.opening_board_ex {
    background-color: #000000;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    min-height: 600px;
}.opening_board_ex::before {
    background: 
        repeating-linear-gradient(45deg, #000000, #000000 10px, rgba(0, 0, 0, 0.5) 10px, rgba(0, 0, 0, 0.5) 12px),
        linear-gradient(to bottom, rgb(191,151,157,0.5) 0%, transparent 100%);
    animation: grid-pulse 8s infinite alternate;
    position: absolute;
    top: 0;
    opacity: 0.4;
    z-index: 1;
    width: 100%;
    content: "";
    left: 0;
    height: 100%;
}.opening_board_ex::after {
    position: absolute;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000000 100%);
    mix-blend-mode: multiply;
    left: 0;
    top: 0;
    z-index: 1;
    content: "";
    width: 100%;
}@keyframes grid-pulse {
    0% {
        opacity: 0.3;
        background-size: 100% 100%, 100% 100%;
    }
    100% {
        opacity: 0.5;
        background-size: 110% 110%, 120% 120%;
    }
}

.opening_board_ex .academy_track_ex {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 3;
    height: 100%;
    align-items: center;
    padding-right: 8%;
    position: relative;
}.opening_board_ex .education_plan_ex {
    height: 100%;
    z-index: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
}.opening_board_ex .learning_primary_ex {
    height: 100%;
    width: 100%;
}.opening_board_ex .start_top_ex {
    width: max-content;
    display: flex;
    animation: tech-slide 28s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    height: 100%;
}.opening_board_ex .edu_smart_ex {
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    width: 100vw;
    position: relative;
}.opening_board_ex .edu_smart_ex::before {
    background: 
        linear-gradient(135deg, rgb(191,151,157,0.5) 0%, transparent 50%),
        linear-gradient(225deg, rgb(166,104,135,0.5) 0%, transparent 50%);
    height: 100%;
    content: "";
    left: 0;
    z-index: 1;
    position: absolute;
    mix-blend-mode: hard-light;
    top: 0;
    width: 100%;
}.opening_board_ex .edu_smart_ex::after {
    opacity: 0.3;
    position: absolute;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 1px,
        rgba(0, 0, 0, 0.2) 1px,
        rgba(0, 0, 0, 0.2) 2px
    );
    z-index: 2;
    height: 100%;
    top: 0;
    width: 100%;
    mix-blend-mode: overlay;
    pointer-events: none;
    left: 0;
    content: "";
}.opening_board_ex .edu_smart_ex img {
    object-fit: cover;
    animation: glitch-zoom 10s infinite alternate ease-in-out;
    height: 100%;
    transform-origin: center;
    filter: contrast(1.1) saturate(0.9);
    width: 100%;
}@keyframes glitch-zoom {
    0%, 100% {
        transform: scale(1);
        filter: contrast(1.1) saturate(0.9);
    }
    20% {
        transform: scale(1.02) translate(-0.3%, 0.3%);
        filter: contrast(1.15) saturate(0.85);
    }
    40% {
        transform: scale(1.03) translate(0.3%, -0.3%);
        filter: contrast(1.2) saturate(0.8);
    }
    60% {
        transform: scale(1.04) translate(-0.2%, -0.2%);
        filter: contrast(1.15) saturate(0.85);
    }
    80% {
        transform: scale(1.02) translate(0.2%, 0.2%);
        filter: contrast(1.1) saturate(0.9);
    }
}

@keyframes tech-slide {
    0%, 16% {
        transform: translateX(0);
    }
    20%, 36% {
        transform: translateX(-100vw);
    }
    40%, 56% {
        transform: translateX(-200vw);
    }
    60%, 76% {
        transform: translateX(-300vw);
    }
    80%, 96% {
        transform: translateX(-400vw);
    }
    100% {
        transform: translateX(0);
    }
}

.opening_board_ex .statement_holder_ex {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(5, 15, 25, 0.8) 0%, 
        rgba(15, 25, 35, 0.7) 100%);
    animation: hud-appear 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    box-shadow: 
        0 0 0 1px rgba(rgb(191,151,157), 0.2),
        0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 3rem;
    max-width: 520px;
    border-radius: 10px;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 30px),
        calc(100% - 30px) 100%,
        0 100%
    );
    z-index: 3;
}@keyframes hud-appear {
    0% {
        opacity: 0;
        transform: translateX(30px);
        clip-path: polygon(
            0 0,
            0 0,
            0 calc(100% - 30px),
            0 100%,
            0 100%
        );
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 30px),
            calc(100% - 30px) 100%,
            0 100%
        );
    }
}

.opening_board_ex .statement_holder_ex::before {
    border-radius: calc(10px - 5px);
    content: "";
    pointer-events: none;
    top: 10px;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 20px),
        calc(100% - 20px) 100%,
        0 100%
    );
    right: 10px;
    border: 1px solid rgba(rgb(166,104,135), 0.2);
    left: 10px;
    position: absolute;
    bottom: 10px;
}.opening_board_ex .statement_holder_ex::after {
    height: 5px;
    border-radius: 10px;
    z-index: 4;
    position: absolute;
    left: -2px;
    top: -2px;
    content: "";
    width: calc(60% + 4px);
    background: linear-gradient(to right, rgb(191,151,157), transparent);
}.opening_board_ex .statement_holder_ex h1 {
    color: #ffffff;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    font-size: 44px;
    align-items: center;
    font-weight: 700;
    display: flex;
}.opening_board_ex .statement_holder_ex h1::before {
    content: "";
    left: 0;
    height: 3px;
    bottom: 0;
    width: 40px;
    background: rgb(191,151,157);
    position: absolute;
    border-radius: 10px;
}.opening_board_ex .statement_holder_ex p {
    position: relative;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
}.opening_board_ex .statement_holder_ex .support_info_exqseh6 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    font-size: 15px;
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 10px),
        calc(100% - 10px) 100%,
        0 100%
    );
    transition: all 0.3s ease;
    font-weight: 600;
    background: rgb(191,151,157);
    padding: 1rem 2rem;
    text-decoration: none;
    color: #ffffff;
}.opening_board_ex .statement_holder_ex .support_info_exqseh6::before {
    opacity: 0;
    background: linear-gradient(45deg, rgb(191,151,157), rgb(166,104,135));
    position: absolute;
    transition: opacity 0.3s ease;
    height: 100%;
    content: "";
    left: 0;
    width: 100%;
    top: 0;
    z-index: -1;
}.opening_board_ex .statement_holder_ex .support_info_exqseh6::after {
    position: absolute;
    background: linear-gradient(135deg, transparent 50%, rgb(191,151,157) 50%);
    pointer-events: none;
    content: "";
    width: 20px;
    height: 20px;
    top: 0;
    right: 0;
}.opening_board_ex .statement_holder_ex .support_info_exqseh6:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}.opening_board_ex .statement_holder_ex .support_info_exqseh6:hover::before {
    opacity: 1;
}

@media (max-width: 1200px) {.opening_board_ex {
    height: 90vh;
}.opening_board_ex .academy_track_ex {
    padding-right: 6%;
}.opening_board_ex .statement_holder_ex {
    padding: 2.5rem;
    max-width: 480px;
}
}

@media (max-width: 992px) {.opening_board_ex {
    height: 80vh;
}.opening_board_ex .academy_track_ex {
    padding-right: 4%;
}.opening_board_ex .statement_holder_ex {
    padding: 2rem;
    max-width: 420px;
}.opening_board_ex .start_top_ex {
    animation-duration: 24s;
}
}

@media (max-width: 768px) {.opening_board_ex {
    min-height: unset;
    height: auto;
}.opening_board_ex .academy_track_ex {
    justify-content: center;
    padding: 4rem 2rem;
}.opening_board_ex .statement_holder_ex {
    max-width: 90%;
    width: 90%;
}@keyframes hud-appear {
        0% {
            opacity: 0;
            transform: translateY(30px);
            clip-path: polygon(
                0 0,
                100% 0,
                100% 0,
                calc(100% - 30px) 0,
                0 0
            );
        }
        100% {
            opacity: 1;
            transform: translateY(0);
            clip-path: polygon(
                0 0,
                100% 0,
                100% calc(100% - 30px),
                calc(100% - 30px) 100%,
                0 100%
            );
        }
    }
    
    .opening_board_ex .start_top_ex {
    animation-duration: 20s;
}
}

@media (max-width: 576px) {.opening_board_ex .academy_track_ex {
    padding: 3rem 1rem;
}.opening_board_ex .statement_holder_ex {
    max-width: 95%;
    padding: 1.8rem;
    width: 95%;
}.opening_board_ex .statement_holder_ex h1 {
    margin-bottom: 1.2rem;
    font-size: calc(44px * 0.85);
}.opening_board_ex .statement_holder_ex p {
    margin-bottom: 1.5rem;
    font-size: calc(15px * 0.9);
}.opening_board_ex .statement_holder_ex .support_info_exqseh6 {
    text-align: center;
    display: block;
    width: 100%;
    padding: 0.9rem 1.5rem;
}.opening_board_ex .start_top_ex {
    animation-duration: 16s;
}
}

@media (max-height: 600px) {.opening_board_ex {
    min-height: 500px;
}
}

@media (orientation: landscape) and (max-height: 500px) {.opening_board_ex {
    height: auto;
    min-height: 140vh;
}.opening_board_ex .academy_track_ex {
    padding: 5rem 2rem;
}}.leadership_experience_ex {
    padding: 5rem 2rem;
    position: relative;
    background: rgb(216,197,203);
    overflow: hidden;
}.leadership_experience_ex::before {
    content: "";
    z-index: 1;
    height: 100%;
    width: 100%;
    left: 0;
    background: linear-gradient(120deg, transparent 30%, rgb(191,151,157,0.5) 100%);
    position: absolute;
    top: 0;
}.leadership_experience_ex::after {
    background: rgb(166,104,135,0.5);
    content: "";
    right: 0;
    z-index: 1;
    position: absolute;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    opacity: 0.5;
    width: 40%;
    height: 70%;
    bottom: 0;
}.leadership_experience_ex .user_opinions_ex {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr 1.5fr;
    display: grid;
    gap: 3rem;
}.leadership_experience_ex .hero_image_ex {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 0;
    filter: grayscale(100%);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
}.leadership_experience_ex .hero_image_ex::before {
    height: 100%;
    content: "";
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 70%, 
        rgb(191,151,157,0.5) 100%);
    z-index: 1;
    position: absolute;
}.leadership_experience_ex .hero_image_ex:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}.leadership_experience_ex .work_area_ex {
    flex-direction: column;
    display: flex;
    position: relative;
    padding: 2rem;
    justify-content: center;
}.leadership_experience_ex .work_area_ex::before {
    height: 0;
    width: 2px;
    position: absolute;
    content: "";
    background: rgb(191,151,157);
    left: 0;
    top: 0;
    transition: height 0.8s ease-out;
}.leadership_experience_ex .user_opinions_ex:hover .work_area_ex::before {
    height: 100%;
}.leadership_experience_ex .name {
    color: #000000;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: 700;
    font-size: 41px;
}.leadership_experience_ex .name::after {
    transform: translateX(-101%);
    background: rgb(166,104,135);
    width: 100%;
    bottom: 0;
    transition: transform 0.6s ease-out 0.2s;
    left: 0;
    position: absolute;
    height: 1px;
    content: "";
}.leadership_experience_ex .user_opinions_ex:hover .name::after {
    transform: translateX(0);
}.leadership_experience_ex .work_area_ex > div:nth-child(2) {
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 24px;
    transition: all 0.5s ease-out 0.4s;
    transform: translateY(20px);
    margin-bottom: 2.5rem;
    opacity: 0;
    color: rgb(166,104,135);
}.leadership_experience_ex .user_opinions_ex:hover .work_area_ex > div:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
}.leadership_experience_ex .job_content_ex {
    transform: translateY(20px);
    font-size: 13px;
    position: relative;
    font-weight: 300;
    color: #000000;
    padding: 0 0 0 20px;
    opacity: 0;
    line-height: 1.8;
    transition: all 0.5s ease-out 0.6s;
}.leadership_experience_ex .user_opinions_ex:hover .job_content_ex {
    transform: translateY(0);
    opacity: 1;
}.leadership_experience_ex .job_content_ex::first-letter {
    color: rgb(191,151,157);
    font-weight: 700;
    font-size: 1.5em;
}@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent }
}

.leadership_experience_ex:hover .name {
    white-space: nowrap;
    animation: 
        typing 2.5s steps(40, end),
        blink .75s step-end infinite;
    overflow: hidden;
}

@media (max-width: 992px) {.leadership_experience_ex .user_opinions_ex {
    grid-template-columns: 1fr;
    gap: 2rem;
}.leadership_experience_ex .hero_image_ex {
    max-height: 300px;
    aspect-ratio: 16/9;
}.leadership_experience_ex .work_area_ex {
    padding: 1rem 0;
}.leadership_experience_ex .work_area_ex::before {
    height: 2px;
    width: 0;
    transition: width 0.8s ease-out;
}.leadership_experience_ex .user_opinions_ex:hover .work_area_ex::before {
    height: 2px;
    width: 100%;
}}.contact_us_ex {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}.contact_us_ex::before {
    top: 0;
    position: absolute;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, rgb(166,104,135) 0%, rgb(191,151,157) 100%);
    left: 0;
    opacity: 0.9;
    content: '';
    width: 100%;
}.contact_us_ex .container {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1140px;
}.contact_us_ex .connect_grid_ex {
    gap: 0;
    border-radius: 0;
    grid-template-columns: 1fr 1fr;
    display: grid;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}.contact_us_ex .message_box_ex {
    padding: 50px;
    position: relative;
    background: rgb(216,197,203);
}.contact_us_ex .message_box_ex::after {
    width: 5px;
    background: linear-gradient(to bottom, rgb(191,151,157), rgb(166,104,135));
    right: 0;
    top: 0;
    content: '';
    height: 100%;
    position: absolute;
}.contact_us_ex .message_box_ex h3 {
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    color: #000000;
    font-weight: 700;
    padding-bottom: 20px;
}.contact_us_ex .message_box_ex h3::after {
    content: '';
    position: absolute;
    background: rgb(191,151,157);
    left: 0;
    height: 4px;
    bottom: 0;
    width: 80px;
}.contact_us_ex .message_box_ex div {
    padding-left: 15px;
    margin-bottom: 30px;
    align-items: center;
    display: flex;
    position: relative;
}.contact_us_ex .message_box_ex div::before {
    transform: translateY(-50%);
    height: 100%;
    position: absolute;
    width: 5px;
    border-radius: 10px;
    left: 0;
    content: '';
    background: rgb(191,151,157);
    top: 50%;
    opacity: 0.5;
}.contact_us_ex .message_box_ex div:hover::before {
    opacity: 1;
    height: 120%;
    transition: all 0.3s ease;
}.contact_us_ex .message_box_ex div svg {
    width: 22px;
    height: 22px;
    margin-right: 20px;
}.contact_us_ex .message_box_ex div svg path {
    fill: rgb(191,151,157);
}.contact_us_ex .message_box_ex div span {
    font-size: calc(14px * 0.95);
    font-weight: 400;
    color: #000000;
}.contact_us_ex .message_box_ex div span a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: #000000;
}.contact_us_ex .message_box_ex div span a:hover {
    color: rgb(191,151,157);
}.contact_us_ex .inquiry_request_ex {
    padding: 50px;
    background: rgba(0, 0, 0, 0.5);
}.contact_us_ex .inquiry_request_ex h3 {
    margin-bottom: 30px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}.contact_us_ex form {
    display: flex;
    flex-direction: column;
}.contact_us_ex form input[type="text"],
.contact_us_ex form input[type="email"] {
    margin-bottom: 25px;
    font-size: 14px;
    border: none;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px 5px;
    background: transparent;
    transition: all 0.3s ease;
}.contact_us_ex form input[type="text"]:focus,
.contact_us_ex form input[type="email"]:focus {
    outline: none;
    border-bottom-color: rgb(166,104,135);
}.contact_us_ex form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}.contact_us_ex .feedback_message_ex {
    display: flex;
    margin: 10px 0 25px;
    align-items: flex-start;
}.contact_us_ex .feedback_message_ex input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.contact_us_ex .feedback_message_ex label {
    padding-left: 30px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    cursor: pointer;
    font-size: 15px;
}.contact_us_ex .feedback_message_ex label::before {
    width: 18px;
    left: 0;
    position: absolute;
    transition: all 0.3s ease;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    content: '';
    top: 2px;
    background-color: transparent;
}.contact_us_ex .feedback_message_ex input[type="checkbox"]:checked + label::before {
    border-color: rgb(166,104,135);
    background-color: rgb(166,104,135);
}.contact_us_ex .feedback_message_ex input[type="checkbox"]:checked + label::after {
    content: '';
    left: 6px;
    position: absolute;
    top: 6px;
    width: 6px;
    height: 10px;
    transform: rotate(45deg);
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
}.contact_us_ex .feedback_message_ex label a {
    text-decoration: none;
    color: rgb(166,104,135);
}.contact_us_ex .feedback_message_ex label a:hover {
    text-decoration: underline;
}.contact_us_ex form .support_info_exqseh6 {
    background: rgb(166,104,135);
    transition: color 0.3s ease;
    border: none;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    text-transform: uppercase;
    font-size: 18px;
    z-index: 1;
    position: relative;
    padding: 15px 35px;
    color: #ffffff;
    overflow: hidden;
    letter-spacing: 1px;
}.contact_us_ex form .support_info_exqseh6::before {
    content: '';
    transition: width 0.3s ease;
    width: 0;
    left: 0;
    position: absolute;
    background: rgb(191,151,157);
    top: 0;
    z-index: -1;
    height: 100%;
}.contact_us_ex form .support_info_exqseh6:hover::before {
    width: 100%;
}@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.contact_us_ex .message_box_ex div:nth-child(even) {
    animation: pulse 4s infinite;
}

@media screen and (max-width: 992px) {.contact_us_ex .connect_grid_ex {
    grid-template-columns: 1fr;
}.contact_us_ex .message_box_ex::after {
    display: none;
}.contact_us_ex .message_box_ex,
    .contact_us_ex .inquiry_request_ex {
    padding: 40px 30px;
}
}

@media screen and (max-width: 576px) {.contact_us_ex {
    padding: 60px 0;
}.contact_us_ex .message_box_ex,
    .contact_us_ex .inquiry_request_ex {
    padding: 30px 20px;
}.contact_us_ex .message_box_ex h3 {
    font-size: calc(32px * 0.85);
    margin-bottom: 30px;
}.contact_us_ex .message_box_ex div {
    margin-bottom: 20px;
}.contact_us_ex form .support_info_exqseh6 {
    padding: 12px 20px;
    width: 100%;
}}.pricing_card_list_ex {
    background: rgb(216,197,203);
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}.pricing_card_list_ex::before {
    background: rgb(191,151,157,0.5);
    z-index: 0;
    height: 300px;
    position: absolute;
    top: -50px;
    right: -50px;
    animation: float-effect 12s infinite alternate ease-in-out;
    width: 300px;
    filter: blur(80px);
    content: "";
}.pricing_card_list_ex::after {
    background: rgb(166,104,135,0.5);
    z-index: 0;
    filter: blur(60px);
    animation: float-effect 15s infinite alternate-reverse ease-in-out;
    position: absolute;
    bottom: -50px;
    height: 250px;
    content: "";
    width: 250px;
    left: -50px;
}.pricing_card_list_ex .container {
    position: relative;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 1;
    max-width: 1200px;
}.pricing_card_list_ex .skill_pricing_ex {
    display: flex;
    gap: 60px;
    flex-direction: column;
}.pricing_card_list_ex .cost_matrix_ex {
    position: relative;
    margin: 0 auto;
    max-width: 700px;
    padding: 0 20px;
    order: -1;
    text-align: center;
}.pricing_card_list_ex .cost_matrix_ex h2 {
    margin-bottom: 20px;
    color: #000000;
    font-weight: 700;
    position: relative;
    display: inline-block;
    font-size: 36px;
}.pricing_card_list_ex .cost_matrix_ex h2::after {
    height: 3px;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    width: 80px;
    content: "";
    bottom: -10px;
    background: rgb(191,151,157);
}.pricing_card_list_ex .fee_structure_ex {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    opacity: 0.85;
}.pricing_card_list_ex .trial_offers_ex {
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    perspective: 1000px;
}.pricing_card_list_ex .indv_cost_ex {
    height: 100%;
    text-decoration: none;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    perspective: 1000px;
    color: inherit;
    transform-style: preserve-3d;
    position: relative;
}.pricing_card_list_ex .indv_cost_ex:hover {
    transform: translateY(-10px) scale(1.02);
}.pricing_card_list_ex .learning_cost_ex {
    display: flex;
    transition: box-shadow 0.4s ease;
    overflow: hidden;
    transform-style: preserve-3d;
    background: #ffffff;
    height: 100%;
    border-radius: 10px;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}.pricing_card_list_ex .indv_cost_ex:hover .learning_cost_ex {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 20px rgb(191,151,157,0.5);
}.pricing_card_list_ex .plan_fees_ex {
    z-index: 2;
    flex-direction: column;
    display: flex;
    position: relative;
    padding: 30px;
    flex-grow: 1;
    overflow: hidden;
}.pricing_card_list_ex .plan_fees_ex::before {
    position: absolute;
    transition: transform 0.5s ease;
    background: linear-gradient(90deg, rgb(191,151,157), rgb(166,104,135));
    transform: scaleX(0);
    content: "";
    height: 5px;
    right: 0;
    transform-origin: left;
    left: 0;
    top: 0;
}.pricing_card_list_ex .indv_cost_ex:hover .plan_fees_ex::before {
    transform: scaleX(1);
}.pricing_card_list_ex .plan_fees_ex h3 {
    transition: transform 0.4s ease, color 0.3s ease;
    color: #000000;
    overflow-wrap: break-word;
    margin-bottom: 10px;
    white-space: normal;
    font-size: calc(21px + 2px);
    word-break: break-word;
    font-weight: 700;
}.pricing_card_list_ex .indv_cost_ex:hover .plan_fees_ex h3 {
    transform: translateX(5px);
    color: rgb(191,151,157);
}.pricing_card_list_ex .class_cost_ex {
    color: rgb(166,104,135);
    overflow-wrap: break-word;
    display: block;
    font-weight: 700;
    word-break: break-word;
    font-size: 21px;
    margin: 10px 0 20px;
    transition: transform 0.4s ease;
    white-space: normal;
    position: relative;
}.pricing_card_list_ex .class_cost_ex::before {
    height: 2px;
    background: rgb(166,104,135,0.5);
    content: "";
    bottom: -8px;
    width: 40px;
    left: 0;
    position: absolute;
    transition: width 0.4s ease;
}.pricing_card_list_ex .indv_cost_ex:hover .class_cost_ex::before {
    width: 80px;
}.pricing_card_list_ex .plan_fees_ex p {
    line-height: 1.6;
    white-space: normal;
    overflow-wrap: break-word;
    color: #000000;
    word-break: break-word;
    flex-grow: 1;
    transition: color 0.3s ease;
    margin-bottom: 0;
    font-size: calc(16px - 1px);
}.pricing_card_list_ex .hero_image_ex {
    height: 200px;
    overflow: hidden;
    transform: translateZ(-10px);
    transition: transform 0.6s ease, filter 0.6s ease;
    position: relative;
}.pricing_card_list_ex .hero_image_ex::after {
    transition: opacity 0.5s ease;
    content: "";
    opacity: 0.6;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    position: absolute;
    inset: 0;
}.pricing_card_list_ex .indv_cost_ex:hover .hero_image_ex {
    transform: translateZ(0);
    filter: brightness(1.1) contrast(1.05);
}.pricing_card_list_ex .indv_cost_ex:hover .hero_image_ex::after {
    opacity: 0.4;
}.pricing_card_list_ex .indv_cost_ex::after {
    opacity: 0;
    content: "";
    filter: blur(10px);
    top: 100%;
    right: 30px;
    transition: opacity 0.4s ease;
    background: rgb(191,151,157,0.5);
    left: 30px;
    height: 15px;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
}.pricing_card_list_ex .indv_cost_ex:hover::after {
    opacity: 0.5;
}

@keyframes float-effect {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
    100% {
        transform: translate(-20px, -20px) scale(0.9);
    }
}

@media (min-width: 992px) {.pricing_card_list_ex .skill_pricing_ex {
    align-items: center;
    flex-direction: row;
}.pricing_card_list_ex .cost_matrix_ex {
    flex: 0 0 30%;
    order: 0;
    padding-right: 40px;
    text-align: left;
}.pricing_card_list_ex .cost_matrix_ex h2::after {
    transform: none;
    left: 0;
}.pricing_card_list_ex .trial_offers_ex {
    flex: 0 0 70%;
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1200px) {.pricing_card_list_ex .trial_offers_ex {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.pricing_card_list_ex .plan_fees_ex {
    padding: 35px;
}.pricing_card_list_ex .hero_image_ex {
    height: 220px;
}
}

@media (max-width: 991px) {.pricing_card_list_ex {
    padding: 80px 0;
}.pricing_card_list_ex .cost_matrix_ex {
    margin-bottom: 20px;
}
}

@media (max-width: 767px) {.pricing_card_list_ex {
    padding: 60px 0;
}.pricing_card_list_ex .trial_offers_ex {
    gap: 25px;
    grid-template-columns: 1fr;
}.pricing_card_list_ex .cost_matrix_ex h2 {
    font-size: calc(36px - 4px);
}.pricing_card_list_ex .hero_image_ex {
    height: 180px;
}.pricing_card_list_ex .plan_fees_ex {
    padding: 25px;
}
}

@media (max-width: 480px) {.pricing_card_list_ex {
    padding: 50px 0;
}.pricing_card_list_ex .plan_fees_ex h3 {
    font-size: 21px;
}.pricing_card_list_ex .class_cost_ex {
    font-size: calc(21px - 2px);
}.pricing_card_list_ex .hero_image_ex {
    height: 160px;
}.pricing_card_list_ex .plan_fees_ex {
    padding: 20px;
}}.course_overview_ex {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(216,197,203) 0%, rgba(245, 247, 250, 0.95) 100%);
}.course_overview_ex::before {
    top: -10%;
    border-radius: 49% 51% 68% 32% / 38% 41% 59% 62%;
    z-index: 0;
    filter: blur(50px);
    right: -5%;
    width: 30vw;
    content: "";
    animation: float 20s infinite alternate ease-in-out;
    background: linear-gradient(145deg, rgb(166,104,135,0.5) 0%, rgb(191,151,157,0.5) 100%);
    transform: rotate(-15deg);
    position: absolute;
    height: 30vw;
    opacity: 0.1;
}.course_overview_ex::after {
    bottom: -15%;
    left: -10%;
    z-index: 0;
    position: absolute;
    animation: float 25s infinite alternate-reverse ease-in-out;
    width: 40vw;
    border-radius: 51% 49% 32% 68% / 41% 38% 62% 59%;
    filter: blur(70px);
    content: "";
    transform: rotate(10deg);
    background: linear-gradient(215deg, rgb(191,151,157,0.5) 0%, rgb(166,104,135) 100%);
    height: 40vw;
    opacity: 0.08;
}.course_overview_ex .container {
    padding: 0 20px;
    z-index: 2;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}.course_overview_ex h2 {
    margin-bottom: 3rem;
    transition: transform 0.5s ease;
    position: relative;
    text-align: center;
    transform-origin: center left;
    color: #000000;
    font-weight: 700;
    font-size: 37px;
}.course_overview_ex h2::after {
    bottom: -15px;
    position: absolute;
    transform: translateX(-50%);
    height: 3px;
    left: 50%;
    content: "";
    width: 80px;
    background: linear-gradient(90deg, rgb(166,104,135) 0%, rgb(191,151,157) 100%);
}.course_overview_ex .lesson_track_ex {
    display: grid;
    perspective: 1000px;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}.course_overview_ex .hero_image_ex {
    transform: rotateY(-5deg) translateZ(0);
    height: 350px;
    position: relative;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}.course_overview_ex .hero_image_ex::before {
    transition: opacity 0.5s ease;
    top: 0;
    content: "";
    left: 0;
    background: linear-gradient(135deg, rgb(166,104,135,0.5) 0%, transparent 100%);
    opacity: 0.25;
    right: 0;
    bottom: 0;
    position: absolute;
}.course_overview_ex .hero_image_ex:hover {
    transform: rotateY(0deg) translateZ(30px) scale(1.02);
}.course_overview_ex .hero_image_ex:hover::before {
    opacity: 0.35;
}.course_overview_ex .statement_holder_ex {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    z-index: 1;
    position: relative;
    border-radius: 2px;
    transform: translateZ(0) translateY(-10px);
    padding: 2rem;
    background: #ffffff;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}.course_overview_ex .statement_holder_ex::before {
    content: "";
    top: 0;
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, rgb(191,151,157), rgb(166,104,135));
    left: 0;
    height: 0;
    transition: height 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}.course_overview_ex .statement_holder_ex:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateZ(20px) translateY(-15px);
}.course_overview_ex .statement_holder_ex:hover::before {
    height: 100%;
}.course_overview_ex .description {
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 10px;
    color: #000000;
    max-height: 300px;
    position: relative;
    font-size: 12px;
    line-height: 1.7;
}.course_overview_ex .description:last-child {
    margin-bottom: 0;
}.course_overview_ex .description::-webkit-scrollbar {
    width: 4px;
}.course_overview_ex .description::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}.course_overview_ex .description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: linear-gradient(rgb(166,104,135), rgb(191,151,157));
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(-15deg);
    }
    50% {
        transform: translate(15px, 15px) rotate(0deg);
    }
    100% {
        transform: translate(-15px, 8px) rotate(10deg);
    }
}

@media (min-width: 768px) {.course_overview_ex {
    padding: 7rem 0;
}.course_overview_ex h2 {
    margin-bottom: 4rem;
    font-size: calc(37px * 1.1);
}.course_overview_ex h2::after {
    width: 100px;
}.course_overview_ex .lesson_track_ex {
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}.course_overview_ex .hero_image_ex {
    height: 450px;
}.course_overview_ex .statement_holder_ex {
    padding: 2.5rem 3rem;
}
}

@media (min-width: 992px) {.course_overview_ex {
    padding: 8rem 0;
}.course_overview_ex h2 {
    font-size: calc(37px * 1.2);
}.course_overview_ex .lesson_track_ex {
    gap: 5rem;
}.course_overview_ex .hero_image_ex {
    height: 500px;
}.course_overview_ex .statement_holder_ex {
    padding: 3rem 4rem;
}.course_overview_ex .description {
    font-size: calc(12px * 1.05);
    max-height: 500px;
    line-height: 1.8;
}
}

@media (max-width: 767px) {.course_overview_ex {
    padding: 4rem 0;
}.course_overview_ex h2 {
    margin-bottom: 2.5rem;
    font-size: calc(37px * 0.9);
}.course_overview_ex .hero_image_ex {
    transform: rotateY(0deg);
    height: 250px;
}.course_overview_ex .statement_holder_ex {
    padding: 1.5rem;
}.course_overview_ex .description {
    max-height: 250px;
    line-height: 1.6;
    font-size: calc(12px * 0.95);
}
}

@media (max-width: 480px) {.course_overview_ex {
    padding: 3rem 0;
}.course_overview_ex h2 {
    font-size: calc(37px * 0.8);
    margin-bottom: 2rem;
}.course_overview_ex h2::after {
    width: 60px;
    bottom: -10px;
}.course_overview_ex .hero_image_ex {
    height: 200px;
}.course_overview_ex .statement_holder_ex {
    padding: 1.25rem;
}.course_overview_ex .description {
    line-height: 1.5;
    max-height: 200px;
    font-size: calc(12px * 0.9);
    margin-bottom: 1rem;
}}.ideal_participants_ex {
    padding: 120px 0;
    overflow: hidden;
    background: #ffffff;
    position: relative;
}.ideal_participants_ex::before {
    height: 100%;
    left: 0;
    opacity: 0.3;
    content: "";
    top: 0;
    z-index: 1;
    position: absolute;
    background: 
        radial-gradient(circle at 20% 30%, rgb(191,151,157,0.5) 0, transparent 80px),
        radial-gradient(circle at 80% 70%, rgb(166,104,135,0.5) 0, transparent 80px);
    width: 100%;
}.ideal_participants_ex .container {
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 1140px;
}.ideal_participants_ex .academy_track_ex {
    position: relative;
}.ideal_participants_ex h4 {
    text-align: center;
    position: relative;
    font-weight: 400;
    margin-bottom: 80px;
    font-size: 39px;
    color: #000000;
}.ideal_participants_ex h4::after {
    background: rgb(191,151,157);
    height: 2px;
    content: "";
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    width: 50px;
    position: absolute;
}.ideal_participants_ex div > div {
    justify-content: space-between;
    margin: 0 auto;
    gap: 40px 20px;
    max-width: 900px;
    flex-wrap: wrap;
    display: flex;
}.ideal_participants_ex p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    flex: 0 0 calc(33.333% - 20px);
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
    text-align: center;
}.ideal_participants_ex p::before {
    background: rgb(216,197,203);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    left: 50%;
}.ideal_participants_ex p:hover::before {
    height: 200%;
    width: 170%;
}.ideal_participants_ex p svg {
    transition: all 0.4s ease;
    width: 50px;
    padding: 10px;
    border-radius: 50%;
    height: 50px;
    border: 1px solid rgb(191,151,157,0.5);
    margin-bottom: 15px;
}.ideal_participants_ex p svg path {
    transition: fill 0.3s ease;
    fill: rgb(191,151,157);
}.ideal_participants_ex p:hover svg {
    border-color: transparent;
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}.ideal_participants_ex p:hover svg path {
    fill: rgb(166,104,135);
}.ideal_participants_ex p span {
    padding-top: 10px;
    position: relative;
}.ideal_participants_ex p span::before {
    height: 1px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    content: "";
    left: 50%;
    top: 0;
    background: rgb(191,151,157);
    width: 0;
    position: absolute;
}.ideal_participants_ex p:hover span::before {
    width: 30px;
}@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.ideal_participants_ex p:nth-child(odd) {
    animation: floatAnimation 5s infinite ease-in-out;
}.ideal_participants_ex p:nth-child(even) {
    animation: floatAnimation 6s infinite ease-in-out reverse;
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ideal_participants_ex .academy_track_ex > div p {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}.ideal_participants_ex .academy_track_ex > div p:nth-child(1) {
    animation-delay: 0.1s;
}.ideal_participants_ex .academy_track_ex > div p:nth-child(2) {
    animation-delay: 0.2s;
}.ideal_participants_ex .academy_track_ex > div p:nth-child(3) {
    animation-delay: 0.3s;
}.ideal_participants_ex .academy_track_ex > div p:nth-child(4) {
    animation-delay: 0.4s;
}.ideal_participants_ex .academy_track_ex > div p:nth-child(5) {
    animation-delay: 0.5s;
}.ideal_participants_ex .academy_track_ex > div p:nth-child(6) {
    animation-delay: 0.6s;
}.ideal_participants_ex::after {
    width: 100%;
    content: "";
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(191,151,157,0.5), 
        rgb(166,104,135,0.5), 
        transparent);
    position: absolute;
}

@media (max-width: 991px) {.ideal_participants_ex {
    padding: 100px 0;
}.ideal_participants_ex h4 {
    margin-bottom: 60px;
    font-size: calc(39px * 0.9);
}.ideal_participants_ex div > div {
    gap: 30px 20px;
}.ideal_participants_ex p {
    flex: 0 0 calc(50% - 20px);
}.ideal_participants_ex p svg {
    margin-bottom: 12px;
    width: 45px;
    height: 45px;
}
}

@media (max-width: 768px) {.ideal_participants_ex {
    padding: 80px 0;
}.ideal_participants_ex h4 {
    margin-bottom: 50px;
    font-size: calc(39px * 0.8);
}.ideal_participants_ex h4::after {
    width: 40px;
    bottom: -15px;
}.ideal_participants_ex div > div {
    gap: 40px 0;
}.ideal_participants_ex p {
    flex: 0 0 100%;
}.ideal_participants_ex p:nth-child(odd),
    .ideal_participants_ex p:nth-child(even) {
    animation: none;
}
}

@media (max-width: 576px) {.ideal_participants_ex {
    padding: 60px 0;
}.ideal_participants_ex h4 {
    margin-bottom: 40px;
    font-size: calc(39px * 0.7);
}.ideal_participants_ex h4::after {
    width: 30px;
    bottom: -12px;
}.ideal_participants_ex div > div {
    gap: 30px 0;
}.ideal_participants_ex p svg {
    margin-bottom: 10px;
    height: 40px;
    width: 40px;
    padding: 8px;
}.ideal_participants_ex p {
    font-size: calc(16px * 0.9);
}}.our_team_ex {
    background: rgb(216,197,203);
    padding: 4rem 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
    position: relative;
}.our_team_ex::before {
    opacity: 0.2;
    position: absolute;
    height: 70%;
    top: -10%;
    animation: float 15s infinite ease-in-out;
    width: 45%;
    background: linear-gradient(135deg, rgb(191,151,157,0.5), rgb(166,104,135,0.5));
    right: -5%;
    z-index: 1;
    content: "";
    transform: rotate(-15deg) skew(15deg);
}.our_team_ex::after {
    transform: rotate(15deg) skew(-15deg);
    bottom: -10%;
    position: absolute;
    left: -5%;
    content: "";
    height: 70%;
    z-index: 1;
    animation: float 20s infinite ease-in-out reverse;
    width: 45%;
    opacity: 0.15;
    background: linear-gradient(225deg, rgb(166,104,135,0.5), rgb(191,151,157,0.5));
}.our_team_ex .container {
    padding: 0 1.5rem;
    position: relative;
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
}.our_team_ex h1 {
    font-size: 44px;
    color: #000000;
    animation: fadeInUp 0.8s 0.2s forwards ease-out;
    opacity: 0;
    position: relative;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    transform: translateY(10px);
}.our_team_ex h1::after {
    background: linear-gradient(90deg, rgb(191,151,157), rgb(166,104,135));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 80px;
    height: 3px;
    transform: translateX(-50%);
    content: "";
    left: 50%;
    position: absolute;
    bottom: -0.75rem;
}.our_team_ex .academy_cult_ex {
    position: relative;
}.our_team_ex .academy_cult_ex ul {
    list-style: none;
    display: grid;
    gap: 3rem;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr;
}.our_team_ex .quick_studies_ex {
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s forwards ease-out;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    background: #ffffff;
    transform: translateY(20px);
}.our_team_ex .quick_studies_ex:nth-child(2) {
    animation-delay: 0.6s;
}.our_team_ex .quick_studies_ex::before {
    transform: translate(8px, 8px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.3;
    content: "";
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, transparent 97%, rgb(191,151,157,0.5));
    height: 100%;
    width: 100%;
    position: absolute;
}.our_team_ex .quick_studies_ex:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(15px);
}.our_team_ex .quick_studies_ex:hover::before {
    opacity: 0.4;
    transform: translate(12px, 12px);
}.our_team_ex .quick_studies_ex h4 {
    position: relative;
    color: rgb(191,151,157);
    padding-bottom: 0.75rem;
    font-size: calc(22px * 1.1);
    font-weight: 600;
    margin-bottom: 1.5rem;
}.our_team_ex .quick_studies_ex h4::after {
    content: "";
    height: 2px;
    bottom: 0;
    position: absolute;
    background: rgb(166,104,135);
    left: 0;
    width: 40px;
    transition: width 0.4s ease;
}.our_team_ex .quick_studies_ex:hover h4::after {
    width: 60px;
}.our_team_ex .quick_studies_ex div {
    max-height: 300px;
    padding-right: 0.75rem;
    line-height: 1.75;
    overflow-y: auto;
    font-size: 16px;
    color: #000000;
}.our_team_ex .quick_studies_ex div::-webkit-scrollbar {
    width: 4px;
}.our_team_ex .quick_studies_ex div::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}.our_team_ex .quick_studies_ex div::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: rgb(166,104,135,0.5);
}

@media (min-width: 768px) {.our_team_ex {
    padding: 6rem 0;
}.our_team_ex h1 {
    text-align: left;
    margin-bottom: 3.5rem;
    font-size: calc(44px * 1.2);
}.our_team_ex h1::after {
    width: 100px;
    left: 0;
    transform: none;
}.our_team_ex .academy_cult_ex ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}.our_team_ex .quick_studies_ex {
    padding: 3rem;
}.our_team_ex .quick_studies_ex div {
    max-height: 400px;
}
}

@media (min-width: 1024px) {.our_team_ex::before {
    height: 60%;
    width: 35%;
}.our_team_ex::after {
    width: 35%;
    height: 60%;
}.our_team_ex .container {
    padding: 0 3rem;
}.our_team_ex h1 {
    font-size: calc(44px * 1.4);
}.our_team_ex .academy_cult_ex ul {
    gap: 3.5rem;
}.our_team_ex .quick_studies_ex {
    padding: 3.5rem;
}.our_team_ex .quick_studies_ex h4 {
    margin-bottom: 2rem;
    font-size: calc(22px * 1.2);
}.our_team_ex .quick_studies_ex div {
    font-size: calc(16px * 1.05);
    line-height: 1.8;
}
}

@media (min-width: 1440px) {.our_team_ex {
    padding: 8rem 0;
}.our_team_ex .container {
    max-width: 1400px;
}.our_team_ex .quick_studies_ex {
    padding: 4rem;
}.our_team_ex .quick_studies_ex div {
    max-height: 450px;
}}

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

@keyframes float {
    0%, 100% {
        transform: rotate(-15deg) skew(15deg) translate(0, 0);
    }
    50% {
        transform: rotate(-15deg) skew(15deg) translate(-15px, 15px);
    }
}.user_feedback_ex {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgb(166,104,135,0.5), rgb(216,197,203));
    overflow: hidden;
    position: relative;
}.user_feedback_ex::before {
    content: "";
    left: 0;
    top: 0;
    opacity: 0.4;
    background-image: radial-gradient(circle at 20% 30%, rgb(191,151,157,0.5) 0%, transparent 70%);
    height: 100%;
    z-index: 1;
    position: absolute;
    width: 100%;
}.user_feedback_ex::after {
    width: 300px;
    content: "";
    height: 300px;
    opacity: 0.2;
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
    border: 2px solid rgb(191,151,157,0.5);
    z-index: 1;
    position: absolute;
}.user_feedback_ex .container.academy_track_ex {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}.user_feedback_ex h2 {
    text-align: left;
    transform-origin: left center;
    font-weight: 700;
    font-size: 28px;
    padding-left: 20px;
    margin-bottom: 60px;
    position: relative;
    transform: perspective(1000px) rotateX(0deg) rotateY(-1deg);
    color: #000000;
}.user_feedback_ex h2::before {
    left: 0;
    width: 8px;
    background: linear-gradient(to bottom, rgb(191,151,157), rgb(166,104,135));
    height: 80%;
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}.user_feedback_ex .alumni_voices_ex {
    gap: 30px;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    list-style: none;
}.user_feedback_ex .user_opinions_ex {
    border-left: 4px solid rgb(191,151,157);
    position: relative;
    overflow: hidden;
    padding: 30px;
    height: 100%;
    background: linear-gradient(145deg, #ffffff, #f8f9fd);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.5s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06), 
                0 1px 3px rgba(0, 0, 0, 0.03),
                0 20px 40px rgba(83, 83, 83, 0.04);
}.user_feedback_ex .user_opinions_ex:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08), 
                0 1px 3px rgba(0, 0, 0, 0.03),
                0 30px 60px rgba(83, 83, 83, 0.05);
}.user_feedback_ex .user_opinions_ex:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
}.user_feedback_ex .user_opinions_ex::after {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: radial-gradient(circle at 10% 10%, #ffffff 0%, transparent 70%);
    width: 100%;
    content: "";
    transition: transform 1.5s ease-out;
    opacity: 0.8;
    z-index: 0;
}.user_feedback_ex .user_opinions_ex > div {
    margin-bottom: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    position: relative;
}.user_feedback_ex .user_opinions_ex img {
    height: 60px;
    width: 60px;
    border: 3px solid #ffffff;
    object-fit: cover;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}.user_feedback_ex .user_opinions_ex:hover img {
    transform: scale(1.1) rotate(5deg);
}.user_feedback_ex .user_opinions_ex h4 {
    position: relative;
    margin-left: 20px;
    font-weight: 600;
    font-size: 22px;
    color: #000000;
}.user_feedback_ex .user_opinions_ex h4::after {
    content: "";
    left: 0;
    transition: width 0.4s ease-out;
    background: linear-gradient(to right, rgb(191,151,157), transparent);
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
}.user_feedback_ex .user_opinions_ex:hover h4::after {
    width: 100%;
}.user_feedback_ex .description {
    line-height: 1.7;
    color: #000000;
    font-family: Arial, sans-serif;
    z-index: 2;
    position: relative;
    font-weight: 400;
    margin: 0;
    font-size: 12px;
}.user_feedback_ex .description::before {
    font-family: Georgia, serif;
    top: -20px;
    color: rgb(166,104,135,0.5);
    left: -10px;
    z-index: -1;
    content: "";
    font-size: 80px;
    line-height: 1;
    opacity: 0.2;
    position: absolute;
}.user_feedback_ex a {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    color: #ffffff;
    z-index: 2;
    background: linear-gradient(135deg, rgb(191,151,157), rgb(166,104,135));
    overflow: hidden;
    position: relative;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 15px 32px;
    font-weight: 600;
    margin-top: 50px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
}.user_feedback_ex a::before {
    left: -100%;
    position: absolute;
    top: 0;
    height: 100%;
    transition: left 0.7s ease;
    content: "";
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}.user_feedback_ex a:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}.user_feedback_ex a:hover::before {
    left: 100%;
}

@media (max-width: 1024px) {.user_feedback_ex {
    padding: 80px 0 60px;
}.user_feedback_ex h2 {
    margin-bottom: 40px;
    font-size: calc(28px * 0.9);
}.user_feedback_ex .alumni_voices_ex {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}
}

@media (max-width: 768px) {.user_feedback_ex {
    padding: 60px 0 40px;
}.user_feedback_ex::after {
    height: 200px;
    width: 200px;
}.user_feedback_ex h2 {
    font-size: calc(28px * 0.8);
    padding-left: 0;
    text-align: center;
    margin-bottom: 30px;
    transform: none;
}.user_feedback_ex h2::before {
    width: 60px;
    top: -20px;
    transform: translateX(-50%);
    height: 5px;
    left: 50%;
}.user_feedback_ex .alumni_voices_ex {
    gap: 20px;
    grid-template-columns: 1fr;
}.user_feedback_ex .user_opinions_ex {
    padding: 25px;
}.user_feedback_ex a {
    padding: 12px 28px;
    margin-top: 30px;
}
}

@media (max-width: 480px) {.user_feedback_ex {
    padding: 50px 0 30px;
}.user_feedback_ex h2 {
    font-size: calc(28px * 0.7);
    margin-bottom: 25px;
}.user_feedback_ex .user_opinions_ex {
    padding: 20px;
}.user_feedback_ex .user_opinions_ex > div {
    margin-bottom: 15px;
}.user_feedback_ex .user_opinions_ex img {
    height: 50px;
    width: 50px;
}.user_feedback_ex .description {
    font-size: calc(12px * 0.95);
}.user_feedback_ex a {
    width: 100%;
    padding: 12px 20px;
}}.instructional_approach_ex {
    justify-content: center;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(191,151,157,0.5) 0%, rgb(166,104,135) 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    padding: 8rem 0;
}.instructional_approach_ex::before {
    animation: pulsate 12s infinite alternate;
    position: absolute;
    content: '';
    width: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(191,151,157) 0%, transparent 8%),
        radial-gradient(circle at 80% 70%, rgb(166,104,135) 0%, transparent 8%),
        radial-gradient(circle at 40% 80%, rgb(191,151,157) 0%, transparent 6%),
        radial-gradient(circle at 60% 20%, rgb(166,104,135) 0%, transparent 6%);
    left: 0;
    height: 100%;
    top: 0;
    z-index: 1;
}@keyframes pulsate {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

.instructional_approach_ex::after {
    width: 200%;
    top: -50%;
    left: -50%;
    height: 200%;
    animation: slide 30s linear infinite;
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        rgb(166,104,135,0.5) 0,
        rgb(166,104,135,0.5) 1px,
        transparent 1px,
        transparent 30px
    );
    content: '';
    z-index: 1;
}@keyframes slide {
    0% {
        transform: rotate(0deg) translateY(0);
    }
    100% {
        transform: rotate(360deg) translateY(0);
    }
}

.instructional_approach_ex .academy_track_ex {
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    width: 90%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    z-index: 5;
    max-width: 1200px;
    padding: 0;
    border-radius: 27px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
}.instructional_approach_ex .academy_track_ex:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2), 0 15px 25px rgba(0, 0, 0, 0.1);
}.instructional_approach_ex .statement_holder_ex {
    z-index: 2;
    padding: 4rem;
    position: relative;
}.instructional_approach_ex .statement_holder_ex::before {
    background: linear-gradient(to bottom, rgb(191,151,157), transparent);
    top: 0;
    left: 0;
    content: '';
    height: 50%;
    border-radius: 10px;
    position: absolute;
    width: 5px;
}.instructional_approach_ex .statement_holder_ex::after {
    bottom: 0;
    position: absolute;
    border-radius: 10px;
    content: '';
    height: 50%;
    width: 5px;
    right: 0;
    background: linear-gradient(to top, rgb(166,104,135), transparent);
}.instructional_approach_ex h2 {
    -webkit-text-fill-color: transparent;
    background-clip: text !important;
    font-size: 32px;
    text-fill-color: transparent;
    -webkit-background-clip: text !important;
    transform: perspective(500px) translateZ(0);
    letter-spacing: 1px;
    font-weight: 700;
    background: linear-gradient(135deg, rgb(191,151,157), rgb(166,104,135));
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}.instructional_approach_ex .academy_track_ex:hover h2 {
    transform: perspective(500px) translateZ(20px);
}.instructional_approach_ex p {
    font-size: 13px;
    transform: perspective(500px) translateZ(0);
    transition: transform 0.3s ease;
    position: relative;
    line-height: 1.8;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}.instructional_approach_ex .academy_track_ex:hover p {
    transform: perspective(500px) translateZ(10px);
}

@media (max-width: 992px) {.instructional_approach_ex {
    min-height: auto;
    padding: 6rem 0;
}.instructional_approach_ex .statement_holder_ex {
    padding: 3rem;
}.instructional_approach_ex h2 {
    font-size: calc(32px * 0.9);
}
}

@media (max-width: 768px) {.instructional_approach_ex {
    padding: 4rem 0;
}.instructional_approach_ex .academy_track_ex {
    width: 95%;
}.instructional_approach_ex .statement_holder_ex {
    padding: 2rem;
}.instructional_approach_ex h2 {
    font-size: calc(32px * 0.8);
    margin-bottom: 1.5rem;
}.instructional_approach_ex p {
    font-size: calc(13px * 0.95);
}
}

@media (max-width: 576px) {.instructional_approach_ex {
    padding: 3rem 0;
}.instructional_approach_ex .statement_holder_ex {
    padding: 1.5rem;
}.instructional_approach_ex h2 {
    margin-bottom: 1rem;
    font-size: calc(32px * 0.7);
}.instructional_approach_ex p {
    margin-bottom: 1rem;
    font-size: calc(13px * 0.9);
}.instructional_approach_ex::before,
    .instructional_approach_ex::after {
    opacity: 0.6;
}
}