* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}a {
    color: inherit;
    text-decoration: none;
}.lesson-cta-Ev {
    flex: 0 0 auto;
}@keyframes glow_scrollbar { 0% { box-shadow: 0 0 5px rgba(0,0,0,0.2); } 50% { box-shadow: 0 0 15px rgba(0,0,0,0.5); } 100% { box-shadow: 0 0 5px rgba(0,0,0,0.2); } }

::-webkit-scrollbar {
    padding: 4px;
    height: 6px;
    width: 16px;
}::-webkit-scrollbar-button {
    background: rgb(85,99,116);
}::-webkit-scrollbar-track {
    background: rgb(118,133,149);
}::-webkit-scrollbar-track:active {
    background: rgb(85,99,116);
}::-webkit-scrollbar-thumb {
    min-height: 89px;
    background: rgb(152,168,183);
    border-radius: 18.2em;
    animation: glow_scrollbar 2.8s ease 4;
    border: 2px ridge rgb(152,168,183);
}::-webkit-scrollbar-thumb:hover {
    border-color: rgb(118,133,149,0.5);
}::-webkit-scrollbar-thumb:active {
    background: rgb(255, 255, 255, 0.5);
    box-shadow: inset -2px -1px 11px 6px rgba(0, 0, 0, 0.3);
}html,body {
    min-height: 100%;
    color: #000000;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
    height: 100%;
}.nav-lesson-Lb {
    flex: 1 0 auto;
}.container {
    width: 1213px;
    max-width: 100%;
    margin: auto;
}header,footer {
    width: 100%;
}.wrapping-container-xC {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    height: 100%;
}svg {
    height: 30px;
    width: 30px;
}
@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 {
    z-index: 100;
    padding: 1rem 0;
    width: 100%;
    background: rgb(152,168,183);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}header::before {
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 0;
    z-index: 0;
    height: 100%;
    content: '';
    width: 100%;
    background: linear-gradient(to right, 
        rgb(118,133,149,0.5) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgb(85,99,116,0.5) 100%);
}header .container {
    padding: 0 2%;
    position: relative;
    margin: 0;
    max-width: 100%;
    z-index: 1;
    width: 100%;
}header .main-lead-Sc {
    grid-template-columns: 1fr 3fr 1fr;
    gap: 1rem;
    grid-template-areas:
        "logo logo logo"
        "left menu right";
    display: grid;
    align-items: center;
}header .main-start-gp {
    text-decoration: none;
    position: relative;
    justify-content: center;
    display: flex;
    grid-area: logo;
    align-items: center;
    padding: 0.5rem 1rem;
}header .main-start-gp::after {
    background: linear-gradient(90deg, 
        transparent, 
        rgb(118,133,149), 
        rgb(85,99,116), 
        rgb(118,133,149), 
        transparent);
    width: 50%;
    left: 50%;
    height: 2px;
    position: absolute;
    transform: translateX(-50%);
    bottom: 0;
    content: '';
}header .main-start-gp svg {
    transition: all 0.3s ease;
    height: auto;
    width: 160px;
}header .main-start-gp:hover svg {
    transform: translateY(-3px);
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}header .header-site-Mf {
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    justify-content: center;
    padding: 0.6rem;
    gap: 0.5rem;
    border-radius: 20px;
    grid-area: menu;
    background: rgba(255, 255, 255, 0.5);
}header .first-class-vf {
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
    border-radius: 10px;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    font-size: 17px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    color: #000000;
    font-family: Arial, sans-serif;
}header .first-class-vf:hover {
    box-shadow: 0 3px 8px rgb(118,133,149,0.5);
    transform: translateY(-2px);
    color: #ffffff;
    background: linear-gradient(135deg, rgb(118,133,149), rgb(85,99,116));
}

@media (max-width: 991px) {header .main-start-gp svg {
    width: 140px;
}header .header-site-Mf {
    padding: 0.5rem;
    gap: 0.4rem;
}header .first-class-vf {
    font-size: calc(17px - 1px);
    padding: 0.35rem 0.6rem;
}
}

@media (max-width: 767px) {header .main-lead-Sc {
    grid-template-areas:
            "logo"
            "header-site-Mf";
    grid-template-columns: 1fr;
}header .main-start-gp {
    padding: 0.4rem;
}header .main-start-gp svg {
    width: 130px;
}header .header-site-Mf {
    flex-wrap: wrap;
    padding: 0.4rem;
}header .first-class-vf {
    font-size: calc(17px - 1px);
    padding: 0.3rem 0.5rem;
}
}

@media (max-width: 480px) {header {
    padding: 0.8rem 0;
}header .main-start-gp svg {
    width: 120px;
}header .header-site-Mf {
    padding: 0.4rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
}header .header-site-Mf::-webkit-scrollbar {
    height: 2px;
}header .header-site-Mf::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(118,133,149);
}header .first-class-vf {
    flex-shrink: 0;
    white-space: nowrap;
}}.privacy-holder-gU {
    color: #000000;
    border: 2px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    background: #ffffff;
    max-width: 1100px;
    padding: 50px;
    position: relative;
    font-family: Arial, sans-serif;
    overflow: hidden;
    margin: 0 auto;
}.privacy-holder-gU::before,
.privacy-holder-gU::after {
    background: rgb(85,99,116,0.5);
    border-radius: 50%;
    position: absolute;
    content: '';
    z-index: -1;
}.privacy-holder-gU::before {
    width: 200px;
    top: -50px;
    height: 200px;
    right: -50px;
}.privacy-holder-gU::after {
    width: 300px;
    bottom: -100px;
    height: 300px;
    left: -100px;
}.privacy-holder-gU h1 {
    border-bottom: 3px dashed rgb(118,133,149);
    color: rgb(118,133,149);
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 38px;
    padding-bottom: 10px;
    font-weight: 700;
}.privacy-holder-gU h2 {
    border-left: 8px double rgb(85,99,116);
    font-size: 31px;
    padding-left: 20px;
    color: rgb(85,99,116);
    position: relative;
    margin-top: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}.privacy-holder-gU h2::before {
    background: rgb(118,133,149);
    content: '';
    position: absolute;
    left: -15px;
    width: 10px;
    transform: translateY(-50%);
    border-radius: 50%;
    top: 50%;
    height: 10px;
}.privacy-holder-gU ul {
    background: rgb(85,99,116,0.5);
    border: 1px solid rgb(85,99,116,0.5);
    list-style: none;
    margin: 20px 0;
    border-radius: 10px;
    padding-left: 20px;
}.privacy-holder-gU ul li {
    position: relative;
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 20px;
    line-height: 1.6;
}.privacy-holder-gU ul li::before {
    top: 50%;
    left: 0;
    color: rgb(118,133,149);
    position: absolute;
    content: '•';
    transform: translateY(-50%);
    font-size: 1.5em;
}.privacy-holder-gU p, .privacy-holder-gU span, .privacy-holder-gU div {
    margin-bottom: 20px;
    background: rgb(118,133,149,0.5);
    padding: 10px;
    color: #000000;
    line-height: 1.8;
    border-left: 4px solid rgb(118,133,149,0.5);
    border-radius: 10px;
    font-size: 15px;
}.privacy-holder-gU h3, .privacy-holder-gU h4, .privacy-holder-gU h5, .privacy-holder-gU h6 {
    font-size: 23px;
    margin-bottom: 15px;
    border-left: 5px solid rgb(118,133,149);
    color: rgb(118,133,149);
    margin-top: 25px;
    padding-left: 15px;
    position: relative;
    font-weight: 600;
}.privacy-holder-gU h3::after, .privacy-holder-gU h4::after, .privacy-holder-gU h5::after, .privacy-holder-gU h6::after {
    height: 2px;
    background: rgb(85,99,116);
    position: absolute;
    bottom: -5px;
    content: '';
    width: 20px;
    left: 0;
}

@media only screen and (max-width: 800px) {.privacy-holder-gU {
    padding: 30px;
}.privacy-holder-gU h1 {
    font-size: calc(23px - 4px);
}.privacy-holder-gU h2 {
    font-size: calc(23px - 3px);
}.privacy-holder-gU h3, .privacy-holder-gU h4, .privacy-holder-gU h5, .privacy-holder-gU h6 {
    font-size: calc(23px - 2px);
}.privacy-holder-gU p, .privacy-holder-gU span, .privacy-holder-gU div, .privacy-holder-gU ul li {
    font-size: calc(15px - 2px);
}}.plan-list-item-Mb {
    position: relative;
    background-color: rgb(152,168,183);
    overflow: hidden;
    padding: 5rem 0;
}.plan-list-item-Mb::before {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.07;
    content: "";
    width: 12rem;
    height: 12rem;
    right: -3rem;
    top: -3rem;
    transform: rotate(15deg);
    position: absolute;
    background: linear-gradient(135deg, rgb(118,133,149), rgb(85,99,116));
}.plan-list-item-Mb::after {
    background: linear-gradient(45deg, rgb(85,99,116), rgb(118,133,149,0.5));
    opacity: 0.05;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    position: absolute;
    width: 18rem;
    height: 18rem;
    content: "";
    left: -5rem;
    z-index: 0;
    bottom: -5rem;
    transform: rotate(-10deg);
}.plan-list-item-Mb .container {
    position: relative;
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: 1200px;
    z-index: 1;
}.plan-list-item-Mb .cert-plans-Du {
    flex-direction: column;
    display: flex;
}.plan-list-item-Mb .cost-breakdown-rp {
    position: relative;
    margin-bottom: 3rem;
    order: -1;
}.plan-list-item-Mb .cost-breakdown-rp h2 {
    position: relative;
    margin-bottom: 1rem;
    color: #000000;
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
}.plan-list-item-Mb .cost-breakdown-rp h2::after {
    left: 0;
    bottom: -0.5rem;
    content: "";
    height: 3px;
    background: linear-gradient(90deg, rgb(118,133,149), transparent);
    width: 60%;
    position: absolute;
}.plan-list-item-Mb .member-plans-ZG {
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 1rem;
    font-size: 17px;
    color: #000000;
}.plan-list-item-Mb .study-packages-Is {
    width: 100%;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}.plan-list-item-Mb .basic-rates-VZ {
    text-decoration: none;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    color: #000000;
    overflow: hidden;
    z-index: 2;
}.plan-list-item-Mb .pay-options-Jl {
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    min-height: 480px;
    flex-direction: column;
    transform: translateY(0);
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}.plan-list-item-Mb .basic-rates-VZ:hover .pay-options-Jl {
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}.plan-list-item-Mb .price-plan-SR {
    flex: 1;
    overflow: hidden;
    display: flex;
    padding: 2rem;
    flex-direction: column;
    z-index: 2;
    position: relative;
}.plan-list-item-Mb .price-plan-SR h3 {
    margin-bottom: 0.5rem;
    display: inline-block;
    font-size: calc(23px + 0.1rem);
    color: #000000;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}.plan-list-item-Mb .basic-rates-VZ:hover .price-plan-SR h3 {
    color: rgb(118,133,149);
}.plan-list-item-Mb .program-rate-Rc {
    margin-bottom: 1.5rem;
    font-size: calc(23px + 0.5rem);
    position: relative;
    color: rgb(118,133,149);
    display: block;
    font-weight: 700;
    transition: transform 0.3s ease;
}.plan-list-item-Mb .program-rate-Rc::before {
    transition: transform 0.4s ease;
    width: 3rem;
    transform: scaleX(1);
    left: 0;
    position: absolute;
    height: 2px;
    content: "";
    background-color: rgb(118,133,149,0.5);
    transform-origin: left;
    bottom: -0.75rem;
}.plan-list-item-Mb .basic-rates-VZ:hover .program-rate-Rc::before {
    transform: scaleX(1.5);
}.plan-list-item-Mb .price-plan-SR p {
    word-break: break-word;
    flex-grow: 1;
    line-height: 1.6;
    overflow-wrap: break-word;
    font-size: calc(17px - 0.1rem);
    margin-bottom: 1.5rem;
    color: #000000;
}.plan-list-item-Mb .video-thumbnail-ba {
    width: 100%;
    transition: transform 0.6s ease;
    overflow: hidden;
    position: relative;
    height: 180px;
}.plan-list-item-Mb .video-thumbnail-ba::after {
    top: 0;
    content: "";
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    opacity: 0.7;
    right: 0;
    bottom: 0;
    position: absolute;
    left: 0;
    transition: opacity 0.3s ease;
}.plan-list-item-Mb .basic-rates-VZ:hover .video-thumbnail-ba {
    transform: scale(1.03);
}.plan-list-item-Mb .basic-rates-VZ:hover .video-thumbnail-ba::after {
    opacity: 0.4;
}.plan-list-item-Mb .pay-options-Jl::before {
    width: 100%;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(118,133,149), rgb(85,99,116));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    content: "";
    top: 0;
    height: 5px;
    left: 0;
    position: absolute;
}.plan-list-item-Mb .basic-rates-VZ:hover .pay-options-Jl::before {
    transform: scaleX(1);
}

@media (min-width: 768px) {.plan-list-item-Mb .cert-plans-Du {
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
}.plan-list-item-Mb .cost-breakdown-rp {
    padding-top: 2rem;
    order: 0;
    flex: 0 0 30%;
    margin-bottom: 0;
}.plan-list-item-Mb .study-packages-Is {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    flex: 0 0 70%;
}.plan-list-item-Mb .pay-options-Jl {
    border-radius: 0.25rem;
}
}

@media (max-width: 767px) {.plan-list-item-Mb {
    padding: 3rem 0;
}.plan-list-item-Mb .study-packages-Is {
    margin: 0 auto;
    max-width: 500px;
    grid-template-columns: 1fr;
}.plan-list-item-Mb .cost-breakdown-rp h2 {
    display: block;
    text-align: center;
}.plan-list-item-Mb .cost-breakdown-rp h2::after {
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
}.plan-list-item-Mb .member-plans-ZG {
    text-align: center;
}.plan-list-item-Mb .pay-options-Jl {
    min-height: auto;
}.plan-list-item-Mb .price-plan-SR {
    padding: 1.5rem;
}.plan-list-item-Mb .video-thumbnail-ba {
    height: 160px;
}
}

@media (min-width: 1024px) {.plan-list-item-Mb .study-packages-Is {
    grid-template-columns: repeat(2, 1fr);
}.plan-list-item-Mb .basic-rates-VZ:nth-child(odd) {
    transform: translateY(1.5rem);
}
}

@media (min-width: 1200px) {.plan-list-item-Mb .cost-breakdown-rp {
    padding-top: 4rem;
}.plan-list-item-Mb .basic-rates-VZ:hover {
    z-index: 5;
}.plan-list-item-Mb .study-packages-Is {
    column-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
}
}

@media (prefers-reduced-motion: reduce) {.plan-list-item-Mb .basic-rates-VZ,
    .plan-list-item-Mb .pay-options-Jl,
    .plan-list-item-Mb .video-thumbnail-ba,
    .plan-list-item-Mb .program-rate-Rc::before,
    .plan-list-item-Mb .pay-options-Jl::before {
    transition: none;
}}.company-overview-Yb {
    color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}.company-overview-Yb::before {
    top: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.65) 50%,
        rgba(0, 0, 0, 0.75) 100%);
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    z-index: 1;
}.company-overview-Yb .container {
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
}.company-overview-Yb .text-column-Rh {
    padding: 40px;
    backdrop-filter: blur(8px);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: perspective(1000px) rotateY(-2deg);
    background: linear-gradient(135deg, 
        rgba(rgb(118,133,149), 0.1) 0%,
        rgba(rgb(85,99,116), 0.15) 100%);
    border-left: 4px solid rgb(118,133,149);
    position: relative;
}.company-overview-Yb .text-column-Rh:hover {
    transform: perspective(1000px) rotateY(0deg);
}.company-overview-Yb .text-column-Rh::before {
    opacity: 0.8;
    height: 70px;
    content: '';
    right: -10px;
    border-right: 2px solid rgb(85,99,116);
    top: -10px;
    width: 70px;
    position: absolute;
    border-top: 2px solid rgb(85,99,116);
}.company-overview-Yb .text-column-Rh::after {
    border-left: 2px solid rgb(85,99,116);
    content: '';
    width: 70px;
    opacity: 0.8;
    border-bottom: 2px solid rgb(85,99,116);
    left: -10px;
    height: 70px;
    position: absolute;
    bottom: -10px;
}.company-overview-Yb h5 {
    color: #ffffff;
    margin: 0 0 20px;
    display: inline-block;
    letter-spacing: 2px;
    position: relative;
    font-size: 23px;
    font-weight: 700;
    padding-bottom: 10px;
    text-transform: uppercase;
}.company-overview-Yb h5::after {
    height: 2px;
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgb(118,133,149), transparent);
    width: 60%;
    left: 0;
    bottom: 0;
}.company-overview-Yb p {
    font-size: calc(15px * 1.1);
    color: #ffffff;
    font-weight: 400;
    margin: 0 0 20px;
}.company-overview-Yb p b {
    font-size: calc(15px * 1.4);
    opacity: 0;
    display: block;
    color: rgb(85,99,116);
    margin-bottom: 10px;
    font-weight: 700;
    padding-left: 15px;
    animation: slideIn 0.8s forwards 0.3s;
    position: relative;
    transform: translateX(-15px);
}.company-overview-Yb p b::before {
    left: 0;
    height: 8px;
    content: '';
    transform: translateY(-50%);
    width: 8px;
    position: absolute;
    top: 50%;
    background-color: rgb(118,133,149);
}.company-overview-Yb ol {
    margin: 0;
    padding: 0;
    counter-reset: item;
    list-style: none;
}.company-overview-Yb ol li {
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    line-height: 1.8;
    column-count: 1;
    animation: fadeIn 1s forwards;
    font-size: 15px;
    hyphens: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    text-align: justify;
    column-gap: 40px;
    padding: 0 0 0 15px;
}.company-overview-Yb ol li::first-letter {
    color: rgb(118,133,149);
    font-weight: 700;
    font-size: 1.4em;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@media (min-width: 768px) {.company-overview-Yb {
    padding: 150px 0;
}.company-overview-Yb .text-column-Rh {
    margin: 0 auto;
    max-width: 90%;
    padding: 60px;
}.company-overview-Yb ol li {
    padding: 0 0 0 25px;
    column-count: 2;
}
}

@media (min-width: 992px) {.company-overview-Yb .text-column-Rh {
    max-width: 80%;
}.company-overview-Yb h5 {
    font-size: calc(23px * 1.2);
}.company-overview-Yb p b {
    font-size: calc(15px * 1.6);
}.company-overview-Yb ol li {
    column-count: 3;
    column-gap: 60px;
}
}

@media (max-width: 767px) {.company-overview-Yb {
    padding: 80px 0;
}.company-overview-Yb .text-column-Rh {
    transform: perspective(1000px) rotateY(0);
    padding: 30px 20px;
}.company-overview-Yb h5 {
    font-size: calc(23px * 0.9);
}.company-overview-Yb p b {
    font-size: calc(15px * 1.2);
}.company-overview-Yb .text-column-Rh::before,
    .company-overview-Yb .text-column-Rh::after {
    width: 40px;
    height: 40px;
}
}

@media (max-width: 480px) {.company-overview-Yb {
    padding: 60px 0;
}.company-overview-Yb .text-column-Rh {
    padding: 25px 15px;
}.company-overview-Yb ol li {
    line-height: 1.6;
    font-size: calc(15px * 0.9);
}
}

@media (hover: hover) {.company-overview-Yb .text-column-Rh:hover::before,
    .company-overview-Yb .text-column-Rh:hover::after {
    height: 90px;
    width: 90px;
    transition: all 0.4s ease-out;
}
}

@media (prefers-reduced-motion: reduce) {.company-overview-Yb .text-column-Rh,
    .company-overview-Yb p b,
    .company-overview-Yb ol li {
    animation: none;
    transition: none;
    transform: none;
}}.learning-system-Gy {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background: rgb(152,168,183);
}.learning-system-Gy::before {
    height: 100%;
    position: absolute;
    z-index: 1;
    content: "";
    width: 100%;
    background: linear-gradient(135deg, rgb(118,133,149,0.5) 0%, transparent 70%);
    opacity: 0.2;
    left: 0;
    top: 0;
}.learning-system-Gy::after {
    content: "";
    width: 100%;
    animation: moveGradient 20s infinite alternate ease-in-out;
    top: -50%;
    right: -50%;
    opacity: 0.3;
    height: 100%;
    background: radial-gradient(circle, rgb(85,99,116,0.5) 0%, transparent 70%);
    position: absolute;
    z-index: 0;
}.learning-system-Gy .creds-sect-cM {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}.learning-system-Gy h3 {
    color: #000000;
    padding: 2rem;
    animation: fadeInDown 0.8s ease-out forwards;
    margin: 0;
    font-size: 36px;
    text-align: center;
    position: relative;
    border-radius: 21px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    font-weight: 700;
}.learning-system-Gy h3::before {
    top: 0;
    z-index: -1;
    position: absolute;
    border-radius: inherit;
    transform: translate(8px, 8px);
    content: "";
    left: 0;
    border: 2px solid rgb(118,133,149,0.5);
    height: 100%;
    width: 100%;
    opacity: 0.5;
    pointer-events: none;
}.learning-system-Gy span {
    background: #ffffff;
    line-height: 1.8;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    border-radius: 21px;
    opacity: 0;
    color: #000000;
    padding: 2rem;
    animation: fadeInUp 0.8s 0.3s ease-out forwards;
}.learning-system-Gy span::before {
    position: absolute;
    border: 2px solid rgb(85,99,116,0.5);
    top: 0;
    z-index: -1;
    left: 0;
    opacity: 0.5;
    pointer-events: none;
    content: "";
    height: 100%;
    border-radius: inherit;
    width: 100%;
    transform: translate(-8px, -8px);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveGradient {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-20%, -20%);
    }
}

@media (max-width: 992px) {.learning-system-Gy {
    padding: 5rem 1.5rem;
}.learning-system-Gy h3 {
    padding: 1.8rem;
    font-size: calc(36px * 0.9);
}.learning-system-Gy span {
    padding: 1.8rem;
}.learning-system-Gy h3::before,
    .learning-system-Gy span::before {
    transform: translate(6px, 6px);
}.learning-system-Gy span::before {
    transform: translate(-6px, -6px);
}
}

@media (max-width: 768px) {.learning-system-Gy {
    padding: 4rem 1rem;
}.learning-system-Gy h3 {
    font-size: calc(36px * 0.8);
    padding: 1.5rem;
}.learning-system-Gy span {
    padding: 1.5rem;
    font-size: calc(12px * 0.95);
}.learning-system-Gy .creds-sect-cM {
    gap: 2rem;
}.learning-system-Gy h3::before,
    .learning-system-Gy span::before {
    transform: translate(4px, 4px);
}.learning-system-Gy span::before {
    transform: translate(-4px, -4px);
}}.course-program-details-oP {
    padding: 7rem 0;
    background: linear-gradient(135deg, rgb(152,168,183) 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}.course-program-details-oP::before {
    opacity: 0.05;
    pointer-events: none;
    background: repeating-linear-gradient(
        45deg,
        rgb(118,133,149,0.5) 0px,
        rgb(118,133,149,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
}.course-program-details-oP::after {
    opacity: 0.15;
    width: 30rem;
    background: radial-gradient(circle, rgb(118,133,149,0.5) 0%, transparent 70%);
    content: "";
    top: -10%;
    position: absolute;
    z-index: 0;
    height: 30rem;
    right: -5%;
}.course-program-details-oP .container {
    padding: 0 1.5rem;
    margin: 0 auto;
    z-index: 1;
    max-width: 1200px;
    position: relative;
}.course-program-details-oP h2 {
    opacity: 0;
    line-height: 1.3;
    text-align: center;
    transform: translateY(20px);
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
    color: #000000;
    font-size: 35px;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}.course-program-details-oP h2::after {
    content: "";
    bottom: -15px;
    height: 4px;
    position: absolute;
    background: linear-gradient(90deg, rgb(118,133,149) 0%, rgb(85,99,116) 100%);
    width: 80px;
    border-radius: 10px;
    transform: translateX(-50%);
    left: 50%;
}.course-program-details-oP .knowledge-map-mw {
    transform: translateY(30px);
    opacity: 0;
    gap: 2.5rem;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}.course-program-details-oP .video-thumbnail-ba {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    height: 350px;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: perspective(1000px) rotateY(-3deg);
    position: relative;
}.course-program-details-oP .video-thumbnail-ba::before {
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    width: 100%;
    content: "";
    z-index: 1;
    top: 0;
    height: 100%;
    position: absolute;
    left: 0;
}.course-program-details-oP .video-thumbnail-ba::after {
    top: -100%;
    left: -100%;
    transform: rotate(45deg);
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    content: "";
    width: 300%;
    position: absolute;
    z-index: 2;
    animation: shimmer 6s infinite linear;
    height: 300%;
}.course-program-details-oP .text-column-Rh {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}.course-program-details-oP .description {
    position: relative;
    padding: 0 0.5rem;
    line-height: 1.7;
    font-weight: 400;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #000000;
}.course-program-details-oP .description:first-of-type {
    position: relative;
    padding-left: 1.25rem;
    border-left: 3px solid rgb(118,133,149);
}.course-program-details-oP .description:nth-of-type(2) {
    position: relative;
    padding-right: 1.25rem;
    border-right: 3px solid rgb(85,99,116);
}.course-program-details-oP .description:first-of-type::before {
    opacity: 0.2;
    width: 20px;
    position: absolute;
    left: -10px;
    background: rgb(118,133,149);
    top: 0;
    height: 20px;
    border-radius: 50%;
    content: "";
}.course-program-details-oP .description:nth-of-type(2)::after {
    width: 20px;
    bottom: 0;
    opacity: 0.2;
    position: absolute;
    height: 20px;
    content: "";
    background: rgb(85,99,116);
    border-radius: 50%;
    right: -10px;
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@media (min-width: 768px) {.course-program-details-oP .knowledge-map-mw {
    flex-direction: row;
    align-items: flex-start;
}.course-program-details-oP .video-thumbnail-ba {
    height: 450px;
    flex: 0 0 45%;
}.course-program-details-oP .text-column-Rh {
    padding-left: 2.5rem;
    flex: 0 0 55%;
}.course-program-details-oP .description {
    font-size: calc(15px + 0.05rem);
}.course-program-details-oP h2 {
    margin-right: auto;
    font-size: calc(35px + 0.2rem);
    margin-left: auto;
    max-width: 80%;
}.course-program-details-oP .video-thumbnail-ba:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(0deg);
}
}

@media (min-width: 992px) {.course-program-details-oP {
    padding: 9rem 0;
}.course-program-details-oP .container {
    padding: 0 3rem;
}.course-program-details-oP .video-thumbnail-ba {
    height: 500px;
}.course-program-details-oP h2 {
    margin-bottom: 4rem;
}.course-program-details-oP .description {
    font-size: calc(15px + 0.1rem);
}
}

@media (max-width: 767px) {.course-program-details-oP {
    padding: 5rem 0;
}.course-program-details-oP h2 {
    margin-bottom: 2rem;
    font-size: calc(35px - 0.2rem);
}.course-program-details-oP .video-thumbnail-ba {
    height: 280px;
}.course-program-details-oP .text-column-Rh {
    gap: 1rem;
}.course-program-details-oP .description {
    font-size: calc(15px - 0.1rem);
}}.tyArea-Dc {
    overflow: hidden;
    background: linear-gradient(145deg, rgb(152,168,183) 0%, rgba(240, 242, 245, 0.9) 100%);
    position: relative;
    padding: 7rem 0;
}.tyArea-Dc::before {
    content: "";
    right: -10%;
    z-index: 0;
    opacity: 0.07;
    top: -5%;
    height: 70%;
    animation: float 15s ease-in-out infinite alternate;
    width: 40%;
    background: linear-gradient(135deg, rgb(118,133,149,0.5) 0%, rgb(85,99,116,0.5) 100%);
    position: absolute;
    transform: rotate(15deg) skewX(-15deg);
}.tyArea-Dc::after {
    height: 60%;
    animation: float 18s ease-in-out infinite alternate-reverse;
    bottom: -5%;
    background: linear-gradient(225deg, rgb(85,99,116,0.5) 0%, rgb(118,133,149,0.5) 100%);
    opacity: 0.05;
    left: -5%;
    transform: rotate(-10deg) skewX(10deg);
    z-index: 0;
    position: absolute;
    width: 30%;
    content: "";
}.tyArea-Dc .container {
    padding: 0 2rem;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}.tyArea-Dc h2 {
    opacity: 0;
    animation: slideUp 0.8s 0.2s ease-out forwards;
    font-size: 29px;
    font-weight: 700;
    transform: translateY(0);
    line-height: 1.3;
    position: relative;
    color: #000000;
    margin-bottom: 3rem;
}.tyArea-Dc h2::after {
    position: absolute;
    transform-origin: left;
    width: 80px;
    transform: scaleX(0);
    animation: expand 1s 0.8s ease-out forwards;
    bottom: -15px;
    background: linear-gradient(90deg, rgb(118,133,149) 0%, rgb(85,99,116) 100%);
    left: 0;
    height: 3px;
    content: "";
}.tyArea-Dc .creds-sect-cM {
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 
              0 5px 15px rgba(0, 0, 0, 0.03);
    background: #ffffff;
    border-left: 4px solid rgb(118,133,149);
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeSlideUp 1s 0.4s ease-out forwards;
    overflow: hidden;
}.tyArea-Dc .creds-sect-cM::before {
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    top: 0;
    height: 150px;
    opacity: 0.1;
    width: 150px;
    position: absolute;
    background: linear-gradient(135deg, rgb(85,99,116,0.5) 0%, transparent 70%);
    right: 0;
    content: "";
}.tyArea-Dc ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.tyArea-Dc li {
    position: relative;
    padding-left: 0;
}.tyArea-Dc li span {
    font-family: Arial, sans-serif;
    transform: translateY(10px);
    font-size: calc(18px + 0.05rem);
    animation: fadeIn 1s 0.7s ease-out forwards;
    line-height: 1.8;
    color: #000000;
    opacity: 0;
    display: block;
}

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

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

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

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

@keyframes float {
  0% {
    transform: rotate(15deg) skewX(-15deg) translateY(0);
  }
  50% {
    transform: rotate(18deg) skewX(-18deg) translateY(-10px);
  }
  100% {
    transform: rotate(15deg) skewX(-15deg) translateY(0);
  }
}

@media screen and (max-width: 992px) {.tyArea-Dc {
    padding: 5rem 0;
}.tyArea-Dc h2 {
    font-size: calc(29px - 0.2rem);
    margin-bottom: 2.5rem;
}.tyArea-Dc .creds-sect-cM {
    padding: 2.5rem;
}
}

@media screen and (max-width: 768px) {.tyArea-Dc {
    padding: 4rem 0;
}.tyArea-Dc h2 {
    font-size: calc(29px - 0.4rem);
    margin-bottom: 2rem;
}.tyArea-Dc h2::after {
    width: 60px;
    bottom: -12px;
}.tyArea-Dc .creds-sect-cM {
    padding: 2rem;
}.tyArea-Dc .creds-sect-cM::before {
    width: 100px;
    height: 100px;
}
}

@media screen and (max-width: 576px) {.tyArea-Dc {
    padding: 3rem 0;
}.tyArea-Dc .container {
    padding: 0 1.5rem;
}.tyArea-Dc h2 {
    line-height: 1.4;
    margin-bottom: 1.8rem;
    font-size: calc(29px - 0.6rem);
}.tyArea-Dc h2::after {
    bottom: -10px;
    width: 50px;
    height: 2px;
}.tyArea-Dc .creds-sect-cM {
    border-left-width: 3px;
    padding: 1.5rem;
}.tyArea-Dc li span {
    font-size: 18px;
    line-height: 1.7;
}}.stay-updated-rv {
    overflow: hidden;
    padding: 4rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(118,133,149,0.5), rgb(85,99,116));
    margin: 2rem 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}.stay-updated-rv::before {
    top: -5%;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    right: -5%;
    width: 40%;
    height: 40%;
    position: absolute;
    background: rgb(118,133,149);
    content: "";
    transform: rotate(-15deg) translateZ(0);
    opacity: 0.1;
}.stay-updated-rv::after {
    transform: rotate(15deg) translateZ(0);
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
    position: absolute;
    height: 35%;
    content: "";
    left: -5%;
    bottom: -5%;
    width: 35%;
    background: rgb(85,99,116);
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.1;
}.stay-updated-rv:hover::before {
    transform: rotate(-10deg) scale(1.05) translateZ(0);
}.stay-updated-rv:hover::after {
    transform: rotate(10deg) scale(1.05) translateZ(0);
}.stay-updated-rv .container {
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}.stay-updated-rv .creds-sect-cM {
    border-left: 4px solid rgb(118,133,149);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 3rem;
    transform: perspective(1000px) rotateX(2deg);
    background: rgba(255, 255, 255, 0.95);
}.stay-updated-rv .creds-sect-cM:hover {
    transform: perspective(1000px) rotateX(0);
}.stay-updated-rv h3 {
    font-size: 19px;
    margin-bottom: 1.5rem;
    transform: translateY(0);
    opacity: 1;
    font-weight: 600;
    line-height: 1.4;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    max-width: 90%;
    color: #000000;
    font-family: Arial, sans-serif;
}.stay-updated-rv:hover h3 {
    transform: translateY(-5px);
}.stay-updated-rv .input_holder {
    gap: 15px;
    align-items: stretch;
    flex-direction: row;
    display: flex;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}.stay-updated-rv .input_holder div {
    position: relative;
    overflow: hidden;
    flex: 1;
}.stay-updated-rv .input_holder input[type="email"] {
    width: 100%;
    outline: none;
    background: #ffffff;
    padding: 0.9rem 1.2rem;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    color: #000000;
    border: 2px solid rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
}.stay-updated-rv .input_holder input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}.stay-updated-rv .input_holder input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgb(118,133,149,0.5);
    border-color: rgb(118,133,149);
}.stay-updated-rv .input_holder input[type="email"]:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
}.stay-updated-rv .input_holder input[type="submit"] {
    cursor: pointer;
    font-size: 19px;
    color: #ffffff;
    white-space: nowrap;
    background: linear-gradient(135deg, rgb(118,133,149), rgb(85,99,116));
    border: none;
    padding: 0.9rem 1.8rem;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    font-family: Arial, sans-serif;
}.stay-updated-rv .input_holder input[type="submit"]:hover {
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}.stay-updated-rv .input_holder input[type="submit"]:active {
    transform: translateY(1px);
}.stay-updated-rv .input_holder input[type="submit"]::after {
    border-radius: 50%;
    top: 50%;
    transition: transform 0.6s, opacity 0.6s;
    background: rgba(255, 255, 255, 0.1);
    width: 150%;
    transform: translate(-50%, -50%) scale(0);
    height: 150%;
    z-index: -1;
    content: '';
    position: absolute;
    left: 50%;
}.stay-updated-rv .input_holder input[type="submit"]:hover::after {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 992px) {.stay-updated-rv {
    padding: 3rem 0;
}.stay-updated-rv .creds-sect-cM {
    padding: 2.5rem;
    transform: perspective(1000px) rotateX(1deg);
}.stay-updated-rv h3 {
    max-width: 100%;
    font-size: calc(19px * 0.9);
}
}

@media (max-width: 768px) {.stay-updated-rv {
    padding: 2.5rem 0;
}.stay-updated-rv .creds-sect-cM {
    padding: 2rem;
    transform: none;
}.stay-updated-rv .input_holder {
    flex-direction: column;
    gap: 12px;
}.stay-updated-rv h3 {
    margin-bottom: 1rem;
    font-size: calc(19px * 0.85);
}.stay-updated-rv .input_holder input[type="email"] {
    padding: 0.8rem 1rem;
}.stay-updated-rv .input_holder input[type="submit"] {
    width: 100%;
    padding: 0.8rem 1rem;
}
}

@media (max-width: 576px) {.stay-updated-rv {
    padding: 2rem 0;
}.stay-updated-rv .creds-sect-cM {
    border-left-width: 3px;
    padding: 1.5rem;
}.stay-updated-rv h3 {
    font-size: calc(19px * 0.8);
}.stay-updated-rv::before,
    .stay-updated-rv::after {
    opacity: 0.07;
}
}

@media (hover: none) {.stay-updated-rv .creds-sect-cM {
    transform: none;
}.stay-updated-rv:hover h3 {
    transform: none;
}.stay-updated-rv .input_holder input[type="submit"]:hover {
    box-shadow: none;
    transform: none;
}}.mentorship-profile-el {
    background: linear-gradient(160deg, rgb(152,168,183) 0%, #000000 100%);
    min-height: 700px;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}.mentorship-profile-el::before {
    z-index: 1;
    animation: breatheGlow 15s ease-in-out infinite alternate;
    width: 100%;
    height: 100%;
    content: "";
    background: 
        radial-gradient(circle at 80% 20%, rgb(118,133,149,0.5) 0%, transparent 35%),
        radial-gradient(circle at 20% 80%, rgb(85,99,116,0.5) 0%, transparent 35%);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
    filter: blur(70px);
}.mentorship-profile-el .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}.mentorship-profile-el .alumni-testimonials-OP {
    display: grid;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto 1fr;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    padding: 3rem;
    position: relative;
    min-height: 580px;
    gap: 30px;
    border-radius: 11px;
}.mentorship-profile-el .alumni-testimonials-OP::before {
    background-size: 200% 200%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgb(118,133,149,0.5), transparent);
    top: 0;
    position: absolute;
    animation: shimmerEffect 10s ease-in-out infinite;
    left: 0;
    width: 100%;
    opacity: 0.2;
    z-index: -1;
    content: "";
}.mentorship-profile-el .video-thumbnail-ba {
    height: 100%;
    z-index: 3;
    grid-column: 2;
    grid-row: 1 / span 2;
    position: relative;
    filter: contrast(1.1) brightness(1.05);
    transform: scale(1) rotate(0deg);
    transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    border-radius: 11px;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.4);
}.mentorship-profile-el .alumni-testimonials-OP:hover .video-thumbnail-ba {
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.5);
    transform: scale(1.05) rotate(2deg);
}.mentorship-profile-el .video-thumbnail-ba::before {
    content: "";
    box-sizing: border-box;
    z-index: 1;
    left: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
}.mentorship-profile-el .name {
    font-weight: 700;
    z-index: 4;
    transform: translateX(0);
    grid-row: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    margin: 0;
    position: relative;
    grid-column: 1;
    font-size: 38px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}.mentorship-profile-el .alumni-testimonials-OP:hover .name {
    transform: translateX(10px);
}.mentorship-profile-el .name::after {
    width: 0;
    height: 3px;
    left: 0;
    transition: width 0.6s ease;
    position: absolute;
    background: linear-gradient(90deg, rgb(118,133,149), rgb(85,99,116));
    bottom: -10px;
    content: "";
}.mentorship-profile-el .alumni-testimonials-OP:hover .name::after {
    width: 120px;
}.mentorship-profile-el .alumni-testimonials-OP span:not(.name) {
    font-weight: 600;
    width: max-content;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transform: translateX(0);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    grid-row: 1;
    color: rgb(85,99,116);
    font-size: 22px;
    z-index: 3;
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 0.7rem 1.5rem;
    backdrop-filter: blur(10px);
    grid-column: 1;
}.mentorship-profile-el .alumni-testimonials-OP:hover span:not(.name) {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(10px);
}.mentorship-profile-el .exp-container-ah {
    padding: 2rem;
    border-left: 4px solid rgb(85,99,116);
    border-radius: 11px;
    grid-column: 1;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    overflow: hidden;
    transform: translateY(0);
    position: relative;
    font-size: 14px;
    transition: all 0.7s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    line-height: 1.8;
    z-index: 2;
    grid-row: 2;
}.mentorship-profile-el .alumni-testimonials-OP:hover .exp-container-ah {
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
}.mentorship-profile-el .exp-container-ah::before {
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: -1;
    position: absolute;
    background-size: 200% 200%;
    animation: shimmerEffect 5s ease-in-out infinite;
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
}.mentorship-profile-el .container::after {
    opacity: 0.2;
    filter: blur(80px);
    border-radius: 50%;
    animation: rotateGlow 25s linear infinite;
    background: conic-gradient(from 135deg, rgb(118,133,149,0.5) 0%, rgb(85,99,116,0.5) 50%, rgb(118,133,149,0.5) 100%);
    width: 400px;
    left: -200px;
    content: "";
    height: 400px;
    z-index: -1;
    bottom: -200px;
    position: absolute;
}

@keyframes breatheGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmerEffect {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {.mentorship-profile-el .alumni-testimonials-OP {
    gap: 20px;
    grid-template-rows: auto auto auto;
    padding: 2rem;
    grid-template-columns: 1fr;
}.mentorship-profile-el .video-thumbnail-ba {
    grid-row: 1;
    grid-column: 1;
    height: 350px;
}.mentorship-profile-el .name {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
}.mentorship-profile-el .alumni-testimonials-OP span:not(.name) {
    grid-column: 1;
    margin-top: 3.5rem;
    grid-row: 2;
}.mentorship-profile-el .exp-container-ah {
    grid-row: 3;
    grid-column: 1;
}.mentorship-profile-el .alumni-testimonials-OP:hover .name,
    .mentorship-profile-el .alumni-testimonials-OP:hover span:not(.name) {
    transform: translateY(-5px);
}
}

@media (max-width: 576px) {.mentorship-profile-el {
    padding: 5rem 0;
}.mentorship-profile-el .alumni-testimonials-OP {
    padding: 1.5rem;
}.mentorship-profile-el .video-thumbnail-ba {
    height: 250px;
}.mentorship-profile-el .name {
    font-size: 22px;
}.mentorship-profile-el .alumni-testimonials-OP span:not(.name) {
    font-size: 14px;
    padding: 0.6rem 1rem;
    margin-top: 3rem;
}.mentorship-profile-el .exp-container-ah {
    line-height: 1.6;
    font-size: calc(14px * 0.9);
    padding: 1.5rem;
}}footer {
    position: relative;
}footer::before {
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    bottom: 0;
    opacity: 0.95;
    right: 0;
    content: '';
    background: linear-gradient(125deg, #000000 0%, rgb(85,99,116) 100%);
}.lesson-cta-Ev {
    position: relative;
    padding: 60px 0;
    color: #ffffff;
    font-family: Arial, sans-serif;
    z-index: 2;
}.lesson-cta-Ev .container {
    display: flex;
    flex-wrap: wrap;
}.lesson-cta-Ev .company_holder {
    text-align: center;
    flex: 0 0 100%;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    padding: 25px;
    background: rgba(0, 0, 0, 0.2);
}.lesson-cta-Ev .company_holder h3 {
    font-size: 31px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}.lesson-cta-Ev .about-learn-pn {
    text-align: center;
    color: #ffffff;
    max-width: 80%;
    background: rgba(255, 255, 255, 0.1);
    line-height: 1.7;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    margin: 0 auto;
}.lesson-cta-Ev .sample-docs-kb {
    flex: 0 0 100%;
    margin-top: 20px;
}.lesson-cta-Ev .head-train-On {
    justify-content: center;
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
}.lesson-cta-Ev .header-site-Mf {
    max-width: calc(50% - 30px);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    padding: 20px;
    flex: 0 0 calc(50% - 30px);
}.lesson-cta-Ev .header-site-Mf:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}.lesson-cta-Ev .header-site-Mf h5 {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 20px;
}.lesson-cta-Ev .header-site-Mf .head-train-On {
    display: flex;
    margin-top: 0;
    flex-direction: column;
    gap: 12px;
}.lesson-cta-Ev .header-site-Mf .head-train-On a {
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    padding: 8px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}.lesson-cta-Ev .header-site-Mf .head-train-On a:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    color: #ffffff;
}.volunteer-oF {
    margin-top: 40px;
    z-index: 2;
    position: relative;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
}.volunteer-oF::before {
    right: 20%;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    height: 1px;
    left: 20%;
    opacity: 0.2;
    content: '';
    top: 0;
    position: absolute;
}.volunteer-oF .container {
    justify-content: center;
    display: flex;
}.volunteer-oF .badge-case-sA {
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.5px;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
@media (min-width: 768px) {.lesson-cta-Ev .head-train-On {
    justify-content: space-between;
}.lesson-cta-Ev .company_holder {
    text-align: left;
    flex: 0 0 30%;
}.lesson-cta-Ev .sample-docs-kb {
    flex: 0 0 65%;
}.lesson-cta-Ev .container {
    justify-content: space-between;
    align-items: flex-start;
}.lesson-cta-Ev .about-learn-pn {
    max-width: 100%;
    text-align: left;
    margin: 0;
}
}

@media (max-width: 767px) {.lesson-cta-Ev .header-site-Mf {
    margin-bottom: 20px;
    max-width: 100%;
    flex: 0 0 100%;
}.lesson-cta-Ev .company_holder {
    padding: 20px 15px;
}.lesson-cta-Ev .about-learn-pn {
    max-width: 100%;
    padding: 15px;
}
}

@media (max-width: 576px) {.lesson-cta-Ev {
    padding: 40px 0;
}.lesson-cta-Ev .company_holder h3 {
    font-size: calc(31px * 0.8);
}.lesson-cta-Ev .header-site-Mf h5 {
    font-size: calc(20px * 0.9);
}.lesson-cta-Ev .header-site-Mf .head-train-On a {
    font-size: calc(16px * 0.95);
}}

@keyframes pulseLight {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.15;
        transform: scale(1.1);
    }
}

footer::after {
    position: absolute;
    top: 0;
    background-size: 20px 20px;
    content: '';
    width: 100%;
    z-index: 1;
    left: 0;
    height: 100%;
    background-image: linear-gradient(0deg, 
        rgba(255, 255, 255, 0.02) 1px, 
        transparent 1px),
        linear-gradient(90deg, 
        rgba(255, 255, 255, 0.02) 1px, 
        transparent 1px);
}.cookieSettingsWindow-gK {
    bottom: 0;
    position: fixed;
    background: rgb(152,168,183);
    z-index: 90;
    border-top: 2px solid rgb(118,133,149);
    width: 100%;
}#cookie-box-banner-CJ {
    display: none;
}#cookie-box-banner-CJ:checked ~ .cookieSettingsWindow-gK {
    opacity: 0;
    visibility: hidden;
}.cookie-layer-Xu {
    justify-content: space-between;
    padding: 20px 0;
    display: flex;
    align-items: center;
}.cookieSettingsWindow-gK h5 {
    margin-bottom: 6px;
    font-size: 22px;
}.cookieSettingsWindow-gK p {
    font-size: 18px;
}.data-guard-OG {
    flex-shrink: 0;
    margin-right: 10px;
}.data-guard-OG svg, .data-guard-OG svg path, .data-guard-OG img {
    width: 100px;
    fill: rgb(118,133,149);
    height: 100px;
}.consent-comply-XU {
    min-width: 120px;
    border-bottom: 2px solid rgb(118,133,149);
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
    margin-left: 10px;
    line-height: 35px;
    text-align: center;
    color: rgb(118,133,149);
    font-size: 24px;
}.cookieSettingsWindow-gK p a {
    color: rgb(118,133,149);
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {.cookieSettingsWindow-gK {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.data-guard-OG {
    display: none;
}.cookie-layer-Xu {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}.cookieSettingsWindow-gK h5 {
    text-align: center;
}.cookieSettingsWindow-gK p {
    text-align: center;
}.cookie-alerts-Vi {
    margin-bottom: 20px;
}body .wrapping-container-xC .consent-comply-XU {
    margin-left: 0;
    margin-bottom: 10px;
}}
.wrapping-container-xC .cookieSettingsWindow-gK {
    background: rgb(118,133,149);
    box-shadow: rgb(85,99,116,0.5) 0px 0px 10px 10px;
}.wrapping-container-xC .cookie-layer-Xu {
    justify-content: space-between;
    padding: 40px 0;
}.wrapping-container-xC .consent-comply-XU {
    margin-left: 30px;
    border: none;
    font-size: 20px;
    padding: 10px;
    background: #ffffff;
    color: rgb(118,133,149);
}.wrapping-container-xC .cookie-alerts-Vi {
    color: #ffffff;
    text-align: left;
}.wrapping-container-xC .cookie-alerts-Vi h5 {
    font-weight: 700;
}.wrapping-container-xC .cookie-alerts-Vi h5, .wrapping-container-xC .cookie-alerts-Vi p {
    color: #ffffff;
}.wrapping-container-xC .cookieSettingsWindow-gK p a {
    text-decoration: underline;
    color: rgb(85,99,116);
}.customer-opinions-xm {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: rgb(152,168,183);
}.customer-opinions-xm::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgb(118,133,149,0.5) 100%);
    left: 0;
    content: "";
    position: absolute;
    top: 0;
    opacity: 0.1;
    z-index: 1;
}.customer-opinions-xm::after {
    left: -10%;
    width: 120%;
    position: absolute;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgb(118,133,149,0.5), transparent);
    content: "";
    top: 30%;
    transform: rotate(-3deg);
    height: 1px;
}.customer-opinions-xm .creds-sect-cM {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}.customer-opinions-xm h4 {
    font-weight: 700;
    position: relative;
    padding-left: 20px;
    color: #000000;
    font-size: 32px;
    transform: skewX(-10deg);
    display: inline-block;
    margin-bottom: 70px;
}.customer-opinions-xm h4::before {
    background: rgb(118,133,149);
    left: 0;
    position: absolute;
    width: 5px;
    top: 0;
    height: 100%;
    content: "";
}.customer-opinions-xm h4::after {
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.3;
    left: 8px;
    top: 8px;
    background: rgb(118,133,149,0.5);
    position: absolute;
    content: "";
}.customer-opinions-xm .alumni-feedback-Fs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 50px;
    position: relative;
}.customer-opinions-xm .alumni-feedback-Fs::before {
    top: -100px;
    right: 10%;
    opacity: 0.2;
    content: "";
    position: absolute;
    background: rgb(85,99,116,0.5);
    border-radius: 50%;
    filter: blur(80px);
    height: 200px;
    z-index: -1;
    width: 200px;
}.customer-opinions-xm .alumni-testimonials-OP {
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: #ffffff;
    position: relative;
    padding: 35px 30px;
    transform: translateX(0) translateY(0);
}.customer-opinions-xm .alumni-testimonials-OP::before,
.customer-opinions-xm .alumni-testimonials-OP::after {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    content: "";
    border-radius: inherit;
    position: absolute;
    z-index: -1;
}.customer-opinions-xm .alumni-testimonials-OP::before {
    inset: -5px;
    filter: blur(5px);
    background: linear-gradient(135deg, rgb(118,133,149,0.5) 0%, rgb(85,99,116,0.5) 100%);
}.customer-opinions-xm .alumni-testimonials-OP::after {
    inset: -10px;
    background: linear-gradient(225deg, rgb(118,133,149,0.5) 0%, rgb(85,99,116,0.5) 100%);
    filter: blur(10px);
}.customer-opinions-xm .alumni-testimonials-OP:hover {
    transform: translateX(-5px) translateY(-5px);
}.customer-opinions-xm .alumni-testimonials-OP:hover::before,
.customer-opinions-xm .alumni-testimonials-OP:hover::after {
    opacity: 1;
}.customer-opinions-xm .alumni-testimonials-OP:nth-child(odd) {
    border-radius: 0 20px 0 20px;
}.customer-opinions-xm .alumni-testimonials-OP:nth-child(even) {
    border-radius: 20px 0 20px 0;
}.customer-opinions-xm .video-thumbnail-ba {
    height: 100px;
    transition: all 0.5s ease;
    position: relative;
    margin: 0 auto 20px;
    z-index: 2;
    width: 100px;
}.customer-opinions-xm .video-thumbnail-ba::before,
.customer-opinions-xm .video-thumbnail-ba::after {
    position: absolute;
    border-radius: inherit;
    z-index: -1;
    content: "";
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    inset: 0;
}.customer-opinions-xm .video-thumbnail-ba::before {
    transform: translate(5px, 5px);
    background: linear-gradient(135deg, rgb(118,133,149,0.5) 0%, rgb(85,99,116,0.5) 100%);
}.customer-opinions-xm .video-thumbnail-ba::after {
    background: linear-gradient(225deg, rgb(118,133,149,0.5) 0%, rgb(85,99,116,0.5) 100%);
    transform: translate(-5px, -5px);
    opacity: 0.5;
}.customer-opinions-xm .alumni-testimonials-OP:hover .video-thumbnail-ba::before {
    transform: translate(8px, 8px);
}.customer-opinions-xm .alumni-testimonials-OP:hover .video-thumbnail-ba::after {
    transform: translate(-8px, -8px);
}.customer-opinions-xm .alumni-testimonials-OP:nth-child(odd) .video-thumbnail-ba {
    border-radius: 0 30px 0 30px;
}.customer-opinions-xm .alumni-testimonials-OP:nth-child(even) .video-thumbnail-ba {
    border-radius: 30px 0 30px 0;
}.customer-opinions-xm .alumni-testimonials-OP span {
    font-weight: 700;
    font-family: Arial, sans-serif;
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    color: #000000;
    display: block;
}.customer-opinions-xm .alumni-testimonials-OP span::after {
    transform: translateX(-50%);
    content: "";
    width: 50px;
    left: 50%;
    background: rgb(118,133,149);
    height: 2px;
    position: absolute;
    bottom: -8px;
}.customer-opinions-xm .alumni-testimonials-OP p {
    font-weight: 400;
    position: relative;
    font-family: Arial, sans-serif;
    color: #000000;
    line-height: 1.6;
    font-size: 17px;
    text-align: center;
}.customer-opinions-xm .alumni-testimonials-OP p::first-letter {
    color: rgb(118,133,149);
    font-weight: 700;
    font-size: 1.2em;
}.customer-opinions-xm .alumni-testimonials-OP:nth-child(3n+1) {
    transform: rotate(-2deg);
}.customer-opinions-xm .alumni-testimonials-OP:nth-child(3n+2) {
    transform: rotate(2deg);
}.customer-opinions-xm .alumni-testimonials-OP:nth-child(3n+1):hover,
.customer-opinions-xm .alumni-testimonials-OP:nth-child(3n+2):hover {
    transform: translateX(-5px) translateY(-5px) rotate(0);
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 767px) {.customer-opinions-xm {
    padding: 70px 0;
}.customer-opinions-xm h4 {
    transform: none;
    text-align: center;
    display: block;
    font-size: calc(32px * 0.8);
    padding-left: 0;
    margin-bottom: 50px;
}.customer-opinions-xm h4::before {
    top: auto;
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    bottom: -15px;
}.customer-opinions-xm h4::after {
    display: none;
}.customer-opinions-xm .alumni-feedback-Fs {
    grid-template-columns: 1fr;
    gap: 40px;
}.customer-opinions-xm .alumni-testimonials-OP {
    padding: 25px 20px;
}.customer-opinions-xm .alumni-testimonials-OP:nth-child(3n+1),
    .customer-opinions-xm .alumni-testimonials-OP:nth-child(3n+2) {
    transform: none;
}.customer-opinions-xm .video-thumbnail-ba {
    width: 80px;
    height: 80px;
}.customer-opinions-xm .alumni-testimonials-OP span {
    font-size: calc(20px * 0.9);
}.customer-opinions-xm .alumni-testimonials-OP p {
    font-size: calc(17px * 0.9);
}}.greeting-page-fy {
    justify-content: center;
    display: flex;
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(152,168,183) 40%, rgb(118,133,149,0.5) 100%);
    position: relative;
    overflow: hidden;
    align-items: center;
    padding: 6rem 2rem;
}.greeting-page-fy::before {
    position: absolute;
    height: 20%;
    width: 40%;
    top: 0;
    z-index: 1;
    background: rgb(85,99,116,0.5);
    right: 0;
    content: "";
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}.greeting-page-fy::after {
    content: "";
    z-index: 1;
    width: 35%;
    height: 25%;
    clip-path: polygon(0 100%, 100% 100%, 0 0);
    bottom: 0;
    left: 0;
    position: absolute;
    background: rgb(118,133,149,0.5);
}.greeting-page-fy > div {
    max-width: 1200px;
    z-index: 2;
    width: 100%;
    gap: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}.greeting-page-fy h1.edu-trackfast-cV {
    position: relative;
    font-size: 41px;
    transform: translateX(-20px);
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 700;
    animation: slideInTitle 0.8s ease-out forwards 0.3s;
    opacity: 0;
}.greeting-page-fy h1.edu-trackfast-cV::after {
    background: rgb(118,133,149);
    content: "";
    height: 4px;
    width: 80px;
    animation: expandLine 1s ease forwards 1s;
    position: absolute;
    transform-origin: left;
    left: 0;
    bottom: -10px;
    transform: scaleX(0);
}.greeting-page-fy p {
    color: #000000;
    position: relative;
    opacity: 0;
    font-size: calc(17px * 1.2);
    transform: translateY(20px);
    margin-bottom: 2rem;
    max-width: 90%;
    animation: fadeUp 0.8s ease-out forwards 0.6s;
    line-height: 1.6;
}.greeting-page-fy .main-entry-bD {
    width: 100%;
    position: relative;
    perspective: 1000px;
    margin-top: 2rem;
}.greeting-page-fy .knowledge-pro-xH {
    min-height: 280px;
    position: relative;
    width: 100%;
    opacity: 0;
    animation: popIn 1s cubic-bezier(0.17, 0.67, 0.4, 1.2) forwards 0.8s;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(30px) rotateX(5deg);
    transform-origin: center bottom;
    overflow: hidden;
}.greeting-page-fy .knowledge-pro-xH::before {
    background: linear-gradient(to bottom, 
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.7) 100%);
    left: 0;
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    height: 100%;
}.greeting-page-fy .knowledge-pro-xH span {
    animation: fadeUp 0.8s ease-out forwards 1.2s;
    left: 0;
    opacity: 0;
    transform: translateY(10px);
    padding: 2rem;
    z-index: 2;
    position: absolute;
    bottom: 0;
    width: 100%;
}.greeting-page-fy .knowledge-pro-xH h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.5;
    font-weight: 600;
    font-size: calc(19px * 0.9);
}.greeting-page-fy .knowledge-pro-xH:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    transform: rotateX(0) scale(1.02);
}

@keyframes slideInTitle {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

@keyframes popIn {
  0% {
    transform: translateY(30px) rotateX(5deg);
    opacity: 0;
  }
  70% {
    transform: translateY(-10px) rotateX(-2deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotateX(0);
    opacity: 1;
  }
}

@media (min-width: 768px) {.greeting-page-fy {
    padding: 8rem 4rem;
}.greeting-page-fy > div {
    align-items: center;
    grid-template-columns: 1fr 1fr;
}.greeting-page-fy h1.edu-trackfast-cV {
    margin-bottom: 2rem;
    font-size: calc(41px * 1.2);
    max-width: 90%;
}.greeting-page-fy p {
    max-width: 80%;
    font-size: calc(17px * 1.3);
}.greeting-page-fy .knowledge-pro-xH {
    min-height: 360px;
}.greeting-page-fy .knowledge-pro-xH h3 {
    font-size: 19px;
}
}

@media (min-width: 992px) {.greeting-page-fy {
    padding: 8rem 6rem;
}.greeting-page-fy > div {
    gap: 4rem;
}.greeting-page-fy h1.edu-trackfast-cV {
    font-size: calc(41px * 1.4);
}.greeting-page-fy .knowledge-pro-xH {
    transition: transform 0.5s ease;
    transform-origin: center;
    min-height: 420px;
    transform: translateY(0) rotateY(-5deg);
}.greeting-page-fy .knowledge-pro-xH:hover {
    transform: rotateY(0) scale(1.03);
}
}

@media (max-width: 767px) {.greeting-page-fy {
    padding: 4rem 1.5rem;
}.greeting-page-fy > div {
    gap: 2rem;
}.greeting-page-fy h1.edu-trackfast-cV {
    font-size: calc(41px * 0.9);
}.greeting-page-fy p {
    max-width: 100%;
    font-size: 17px;
}
}

@media (max-width: 480px) {.greeting-page-fy {
    padding: 3rem 1rem;
}.greeting-page-fy h1.edu-trackfast-cV {
    font-size: calc(41px * 0.8);
}.greeting-page-fy .knowledge-pro-xH {
    min-height: 240px;
}.greeting-page-fy .knowledge-pro-xH h3 {
    font-size: calc(19px * 0.8);
}}header .top_plank {
    background: rgb(118,133,149);
    color:  #ffffff;
}header .top_plank .top-segment-JK div svg, header .top_plank .top-segment-JK div svg path {
    fill: #ffffff;
}header .top_plank .top-segment-JK div span {
    color: #ffffff;
}header .top_plank .top-segment-JK {
    justify-content: flex-start;
    display: flex;
    font-size: 15px;
    width: 100%;
    padding: 15px 0 10px 0;
    flex-wrap: wrap;
    line-height: 21px;
    align-items: center;
}header .top_plank .top-segment-JK div {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 24px;
}header .top_plank .top-segment-JK div img, header .top_plank .top-segment-JK div svg {
    height: 16px;
    margin-right: 8px;
    width: 16px;
}.contact-information-ze {
    z-index: 1;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: rgb(152,168,183);
}.contact-information-ze::before {
    background: 
        repeating-radial-gradient(
            circle at 0% 0%,
            transparent 0,
            transparent 40px,
            rgba(0, 0, 0, 0.03) 40px,
            rgba(0, 0, 0, 0.03) 80px
        ),
        repeating-radial-gradient(
            circle at 100% 100%,
            transparent 0,
            transparent 40px,
            rgba(0, 0, 0, 0.03) 40px,
            rgba(0, 0, 0, 0.03) 80px
        );
    background-blend-mode: multiply;
    height: 100%;
    z-index: 0;
    left: 0;
    content: '';
    width: 100%;
    opacity: 0.5;
    top: 0;
    position: absolute;
}.contact-information-ze .video-thumbnail-ba {
    filter: contrast(1.2) saturate(0.8);
    top: 0;
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 0;
    opacity: 0.07;
}.contact-information-ze .container {
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}.contact-information-ze h3 {
    font-size: 29px;
    font-weight: 300;
    font-family: Arial, sans-serif;
    margin-bottom: 70px;
    text-align: center;
    position: relative;
    letter-spacing: 1px;
    color: #000000;
}.contact-information-ze .reach-request-ZQ {
    display: flex;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    flex-wrap: wrap;
    border-radius: 30px;
    position: relative;
}.contact-information-ze .connect-list-Tj {
    z-index: 1;
    display: flex;
    background: #ffffff;
    justify-content: center;
    padding: 80px;
    flex: 1 1 55%;
    flex-direction: column;
    position: relative;
}.contact-information-ze .connect-list-Tj::before {
    height: 100%;
    width: 100%;
    content: '';
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.01) 0, transparent 100px),
        radial-gradient(circle at 70% 65%, rgba(0, 0, 0, 0.01) 0, transparent 100px);
    top: 0;
    position: absolute;
    left: 0;
}.contact-information-ze .connect-list-Tj #contact {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}.contact-information-ze .connect-list-Tj h3 {
    color: #000000;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 18px;
    text-align: center;
}.contact-information-ze .connect-list-Tj input[type="text"],
.contact-information-ze .connect-list-Tj textarea {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    width: 100%;
    transition: all 0.3s ease;
    color: #000000;
    font-size: 15px;
    font-family: Arial, sans-serif;
    border: none;
    background-color: rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
    padding: 20px 25px;
}.contact-information-ze .connect-list-Tj textarea {
    padding-top: 25px;
    resize: vertical;
    height: 150px;
    border-radius: 25px;
}.contact-information-ze .connect-list-Tj input[type="text"]:focus,
.contact-information-ze .connect-list-Tj textarea:focus {
    background-color: rgba(0, 0, 0, 0.015);
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 0 3px rgb(118,133,149,0.5);
}.contact-information-ze .connect-list-Tj .request-inquiry-rp {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 30px;
}.contact-information-ze .connect-list-Tj .request-inquiry-rp input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact-information-ze .connect-list-Tj .request-inquiry-rp label {
    color: #000000;
    font-size: calc(15px - 2px);
    position: relative;
    line-height: 1.5;
    padding-left: 35px;
    cursor: pointer;
}.contact-information-ze .connect-list-Tj .request-inquiry-rp label::before {
    content: '';
    background-color: transparent;
    position: absolute;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    left: 0;
    width: 22px;
    top: 2px;
    height: 22px;
    border-radius: 50%;
}.contact-information-ze .connect-list-Tj .request-inquiry-rp input[type="checkbox"]:checked + label::before {
    background-color: rgb(118,133,149);
    border-color: rgb(118,133,149);
}.contact-information-ze .connect-list-Tj .request-inquiry-rp input[type="checkbox"]:checked + label::after {
    width: 8px;
    height: 5px;
    border-left: 2px solid #ffffff;
    transform: rotate(-45deg);
    border-bottom: 2px solid #ffffff;
    content: '';
    top: 10px;
    left: 7px;
    position: absolute;
}.contact-information-ze .connect-list-Tj .request-inquiry-rp a {
    color: rgb(118,133,149);
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 600;
}.contact-information-ze .connect-list-Tj .request-inquiry-rp a:hover {
    color: rgb(85,99,116);
}.contact-information-ze .connect-list-Tj .help-reach-em {
    border: none;
    background: rgb(118,133,149);
    color: #ffffff;
    cursor: pointer;
    position: relative;
    margin: 0 auto;
    display: block;
    padding: 18px;
    font-weight: 400;
    font-size: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 50px;
}.contact-information-ze .connect-list-Tj .help-reach-em::before {
    height: 100%;
    position: absolute;
    content: '';
    top: 0;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0), 
        rgba(255, 255, 255, 0.2), 
        rgba(255, 255, 255, 0)
    );
    width: 100%;
    transition: all 0.6s ease;
    left: -100%;
}.contact-information-ze .connect-list-Tj .help-reach-em:hover {
    box-shadow: 0 5px 15px rgb(118,133,149,0.5);
    background: rgb(85,99,116);
    transform: translateY(-2px);
}.contact-information-ze .connect-list-Tj .help-reach-em:hover::before {
    left: 100%;
}.contact-information-ze .help-info-hw {
    position: relative;
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 80px 60px;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(118,133,149) 0%, rgb(85,99,116) 100%);
}.contact-information-ze .help-info-hw::before {
    background-size: 250px 250px;
    height: 200%;
    width: 200%;
    background: 
        radial-gradient(
            circle at center,
            transparent 0,
            transparent 100px,
            rgba(255, 255, 255, 0.03) 100px,
            rgba(255, 255, 255, 0.03) 150px,
            transparent 150px,
            transparent
        );
    top: -50%;
    content: '';
    left: -50%;
    position: absolute;
    z-index: 0;
    opacity: 0.7;
}.contact-information-ze .help-info-hw h4 {
    font-size: 18px;
    z-index: 1;
    font-weight: 300;
    margin-bottom: 50px;
    color: #ffffff;
    text-align: center;
    position: relative;
}.contact-information-ze .help-info-hw .connect-links-AI {
    position: relative;
    padding: 0;
    max-width: 300px;
    list-style: none;
    margin: 0 auto;
    z-index: 1;
}.contact-information-ze .help-info-hw .connect-links-AI li {
    transition: transform 0.3s ease;
    align-items: center;
    position: relative;
    margin-bottom: 35px;
    display: flex;
}.contact-information-ze .help-info-hw .connect-links-AI li:last-child {
    margin-bottom: 0;
}.contact-information-ze .help-info-hw .connect-links-AI li:hover {
    transform: translateX(5px);
}.contact-information-ze .help-info-hw .connect-links-AI li svg {
    flex-shrink: 0;
    margin-right: 20px;
    height: 22px;
    width: 22px;
    opacity: 0.9;
}.contact-information-ze .help-info-hw .connect-links-AI li svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}.contact-information-ze .help-info-hw .connect-links-AI li span {
    line-height: 1.5;
    position: relative;
    font-size: 15px;
    color: #ffffff;
}.contact-information-ze .help-info-hw .connect-links-AI li span::after {
    position: absolute;
    content: '';
    transition: width 0.3s ease;
    background: rgba(255, 255, 255, 0.3);
    width: 0;
    height: 1px;
    left: 0;
    bottom: -8px;
}.contact-information-ze .help-info-hw .connect-links-AI li:hover span::after {
    width: 100%;
}.contact-information-ze .help-info-hw .connect-links-AI li a {
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}.contact-information-ze .help-info-hw .connect-links-AI li a:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {.contact-information-ze {
    padding: 80px 0;
}.contact-information-ze .reach-request-ZQ {
    flex-direction: column;
}.contact-information-ze .connect-list-Tj,
    .contact-information-ze .help-info-hw {
    padding: 60px 40px;
    flex: 1 1 100%;
}
}

@media (max-width: 768px) {.contact-information-ze {
    padding: 60px 0;
}.contact-information-ze h3 {
    margin-bottom: 50px;
    font-size: calc(29px - 4px);
}.contact-information-ze .connect-list-Tj h3,
    .contact-information-ze .help-info-hw h4 {
    margin-bottom: 30px;
    font-size: calc(18px - 2px);
}.contact-information-ze .connect-list-Tj input[type="text"],
    .contact-information-ze .connect-list-Tj textarea {
    margin-bottom: 20px;
    padding: 16px 20px;
}.contact-information-ze .connect-list-Tj textarea {
    height: 120px;
}.contact-information-ze .connect-list-Tj .help-reach-em {
    padding: 16px;
}.contact-information-ze .help-info-hw .connect-links-AI li {
    margin-bottom: 25px;
}
}

@media (max-width: 576px) {.contact-information-ze {
    padding: 50px 0;
}.contact-information-ze .connect-list-Tj,
    .contact-information-ze .help-info-hw {
    padding: 40px 25px;
}.contact-information-ze h3 {
    font-size: calc(29px - 6px);
}.contact-information-ze .connect-list-Tj .request-inquiry-rp label {
    font-size: calc(15px - 3px);
}.contact-information-ze .reach-request-ZQ {
    border-radius: 20px;
}.contact-information-ze .connect-list-Tj input[type="text"],
    .contact-information-ze .connect-list-Tj textarea {
    border-radius: 25px;
}.contact-information-ze .connect-list-Tj textarea {
    border-radius: 20px;
}
}