﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}svg {
    width: 30px;
    height: 30px;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1243px;
}html,body {
    font-family: Arial, sans-serif;
    min-height: 100%;
    height: 100%;
    color: #000000;
    scroll-behavior: auto;
}header,footer {
    width: 100%;
}.ex-wrap-structure {
    flex-direction: column;
    height: 100%;
    display: flex;
    min-height: 100%;
}.ex-program-foot {
    flex: 0 0 auto;
}.ex-nav-main {
    flex: 1 0 auto;
}a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
header {
    background: rgb(240,231,242);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-top: 0;
    padding: 0;
    overflow: visible;
}header::before {
    height: 100%;
    left: 0;
    z-index: 0;
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    background: 
        linear-gradient(135deg, transparent 25%, rgba(rgb(215,200,217), 0.03) 25%) 0 0 / 20px 20px,
        linear-gradient(225deg, transparent 25%, rgba(rgb(215,200,217), 0.03) 25%) 0 0 / 20px 20px,
        linear-gradient(315deg, transparent 25%, rgba(rgb(215,200,217), 0.03) 25%) 0 0 / 20px 20px,
        linear-gradient(45deg, transparent 25%, rgba(rgb(215,200,217), 0.03) 25%) 0 0 / 20px 20px;
}header::after {
    width: 100%;
    left: 0;
    transform: scaleX(0.7);
    content: '';
    transform-origin: center;
    position: absolute;
    height: 5px;
    transition: transform 0.5s ease;
    bottom: 0;
    background: linear-gradient(to right, 
        rgb(215,200,217), 
        rgb(181,164,185), 
        rgb(215,200,217)
    );
}header:hover::after {
    transform: scaleX(1);
}header .ex-head-learning {
    z-index: 5;
    position: relative;
    align-items: center;
    display: flex;
    padding: 1.3rem 2.5rem;
    justify-content: space-between;
}header .ex-main-navbar {
    flex: 0 0 auto;
    perspective: 800px;
    margin-right: 2rem;
    position: relative;
}header .ex-top-mainwrap {
    position: relative;
    display: block;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}header .ex-top-mainwrap:hover {
    transform: rotateY(10deg) rotateX(5deg);
}header .ex-top-mainwrap::before {
    opacity: 0.1;
    width: 100%;
    background: rgb(215,200,217);
    left: 0;
    top: 0;
    filter: blur(10px);
    content: '';
    position: absolute;
    height: 100%;
    transform: translateZ(-10px);
}header .ex-top-mainwrap img {
    max-height: 40px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    transform: translateZ(20px);
}header .ex-site-start {
    display: flex;
    padding: 0;
    perspective: 1000px;
    transform-style: preserve-3d;
    list-style: none;
    position: relative;
    margin: 0;
}header .ex-site-start::before {
    transform-origin: top;
    height: 10px;
    content: '';
    transform: rotateX(90deg);
    left: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.05));
    width: 100%;
    top: 100%;
    position: absolute;
}header .ex-top-nav {
    margin: 0 0.3rem;
    transform-style: preserve-3d;
    position: relative;
}header .ex-top-nav a {
    align-items: center;
    padding: 0.7rem 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    color: #000000;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    justify-content: center;
    border-radius: 10px;
    background: #ffffff;
    font-weight: 600;
    position: relative;
    font-size: 14px;
    text-decoration: none;
    transform: translateZ(0);
}header .ex-top-nav a::before {
    width: 100%;
    background: linear-gradient(135deg, 
        rgb(215,200,217,0.5) 0%, 
        rgb(181,164,185,0.5) 100%
    );
    height: 100%;
    border-radius: 10px;
    transition: opacity 0.4s ease;
    opacity: 0;
    transform: translateZ(-5px);
    content: '';
    left: 0;
    top: 0;
    position: absolute;
}header .ex-top-nav a:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    transform: translateZ(15px);
}header .ex-top-nav a:hover::before {
    opacity: 1;
}header .ex-top-nav a::after {
    opacity: 0;
    bottom: -5px;
    transition: all 0.4s ease;
    height: 5px;
    background: rgb(215,200,217);
    transform: translateZ(-10px);
    left: 5px;
    content: '';
    position: absolute;
    right: 5px;
}header .ex-top-nav a:hover::after {
    opacity: 0.3;
    bottom: -8px;
}header .ex-head-learning::before {
    background: linear-gradient(to right, 
        transparent, 
        rgb(215,200,217), 
        transparent
    );
    height: 1px;
    content: '';
    left: 35%;
    width: 30%;
    top: 0;
    position: absolute;
}.ex-nav-main {
    padding-top: 2rem;
    z-index: 1;
    background: #ffffff;
    position: relative;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (min-width: 1400px) {header .ex-head-learning {
    margin: 0 auto;
    max-width: 1320px;
}header .ex-top-nav {
    margin: 0 0.5rem;
}header .ex-top-nav a {
    padding: 0.7rem 1.5rem;
}
}

@media (max-width: 991px) {header .ex-head-learning {
    flex-wrap: wrap;
    padding: 1rem 2rem;
}header .ex-main-navbar {
    margin-bottom: 0;
    margin-right: 0;
}header .ex-site-start {
    flex-basis: 100%;
    justify-content: flex-end;
    margin-top: 1rem;
}header .ex-top-nav a {
    padding: 0.6rem 1rem;
    font-size: calc(14px - 1px);
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .ex-head-learning {
    padding: 0.8rem 1.5rem;
}header .ex-main-navbar {
    max-width: 140px;
}header .ex-top-mainwrap img {
    max-height: 35px;
}header .ex-site-start {
    scrollbar-width: thin;
    margin-top: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
}header .ex-site-start::-webkit-scrollbar {
    height: 3px;
}header .ex-site-start::-webkit-scrollbar-thumb {
    background: rgb(215,200,217,0.5);
    border-radius: 10px;
}header .ex-top-nav {
    margin: 0 0.2rem;
    flex: 0 0 auto;
}header .ex-top-nav a {
    white-space: nowrap;
    font-size: calc(14px - 2px);
    padding: 0.5rem 0.8rem;
}
}

@media (max-width: 479px) {header .ex-head-learning {
    padding: 0.7rem 1.2rem;
}header .ex-main-navbar {
    max-width: 120px;
}header .ex-top-nav a {
    padding: 0.4rem 0.6rem;
    font-size: calc(14px - 3px);
}header::after {
    height: 3px;
}
}

@supports not (transform-style: preserve-3d) {header .ex-top-mainwrap:hover {
    transform: translateY(-3px);
}header .ex-top-nav a:hover {
    transform: translateY(-3px);
}}.ex-course-offering {
    padding: 8rem 2rem;
    background: linear-gradient(45deg, rgb(181,164,185,0.5) 0%, rgb(240,231,242) 50%, rgb(215,200,217,0.5) 100%);
    position: relative;
    overflow: hidden;
}.ex-course-offering::before {
    left: -50%;
    z-index: 1;
    content: "";
    background: 
        radial-gradient(ellipse at center, transparent 0%, transparent 65%, rgb(181,164,185,0.5) 100%);
    position: absolute;
    height: 200%;
    animation: rotate 60s linear infinite;
    top: -50%;
    width: 200%;
}.ex-course-offering::after {
    background: linear-gradient(
        rgb(181,164,185,0.5),
        transparent 20%,
        transparent 80%,
        rgb(215,200,217,0.5)
    );
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    position: absolute;
}.ex-course-offering .container {
    z-index: 3;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}.ex-course-offering .ex-learn-map {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    position: relative;
}.ex-course-offering .ex-message-box {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
    margin-bottom: 4rem;
}.ex-course-offering h2 {
    color: #000000;
    display: inline-block;
    font-size: 48px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 2px;
    font-weight: 700;
}.ex-course-offering h2::before,
.ex-course-offering h2::after {
    background: linear-gradient(to right, transparent, rgb(215,200,217), transparent);
    position: absolute;
    left: -25%;
    height: 3px;
    content: "";
    width: 150%;
}.ex-course-offering h2::before {
    top: -15px;
}.ex-course-offering h2::after {
    bottom: -15px;
}.ex-course-offering .description {
    position: relative;
    color: #000000;
    opacity: 0;
    animation-delay: 0.2s;
    animation: slideUp 0.8s forwards;
    font-size: calc(18px * 1.1);
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    line-height: 1.8;
}.ex-course-offering .description:nth-of-type(2) {
    animation-delay: 0.5s;
}.ex-course-offering .ex-photo-cell {
    height: 500px;
    margin-top: 2rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    border-radius: 29px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.ex-course-offering .ex-photo-cell::before {
    top: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    content: "";
    left: 0;
    opacity: 0.7;
    position: absolute;
    background: linear-gradient(
        to bottom,
        rgb(215,200,217,0.5) 0%,
        transparent 40%,
        transparent 60%,
        rgb(181,164,185,0.5) 100%
    );
    height: 100%;
    width: 100%;
}.ex-course-offering .ex-photo-cell:hover {
    transform: scale(1);
}.ex-course-offering .ex-photo-cell:hover::before {
    opacity: 0.4;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 992px) {.ex-course-offering {
    padding: 5rem 1.5rem;
}.ex-course-offering .ex-message-box {
    margin-bottom: 3rem;
}.ex-course-offering h2 {
    font-size: calc(48px * 0.85);
}.ex-course-offering .ex-photo-cell {
    height: 400px;
}
}

@media screen and (max-width: 768px) {.ex-course-offering {
    padding: 4rem 1rem;
}.ex-course-offering .ex-message-box {
    margin-bottom: 2rem;
}.ex-course-offering h2 {
    font-size: calc(48px * 0.7);
}.ex-course-offering h2::before,
    .ex-course-offering h2::after {
    width: 120%;
    left: -10%;
}.ex-course-offering .description {
    font-size: 18px;
}.ex-course-offering .ex-photo-cell {
    height: 300px;
}}.ex-connect-with-us {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}.ex-connect-with-us::before {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    content: "";
    top: 0;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
}.ex-connect-with-us::after {
    height: 200%;
    top: -50%;
    width: 200%;
    background: linear-gradient(45deg, 
        transparent 65%, 
        rgba(255, 255, 255, 0.08) 70%, 
        transparent 75%);
    position: absolute;
    z-index: 2;
    left: -50%;
    animation: shine 8s linear infinite;
    content: "";
}.ex-connect-with-us .container {
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 3;
}.ex-connect-with-us .ex-contact-request {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.3));
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2), 
                0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    gap: 2rem;
    flex-wrap: wrap;
    display: flex;
    border-radius: 17px;
}.ex-connect-with-us .ex-contact-request::before {
    content: "";
    width: 200%;
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(215,200,217), 
        transparent);
    left: -50%;
    height: 1px;
}.ex-connect-with-us .ex-contact-request::after {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(181,164,185), 
        transparent);
    right: -50%;
    bottom: 0;
    height: 1px;
    width: 200%;
    content: "";
}.ex-connect-with-us .ex-message-map {
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transform: translateZ(0);
    padding: 2rem;
    flex: 1 1 300px;
    background: linear-gradient(135deg, 
        rgb(215,200,217,0.5), 
        rgba(0, 0, 0, 0.2));
    backdrop-filter: blur(5px);
}.ex-connect-with-us .ex-message-map::before {
    position: absolute;
    animation: pulse 15s infinite linear;
    top: -50%;
    height: 200%;
    left: -50%;
    width: 200%;
    z-index: -1;
    content: "";
    background: radial-gradient(
        circle at center, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 70%);
}.ex-connect-with-us .ex-message-map h3 {
    position: relative;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 21px;
    color: #ffffff;
    padding-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}.ex-connect-with-us .ex-message-map h3::after {
    content: "";
    bottom: 0;
    height: 2px;
    box-shadow: 0 0 8px rgb(181,164,185);
    background: rgb(181,164,185);
    width: 50px;
    left: 0;
    position: absolute;
}.ex-connect-with-us .ex-message-map div {
    align-items: center;
    display: flex;
    padding-left: 10px;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}.ex-connect-with-us .ex-message-map div:hover {
    transform: translateX(5px);
}.ex-connect-with-us .ex-message-map div::before {
    top: 50%;
    height: 0;
    background: rgb(181,164,185);
    position: absolute;
    transition: height 0.3s ease;
    content: "";
    width: 3px;
    left: 0;
}.ex-connect-with-us .ex-message-map div:hover::before {
    top: 10%;
    height: 80%;
}.ex-connect-with-us .ex-message-map div svg {
    flex-shrink: 0;
    height: 20px;
    margin-right: 15px;
    width: 20px;
}.ex-connect-with-us .ex-message-map div svg path {
    fill: rgb(181,164,185);
    transition: all 0.3s ease;
}.ex-connect-with-us .ex-message-map div:hover svg path {
    filter: drop-shadow(0 0 2px rgb(215,200,217));
    fill: rgb(215,200,217);
}.ex-connect-with-us .ex-message-map div span {
    font-size: calc(14px - 2px);
    color: #ffffff;
    letter-spacing: 0.5px;
}.ex-connect-with-us .ex-message-map div span a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}.ex-connect-with-us .ex-message-map div span a:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    color: rgb(181,164,185);
}.ex-connect-with-us .ex-contact-reach {
    position: relative;
    backdrop-filter: blur(8px);
    overflow: hidden;
    padding: 2rem;
    flex: 1 1 400px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05), 
        rgba(0, 0, 0, 0.1));
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}.ex-connect-with-us .ex-contact-reach::before {
    right: -100px;
    top: -100px;
    width: 200px;
    position: absolute;
    border-radius: 50%;
    content: "";
    height: 200px;
    opacity: 0.3;
    background: radial-gradient(
        circle, 
        rgb(215,200,217,0.5) 0%, 
        transparent 70%);
}.ex-connect-with-us .ex-contact-reach form {
    gap: 1.2rem;
    flex-direction: column;
    display: flex;
}.ex-connect-with-us .ex-contact-reach h3 {
    color: #ffffff;
    position: relative;
    font-size: 20px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}.ex-connect-with-us .ex-contact-reach h3::after {
    left: 50%;
    box-shadow: 0 0 8px rgb(181,164,185);
    width: 50px;
    bottom: -10px;
    content: "";
    background: rgb(181,164,185);
    transform: translateX(-50%);
    position: absolute;
    height: 2px;
}.ex-connect-with-us .ex-contact-reach input[type="text"],
.ex-connect-with-us .ex-contact-reach input[type="email"] {
    padding: 12px 15px;
    transition: all 0.3s ease;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    border-radius: 10px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    outline: none;
}.ex-connect-with-us .ex-contact-reach input[type="text"]:focus,
.ex-connect-with-us .ex-contact-reach input[type="email"]:focus {
    border-color: rgb(215,200,217);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 2px rgb(215,200,217,0.5);
}.ex-connect-with-us .ex-contact-reach input[type="text"]::placeholder,
.ex-connect-with-us .ex-contact-reach input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}.ex-connect-with-us .ex-contact-reach .ex-query-widget {
    align-items: flex-start;
    gap: 10px;
    display: flex;
    margin: 0.5rem 0;
}.ex-connect-with-us .ex-contact-reach .ex-query-widget input[type="checkbox"] {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    cursor: pointer;
    width: 18px;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.2);
    height: 18px;
    margin-top: 3px;
}.ex-connect-with-us .ex-contact-reach .ex-query-widget input[type="checkbox"]:checked {
    border-color: rgb(181,164,185);
    background: rgb(181,164,185);
}.ex-connect-with-us .ex-contact-reach .ex-query-widget input[type="checkbox"]:checked::before {
    color: #ffffff;
    content: "✓";
    transform: translate(-50%, -50%);
    left: 50%;
    font-size: 12px;
    top: 50%;
    position: absolute;
}.ex-connect-with-us .ex-contact-reach .ex-query-widget label {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-size: calc(14px - 2px);
}.ex-connect-with-us .ex-contact-reach .ex-query-widget label a {
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgb(181,164,185);
}.ex-connect-with-us .ex-contact-reach .ex-query-widget label a::after {
    height: 1px;
    content: "";
    background: rgb(181,164,185);
    width: 0;
    transition: width 0.3s ease;
    left: 0;
    position: absolute;
    bottom: -2px;
}.ex-connect-with-us .ex-contact-reach .ex-query-widget label a:hover::after {
    width: 100%;
}.ex-connect-with-us .ex-contact-reach .ex-help-formuxb {
    background: linear-gradient(135deg, 
        rgb(215,200,217), 
        rgb(181,164,185));
    overflow: hidden;
    padding: 12px 20px;
    font-size: 18px;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    letter-spacing: 1px;
    margin-top: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}.ex-connect-with-us .ex-contact-reach .ex-help-formuxb::before {
    top: 0;
    height: 100%;
    content: "";
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    width: 100%;
    position: absolute;
    transition: all 0.6s ease;
    left: -100%;
}.ex-connect-with-us .ex-contact-reach .ex-help-formuxb:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}.ex-connect-with-us .ex-contact-reach .ex-help-formuxb:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@media screen and (max-width: 992px) {.ex-connect-with-us {
    padding: 5rem 0;
}.ex-connect-with-us .ex-contact-request {
    gap: 2rem;
    flex-direction: column;
}.ex-connect-with-us .ex-message-map,
    .ex-connect-with-us .ex-contact-reach {
    flex: 1 1 100%;
}
}

@media screen and (max-width: 768px) {.ex-connect-with-us {
    padding: 4rem 0;
}.ex-connect-with-us .ex-contact-request {
    padding: 1.5rem;
}.ex-connect-with-us .ex-message-map,
    .ex-connect-with-us .ex-contact-reach {
    padding: 1.5rem;
}.ex-connect-with-us .ex-message-map div svg {
    margin-right: 10px;
    height: 18px;
    width: 18px;
}.ex-connect-with-us .ex-message-map h3,
    .ex-connect-with-us .ex-contact-reach h3 {
    font-size: calc(20px - 2px);
}
}

@media screen and (max-width: 576px) {.ex-connect-with-us {
    padding: 3rem 0;
}.ex-connect-with-us .ex-contact-request {
    gap: 1.5rem;
    padding: 1rem;
}.ex-connect-with-us .ex-message-map,
    .ex-connect-with-us .ex-contact-reach {
    padding: 1rem;
}.ex-connect-with-us .ex-message-map div {
    margin-bottom: 1rem;
}.ex-connect-with-us .ex-contact-reach form {
    gap: 1rem;
}.ex-connect-with-us .ex-contact-reach input[type="text"],
    .ex-connect-with-us .ex-contact-reach input[type="email"] {
    padding: 10px 12px;
}.ex-connect-with-us .ex-contact-reach .ex-help-formuxb {
    padding: 10px 16px;
}}.ex-potential-enrollees {
    position: relative;
    background-color: #edf0f8;
    padding: 100px 0;
    overflow: hidden;
}.ex-potential-enrollees::before {
    top: 0;
    content: '';
    position: absolute;
    left: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 10px,
            rgba(228, 232, 243, 0.8) 10px,
            rgba(228, 232, 243, 0.8) 11px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 10px,
            rgba(228, 232, 243, 0.8) 10px,
            rgba(228, 232, 243, 0.8) 11px
        );
    opacity: 0.4;
    height: 100%;
    width: 100%;
    z-index: 1;
}.ex-potential-enrollees .ex-academy-cult {
    position: relative;
    max-width: 1200px;
    z-index: 10;
    text-align: center;
    margin: 0 auto;
    padding: 0 30px;
}.ex-potential-enrollees h3 {
    margin-bottom: 60px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    font-size: 32px;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 
        10px 10px 20px rgba(166, 180, 208, 0.7),
        -10px -10px 20px rgba(255, 255, 255, 0.8);
    background-color: #edf0f8;
    color: #000000;
}.ex-potential-enrollees h3::after {
    content: '';
    transform: translateX(-50%);
    height: 5px;
    left: 50%;
    border-radius: 10px;
    bottom: -15px;
    width: 60px;
    background: linear-gradient(90deg, rgb(215,200,217), rgb(181,164,185));
    position: absolute;
}.ex-potential-enrollees ul {
    flex-wrap: wrap;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 35px;
    padding: 0;
    justify-content: center;
}.ex-potential-enrollees ul li {
    display: flex;
    width: calc(33.333% - 24px);
    min-width: 280px;
    position: relative;
    padding: 35px 30px;
    box-shadow: 
        10px 10px 20px rgba(166, 180, 208, 0.5),
        -10px -10px 20px rgba(255, 255, 255, 0.8);
    background-color: #edf0f8;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s ease;
    border-radius: 20px;
}.ex-potential-enrollees ul li:hover {
    box-shadow: 
        inset 5px 5px 10px rgba(166, 180, 208, 0.4),
        inset -5px -5px 10px rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
}.ex-potential-enrollees ul li::before {
    right: 15px;
    height: 12px;
    top: 15px;
    position: absolute;
    transition: opacity 0.3s ease;
    background: linear-gradient(135deg, rgb(215,200,217), rgb(181,164,185));
    content: '';
    opacity: 0.5;
    width: 12px;
    border-radius: 50%;
}.ex-potential-enrollees ul li:hover::before {
    opacity: 1;
}.ex-potential-enrollees ul li svg {
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 
        5px 5px 10px rgba(166, 180, 208, 0.5),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #edf0f8, #e2e6f3);
    width: 50px;
    padding: 10px;
    height: 50px;
}.ex-potential-enrollees ul li:hover svg {
    transform: scale(1.05);
    box-shadow: 
        inset 3px 3px 6px rgba(166, 180, 208, 0.4),
        inset -3px -3px 6px rgba(255, 255, 255, 0.8);
}.ex-potential-enrollees ul li svg path {
    transition: fill 0.4s ease;
    fill: rgb(215,200,217);
}.ex-potential-enrollees ul li:hover svg path {
    fill: rgb(181,164,185);
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ex-potential-enrollees ul li {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}.ex-potential-enrollees ul li:nth-child(1) {
    animation-delay: 0.1s;
}.ex-potential-enrollees ul li:nth-child(2) {
    animation-delay: 0.2s;
}.ex-potential-enrollees ul li:nth-child(3) {
    animation-delay: 0.3s;
}.ex-potential-enrollees ul li:nth-child(4) {
    animation-delay: 0.4s;
}.ex-potential-enrollees ul li:nth-child(5) {
    animation-delay: 0.5s;
}.ex-potential-enrollees ul li:nth-child(6) {
    animation-delay: 0.6s;
}

@media (max-width: 992px) {.ex-potential-enrollees {
    padding: 80px 0;
}.ex-potential-enrollees h3 {
    padding: 15px 30px;
    margin-bottom: 50px;
}.ex-potential-enrollees ul {
    gap: 25px;
}.ex-potential-enrollees ul li {
    width: calc(50% - 13px);
    padding: 30px 25px;
}
}

@media (max-width: 768px) {.ex-potential-enrollees ul li {
    max-width: 400px;
    width: 100%;
}
}

@media (max-width: 576px) {.ex-potential-enrollees {
    padding: 60px 0;
}.ex-potential-enrollees h3 {
    padding: 15px 20px;
    font-size: calc(32px * 0.85);
    margin-bottom: 40px;
}.ex-potential-enrollees ul li {
    gap: 15px;
    padding: 25px 20px;
}.ex-potential-enrollees ul li svg {
    padding: 8px;
    height: 40px;
    width: 40px;
}
}

@media (prefers-reduced-motion: reduce) {.ex-potential-enrollees ul li {
    opacity: 1;
    animation: none;
}.ex-potential-enrollees ul li:hover {
    transform: none;
}}.ex-welcome-board {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, rgb(240,231,242) 0%, rgb(215,200,217,0.5) 100%);
}.ex-welcome-board::before {
    left: 0;
    background: radial-gradient(circle at 70% 30%, rgb(181,164,185,0.5) 0%, transparent 60%);
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    position: absolute;
    z-index: 1;
}.ex-welcome-board > div {
    position: relative;
    flex-direction: column;
    gap: 50px;
    padding: 0 20px;
    display: flex;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
}.ex-welcome-board > div > div:first-child {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    animation: fadeInUp 0.8s ease-out forwards;
    transform: translateY(20px);
    opacity: 0;
}.ex-welcome-board .ex-course-primary {
    max-width: 650px;
    line-height: 1.2;
    font-size: 42px;
    color: #000000;
    position: relative;
    margin: 0 0 20px;
    font-weight: 700;
}.ex-welcome-board .ex-course-primary::after {
    transform: scaleX(0);
    left: 0;
    animation: expandLine 1s 0.5s forwards ease-out;
    bottom: -10px;
    position: absolute;
    background: rgb(215,200,217);
    transform-origin: left;
    height: 4px;
    content: "";
    width: 80px;
}.ex-welcome-board p {
    margin: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.3s ease-out forwards;
    color: #000000;
    line-height: 1.6;
    font-size: 15px;
    max-width: 500px;
    opacity: 0;
}.ex-welcome-board .ex-learn-main {
    position: relative;
    animation: fadeInUp 0.8s 0.6s ease-out forwards;
    transform: translateY(30px);
    opacity: 0;
    width: 100%;
}.ex-welcome-board .ex-community-ed {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 360px;
    transition: all 0.5s ease;
}.ex-welcome-board .ex-community-ed::before {
    position: absolute;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    top: 0;
    z-index: 1;
    content: "";
    width: 100%;
}.ex-welcome-board .ex-community-ed span {
    left: 0;
    position: absolute;
    width: 100%;
    transform: translateY(10px);
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 2;
    padding: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s 0.9s ease-out forwards;
}.ex-welcome-board .ex-community-ed h3 {
    font-size: calc(24px * 1.1);
    color: #ffffff;
    max-width: 90%;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}.ex-welcome-board .ex-community-ed:hover {
    transform: translateY(-5px);
}.ex-welcome-board .ex-community-ed:hover span {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

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

@keyframes expandLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (min-width: 768px) {.ex-welcome-board {
    padding: 150px 0;
}.ex-welcome-board > div {
    align-items: center;
    flex-direction: row;
    gap: 40px;
}.ex-welcome-board > div > div:first-child {
    flex: 1;
}.ex-welcome-board .ex-learn-main {
    flex: 1.2;
}.ex-welcome-board .ex-community-ed {
    height: 400px;
}.ex-welcome-board .ex-course-primary {
    font-size: calc(42px * 1.1);
}.ex-welcome-board p {
    font-size: calc(15px * 1.1);
}
}

@media (min-width: 992px) {.ex-welcome-board {
    padding: 180px 0;
}.ex-welcome-board > div {
    gap: 60px;
}.ex-welcome-board .ex-community-ed {
    height: 450px;
}.ex-welcome-board .ex-course-primary {
    font-size: calc(42px * 1.2);
}
}

@media (max-width: 767px) {.ex-welcome-board {
    padding: 80px 0;
}.ex-welcome-board .ex-course-primary {
    font-size: calc(42px * 0.9);
}.ex-welcome-board p {
    font-size: 15px;
    max-width: 100%;
}.ex-welcome-board .ex-community-ed {
    height: 300px;
}.ex-welcome-board .ex-community-ed h3 {
    font-size: 24px;
}
}

@media (max-width: 480px) {.ex-welcome-board {
    padding: 60px 0;
}.ex-welcome-board .ex-course-primary {
    font-size: calc(42px * 0.8);
}.ex-welcome-board p {
    font-size: calc(15px * 0.9);
}.ex-welcome-board .ex-community-ed {
    height: 260px;
}.ex-welcome-board .ex-community-ed span {
    padding: 20px;
}.ex-welcome-board .ex-community-ed h3 {
    font-size: calc(24px * 0.9);
}}.ex-newsletter-subscription {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem;
}.ex-newsletter-subscription::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.3;
    background-size: 4px 4px;
    z-index: 0;
    background-image: linear-gradient(
        90deg,
        rgb(240,231,242) 0%,
        rgb(240,231,242) 50%,
        transparent 50%,
        transparent 100%
    );
    width: 100%;
    height: 100%;
}.ex-newsletter-subscription .container {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
}.ex-newsletter-subscription .ex-academy-cult {
    position: relative;
    flex-direction: column;
    display: flex;
}.ex-newsletter-subscription .ex-academy-cult::before {
    font-size: 12rem;
    z-index: -1;
    letter-spacing: 0.5rem;
    left: 50%;
    font-family: Arial, sans-serif;
    font-weight: 700;
    transform: translate(-50%, -50%);
    position: absolute;
    white-space: nowrap;
    color: rgb(215,200,217);
    top: 50%;
    opacity: 0.04;
}.ex-newsletter-subscription p {
    max-width: 70%;
    transform: translateX(15%);
    font-size: 40px;
    font-family: Arial, sans-serif;
    line-height: 1.3;
    position: relative;
    color: #000000;
    margin-bottom: 4rem;
    font-weight: 700;
}.ex-newsletter-subscription p::after {
    height: 5px;
    animation: expandLine 1.5s cubic-bezier(.17,.67,.83,.67) forwards;
    left: 0;
    width: 100px;
    transform-origin: left;
    background: rgb(215,200,217);
    bottom: -20px;
    position: absolute;
    content: "";
}.ex-newsletter-subscription .input_holder {
    z-index: 2;
    display: grid;
    margin-left: auto;
    transform: translateX(-15%);
    max-width: 80%;
    grid-template-columns: 3fr 1fr;
    position: relative;
}.ex-newsletter-subscription .input_holder::before {
    z-index: -1;
    content: "";
    background: #000000;
    transition: transform 0.3s ease;
    opacity: 0.02;
    position: absolute;
    width: 100%;
    transform: translate(10px, 10px);
    height: 100%;
}.ex-newsletter-subscription .input_holder:hover::before {
    transform: translate(5px, 5px);
}.ex-newsletter-subscription .ex-expand-knowledge {
    transition: all 0.3s ease;
    font-size: 14px;
    outline: none;
    padding: 1.5rem;
    font-family: Arial, sans-serif;
    color: #000000;
    border: 2px solid #000000;
    background: #ffffff;
    border-right: none;
}.ex-newsletter-subscription .ex-expand-knowledge:focus {
    border-color: rgb(215,200,217);
}.ex-newsletter-subscription .ex-help-formuxb {
    position: relative;
    font-weight: 600;
    border: 2px solid #000000;
    padding: 0 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    color: #ffffff;
    background: #000000;
    font-size: 16px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}.ex-newsletter-subscription .ex-help-formuxb::after {
    transform: scale(0);
    border-radius: 50%;
    content: "";
    top: -50%;
    width: 200%;
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: absolute;
    opacity: 0;
    height: 200%;
    background: rgb(215,200,217);
    z-index: -1;
    left: -50%;
}.ex-newsletter-subscription .ex-help-formuxb:hover {
    background: transparent;
    border-color: rgb(215,200,217);
    color: #ffffff;
}.ex-newsletter-subscription .ex-help-formuxb:hover::after {
    opacity: 1;
    transform: scale(1);
}@keyframes expandLine {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes floatingItem {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

.ex-newsletter-subscription::after {
    top: -150px;
    filter: blur(100px);
    border-radius: 50%;
    height: 300px;
    opacity: 0.1;
    position: absolute;
    right: -150px;
    width: 300px;
    content: "";
    animation: floatingItem 20s ease-in-out infinite;
    background: linear-gradient(
        45deg,
        rgb(215,200,217,0.5),
        rgb(181,164,185,0.5)
    );
}

@media (max-width: 992px) {.ex-newsletter-subscription p {
    font-size: 32px;
    max-width: 80%;
    transform: translateX(10%);
}.ex-newsletter-subscription .input_holder {
    max-width: 90%;
    transform: translateX(-10%);
}.ex-newsletter-subscription .ex-academy-cult::before {
    font-size: 8rem;
}
}

@media (max-width: 768px) {.ex-newsletter-subscription {
    padding: 4rem 1.5rem;
}.ex-newsletter-subscription p {
    font-size: calc(32px * 0.8);
    max-width: 100%;
    transform: none;
}.ex-newsletter-subscription .input_holder {
    grid-template-columns: 1fr;
    gap: 1rem;
    transform: none;
    max-width: 100%;
}.ex-newsletter-subscription .ex-expand-knowledge {
    border: 2px solid #000000;
    padding: 1.2rem;
}.ex-newsletter-subscription .ex-help-formuxb {
    padding: 1.2rem;
}.ex-newsletter-subscription .ex-academy-cult::before {
    font-size: 5rem;
}
}

@media (max-width: 576px) {.ex-newsletter-subscription {
    margin: 4rem 0;
    padding: 3rem 1rem;
}.ex-newsletter-subscription p {
    margin-bottom: 3rem;
    font-size: 20px;
}.ex-newsletter-subscription p::after {
    width: 60px;
    height: 3px;
}.ex-newsletter-subscription .ex-academy-cult::before {
    font-size: 3.5rem;
}.ex-newsletter-subscription .ex-expand-knowledge,
    .ex-newsletter-subscription .ex-help-formuxb {
    padding: 1rem;
}}.ex-program-foot {
    z-index: 1;
    position: relative;
    padding: 5rem 0 3rem;
    color: #ffffff;
}.ex-program-foot::before {
    z-index: -1;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgb(215,200,217,0.5) 100%);
    height: 100%;
    backdrop-filter: blur(8px);
    top: 0;
    width: 100%;
    left: 0;
}.ex-program-foot .container {
    position: relative;
    grid-template-columns: 1.5fr 2fr;
    display: grid;
    gap: 3rem;
}.ex-program-foot .company_holder {
    animation: borderPulse 4s infinite alternate;
    padding-left: 2rem;
    position: relative;
    border-left: 2px solid rgb(215,200,217);
}@keyframes borderPulse {
    0% {
        border-left-color: rgb(215,200,217);
    }
    50% {
        border-left-color: rgb(181,164,185);
    }
    100% {
        border-left-color: rgb(215,200,217);
    }
}

.ex-program-foot .company_holder h3 {
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    -webkit-background-clip: text !important;
    font-size: calc(37px * 1.2);
    background: linear-gradient(to right, #ffffff, rgb(181,164,185));
    margin-bottom: 1.5rem;
}.ex-program-foot .ex-exam-prep {
    line-height: 1.6;
    color: #ffffff;
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 12px;
}.ex-program-foot .ex-skill-test {
    justify-content: flex-end;
    display: flex;
}.ex-program-foot .ex-top-head {
    display: flex;
    gap: 4rem;
}.ex-program-foot .ex-site-start {
    position: relative;
}.ex-program-foot .ex-site-start::before {
    border-left: 1px solid rgb(215,200,217);
    content: "";
    top: -10px;
    opacity: 0.4;
    position: absolute;
    border-top: 1px solid rgb(215,200,217);
    left: -20px;
    height: 40px;
    width: 40px;
}.ex-program-foot .ex-site-start::after {
    width: 40px;
    right: -20px;
    bottom: -10px;
    position: absolute;
    content: "";
    border-bottom: 1px solid rgb(215,200,217);
    height: 40px;
    border-right: 1px solid rgb(215,200,217);
    opacity: 0.4;
}.ex-program-foot .ex-site-start h5 {
    letter-spacing: 1px;
    font-weight: 600;
    color: rgb(181,164,185);
    font-size: 21px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}.ex-program-foot .ex-site-start .ex-top-head {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}.ex-program-foot .ex-site-start .ex-top-head a {
    padding-left: 1rem;
    text-decoration: none;
    opacity: 0.8;
    font-size: 12px;
    position: relative;
    transition: all 0.3s ease;
    color: #ffffff;
}.ex-program-foot .ex-site-start .ex-top-head a::before {
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translateY(-50%);
    background-color: rgb(215,200,217);
    left: 0;
    width: 5px;
    top: 50%;
    position: absolute;
    content: "";
    height: 5px;
}.ex-program-foot .ex-site-start .ex-top-head a:hover {
    color: rgb(215,200,217);
    transform: translateX(5px);
    opacity: 1;
}.ex-program-foot .ex-site-start .ex-top-head a:hover::before {
    width: 7px;
    background-color: rgb(181,164,185);
    height: 7px;
}.ex-footer-classes {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
}.ex-footer-classes::before {
    width: 100%;
    left: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(215,200,217), transparent);
    content: "";
    position: absolute;
    opacity: 0.5;
    top: 0;
}.ex-footer-classes .container {
    align-items: center;
    justify-content: center;
    display: flex;
}.ex-footer-classes .ex-leaderboard {
    opacity: 0.7;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}

@media screen and (max-width: 992px) {.ex-program-foot .container {
    grid-template-columns: 1fr;
    gap: 2rem;
}.ex-program-foot .company_holder {
    padding-left: 1rem;
    margin-bottom: 2rem;
}.ex-program-foot .ex-skill-test {
    justify-content: flex-start;
}.ex-program-foot .ex-top-head {
    gap: 2rem;
}
}

@media screen and (max-width: 768px) {.ex-program-foot {
    padding: 3rem 0 2rem;
}.ex-program-foot .ex-top-head {
    gap: 2rem;
    flex-direction: column;
}.ex-program-foot .ex-site-start::before,
    .ex-program-foot .ex-site-start::after {
    display: none;
}.ex-program-foot .ex-site-start {
    margin-bottom: 1.5rem;
}.ex-footer-classes {
    padding: 1rem 0;
}
}

@media screen and (max-width: 576px) {.ex-program-foot .company_holder h3 {
    font-size: 37px;
}.ex-program-foot .ex-site-start h5 {
    font-size: calc(18px * 1.1);
}.ex-program-foot .ex-site-start .ex-top-head a {
    font-size: calc(12px * 0.9);
}}.ex-gratCard {
    isolation: isolate;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(240,231,242) 0%, rgb(181,164,185,0.5) 100%);
    position: relative;
}.ex-gratCard::before {
    z-index: -1;
    height: 100%;
    animation: patternShift 30s linear infinite;
    content: "";
    width: 100%;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(181,164,185,0.5) 0px,
        rgb(181,164,185,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    position: absolute;
    opacity: 0.15;
    top: 0;
}.ex-gratCard::after {
    filter: blur(80px);
    background: rgb(215,200,217,0.5);
    position: absolute;
    z-index: -1;
    right: -50px;
    bottom: -50px;
    width: 250px;
    opacity: 0.3;
    content: "";
    height: 250px;
}.ex-gratCard .container {
    transform-style: preserve-3d;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    perspective: 1000px;
    margin: 0 auto;
}.ex-gratCard h2 {
    font-size: 32px;
    animation: slideInTitle 0.8s ease-out forwards;
    font-family: Arial, sans-serif;
    transform: translateZ(20px);
    font-weight: 700;
    text-align: center;
    position: relative;
    margin-bottom: 2.5rem;
    line-height: 1.3;
    color: #000000;
}.ex-gratCard h2::after {
    content: "";
    bottom: -15px;
    background: linear-gradient(to right, rgb(215,200,217), rgb(181,164,185));
    animation: expandWidth 1s ease-out 0.8s forwards;
    transform: translateX(-50%);
    height: 4px;
    position: absolute;
    width: 100px;
    left: 50%;
}.ex-gratCard .ex-academy-cult {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08),
                0 30px 60px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(0, 0, 0, 0.02);
    background: #ffffff;
    border-radius: 10px;
    padding: 2.5rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: translateZ(10px) rotateX(2deg);
    position: relative;
}.ex-gratCard .ex-academy-cult::before {
    content: "";
    top: 0;
    position: absolute;
    height: 6px;
    animation: gradientShift 8s ease infinite;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(215,200,217), rgb(181,164,185));
}.ex-gratCard .ex-academy-cult ul {
    margin: 0;
    list-style: none;
    padding: 0;
}.ex-gratCard .ex-academy-cult li {
    padding: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
    position: relative;
}.ex-gratCard .ex-academy-cult span {
    color: #000000;
    text-align: center;
    display: block;
    font-size: calc(17px * 1.1);
    font-family: Arial, sans-serif;
    position: relative;
    line-height: 1.7;
}.ex-gratCard .ex-academy-cult:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1),
                0 35px 65px rgba(0, 0, 0, 0.07),
                0 0 0 1px rgba(0, 0, 0, 0.03);
    transform: translateZ(15px) rotateX(0deg);
}

@keyframes slideInTitle {
    from {
        transform: translateY(-30px) translateZ(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0) translateZ(20px);
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

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

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

@keyframes patternShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@media (max-width: 1024px) {.ex-gratCard {
    padding: 5rem 0;
}.ex-gratCard h2 {
    font-size: calc(32px * 0.9);
    margin-bottom: 2rem;
}.ex-gratCard .ex-academy-cult {
    padding: 2rem;
}
}

@media (max-width: 768px) {.ex-gratCard {
    padding: 4rem 0;
}.ex-gratCard h2 {
    font-size: calc(32px * 0.8);
    margin-bottom: 1.8rem;
}.ex-gratCard .ex-academy-cult {
    transform: translateZ(5px) rotateX(1deg);
    padding: 1.8rem;
}.ex-gratCard .ex-academy-cult span {
    font-size: 17px;
    line-height: 1.6;
}
}

@media (max-width: 576px) {.ex-gratCard {
    padding: 3rem 0;
}.ex-gratCard h2 {
    margin-bottom: 1.5rem;
    font-size: calc(32px * 0.7);
}.ex-gratCard h2::after {
    height: 3px;
    bottom: -10px;
}.ex-gratCard .ex-academy-cult {
    transform: translateZ(0) rotateX(0deg);
    padding: 1.5rem;
}.ex-gratCard .ex-academy-cult::before {
    height: 4px;
}.ex-gratCard .ex-academy-cult span {
    font-size: calc(17px * 0.95);
    line-height: 1.5;
}
}

@media (prefers-reduced-motion) {.ex-gratCard h2,
    .ex-gratCard h2::after,
    .ex-gratCard .ex-academy-cult,
    .ex-gratCard .ex-academy-cult::before,
    .ex-gratCard .ex-academy-cult li {
    transition: none;
    animation: none;
}.ex-gratCard .ex-academy-cult:hover {
    transform: none;
}.ex-gratCard::before {
    animation: none;
}}.ex-leadership-experience {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(240,231,242) 0%, rgb(181,164,185,0.5) 100%);
    perspective: 1000px;
    position: relative;
    padding: 5rem 0;
}.ex-leadership-experience::before {
    transform: translateZ(-10px);
    opacity: 0.15;
    position: absolute;
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(215,200,217,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(181,164,185,0.5) 0%, transparent 30%);
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 0;
}.ex-leadership-experience .container {
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    transform-style: preserve-3d;
    position: relative;
    padding: 0 2rem;
}.ex-leadership-experience .ex-rating-insights {
    padding: 3rem;
    grid-template-columns: 1fr;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(5px);
    transform-style: preserve-3d;
    transform: translateZ(20px);
    display: grid;
    gap: 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, rgb(255, 255, 255, 0.5) 100%);
}.ex-leadership-experience .ex-rating-insights:hover {
    transform: translateZ(30px) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}.ex-leadership-experience .ex-rating-insights > div {
    position: relative;
}.ex-leadership-experience .ex-rating-insights > div:first-child {
    transform: translateZ(10px);
    perspective: 800px;
}.ex-leadership-experience .ex-photo-cell {
    height: 300px;
    transform: rotateY(-3deg) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    position: relative;
    border: 3px solid #ffffff;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}.ex-leadership-experience .ex-photo-cell::after {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(to bottom right, 
                 rgba(255, 255, 255, 0.2) 0%, 
                 rgba(255, 255, 255, 0) 40%);
    z-index: 1;
}.ex-leadership-experience .ex-rating-insights:hover .ex-photo-cell {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}.ex-leadership-experience .name {
    font-weight: 700;
    color: #000000;
    font-size: 22px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
    position: relative;
    transform: translateZ(15px);
}.ex-leadership-experience .name::after {
    transform: scaleX(0.8);
    width: 60px;
    bottom: -10px;
    content: "";
    position: absolute;
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
    height: 3px;
    left: 0;
    background: linear-gradient(90deg, rgb(215,200,217) 0%, rgb(181,164,185) 100%);
}.ex-leadership-experience .ex-rating-insights:hover .name::after {
    transform: scaleX(1);
}.ex-leadership-experience .ex-rating-insights > div:nth-child(2) > div {
    font-size: calc(18px - 0.1rem);
    color: rgb(181,164,185);
    position: relative;
    transform: translateZ(5px);
    font-weight: 600;
    margin-top: 0.75rem;
}.ex-leadership-experience .ex-career-card {
    color: #000000;
    font-family: Arial, sans-serif;
    transition: opacity 0.3s ease;
    font-size: 18px;
    position: relative;
    opacity: 0.9;
    line-height: 1.7;
    transform: translateZ(5px);
}.ex-leadership-experience .ex-rating-insights:hover .ex-career-card {
    opacity: 1;
}.ex-leadership-experience .ex-career-card::before {
    left: -1.5rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: rgb(181,164,185,0.5);
    z-index: -1;
    font-family: Georgia, serif;
    content: "";
    position: absolute;
    top: -2rem;
    opacity: 0.2;
    font-size: 6rem;
}.ex-leadership-experience .ex-rating-insights:hover .ex-career-card::before {
    transform: scale(1.1) translateZ(20px);
}

@media (min-width: 768px) {.ex-leadership-experience {
    padding: 8rem 0;
}.ex-leadership-experience .ex-rating-insights {
    grid-template-columns: 1fr 2fr;
    gap: 2rem 3rem;
    grid-template-rows: auto auto;
}.ex-leadership-experience .ex-rating-insights > div:first-child {
    grid-row: span 2;
}.ex-leadership-experience .ex-rating-insights > div:nth-child(3) {
    grid-column: 2;
}.ex-leadership-experience .ex-photo-cell {
    height: 100%;
    transform: rotateY(-5deg) translateZ(20px);
    min-height: 400px;
}.ex-leadership-experience .ex-career-card {
    font-size: calc(18px + 0.05rem);
}.ex-leadership-experience .name {
    font-size: calc(22px + 0.1rem);
}
}

@media (min-width: 1024px) {.ex-leadership-experience .ex-rating-insights {
    padding: 4rem;
    grid-template-columns: 1.2fr 2fr;
}.ex-leadership-experience .ex-photo-cell {
    min-height: 450px;
}.ex-leadership-experience .name::after {
    width: 80px;
}.ex-leadership-experience .container {
    padding: 0 4rem;
}
}

@media (min-width: 1200px) {.ex-leadership-experience .ex-rating-insights {
    grid-template-columns: 1fr 1.8fr;
    gap: 3rem 4rem;
}.ex-leadership-experience .ex-photo-cell {
    min-height: 500px;
}.ex-leadership-experience .container {
    padding: 0 2rem;
}
}

@media (max-width: 767px) {.ex-leadership-experience {
    padding: 4rem 0;
}.ex-leadership-experience .ex-rating-insights {
    padding: 2rem;
}.ex-leadership-experience .ex-photo-cell {
    height: 250px;
    margin-bottom: 1rem;
}.ex-leadership-experience .ex-career-card {
    font-size: calc(18px - 0.05rem);
}.ex-leadership-experience .name {
    margin-top: 0.5rem;
}
}

@media (hover: hover) {.ex-leadership-experience .ex-rating-insights {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}.ex-leadership-experience .ex-rating-insights:hover {
    transform: translateZ(30px) translateY(-5px);
}
}

@media (hover: none) {.ex-leadership-experience .ex-rating-insights {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateZ(0) !important;
}.ex-leadership-experience .ex-photo-cell {
    transform: none !important;
}}.ex-secure-habitat {
    border: 2px solid rgb(215,200,217);
    box-shadow: 0 0 15px rgb(215,200,217,0.5);
    font-family: Arial, sans-serif;
    overflow: hidden;
    color: #ffffff;
    width: 100%;
    height: auto;
    padding: 40px;
}.ex-secure-habitat h1 {
    text-transform: uppercase;
    text-shadow: 0 0 10px rgb(215,200,217,0.5);
    font-size: 45px;
    border-bottom: 2px solid rgb(215,200,217);
    color: rgb(215,200,217);
    padding-bottom: 10px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 20px;
}.ex-secure-habitat h2 {
    font-size: 32px;
    text-shadow: 0 0 10px rgb(181,164,185,0.5);
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(181,164,185);
    color: rgb(181,164,185);
    margin-top: 25px;
    margin-bottom: 15px;
}.ex-secure-habitat h3, .ex-secure-habitat h4, .ex-secure-habitat h5, .ex-secure-habitat h6 {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    text-shadow: 0 0 5px rgb(215,200,217,0.5);
    color: rgb(215,200,217);
}.ex-secure-habitat li {
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #000000;
    font-weight: 400;
    font-size: 14px;
}.ex-secure-habitat li::before {
    top: 0;
    left: -15px;
    color: rgb(215,200,217);
    position: absolute;
    content: "▸";
}.ex-secure-habitat section {
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(215,200,217,0.5);
    padding: 20px;
    margin-top: 20px;
}.ex-secure-habitat p, .ex-secure-habitat span, .ex-secure-habitat div {
    text-shadow: 0 0 5px rgb(215,200,217,0.5);
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 14px;
    color: #000000;
    font-weight: 300;
}

@media only screen and (max-width: 800px) {.ex-secure-habitat {
    padding: 20px 10px;
}.ex-secure-habitat h1 {
    font-size: calc(18px * 0.8);
}.ex-secure-habitat h2 {
    font-size: calc(18px * 0.8);
}.ex-secure-habitat h3, .ex-secure-habitat h4, .ex-secure-habitat h5, .ex-secure-habitat h6 {
    font-size: calc(18px * 0.8);
}.ex-secure-habitat p, .ex-secure-habitat span, .ex-secure-habitat div {
    font-size: calc(14px * 0.9);
}}.ex-who-we-are {
    overflow: hidden;
    background: rgb(240,231,242);
    padding: 100px 0;
    position: relative;
}.ex-who-we-are::before {
    background: linear-gradient(120deg, rgb(215,200,217,0.5) 0%, transparent 30%),
                linear-gradient(240deg, rgb(181,164,185,0.5) 0%, transparent 30%);
    left: 0;
    position: absolute;
    height: 100%;
    content: "";
    z-index: 1;
    width: 100%;
    top: 0;
}.ex-who-we-are .container {
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
}.ex-who-we-are h2 {
    color: #000000;
    margin-bottom: 60px;
    font-size: 33px;
    text-align: center;
    font-weight: 700;
    position: relative;
    letter-spacing: 1px;
}.ex-who-we-are h2::after {
    bottom: -15px;
    background: linear-gradient(90deg, rgb(215,200,217), rgb(181,164,185));
    height: 3px;
    transform: translateX(-50%);
    position: absolute;
    content: "";
    width: 100px;
    left: 50%;
    border-radius: 10px;
}.ex-who-we-are .ex-mission-why {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}.ex-who-we-are .ex-pro-training {
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid rgb(215,200,217);
}.ex-who-we-are .ex-pro-training:nth-child(2) {
    border-left-color: rgb(181,164,185);
}.ex-who-we-are .ex-pro-training::before {
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    height: 100%;
    top: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    width: 100%;
    position: absolute;
    left: 0;
    content: "";
}.ex-who-we-are .ex-pro-training::after {
    top: 30px;
    height: 20px;
    border-radius: 50%;
    content: "";
    right: 30px;
    position: absolute;
    animation: pulse 4s infinite;
    width: 20px;
    border: 2px solid rgb(215,200,217,0.5);
}.ex-who-we-are .ex-pro-training:nth-child(2)::after {
    border-color: rgb(181,164,185,0.5);
    animation-delay: 2s;
}@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

.ex-who-we-are .ex-pro-training:hover {
    background: linear-gradient(to right, rgba(rgb(215,200,217,0.5), 0.03), rgba(255, 255, 255, 0.05));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}.ex-who-we-are .ex-pro-training h3 {
    color: rgb(215,200,217);
    position: relative;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    display: inline-block;
}.ex-who-we-are .ex-pro-training:nth-child(2) h3 {
    color: rgb(181,164,185);
}.ex-who-we-are .ex-pro-training h3::before {
    content: "";
    bottom: -8px;
    height: 2px;
    background: currentColor;
    left: 0;
    position: absolute;
    width: 30px;
    transition: width 0.3s ease;
}.ex-who-we-are .ex-pro-training:hover h3::before {
    width: 100%;
}.ex-who-we-are .ex-pro-training p {
    transition: padding-left 0.3s ease;
    padding-left: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
    position: relative;
}.ex-who-we-are .ex-pro-training:first-child {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s forwards 0.2s;
}.ex-who-we-are .ex-pro-training:last-child {
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.6s forwards 0.5s;
}@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.ex-who-we-are::after {
    left: 0;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 1px, transparent 1px);
    top: 0;
    z-index: 1;
    opacity: 0.03;
    content: "";
    background-size: 50px 50px;
    height: 100%;
    width: 100%;
    position: absolute;
}.ex-who-we-are .container::before,
.ex-who-we-are .container::after {
    opacity: 0.2;
    border-radius: 50%;
    width: 200px;
    content: "";
    z-index: -1;
    height: 200px;
    position: absolute;
    background: radial-gradient(circle, rgb(215,200,217,0.5) 0%, transparent 70%);
}.ex-who-we-are .container::before {
    top: -100px;
    right: -100px;
}.ex-who-we-are .container::after {
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgb(181,164,185,0.5) 0%, transparent 70%);
}

@media (max-width: 992px) {.ex-who-we-are {
    padding: 80px 0;
}.ex-who-we-are h2 {
    margin-bottom: 50px;
}.ex-who-we-are .ex-pro-training {
    padding: 30px;
}
}

@media (max-width: 768px) {.ex-who-we-are {
    padding: 60px 0;
}.ex-who-we-are h2 {
    font-size: calc(33px * 0.9);
    margin-bottom: 40px;
}.ex-who-we-are .ex-pro-training {
    padding: 25px;
}.ex-who-we-are .ex-pro-training h3 {
    margin-bottom: 15px;
    font-size: calc(22px * 0.9);
}
}

@media (max-width: 576px) {.ex-who-we-are {
    padding: 40px 0;
}.ex-who-we-are h2 {
    font-size: calc(33px * 0.8);
    margin-bottom: 30px;
}.ex-who-we-are .ex-pro-training {
    padding: 20px;
    border-left-width: 3px;
}.ex-who-we-are .ex-pro-training::after {
    top: 20px;
    width: 15px;
    height: 15px;
    right: 20px;
}.ex-who-we-are .ex-pro-training p {
    line-height: 1.6;
    font-size: calc(15px * 0.95);
}.ex-who-we-are .container::before,
    .ex-who-we-are .container::after {
    height: 150px;
    width: 150px;
}}.ex-client-comments {
    position: relative;
    background: linear-gradient(135deg, rgb(240,231,242) 0%, #ffffff 100%);
    padding: 7rem 2rem;
    overflow: hidden;
}.ex-client-comments::before {
    height: 100%;
    z-index: 0;
    opacity: 0.07;
    background: 
        linear-gradient(45deg, rgb(215,200,217,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(215,200,217,0.5) 25%, transparent 25%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: 60px 60px;
}.ex-client-comments .ex-academy-cult {
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}.ex-client-comments h4 {
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
    color: #000000;
    position: relative;
    font-size: 35px;
    letter-spacing: 1px;
}.ex-client-comments h4::before {
    background: rgb(215,200,217);
    bottom: -15px;
    left: 50%;
    height: 3px;
    position: absolute;
    transform: translateX(-50%);
    width: 80px;
    content: "";
}.ex-client-comments h4::after {
    transform: translateX(-50%);
    background: rgb(181,164,185);
    width: 40px;
    height: 3px;
    content: "";
    left: 50%;
    position: absolute;
    bottom: -22px;
}.ex-client-comments .ex-review-quotes {
    display: flex;
    padding-left: 50px;
    position: relative;
    flex-direction: column;
}.ex-client-comments .ex-review-quotes::before {
    top: 0;
    position: absolute;
    width: 2px;
    z-index: 1;
    background: linear-gradient(to bottom, rgb(215,200,217), rgb(181,164,185));
    bottom: 0;
    left: 24px;
    content: "";
}.ex-client-comments .ex-review-quotes::after {
    position: absolute;
    background: rgb(181,164,185);
    left: 20px;
    bottom: 0;
    height: 10px;
    z-index: 2;
    width: 10px;
    border-radius: 50%;
    content: "";
}.ex-client-comments .ex-rating-insights {
    transform: translateX(0);
    border-radius: 28px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    position: relative;
    margin-bottom: 4rem;
    padding: 2rem;
    width: 100%;
}.ex-client-comments .ex-rating-insights:last-child {
    margin-bottom: 0;
}.ex-client-comments .ex-rating-insights::before {
    width: 16px;
    box-shadow: 0 0 0 3px rgb(215,200,217,0.5);
    z-index: 2;
    left: -65px;
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    position: absolute;
    top: 20px;
    background: rgb(215,200,217);
    height: 16px;
    content: "";
    border-radius: 50%;
}.ex-client-comments .ex-rating-insights::after {
    content: "";
    left: -15px;
    background: rgb(215,200,217,0.5);
    width: 20px;
    position: absolute;
    top: 24px;
    height: 2px;
    z-index: 1;
}.ex-client-comments .ex-rating-insights:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
}.ex-client-comments .ex-rating-insights:hover::before {
    transform: scale(1.2);
    background: rgb(181,164,185);
}.ex-client-comments .ex-rating-insights:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, rgb(240,231,242) 100%);
    align-self: flex-end;
    border-left: 3px solid rgb(215,200,217);
}.ex-client-comments .ex-rating-insights:nth-child(odd) {
    border-right: 3px solid rgb(181,164,185);
    background: linear-gradient(135deg, rgb(240,231,242) 0%, #ffffff 100%);
    align-self: flex-start;
}.ex-client-comments .ex-rating-insights .ex-photo-cell {
    transition: all 0.3s ease;
    margin-right: 20px;
    border-radius: 50%;
    height: 70px;
    width: 70px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    float: left;
    border: 3px solid #ffffff;
}.ex-client-comments .ex-rating-insights:hover .ex-photo-cell {
    transform: scale(1.05);
    border-color: rgb(215,200,217,0.5);
}.ex-client-comments .ex-rating-insights:nth-child(even) .ex-photo-cell {
    margin-left: 20px;
    float: right;
    margin-right: 0;
}.ex-client-comments .ex-rating-insights span {
    margin-bottom: 0.5rem;
    display: block;
    color: #000000;
    padding-top: 10px;
    font-weight: 600;
    font-size: 22px;
}.ex-client-comments .ex-rating-insights:nth-child(even) span {
    text-align: right;
}.ex-client-comments .ex-rating-insights p {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-top: 1rem;
    clear: both;
}.ex-client-comments .ex-rating-insights:nth-child(even) p {
    text-align: right;
}

@media (max-width: 992px) {.ex-client-comments {
    padding: 5rem 1.5rem;
}.ex-client-comments h4 {
    font-size: calc(35px * 0.9);
}.ex-client-comments .ex-rating-insights {
    padding: 1.5rem;
}
}

@media (max-width: 768px) {.ex-client-comments {
    padding: 4rem 1rem;
}.ex-client-comments .ex-review-quotes {
    padding-left: 30px;
}.ex-client-comments .ex-review-quotes::before {
    left: 14px;
}.ex-client-comments .ex-review-quotes::after {
    left: 10px;
}.ex-client-comments .ex-rating-insights::before {
    height: 14px;
    left: -45px;
    width: 14px;
}.ex-client-comments h4 {
    margin-bottom: 3rem;
    font-size: calc(35px * 0.8);
}.ex-client-comments .ex-rating-insights:nth-child(even),
    .ex-client-comments .ex-rating-insights:nth-child(odd) {
    width: 100%;
    align-self: auto;
}.ex-client-comments .ex-rating-insights .ex-photo-cell {
    margin: 0 auto 1rem;
    float: none;
}.ex-client-comments .ex-rating-insights:nth-child(even) .ex-photo-cell {
    float: none;
    margin: 0 auto 1rem;
}.ex-client-comments .ex-rating-insights span,
    .ex-client-comments .ex-rating-insights:nth-child(even) span {
    text-align: center;
    padding-top: 0;
}.ex-client-comments .ex-rating-insights p,
    .ex-client-comments .ex-rating-insights:nth-child(even) p {
    text-align: center;
}}.ex-study-process {
    overflow: hidden;
    perspective: 1000px;
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgb(240,231,242) 0%, #ffffff 100%);
}.ex-study-process::before {
    position: absolute;
    width: 100%;
    pointer-events: none;
    background: 
        linear-gradient(45deg, transparent 49.5%, rgb(181,164,185,0.5) 49.5%, rgb(181,164,185,0.5) 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgb(215,200,217,0.5) 49.5%, rgb(215,200,217,0.5) 50.5%, transparent 50.5%);
    height: 100%;
    background-size: 60px 60px;
    opacity: 0.08;
    top: 0;
    content: "";
    transform: rotateX(10deg) translateZ(-20px);
    left: 0;
}.ex-study-process::after {
    filter: blur(20px);
    opacity: 0.15;
    height: 200px;
    right: -50px;
    width: 200px;
    transform: rotate(15deg) translateZ(50px);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    position: absolute;
    background: rgb(215,200,217,0.5);
    top: -50px;
    content: "";
    animation: rotate-shape 30s infinite linear;
}.ex-study-process .container {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
}.ex-study-process .ex-academy-cult {
    transform: translateZ(0) rotateY(-2deg);
    border-left: 4px solid rgb(181,164,185);
    padding: 50px 60px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}.ex-study-process .ex-academy-cult:hover {
    transform: translateZ(10px) rotateY(0deg);
}.ex-study-process .ex-academy-cult::before {
    transition: transform 0.6s ease, opacity 0.6s ease;
    content: "";
    width: calc(100% + 40px);
    position: absolute;
    top: 20px;
    background: linear-gradient(90deg, transparent, rgb(215,200,217,0.5), transparent);
    opacity: 0;
    height: 1px;
    transform: translateY(-10px);
    left: -20px;
}.ex-study-process .ex-academy-cult:hover::before {
    opacity: 1;
    transform: translateY(0);
}.ex-study-process .ex-academy-cult::after {
    bottom: 20px;
    opacity: 0;
    right: -20px;
    transform: translateY(10px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    content: "";
    width: calc(100% + 40px);
    background: linear-gradient(90deg, transparent, rgb(181,164,185,0.5), transparent);
    height: 1px;
    position: absolute;
}.ex-study-process .ex-academy-cult:hover::after {
    transform: translateY(0);
    opacity: 1;
}.ex-study-process h3 {
    position: relative;
    font-size: calc(31px * 0.85);
    color: #000000;
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    margin-bottom: 25px;
    font-weight: 700;
}.ex-study-process .ex-academy-cult:hover h3 {
    transform: translateX(10px);
}.ex-study-process h3::after {
    background: linear-gradient(90deg, rgb(181,164,185), rgb(215,200,217,0.5));
    bottom: -10px;
    left: 0;
    content: "";
    transform: scaleX(0.7);
    transform-origin: left;
    height: 3px;
    width: 60px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
}.ex-study-process .ex-academy-cult:hover h3::after {
    transform: scaleX(1);
}.ex-study-process p {
    position: relative;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(0);
    font-size: 17px;
}.ex-study-process .ex-academy-cult:hover p {
    transform: translateY(5px);
}.ex-study-process p span {
    transform-origin: 50% 50%;
    position: relative;
    display: inline-block;
    transition: color 0.4s ease;
}.ex-study-process p span::before {
    transform-origin: left;
    height: 1px;
    opacity: 0.3;
    content: "";
    position: absolute;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    background: rgb(181,164,185,0.5);
}.ex-study-process .ex-academy-cult:hover p span::before {
    transform: scaleX(1);
}

@keyframes rotate-shape {
    0% {
        transform: rotate(0deg) translateZ(50px);
    }
    100% {
        transform: rotate(360deg) translateZ(50px);
    }
}

@media (max-width: 991px) {.ex-study-process {
    padding: 80px 0;
}.ex-study-process .ex-academy-cult {
    padding: 40px 30px;
    transform: translateZ(0) rotateY(-1deg);
}.ex-study-process h3 {
    font-size: calc(31px * 0.75);
    margin-bottom: 20px;
}
}

@media (max-width: 767px) {.ex-study-process {
    padding: 60px 0;
}.ex-study-process .ex-academy-cult {
    border-left-width: 3px;
    transform: translateZ(0) rotateY(0deg);
    padding: 30px 25px;
}.ex-study-process h3 {
    margin-bottom: 15px;
    font-size: calc(31px * 0.7);
}.ex-study-process p {
    line-height: 1.7;
    font-size: calc(17px * 0.95);
}.ex-study-process h3::after {
    width: 50px;
    height: 2px;
}
}

@media (max-width: 575px) {.ex-study-process {
    padding: 50px 0;
}.ex-study-process .ex-academy-cult {
    border-left-width: 2px;
    padding: 25px 20px;
}.ex-study-process h3 {
    margin-bottom: 15px;
    font-size: calc(31px * 0.65);
}.ex-study-process p {
    line-height: 1.6;
    font-size: calc(17px * 0.9);
}.ex-study-process h3::after {
    width: 40px;
}.ex-study-process::before {
    background-size: 40px 40px;
}}.ex-cookie-message-window {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgb(240,231,242);
    border-top: 2px solid rgb(215,200,217);
    z-index: 90;
}.ex-learn-consent {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}#ex-cookieNotification {
    display: none;
}#ex-cookieNotification:checked ~ .ex-cookie-message-window {
    visibility: hidden;
    opacity: 0;
}.ex-cookie-message-window h5 {
    margin-bottom: 6px;
    font-size: 22px;
}.ex-cookie-message-window p {
    font-size: 18px;
}.ex-consent-comply {
    margin-right: 10px;
    flex-shrink: 0;
}.ex-consent-comply svg, .ex-consent-comply svg path, .ex-consent-comply img {
    height: 100px;
    fill: rgb(215,200,217);
    width: 100px;
}.ex-consent-box {
    color: rgb(215,200,217);
    line-height: 35px;
    flex-shrink: 0;
    cursor: pointer;
    font-size: 24px;
    min-width: 120px;
    text-align: center;
    text-decoration: none;
    border-bottom: 2px solid rgb(215,200,217);
    white-space: nowrap;
    margin-left: 10px;
}.ex-cookie-message-window p a {
    color: rgb(215,200,217);
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {.ex-cookie-message-window {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.ex-consent-comply {
    display: none;
}.ex-learn-consent {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}.ex-cookie-message-window h5 {
    text-align: center;
}.ex-cookie-message-window p {
    text-align: center;
}.ex-cookie-alerts {
    margin-bottom: 20px;
}body .ex-wrap-structure .ex-consent-box {
    margin-bottom: 10px;
    margin-left: 0;
}}
.ex-wrap-structure .ex-cookie-message-window {
    border: none;
    box-shadow: rgb(215,200,217,0.5) 0px 0px 40px 39px;
    background: #ffffff;
}.ex-wrap-structure .ex-consent-box {
    color: #ffffff;
    padding: 10px;
    margin-left: 30px;
    background: rgb(215,200,217);
    font-size: 20px;
    border: none;
    font-weight: 400;
}.ex-wrap-structure .ex-consent-comply {
    width: 80px;
    background:rgb(215,200,217);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}.ex-wrap-structure .ex-consent-comply svg, .ex-wrap-structure .ex-consent-comply svg path, .ex-wrap-structure .ex-consent-comply img {
    fill:#000000;
    height: 40px;
    width: 40px;
}.ex-wrap-structure .ex-cookie-alerts h5, .ex-wrap-structure .ex-cookie-alerts p {
    color: #000000;
}
@media only screen and (max-width: 800px){.ex-wrap-structure .ex-consent-comply {
    margin: 0;
    margin-bottom: 14px;
}}.ex-bundle-plan {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 4rem 0;
}.ex-bundle-plan::before {
    right: 0;
    content: "";
    bottom: 0;
    top: 0;
    position: absolute;
    left: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(34, 30, 80, 0.95), rgba(19, 31, 60, 0.85));
}.ex-bundle-plan .container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1.5rem;
    z-index: 2;
}.ex-bundle-plan .ex-fee-plan {
    position: relative;
}.ex-bundle-plan h2 {
    font-size: 28px;
    background: linear-gradient(90deg, rgb(215,200,217), rgb(181,164,185));
    text-align: center;
    color: transparent;
    margin-bottom: 1.5rem;
    -webkit-background-clip: text !important;
    transform: translateY(10px);
    font-weight: 700;
    background-clip: text !important;
    animation: fadeIn 0.8s ease-out forwards;
}.ex-bundle-plan .ex-annual-plan {
    text-align: center;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    padding: 0 1rem;
    position: relative;
    transform: translateY(15px);
    color: #ffffff;
    margin: 0 auto 3rem;
    max-width: 800px;
    opacity: 0;
    line-height: 1.6;
    font-size: calc(14px * 1.1);
}.ex-bundle-plan .ex-price-choices {
    display: grid;
    padding: 0;
    perspective: 1000px;
    margin: 0;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    list-style: none;
}.ex-bundle-plan .ex-price-choices li {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}.ex-bundle-plan .ex-price-choices li:nth-child(1) {
    animation-delay: 0.2s;
}.ex-bundle-plan .ex-price-choices li:nth-child(2) {
    animation-delay: 0.3s;
}.ex-bundle-plan .ex-price-choices li:nth-child(3) {
    animation-delay: 0.4s;
}.ex-bundle-plan .ex-price-choices li:nth-child(4) {
    animation-delay: 0.5s;
}.ex-bundle-plan .ex-pricing-levels {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    height: 100%;
    display: block;
}.ex-bundle-plan .ex-pricing-levels:hover {
    transform: translateY(-12px) scale(1.02);
}.ex-bundle-plan .ex-plan-options {
    position: relative;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
}.ex-bundle-plan .ex-plan-options::before {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    top: 0;
    width: 100%;
    transform-origin: left;
    left: 0;
    height: 5px;
    transform: scaleX(0);
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(215,200,217), rgb(181,164,185));
}.ex-bundle-plan .ex-pricing-levels:hover .ex-plan-options::before {
    transform: scaleX(1);
}.ex-bundle-plan .ex-cert-cost {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    height: 100%;
    color: #ffffff;
}.ex-bundle-plan .ex-cert-cost h4 {
    color: #ffffff;
    font-weight: 600;
    margin-top: 0;
    position: relative;
    padding-bottom: 0.75rem;
    font-size: calc(24px * 1.2);
    margin-bottom: 1.5rem;
}.ex-bundle-plan .ex-cert-cost h4::after {
    width: 50px;
    position: absolute;
    height: 2px;
    background: rgb(181,164,185);
    bottom: 0;
    left: 0;
    content: "";
}.ex-bundle-plan .ex-cert-cost p {
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.6;
    flex-grow: 1;
    word-wrap: break-word;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    word-break: break-word;
    margin-bottom: 2rem;
}.ex-bundle-plan .ex-cert-fees {
    background: linear-gradient(120deg, rgb(215,200,217), rgb(181,164,185));
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: calc(14px * 1.3);
    font-weight: 700;
    border-radius: 10px;
    justify-content: center;
    margin-top: auto;
    align-items: center;
    display: inline-flex;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 1.5rem;
}.ex-bundle-plan .ex-pricing-levels:hover .ex-cert-fees {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@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) {.ex-bundle-plan .ex-price-choices {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}.ex-bundle-plan .ex-cert-cost {
    padding: 2rem 1.5rem;
}
}

@media (max-width: 991px) {.ex-bundle-plan {
    padding: 3.5rem 0;
}.ex-bundle-plan h2 {
    font-size: calc(28px * 0.9);
}.ex-bundle-plan .ex-annual-plan {
    margin-bottom: 2.5rem;
    font-size: 14px;
}
}

@media (max-width: 768px) {.ex-bundle-plan {
    padding: 3rem 0;
}.ex-bundle-plan h2 {
    font-size: calc(28px * 0.85);
}.ex-bundle-plan .ex-price-choices {
    max-width: 480px;
    grid-template-columns: 1fr;
    margin: 0 auto;
}.ex-bundle-plan .ex-cert-cost h4 {
    font-size: 24px;
}.ex-bundle-plan .ex-cert-fees {
    padding: 0.6rem 1.2rem;
    font-size: calc(14px * 1.2);
}
}

@media (max-width: 480px) {.ex-bundle-plan {
    padding: 2.5rem 0;
}.ex-bundle-plan h2 {
    font-size: calc(28px * 0.8);
}.ex-bundle-plan .ex-annual-plan {
    margin-bottom: 2rem;
    font-size: calc(14px * 0.95);
}.ex-bundle-plan .ex-cert-cost {
    padding: 1.75rem 1.25rem;
}.ex-bundle-plan .ex-cert-cost p {
    margin-bottom: 1.5rem;
    font-size: calc(14px * 0.95);
}}.ex-experience-trial {
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(215,200,217) 0%, rgb(181,164,185) 100%);
    perspective: 1000px;
    padding: 4rem 0;
}.ex-experience-trial::before {
    height: 100%;
    transform: translateZ(-10px);
    position: absolute;
    content: "";
    opacity: 0.1;
    left: 0;
    z-index: 1;
    width: 100%;
    top: 0;
    background: repeating-linear-gradient(
        45deg,
        rgb(215,200,217,0.5),
        rgb(215,200,217,0.5) 10px,
        transparent 10px,
        transparent 20px
    );
}.ex-experience-trial::after {
    opacity: 0.15;
    right: -50%;
    content: "";
    position: absolute;
    width: 100%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgb(255, 255, 255, 0.5) 0%,
        transparent 70%
    );
    z-index: 1;
    transform: translateZ(-5px) rotate(45deg);
    animation: glow 8s infinite alternate ease-in-out;
    top: -50%;
}.ex-experience-trial .container {
    z-index: 2;
    justify-content: center;
    position: relative;
    transform: translateZ(20px);
    max-width: 1140px;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    align-items: center;
    margin: 0 auto;
}.ex-experience-trial h6 {
    transform: translateZ(10px);
    opacity: 0;
    color: #ffffff;
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    max-width: 800px;
    animation: fadeInUp 0.8s forwards 0.2s ease-out;
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    font-family: Arial, sans-serif;
    font-size: calc(21px * 1.2);
    text-align: center;
}.ex-experience-trial div:nth-child(2) {
    display: flex;
    transform: translateZ(30px);
    justify-content: center;
}.ex-experience-trial span {
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
}.ex-experience-trial .ex-help-formuxb {
    opacity: 0;
    overflow: hidden;
    padding: 0.8rem 2.5rem;
    display: inline-flex;
    color: rgb(215,200,217);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: #ffffff;
    transform: translateZ(0);
    text-decoration: none;
    align-items: center;
    border-radius: 10px;
    animation: fadeInUp 0.8s forwards 0.4s ease-out;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.5);
    font-size: 16px;
}.ex-experience-trial .ex-help-formuxb::before {
    transition: left 0.7s ease;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    height: 100%;
    left: -100%;
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
}.ex-experience-trial .ex-help-formuxb::after {
    bottom: 0;
    position: absolute;
    transform: scaleX(0);
    background: linear-gradient(
        90deg,
        rgb(215,200,217),
        rgb(181,164,185),
        rgb(215,200,217)
    );
    height: 3px;
    transition: transform 0.4s ease-out;
    content: "";
    transform-origin: right;
    width: 100%;
    left: 0;
}.ex-experience-trial .ex-help-formuxb span {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}.ex-experience-trial .ex-help-formuxb:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 15px 25px -8px rgba(0, 0, 0, 0.5);
    background: #ffffff;
}.ex-experience-trial .ex-help-formuxb:hover::before {
    left: 100%;
}.ex-experience-trial .ex-help-formuxb:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}.ex-experience-trial .ex-help-formuxb:hover span {
    transform: translateY(0) scale(1.05);
}.ex-experience-trial .ex-help-formuxb:active {
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
    transition: all 0.1s;
    transform: translateY(0) translateZ(0);
}

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

@keyframes glow {
    0%, 100% {
        opacity: 0.15;
        transform: translateZ(-5px) rotate(45deg) scale(1);
    }
    50% {
        opacity: 0.25;
        transform: translateZ(-5px) rotate(45deg) scale(1.1);
    }
}

@media (max-width: 991px) {.ex-experience-trial {
    padding: 3.5rem 0;
}.ex-experience-trial h6 {
    font-size: calc(21px * 1.1);
    margin-bottom: 2rem;
}.ex-experience-trial .ex-help-formuxb {
    padding: 0.7rem 2.2rem;
}
}

@media (max-width: 767px) {.ex-experience-trial {
    padding: 3rem 0;
}.ex-experience-trial h6 {
    margin-bottom: 1.8rem;
    max-width: 90%;
    font-size: 21px;
}.ex-experience-trial .ex-help-formuxb {
    padding: 0.7rem 2rem;
}
}

@media (max-width: 575px) {.ex-experience-trial {
    padding: 2.5rem 0;
}.ex-experience-trial h6 {
    max-width: 100%;
    margin-bottom: 1.5rem;
    font-size: calc(21px * 0.9);
}.ex-experience-trial .ex-help-formuxb {
    padding: 0.6rem 1.8rem;
    font-size: calc(16px * 0.95);
}
}

@media (max-width: 380px) {.ex-experience-trial {
    padding: 2rem 0;
}.ex-experience-trial h6 {
    font-size: calc(21px * 0.85);
    margin-bottom: 1.2rem;
}.ex-experience-trial .ex-help-formuxb {
    padding: 0.5rem 1.5rem;
    font-size: calc(16px * 0.9);
}}.ex-educational-yield {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(240,231,242) 0%, rgba(247, 248, 255, 0.95) 100%);
    position: relative;
    padding: 8rem 0;
}.ex-educational-yield::before {
    right: -5%;
    position: absolute;
    content: "";
    width: 300px;
    z-index: 0;
    height: 300px;
    transform: rotate(-15deg);
    opacity: 0.6;
    background: linear-gradient(225deg, rgb(215,200,217,0.5) 0%, transparent 70%);
    filter: blur(60px);
    top: -5%;
}.ex-educational-yield::after {
    left: -50px;
    width: 200px;
    position: absolute;
    background: linear-gradient(45deg, rgb(181,164,185,0.5) 0%, transparent 70%);
    z-index: 0;
    opacity: 0.5;
    filter: blur(50px);
    content: "";
    bottom: -50px;
    transform: rotate(30deg);
    height: 200px;
}.ex-educational-yield .container {
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}.ex-educational-yield .ex-academy-cult {
    gap: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: perspective(1200px) rotateY(-2deg);
}.ex-educational-yield .ex-message-box {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 
                0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transform: perspective(1000px) translateZ(20px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(255, 255, 255, 0.85);
    flex: 1;
    backdrop-filter: blur(8px);
    padding: 2.5rem;
    position: relative;
}.ex-educational-yield .ex-message-box:hover {
    transform: perspective(1000px) translateZ(40px) translateY(-5px);
}.ex-educational-yield .ex-message-box::before {
    content: "";
    transform: scaleY(0.94);
    height: 100%;
    position: absolute;
    width: 6px;
    top: 0;
    background: linear-gradient(to bottom, rgb(215,200,217), rgb(181,164,185));
    left: 0;
}.ex-educational-yield h4 {
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    position: relative;
    line-height: 1.4;
    font-size: calc(18px * 1.1);
}.ex-educational-yield h4::after {
    transform-origin: left;
    left: 0;
    bottom: -12px;
    width: 80px;
    height: 3px;
    background: rgb(215,200,217);
    position: absolute;
    animation: expand 3s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
    content: "";
}@keyframes expand {
    0% { transform: scaleX(0.7); }
    100% { transform: scaleX(1); }
}

.ex-educational-yield .ex-message-box > div {
    gap: 1.5rem;
    margin-top: 1rem;
    display: flex;
}.ex-educational-yield ul {
    margin: 0;
    flex: 1;
    padding: 0;
    list-style: none;
}.ex-educational-yield li {
    position: relative;
    transform: translateX(0);
    transition: transform 0.4s ease;
    margin-bottom: 1.5rem;
}.ex-educational-yield li:hover {
    transform: translateX(5px);
}.ex-educational-yield li p {
    margin: 0;
    line-height: 1.6;
    align-items: flex-start;
    color: #000000;
    display: flex;
    gap: 15px;
    font-size: 14px;
}.ex-educational-yield li p span:last-child {
    flex: 1;
}.ex-educational-yield svg {
    margin-top: 3px;
    transform: translateY(-2px);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}.ex-educational-yield li:hover svg {
    transform: translateY(-2px) scale(1.1);
}.ex-educational-yield svg path {
    fill: rgb(215,200,217);
    transition: fill 0.3s ease;
}.ex-educational-yield li:hover svg path {
    fill: rgb(181,164,185);
}.ex-educational-yield .ex-photo-cell {
    object-fit: cover;
    clip-path: polygon(0 0, 100% 5%, 95% 100%, 0% 95%);
    flex: 0 0 45%;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    border-radius: 4px;
    box-shadow: 25px 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: auto;
    max-width: 45%;
    transform: perspective(1000px) rotateY(5deg) translateZ(30px);
    z-index: 1;
}.ex-educational-yield .ex-photo-cell:hover {
    transform: perspective(1000px) rotateY(2deg) translateZ(50px);
}

@media (max-width: 1024px) {.ex-educational-yield {
    padding: 6rem 0;
}.ex-educational-yield .ex-academy-cult {
    gap: 3rem;
    transform: perspective(1200px) rotateY(-1deg);
}.ex-educational-yield .ex-message-box {
    padding: 2rem;
}.ex-educational-yield h4 {
    font-size: 18px;
}
}

@media (max-width: 768px) {.ex-educational-yield {
    padding: 4rem 0;
}.ex-educational-yield .ex-academy-cult {
    flex-direction: column-reverse;
    transform: none;
}.ex-educational-yield .ex-message-box {
    transform: none;
    padding: 2rem 1.5rem;
    width: 100%;
}.ex-educational-yield .ex-message-box > div {
    gap: 0;
    flex-direction: column;
}.ex-educational-yield .ex-photo-cell {
    max-width: 90%;
    margin: 0 auto 2rem;
    clip-path: polygon(0 0, 100% 3%, 97% 100%, 0% 97%);
    transform: perspective(1000px) rotateY(2deg) translateZ(20px);
}.ex-educational-yield h4 {
    margin-bottom: 1.5rem;
    font-size: calc(19px * 1.1);
}.ex-educational-yield li {
    margin-bottom: 1.2rem;
}.ex-educational-yield li p {
    font-size: calc(14px * 0.95);
}
}

@media (max-width: 480px) {.ex-educational-yield {
    padding: 3rem 0;
}.ex-educational-yield .ex-message-box {
    padding: 1.5rem 1rem;
}.ex-educational-yield .ex-photo-cell {
    clip-path: polygon(0 0, 100% 2%, 98% 100%, 0% 98%);
    max-width: 100%;
}.ex-educational-yield h4 {
    font-size: 19px;
}.ex-educational-yield li p {
    gap: 10px;
    font-size: calc(14px * 0.9);
}.ex-educational-yield svg {
    height: 20px;
    width: 20px;
}
}