* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}header,footer {
    width: 100%;
}svg {
    width: 30px;
    height: 30px;
}.nav-top {
    flex: 1 0 auto;
}html,body {
    min-height: 100%;
    font-family: Arial, sans-serif;
    height: 100%;
    color: #000000;
    auto
contain
touch-action: none;
    scroll-behavior: smooth;
    scroll-snap-type: none;
}.container {
    width: 1226px;
    max-width: 100%;
    margin: auto;
}.online-tools {
    flex: 0 0 auto;
}.core-container {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}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;
}}
.instructor-history {
    background: rgb(188,188,194);
    padding: 5rem 2rem;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}.instructor-history::before {
    z-index: -1;
    content: "";
    position: absolute;
    height: 140%;
    transform: rotate(15deg);
    filter: blur(3px);
    background: rgb(153,153,158,0.5);
    top: -20%;
    right: -5%;
    width: 60%;
}.instructor-history::after {
    width: 30%;
    z-index: -1;
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    bottom: -5%;
    content: "";
    animation: morph 15s linear infinite alternate;
    background: rgb(118,118,121,0.5);
    height: 30%;
    left: -5%;
}@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.instructor-history .learn-ratings {
    max-width: 1100px;
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    gap: 0;
}.instructor-history .img-panel {
    border-radius: 0;
    height: 450px;
    grid-row: 1 / 2;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    grid-column: 1 / 2;
    z-index: 2;
    width: 100%;
    transform: translateX(-5%);
}.instructor-history .img-panel::after {
    height: 100%;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    position: absolute;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 50%
    );
    left: 0;
    width: 100%;
    top: 0;
    content: "";
}.instructor-history .learn-ratings:hover .img-panel {
    filter: contrast(1.1);
    transform: translateX(0) scale(1.02);
}.instructor-history .exp-container {
    z-index: 1;
    transform: translateX(-15%);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    grid-row: 1 / 2;
    display: flex;
    background: #ffffff;
    flex-direction: column;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    justify-content: center;
    grid-column: 2 / 3;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
    padding: 3rem 3rem 3rem 5rem;
}.instructor-history .learn-ratings:hover .exp-container {
    transform: translateX(-10%) translateY(-5px);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.5);
}.instructor-history .name {
    color: rgb(153,153,158);
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.7rem;
    position: relative;
}.instructor-history .name::before {
    position: absolute;
    height: 30px;
    z-index: -1;
    transition: transform 0.4s ease 0.2s;
    left: -20px;
    background: rgb(118,118,121,0.5);
    transform: rotate(45deg) scale(0);
    content: "";
    top: -10px;
    width: 30px;
    border-radius: 10px;
}.instructor-history .learn-ratings:hover .name::before {
    transform: rotate(45deg) scale(1);
}.instructor-history .exp-container > div:nth-child(2) {
    color: rgb(118,118,121);
    opacity: 0;
    margin-bottom: 2rem;
    transform: translateX(-20px);
    font-weight: 600;
    opacity: 0.9;
    font-size: 16px;
    transition: all 0.5s ease 0.3s;
}.instructor-history .learn-ratings:hover .exp-container > div:nth-child(2) {
    transform: translateX(0);
    opacity: 1;
}.instructor-history .exp-content {
    font-style: italic;
    color: #000000;
    line-height: 1.7;
    font-weight: 400;
    transition: all 0.5s ease 0.5s;
    opacity: 0;
    font-size: 17px;
    position: relative;
    transform: translateY(20px);
    padding-top: 20px;
}.instructor-history .learn-ratings:hover .exp-content {
    opacity: 1;
    transform: translateY(0);
}.instructor-history .exp-content::before {
    height: 3px;
    background: linear-gradient(to right, rgb(153,153,158), transparent);
    top: 0;
    content: "";
    left: 0;
    width: 60px;
    position: absolute;
}@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.instructor-history .exp-container::after {
    width: 40px;
    position: absolute;
    z-index: -1;
    height: 40px;
    content: "";
    right: 20px;
    bottom: 20px;
    background: rgb(153,153,158,0.5);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite;
}

@media (max-width: 992px) {.instructor-history .learn-ratings {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    gap: 2rem;
}.instructor-history .img-panel {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    transform: none;
    height: 300px;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}.instructor-history .img-panel::after {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}.instructor-history .exp-container {
    transform: none;
    padding: 2rem;
    clip-path: none;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}.instructor-history .learn-ratings:hover .exp-container {
    transform: translateY(-5px);
}}.cookie-window-banner {
    background: rgb(118,118,121);
    bottom: 0;
    padding: 20px 0;
    animation: slideUp 0.5s forwards;
    font-family: Arial, sans-serif;
    position: fixed;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    z-index: 90;
    border-top: 3px solid rgb(118,118,121);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
.track-alert {
    align-items: center;
    padding: 20px 5%;
    justify-content: space-between;
    gap: 20px;
    display: flex;
}.cookie-window-banner h5 {
    letter-spacing: 1px;
    font-size: 22px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
}.cookie-window-banner p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #ffffff;
}.online-tracking {
    margin-right: 15px;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgb(153,153,158));
}.online-tracking svg {
    height: 80px;
    fill: rgb(153,153,158);
    transition: transform 0.3s ease-in-out;
    width: 80px;
}.online-tracking:hover svg {
    transform: scale(1.1);
}.secure-cookies {
    text-decoration: none;
    line-height: 40px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 22px;
    padding: 10px 20px;
    color: #000000;
    white-space: nowrap;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    text-align: center;
    box-shadow: 0 0 15px rgb(153,153,158);
    min-width: 140px;
    background: linear-gradient(90deg, rgb(153,153,158), rgb(118,118,121));
}.secure-cookies:hover {
    box-shadow: 0 0 20px rgb(118,118,121);
}.cookie_button.edu-approve:hover {
    box-shadow: 0 0 15px rgb(118,118,121);
}.cookie-window-banner p a {
    color: rgb(153,153,158);
    transition: color 0.3s ease;
    text-decoration: none;
}.cookie-window-banner p a:hover {
    color: rgb(118,118,121);
}#userSettingsPopup {
    display: none;
}#userSettingsPopup:checked ~ .cookie-window-banner {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1200px) {.cookie-window-banner {
    padding: 15px 0;
}.track-alert {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.online-tracking {
    display: none;
}.track-alert {
    align-items: center;
    text-align: center;
    flex-direction: column;
}.cookie-window-banner h5 {
    margin-bottom: 5px;
    font-size: 20px;
}.cookie-list {
    margin-bottom: 15px;
}.secure-cookies {
    margin: 10px 0;
    min-width: 100%;
}}
.connect-form {
    padding: 0;
    display: flex;
    position: relative;
    align-items: center;
    z-index: 1;
    min-height: 650px;
}.connect-form::before {
    z-index: -1;
    position: absolute;
    content: '';
    inset: 0;
    background-color: rgb(153,153,158,0.5);
}.connect-form .container {
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
}.connect-form .request-map {
    display: flex;
    width: 100%;
    flex-direction: column-reverse;
    position: relative;
}.connect-form .reach-support {
    background-color: transparent;
    position: relative;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px 120px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}.connect-form .reach-support h3 {
    width: 100%;
    padding-bottom: 15px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: center;
    font-size: 31px;
}.connect-form .reach-support h3::after {
    bottom: 0;
    left: 50%;
    width: 60px;
    background-color: rgb(118,118,121);
    content: '';
    height: 3px;
    position: absolute;
    transform: translateX(-50%);
}.connect-form .reach-support div {
    align-items: center;
    display: flex;
    padding: 20px;
    flex: 1 0 calc(50% - 30px);
    justify-content: center;
    border-radius: 16px;
    text-align: center;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 140px;
    max-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
}.connect-form .reach-support div:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
}.connect-form .reach-support div svg {
    width: 35px;
    height: 35px;
    margin-bottom: 15px;
}.connect-form .reach-support div svg path {
    fill: rgb(118,118,121);
}.connect-form .reach-support div span {
    margin-top: 10px;
    font-size: 14px;
    color: #000000;
    line-height: 1.5;
}.connect-form .reach-support div span a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: #000000;
}.connect-form .reach-support div span a:hover {
    color: rgb(118,118,121);
}.connect-form .inquiry-map {
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    z-index: 2;
    padding: 40px 30px;
    max-width: 550px;
    border-radius: 16px;
    position: relative;
    background-color: #ffffff;
    transform: translateY(50px);
}.connect-form .inquiry-map::before {
    width: 30px;
    border-radius: 3px;
    position: absolute;
    z-index: -1;
    content: '';
    top: -15px;
    background-color: #ffffff;
    height: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}.connect-form .inquiry-map h3 {
    text-align: center;
    color: rgb(153,153,158);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 18px;
}.connect-form .inquiry-map form {
    flex-wrap: wrap;
    display: flex;
    gap: 15px;
}.connect-form .inquiry-map input[type="text"],
.connect-form .inquiry-map input[type="email"] {
    padding: 15px 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: #000000;
    height: 50px;
    border-radius: 10px;
    flex: 1 0 100%;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid rgb(188,188,194);
}.connect-form .inquiry-map input[type="text"]:focus,
.connect-form .inquiry-map input[type="email"]:focus {
    border-color: rgb(118,118,121);
    outline: none;
    box-shadow: 0 0 0 3px rgb(118,118,121,0.5);
}.connect-form .inquiry-map input::placeholder {
    opacity: 0.6;
    color: #000000;
}.connect-form .inquiry-map .reach-grid {
    margin-top: 5px;
    flex: 1 0 100%;
    align-items: flex-start;
    display: flex;
}.connect-form .inquiry-map .reach-grid input[type="checkbox"] {
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    margin-right: 10px;
    border: 2px solid rgb(188,188,194);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    height: 20px;
    border-radius: 4px;
    width: 20px;
    flex-shrink: 0;
    margin-top: 3px;
    cursor: pointer;
}.connect-form .inquiry-map .reach-grid input[type="checkbox"]:checked {
    border-color: rgb(118,118,121);
    background-color: rgb(118,118,121);
}.connect-form .inquiry-map .reach-grid input[type="checkbox"]:checked::before {
    content: '✓';
    transform: translate(-50%, -50%);
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #ffffff;
}.connect-form .inquiry-map .reach-grid label {
    line-height: 1.5;
    font-size: 15px;
    color: #000000;
}.connect-form .inquiry-map .reach-grid label a {
    text-decoration: none;
    color: rgb(118,118,121);
    transition: color 0.3s ease;
}.connect-form .inquiry-map .reach-grid label a:hover {
    color: rgb(153,153,158);
}.connect-form .inquiry-map .inquiry-query {
    font-size: 18px;
    width: 100%;
    border: none;
    box-shadow: 0 5px 15px rgb(118,118,121,0.5);
    border-radius: 10px;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 50px;
    cursor: pointer;
    margin-top: 15px;
    background: linear-gradient(135deg, rgb(118,118,121), rgb(153,153,158));
    font-weight: 600;
}.connect-form .inquiry-map .inquiry-query:hover {
    box-shadow: 0 8px 25px rgb(153,153,158,0.5);
    transform: translateY(-3px);
}

@media screen and (min-width: 992px) {.connect-form {
    padding: 100px 0;
    min-height: 700px;
}.connect-form .request-map {
    align-items: center;
    flex-direction: row;
}.connect-form .reach-support {
    margin-left: auto;
    padding: 60px 0 60px 120px;
    justify-content: space-between;
    width: 65%;
    gap: 30px;
    align-items: center;
}.connect-form .reach-support h3 {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
    text-align: left;
}.connect-form .reach-support h3::after {
    transform: none;
    left: 0;
}.connect-form .reach-support div {
    margin: 0;
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}.connect-form .inquiry-map {
    max-width: 450px;
    left: 0;
    width: 45%;
    padding: 40px;
    z-index: 3;
    margin: 0;
    position: absolute;
}.connect-form .inquiry-map::before {
    transform: translateY(-50%) rotate(45deg);
    left: -15px;
    top: 50%;
}
}

@media screen and (min-width: 1200px) {.connect-form .reach-support {
    width: 70%;
    padding-left: 200px;
}.connect-form .inquiry-map {
    max-width: 480px;
    width: 40%;
}
}

@media screen and (min-width: 768px) and (max-width: 991px) {.connect-form {
    padding: 80px 0 120px;
}.connect-form .reach-support {
    justify-content: space-between;
    padding: 0 20px 120px;
}.connect-form .reach-support div {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}
}

@media screen and (max-width: 767px) {.connect-form {
    padding: 60px 0 120px;
}.connect-form .reach-support {
    padding: 0 20px 120px;
}.connect-form .reach-support h3 {
    font-size: calc(18px + 2px);
}.connect-form .reach-support div {
    max-width: 280px;
    margin-bottom: 0;
    min-height: 120px;
    flex: 0 0 100%;
}.connect-form .reach-support div svg {
    width: 30px;
    height: 30px;
}.connect-form .inquiry-map {
    padding: 30px 25px;
}
}

@media screen and (max-width: 480px) {.connect-form {
    padding: 40px 0 100px;
}.connect-form .reach-support {
    gap: 20px;
}.connect-form .reach-support div {
    padding: 20px 15px;
    min-height: auto;
}}header {
    position: relative;
    background: rgb(188,188,194);
    z-index: 100;
    padding: 1.2rem 0;
}header::before {
    background: linear-gradient(135deg, 
        rgb(153,153,158,0.5) 0%, 
        transparent 50%, 
        rgb(118,118,121,0.5) 100%);
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    left: 0;
    top: 0;
}header .container {
    padding: 0 1.5rem;
    z-index: 1;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}header .nav-sitewrap {
    flex-direction: column;
    gap: 1rem;
    border-radius: 10px;
    align-items: center;
    background: #ffffff;
    display: flex;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}header .nav-study {
    text-decoration: none;
    display: flex;
    margin-bottom: 0.5rem;
    justify-content: center;
    padding: 0.5rem 1rem;
    position: relative;
}header .nav-study::before {
    position: absolute;
    height: 1px;
    left: 0;
    background: linear-gradient(to right, 
        transparent, 
        rgb(153,153,158,0.5), 
        rgb(118,118,121,0.5), 
        rgb(153,153,158,0.5), 
        transparent);
    bottom: 0;
    content: '';
    width: 100%;
}header .nav-study svg {
    height: auto;
    transition: all 0.3s ease;
    width: 160px;
}header .nav-study:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgb(153,153,158,0.5));
}header .nav-learning {
    background: rgb(188,188,194);
    gap: 0.4rem;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    padding: 0.6rem;
    border-radius: 10px;
    display: flex;
}header .top-expert {
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    overflow: hidden;
    position: relative;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    z-index: 1;
    font-weight: 400;
}header .top-expert::before {
    z-index: -1;
    width: 100%;
    background: linear-gradient(135deg, rgb(153,153,158), rgb(118,118,121));
    opacity: 0;
    transition: opacity 0.3s ease;
    top: 0;
    height: 100%;
    left: 0;
    content: '';
    position: absolute;
}header .top-expert:hover {
    color: #ffffff;
}header .top-expert:hover::before {
    opacity: 1;
}header .top-expert::after {
    left: 0;
    content: '';
    transition: transform 0.3s ease;
    transform: scaleX(0);
    bottom: 0;
    transform-origin: left;
    height: 2px;
    background: linear-gradient(to right, rgb(153,153,158), rgb(118,118,121));
    width: 100%;
    position: absolute;
}header .top-expert:hover::after {
    transform: scaleX(1);
}

@media (max-width: 991px) {header {
    padding: 1rem 0;
}header .nav-sitewrap {
    padding: 0.8rem;
    gap: 0.8rem;
}header .nav-study svg {
    width: 140px;
}header .nav-learning {
    padding: 0.5rem;
}header .top-expert {
    font-size: calc(14px - 1px);
    padding: 0.4rem 0.8rem;
}
}

@media (max-width: 767px) {header {
    padding: 0.8rem 0;
}header .nav-sitewrap {
    gap: 0.7rem;
    padding: 0.7rem;
}header .nav-study svg {
    width: 120px;
}header .nav-learning {
    padding: 0.4rem;
    gap: 0.3rem;
}header .top-expert {
    font-size: calc(14px - 2px);
    padding: 0.3rem 0.7rem;
}
}

@media (max-width: 480px) {header {
    padding: 0.7rem 0;
}header .nav-sitewrap {
    gap: 0.6rem;
    padding: 0.6rem;
}header .nav-study svg {
    width: 110px;
}header .nav-learning {
    flex-wrap: nowrap;
    padding: 0.4rem;
    overflow-x: auto;
    justify-content: flex-start;
}header .nav-learning::-webkit-scrollbar {
    height: 2px;
}header .nav-learning::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(153,153,158);
}header .top-expert {
    white-space: nowrap;
    flex-shrink: 0;
}}.tyContent {
    background: linear-gradient(135deg, rgb(188,188,194) 0%, rgb(153,153,158,0.5) 100%);
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}.tyContent::before {
    content: "";
    pointer-events: none;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
}.tyContent::after {
    position: absolute;
    animation: float 15s infinite ease-in-out;
    opacity: 0.2;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(118,118,121) 0%, transparent 70%);
    height: 300px;
    filter: blur(50px);
    right: -150px;
    width: 300px;
    content: "";
    top: -150px;
}.tyContent .container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}.tyContent h2 {
    font-weight: 700;
    font-family: Arial, sans-serif;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 40px;
    line-height: 1.4;
    transform-origin: center;
    position: relative;
    text-align: center;
    transform: perspective(1000px) rotateX(2deg);
    color: rgb(153,153,158);
    letter-spacing: 0.5px;
    font-size: 29px;
}.tyContent h2::after {
    bottom: -15px;
    width: 80px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    position: absolute;
    background: linear-gradient(90deg, rgb(153,153,158), rgb(118,118,121));
    content: "";
    height: 3px;
}.tyContent .skill-space {
    overflow: hidden;
    padding: 40px;
    background: #ffffff;
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    border-radius: 23px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1), 
                0 5px 15px rgba(0,0,0,0.05);
}.tyContent .skill-space::before {
    left: 0;
    background: linear-gradient(90deg, rgb(153,153,158), rgb(118,118,121), rgb(153,153,158));
    background-size: 200% 100%;
    top: 0;
    width: 100%;
    position: absolute;
    animation: gradientShift 6s infinite linear;
    content: "";
    height: 6px;
}.tyContent .skill-space:hover {
    transform: translateY(-5px);
}.tyContent .skill-space:hover h2::after {
    width: 120px;
}.tyContent ul {
    padding: 0;
    margin: 0;
    list-style: none;
}.tyContent li {
    position: relative;
    padding-left: 25px;
}.tyContent li::before {
    transition: transform 0.3s ease;
    left: 0;
    height: 10px;
    width: 10px;
    top: 8px;
    position: absolute;
    transform: rotate(45deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: rgb(118,118,121);
    content: "";
}.tyContent li:hover::before {
    transform: rotate(225deg) scale(1.2);
}.tyContent span {
    color: #000000;
    font-family: Arial, sans-serif;
    font-weight: 400;
    display: block;
    letter-spacing: 0.3px;
    font-size: calc(14px + 2px);
    position: relative;
    line-height: 1.7;
    padding: 10px 0;
}.tyContent span::after {
    bottom: 0;
    height: 1px;
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
    position: absolute;
    content: "";
}

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

@keyframes float {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-30px, 30px); }
    50% { transform: translate(0, 60px); }
    75% { transform: translate(30px, 30px); }
    100% { transform: translate(0, 0); }
}

@media (max-width: 1024px) {.tyContent {
    padding: 80px 0;
}.tyContent h2 {
    font-size: calc(29px - 2px);
}.tyContent .skill-space {
    padding: 30px;
}.tyContent span {
    font-size: 14px;
}
}

@media (max-width: 768px) {.tyContent {
    padding: 60px 0;
}.tyContent h2 {
    font-size: calc(29px - 4px);
    transform: perspective(1000px) rotateX(1deg);
}.tyContent .skill-space {
    padding: 25px;
}.tyContent li::before {
    top: 6px;
}.tyContent span {
    line-height: 1.6;
    font-size: calc(14px - 1px);
}
}

@media (max-width: 480px) {.tyContent {
    padding: 40px 0;
}.tyContent h2 {
    transform: none;
    margin-bottom: 30px;
    font-size: calc(29px - 6px);
}.tyContent h2::after {
    bottom: -10px;
    width: 60px;
}.tyContent .skill-space {
    padding: 20px;
}.tyContent li {
    padding-left: 20px;
}.tyContent li::before {
    width: 8px;
    top: 7px;
    height: 8px;
}.tyContent span {
    line-height: 1.5;
    font-size: calc(14px - 2px);
    letter-spacing: 0.2px;
}}.audience-profile {
    background: linear-gradient(135deg, #ffffff 0%, rgb(188,188,194) 100%);
    overflow: hidden;
    padding: 110px 0;
    position: relative;
}.audience-profile::before {
    left: 0;
    background-size: 30px 30px;
    opacity: 0.4;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 98%, rgb(118,118,121,0.5) 98%, rgb(118,118,121,0.5) 100%),
        linear-gradient(0deg, transparent 98%, rgb(118,118,121,0.5) 98%, rgb(118,118,121,0.5) 100%);
    width: 100%;
    z-index: 1;
    top: 0;
    content: "";
    position: absolute;
}.audience-profile .container {
    margin: 0 auto;
    z-index: 2;
    max-width: 1140px;
    padding: 0 15px;
    position: relative;
}.audience-profile .skill-space {
    position: relative;
}.audience-profile h4 {
    left: 50%;
    border: 2px solid rgb(153,153,158);
    font-weight: 700;
    display: inline-block;
    background: #ffffff;
    margin-bottom: 60px;
    font-size: 38px;
    box-shadow: 5px 5px 0 rgb(153,153,158,0.5);
    transform: translateX(-50%);
    position: relative;
    padding: 15px 30px;
    color: #000000;
    border-radius: 10px;
}.audience-profile div > div {
    justify-content: center;
    position: relative;
    gap: 50px;
    display: flex;
    flex-wrap: wrap;
}.audience-profile div > div::before {
    width: 100%;
    background: linear-gradient(90deg, transparent, rgb(153,153,158,0.5), transparent);
    content: "";
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
}.audience-profile div > div::after {
    z-index: -1;
    height: 100%;
    position: absolute;
    content: "";
    background: linear-gradient(180deg, transparent, rgb(118,118,121,0.5), transparent);
    width: 2px;
    top: 0;
    left: 50%;
}.audience-profile p {
    justify-content: flex-start;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    color: #000000;
    padding: 20px;
    display: flex;
    font-size: 16px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: calc(33.333% - 50px);
    align-items: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgb(188,188,194);
    margin: 0;
}.audience-profile p::before {
    transition: opacity 0.4s ease;
    width: 100%;
    position: absolute;
    opacity: 0;
    content: "";
    z-index: -1;
    top: 0;
    height: 100%;
    border-radius: 10px;
    left: 0;
    background: linear-gradient(135deg, transparent 0%, rgb(153,153,158,0.5) 300%);
}.audience-profile p::after {
    background: #ffffff;
    position: absolute;
    width: 20px;
    border-radius: 50%;
    content: "";
    top: -10px;
    border: 1px solid rgb(153,153,158);
    height: 20px;
    transition: all 0.3s ease;
    left: -10px;
}.audience-profile p:hover {
    transform: translateY(-10px);
    border-color: rgb(153,153,158,0.5);
}.audience-profile p:hover::before {
    opacity: 0.2;
}.audience-profile p:hover::after {
    background: rgb(153,153,158);
    transform: scale(1.5);
}.audience-profile p svg {
    margin-right: 15px;
    flex-shrink: 0;
    height: 26px;
    width: 26px;
    transition: all 0.3s ease;
}.audience-profile p svg path {
    fill: rgb(153,153,158);
    transition: fill 0.3s ease;
}.audience-profile p:hover svg {
    transform: rotate(15deg);
}.audience-profile p:hover svg path {
    fill: rgb(118,118,121);
}@keyframes circuitPath {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

.audience-profile::after {
    bottom: 0;
    content: "";
    right: 0;
    background-repeat: no-repeat;
    background-position: bottom right;
    width: 300px;
    height: 300px;
    position: absolute;
    z-index: 1;
    opacity: 0.3;
}@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.audience-profile .skill-space > div p {
    opacity: 0;
    animation: fadeInScale 0.5s ease forwards;
}.audience-profile .skill-space > div p:nth-child(1) {
    animation-delay: 0.1s;
}.audience-profile .skill-space > div p:nth-child(2) {
    animation-delay: 0.2s;
}.audience-profile .skill-space > div p:nth-child(3) {
    animation-delay: 0.3s;
}.audience-profile .skill-space > div p:nth-child(4) {
    animation-delay: 0.4s;
}.audience-profile .skill-space > div p:nth-child(5) {
    animation-delay: 0.5s;
}.audience-profile .skill-space > div p:nth-child(6) {
    animation-delay: 0.6s;
}

@media (max-width: 991px) {.audience-profile {
    padding: 90px 0;
}.audience-profile h4 {
    font-size: calc(38px * 0.9);
    margin-bottom: 50px;
    padding: 12px 25px;
}.audience-profile div > div {
    gap: 30px;
}.audience-profile p {
    padding: 18px;
    width: calc(50% - 30px);
}.audience-profile p svg {
    margin-right: 12px;
    width: 24px;
    height: 24px;
}.audience-profile::after {
    width: 200px;
    height: 200px;
}
}

@media (max-width: 768px) {.audience-profile {
    padding: 70px 0;
}.audience-profile h4 {
    font-size: calc(38px * 0.8);
    margin-bottom: 40px;
    box-shadow: 3px 3px 0 rgb(153,153,158,0.5);
    padding: 10px 20px;
}.audience-profile div > div {
    gap: 25px;
}.audience-profile div > div::before,
    .audience-profile div > div::after {
    opacity: 0.4;
}.audience-profile p {
    padding: 15px;
    font-size: calc(16px * 0.95);
    width: 100%;
}
}

@media (max-width: 576px) {.audience-profile {
    padding: 60px 0;
}.audience-profile h4 {
    border-width: 1px;
    box-shadow: 2px 2px 0 rgb(153,153,158,0.5);
    padding: 8px 16px;
    margin-bottom: 35px;
    font-size: calc(38px * 0.7);
}.audience-profile div > div {
    gap: 20px;
}.audience-profile p {
    padding: 12px;
    font-size: calc(16px * 0.9);
}.audience-profile p svg {
    margin-right: 10px;
    height: 20px;
    width: 20px;
}.audience-profile p::after {
    width: 12px;
    top: -5px;
    left: -5px;
    height: 12px;
}.audience-profile::after {
    width: 100px;
    height: 100px;
}}.title-portal {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    background: linear-gradient(135deg, rgb(153,153,158,0.5), rgb(118,118,121), rgba(0, 0, 0, 0.5));
    align-items: center;
    min-height: 100vh;
}.title-portal::before {
    top: 0;
    background-image: 
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 15%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 20%);
    z-index: 1;
    pointer-events: none;
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
    content: "";
}.title-portal::after {
    z-index: 0;
    opacity: 0.4;
    transform: rotate(15deg) scale(1.5);
    top: -50%;
    position: absolute;
    background: linear-gradient(215deg, rgb(153,153,158,0.5) 0%, transparent 70%);
    right: -50%;
    content: "";
    height: 100%;
    width: 100%;
    animation: gradientShift 12s infinite alternate ease-in-out;
}.title-portal .edu-welcome {
    opacity: 1;
    max-width: 1200px;
    width: 100%;
    gap: 3rem;
    z-index: 2;
    display: grid;
    transform: translateY(0);
    grid-template-columns: 1fr;
    animation: pageEntrance 1.2s ease-out forwards;
    position: relative;
}.title-portal .edu-welcome > div:first-child {
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12), 
              0 4px 10px rgba(0, 0, 0, 0.08),
              inset 0 1px 2px rgba(255, 255, 255, 0.15);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: perspective(1000px) rotateX(2deg);
    backdrop-filter: blur(8px) saturate(120%);
    background-color: rgba(255, 255, 255, 0.1);
}.title-portal .edu-welcome > div:first-child:hover {
    transform: perspective(1000px) rotateX(0deg);
}.title-portal h3 {
    animation: textReveal 0.8s 0.3s ease-out forwards;
    font-weight: 600;
    margin: 0;
    transform: translateY(20px);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    opacity: 0;
    line-height: 1.5;
    font-size: calc(18px * 1.1);
}.title-portal .edu-welcome > div:nth-child(2) {
    gap: 2rem;
    position: relative;
    flex-direction: column;
    display: flex;
}.title-portal .timeline-hist {
    backdrop-filter: blur(10px) saturate(150%);
    background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.08), 
    rgba(255, 255, 255, 0.01));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transform: perspective(1000px) translateZ(0) rotateY(-3deg);
    box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.15),
    0 10px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
}.title-portal .timeline-hist:hover {
    box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.18),
    0 15px 25px rgba(0, 0, 0, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) translateZ(20px) rotateY(0deg);
}.title-portal .timeline-hist h1 {
    background: linear-gradient(to right, #ffffff, rgb(118,118,121,0.5));
    background-clip: text !important;
    color: #ffffff;
    line-height: 1.2;
    opacity: 0;
    -webkit-background-clip: text !important;
    animation: headingReveal 1s 0.5s ease-out forwards;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    font-weight: 700;
    margin: 0 0 2rem;
    font-size: 40px;
    color: transparent;
}.title-portal .timeline-hist > div {
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    margin-top: 1.5rem;
    padding: 2.5rem;
    position: relative;
    box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.2),
    0 8px 15px rgba(0, 0, 0, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translateY(0);
}.title-portal .timeline-hist > div::before {
    background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%);
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
    content: "";
    width: 100%;
    z-index: 1;
}.title-portal .timeline-hist > div:hover {
    transform: translateY(-5px);
}.title-portal .timeline-hist p {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.01em;
    opacity: 0;
    font-weight: 400;
    color: #ffffff;
    font-size: calc(17px * 1.15);
    transform: translateY(15px);
    position: relative;
    line-height: 1.6;
    animation: textReveal 0.7s 0.8s ease-out forwards;
    z-index: 2;
    margin: 0;
}

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

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

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

@keyframes gradientShift {
  0% {
    transform: rotate(15deg) scale(1.5) translateX(0);
  }
  100% {
    transform: rotate(12deg) scale(1.6) translateX(-5%);
  }
}

@media (min-width: 768px) {.title-portal .edu-welcome {
    gap: 4rem;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}.title-portal h3 {
    font-size: 18px;
}.title-portal .timeline-hist h1 {
    font-size: calc(40px * 1.2);
}.title-portal .timeline-hist {
    padding: 3rem;
}
}

@media (min-width: 992px) {.title-portal {
    padding: 3rem;
}.title-portal .edu-welcome > div:first-child {
    padding: 3rem;
}.title-portal h3 {
    font-size: calc(18px * 1.2);
}.title-portal .timeline-hist h1 {
    font-size: calc(40px * 1.4);
    margin-bottom: 2.5rem;
}.title-portal .timeline-hist {
    padding: 4rem;
}.title-portal .timeline-hist > div {
    padding: 3rem;
}.title-portal .timeline-hist p {
    font-size: calc(17px * 1.25);
}
}

@media (max-width: 767px) {.title-portal {
    padding: 1.5rem;
}.title-portal .edu-welcome {
    gap: 2rem;
}.title-portal .edu-welcome > div:first-child {
    padding: 1.5rem;
}.title-portal h3 {
    font-size: calc(16px * 1.1);
}.title-portal .timeline-hist {
    padding: 1.8rem;
}.title-portal .timeline-hist h1 {
    font-size: calc(30px * 1.1);
    margin-bottom: 1.5rem;
}.title-portal .timeline-hist > div {
    padding: 2rem;
}.title-portal .timeline-hist p {
    font-size: 17px;
}}.secure-vault {
    background-color: rgb(188,188,194);
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    padding: 40px;
    color: #000000;
    line-height: 1.6;
}.secure-vault h1 {
    border-bottom: 2px solid rgb(153,153,158,0.5);
    font-size: 42px;
    padding-bottom: 10px;
    font-weight: 700;
    color: rgb(153,153,158);
    margin-bottom: 20px;
}.secure-vault h2 {
    margin-top: 30px;
    color: rgb(118,118,121);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}.secure-vault h3,
.secure-vault h4,
.secure-vault h5,
.secure-vault h6 {
    font-weight: 400;
    margin-top: 20px;
    color: rgb(118,118,121,0.5);
}.secure-vault ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}.secure-vault ul li {
    margin-bottom: 10px;
    padding: 15px;
    border-left: 4px solid rgb(153,153,158);
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}.secure-vault ol {
    padding: 0;
    margin: 20px 0;
    list-style: none;
    counter-reset: li;
}.secure-vault ol li {
    background-color: #ffffff;
    padding: 10px 15px 10px 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    border-radius: 10px;
    position: relative;
}.secure-vault ol li:before {
    left: 10px;
    counter-increment: li;
    position: absolute;
    display: flex;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(153,153,158);
    height: 25px;
    content: counter(li);
    align-items: center;
    border-radius: 50%;
    color: #ffffff;
    width: 25px;
}.secure-vault p {
    margin-bottom: 15px;
    font-weight: 300;
    font-size: 14px;
}.secure-vault span {
    color: rgb(153,153,158);
    font-weight: 600;
}.secure-vault div {
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {.secure-vault {
    padding: 20px;
}.secure-vault h1 {
    font-size: calc(21px * 0.8);
}.secure-vault h2 {
    font-size: calc(21px * 0.8);
}.secure-vault ul li,
    .secure-vault ol li {
    padding: 10px;
}.secure-vault ol li:before {
    font-size: 0.8em;
    width: 20px;
    height: 20px;
}.secure-vault p {
    font-size: calc(14px * 0.9);
}}.course-summary {
    overflow: hidden;
    padding: 100px 0;
    position: relative;
    background-color: rgb(188,188,194);
}.course-summary::before {
    position: absolute;
    content: "";
    height: 100%;
    background: 
        linear-gradient(135deg, rgb(153,153,158,0.5) 0%, transparent 40%),
        linear-gradient(225deg, rgb(118,118,121,0.5) 0%, transparent 40%);
    z-index: 1;
    left: 0;
    width: 100%;
    top: 0;
}.course-summary::after {
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(153,153,158,0.5) 0%, transparent 8%),
        radial-gradient(circle at 80% 70%, rgb(118,118,121,0.5) 0%, transparent 8%);
    background-size: 120px 120px, 120px 120px;
    height: 100%;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 1;
    position: absolute;
    content: "";
}.course-summary .container {
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}.course-summary .class-track {
    display: flex;
    flex-direction: column;
}.course-summary .word-box {
    padding: 50px;
    border-top: 3px solid rgb(153,153,158);
    z-index: 4;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 3px solid rgb(118,118,121);
}.course-summary .word-box::before {
    top: 0;
    position: absolute;
    width: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgb(153,153,158,0.5) 49%, rgb(153,153,158,0.5) 51%, transparent 52%) 0 0 / 20px 20px,
        linear-gradient(135deg, transparent 48%, rgb(118,118,121,0.5) 49%, rgb(118,118,121,0.5) 51%, transparent 52%) 0 0 / 20px 20px;
    z-index: -1;
    height: 100%;
    opacity: 0.1;
    left: 0;
    content: "";
}.course-summary .word-box h2 {
    padding-bottom: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 38px;
    position: relative;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    padding: 10px 25px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    font-weight: 700;
}.course-summary .word-box h2::after {
    content: "";
    border-radius: 10px;
    left: 0;
    height: 3px;
    position: absolute;
    bottom: 0;
    background: linear-gradient(90deg, rgb(153,153,158) 0%, rgb(118,118,121) 100%);
    width: 80px;
}.course-summary .word-box .description {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    font-size: 18px;
    position: relative;
    line-height: 1.8;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 25px;
    font-weight: 600;
    padding: 15px 20px;
    color: #000000;
    border-left: 2px solid rgb(153,153,158);
    backdrop-filter: blur(3px);
}.course-summary .word-box .description:last-child {
    border-left: 2px solid rgb(118,118,121);
    padding: 15px 20px;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.6);
}.course-summary .img-panel {
    z-index: 2;
    transform: scale(1.05);
    top: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
}.course-summary .img-panel::before {
    z-index: 2;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.4) 100%);
}.course-summary .img-panel::after {
    top: 0;
    left: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 40px);
    width: 100%;
    height: 100%;
    content: "";
    z-index: 3;
    position: absolute;
}

@keyframes gridAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

@media (max-width: 992px) {.course-summary {
    padding: 80px 0;
}.course-summary .word-box {
    margin-bottom: 40px;
    padding: 40px;
}.course-summary .img-panel {
    height: 60%;
}
}

@media (max-width: 768px) {.course-summary {
    padding: 60px 0;
}.course-summary .word-box {
    padding: 30px;
    margin-bottom: 30px;
}.course-summary .word-box h2 {
    margin-bottom: 20px;
    font-size: calc(38px * 0.9);
}.course-summary .img-panel {
    height: 50%;
    clip-path: polygon(0 20%, 100% 10%, 100% 100%, 0% 100%);
}
}

@media (max-width: 576px) {.course-summary {
    padding: 50px 0;
}.course-summary .word-box {
    padding: 25px 20px;
    margin-bottom: 20px;
}.course-summary .word-box h2 {
    padding-bottom: 10px;
    font-size: calc(38px * 0.8);
    margin-bottom: 15px;
}.course-summary .word-box .description {
    line-height: 1.7;
    font-size: calc(18px * 0.95);
    padding-left: 15px;
}.course-summary .img-panel {
    clip-path: polygon(0 15%, 100% 5%, 100% 100%, 0% 100%);
    height: 40%;
}}

.course-summary::before,
.course-summary::after,
.course-summary .word-box::before,
.course-summary .container::before,
.course-summary .container::after {
    pointer-events: none;
}.course-summary .class-track::after {
    left: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    content: "";
    background-image: 
        radial-gradient(circle at 10% 10%, rgb(153,153,158,0.5) 0%, transparent 1%),
        radial-gradient(circle at 90% 90%, rgb(118,118,121,0.5) 0%, transparent 1%);
    width: 100%;
    opacity: 0.3;
    top: 0;
    position: absolute;
    background-size: 30px 30px;
}footer {
    position: relative;
    width: 100%;
}.online-tools {
    background-color: #000000;
    overflow: hidden;
    padding: 80px 0 30px;
    color: #ffffff;
    position: relative;
    font-family: Arial, sans-serif;
}.online-tools::before {
    content: "";
    background: repeating-linear-gradient(
        45deg,
        #000000,
        #000000 10px,
        rgba(0, 0, 0, 0.5) 10px,
        rgba(0, 0, 0, 0.5) 20px
    );
    height: 500px;
    top: -100px;
    transform: rotate(45deg);
    position: absolute;
    right: -100px;
    width: 500px;
    opacity: 0.4;
}.online-tools::after {
    content: "";
    left: -50px;
    width: 300px;
    bottom: -50px;
    background: repeating-linear-gradient(
        -45deg,
        #000000,
        #000000 15px,
        rgb(118,118,121,0.5) 15px,
        rgb(118,118,121,0.5) 30px
    );
    opacity: 0.2;
    position: absolute;
    height: 300px;
    transform: rotate(30deg);
}footer .price-table {
    z-index: 1;
    position: relative;
}footer .submit-feedback {
    padding: 30px;
    gap: 20px;
    border-radius: 0 13px 13px 0;
    display: grid;
    margin-bottom: 60px;
    border-left: 4px solid rgb(153,153,158);
    background-color: rgba(255, 255, 255, 0.05);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}footer .info_item {
    align-items: center;
    display: flex;
}footer .info_item svg {
    height: 20px;
    margin-right: 15px;
    fill: rgb(153,153,158);
    flex-shrink: 0;
    width: 20px;
}footer .info_item p,
footer .info_item a {
    font-size: 17px;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
    color: #ffffff;
}footer .info_item a:hover {
    color: rgb(153,153,158);
}footer .text_main_holder {
    grid-template-columns: 1fr;
    gap: 50px;
    display: grid;
}footer .header-lead {
    position: relative;
}footer .header-lead::after {
    height: 3px;
    background-color: rgb(153,153,158);
    width: 30%;
    bottom: -30px;
    content: "";
    left: 0;
    position: absolute;
}footer .header-lead svg {
    width: auto;
    height: 45px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}footer .insta-feed {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 330px;
}footer .nav-learning {
    position: relative;
}footer .nav-learning h5 {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 21px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
}footer .nav-learning h5::after {
    width: 40px;
    height: 3px;
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: rgb(153,153,158);
}footer .main-page {
    margin-bottom: 30px;
}footer .main-page a {
    display: block;
    transition: all 0.3s ease;
    font-size: 17px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
}footer .main-page a:hover {
    padding-left: 10px;
    border-bottom-color: rgb(153,153,158,0.5);
    color: #ffffff;
}footer .subscribe_holder {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 35px;
    position: relative;
    border-radius: 13px;
}footer .subscribe_holder::before {
    position: absolute;
    top: 0;
    bottom: 0;
    content: "";
    left: 0;
    background: linear-gradient(135deg, rgb(153,153,158,0.5), transparent);
    opacity: 0.1;
    right: 0;
    border-radius: 13px;
}footer .subscribe_holder h5 {
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 21px;
    text-transform: uppercase;
}footer .subscribe_holder p {
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
}footer .input_holder {
    position: relative;
    gap: 15px;
    display: flex;
    flex-direction: column;
}footer .input_holder input[type="email"] {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 17px;
    padding: 15px;
}footer .input_holder input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgb(153,153,158);
    outline: none;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}footer .subscribe-access {
    letter-spacing: 1px;
    background-color: rgb(153,153,158);
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    border-radius: 10px;
    font-size: 15px;
    text-transform: uppercase;
    padding: 15px 20px;
    border: none;
    overflow: hidden;
    color: #ffffff;
}footer .subscribe-access::after {
    position: absolute;
    left: -100px;
    height: 300px;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.7s ease;
    top: -100px;
    content: "";
    transform: rotate(45deg);
}footer .subscribe-access:hover {
    background-color: rgb(118,118,121);
}footer .subscribe-access:hover::after {
    left: 120%;
}footer .design-res {
    padding-top: 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}footer .knowl-base {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

@keyframes pulseLight {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.1;
    }
}

@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .input_holder {
    flex-direction: row;
    align-items: stretch;
}footer .subscribe-access {
    white-space: nowrap;
}
}

@media (max-width: 767px) {footer .online-tools {
    padding: 60px 0 30px;
}footer .submit-feedback {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    padding: 20px;
}footer .nav-learning h5, footer .subscribe_holder h5 {
    margin-bottom: 20px;
}footer .nav-learning h5::after {
    bottom: -8px;
}footer .subscribe_holder {
    padding: 25px 20px;
}footer .design-res {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .online-tools {
    padding: 50px 0 20px;
}footer .submit-feedback {
    padding: 15px;
    margin-bottom: 30px;
}footer .header-lead::after {
    width: 50px;
}footer .nav-learning h5, footer .subscribe_holder h5 {
    font-size: calc(21px - 2px);
}footer .subscribe_holder p, footer .main-page a, footer .info_item p, footer .info_item a {
    font-size: calc(17px - 1px);
}footer .subscribe_holder {
    padding: 20px 15px;
}footer .input_holder input[type="email"],
    footer .subscribe-access {
    padding: 12px 15px;
}}.membership-plan {
    background: linear-gradient(135deg, rgb(188,188,194) 0%, #ffffff 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}.membership-plan::before {
    height: 100%;
    z-index: 1;
    content: "";
    background: linear-gradient(45deg, rgb(153,153,158,0.5) 0%, transparent 40%);
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}.membership-plan .container {
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
}.membership-plan .promo-rates {
    flex-direction: column;
    display: flex;
}.membership-plan .trial-rates {
    margin-right: auto;
    order: 1;
    margin-bottom: 3rem;
    text-align: center;
    margin-left: auto;
    max-width: 800px;
}.membership-plan .trial-rates h2 {
    margin-bottom: 1rem;
    font-size: 31px;
    display: inline-block;
    font-weight: 700;
    position: relative;
    color: #000000;
}.membership-plan .trial-rates h2::after {
    transform: translateX(-50%);
    width: 80px;
    position: absolute;
    left: 50%;
    height: 3px;
    bottom: -10px;
    content: "";
    background: rgb(153,153,158);
}.membership-plan .learning-deals {
    font-size: 16px;
    max-width: 600px;
    line-height: 1.6;
    overflow-wrap: break-word;
    color: #000000;
    word-break: break-word;
    margin: 0 auto;
}.membership-plan .learning-fee {
    gap: 2rem;
    order: 2;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin-top: 2rem;
    display: grid;
}.membership-plan .learning-fees {
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    position: relative;
    display: block;
    text-decoration: none;
}.membership-plan .learning-fees:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px) scale(1.02);
}.membership-plan .cost-options {
    flex-direction: column;
    display: flex;
    height: 100%;
}.membership-plan .plan-options {
    overflow-wrap: break-word;
    flex-grow: 1;
    padding: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    word-break: break-word;
    flex-direction: column;
}.membership-plan .plan-options::before {
    background: linear-gradient(135deg, transparent 0%, #ffffff 100%);
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    position: absolute;
    opacity: 0.7;
    z-index: -1;
}.membership-plan .plan-options h3 {
    position: relative;
    color: #000000;
    padding-bottom: 0.5rem;
    font-weight: 700;
    font-size: calc(21px * 1.2);
    margin-bottom: 1.5rem;
}.membership-plan .plan-options h3::after {
    background: rgb(118,118,121);
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    height: 2px;
    width: 40px;
    transition: width 0.3s ease;
}.membership-plan .learning-fees:hover .plan-options h3::after {
    width: 80px;
}.membership-plan .study-packages {
    font-size: calc(21px * 1.5);
    color: rgb(153,153,158);
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: inline-block;
    position: relative;
}.membership-plan .study-packages::before {
    width: 0;
    height: 2px;
    position: absolute;
    transition: width 0.3s ease;
    content: "";
    left: 0;
    bottom: -5px;
    background: rgb(153,153,158);
}.membership-plan .learning-fees:hover .study-packages::before {
    width: 100%;
}.membership-plan .plan-options p {
    color: #000000;
    line-height: 1.6;
    word-break: break-word;
    margin-top: auto;
    font-size: 16px;
    overflow-wrap: break-word;
}.membership-plan .img-panel {
    position: relative;
    height: 200px;
    transition: transform 0.5s ease;
    overflow: hidden;
}.membership-plan .img-panel::after {
    content: "";
    width: 100%;
    left: 0;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    top: 0;
    position: absolute;
}.membership-plan .learning-fees:hover .img-panel {
    transform: scale(1.05);
}.membership-plan .learning-fees:nth-child(odd) .cost-options {
    flex-direction: column-reverse;
}.membership-plan .learning-fees:nth-child(3n+1) {
    border-top: 3px solid rgb(153,153,158);
}.membership-plan .learning-fees:nth-child(3n+2) {
    border-top: 3px solid rgb(118,118,121);
}.membership-plan .learning-fees:nth-child(3n+3) {
    border-top: 3px solid #000000;
}

@media (min-width: 768px) {.membership-plan .promo-rates {
    gap: 4rem;
    align-items: center;
    flex-direction: row;
}.membership-plan .trial-rates {
    margin-bottom: 0;
    text-align: left;
    order: 2;
    flex: 0 0 30%;
}.membership-plan .trial-rates h2 {
    text-align: left;
}.membership-plan .trial-rates h2::after {
    left: 0;
    transform: none;
}.membership-plan .learning-deals {
    text-align: left;
    margin: 0;
}.membership-plan .learning-fee {
    order: 1;
    flex: 0 0 65%;
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 992px) {.membership-plan .learning-fee {
    grid-template-columns: repeat(2, 1fr);
}.membership-plan .learning-fees:nth-child(4n+1) {
    transform: translateY(20px);
}.membership-plan .learning-fees:nth-child(4n+3) {
    transform: translateY(-20px);
}.membership-plan .learning-fees:hover {
    transform: translateY(0) scale(1.02);
}
}

@media (max-width: 767px) {.membership-plan {
    padding: 4rem 0;
}.membership-plan .plan-options {
    padding: 1.5rem;
}.membership-plan .plan-options h3 {
    font-size: 21px;
}.membership-plan .study-packages {
    font-size: 21px;
}.membership-plan .plan-options p {
    line-height: 1.5;
    max-height: 150px;
    font-size: calc(16px * 0.9);
    overflow-y: auto;
}.membership-plan .img-panel {
    height: 150px;
}
}

@media (max-width: 480px) {.membership-plan .learning-fee {
    grid-template-columns: 1fr;
}.membership-plan .trial-rates h2 {
    font-size: calc(31px * 0.8);
}.membership-plan .learning-deals {
    font-size: calc(16px * 0.9);
}.membership-plan .plan-options p {
    max-height: 120px;
}}.training-method {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(118,118,121,0.5) 100%);
    overflow: hidden;
    position: relative;
}.training-method::before {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 0.03) 15px,
        rgba(255, 255, 255, 0.03) 30px
    );
    z-index: 1;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    left: 0;
    position: absolute;
}.training-method::after {
    opacity: 0.7;
    transform: scale(2);
    animation: pulse 15s infinite alternate ease-in-out;
    right: -50%;
    top: -50%;
    background: radial-gradient(
        circle at center,
        rgb(153,153,158,0.5) 0%,
        transparent 70%
    );
    content: '';
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
}.training-method .skill-space {
    padding: 0 30px;
    z-index: 2;
    transform-style: preserve-3d;
    position: relative;
    transition: transform 0.5s ease-out;
    margin: 0 auto;
    max-width: 1200px;
    transform: perspective(1000px) rotateX(2deg);
}.training-method .skill-space:hover {
    transform: perspective(1000px) rotateX(0deg);
}.training-method h2 {
    position: relative;
    transform: translateZ(30px);
    padding-bottom: 15px;
    font-size: 38px;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}.training-method h2::after {
    transform-origin: left center;
    left: 0;
    height: 3px;
    background: rgb(153,153,158);
    width: 80px;
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: 0;
    position: absolute;
    content: '';
}.training-method .skill-space:hover h2::after {
    transform: scaleX(1.5);
}.training-method .word-box {
    padding: 40px;
    border-left: 4px solid rgb(153,153,158);
    transform: translateZ(20px);
    backdrop-filter: blur(10px);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1), 
                -20px -20px 60px rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
}.training-method .word-box::before {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0.1;
    content: '';
    height: 100%;
    background: linear-gradient(
        to right,
        rgb(153,153,158,0.5) 0%,
        transparent 100%
    );
    top: 0;
    z-index: -1;
}.training-method .word-box:hover {
    transform: translateZ(40px) translateX(5px);
    box-shadow: 30px 30px 80px rgba(0, 0, 0, 0.15), 
                -30px -30px 80px rgba(255, 255, 255, 0.07);
}.training-method p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 0;
    color: #ffffff;
    z-index: 2;
    position: relative;
    font-size: 14px;
    line-height: 1.8;
}.training-method p::first-letter {
    font-size: 1.5em;
    color: rgb(153,153,158);
    font-weight: 700;
}.training-method .word-box:hover p {
    transform: scale(1.01);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(2);
    }
    50% {
        opacity: 0.7;
        transform: scale(2.2);
    }
}

@media (max-width: 991px) {.training-method {
    padding: 80px 0;
}.training-method h2 {
    font-size: calc(38px * 0.9);
    margin-bottom: 30px;
}.training-method .word-box {
    padding: 30px;
}
}

@media (max-width: 767px) {.training-method {
    padding: 60px 0;
}.training-method .skill-space {
    transform: perspective(800px) rotateX(1deg);
    padding: 0 20px;
}.training-method h2 {
    margin-bottom: 25px;
    transform: translateZ(20px);
    font-size: calc(38px * 0.8);
}.training-method .word-box {
    transform: translateZ(15px);
    padding: 25px;
}.training-method .word-box:hover {
    transform: translateZ(25px) translateX(3px);
}.training-method p {
    line-height: 1.7;
    font-size: calc(14px * 0.95);
}
}

@media (max-width: 480px) {.training-method {
    padding: 50px 0;
}.training-method .skill-space {
    transform: perspective(600px) rotateX(0.5deg);
    padding: 0 15px;
}.training-method h2 {
    margin-bottom: 20px;
    font-size: calc(38px * 0.7);
    transform: translateZ(10px);
}.training-method h2::after {
    width: 60px;
    height: 2px;
}.training-method .word-box {
    transform: translateZ(10px);
    padding: 20px;
    border-left-width: 3px;
}.training-method .word-box:hover {
    transform: translateZ(15px) translateX(2px);
}.training-method p {
    line-height: 1.6;
    font-size: calc(14px * 0.9);
}.training-method p::first-letter {
    font-size: 1.3em;
}}.statistical-summary {
    overflow: hidden;
    isolation: isolate;
    padding: 120px 0;
    position: relative;
    color: #ffffff;
}.statistical-summary::before {
    left: 0;
    opacity: 0.92;
    background-color: #000000;
    z-index: -2;
    position: absolute;
    height: 100%;
    content: '';
    width: 100%;
    top: 0;
}.statistical-summary::after {
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgb(153,153,158,0.5) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgb(118,118,121,0.5) 0%, transparent 50%);
    position: absolute;
    content: '';
    left: 0;
    opacity: 0.4;
    width: 100%;
    top: 0;
}.statistical-summary .container {
    max-width: 1400px;
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
}.statistical-summary .statistics-reasons {
    gap: 30px;
    grid-template-areas:
        "header minisvg"
        "description description"
        "items items";
    position: relative;
    grid-template-rows: auto auto auto;
    grid-template-columns: 3fr 1fr;
    margin: 0 auto;
    display: grid;
    z-index: 1;
}.statistical-summary .study-elevation {
    align-items: flex-start;
    display: flex;
    justify-content: flex-end;
    grid-area: minisvg;
}.statistical-summary .study-elevation svg {
    fill: rgb(153,153,158);
    filter: drop-shadow(0 0 12px rgb(153,153,158,0.5));
    height: 80px;
    animation: pulse 3s infinite alternate ease-in-out;
    width: 80px;
}.statistical-summary .study-elevation svg path {
    stroke-width: 0.5;
    stroke: #ffffff;
    fill: rgb(153,153,158);
}.statistical-summary .statistics-points {
    letter-spacing: 1px;
    display: flex;
    grid-area: header;
    font-size: 36px;
    align-items: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}.statistical-summary .gain-study {
    padding: 20px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    max-width: 85%;
    line-height: 1.7;
    opacity: 0.9;
    grid-area: description;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #ffffff;
    border-radius: 16px;
    backdrop-filter: blur(5px);
}.statistical-summary .gain-study::before {
    content: '';
    right: -60px;
    border-radius: 50%;
    position: absolute;
    opacity: 0.6;
    border: 1px solid rgb(153,153,158,0.5);
    animation: rotate 60s linear infinite;
    height: 120px;
    top: -60px;
    width: 120px;
}.statistical-summary .gain-study::after {
    border-radius: 50%;
    animation: rotate 40s linear infinite reverse;
    bottom: -40px;
    opacity: 0.6;
    border: 1px solid rgb(118,118,121,0.5);
    left: -40px;
    height: 80px;
    position: absolute;
    content: '';
    width: 80px;
}.statistical-summary .extra-statistics {
    position: relative;
    padding-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
    grid-area: items;
}.statistical-summary .extra-statistics::before {
    position: absolute;
    width: 90%;
    height: 1px;
    top: 0;
    transform: translateX(-50%);
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    left: 50%;
    content: '';
    opacity: 0.5;
}.statistical-summary .key-classes {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    flex: 1 1 200px;
    min-width: 220px;
    max-width: 280px;
    height: 220px;
}.statistical-summary .key-classes:hover {
    transform: translateY(-10px) rotate3d(1, 2, 0, 5deg);
    z-index: 2;
}.statistical-summary .stat_item_inner {
    backdrop-filter: blur(5px);
    position: relative;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    justify-content: center;
    width: 100%;
    align-items: center;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    border-radius: 16px;
}.statistical-summary .key-classes::before,
.statistical-summary .key-classes::after {
    border-radius: 50%;
    position: absolute;
    background: rgb(153,153,158,0.5);
    content: '';
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0;
}.statistical-summary .key-classes::before {
    width: 120px;
    height: 120px;
    right: -60px;
    top: -60px;
}.statistical-summary .key-classes::after {
    width: 100px;
    bottom: -50px;
    height: 100px;
    left: -50px;
    background: rgb(118,118,121,0.5);
}.statistical-summary .key-classes:hover::before,
.statistical-summary .key-classes:hover::after {
    opacity: 0.2;
}.statistical-summary .fast-upgrade {
    margin-bottom: 15px;
    position: relative;
}.statistical-summary .fast-upgrade::after {
    filter: blur(15px);
    content: '';
    top: 50%;
    border-radius: 50%;
    position: absolute;
    width: 40px;
    height: 40px;
    left: 50%;
    background: rgb(153,153,158,0.5);
    opacity: 0.5;
    z-index: -1;
    transform: translate(-50%, -50%);
}.statistical-summary .fast-upgrade svg {
    width: 45px;
    height: 45px;
    z-index: 1;
    position: relative;
    fill: rgb(153,153,158);
    transition: transform 0.3s ease;
}.statistical-summary .fast-upgrade svg path {
    stroke: #ffffff;
    fill: rgb(153,153,158);
    stroke-width: 0.5;
}.statistical-summary .key-classes:hover .fast-upgrade svg {
    transform: scale(1.1);
}.statistical-summary .key-classes span {
    background: linear-gradient(to right, #ffffff, rgb(118,118,121));
    margin-bottom: 10px;
    font-size: calc(36px * 1.1);
    -webkit-text-fill-color: transparent;
    background-clip: text !important;
    text-fill-color: transparent;
    position: relative;
    display: block;
    font-weight: 700;
    -webkit-background-clip: text !important;
}.statistical-summary .key-classes p {
    font-size: 15px;
    margin: 0;
    line-height: 1.4;
    max-width: 90%;
    opacity: 0.9;
    color: #ffffff;
}.statistical-summary .stat_item_inner::before {
    opacity: 0;
    left: -2px;
    position: absolute;
    content: '';
    background: linear-gradient(45deg, transparent, rgb(153,153,158,0.5), transparent);
    top: -2px;
    transition: opacity 0.4s ease;
    border-radius: calc(16px + 2px);
    right: -2px;
    z-index: -1;
    bottom: -2px;
}.statistical-summary .key-classes:hover .stat_item_inner::before {
    opacity: 1;
}.statistical-summary .stat_item_inner::after {
    opacity: 0;
    left: 0;
    height: 30%;
    width: 100%;
    animation: shine 3s infinite;
    position: absolute;
    top: 0;
    content: '';
    transition: opacity 0.3s ease;
    transform: translateY(-100%);
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05), transparent);
}.statistical-summary .key-classes:hover .stat_item_inner::after {
    opacity: 1;
}.statistical-summary .statistics-points::before {
    position: absolute;
    content: '';
    width: 50px;
    background: rgb(153,153,158);
    left: 0;
    height: 3px;
    border-radius: 2px;
    bottom: -10px;
}.statistical-summary .statistics-points::after {
    width: 20px;
    content: '';
    bottom: -10px;
    left: 60px;
    border-radius: 2px;
    background: rgb(118,118,121);
    height: 3px;
    position: absolute;
}.statistical-summary::before {
    background-image: 
        linear-gradient(to right, #000000 1px, transparent 1px),
        linear-gradient(to bottom, #000000 1px, transparent 1px);
    background-position: center center;
    background-size: 20px 20px;
    opacity: 0.3;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes shine {
    0% {
        transform: translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateY(200%) rotate(30deg);
    }
}

@media screen and (max-width: 1200px) {.statistical-summary .key-classes {
    flex: 1 1 180px;
    height: 200px;
    min-width: 200px;
}
}

@media screen and (max-width: 992px) {.statistical-summary {
    padding: 100px 0;
}.statistical-summary .statistics-reasons {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-template-areas:
            "minisvg"
            "header"
            "description"
            "tech-training";
}.statistical-summary .study-elevation {
    margin-bottom: 20px;
    justify-content: center;
}.statistical-summary .statistics-points {
    justify-content: center;
    text-align: center;
}.statistical-summary .statistics-points::before,
    .statistical-summary .statistics-points::after {
    left: 50%;
}.statistical-summary .statistics-points::before {
    transform: translateX(calc(-50% - 10px));
}.statistical-summary .statistics-points::after {
    transform: translateX(calc(-50% + 30px));
}.statistical-summary .gain-study {
    max-width: 90%;
}
}

@media screen and (max-width: 768px) {.statistical-summary {
    padding: 80px 0;
}.statistical-summary .statistics-points {
    font-size: calc(36px * 0.9);
}.statistical-summary .gain-study {
    font-size: calc(15px * 0.95);
    max-width: 95%;
    padding: 15px;
}.statistical-summary .key-classes {
    flex: 1 1 170px;
    min-width: 170px;
    height: 190px;
}.statistical-summary .key-classes span {
    font-size: 36px;
}.statistical-summary .key-classes p {
    font-size: calc(15px * 0.9);
}
}

@media screen and (max-width: 576px) {.statistical-summary {
    padding: 60px 0;
}.statistical-summary .study-elevation svg {
    height: 60px;
    width: 60px;
}.statistical-summary .gain-study {
    max-width: 100%;
    padding: 15px 10px;
}.statistical-summary .key-classes {
    flex: 1 1 100%;
    min-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
}.statistical-summary .extra-statistics {
    flex-direction: column;
}}

.statistical-summary .key-classes:nth-child(1) {
    transform: translateY(-5px);
}.statistical-summary .key-classes:nth-child(2) {
    transform: translateY(5px);
}.statistical-summary .key-classes:nth-child(3) {
    transform: translateY(-8px);
}.statistical-summary .key-classes:nth-child(4) {
    transform: translateY(8px);
}.statistical-summary .key-classes:hover {
    transform: translateY(-10px) rotate3d(1, 2, 0, 5deg);
}.statistical-summary .container::before {
    border: 1px solid rgb(118,118,121,0.5);
    height: 60px;
    content: '';
    width: 60px;
    opacity: 0.3;
    animation: rotate 30s linear infinite;
    right: -30px;
    top: -30px;
    position: absolute;
    border-radius: 10px;
}.statistical-summary .container::after {
    position: absolute;
    width: 40px;
    border: 1px solid rgb(153,153,158,0.5);
    left: -20px;
    content: '';
    opacity: 0.3;
    transform: rotate(45deg);
    height: 40px;
    animation: rotate 25s linear infinite reverse;
    bottom: -20px;
}.our-mission {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(188,188,194) 0%, rgba(245, 245, 250, 1) 100%);
    padding: 100px 0;
}.our-mission::before {
    opacity: 0.07;
    background: linear-gradient(120deg, rgb(153,153,158,0.5) 0%, transparent 80%);
    transform: rotate(-15deg) skewX(15deg);
    right: -5%;
    height: 70%;
    z-index: 1;
    top: -10%;
    position: absolute;
    width: 40%;
    content: "";
}.our-mission::after {
    height: 60%;
    bottom: -10%;
    transform: rotate(10deg) skewX(-10deg);
    left: -5%;
    z-index: 1;
    position: absolute;
    content: "";
    opacity: 0.05;
    width: 50%;
    background: linear-gradient(240deg, rgb(118,118,121,0.5) 0%, transparent 80%);
}.our-mission .container {
    padding: 0 20px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}.our-mission h1 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    font-weight: 700;
    transform: translateZ(0);
    color: #000000;
    position: relative;
}.our-mission h1::after {
    width: 80px;
    position: absolute;
    bottom: -15px;
    background: linear-gradient(90deg, rgb(153,153,158) 0%, rgb(118,118,121) 100%);
    transform: translateX(-50%);
    height: 4px;
    content: "";
    left: 50%;
    border-radius: 2px;
}.our-mission .training-experts {
    position: relative;
}.our-mission .training-experts ul {
    list-style: none;
    gap: 50px;
    display: grid;
    padding: 0;
    margin: 0;
    grid-template-columns: 1fr;
}.our-mission .expert-learnings {
    border-radius: 5px;
    background-color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 40px 35px;
    transform: translateY(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05),
                0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}.our-mission .expert-learnings::before {
    top: 0;
    background: linear-gradient(to bottom, rgb(153,153,158), rgb(118,118,121));
    opacity: 0.8;
    left: 0;
    width: 4px;
    content: "";
    position: absolute;
    height: 100%;
}.our-mission .expert-learnings:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08),
                0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
}.our-mission .expert-learnings h4 {
    position: relative;
    margin-bottom: 20px;
    color: #000000;
    display: inline-block;
    font-size: 20px;
    margin-top: 0;
    font-weight: 700;
}.our-mission .expert-learnings h4::after {
    width: 100%;
    position: absolute;
    height: 2px;
    transform: scaleX(0.3);
    background: linear-gradient(90deg, rgb(153,153,158,0.5) 0%, transparent 100%);
    bottom: -8px;
    transform-origin: left;
    transition: transform 0.4s ease;
    left: 0;
    content: "";
}.our-mission .expert-learnings:hover h4::after {
    transform: scaleX(1);
}.our-mission .expert-learnings div {
    font-weight: 400;
    line-height: 1.8;
    max-height: 300px;
    padding-right: 15px;
    font-size: 13px;
    color: #000000;
    opacity: 0.9;
    overflow-y: auto;
}.our-mission .expert-learnings div::-webkit-scrollbar {
    width: 4px;
}.our-mission .expert-learnings div::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 2px;
}.our-mission .expert-learnings div::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: rgb(153,153,158,0.5);
}.our-mission .expert-learnings:nth-child(2) {
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}.our-mission .expert-learnings:nth-child(1) {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    transform: translateY(30px);
}

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

@media (min-width: 768px) {.our-mission .training-experts ul {
    grid-template-columns: 1fr 1fr;
}.our-mission h1 {
    margin-bottom: 70px;
    font-size: calc(48px * 1.1);
}.our-mission h1::after {
    width: 100px;
}.our-mission .expert-learnings {
    padding: 45px 40px;
}.our-mission .expert-learnings div {
    max-height: 350px;
}
}

@media (min-width: 992px) {.our-mission {
    padding: 120px 0;
}.our-mission .container {
    padding: 0 40px;
}.our-mission h1 {
    font-size: calc(48px * 1.2);
    margin-bottom: 80px;
}.our-mission h1::after {
    width: 120px;
    height: 5px;
    bottom: -20px;
}.our-mission .expert-learnings {
    padding: 50px 45px;
}.our-mission .expert-learnings::before {
    width: 5px;
}.our-mission .expert-learnings h4 {
    margin-bottom: 25px;
    font-size: calc(20px * 1.1);
}
}

@media (max-width: 767px) {.our-mission {
    padding: 70px 0;
}.our-mission h1 {
    font-size: calc(48px * 0.9);
    margin-bottom: 40px;
}.our-mission h1::after {
    bottom: -10px;
    width: 60px;
    height: 3px;
}.our-mission .expert-learnings {
    padding: 30px 25px;
}.our-mission .expert-learnings h4 {
    font-size: calc(20px * 0.9);
    margin-bottom: 15px;
}.our-mission .expert-learnings div {
    font-size: calc(13px * 0.95);
    line-height: 1.6;
    max-height: 250px;
}
}