* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}svg {
    width: 30px;
    height: 30px;
}header,footer {
    width: 100%;
}.webinar_archstat {
    flex: 0 0 auto;
}html,body {
    scroll-behavior: smooth;
    min-height: 100%;
    color: #000000;
    height: 100%;
    font-family: Arial, sans-serif;
}.wrapper-holderstat {
    flex-direction: column;
    min-height: 100%;
    display: flex;
    height: 100%;
}.head_prostat {
    flex: 1 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}.container {
    margin: auto;
    width: 1117px;
    max-width: 100%;
}

@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.teaching_processstat {
    background: rgb(239,237,239);
    isolation: isolate;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}.teaching_processstat::before {
    content: "";
    left: -50%;
    height: 200%;
    top: -50%;
    width: 200%;
    z-index: 0;
    position: absolute;
    background: 
        radial-gradient(circle at 30% 30%, rgb(212,204,209,0.5) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgb(179,169,172,0.5) 0%, transparent 50%);
    animation: rotateBg 25s linear infinite;
}.teaching_processstat::after {
    content: "";
    top: 0;
    height: 100%;
    position: absolute;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.03) 20px, rgba(255, 255, 255, 0.03) 40px);
    left: 0;
    z-index: 1;
    width: 100%;
}.teaching_processstat .container {
    padding: 5rem 2rem;
    position: relative;
    margin: 0 auto;
    z-index: 2;
    max-width: 1000px;
}.teaching_processstat .learn_classesstat {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    display: flex;
    position: relative;
    justify-content: center;
    padding: 4rem 2rem;
}.teaching_processstat .learn_classesstat::before {
    position: absolute;
    z-index: -1;
    filter: blur(15px);
    animation: waveEffect 8s ease-in-out infinite;
    content: "";
    top: 0;
    height: 30px;
    width: 120%;
    background: linear-gradient(90deg, transparent, rgb(212,204,209,0.5), transparent);
    opacity: 0.7;
    left: -10%;
}.teaching_processstat .learn_classesstat::after {
    opacity: 0.7;
    z-index: -1;
    background: linear-gradient(90deg, transparent, rgb(179,169,172,0.5), transparent);
    filter: blur(15px);
    animation: waveEffect 8s ease-in-out infinite reverse;
    width: 120%;
    left: -10%;
    height: 30px;
    position: absolute;
    bottom: 0;
    content: "";
}.teaching_processstat h3 {
    perspective: 500px;
    text-align: center;
    overflow: hidden;
    transform-style: preserve-3d;
    color: rgb(212,204,209);
    position: relative;
    width: 100%;
    font-size: 30px;
    margin-bottom: 0;
    font-weight: 700;
    padding-bottom: 2rem;
}.teaching_processstat h3::before {
    content: "";
    position: absolute;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    width: 100%;
    transform: translateX(-100%);
    height: 100%;
    animation: shimmerEffect 5s infinite;
    top: 0;
    left: 0;
}.teaching_processstat h3::after {
    height: 100%;
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
    width: 100%;
    left: 0;
    position: absolute;
    opacity: 0;
    color: transparent;
    transform: translateZ(20px);
    text-shadow: 0 0 15px rgb(212,204,209), 0 0 10px rgb(212,204,209);
    top: 0;
    content: attr(data-text);
}.teaching_processstat span {
    backdrop-filter: blur(5px);
    max-width: 800px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    overflow: hidden;
    animation: floatText 6s ease-in-out infinite;
    text-align: center;
    border-radius: 28px;
    line-height: 1.8;
    display: block;
    position: relative;
    font-size: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    color: #000000;
}.teaching_processstat span::before {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    top: -50%;
    position: absolute;
    transform: rotate(45deg);
    z-index: -1;
    left: -50%;
    animation: holographicShine 10s linear infinite;
    width: 200%;
    content: "";
    height: 200%;
}.teaching_processstat span::after {
    height: 10px;
    animation: shadowPulse 6s ease-in-out infinite;
    width: 80%;
    opacity: 0.5;
    filter: blur(10px);
    left: 10%;
    position: absolute;
    bottom: -10px;
    border-radius: 50%;
    z-index: -1;
    content: "";
    background: rgb(179,169,172,0.5);
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes waveEffect {
    0%, 100% {
        transform: translateX(-30%) scaleX(1.2);
    }
    50% {
        transform: translateX(30%) scaleX(0.8);
    }
}

@keyframes shimmerEffect {
    0% {
        transform: translateX(-100%);
    }
    20%, 100% {
        transform: translateX(100%);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes floatText {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes holographicShine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

@keyframes shadowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.2);
    }
}

@media (max-width: 992px) {.teaching_processstat {
    min-height: 60vh;
}.teaching_processstat .container {
    padding: 4rem 1.5rem;
}.teaching_processstat .learn_classesstat {
    padding: 3rem 1.5rem;
}.teaching_processstat h3 {
    padding-bottom: 1.5rem;
    font-size: calc(30px * 0.9);
}.teaching_processstat span {
    font-size: calc(16px * 0.95);
    padding: 1.8rem;
}
}

@media (max-width: 768px) {.teaching_processstat {
    min-height: 50vh;
}.teaching_processstat .container {
    padding: 3rem 1.2rem;
}.teaching_processstat .learn_classesstat {
    padding: 2.5rem 1.2rem;
    gap: 1.5rem;
}.teaching_processstat h3 {
    font-size: calc(30px * 0.8);
    padding-bottom: 1.2rem;
}.teaching_processstat span {
    font-size: calc(16px * 0.9);
    padding: 1.5rem;
    line-height: 1.7;
}
}

@media (max-width: 576px) {.teaching_processstat {
    min-height: 40vh;
}.teaching_processstat .container {
    padding: 2.5rem 1rem;
}.teaching_processstat .learn_classesstat {
    gap: 1.2rem;
    padding: 2rem 1rem;
}.teaching_processstat h3 {
    font-size: calc(30px * 0.7);
    padding-bottom: 1rem;
}.teaching_processstat span {
    font-size: calc(16px * 0.85);
    line-height: 1.6;
    padding: 1.2rem;
}.teaching_processstat .learn_classesstat::before,
    .teaching_processstat .learn_classesstat::after {
    height: 20px;
}}.sign_upstat {
    padding: 3rem;
    background: linear-gradient(90deg, rgb(239,237,239) 0%, rgba(0, 0, 0, 0.5) 100%);
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}.sign_upstat::before {
    position: absolute;
    top: 0;
    animation: breathe 8s infinite alternate;
    width: 100%;
    z-index: 1;
    left: 0;
    opacity: 0.4;
    height: 100%;
    content: "";
    background: radial-gradient(circle at 30% 50%, rgb(212,204,209,0.5) 0%, transparent 60%);
}.sign_upstat::after {
    bottom: -30%;
    background: linear-gradient(90deg, rgb(179,169,172,0.5) 0%, transparent 100%);
    position: absolute;
    transform: rotate(-5deg);
    content: "";
    filter: blur(20px);
    z-index: 0;
    width: 120%;
    height: 50%;
    left: -10%;
}.sign_upstat .learn_classesstat {
    transform: rotateX(5deg);
    align-items: center;
    transition: transform 0.5s ease;
    z-index: 2;
    justify-content: space-between;
    transform-style: preserve-3d;
    display: flex;
    position: relative;
}.sign_upstat .learn_classesstat:hover {
    transform: rotateX(0deg);
}.sign_upstat p {
    font-size: 18px;
    position: relative;
    color: #ffffff;
    transform: translateZ(20px);
    flex: 0 0 40%;
    font-family: Arial, sans-serif;
    font-weight: 700;
    padding-right: 2rem;
}.sign_upstat p::after {
    background: rgb(179,169,172);
    left: 0;
    transform-origin: left;
    width: 60px;
    transition: transform 0.4s ease;
    bottom: -10px;
    content: "";
    position: absolute;
    transform: scaleX(0.5);
    height: 3px;
}.sign_upstat .learn_classesstat:hover p::after {
    transform: scaleX(1);
}.sign_upstat .input_holder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transform: translateZ(40px);
    display: flex;
    flex: 0 0 60%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}.sign_upstat .sub_tipsstat {
    flex: 1;
    transition: all 0.3s ease;
    border: none;
    font-family: Arial, sans-serif;
    background: #ffffff;
    font-size: 17px;
    padding: 1.2rem 1.5rem;
    color: #000000;
}.sign_upstat .sub_tipsstat:focus {
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.9));
    outline: none;
}.sign_upstat .sub_tipsstat::placeholder {
    opacity: 0.6;
    color: #000000;
}.sign_upstat .sub_formstat {
    color: #ffffff;
    font-family: Arial, sans-serif;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.4s ease;
    padding: 0 2rem;
    background: linear-gradient(45deg, rgb(212,204,209) 0%, rgb(179,169,172) 100%);
    font-weight: 600;
    border: none;
    overflow: hidden;
    position: relative;
}.sign_upstat .sub_formstat::after {
    opacity: 0;
    left: -50%;
    width: 200%;
    content: "";
    top: -50%;
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: opacity 0.4s ease;
    transform: scale(0.5);
    height: 200%;
}.sign_upstat .sub_formstat:hover::after {
    opacity: 1;
    transform: scale(1);
}.sign_upstat .sub_formstat:hover {
    box-shadow: 0 0 15px rgb(212,204,209,0.5);
    background: linear-gradient(45deg, rgb(179,169,172) 0%, rgb(212,204,209) 100%);
}

@keyframes breathe {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {.sign_upstat {
    padding: 2rem 1.5rem;
}.sign_upstat .learn_classesstat {
    transform: none;
    align-items: stretch;
    flex-direction: column;
}.sign_upstat p {
    padding-right: 0;
    flex: none;
    margin-bottom: 1.5rem;
    transform: none;
}.sign_upstat .input_holder {
    transform: none;
    flex: none;
    flex-direction: column;
}.sign_upstat .sub_tipsstat {
    margin-bottom: 1rem;
    width: 100%;
    border-radius: 10px;
}.sign_upstat .sub_formstat {
    padding: 1rem;
    border-radius: 10px;
    width: 100%;
}}.course_program_infostat {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    background: linear-gradient(120deg, rgb(239,237,239) 0%, rgba(0, 0, 0, 0.5) 60%, rgb(212,204,209,0.5) 100%);
}.course_program_infostat::before {
    left: 0;
    opacity: 0.6;
    height: 100%;
    top: 0;
    background: 
        radial-gradient(ellipse at 75% 40%, rgb(179,169,172,0.5) 0%, transparent 50%),
        radial-gradient(circle at 25% 80%, rgb(212,204,209,0.5) 0%, transparent 40%);
    content: "";
    z-index: 1;
    animation: pulseGlow 12s infinite alternate;
    width: 100%;
    position: absolute;
}.course_program_infostat::after {
    content: "";
    animation: gridShift 30s linear infinite;
    width: 100%;
    position: absolute;
    opacity: 0.05;
    left: 0;
    background-image: 
        repeating-linear-gradient(45deg, #ffffff 0, #ffffff 1px, transparent 1px, transparent 60px),
        repeating-linear-gradient(135deg, #ffffff 0, #ffffff 1px, transparent 1px, transparent 60px);
    top: 0;
    height: 100%;
    z-index: 1;
}.course_program_infostat .container {
    position: relative;
    z-index: 3;
}.course_program_infostat .learn_classesstat {
    display: flex;
    border-radius: 24px;
    position: relative;
    background: transparent;
    flex-direction: column;
    overflow: visible;
}.course_program_infostat .future_skillsstat {
    transform: translateY(80px);
    width: 75%;
    background: #ffffff;
    padding: 60px;
    margin-right: auto;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgb(212,204,209,0.5),
        0 0 40px rgb(179,169,172,0.5);
    position: relative;
    z-index: 3;
    border-radius: 24px;
    margin-left: auto;
}.course_program_infostat .future_skillsstat::before {
    content: "";
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    right: -15px;
    z-index: -1;
    height: 200px;
    top: -15px;
    position: absolute;
    animation: morphShape 15s infinite alternate ease-in-out;
    background: linear-gradient(135deg, rgb(212,204,209,0.5), rgb(179,169,172,0.5));
    width: 200px;
}.course_program_infostat .head_skillstat {
    top: -60px;
    transform-origin: center center;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 120px;
    animation: floatAndRotate 8s ease-in-out infinite;
    box-shadow: 
        0 15px 35px -10px rgba(0, 0, 0, 0.5),
        0 0 0 8px #ffffff,
        0 0 0 12px rgb(212,204,209,0.5);
    left: 60px;
    display: flex;
    border-radius: 30% 70% 50% 50% / 40% 40% 60% 60%;
    background: #ffffff;
    height: 120px;
}.course_program_infostat .head_skillstat svg {
    height: 60%;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 60%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    fill: rgb(212,204,209);
}.course_program_infostat .head_skillstat:hover svg {
    fill: rgb(179,169,172);
    transform: scale(1.2) rotate(-10deg);
}.course_program_infostat .head_skillstat svg path {
    transition: stroke 0.4s ease;
    stroke-width: 0.5;
    stroke: #000000;
}.course_program_infostat .head_skillstat:hover svg path {
    stroke: rgb(212,204,209);
    stroke-dashoffset: 50;
    stroke-dasharray: 50;
    animation: drawPath 2s forwards;
}.course_program_infostat .future_skillsstat h3 {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 30px;
    transform: translateZ(0);
    padding-bottom: 15px;
    position: relative;
    color: #000000;
}.course_program_infostat .future_skillsstat h3::before {
    background: rgb(212,204,209);
    bottom: 0;
    width: 8px;
    border-radius: 50%;
    content: "";
    left: 0;
    position: absolute;
    height: 8px;
}.course_program_infostat .future_skillsstat h3::after {
    background: linear-gradient(90deg, rgb(212,204,209), transparent);
    width: 80px;
    position: absolute;
    content: "";
    left: 15px;
    height: 3px;
    bottom: 2.5px;
}.course_program_infostat .future_skillsstat p {
    position: relative;
    line-height: 1.8;
    margin-bottom: 0;
    text-shadow: 0 0 1px rgba(0,0,0,0.01);
    font-weight: 400;
    font-size: 18px;
    color: #000000;
}.course_program_infostat .future_skillsstat p::first-letter {
    font-weight: 700;
    margin-right: 8px;
    float: left;
    color: rgb(212,204,209);
    font-size: 2em;
    line-height: 0.8;
    margin-top: 8px;
}.course_program_infostat .img_panelstat {
    border-radius: 
        24px 24px 
        calc(24px * 3) 24px;
    position: relative;
    box-shadow: 
        0 15px 35px -5px rgba(0, 0, 0, 0.5),
        0 0 0 5px #ffffff;
    height: 400px;
    z-index: 2;
    overflow: hidden;
    transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
    transition: transform 0.6s ease;
    width: 85%;
    margin-left: auto;
}.course_program_infostat .learn_classesstat:hover .img_panelstat {
    transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateZ(30px);
}.course_program_infostat .img_panelstat::before {
    position: absolute;
    left: 0;
    background: 
        linear-gradient(
            to right,
            rgb(212,204,209,0.5) 0%,
            transparent 40%,
            rgb(179,169,172,0.5) 100%
        );
    height: 100%;
    transition: opacity 0.5s ease;
    top: 0;
    mix-blend-mode: multiply;
    z-index: 2;
    content: "";
    opacity: 0.7;
    width: 100%;
}.course_program_infostat .learn_classesstat:hover .img_panelstat::before {
    opacity: 0.5;
}.course_program_infostat .img_panelstat::after {
    top: 0;
    mix-blend-mode: overlay;
    z-index: 2;
    opacity: 0.1;
    background: 
        repeating-linear-gradient(
            -45deg,
            rgba(0, 0, 0, 0.5) 0,
            rgba(0, 0, 0, 0.5) 1px,
            transparent 1px,
            transparent 10px
        );
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    position: absolute;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes gridShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

@keyframes floatAndRotate {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(-3deg);
    }
    75% {
        transform: translateY(5px) rotate(3deg);
    }
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@media screen and (max-width: 1200px) {.course_program_infostat {
    padding: 100px 0;
}.course_program_infostat .future_skillsstat {
    padding: 50px;
    width: 85%;
    transform: translateY(70px);
}.course_program_infostat .img_panelstat {
    width: 90%;
    height: 350px;
}
}

@media screen and (max-width: 992px) {.course_program_infostat {
    padding: 80px 0;
}.course_program_infostat .learn_classesstat {
    flex-direction: column-reverse;
}.course_program_infostat .future_skillsstat {
    margin-left: auto;
    width: 90%;
    transform: translateY(-70px);
    margin-right: auto;
    padding: 40px;
}.course_program_infostat .head_skillstat {
    top: -50px;
    height: 100px;
    left: 40px;
    width: 100px;
}.course_program_infostat .img_panelstat {
    border-radius: 24px;
    margin-right: 0;
    height: 320px;
    width: 100%;
    transform: perspective(800px) rotateY(0) rotateX(0);
    margin-left: 0;
}.course_program_infostat .learn_classesstat:hover .img_panelstat {
    transform: perspective(800px) rotateY(0) rotateX(0);
}
}

@media screen and (max-width: 768px) {.course_program_infostat {
    padding: 60px 0;
}.course_program_infostat .future_skillsstat {
    transform: translateY(-60px);
    padding: 30px;
    width: 100%;
}.course_program_infostat .head_skillstat {
    width: 80px;
    top: -40px;
    left: 30px;
    height: 80px;
}.course_program_infostat .future_skillsstat h3 {
    font-size: calc(30px * 0.85);
    margin-bottom: 20px;
}.course_program_infostat .future_skillsstat p {
    font-size: calc(18px * 0.95);
}.course_program_infostat .img_panelstat {
    height: 280px;
}.course_program_infostat .future_skillsstat::before {
    height: 150px;
    right: -10px;
    width: 150px;
    top: -10px;
}
}

@media screen and (max-width: 576px) {.course_program_infostat {
    padding: 50px 0;
}.course_program_infostat .future_skillsstat {
    padding: 25px 20px;
    transform: translateY(-40px);
}.course_program_infostat .head_skillstat {
    width: 70px;
    top: -35px;
    left: 20px;
    height: 70px;
}.course_program_infostat .future_skillsstat h3 {
    padding-bottom: 12px;
    margin-bottom: 15px;
    font-size: calc(30px * 0.75);
}.course_program_infostat .future_skillsstat h3::after {
    width: 60px;
}.course_program_infostat .future_skillsstat p {
    line-height: 1.6;
    font-size: calc(18px * 0.9);
}.course_program_infostat .img_panelstat {
    height: 220px;
}.course_program_infostat .future_skillsstat::before {
    width: 100px;
    height: 100px;
}}.course_beneficiariesstat {
    background-color: #edf0f8;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}.course_beneficiariesstat::before {
    left: 0;
    opacity: 0.4;
    content: '';
    top: 0;
    position: absolute;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 10px,
            rgba(228, 232, 243, 0.8) 10px,
            rgba(228, 232, 243, 0.8) 11px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 10px,
            rgba(228, 232, 243, 0.8) 10px,
            rgba(228, 232, 243, 0.8) 11px
        );
    z-index: 1;
    width: 100%;
    height: 100%;
}.course_beneficiariesstat .learn_classesstat {
    margin: 0 auto;
    max-width: 1200px;
    z-index: 10;
    text-align: center;
    position: relative;
    padding: 0 30px;
}.course_beneficiariesstat h3 {
    position: relative;
    margin-bottom: 60px;
    font-size: 31px;
    color: #000000;
    padding: 20px 40px;
    display: inline-block;
    background-color: #edf0f8;
    border-radius: 15px;
    box-shadow: 
        10px 10px 20px rgba(166, 180, 208, 0.7),
        -10px -10px 20px rgba(255, 255, 255, 0.8);
    font-weight: 700;
}.course_beneficiariesstat h3::after {
    position: absolute;
    border-radius: 10px;
    bottom: -15px;
    transform: translateX(-50%);
    height: 5px;
    content: '';
    width: 60px;
    left: 50%;
    background: linear-gradient(90deg, rgb(212,204,209), rgb(179,169,172));
}.course_beneficiariesstat ul {
    padding: 0;
    display: flex;
    gap: 35px;
    margin: 0;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}.course_beneficiariesstat ul li {
    gap: 20px;
    width: calc(33.333% - 24px);
    display: flex;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 
        10px 10px 20px rgba(166, 180, 208, 0.5),
        -10px -10px 20px rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.4s ease;
    min-width: 280px;
    text-align: left;
    align-items: flex-start;
    background-color: #edf0f8;
}.course_beneficiariesstat ul li:hover {
    transform: translateY(-5px);
    box-shadow: 
        inset 5px 5px 10px rgba(166, 180, 208, 0.4),
        inset -5px -5px 10px rgba(255, 255, 255, 0.8);
}.course_beneficiariesstat ul li::before {
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(212,204,209), rgb(179,169,172));
    content: '';
    transition: opacity 0.3s ease;
    position: absolute;
    height: 12px;
    right: 15px;
    opacity: 0.5;
    top: 15px;
    width: 12px;
}.course_beneficiariesstat ul li:hover::before {
    opacity: 1;
}.course_beneficiariesstat ul li svg {
    width: 50px;
    border-radius: 12px;
    box-shadow: 
        5px 5px 10px rgba(166, 180, 208, 0.5),
        -5px -5px 10px rgba(255, 255, 255, 0.8);
    height: 50px;
    padding: 10px;
    background: linear-gradient(135deg, #edf0f8, #e2e6f3);
    transition: all 0.4s ease;
    flex-shrink: 0;
}.course_beneficiariesstat ul li:hover svg {
    transform: scale(1.05);
    box-shadow: 
        inset 3px 3px 6px rgba(166, 180, 208, 0.4),
        inset -3px -3px 6px rgba(255, 255, 255, 0.8);
}.course_beneficiariesstat ul li svg path {
    transition: fill 0.4s ease;
    fill: rgb(212,204,209);
}.course_beneficiariesstat ul li:hover svg path {
    fill: rgb(179,169,172);
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course_beneficiariesstat ul li {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}.course_beneficiariesstat ul li:nth-child(1) {
    animation-delay: 0.1s;
}.course_beneficiariesstat ul li:nth-child(2) {
    animation-delay: 0.2s;
}.course_beneficiariesstat ul li:nth-child(3) {
    animation-delay: 0.3s;
}.course_beneficiariesstat ul li:nth-child(4) {
    animation-delay: 0.4s;
}.course_beneficiariesstat ul li:nth-child(5) {
    animation-delay: 0.5s;
}.course_beneficiariesstat ul li:nth-child(6) {
    animation-delay: 0.6s;
}

@media (max-width: 992px) {.course_beneficiariesstat {
    padding: 80px 0;
}.course_beneficiariesstat h3 {
    margin-bottom: 50px;
    padding: 15px 30px;
}.course_beneficiariesstat ul {
    gap: 25px;
}.course_beneficiariesstat ul li {
    padding: 30px 25px;
    width: calc(50% - 13px);
}
}

@media (max-width: 768px) {.course_beneficiariesstat ul li {
    width: 100%;
    max-width: 400px;
}
}

@media (max-width: 576px) {.course_beneficiariesstat {
    padding: 60px 0;
}.course_beneficiariesstat h3 {
    margin-bottom: 40px;
    font-size: calc(31px * 0.85);
    padding: 15px 20px;
}.course_beneficiariesstat ul li {
    padding: 25px 20px;
    gap: 15px;
}.course_beneficiariesstat ul li svg {
    width: 40px;
    height: 40px;
    padding: 8px;
}
}

@media (prefers-reduced-motion: reduce) {.course_beneficiariesstat ul li {
    opacity: 1;
    animation: none;
}.course_beneficiariesstat ul li:hover {
    transform: none;
}}.our_teamstat {
    padding: 120px 0;
    overflow: hidden;
    background: rgb(239,237,239);
    z-index: 1;
    position: relative;
}.our_teamstat::before {
    background: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgb(212,204,209,0.5) 10px,
            rgb(212,204,209,0.5) 11px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgb(179,169,172,0.5) 10px,
            rgb(179,169,172,0.5) 11px
        );
    top: 0;
    content: "";
    z-index: -1;
    right: 0;
    opacity: 0.05;
    bottom: 0;
    position: absolute;
    left: 0;
}.our_teamstat .container {
    z-index: 2;
    position: relative;
    padding: 0 25px;
    margin: 0 auto;
    max-width: 1200px;
}.our_teamstat h2 {
    color: #000000;
    margin-bottom: 70px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
    font-size: 29px;
    text-transform: uppercase;
}.our_teamstat h2::before {
    position: absolute;
    content: "";
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
    background: rgb(212,204,209);
    height: 5px;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    left: 50%;
}.our_teamstat h2::after {
    transform: translateX(-50%) rotate(45deg);
    bottom: -3px;
    height: 10px;
    width: 10px;
    background: rgb(179,169,172);
    position: absolute;
    content: "";
    left: 50%;
    animation: float 3s ease-in-out infinite;
}@keyframes float {
    0%, 100% {
        transform: translateX(-50%) rotate(45deg) translateY(0);
    }
    50% {
        transform: translateX(-50%) rotate(45deg) translateY(-5px);
    }
}

.our_teamstat .expert_networkstat {
    flex-direction: column;
    gap: 40px;
    display: flex;
}.our_teamstat .method_innovstat {
    border-top: 4px solid transparent;
    position: relative;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 40px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}.our_teamstat .method_innovstat:nth-child(1) {
    border-top-color: rgb(212,204,209);
}.our_teamstat .method_innovstat:nth-child(2) {
    border-top-color: rgb(179,169,172);
}.our_teamstat .method_innovstat::before {
    opacity: 0.1;
    background: linear-gradient(45deg, rgb(212,204,209,0.5), transparent);
    top: -100px;
    transition: all 0.5s ease;
    width: 200px;
    border-radius: 50%;
    content: "";
    height: 200px;
    right: -100px;
    position: absolute;
}.our_teamstat .method_innovstat:nth-child(2)::before {
    top: -100px;
    background: linear-gradient(45deg, rgb(179,169,172,0.5), transparent);
    left: -100px;
}.our_teamstat .method_innovstat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}.our_teamstat .method_innovstat:hover::before {
    transform: scale(1.5);
}.our_teamstat .method_innovstat::after {
    content: "";
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
    left: 0;
    bottom: 0;
    height: 5px;
    opacity: 0.1;
    position: absolute;
}.our_teamstat .method_innovstat h3 {
    font-weight: 600;
    position: relative;
    display: inline-block;
    font-size: 23px;
    margin-bottom: 20px;
}.our_teamstat .method_innovstat:nth-child(1) h3 {
    color: rgb(212,204,209);
}.our_teamstat .method_innovstat:nth-child(2) h3 {
    color: rgb(179,169,172);
}.our_teamstat .method_innovstat h3::after {
    background: currentColor;
    width: 0;
    transition: width 0.4s ease;
    bottom: -5px;
    content: "";
    left: 0;
    position: absolute;
    height: 2px;
}.our_teamstat .method_innovstat:hover h3::after {
    width: 100%;
}.our_teamstat .method_innovstat p {
    z-index: 2;
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    color: #000000;
}.our_teamstat::after {
    width: 100%;
    content: "";
    background-size: 60px 60px;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(212,204,209,0.5) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgb(179,169,172,0.5) 1px, transparent 1px);
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    position: absolute;
    animation: moveDots 100s linear infinite;
    opacity: 0.2;
}@keyframes moveDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 500px;
    }
}

.our_teamstat .container::before,
.our_teamstat .container::after {
    top: 0;
    animation: scanline 3s linear infinite;
    background: linear-gradient(to bottom, rgb(212,204,209,0.5), transparent);
    width: 2px;
    position: absolute;
    content: "";
    bottom: 0;
    z-index: -1;
}.our_teamstat .container::before {
    left: 10%;
    animation-delay: 1s;
    height: 50%;
}.our_teamstat .container::after {
    height: 70%;
    background: linear-gradient(to bottom, rgb(179,169,172,0.5), transparent);
    right: 10%;
}@keyframes scanline {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.our_teamstat .method_innovstat:nth-child(1) {
    animation: fadeInUp 0.7s ease-out forwards;
}.our_teamstat .method_innovstat:nth-child(2) {
    animation: fadeInUp 0.7s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {.our_teamstat {
    padding: 90px 0;
}.our_teamstat h2 {
    margin-bottom: 50px;
}.our_teamstat .method_innovstat {
    padding: 30px;
}
}

@media (max-width: 768px) {.our_teamstat {
    padding: 70px 0;
}.our_teamstat h2 {
    margin-bottom: 40px;
    font-size: calc(29px * 0.9);
}.our_teamstat .method_innovstat {
    padding: 25px;
}.our_teamstat .method_innovstat h3 {
    font-size: calc(23px * 0.9);
}
}

@media (max-width: 576px) {.our_teamstat {
    padding: 50px 0;
}.our_teamstat h2 {
    margin-bottom: 35px;
    font-size: calc(29px * 0.8);
    letter-spacing: 1px;
}.our_teamstat h2::before {
    height: 4px;
    width: 40px;
}.our_teamstat .method_innovstat {
    padding: 20px;
}.our_teamstat .method_innovstat p {
    font-size: calc(16px * 0.95);
    line-height: 1.6;
}.our_teamstat .container::before,
    .our_teamstat .container::after {
    display: none;
}}.webinar_archstat {
    font-family: Arial, sans-serif;
    background-color: rgb(239,237,239);
    padding: 5rem 0 2rem;
    position: relative;
    color: #000000;
}.webinar_archstat::before {
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    opacity: 0.07;
    background: 
        linear-gradient(135deg, rgb(212,204,209,0.5) 0%, transparent 70%),
        linear-gradient(225deg, rgb(179,169,172,0.5) 0%, transparent 70%);
    width: 100%;
    content: '';
    left: 0;
}.webinar_archstat::after {
    background: linear-gradient(90deg, 
        rgb(239,237,239) 0%,
        rgb(212,204,209) 35%, 
        rgb(179,169,172) 65%,
        rgb(239,237,239) 100%);
    left: 0;
    height: 7px;
    width: 100%;
    position: absolute;
    z-index: 1;
    content: '';
    top: 0;
}.webinar_archstat .container {
    z-index: 2;
    position: relative;
}.webinar_archstat .ssl_infostat {
    flex-direction: column;
    display: flex;
}.webinar_archstat .send_infostat {
    position: relative;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 0;
}.webinar_archstat .send_infostat::after {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgb(179,169,172,0.5) 50%,
        transparent 100%);
    height: 1px;
    content: '';
    width: 100%;
    left: 0;
    bottom: -1px;
}.webinar_archstat .info_item {
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
    width: 25%;
    transition: all 0.3s ease;
    position: relative;
}.webinar_archstat .info_item::before {
    left: 0;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.06);
    height: 60%;
    width: 1px;
    position: absolute;
    top: 50%;
    content: '';
}.webinar_archstat .info_item:first-child::before {
    display: none;
}.webinar_archstat .info_item p,
.webinar_archstat .info_item a {
    font-weight: 400;
    text-align: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #000000;
    font-size: calc(15px - 1px);
}.webinar_archstat .info_item:hover {
    transform: translateY(-5px);
}.webinar_archstat .info_item:hover p,
.webinar_archstat .info_item:hover a {
    color: rgb(212,204,209);
}.webinar_archstat .info_item svg {
    width: 20px;
    fill: rgb(212,204,209);
    transition: transform 0.3s ease;
    height: 20px;
}.webinar_archstat .info_item:hover svg {
    transform: rotate(10deg);
}.webinar_archstat .text_main_holder {
    display: flex;
    gap: 3rem;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
}.webinar_archstat .head_skillstat {
    gap: 1.5rem;
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    display: flex;
    flex-direction: column;
}.webinar_archstat .head_skillstat svg {
    max-width: 160px;
    height: auto;
    transition: all 0.3s ease;
}.webinar_archstat .head_skillstat:hover svg {
    transform: scale(1.05);
}.webinar_archstat .media_kitstat {
    color: #000000;
    line-height: 1.6;
    padding-left: 2rem;
    font-size: 15px;
    position: relative;
}.webinar_archstat .media_kitstat::before {
    top: 0;
    background: linear-gradient(to bottom, rgb(212,204,209), rgb(179,169,172));
    content: '';
    position: absolute;
    width: 4px;
    left: 0;
    border-radius: 2px;
    bottom: 0;
}.webinar_archstat .nav_knowstat {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 240px;
    position: relative;
}.webinar_archstat .nav_knowstat::before {
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    z-index: -1;
    background: rgba(0, 0, 0, 0.02);
    content: '';
    top: 0;
    position: absolute;
}.webinar_archstat .nav_knowstat h5 {
    margin-bottom: 1rem;
    font-size: 23px;
    color: #000000;
    border-radius: 10px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.75rem 1.5rem;
}.webinar_archstat .head_leadstat {
    display: flex;
    padding: 0 1.5rem;
    gap: 0.75rem;
    flex-direction: column;
}.webinar_archstat .head_leadstat:first-child {
    position: relative;
}.webinar_archstat .head_leadstat a {
    position: relative;
    padding-left: 1.25rem;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #000000;
    font-size: 15px;
}.webinar_archstat .head_leadstat a::before {
    position: absolute;
    transition: all 0.3s ease;
    content: '';
    left: 0;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    transform: translateY(-50%);
    top: 50%;
    background-color: rgb(179,169,172,0.5);
}.webinar_archstat .head_leadstat a:hover {
    color: rgb(212,204,209);
    padding-left: 1.5rem;
}.webinar_archstat .head_leadstat a:hover::before {
    height: 8px;
    background-color: rgb(212,204,209);
    width: 8px;
}.webinar_archstat .subscribe_holder {
    gap: 1.5rem;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    flex-direction: column;
    display: flex;
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 245, 245, 0.8) 100%);
    max-width: 400px;
}.webinar_archstat .subscribe_holder::before {
    height: 0;
    border-color: rgb(212,204,209,0.5) transparent transparent transparent;
    content: '';
    width: 0;
    border-width: 50px 50px 0 0;
    border-top-left-radius: 20px;
    border-style: solid;
    top: 0;
    position: absolute;
    left: 0;
}.webinar_archstat .subscribe_holder h5 {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 23px;
}.webinar_archstat .subscribe_holder p {
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
}.webinar_archstat .input_holder {
    display: flex;
    margin-top: 0.5rem;
    gap: 1rem;
    position: relative;
    flex-direction: column;
}.webinar_archstat .input_holder input[type="email"] {
    padding: 1.125rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 15px;
    color: #000000;
    transition: all 0.3s ease;
}.webinar_archstat .input_holder input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgb(212,204,209,0.5);
    outline: none;
    border-color: rgb(212,204,209);
}.webinar_archstat .input_holder input[type="email"]::placeholder {
    opacity: 0.5;
    color: #000000;
}.webinar_archstat .sub_formstat {
    font-weight: 600;
    z-index: 1;
    padding: 1.125rem 1.25rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    background: linear-gradient(135deg, rgb(212,204,209) 0%, rgb(179,169,172) 100%);
    color: #ffffff;
    cursor: pointer;
    border-radius: 10px;
}.webinar_archstat .sub_formstat::before {
    transition: opacity 0.3s ease;
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgb(179,169,172) 0%, rgb(212,204,209) 100%);
    height: 100%;
    z-index: -1;
    content: '';
    width: 100%;
}.webinar_archstat .sub_formstat:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}.webinar_archstat .sub_formstat:hover::before {
    opacity: 1;
}.webinar_archstat .knowl_basestat {
    margin-top: 4rem;
    position: relative;
    padding-top: 2rem;
    text-align: center;
}.webinar_archstat .knowl_basestat::before {
    height: 1px;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    left: 30%;
    content: '';
    position: absolute;
    width: 40%;
}.webinar_archstat .insta_feedstat {
    opacity: 0.8;
    color: #000000;
    font-size: 15px;
}

@media (max-width: 1200px) {.webinar_archstat .text_main_holder {
    gap: 2.5rem;
}.webinar_archstat .head_skillstat {
    max-width: 260px;
}.webinar_archstat .nav_knowstat {
    min-width: 220px;
}
}

@media (max-width: 991px) {.webinar_archstat {
    padding: 4rem 0 2rem;
}.webinar_archstat .info_item {
    width: 50%;
    padding: 1rem;
}.webinar_archstat .info_item:nth-child(3)::before {
    display: none;
}.webinar_archstat .text_main_holder {
    gap: 3rem;
    flex-direction: column;
    align-items: center;
}.webinar_archstat .head_skillstat {
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
}.webinar_archstat .media_kitstat {
    padding-left: 0;
    text-align: center;
    max-width: 500px;
}.webinar_archstat .media_kitstat::before {
    display: none;
}.webinar_archstat .nav_knowstat {
    width: 100%;
    max-width: 600px;
}.webinar_archstat .subscribe_holder {
    max-width: 600px;
    width: 100%;
}
}

@media (max-width: 768px) {.webinar_archstat {
    padding: 3.5rem 0 1.5rem;
}.webinar_archstat .send_infostat {
    margin-bottom: 3rem;
}.webinar_archstat .info_item {
    width: 100%;
}.webinar_archstat .info_item::before {
    display: none;
}.webinar_archstat .head_leadstat {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
    flex-direction: row;
}.webinar_archstat .head_leadstat a {
    text-align: center;
    padding: 0.5rem 1rem;
}.webinar_archstat .head_leadstat a::before {
    display: none;
}.webinar_archstat .head_leadstat a:hover {
    background-color: rgba(0, 0, 0, 0.03);
    padding-left: 1rem;
    border-radius: 10px;
}.webinar_archstat .knowl_basestat {
    margin-top: 3rem;
}
}

@media (max-width: 576px) {.webinar_archstat {
    padding: 3rem 0 1.5rem;
}.webinar_archstat .send_infostat {
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
}.webinar_archstat .text_main_holder {
    gap: 2.5rem;
}.webinar_archstat .nav_knowstat {
    padding: 1rem;
}.webinar_archstat .nav_knowstat h5 {
    text-align: center;
}.webinar_archstat .subscribe_holder {
    padding: 1.5rem;
}.webinar_archstat .subscribe_holder::before {
    border-width: 30px 30px 0 0;
}.webinar_archstat .knowl_basestat {
    margin-top: 2.5rem;
}}.program_outcomesstat {
    overflow: hidden;
    padding: 7rem 0;
    position: relative;
    background: linear-gradient(120deg, rgb(239,237,239) 0%, #ffffff 100%);
}.program_outcomesstat::before {
    top: 0;
    width: 100%;
    content: '';
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        rgb(212,204,209,0.5) 0,
        rgb(212,204,209,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    animation: patternShift 20s linear infinite;
    left: 0;
    height: 100%;
    opacity: 0.1;
}.program_outcomesstat .learn_classesstat {
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
    display: flex;
    position: relative;
    max-width: 1200px;
    flex-direction: column;
}.program_outcomesstat h2 {
    position: relative;
    text-align: center;
    font-weight: 700;
    margin-bottom: 4rem;
    font-size: 28px;
    color: #000000;
}.program_outcomesstat h2::after {
    transform: translateX(-50%);
    bottom: -15px;
    background: rgb(212,204,209);
    width: 80px;
    left: 50%;
    height: 4px;
    content: '';
    border-radius: 10px;
    position: absolute;
}.program_outcomesstat .info_panelstat {
    width: 100%;
    margin-bottom: 3rem;
}.program_outcomesstat .text_main_holder {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 2rem;
}.program_outcomesstat .text_main_holder > div {
    border-radius: 17px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    display: flex;
    padding: 2rem;
    background: #ffffff;
    flex-direction: column;
    z-index: 1;
    position: relative;
    overflow: hidden;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}.program_outcomesstat .text_main_holder > div::before {
    width: 200%;
    z-index: -1;
    background: radial-gradient(
        circle at center,
        rgb(212,204,209,0.5) 0%,
        transparent 70%
    );
    transform: scale(0.5);
    top: -50%;
    height: 200%;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    left: -50%;
    content: '';
}.program_outcomesstat .text_main_holder > div:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}.program_outcomesstat .text_main_holder > div:hover::before {
    opacity: 0.8;
    transform: scale(1);
}.program_outcomesstat .text_main_holder svg {
    border-radius: 50%;
    transition: all 0.3s ease;
    height: 4rem;
    width: 4rem;
    background: rgb(239,237,239);
    padding: 1rem;
    margin-bottom: 1.5rem;
}.program_outcomesstat .text_main_holder > div:hover svg {
    transform: scale(1.1);
    background: rgb(212,204,209,0.5);
}.program_outcomesstat .text_main_holder svg path {
    transition: fill 0.3s ease;
    fill: rgb(212,204,209);
}.program_outcomesstat .text_main_holder > div:hover svg path {
    fill: rgb(179,169,172);
}.program_outcomesstat .text_main_holder p {
    font-size: 17px;
    margin: 0;
    color: #000000;
    line-height: 1.6;
}.program_outcomesstat .img_panelstat {
    border-radius: 17px;
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
}.program_outcomesstat .img_panelstat::before {
    background: linear-gradient(
        to bottom right,
        rgb(212,204,209,0.5) 0%,
        transparent 50%,
        rgb(179,169,172,0.5) 100%
    );
    height: 100%;
    top: 0;
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
}

@keyframes patternShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@media (max-width: 992px) {.program_outcomesstat .text_main_holder {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {.program_outcomesstat {
    padding: 5rem 0;
}.program_outcomesstat .text_main_holder {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}.program_outcomesstat h2 {
    font-size: calc(28px * 0.9);
    margin-bottom: 3rem;
}.program_outcomesstat .img_panelstat {
    height: 300px;
}
}

@media (max-width: 576px) {.program_outcomesstat {
    padding: 4rem 0;
}.program_outcomesstat .learn_classesstat {
    padding: 0 1.5rem;
}.program_outcomesstat .text_main_holder > div {
    padding: 1.5rem;
}.program_outcomesstat .text_main_holder svg {
    height: 3.5rem;
    padding: 0.8rem;
    width: 3.5rem;
}.program_outcomesstat .img_panelstat {
    height: 250px;
}}header {
    z-index: 100;
    background: rgb(239,237,239);
    padding: 1.2rem 0;
    position: relative;
}header::before {
    height: 100%;
    position: absolute;
    content: '';
    opacity: 0.5;
    top: 0;
    background: linear-gradient(135deg, 
        rgb(212,204,209,0.5) 0%, 
        transparent 50%, 
        rgb(179,169,172,0.5) 100%);
    left: 0;
    width: 100%;
}header .container {
    padding: 0 1.5rem;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
}header .top_wrapstat {
    gap: 1rem;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    border-radius: 27px;
    background: #ffffff;
}header .header_navbarstat {
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: flex;
    position: relative;
    padding: 0.5rem 1rem;
    justify-content: center;
}header .header_navbarstat::before {
    height: 1px;
    left: 0;
    position: absolute;
    background: linear-gradient(to right, 
        transparent, 
        rgb(212,204,209,0.5), 
        rgb(179,169,172,0.5), 
        rgb(212,204,209,0.5), 
        transparent);
    bottom: 0;
    content: '';
    width: 100%;
}header .header_navbarstat svg {
    width: 160px;
    transition: all 0.3s ease;
    height: auto;
}header .header_navbarstat:hover svg {
    filter: drop-shadow(0 2px 4px rgb(212,204,209,0.5));
    transform: translateY(-2px);
}header .nav_knowstat {
    display: flex;
    border-radius: 10px;
    width: 100%;
    padding: 0.6rem;
    justify-content: center;
    gap: 0.4rem;
    background: rgb(239,237,239);
    flex-wrap: wrap;
}header .header_mainbarstat {
    transition: all 0.3s ease;
    font-weight: 400;
    color: #000000;
    overflow: hidden;
    font-family: Arial, sans-serif;
    padding: 0.5rem 1rem;
    font-size: 12px;
    position: relative;
    border-radius: 10px;
    z-index: 1;
    text-decoration: none;
}header .header_mainbarstat::before {
    content: '';
    width: 100%;
    background: linear-gradient(135deg, rgb(212,204,209), rgb(179,169,172));
    height: 100%;
    left: 0;
    opacity: 0;
    z-index: -1;
    top: 0;
    position: absolute;
    transition: opacity 0.3s ease;
}header .header_mainbarstat:hover {
    color: #ffffff;
}header .header_mainbarstat:hover::before {
    opacity: 1;
}header .header_mainbarstat::after {
    content: '';
    height: 2px;
    width: 100%;
    transform-origin: left;
    background: linear-gradient(to right, rgb(212,204,209), rgb(179,169,172));
    transition: transform 0.3s ease;
    transform: scaleX(0);
    bottom: 0;
    left: 0;
    position: absolute;
}header .header_mainbarstat:hover::after {
    transform: scaleX(1);
}

@media (max-width: 991px) {header {
    padding: 1rem 0;
}header .top_wrapstat {
    gap: 0.8rem;
    padding: 0.8rem;
}header .header_navbarstat svg {
    width: 140px;
}header .nav_knowstat {
    padding: 0.5rem;
}header .header_mainbarstat {
    padding: 0.4rem 0.8rem;
    font-size: calc(12px - 1px);
}
}

@media (max-width: 767px) {header {
    padding: 0.8rem 0;
}header .top_wrapstat {
    padding: 0.7rem;
    gap: 0.7rem;
}header .header_navbarstat svg {
    width: 120px;
}header .nav_knowstat {
    gap: 0.3rem;
    padding: 0.4rem;
}header .header_mainbarstat {
    font-size: calc(12px - 2px);
    padding: 0.3rem 0.7rem;
}
}

@media (max-width: 480px) {header {
    padding: 0.7rem 0;
}header .top_wrapstat {
    gap: 0.6rem;
    padding: 0.6rem;
}header .header_navbarstat svg {
    width: 110px;
}header .nav_knowstat {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.4rem;
}header .nav_knowstat::-webkit-scrollbar {
    height: 2px;
}header .nav_knowstat::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(212,204,209);
}header .header_mainbarstat {
    flex-shrink: 0;
    white-space: nowrap;
}}.thanksCorestat {
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(239,237,239) 0%, rgb(179,169,172,0.5) 100%);
    position: relative;
    overflow: hidden;
}.thanksCorestat::before {
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    content: "";
    height: 100%;
    pointer-events: none;
    width: 100%;
    opacity: 0.4;
    background: 
    radial-gradient(circle at 10% 20%, rgb(212,204,209,0.5) 5%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgb(179,169,172,0.5) 10%, transparent 50%);
}.thanksCorestat::after {
    filter: blur(80px);
    width: 90%;
    z-index: 1;
    height: 90%;
    opacity: 0.08;
    pointer-events: none;
    content: "";
    transform: rotate(-15deg);
    background: rgb(255, 255, 255, 0.5);
    top: -50%;
    position: absolute;
    right: -50%;
}.thanksCorestat .container {
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}.thanksCorestat .learn_classesstat {
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
              0 5px 12px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-left: 4px solid rgb(212,204,209);
    transform: perspective(1000px) rotateX(2deg);
    padding: 60px 50px;
    backdrop-filter: blur(10px);
    animation: slideIn 0.8s cubic-bezier(0.17, 0.67, 0.45, 1.09) forwards;
}.thanksCorestat .learn_classesstat::before {
    left: 20px;
    right: 20px;
    position: absolute;
    content: "";
    border: 1px solid rgb(179,169,172,0.5);
    transform: scale(0.97);
    top: 20px;
    border-radius: 10px;
    opacity: 0.2;
    bottom: 20px;
    transition: transform 0.5s ease;
    pointer-events: none;
}.thanksCorestat .learn_classesstat:hover::before {
    transform: scale(1);
}.thanksCorestat .learn_classesstat > div:first-child {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 30px;
}.thanksCorestat .learn_classesstat > div:first-child::after {
    width: 80px;
    background: linear-gradient(90deg, rgb(212,204,209) 0%, rgb(179,169,172) 100%);
    left: 0;
    position: absolute;
    animation: lineExpand 1s ease-out 0.3s forwards;
    height: 3px;
    content: "";
    transform-origin: left center;
    bottom: 0;
}.thanksCorestat h5 {
    line-height: 1.4;
    font-weight: 700;
    animation: fadeUp 0.7s ease-out 0.2s forwards;
    margin: 0;
    transform: translateY(15px);
    font-size: 18px;
    opacity: 0;
    color: #000000;
}.thanksCorestat p {
    opacity: 0;
    color: #000000;
    animation: fadeUp 0.7s ease-out 0.4s forwards;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    transform: translateY(15px);
    font-size: 18px;
}.thanksCorestat a {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.45, 1.09);
}.thanksCorestat a:hover {
    transform: translateY(-5px);
}.thanksCorestat a::after {
    background: linear-gradient(90deg, rgb(212,204,209,0.5) 0%, transparent 100%);
    position: absolute;
    transform: scaleX(0.3);
    height: 1px;
    width: 100%;
    transform-origin: left;
    transition: transform 0.5s ease, opacity 0.5s ease;
    bottom: -8px;
    content: "";
    opacity: 0;
    left: 0;
}.thanksCorestat a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

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

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

@keyframes slideIn {
  0% {
    transform: perspective(1000px) translateY(50px) rotateX(8deg);
    opacity: 0;
  }
  100% {
    transform: perspective(1000px) translateY(0) rotateX(2deg);
    opacity: 1;
  }
}

@media (max-width: 992px) {.thanksCorestat {
    padding: 80px 0;
}.thanksCorestat .learn_classesstat {
    padding: 50px 40px;
}.thanksCorestat h5 {
    font-size: calc(18px - 2px);
}
}

@media (max-width: 768px) {.thanksCorestat {
    padding: 60px 0;
}.thanksCorestat .learn_classesstat {
    transform: perspective(1000px) rotateX(1deg);
    padding: 40px 30px;
}.thanksCorestat .learn_classesstat::before {
    left: 15px;
    right: 15px;
    bottom: 15px;
    top: 15px;
}.thanksCorestat .learn_classesstat > div:first-child {
    padding-bottom: 20px;
    margin-bottom: 25px;
}.thanksCorestat h5 {
    font-size: calc(18px - 4px);
}.thanksCorestat p {
    line-height: 1.7;
    font-size: calc(18px - 1px);
}
}

@media (max-width: 576px) {.thanksCorestat {
    padding: 50px 0;
}.thanksCorestat .learn_classesstat {
    padding: 30px 20px;
    transform: none;
    border-left: 3px solid rgb(212,204,209);
}.thanksCorestat .learn_classesstat::before {
    display: none;
}.thanksCorestat .learn_classesstat > div:first-child {
    padding-bottom: 15px;
    margin-bottom: 20px;
}.thanksCorestat .learn_classesstat > div:first-child::after {
    height: 2px;
    width: 60px;
}.thanksCorestat h5 {
    font-size: calc(18px - 6px);
}.thanksCorestat p {
    font-size: calc(18px - 2px);
    line-height: 1.6;
}}.plan_list_itemstat {
    position: relative;
    background-color: rgb(239,237,239);
    padding: 5rem 0;
    overflow: hidden;
}.plan_list_itemstat::before {
    top: -3rem;
    position: absolute;
    right: -3rem;
    width: 12rem;
    transform: rotate(15deg);
    opacity: 0.07;
    height: 12rem;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, rgb(212,204,209), rgb(179,169,172));
    content: "";
}.plan_list_itemstat::after {
    opacity: 0.05;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    position: absolute;
    content: "";
    height: 18rem;
    bottom: -5rem;
    z-index: 0;
    transform: rotate(-10deg);
    background: linear-gradient(45deg, rgb(179,169,172), rgb(212,204,209,0.5));
    left: -5rem;
    width: 18rem;
}.plan_list_itemstat .container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1.5rem;
    z-index: 1;
}.plan_list_itemstat .fee_plansstat {
    flex-direction: column;
    display: flex;
}.plan_list_itemstat .payment_pricingstat {
    margin-bottom: 3rem;
    position: relative;
    order: -1;
}.plan_list_itemstat .payment_pricingstat h2 {
    display: inline-block;
    color: #000000;
    font-size: 34px;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}.plan_list_itemstat .payment_pricingstat h2::after {
    height: 3px;
    width: 60%;
    position: absolute;
    background: linear-gradient(90deg, rgb(212,204,209), transparent);
    bottom: -0.5rem;
    left: 0;
    content: "";
}.plan_list_itemstat .access_plansstat {
    color: #000000;
    max-width: 800px;
    font-size: 16px;
    margin-bottom: 1rem;
    line-height: 1.6;
}.plan_list_itemstat .tuition_tablestat {
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    display: grid;
    gap: 1.5rem;
}.plan_list_itemstat .discount_tierstat {
    color: #000000;
    z-index: 2;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
}.plan_list_itemstat .study_costsstat {
    background-color: #ffffff;
    position: relative;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    overflow: hidden;
    min-height: 480px;
    transform: translateY(0);
}.plan_list_itemstat .discount_tierstat:hover .study_costsstat {
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}.plan_list_itemstat .learning_pricingstat {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    z-index: 2;
    padding: 2rem;
    overflow: hidden;
}.plan_list_itemstat .learning_pricingstat h3 {
    color: #000000;
    margin-bottom: 0.5rem;
    display: inline-block;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
    font-size: calc(21px + 0.1rem);
}.plan_list_itemstat .discount_tierstat:hover .learning_pricingstat h3 {
    color: rgb(212,204,209);
}.plan_list_itemstat .program_pricestat {
    position: relative;
    transition: transform 0.3s ease;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
    color: rgb(212,204,209);
    font-size: calc(21px + 0.5rem);
}.plan_list_itemstat .program_pricestat::before {
    width: 3rem;
    content: "";
    background-color: rgb(212,204,209,0.5);
    transition: transform 0.4s ease;
    height: 2px;
    left: 0;
    position: absolute;
    transform-origin: left;
    bottom: -0.75rem;
    transform: scaleX(1);
}.plan_list_itemstat .discount_tierstat:hover .program_pricestat::before {
    transform: scaleX(1.5);
}.plan_list_itemstat .learning_pricingstat p {
    line-height: 1.6;
    flex-grow: 1;
    color: #000000;
    word-break: break-word;
    margin-bottom: 1.5rem;
    font-size: calc(16px - 0.1rem);
    overflow-wrap: break-word;
}.plan_list_itemstat .img_panelstat {
    width: 100%;
    position: relative;
    height: 180px;
    overflow: hidden;
    transition: transform 0.6s ease;
}.plan_list_itemstat .img_panelstat::after {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
    top: 0;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}.plan_list_itemstat .discount_tierstat:hover .img_panelstat {
    transform: scale(1.03);
}.plan_list_itemstat .discount_tierstat:hover .img_panelstat::after {
    opacity: 0.4;
}.plan_list_itemstat .study_costsstat::before {
    position: absolute;
    transform-origin: left;
    content: "";
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    top: 0;
    transform: scaleX(0);
    height: 5px;
    background: linear-gradient(90deg, rgb(212,204,209), rgb(179,169,172));
    left: 0;
}.plan_list_itemstat .discount_tierstat:hover .study_costsstat::before {
    transform: scaleX(1);
}

@media (min-width: 768px) {.plan_list_itemstat .fee_plansstat {
    align-items: flex-start;
    gap: 2rem;
    flex-direction: row;
}.plan_list_itemstat .payment_pricingstat {
    order: 0;
    padding-top: 2rem;
    margin-bottom: 0;
    flex: 0 0 30%;
}.plan_list_itemstat .tuition_tablestat {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    flex: 0 0 70%;
}.plan_list_itemstat .study_costsstat {
    border-radius: 0.25rem;
}
}

@media (max-width: 767px) {.plan_list_itemstat {
    padding: 3rem 0;
}.plan_list_itemstat .tuition_tablestat {
    margin: 0 auto;
    grid-template-columns: 1fr;
    max-width: 500px;
}.plan_list_itemstat .payment_pricingstat h2 {
    display: block;
    text-align: center;
}.plan_list_itemstat .payment_pricingstat h2::after {
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
}.plan_list_itemstat .access_plansstat {
    text-align: center;
}.plan_list_itemstat .study_costsstat {
    min-height: auto;
}.plan_list_itemstat .learning_pricingstat {
    padding: 1.5rem;
}.plan_list_itemstat .img_panelstat {
    height: 160px;
}
}

@media (min-width: 1024px) {.plan_list_itemstat .tuition_tablestat {
    grid-template-columns: repeat(2, 1fr);
}.plan_list_itemstat .discount_tierstat:nth-child(odd) {
    transform: translateY(1.5rem);
}
}

@media (min-width: 1200px) {.plan_list_itemstat .payment_pricingstat {
    padding-top: 4rem;
}.plan_list_itemstat .discount_tierstat:hover {
    z-index: 5;
}.plan_list_itemstat .tuition_tablestat {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
    column-gap: 2rem;
}
}

@media (prefers-reduced-motion: reduce) {.plan_list_itemstat .discount_tierstat,
    .plan_list_itemstat .study_costsstat,
    .plan_list_itemstat .img_panelstat,
    .plan_list_itemstat .program_pricestat::before,
    .plan_list_itemstat .study_costsstat::before {
    transition: none;
}}.contact_sectionstat {
    padding: 90px 0;
    overflow: hidden;
    position: relative;
}.contact_sectionstat::before {
    content: '';
    z-index: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgb(179,169,172) 0%, rgb(212,204,209) 100%);
    left: 0;
    opacity: 0.9;
    position: absolute;
    top: 0;
}.contact_sectionstat .container {
    margin: 0 auto;
    z-index: 2;
    max-width: 1140px;
    position: relative;
}.contact_sectionstat .feedback_inquirystat {
    gap: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 0;
}.contact_sectionstat .request_supportstat {
    position: relative;
    padding: 50px;
    background: rgb(239,237,239);
}.contact_sectionstat .request_supportstat::after {
    background: linear-gradient(to bottom, rgb(212,204,209), rgb(179,169,172));
    height: 100%;
    width: 5px;
    top: 0;
    position: absolute;
    content: '';
    right: 0;
}.contact_sectionstat .request_supportstat h3 {
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    position: relative;
    color: #000000;
    padding-bottom: 20px;
}.contact_sectionstat .request_supportstat h3::after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: rgb(212,204,209);
}.contact_sectionstat .request_supportstat div {
    margin-bottom: 30px;
    padding-left: 15px;
    align-items: center;
    display: flex;
    position: relative;
}.contact_sectionstat .request_supportstat div::before {
    opacity: 0.5;
    border-radius: 10px;
    background: rgb(212,204,209);
    width: 5px;
    left: 0;
    height: 100%;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    content: '';
}.contact_sectionstat .request_supportstat div:hover::before {
    opacity: 1;
    height: 120%;
    transition: all 0.3s ease;
}.contact_sectionstat .request_supportstat div svg {
    height: 22px;
    margin-right: 20px;
    width: 22px;
}.contact_sectionstat .request_supportstat div svg path {
    fill: rgb(212,204,209);
}.contact_sectionstat .request_supportstat div span {
    color: #000000;
    font-size: calc(18px * 0.95);
    font-weight: 400;
}.contact_sectionstat .request_supportstat div span a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}.contact_sectionstat .request_supportstat div span a:hover {
    color: rgb(212,204,209);
}.contact_sectionstat .support_liststat {
    padding: 50px;
    background: rgba(0, 0, 0, 0.5);
}.contact_sectionstat .support_liststat h3 {
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 30px;
    color: #ffffff;
    text-transform: uppercase;
}.contact_sectionstat form {
    flex-direction: column;
    display: flex;
}.contact_sectionstat form input[type="text"],
.contact_sectionstat form input[type="email"] {
    background: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border: none;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    padding: 15px 5px;
    color: #ffffff;
    font-size: 18px;
}.contact_sectionstat form input[type="text"]:focus,
.contact_sectionstat form input[type="email"]:focus {
    border-bottom-color: rgb(179,169,172);
    outline: none;
}.contact_sectionstat form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}.contact_sectionstat .message_supportstat {
    display: flex;
    margin: 10px 0 25px;
    align-items: flex-start;
}.contact_sectionstat .message_supportstat input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.contact_sectionstat .message_supportstat label {
    padding-left: 30px;
    position: relative;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-size: 15px;
}.contact_sectionstat .message_supportstat label::before {
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    width: 18px;
    content: '';
    position: absolute;
    background-color: transparent;
    top: 2px;
    height: 18px;
    left: 0;
}.contact_sectionstat .message_supportstat input[type="checkbox"]:checked + label::before {
    border-color: rgb(179,169,172);
    background-color: rgb(179,169,172);
}.contact_sectionstat .message_supportstat input[type="checkbox"]:checked + label::after {
    border-width: 0 2px 2px 0;
    border: solid #ffffff;
    top: 6px;
    transform: rotate(45deg);
    left: 6px;
    width: 6px;
    height: 10px;
    content: '';
    position: absolute;
}.contact_sectionstat .message_supportstat label a {
    text-decoration: none;
    color: rgb(179,169,172);
}.contact_sectionstat .message_supportstat label a:hover {
    text-decoration: underline;
}.contact_sectionstat form .inquiry_supportstat {
    color: #ffffff;
    border: none;
    transition: color 0.3s ease;
    overflow: hidden;
    text-transform: uppercase;
    align-self: flex-start;
    padding: 15px 35px;
    font-weight: 600;
    font-size: 19px;
    cursor: pointer;
    position: relative;
    background: rgb(179,169,172);
    z-index: 1;
    letter-spacing: 1px;
}.contact_sectionstat form .inquiry_supportstat::before {
    background: rgb(212,204,209);
    position: absolute;
    top: 0;
    content: '';
    left: 0;
    z-index: -1;
    height: 100%;
    transition: width 0.3s ease;
    width: 0;
}.contact_sectionstat form .inquiry_supportstat:hover::before {
    width: 100%;
}@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.contact_sectionstat .request_supportstat div:nth-child(even) {
    animation: pulse 4s infinite;
}

@media screen and (max-width: 992px) {.contact_sectionstat .feedback_inquirystat {
    grid-template-columns: 1fr;
}.contact_sectionstat .request_supportstat::after {
    display: none;
}.contact_sectionstat .request_supportstat,
    .contact_sectionstat .support_liststat {
    padding: 40px 30px;
}
}

@media screen and (max-width: 576px) {.contact_sectionstat {
    padding: 60px 0;
}.contact_sectionstat .request_supportstat,
    .contact_sectionstat .support_liststat {
    padding: 30px 20px;
}.contact_sectionstat .request_supportstat h3 {
    margin-bottom: 30px;
    font-size: calc(32px * 0.85);
}.contact_sectionstat .request_supportstat div {
    margin-bottom: 20px;
}.contact_sectionstat form .inquiry_supportstat {
    width: 100%;
    padding: 12px 20px;
}}.privacy_fortressstat {
    background: #ffffff;
    width: 100%;
    overflow: hidden;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}.privacy_fortressstat h1 {
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(212,204,209);
    font-size: 40px;
    margin-top: 20px;
    padding-bottom: 10px;
    color: rgb(212,204,209);
    font-weight: 700;
    font-family: Arial, sans-serif;
    text-align: center;
}.privacy_fortressstat h2 {
    color: rgb(179,169,172);
    margin-top: 30px;
    font-weight: 600;
    font-size: 31px;
    border-bottom: 1px solid rgb(179,169,172);
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    padding-bottom: 8px;
}.privacy_fortressstat h3, .privacy_fortressstat h4, .privacy_fortressstat h5, .privacy_fortressstat h6 {
    color: #000000;
    font-weight: 600;
    margin-top: 25px;
    padding-bottom: 5px;
    font-size: 23px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}.privacy_fortressstat ul, .privacy_fortressstat ol {
    list-style-position: inside;
    margin: 0;
    padding-left: 0;
    padding: 10px 0;
}.privacy_fortressstat li {
    color: #000000;
    margin-bottom: 10px;
    padding: 5px 0;
    line-height: 1.8;
    font-family: Arial, sans-serif;
    font-size: 13px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}.privacy_fortressstat section {
    background: #ffffff;
}.privacy_fortressstat p, .privacy_fortressstat span, .privacy_fortressstat div {
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media only screen and (max-width: 800px) {.privacy_fortressstat {
    padding: 20px;
    box-shadow: none;
}.privacy_fortressstat h1, .privacy_fortressstat h2 {
    border-bottom-width: 1px;
    font-size: calc(23px - 5px);
    text-align: left;
}.privacy_fortressstat ul, .privacy_fortressstat ol {
    padding: 10px 0;
}.privacy_fortressstat li {
    padding: 5px 0;
}.privacy_fortressstat p, .privacy_fortressstat span, .privacy_fortressstat div {
    padding-bottom: 5px;
}}.title_pagestat {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(94,170,168,0.1) 0%, rgba(94,170,168,0.04) 100%);
    overflow: hidden;
    flex-direction: column;
    display: flex;
    position: relative;
    width: 100%;
}.title_pagestat::before {
    position: absolute;
    background: 
        radial-gradient(circle at 20% 30%, rgba(94,170,168,0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(94,170,168,0.1) 0%, transparent 30%);
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
}.title_pagestat::after {
    content: "";
    background-position: 0 0, 0 15px, 15px -15px, -15px 0px;
    background-image: 
        linear-gradient(45deg, rgba(94,170,168,0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(94,170,168,0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(94,170,168,0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(94,170,168,0.05) 75%);
    background-size: 30px 30px;
    opacity: 0.3;
    width: 100%;
    position: absolute;
    z-index: 0;
    height: 100%;
}.title_pagestat .img_panelstat {
    border-radius: 0 0 0 100px;
    height: 70%;
    z-index: 2;
    top: 15%;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    width: 55%;
    right: 0;
    position: absolute;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -15px 15px 30px rgba(0,0,0,0.2);
}.title_pagestat .img_panelstat::after {
    background: linear-gradient(135deg, transparent 60%, rgba(94,170,168,0.3) 100%);
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
}.title_pagestat .img_panelstat:hover {
    transform: perspective(1000px) rotateY(-2deg) translateZ(10px);
}.title_pagestat .learn_classesstat {
    padding-top: 15vh;
    flex-direction: column;
    position: relative;
    display: flex;
    justify-content: center;
    width: 50%;
    margin-left: 5%;
    z-index: 3;
}.title_pagestat h1 {
    position: relative;
    color: #000000;
    animation: slideIn 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.3s;
    opacity: 0;
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    transform: translateX(-20px);
}.title_pagestat h1::after {
    height: a4px;
    width: 80px;
    transform-origin: left;
    left: 0;
    content: "";
    position: absolute;
    animation: lineExpand 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.8s;
    background: linear-gradient(90deg, rgb(212,204,209), rgba(94,170,168,0.5));
    bottom: -10px;
    transform: scaleX(0);
}.title_pagestat .info_panelstat {
    position: relative;
    border-radius: 5px;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1), 
                -5px -5px 20px rgba(255,255,255,0.8),
                inset 2px 2px 5px rgba(255,255,255,0.9),
                inset -2px -2px 5px rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.5s;
    padding: 40px;
}.title_pagestat .info_panelstat::before {
    opacity: 0.2;
    position: absolute;
    transform: rotate(45deg);
    background: rgb(212,204,209);
    z-index: -1;
    border-radius: 5px;
    height: 40px;
    width: 40px;
    top: -10px;
    left: 20px;
    content: "";
}.title_pagestat .info_panelstat p {
    line-height: 1.6;
    color: #000000;
    margin-bottom: 25px;
    position: relative;
    font-size: calc(12px * 1.2);
}.title_pagestat .start_topstat {
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 30px 0;
}.title_pagestat svg {
    height: 90px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
    width: 90px;
}.title_pagestat svg:hover {
    transform: scale(1.05) rotate(-2deg);
}.title_pagestat svg path {
    transition: fill 0.3s ease;
    fill: rgb(94,170,168);
}.title_pagestat svg:hover path {
    fill: rgba(94,170,168,0.9);
}.title_pagestat svg text {
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}.title_pagestat svg:hover text {
    fill: rgb(64, 140, 138);
}.title_pagestat h6 {
    text-align: center;
    margin-top: 20px;
}.title_pagestat .inquiry_supportstat {
    box-shadow: 5px 5px 15px rgba(94,170,168,0.3),
                -2px -2px 10px rgba(255,255,255,0.8),
                inset 1px 1px 2px rgba(255,255,255,0.5);
    color: #ffffff;
    font-weight: 600;
    z-index: 1;
    background: linear-gradient(135deg, rgb(212,204,209), rgba(94,170,168,0.85));
    text-decoration: none;
    padding: 14px 28px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: inline-block;
    font-size: 19px;
    overflow: hidden;
    border-radius: 4px;
}.title_pagestat .inquiry_supportstat::before {
    height: 100%;
    content: "";
    top: 0;
    z-index: -1;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    width: 100%;
    position: absolute;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    left: -100%;
}.title_pagestat .inquiry_supportstat:hover {
    transform: translateY(-3px);
    box-shadow: 7px 7px 20px rgba(94,170,168,0.4),
                -3px -3px 15px rgba(255,255,255,0.9);
}.title_pagestat .inquiry_supportstat:hover::before {
    left: 100%;
}

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

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

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

@media screen and (max-width: 1200px) {.title_pagestat .learn_classesstat {
    width: 55%;
    padding-top: 12vh;
}.title_pagestat .img_panelstat {
    width: 50%;
}
}

@media screen and (max-width: 992px) {.title_pagestat .learn_classesstat {
    margin-left: 3%;
    width: 60%;
}.title_pagestat .img_panelstat {
    height: 60%;
    width: 45%;
}.title_pagestat .info_panelstat {
    padding: 30px;
}.title_pagestat svg {
    height: 80px;
    width: 80px;
}
}

@media screen and (max-width: 768px) {.title_pagestat {
    padding: 80px 0 50px;
    min-height: auto;
}.title_pagestat .learn_classesstat {
    padding-top: 240px;
    margin: 0 auto;
    width: 90%;
}.title_pagestat .img_panelstat {
    border-radius: 0;
    right: 10%;
    width: 80%;
    top: 5%;
    clip-path: none;
    height: 220px;
    transform: none;
}.title_pagestat h1 {
    font-size: calc(38px * 0.85);
    text-align: center;
}.title_pagestat h1::after {
    transform: translateX(-50%) scaleX(0);
    left: 50%;
}@keyframes lineExpand {
        to {
            transform: translateX(-50%) scaleX(1);
        }
    }
    
    .title_pagestat .info_panelstat {
    padding: 25px;
}.title_pagestat .info_panelstat p {
    font-size: 12px;
    text-align: center;
}
}

@media screen and (max-width: 576px) {.title_pagestat {
    padding: 60px 0 40px;
}.title_pagestat .learn_classesstat {
    width: 92%;
    padding-top: 200px;
}.title_pagestat .img_panelstat {
    height: 180px;
}.title_pagestat h1 {
    font-size: calc(38px * 0.75);
}.title_pagestat .info_panelstat {
    padding: 20px 15px;
}.title_pagestat svg {
    width: 60px;
    height: 60px;
}.title_pagestat .inquiry_supportstat {
    font-size: calc(19px * 0.9);
    padding: 12px 22px;
}}.cookie_message_popupstat {
    bottom: 0;
    position: fixed;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    padding: 1rem 0;
    display: flex;
    transition: transform 0.3s ease-in-out;
    background: rgb(239,237,239);
    z-index: 90;
    justify-content: center;
    overflow: hidden;
    border-top: 3px solid rgb(212,204,209);
    width: 100%;
}#cookiePolicyPanelstat {
    display: none;
}#cookiePolicyPanelstat:checked ~ .cookie_message_popupstat {
    visibility: hidden;
    opacity: 0;
}.cookie_message_popupstat .container {
    flex-wrap: wrap;
    z-index: 1;
    padding: 0 15px;
    max-width: 1140px;
    position: relative;
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
    gap: 1rem;
}.edu_approvestat {
    flex-shrink: 0;
    align-items: center;
    display: flex;
    margin-right: 1rem;
}.edu_approvestat svg {
    width: 50px;
    height: 50px;
    fill: rgb(212,204,209);
}.privacy_cookiesstat {
    margin-bottom: 20px;
    min-width: 300px;
    flex: 1;
}.privacy_cookiesstat h5 {
    font-weight: 600;
    font-size: 1.5rem;
    color: rgb(212,204,209);
    margin-bottom: 0.5rem;
}.privacy_cookiesstat p {
    font-size: 1rem;
    color: #000000;
}.cookie_guardstat {
    cursor: pointer;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    border: none;
    background: rgb(212,204,209);
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    padding: 0.75rem 1.5rem;
}.cookie_button.tracking_policystat {
    background: rgb(212,204,209);
}.cookie_button.cookie_tipsstat {
    background: #000000;
    margin-left: 0.5rem;
}.cookie_guardstat:hover {
    transform: translateY(-3px);
    background: #000000;
}.cookie_button.cookie_tipsstat:hover {
    background: rgb(212,204,209);
}.cookie_message_popupstat p a {
    text-decoration: underline;
    transition: color 0.3s ease;
    color: rgb(212,204,209);
}.cookie_message_popupstat p a:hover {
    color: #000000;
}
@media only screen and (max-width: 768px) {.cookie_message_popupstat .container {
    align-items: center;
    flex-direction: column;
}.edu_approvestat {
    margin-right: 0;
    margin-bottom: 1rem;
}.privacy_cookiesstat {
    margin-bottom: 1rem;
    text-align: center;
}.cookie_button.cookie_tipsstat {
    margin-left: 0;
    margin-top: 0.5rem;
}}
.mentorship_profilestat {
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgb(212,204,209,0.5) 0%, transparent 40%), 
              radial-gradient(circle at 30% 70%, rgb(179,169,172,0.5) 0%, transparent 40%), 
              #000000;
}.mentorship_profilestat::before {
    left: -25%;
    opacity: 0.3;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, #000000 100%), 
              repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0px, rgba(0, 0, 0, 0.5) 1px, transparent 1px, transparent 10px);
    animation: backgroundMovement 30s linear infinite alternate;
    position: absolute;
    width: 150%;
    height: 150%;
    content: "";
    top: -25%;
}.mentorship_profilestat .container {
    position: relative;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
}.mentorship_profilestat .testimonial_feedbackstat {
    position: relative;
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 0;
    overflow: hidden;
    border-radius: 17px;
    grid-template-rows: auto auto auto;
}.mentorship_profilestat .testimonial_feedbackstat::after {
    opacity: 0.3;
    left: 0;
    background: linear-gradient(135deg, rgb(212,204,209,0.5) 0%, transparent 50%);
    position: absolute;
    width: 100%;
    top: 0;
    mix-blend-mode: overlay;
    pointer-events: none;
    content: "";
    height: 100%;
}.mentorship_profilestat .testimonial_feedbackstat .img_panelstat {
    transform: scale(1.05) translateX(-5%);
    grid-column: 1 / 2;
    z-index: 1;
    border-radius: 0;
    grid-row: 1 / 4;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    position: relative;
    min-height: 500px;
    transition: all 0.5s ease;
    box-shadow: 0 0 30px rgb(212,204,209,0.5);
}.mentorship_profilestat .testimonial_feedbackstat .img_panelstat:hover {
    transform: scale(1.07) translateX(-4%);
    box-shadow: 0 0 50px rgb(212,204,209);
}.mentorship_profilestat .testimonial_feedbackstat .name {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    z-index: 2;
    color: #ffffff;
    animation: neonPulse 4s infinite alternate;
    text-shadow: 0 0 10px rgb(212,204,209,0.5), 0 0 20px rgb(212,204,209,0.5);
    padding: 3.5rem 2rem 0.5rem 3rem;
    font-size: 34px;
    position: relative;
    letter-spacing: 2px;
    font-weight: 700;
}.mentorship_profilestat .testimonial_feedbackstat span:not(.name) {
    position: relative;
    grid-row: 2 / 3;
    font-weight: 400;
    color: rgb(179,169,172);
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    grid-column: 2 / 3;
    padding: 0 2rem 1rem 3rem;
}.mentorship_profilestat .testimonial_feedbackstat .career_explorestat {
    z-index: 2;
    font-size: 12px;
    color: #ffffff;
    line-height: 1.7;
    grid-row: 3 / 4;
    position: relative;
    grid-column: 2 / 3;
    margin-right: 1.5rem;
    padding: 2rem 2rem 2.5rem 3rem;
    backdrop-filter: blur(5px);
    border-top: 1px solid rgb(179,169,172,0.5);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    border-radius: 0 10px 0 0;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgb(212,204,209,0.5), 0 0 20px rgb(212,204,209,0.5);
  }
  50% {
    text-shadow: 0 0 20px rgb(212,204,209), 0 0 30px rgb(212,204,209);
  }
}

@keyframes backgroundMovement {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(50px, 50px) rotate(10deg);
  }
}

@media (max-width: 992px) {.mentorship_profilestat {
    padding: 5rem 1.5rem;
}.mentorship_profilestat .testimonial_feedbackstat {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
}.mentorship_profilestat .testimonial_feedbackstat .img_panelstat {
    min-height: 350px;
    transform: scale(1.02) translateY(-5%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}.mentorship_profilestat .testimonial_feedbackstat .img_panelstat:hover {
    transform: scale(1.03) translateY(-4%);
}.mentorship_profilestat .testimonial_feedbackstat .name {
    padding: 2rem 1.5rem 0.5rem 1.5rem;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}.mentorship_profilestat .testimonial_feedbackstat span:not(.name) {
    grid-row: 3 / 4;
    grid-column: 1 / 2;
    padding: 0 1.5rem 1rem 1.5rem;
}.mentorship_profilestat .testimonial_feedbackstat .career_explorestat {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    border-radius: 10px;
    padding: 1.5rem;
    margin-right: 0;
}
}

@media (max-width: 576px) {.mentorship_profilestat {
    padding: 4rem 1rem;
}.mentorship_profilestat .testimonial_feedbackstat .img_panelstat {
    min-height: 280px;
}.mentorship_profilestat .testimonial_feedbackstat .name {
    padding: 1.5rem 1rem 0.5rem 1rem;
}.mentorship_profilestat .testimonial_feedbackstat span:not(.name) {
    padding: 0 1rem 1rem 1rem;
}.mentorship_profilestat .testimonial_feedbackstat .career_explorestat {
    padding: 1.2rem;
}
}