﻿* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}a {
    color: inherit;
    text-decoration: none;
}.site_map {
    flex: 0 0 auto;
}.container {
    width: 1153px;
    margin: auto;
    max-width: 100%;
}html,body {
    font-family: Arial, sans-serif;
    height: 100%;
    scroll-snap-type: none;
    min-height: 100%;
    auto
contain
touch-action: none;
    auto
    scroll-behavior: auto;
    color: #000000;
}.head_bar {
    flex: 1 0 auto;
}svg {
    width: 30px;
    height: 30px;
}.panel-container {
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    display: flex;
}header,footer {
    width: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.newsletter_signup {
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgb(136,143,143,0.5);
    position: relative;
    padding: 4rem;
    overflow: hidden;
}.newsletter_signup::before {
    top: 0;
    background: 
        repeating-linear-gradient(
            -45deg, 
            transparent, 
            transparent 5px, 
            rgb(136,143,143,0.5) 5px, 
            rgb(136,143,143,0.5) 6px
        ),
        repeating-linear-gradient(
            45deg, 
            transparent, 
            transparent 5px, 
            rgb(101,109,109,0.5) 5px, 
            rgb(101,109,109,0.5) 6px
        );
    left: 0;
    bottom: 0;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 70%);
    right: 0;
    position: absolute;
    content: "";
    opacity: 0.05;
}.newsletter_signup::after {
    background: radial-gradient(
        circle at center,
        rgb(136,143,143,0.5) 0%,
        transparent 70%
    );
    position: absolute;
    width: 150%;
    top: -25%;
    content: "";
    height: 150%;
    z-index: 0;
    opacity: 0.1;
    animation: pulse-glow 5s infinite alternate;
    left: -25%;
}.newsletter_signup .skill_mastery {
    z-index: 2;
    gap: 2rem;
    position: relative;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    display: grid;
}.newsletter_signup p {
    font-size: 24px;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
    color: #ffffff;
    padding-left: 2rem;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    font-weight: 700;
    grid-column: 1 / 2;
}.newsletter_signup p::before {
    bottom: 0;
    width: 4px;
    top: 0;
    animation: pulse-neon 2s infinite alternate;
    position: absolute;
    left: 0;
    background: linear-gradient(to bottom, rgb(136,143,143), rgb(101,109,109));
    content: "";
    box-shadow: 
        0 0 5px rgb(136,143,143),
        0 0 10px rgb(136,143,143),
        0 0 15px rgb(136,143,143);
}.newsletter_signup .input_holder {
    transform: perspective(1000px) rotateY(-5deg);
    position: relative;
    grid-column: 2 / 3;
    display: flex;
    flex-direction: row;
    transform-style: preserve-3d;
}.newsletter_signup .sub_texts {
    color: #ffffff;
    backdrop-filter: blur(5px);
    border: 1px solid rgb(136,143,143,0.5);
    padding: 1rem 1.5rem;
    border-radius: 10px 0 0 10px;
    transition: all 0.3s ease;
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    flex: 1;
    font-family: Arial, sans-serif;
    box-shadow: inset 0 0 10px rgb(136,143,143,0.5);
}.newsletter_signup .sub_texts:focus {
    outline: none;
    box-shadow: 
        inset 0 0 10px rgb(136,143,143,0.5),
        0 0 15px rgb(136,143,143,0.5);
    border-color: rgb(136,143,143);
}.newsletter_signup .sub_texts::placeholder {
    color: rgba(255, 255, 255, 0.5);
}.newsletter_signup .sub_solution {
    padding: 1rem 2rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    background: rgb(136,143,143);
    border-radius: 0 10px 10px 0;
    position: relative;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 19px;
    overflow: hidden;
    color: #ffffff;
    z-index: 1;
}.newsletter_signup .sub_solution::before {
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    z-index: -1;
    left: -100%;
    transition: all 0.6s ease;
    height: 100%;
    top: 0;
    position: absolute;
    content: "";
}.newsletter_signup .sub_solution:hover::before {
    left: 100%;
}.newsletter_signup .sub_solution:hover {
    box-shadow: 
        0 0 10px rgb(101,109,109),
        0 0 20px rgb(101,109,109,0.5);
    background: rgb(101,109,109);
}

@keyframes pulse-neon {
    0% {
        opacity: 0.7;
        box-shadow: 
            0 0 5px rgb(136,143,143),
            0 0 10px rgb(136,143,143);
    }
    100% {
        opacity: 1;
        box-shadow: 
            0 0 10px rgb(136,143,143),
            0 0 20px rgb(136,143,143),
            0 0 30px rgb(136,143,143);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.05;
        transform: scale(1);
    }
    100% {
        opacity: 0.15;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {.newsletter_signup {
    padding: 2.5rem 1.5rem;
}.newsletter_signup .skill_mastery {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}.newsletter_signup p {
    grid-column: 1 / 2;
    font-size: 21px;
    margin-bottom: 0.5rem;
}.newsletter_signup .input_holder {
    transform: none;
    flex-direction: column;
    grid-column: 1 / 2;
}.newsletter_signup .sub_texts {
    margin-bottom: 1rem;
    width: 100%;
    border-radius: 10px;
}.newsletter_signup .sub_solution {
    width: 100%;
    border-radius: 10px;
}}.title_intro {
    background: linear-gradient(135deg, rgb(171,178,178), rgb(101,109,109,0.5) 70%);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    min-height: 100vh;
}.title_intro::before {
    content: "";
    height: 100%;
    position: absolute;
    opacity: 0.5;
    left: 0;
    animation: backgroundShift 40s linear infinite;
    background: linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 50%, 
                rgba(255,255,255,0.03) 50%, rgba(255,255,255,0.03) 75%, transparent 75%);
    background-size: 80px 80px;
    z-index: 1;
    width: 100%;
    top: 0;
}@keyframes backgroundShift {
    0% { background-position: 0 0; }
    100% { background-position: 160px 160px; }
}

.title_intro .skill_mastery {
    min-height: 85vh;
    position: relative;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    padding: 4rem 2rem;
    grid-gap: 2rem;
    margin: 0 auto;
    display: grid;
    height: 100%;
    z-index: 5;
}.title_intro h1 {
    text-shadow: 0 4px 12px rgba(0,0,0,0.1);
    opacity: 0;
    color: #000000;
    transform: translateZ(60px);
    font-size: calc(46px * 1.2);
    grid-column: 1 / -1;
    font-weight: 700;
    animation: fadeSlideIn 1.2s cubic-bezier(0.17, 0.67, 0.43, 0.99) forwards;
    position: relative;
    margin-bottom: 2rem;
}.title_intro h1::after {
    bottom: -10px;
    background: rgb(136,143,143);
    transform: scaleX(0);
    transform-origin: left center;
    position: absolute;
    height: 4px;
    content: "";
    left: 0;
    animation: lineExpand 1.5s cubic-bezier(0.17, 0.67, 0.43, 0.99) forwards 0.6s;
    width: 80px;
}@keyframes lineExpand {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
}

.title_intro .text_panel_wrap {
    opacity: 0;
    transform: translateZ(30px);
    transform-style: preserve-3d;
    justify-content: center;
    animation: fadeSlideIn 1.2s cubic-bezier(0.17, 0.67, 0.43, 0.99) forwards 0.3s;
    display: flex;
    flex-direction: column;
}@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) translateZ(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(30px);
    }
}

.title_intro .course_front {
    display: flex;
    transform: rotate(-2deg);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.43, 0.99);
    background: linear-gradient(120deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.07);
    border-left: 4px solid rgb(136,143,143);
    flex-direction: column;
}.title_intro .course_front:hover {
    transform: rotate(0deg) translateY(-10px);
}.title_intro .course_front p {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: calc(18px * 1.2);
    line-height: 1.6;
}.title_intro svg {
    align-self: center;
    height: 100px;
    width: 100px;
    filter: drop-shadow(0 5px 10px rgba(94,170,168,0.3));
    transform: translateZ(20px);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.43, 0.99);
}.title_intro svg:hover {
    transform: translateZ(40px) scale(1.1);
}.title_intro svg path {
    fill: rgb(101,109,109);
    transition: fill 0.3s ease;
}.title_intro svg:hover path {
    fill: rgb(136,143,143);
}.title_intro svg text {
    font-family: Arial, sans-serif;
    animation: textPulse 3s infinite alternate;
}@keyframes textPulse {
    0% { fill: rgb(101,109,109); }
    100% { fill: rgb(136,143,143); }
}

.title_intro .course_front div {
    justify-content: center;
    margin-top: 1rem;
    display: flex;
}.title_intro .feedback_feedback {
    position: relative;
    transition: all 0.4s cubic-bezier(0.17, 0.67, 0.43, 0.99);
    font-size: 16px;
    padding: 0.8rem 2rem;
    color: #ffffff;
    background: linear-gradient(135deg, rgb(136,143,143), rgb(101,109,109));
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    border: none;
    font-weight: 600;
    transform: translateZ(10px);
    box-shadow: 0 8px 20px rgba(94,170,168,0.3);
    z-index: 10;
}.title_intro .feedback_feedback::before {
    height: 100%;
    position: absolute;
    width: 100%;
    transition: left 0.7s;
    top: 0;
    left: -100%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}.title_intro .feedback_feedback:hover {
    box-shadow: 0 15px 30px rgba(94,170,168,0.4);
    transform: translateZ(20px) scale(1.05);
}.title_intro .feedback_feedback:hover::before {
    left: 100%;
}.title_intro .icon_image {
    overflow: hidden;
    min-height: 400px;
    transition: all 0.6s cubic-bezier(0.17, 0.67, 0.43, 0.99);
    transform: translateZ(10px) perspective(800px) rotateY(-6deg);
    border-radius: 25px;
    animation: photoReveal 1.8s cubic-bezier(0.17, 0.67, 0.43, 0.99) forwards 0.6s;
    position: relative;
    box-shadow: 
        25px 25px 45px rgba(0,0,0,0.2),
        -5px -5px 30px rgba(255,255,255,0.5);
    height: 100%;
    opacity: 0;
}@keyframes photoReveal {
    0% {
        opacity: 0;
        transform: translateZ(10px) perspective(800px) rotateY(-20deg) translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateZ(10px) perspective(800px) rotateY(-6deg) translateX(0);
    }
}

.title_intro .icon_image::before {
    background: linear-gradient(
        135deg,
        rgb(136,143,143,0.5) 0%,
        transparent 70%
    );
    z-index: 2;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
}.title_intro .icon_image::after {
    bottom: 0;
    position: absolute;
    height: 40%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 100%
    );
    left: 0;
    z-index: 3;
    width: 100%;
    content: "";
}.title_intro .icon_image:hover {
    transform: translateZ(50px) perspective(800px) rotateY(0deg);
}

@media (max-width: 992px) {.title_intro .skill_mastery {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    min-height: auto;
}.title_intro h1 {
    font-size: calc(46px * 1.1);
    text-align: center;
}.title_intro h1::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0);
}@keyframes lineExpand {
        0% { transform: translateX(-50%) scaleX(0); }
        100% { transform: translateX(-50%) scaleX(1); }
    }
    
    .title_intro .text_panel_wrap {
    order: 2;
}.title_intro .icon_image {
    order: 1;
    margin-bottom: 2rem;
    transform: translateZ(10px) perspective(800px) rotateY(0);
    min-height: 300px;
}
    
    @keyframes photoReveal {
        0% {
            opacity: 0;
            transform: translateZ(10px) scale(0.9);
        }
        100% {
            opacity: 1;
            transform: translateZ(10px) scale(1);
        }
    }
}

@media (max-width: 768px) {.title_intro .skill_mastery {
    padding: 2rem 1rem;
}.title_intro h1 {
    margin-bottom: 1.5rem;
    font-size: 46px;
}.title_intro .course_front {
    transform: rotate(0);
    padding: 1.5rem;
}.title_intro .course_front p {
    font-size: 18px;
}.title_intro svg {
    height: 80px;
    width: 80px;
}.title_intro .icon_image {
    min-height: 250px;
}
}

@media (max-width: 576px) {.title_intro {
    padding-top: 1rem;
}.title_intro .skill_mastery {
    grid-gap: 1.5rem;
    padding: 1.5rem 1rem;
}.title_intro h1 {
    font-size: calc(46px * 0.9);
}.title_intro .course_front {
    padding: 1.25rem;
}.title_intro svg {
    height: 60px;
    width: 60px;
}.title_intro .feedback_feedback {
    padding: 0.7rem 1.5rem;
}.title_intro .icon_image {
    min-height: 200px;
}}.price_palette {
    padding: 7rem 0;
    background: linear-gradient(135deg, rgb(171,178,178) 0%, rgba(245, 247, 250, 0.95) 100%);
    overflow: hidden;
    position: relative;
}.price_palette::before {
    z-index: 0;
    background: linear-gradient(120deg, rgb(136,143,143,0.5) 20%, rgb(101,109,109,0.5) 80%);
    right: -5%;
    border-radius: 10px;
    position: absolute;
    width: 40%;
    top: -10%;
    transform: rotate(-15deg);
    content: "";
    height: 70%;
    opacity: 0.1;
}.price_palette::after {
    opacity: 0.08;
    background: linear-gradient(45deg, rgb(101,109,109,0.5) 30%, rgb(136,143,143,0.5) 70%);
    content: "";
    bottom: -5%;
    width: 35%;
    z-index: 0;
    position: absolute;
    border-radius: 10px;
    transform: rotate(10deg);
    left: -3%;
    height: 50%;
}.price_palette .container {
    padding: 0 2rem;
    max-width: 1400px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}.price_palette .rate_choice {
    flex-direction: column;
    display: flex;
}.price_palette .cost_matrix {
    text-align: center;
    order: 1;
    margin-bottom: 3.5rem;
    position: relative;
}.price_palette .cost_matrix h2 {
    color: #000000;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 700;
    position: relative;
    font-size: 29px;
}.price_palette .cost_matrix h2::after {
    height: 3px;
    position: absolute;
    width: 70%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgb(136,143,143), transparent);
    left: 50%;
    content: "";
    bottom: -0.75rem;
}.price_palette .payment_scheme {
    color: #000000;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-size: 12px;
}.price_palette .learning_pricing {
    display: grid;
    order: 2;
    width: 100%;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}.price_palette .payment_plans {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    color: #000000;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    height: 100%;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    text-decoration: none;
}.price_palette .payment_plans:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}.price_palette .payment_plans::before {
    transition: transform 0.3s ease;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(136,143,143), rgb(101,109,109));
    width: 100%;
    height: 5px;
    top: 0;
    content: "";
    transform: translateY(-5px);
}.price_palette .payment_plans:hover::before {
    transform: translateY(0);
}.price_palette .fee_plans {
    height: 100%;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
}.price_palette .qtr_cost {
    display: flex;
    position: relative;
    padding: 2rem 1.75rem;
    flex: 1;
    flex-direction: column;
}.price_palette .qtr_cost h3 {
    margin-bottom: 1rem;
    display: inline-block;
    font-weight: 700;
    font-size: calc(19px * 1.1);
    color: #000000;
    position: relative;
}.price_palette .qtr_cost .training_fees {
    margin-bottom: 1.5rem;
    color: rgb(136,143,143);
    font-size: calc(19px * 1.3);
    font-weight: 700;
    position: relative;
}.price_palette .qtr_cost .training_fees::after {
    left: 0;
    bottom: -0.75rem;
    position: absolute;
    background: rgb(136,143,143,0.5);
    width: 40px;
    content: "";
    height: 2px;
}.price_palette .qtr_cost p {
    word-break: break-word;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    word-wrap: break-word;
    font-size: 12px;
    color: #000000;
    overflow-wrap: break-word;
}.price_palette .icon_image {
    transition: transform 0.5s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 180px;
}.price_palette .icon_image::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    content: "";
}.price_palette .payment_plans:hover .icon_image {
    transform: scale(1.05);
}.price_palette .payment_plans:nth-child(odd) .qtr_cost::before {
    opacity: 0.1;
    position: absolute;
    background: rgb(136,143,143,0.5);
    content: "";
    z-index: -1;
    width: 2.5rem;
    top: 1rem;
    border-radius: 50%;
    height: 2.5rem;
    right: 1rem;
}.price_palette .payment_plans:nth-child(even) .qtr_cost::before {
    left: 1rem;
    width: 2.5rem;
    position: absolute;
    border-radius: 50%;
    background: rgb(101,109,109,0.5);
    height: 2.5rem;
    content: "";
    bottom: 1rem;
    opacity: 0.1;
    z-index: -1;
}

@media (min-width: 992px) {.price_palette .rate_choice {
    flex-direction: row;
}.price_palette .cost_matrix {
    justify-content: center;
    padding-left: 3rem;
    flex-direction: column;
    text-align: left;
    order: 2;
    display: flex;
    flex: 0 0 30%;
    margin-bottom: 0;
}.price_palette .cost_matrix h2 {
    text-align: left;
    margin-bottom: 2rem;
}.price_palette .cost_matrix h2::after {
    transform: none;
    left: 0;
    width: 40%;
}.price_palette .payment_scheme {
    text-align: left;
    margin: 0;
}.price_palette .learning_pricing {
    order: 1;
    flex: 0 0 70%;
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 991px) {.price_palette {
    padding: 5rem 0;
}.price_palette .payment_plans {
    margin-bottom: 1.5rem;
}.price_palette .cost_matrix {
    padding: 0 1rem;
}
}

@media (max-width: 767px) {.price_palette {
    padding: 4rem 0;
}.price_palette .cost_matrix h2 {
    font-size: calc(29px * 0.9);
}.price_palette .qtr_cost h3 {
    font-size: 19px;
}.price_palette .qtr_cost .training_fees {
    font-size: calc(19px * 1.15);
}.price_palette .icon_image {
    height: 160px;
}
}

@media (max-width: 575px) {.price_palette {
    padding: 3rem 0;
}.price_palette .container {
    padding: 0 1.5rem;
}.price_palette .learning_pricing {
    gap: 1.5rem;
}.price_palette .qtr_cost {
    padding: 1.5rem;
}.price_palette .icon_image {
    height: 140px;
}
}

@media (hover: none) {.price_palette .payment_plans:hover {
    transform: none;
}.price_palette .payment_plans:hover .icon_image {
    transform: none;
}}.tyHub {
    overflow: hidden;
    background: radial-gradient(circle at 30% 70%, rgb(101,109,109,0.5), transparent 70%), 
                radial-gradient(circle at 70% 30%, rgb(136,143,143,0.5), transparent 60%);
    padding: 6rem 0;
    position: relative;
}.tyHub::before {
    content: "";
    z-index: 1;
    background-size: 40px 40px;
    position: absolute;
    left: 0;
    animation: constellation 20s infinite linear;
    width: 100%;
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 85% 85%, rgba(255,255,255,0.1) 1px, transparent 1px);
    height: 100%;
    top: 0;
    opacity: 0.6;
}.tyHub::after {
    top: 50%;
    position: absolute;
    border: 1px solid rgb(101,109,109,0.5);
    opacity: 0.3;
    content: "";
    height: 300px;
    width: 300px;
    left: -150px;
    border-radius: 50%;
    z-index: 1;
    transform: translateY(-50%);
}.tyHub .container {
    z-index: 2;
    position: relative;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}.tyHub .skill_mastery {
    backdrop-filter: blur(8px);
    flex-direction: column;
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.1),
        0 1px 0 rgba(255,255,255,0.1) inset;
    background: linear-gradient(135deg, 
                rgba(255,255,255,0.15), 
                rgba(255,255,255,0.05));
    border-left: 2px solid rgb(101,109,109);
    padding: 4rem 3rem;
    display: flex;
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    gap: 2.5rem;
}.tyHub .skill_mastery:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 1px 0 rgba(255,255,255,0.15) inset;
}.tyHub .skill_mastery > div:first-child {
    padding-left: 25px;
    position: relative;
    align-items: center;
    display: flex;
}.tyHub .skill_mastery > div:first-child::before {
    left: 0;
    transition: width 0.3s ease;
    transform: translateY(-50%);
    content: "";
    position: absolute;
    background: rgb(101,109,109);
    height: 2px;
    top: 50%;
    width: 15px;
}.tyHub .skill_mastery:hover > div:first-child::before {
    width: 20px;
}.tyHub h5 {
    font-weight: 700;
    transform: translateY(20px);
    background: linear-gradient(to right, #000000, rgb(101,109,109));
    z-index: 2;
    background-clip: text !important;
    animation: fadeSlideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    color: transparent;
    -webkit-background-clip: text !important;
    line-height: 1.4;
    margin: 0;
    position: relative;
    opacity: 0;
    font-size: 24px;
    color: #000000;
}.tyHub p {
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    z-index: 2;
    font-size: 15px;
    animation: fadeSlideIn 0.8s 0.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    position: relative;
    color: #000000;
    transform: translateY(20px);
    opacity: 0;
}.tyHub a {
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: block;
}.tyHub a::after {
    height: 1px;
    content: "";
    position: absolute;
    background: rgb(101,109,109);
    bottom: 0;
    left: 0;
    transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
    width: 0;
}.tyHub a:hover {
    transform: translateX(5px);
}.tyHub a:hover::after {
    width: 100%;
}

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

@keyframes constellation {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 100px 100px;
    }
}

@media (min-width: 768px) {.tyHub .skill_mastery {
    padding: 5rem 4rem;
    margin-left: 5rem;
    border-radius: 0 23px 23px 0;
}.tyHub .skill_mastery::before {
    border: 1px solid rgb(136,143,143,0.5);
    right: -30px;
    content: "";
    opacity: 0.5;
    position: absolute;
    border-radius: 50%;
    top: -50px;
    height: 200px;
    width: 200px;
    z-index: 1;
}.tyHub h5 {
    font-size: calc(24px * 1.1);
}.tyHub p {
    max-width: 90%;
}
}

@media (min-width: 992px) {.tyHub {
    padding: 8rem 0;
}.tyHub .skill_mastery {
    gap: 3rem;
    padding: 6rem 5rem;
    margin-left: 8rem;
}.tyHub h5 {
    font-size: calc(24px * 1.2);
}.tyHub p {
    font-size: calc(15px * 1.05);
    max-width: 80%;
}
}

@media (max-width: 767px) {.tyHub {
    padding: 4rem 0;
}.tyHub .skill_mastery {
    gap: 2rem;
    padding: 3rem 2rem;
}.tyHub h5 {
    font-size: calc(24px * 0.9);
}.tyHub::after,
    .tyHub .skill_mastery::before {
    display: none;
}
}

@media (max-width: 480px) {.tyHub {
    padding: 3rem 0;
}.tyHub .skill_mastery {
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
}.tyHub h5 {
    font-size: calc(24px * 0.85);
}.tyHub p {
    font-size: calc(15px * 0.95);
}.tyHub .skill_mastery > div:first-child {
    padding-left: 20px;
}}footer {
    width: 100%;
    position: relative;
}.site_map {
    background-color: #ffffff;
    padding: 80px 0 30px;
    color: #000000;
    position: relative;
    font-family: Arial, sans-serif;
}.site_map::before {
    left: 0;
    content: "";
    width: 100%;
    position: absolute;
    background-image: repeating-linear-gradient(
        to right,
        rgb(136,143,143),
        rgb(136,143,143) 10px,
        transparent 10px,
        transparent 20px
    );
    height: 1px;
    bottom: 0;
}footer .diversity {
    z-index: 1;
    position: relative;
}footer .online_contact {
    flex-wrap: wrap;
    margin-bottom: 70px;
    height: 100px;
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: space-between;
}footer .info_item {
    align-items: center;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
    min-width: 250px;
    padding: 0 25px;
    background-color: rgb(101,109,109);
    display: flex;
    margin-right: 1px;
    flex: 1;
    height: 100px;
}footer .info_item:last-child {
    margin-right: 0;
}footer .info_item:hover {
    flex: 1.5;
    background-color: rgb(136,143,143);
}footer .info_item::after {
    height: 100%;
    position: absolute;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    top: 0;
    right: 0;
    content: "";
}footer .info_item:last-child::after {
    display: none;
}footer .info_item svg {
    position: relative;
    width: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    z-index: 2;
    fill: #ffffff;
    height: 24px;
}footer .info_item p,
footer .info_item a {
    max-width: 100%;
    text-overflow: ellipsis;
    position: relative;
    overflow: hidden;
    z-index: 2;
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
    color: #ffffff;
}footer .info_item::before {
    transition: opacity 0.5s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    left: 0;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}footer .info_item:hover::before {
    opacity: 1;
}footer .text_main_holder {
    display: flex;
    flex-wrap: nowrap;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: 0 20px;
    -ms-overflow-style: none;
    overflow-x: auto;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    margin: 0 -20px;
}footer .text_main_holder::-webkit-scrollbar {
    display: none;
}footer .page_header, footer .top_guide, footer .subscribe_holder {
    height: 450px;
    padding: 30px;
    transition: all 0.4s ease;
    flex: 0 0 100%;
    max-width: 500px;
    border-radius: 20px;
    min-width: 280px;
    margin-right: 30px;
    scroll-snap-align: start;
    position: relative;
}footer .page_header {
    background-color: rgb(171,178,178);
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}footer .page_header svg {
    width: auto;
    margin-bottom: 30px;
    height: 50px;
}footer .trial_offer {
    font-size: 12px;
    color: #000000;
    line-height: 1.6;
    max-width: 300px;
}footer .top_guide {
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(101,109,109,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(136,143,143,0.5) 0%, transparent 40%);
    position: relative;
    flex-direction: column;
    display: flex;
    background-color: rgb(101,109,109);
    overflow: hidden;
    justify-content: center;
    color: #ffffff;
}footer .top_guide::after {
    background-size: 30px 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background-image: 
        linear-gradient(45deg, transparent 92%, rgba(255, 255, 255, 0.05) 93%, transparent 94%),
        linear-gradient(135deg, transparent 92%, rgba(255, 255, 255, 0.05) 93%, transparent 94%);
    opacity: 0.3;
    pointer-events: none;
    top: 0;
    content: "";
}footer .top_guide h5 {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 30px;
    letter-spacing: 1px;
    position: relative;
}footer .top_guide h5::after {
    height: 2px;
    position: absolute;
    width: 30px;
    background-color: rgb(136,143,143);
    bottom: -10px;
    left: 0;
    content: "";
}footer .header_tutor {
    margin-bottom: 20px;
    max-height: 280px;
    overflow: hidden;
    position: relative;
    height: auto;
}footer .header_tutor a {
    text-decoration: none;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    font-size: 12px;
}footer .header_tutor a:hover {
    color: #ffffff;
    padding-left: 10px;
    border-bottom-color: rgb(136,143,143);
}footer .subscribe_holder {
    display: flex;
    color: #ffffff;
    background-color: rgb(136,143,143);
    flex-direction: column;
    justify-content: center;
}footer .subscribe_holder h5 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 20px;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
}footer .subscribe_holder p {
    font-size: 12px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}footer .input_holder {
    display: flex;
    flex-direction: column;
    gap: 15px;
}footer .input_holder input[type="email"] {
    padding: 15px;
    color: #ffffff;
    border-radius: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    font-size: 12px;
}footer .input_holder input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .sub_solution {
    transition: all 0.3s ease;
    padding: 15px;
    color: #ffffff;
    font-size: 15px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    border-radius: 10px;
    border: none;
    background-color: rgb(101,109,109);
}footer .sub_solution:hover {
    background-color: rgb(101,109,109,0.5);
}footer .quiz_links {
    margin-top: 40px;
    position: relative;
    padding-top: 20px;
}footer .quiz_links::before {
    position: absolute;
    top: 0;
    height: 1px;
    content: "";
    right: 20%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
    left: 20%;
}footer .class_guide {
    text-align: center;
    font-size: 12px;
    color: #000000;
}

@media (min-width: 992px) {footer .text_main_holder {
    flex-wrap: wrap;
    overflow-x: visible;
    margin: 0;
    scroll-snap-type: none;
    padding: 0;
    gap: 30px;
}footer .page_header, footer .top_guide, footer .subscribe_holder {
    margin-right: 0;
    height: 500px;
    flex: 1;
    min-width: 0;
}
}

@media (max-width: 991px) {footer .info_item {
    min-width: 200px;
}footer .page_header::before,
    footer .top_guide::before,
    footer .subscribe_holder::before {
    font-size: 3rem;
}
}

@media (max-width: 767px) {footer .site_map {
    padding: 60px 0 30px;
}footer .online_contact {
    margin-bottom: 40px;
    height: auto;
    flex-direction: column;
}footer .info_item {
    width: 100%;
    margin-bottom: 1px;
    margin-right: 0;
}footer .info_item:hover {
    flex: 1;
    padding-left: 35px;
}footer .page_header, footer .top_guide, footer .subscribe_holder {
    padding: 25px 20px;
    min-height: 350px;
    height: auto;
}
}

@media (max-width: 576px) {footer .site_map {
    padding: 50px 0 20px;
}footer .page_header::before,
    footer .top_guide::before,
    footer .subscribe_holder::before {
    top: 15px;
    left: 15px;
    font-size: 2rem;
}footer .header_tutor {
    max-height: 220px;
    height: auto;
}footer .page_header, footer .top_guide, footer .subscribe_holder {
    min-height: 300px;
    padding: 20px 15px;
}footer .top_guide h5, footer .subscribe_holder h5 {
    margin-bottom: 15px;
    font-size: calc(20px - 2px);
}footer .subscribe_holder p {
    margin-bottom: 20px;
}footer .input_holder input[type="email"],
    footer .sub_solution {
    padding: 12px;
}}.meet_us {
    position: relative;
    z-index: 1;
    padding: 100px 0 80px;
    overflow: hidden;
}.meet_us::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    opacity: 0.85;
    background: linear-gradient(135deg, rgb(136,143,143,0.5), rgba(0, 0, 0, 0.5));
    z-index: -1;
    height: 100%;
}.meet_us::after {
    transform: rotate(15deg);
    opacity: 0.2;
    content: "";
    height: 250px;
    right: -50px;
    position: absolute;
    animation: float 15s infinite ease-in-out;
    border: 2px solid rgb(101,109,109);
    width: 250px;
    z-index: -1;
    bottom: -50px;
}.meet_us h4 {
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
    transform: translateY(20px);
    font-weight: 700;
    font-size: calc(24px * 1.2);
    letter-spacing: 3px;
    position: relative;
    animation: fadeInUp 0.8s 0.2s forwards;
    font-family: Arial, sans-serif;
    color: #ffffff;
    opacity: 0;
}.meet_us h4::after {
    bottom: -15px;
    content: "";
    width: 60px;
    background: rgb(101,109,109);
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    height: 3px;
}.meet_us .container {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}.meet_us .text_panel_wrap {
    padding: 50px;
    overflow: hidden;
    animation: fadeInUp 0.8s 0.4s forwards;
    position: relative;
    opacity: 0;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(30px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}.meet_us .text_panel_wrap::before {
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(to bottom, rgb(136,143,143), rgb(101,109,109));
    width: 5px;
}.meet_us .text_panel_wrap h6 {
    padding-bottom: 15px;
    position: relative;
    opacity: 0;
    font-family: Arial, sans-serif;
    animation: fadeInRight 0.8s 0.6s forwards;
    color: rgb(136,143,143);
    transform: translateX(-10px);
    font-weight: 700;
    font-size: calc(20px * 1.3);
    margin-bottom: 25px;
}.meet_us .text_panel_wrap h6::after {
    width: 80px;
    content: "";
    bottom: 0;
    background: rgb(101,109,109);
    position: absolute;
    height: 2px;
    left: 0;
}.meet_us .text_panel_wrap div {
    z-index: 1;
    position: relative;
}.meet_us .text_panel_wrap span {
    display: block;
    position: relative;
    transform: translateY(20px);
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 12px;
    animation: fadeInUp 0.8s 0.8s forwards;
    opacity: 0;
    line-height: 1.8;
}.meet_us .text_panel_wrap::after {
    background: linear-gradient(135deg, transparent 50%, rgb(101,109,109,0.5) 50%);
    bottom: 0;
    content: "";
    z-index: 0;
    position: absolute;
    height: 100px;
    right: 0;
    width: 100px;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: rotate(15deg) translate(0, 0);
    }
    25% {
        transform: rotate(18deg) translate(-10px, 15px);
    }
    50% {
        transform: rotate(15deg) translate(5px, -10px);
    }
    75% {
        transform: rotate(12deg) translate(15px, 5px);
    }
}

@media (max-width: 992px) {.meet_us {
    padding: 80px 0 60px;
}.meet_us .text_panel_wrap {
    padding: 40px 30px;
}.meet_us h4 {
    font-size: calc(24px * 1.1);
}.meet_us .text_panel_wrap h6 {
    margin-bottom: 20px;
    font-size: calc(20px * 1.2);
}
}

@media (max-width: 768px) {.meet_us {
    padding: 60px 0 40px;
}.meet_us .text_panel_wrap {
    padding: 30px 25px;
}.meet_us h4 {
    margin-bottom: 30px;
    font-size: 24px;
}.meet_us .text_panel_wrap h6 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    font-size: 20px;
}.meet_us .text_panel_wrap span {
    font-size: calc(12px * 0.95);
    line-height: 1.7;
}.meet_us::after {
    height: 180px;
    width: 180px;
}
}

@media (max-width: 576px) {.meet_us {
    padding: 50px 0 30px;
}.meet_us .text_panel_wrap {
    padding: 25px 20px;
}.meet_us h4 {
    font-size: calc(24px * 0.9);
    letter-spacing: 2px;
}.meet_us h4::after {
    width: 40px;
    bottom: -10px;
}.meet_us .text_panel_wrap h6 {
    font-size: calc(20px * 0.95);
}.meet_us .text_panel_wrap span {
    line-height: 1.6;
    font-size: calc(12px * 0.9);
}.meet_us::after {
    bottom: -30px;
    right: -30px;
    height: 120px;
    width: 120px;
}}.program_offerings {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: rgb(171,178,178);
    overflow: hidden;
}.program_offerings .job_ready {
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    position: absolute;
    top: 0;
}.program_offerings .training_track {
    height: 100%;
    animation: slide-show 35s ease-in-out infinite;
    display: flex;
    width: 500%;
}.program_offerings .job_ready:hover .training_track {
    animation-play-state: paused;
}.program_offerings .ready_skills {
    width: 20%;
    overflow: hidden;
    height: 100%;
    position: relative;
}.program_offerings .ready_skills img {
    width: 100%;
    transform-origin: center;
    filter: brightness(0.8) saturate(1.3);
    object-fit: cover;
    animation: zoom-flow 20s ease-in-out infinite alternate;
    height: 100%;
}.program_offerings .ready_skills::before {
    content: '';
    z-index: 2;
    inset: 0;
    position: absolute;
    background: 
        linear-gradient(0deg, 
            rgb(136,143,143,0.5) 0%, 
            transparent 40%, 
            transparent 60%, 
            rgb(101,109,109,0.5) 100%),
        linear-gradient(90deg, 
            rgb(136,143,143,0.5) 0%, 
            transparent 40%, 
            transparent 60%, 
            rgb(101,109,109,0.5) 100%);
    opacity: 0.7;
}.program_offerings .ready_skills::after {
    inset: 0;
    z-index: 3;
    background: 
        repeating-linear-gradient(
            45deg,
            rgb(136,143,143,0.5) 0px,
            rgb(136,143,143,0.5) 2px,
            transparent 2px,
            transparent 6px
        );
    opacity: 0.3;
    mix-blend-mode: overlay;
    content: '';
    animation: slide-pattern 15s linear infinite;
    position: absolute;
}.program_offerings .container {
    max-width: 1200px;
    position: relative;
    width: 90%;
    z-index: 4;
    margin: 0 auto;
}.program_offerings .skill_mastery {
    border-radius: 27px;
    width: 100%;
    position: relative;
    padding: 0.5rem;
    margin-left: 0;
    background: linear-gradient(
        135deg,
        rgb(136,143,143,0.5) 0%,
        rgb(101,109,109,0.5) 100%
    );
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    max-width: 600px;
}.program_offerings .learn_challenge {
    position: relative;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgb(171,178,178);
    overflow: hidden;
    border-radius: 10px;
}.program_offerings .learn_challenge::before {
    z-index: -1;
    inset: 0;
    background: 
        radial-gradient(
            circle at 30% 40%,
            rgb(136,143,143,0.5) 0%,
            transparent 70%
        ),
        radial-gradient(
            circle at 70% 60%,
            rgb(101,109,109,0.5) 0%,
            transparent 70%
        );
    content: '';
    position: absolute;
    opacity: 0.15;
}.program_offerings .learn_challenge h3 {
    font-size: 30px;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 700;
    position: relative;
    color: rgb(136,143,143);
}.program_offerings .learn_challenge h3::after {
    content: '';
    width: 60px;
    height: 3px;
    left: 0;
    position: absolute;
    border-radius: 10px;
    bottom: -10px;
    transition: width 0.3s ease, transform 0.3s ease;
    background: linear-gradient(to right, 
        rgb(136,143,143), 
        rgb(101,109,109));
}.program_offerings .learn_challenge:hover h3::after {
    transform: translateY(-3px);
    width: 100%;
}.program_offerings .learn_challenge p {
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #000000;
    font-size: 12px;
}.program_offerings .learn_challenge .feedback_feedback {
    padding: 0.9rem 1.8rem;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    background: linear-gradient(to right, 
        rgb(136,143,143), 
        rgb(101,109,109));
    box-shadow: 0 5px 15px rgb(136,143,143,0.5);
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 18px;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}.program_offerings .learn_challenge .feedback_feedback::before {
    top: 0;
    height: 100%;
    background: linear-gradient(to right, 
        rgb(101,109,109), 
        rgb(136,143,143));
    transition: opacity 0.4s ease;
    z-index: -1;
    width: 100%;
    opacity: 0;
    content: '';
    left: 0;
    position: absolute;
}.program_offerings .learn_challenge .feedback_feedback:hover {
    box-shadow: 0 8px 20px rgb(101,109,109,0.5);
    transform: translateY(-3px);
}.program_offerings .learn_challenge .feedback_feedback:hover::before {
    opacity: 1;
}

@keyframes slide-show {
    0%, 15% {
        transform: translateX(0);
    }
    20%, 35% {
        transform: translateX(-20%);
    }
    40%, 55% {
        transform: translateX(-40%);
    }
    60%, 75% {
        transform: translateX(-60%);
    }
    80%, 95% {
        transform: translateX(-80%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes zoom-flow {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes slide-pattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@media (min-width: 992px) and (max-width: 1400px) {.program_offerings .learn_challenge {
    padding: 2.5rem;
}.program_offerings .skill_mastery {
    max-width: 550px;
}
}

@media (min-width: 1400px) {.program_offerings .skill_mastery {
    max-width: 650px;
}.program_offerings .container {
    max-width: 1320px;
}
}

@media (max-width: 991px) {.program_offerings {
    padding: 0;
    min-height: auto;
    flex-direction: column;
}.program_offerings .job_ready {
    position: relative;
    height: 350px;
}.program_offerings .container {
    padding: 3rem 1.5rem;
    width: 100%;
}.program_offerings .skill_mastery {
    margin: 0 auto;
    max-width: 100%;
}.program_offerings .learn_challenge {
    padding: 2rem;
}
}

@media (max-width: 767px) {.program_offerings .job_ready {
    height: 300px;
}.program_offerings .training_track {
    animation-duration: 25s;
}.program_offerings .container {
    padding: 2.5rem 1rem;
}.program_offerings .learn_challenge {
    padding: 1.8rem;
}.program_offerings .learn_challenge h3 {
    font-size: calc(30px * 0.9);
}.program_offerings .learn_challenge p {
    margin-bottom: 1.5rem;
    font-size: calc(12px * 0.95);
}
}

@media (max-width: 480px) {.program_offerings .job_ready {
    height: 250px;
}.program_offerings .training_track {
    animation-duration: 20s;
}.program_offerings .container {
    padding: 2rem 0.8rem;
}.program_offerings .learn_challenge {
    padding: 1.5rem;
}.program_offerings .learn_challenge h3 {
    margin-bottom: 1rem;
    font-size: calc(30px * 0.8);
}.program_offerings .learn_challenge p {
    line-height: 1.5;
    font-size: calc(12px * 0.85);
    margin-bottom: 1.2rem;
}.program_offerings .learn_challenge .feedback_feedback {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
}
}

@media (prefers-reduced-motion) {.program_offerings .training_track,
    .program_offerings .ready_skills img,
    .program_offerings .ready_skills::after {
    animation: none;
}}.statistical_overview {
    color: #ffffff;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}.statistical_overview::before {
    backdrop-filter: blur(5px);
    position: absolute;
    z-index: 1;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
}.statistical_overview::after {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
    content: "";
    top: 0;
    background: linear-gradient(135deg, rgb(136,143,143,0.5) 0%, transparent 50%, rgb(101,109,109,0.5) 100%);
    left: 0;
    animation: gradientShift 15s infinite alternate;
}@keyframes gradientShift {
    0% {
        opacity: 0.6;
        background-position: 0% 0%;
    }
    50% {
        opacity: 0.8;
        background-position: 100% 50%;
    }
    100% {
        opacity: 0.6;
        background-position: 0% 100%;
    }
}

.statistical_overview .container {
    position: relative;
    margin: 0 auto;
    z-index: 5;
    padding: 0 20px;
    max-width: 1200px;
}.statistical_overview .extra_experts {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 40px;
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 11px;
}.statistical_overview .extra_experts::before {
    animation: pulse 10s infinite ease-in-out;
    height: 200%;
    opacity: 0.3;
    width: 200%;
    content: "";
    left: -50%;
    background: radial-gradient(circle, rgb(136,143,143,0.5) 0%, transparent 70%);
    position: absolute;
    top: -50%;
    z-index: -1;
}@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 0.2; }
}

.statistical_overview .benefits_track {
    background: linear-gradient(135deg, rgb(136,143,143) 0%, rgb(101,109,109) 100%);
    align-items: center;
    width: 80px;
    display: block;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    display: flex;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
    justify-content: center;
    border-radius: 50%;
    height: 80px;
    transform: translateY(0);
}.statistical_overview .benefits_track:hover {
    transform: translateY(-5px);
}.statistical_overview .benefits_track svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}.statistical_overview .benefits_track svg path {
    fill: #ffffff;
}.statistical_overview .boost_experts {
    text-align: center;
    -webkit-background-clip: text !important;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    font-size: 38px;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    font-weight: 700;
    letter-spacing: 1px;
}.statistical_overview .boost_experts::after {
    background: linear-gradient(135deg, rgb(136,143,143) 0%, rgb(101,109,109) 100%);
    height: 3px;
    width: 80px;
    display: block;
    margin: 20px auto 0;
    border-radius: 10px;
    content: "";
}.statistical_overview .statistics_tracks {
    margin-bottom: 50px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin-left: auto;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    font-weight: 400;
    margin-right: auto;
    text-align: center;
}.statistical_overview .statistics_plus {
    display: grid;
    gap: 30px;
    margin-top: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}.statistical_overview .study_statistics {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 11px;
    backdrop-filter: blur(5px);
    padding: 30px 20px;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    text-align: center;
}.statistical_overview .study_statistics::before {
    height: 40px;
    z-index: -1;
    left: -10px;
    transition: all 0.5s ease;
    position: absolute;
    background: linear-gradient(135deg, rgb(136,143,143) 0%, rgb(101,109,109) 100%);
    content: "";
    border-radius: 50%;
    top: -10px;
    opacity: 0.2;
    width: 40px;
}.statistical_overview .study_statistics:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}.statistical_overview .study_statistics:hover::before {
    transform: scale(10);
    opacity: 0.05;
}.statistical_overview .statistics_classes {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgb(136,143,143,0.5) 0%, rgb(101,109,109,0.5) 100%);
    display: flex;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
    margin: 0 auto 15px;
    align-items: center;
}.statistical_overview .statistics_classes svg {
    width: 30px;
    fill: #ffffff;
    height: 30px;
}.statistical_overview .statistics_classes svg path {
    fill: #ffffff;
}.statistical_overview .study_statistics span {
    -webkit-background-clip: text !important;
    display: block;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    position: relative;
    font-size: calc(38px * 1.2);
    -webkit-text-fill-color: transparent;
    transform: translateZ(30px);
    margin-bottom: 10px;
}.statistical_overview .study_statistics span::after {
    display: block;
    margin: 10px auto;
    content: "";
    background: linear-gradient(135deg, rgb(136,143,143) 0%, rgb(101,109,109) 100%);
    border-radius: 10px;
    width: 40px;
    height: 2px;
}.statistical_overview .study_statistics p {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 15px;
}

@media screen and (max-width: 992px) {.statistical_overview {
    padding: 80px 0;
}.statistical_overview .extra_experts {
    padding: 40px 30px;
    transform: perspective(1000px) rotateX(1deg);
}.statistical_overview .benefits_track {
    width: 70px;
    height: 70px;
}.statistical_overview .benefits_track svg {
    width: 35px;
    height: 35px;
}.statistical_overview .statistics_plus {
    grid-template-columns: repeat(2, 1fr);
}.statistical_overview .statistics_classes {
    width: 50px;
    height: 50px;
}.statistical_overview .statistics_classes svg {
    height: 25px;
    width: 25px;
}
}

@media screen and (max-width: 768px) {.statistical_overview {
    padding: 60px 0;
}.statistical_overview .extra_experts {
    transform: none;
    padding: 30px 20px;
}.statistical_overview .boost_experts {
    font-size: calc(38px * 0.9);
}.statistical_overview .statistics_tracks {
    margin-bottom: 40px;
    font-size: calc(15px * 0.95);
}.statistical_overview .statistics_plus {
    grid-template-columns: 1fr;
    gap: 20px;
}.statistical_overview .study_statistics span {
    font-size: calc(38px * 1.1);
}
}

@media screen and (max-width: 480px) {.statistical_overview {
    padding: 50px 0;
}.statistical_overview .container {
    padding: 0 15px;
}.statistical_overview .extra_experts {
    padding: 25px 15px;
}.statistical_overview .benefits_track {
    width: 60px;
    margin-bottom: 15px;
    height: 60px;
}.statistical_overview .benefits_track svg {
    width: 30px;
    height: 30px;
}.statistical_overview .boost_experts {
    font-size: calc(38px * 0.8);
    margin-bottom: 15px;
}.statistical_overview .boost_experts::after {
    margin: 15px auto 0;
    width: 60px;
}.statistical_overview .statistics_tracks {
    margin-bottom: 30px;
    font-size: calc(15px * 0.9);
}.statistical_overview .study_statistics {
    padding: 20px 15px;
}.statistical_overview .statistics_classes {
    height: 45px;
    width: 45px;
    margin-bottom: 10px;
}.statistical_overview .statistics_classes svg {
    height: 22px;
    width: 22px;
}.statistical_overview .study_statistics span {
    font-size: calc(38px * 1);
}.statistical_overview .study_statistics span::after {
    margin: 8px auto;
    width: 30px;
}.statistical_overview .study_statistics p {
    font-size: calc(15px * 0.9);
}}.prospective_members {
    overflow: hidden;
    background: rgb(171,178,178);
    position: relative;
    padding: 120px 0;
}.prospective_members::before {
    position: absolute;
    left: -30%;
    width: 80%;
    z-index: 1;
    top: -50%;
    content: "";
    opacity: 0.08;
    height: 200%;
    background: rgb(136,143,143,0.5);
    transform: rotate(-30deg);
}.prospective_members::after {
    background: rgb(101,109,109,0.5);
    z-index: 1;
    width: 80%;
    opacity: 0.08;
    position: absolute;
    right: -30%;
    height: 200%;
    bottom: -50%;
    transform: rotate(-30deg);
    content: "";
}.prospective_members .container {
    padding: 0 15px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1140px;
}.prospective_members .skill_mastery {
    position: relative;
}.prospective_members h4 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 50px;
    overflow: hidden;
    padding-bottom: 15px;
    text-align: center;
    position: relative;
    color: #000000;
}.prospective_members h4::before {
    top: 0;
    content: "";
    position: absolute;
    width: 100%;
    left: -100%;
    z-index: -1;
    animation: shimmer 3s infinite;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(136,143,143,0.5), transparent);
}.prospective_members h4::after {
    bottom: 0;
    left: 50%;
    width: 80px;
    content: "";
    position: absolute;
    transform: translateX(-50%);
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, rgb(136,143,143), rgb(101,109,109));
}@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.prospective_members div > div {
    perspective: 1000px;
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
}.prospective_members p {
    width: calc(33.333% - 20px);
    z-index: 1;
    position: relative;
    padding: 0;
    align-items: center;
    background: #ffffff;
    display: flex;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    overflow: hidden;
    min-height: 100px;
    color: #000000;
    margin: 0;
    font-size: 18px;
    border-radius: 10px;
}.prospective_members p::before {
    transition: opacity 0.3s ease;
    width: 100%;
    z-index: -1;
    opacity: 0;
    background: linear-gradient(135deg, #ffffff 0%, rgb(171,178,178) 100%);
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    height: 100%;
}.prospective_members p::after {
    height: 100%;
    transition: width 0.3s ease;
    background: rgb(136,143,143);
    top: 0;
    position: absolute;
    content: "";
    width: 4px;
    left: 0;
}.prospective_members p:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px) rotateX(5deg);
}.prospective_members p:hover::before {
    opacity: 1;
}.prospective_members p:hover::after {
    width: 8px;
}.prospective_members p svg {
    border-radius: 50%;
    background: #ffffff;
    padding: 8px;
    height: 40px;
    z-index: 2;
    width: 40px;
    margin: 0 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}.prospective_members p svg path {
    fill: rgb(136,143,143);
    transition: fill 0.3s ease;
}.prospective_members p:hover svg {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: rotate(10deg);
}.prospective_members p:hover svg path {
    fill: rgb(101,109,109);
}.prospective_members p span {
    padding: 20px 20px 20px 0;
    flex: 1;
}.prospective_members p:nth-child(odd) {
    transform: translateZ(10px);
}.prospective_members p:nth-child(even) {
    transform: translateZ(20px);
}.prospective_members p:nth-child(odd):hover {
    transform: translateY(-5px) rotateX(5deg) translateZ(10px);
}.prospective_members p:nth-child(even):hover {
    transform: translateY(-5px) rotateX(5deg) translateZ(20px);
}.prospective_members p:nth-child(3n+1)::after {
    background: rgb(136,143,143);
}.prospective_members p:nth-child(3n+2)::after {
    background: rgb(101,109,109);
}.prospective_members p:nth-child(3n)::after {
    background: linear-gradient(to bottom, rgb(136,143,143), rgb(101,109,109));
}@keyframes fadeInStagger {
    from {
        opacity: 0;
        transform: translateY(30px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.prospective_members .skill_mastery > div p {
    opacity: 0;
    animation: fadeInStagger 0.6s ease forwards;
}.prospective_members .skill_mastery > div p:nth-child(1) {
    animation-delay: 0.1s;
}.prospective_members .skill_mastery > div p:nth-child(2) {
    animation-delay: 0.2s;
}.prospective_members .skill_mastery > div p:nth-child(3) {
    animation-delay: 0.3s;
}.prospective_members .skill_mastery > div p:nth-child(4) {
    animation-delay: 0.4s;
}.prospective_members .skill_mastery > div p:nth-child(5) {
    animation-delay: 0.5s;
}.prospective_members .skill_mastery > div p:nth-child(6) {
    animation-delay: 0.6s;
}.prospective_members p:nth-child(odd) {
    box-shadow: 8px 8px 0 rgb(136,143,143,0.5);
}.prospective_members p:nth-child(even) {
    box-shadow: 8px 8px 0 rgb(101,109,109,0.5);
}.prospective_members p:hover:nth-child(odd) {
    box-shadow: 10px 10px 0 rgb(136,143,143,0.5);
}.prospective_members p:hover:nth-child(even) {
    box-shadow: 10px 10px 0 rgb(101,109,109,0.5);
}

@media (max-width: 991px) {.prospective_members {
    padding: 100px 0;
}.prospective_members h4 {
    margin-bottom: 40px;
    font-size: calc(37px * 0.9);
}.prospective_members div > div {
    gap: 15px;
}.prospective_members p {
    min-height: 90px;
    width: calc(50% - 15px);
}.prospective_members p svg {
    height: 36px;
    width: 36px;
    padding: 7px;
    margin: 0 12px;
}.prospective_members p span {
    padding: 18px 18px 18px 0;
}.prospective_members p:nth-child(odd) {
    box-shadow: 6px 6px 0 rgb(136,143,143,0.5);
}.prospective_members p:nth-child(even) {
    box-shadow: 6px 6px 0 rgb(101,109,109,0.5);
}.prospective_members p:hover:nth-child(odd) {
    box-shadow: 8px 8px 0 rgb(136,143,143,0.5);
}.prospective_members p:hover:nth-child(even) {
    box-shadow: 8px 8px 0 rgb(101,109,109,0.5);
}
}

@media (max-width: 768px) {.prospective_members {
    padding: 80px 0;
}.prospective_members h4 {
    font-size: calc(37px * 0.8);
    margin-bottom: 35px;
}.prospective_members div > div {
    gap: 20px;
}.prospective_members p {
    min-height: 80px;
    width: 100%;
}.prospective_members p svg {
    margin: 0 10px;
    height: 32px;
    width: 32px;
    padding: 6px;
}.prospective_members p span {
    padding: 15px 15px 15px 0;
}
}

@media (max-width: 576px) {.prospective_members {
    padding: 60px 0;
}.prospective_members h4 {
    margin-bottom: 30px;
    font-size: calc(37px * 0.7);
}.prospective_members h4::after {
    width: 60px;
    height: 2px;
}.prospective_members div > div {
    gap: 15px;
}.prospective_members p {
    font-size: calc(18px * 0.9);
    min-height: 70px;
}.prospective_members p svg {
    width: 28px;
    height: 28px;
    margin: 0 8px;
    padding: 5px;
}.prospective_members p:nth-child(odd) {
    box-shadow: 4px 4px 0 rgb(136,143,143,0.5);
}.prospective_members p:nth-child(even) {
    box-shadow: 4px 4px 0 rgb(101,109,109,0.5);
}.prospective_members p:hover:nth-child(odd) {
    box-shadow: 6px 6px 0 rgb(136,143,143,0.5);
}.prospective_members p:hover:nth-child(even) {
    box-shadow: 6px 6px 0 rgb(101,109,109,0.5);
}}.leadership_profile {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(171,178,178) 0%, rgb(136,143,143,0.5) 70%, rgb(101,109,109,0.5) 100%);
    padding: 6rem 0;
}.leadership_profile::before {
    top: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(136,143,143,0.5) 2px, transparent 2px),
        radial-gradient(circle at 40% 70%, rgb(136,143,143,0.5) 2px, transparent 2px),
        radial-gradient(circle at 70% 10%, rgb(136,143,143,0.5) 2px, transparent 2px),
        radial-gradient(circle at 90% 50%, rgb(136,143,143,0.5) 2px, transparent 2px);
    position: absolute;
    left: 0;
    z-index: 0;
    background-size: 120px 120px;
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0.3;
}.leadership_profile::after {
    opacity: 0.2;
    border-radius: 50%;
    top: -50%;
    right: -50%;
    position: absolute;
    transform: rotate(-15deg);
    z-index: 0;
    width: 90%;
    height: 90%;
    content: "";
    background: radial-gradient(ellipse at center, rgb(101,109,109,0.5) 0%, transparent 70%);
}.leadership_profile .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1.5rem;
    z-index: 1;
    position: relative;
}.leadership_profile .learner_voices {
    transform: perspective(1200px) rotateX(2deg);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    position: relative;
    grid-template-columns: 1fr;
    border-left: 4px solid rgb(136,143,143);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 
                0 3px 10px rgba(0,0,0,0.05),
                0 1px 0 rgba(255,255,255,0.8) inset;
    gap: 2rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    display: grid;
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.leadership_profile .learner_voices:hover {
    transform: perspective(1200px) rotateX(0);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15), 
                0 5px 12px rgba(0,0,0,0.08),
                0 1px 0 rgba(255,255,255,0.8) inset;
}.leadership_profile .learner_voices > div:first-child {
    justify-content: center;
    display: flex;
}.leadership_profile .icon_image {
    border-radius: 50%;
    width: 150px;
    position: relative;
    height: 150px;
    transition: all 0.4s ease-out;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1),
                0 0 0 8px rgba(255,255,255,0.8),
                0 0 0 12px rgb(136,143,143,0.5);
    z-index: 2;
}.leadership_profile .learner_voices:hover .icon_image {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15),
                0 0 0 8px rgba(255,255,255,0.9),
                0 0 0 12px rgb(136,143,143);
}.leadership_profile .learner_voices > div:nth-child(2) {
    text-align: center;
    position: relative;
}.leadership_profile .name {
    margin-bottom: 0.5rem;
    position: relative;
    color: #000000;
    padding-bottom: 0.5rem;
    transform: translateZ(0);
    font-weight: 700;
    display: inline-block;
    font-size: 23px;
}.leadership_profile .name::after {
    position: absolute;
    content: "";
    left: 50%;
    width: 40%;
    height: 2px;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgb(136,143,143), transparent);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}.leadership_profile .learner_voices:hover .name::after {
    width: 70%;
}.leadership_profile .learner_voices > div:nth-child(2) > div {
    font-style: italic;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, rgba(rgb(136,143,143,0.5), 0.1), rgba(rgb(136,143,143,0.5), 0), rgba(rgb(136,143,143,0.5), 0.1));
    font-weight: 600;
    font-size: calc(17px - 0.1rem);
    color: rgb(101,109,109);
    position: relative;
    display: inline-block;
}.leadership_profile .exp_timeline {
    padding: 1.5rem;
    line-height: 1.7;
    border-radius: 10px;
    font-size: 17px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    color: #000000;
    font-family: Arial, sans-serif;
    position: relative;
    background-color: rgba(255,255,255,0.5);
}.leadership_profile .exp_timeline::before,
.leadership_profile .exp_timeline::after {
    font-size: 3.5rem;
    line-height: 1;
    font-family: serif;
    color: rgb(136,143,143,0.5);
    position: absolute;
    content: "";
}.leadership_profile .exp_timeline::before {
    left: 0;
    top: -0.5rem;
}.leadership_profile .exp_timeline::after {
    bottom: -1.5rem;
    content: "";
    right: 0;
}

@media (min-width: 768px) {.leadership_profile .learner_voices {
    grid-template-columns: 180px 1fr;
    gap: 1.5rem 2.5rem;
    grid-template-rows: auto 1fr;
}.leadership_profile .learner_voices > div:first-child {
    align-self: center;
    grid-row: 1 / 3;
}.leadership_profile .learner_voices > div:nth-child(2) {
    align-self: end;
    text-align: left;
}.leadership_profile .name::after {
    left: 0;
    transform: none;
}.leadership_profile .learner_voices > div:nth-child(2) > div {
    background: linear-gradient(to right, rgba(rgb(136,143,143,0.5), 0.1), rgba(rgb(136,143,143,0.5), 0));
    padding-left: 0;
}.leadership_profile .learner_voices > div:nth-child(3) {
    grid-column: 2;
}
}

@media (min-width: 992px) {.leadership_profile {
    padding: 8rem 0;
}.leadership_profile .learner_voices {
    transform: perspective(1500px) rotateX(2deg) rotateY(-1deg);
    margin: 0 auto;
    max-width: 90%;
}.leadership_profile .learner_voices:hover {
    transform: perspective(1500px) rotateX(0) rotateY(0);
}.leadership_profile .icon_image {
    height: 180px;
    width: 180px;
}.leadership_profile .exp_timeline {
    line-height: 1.8;
    padding: 2rem;
    font-size: calc(17px + 0.1rem);
}
}

@media (min-width: 1200px) {.leadership_profile .learner_voices {
    gap: 2rem 3rem;
    max-width: 80%;
    grid-template-columns: 220px 1fr;
}.leadership_profile .icon_image {
    width: 200px;
    height: 200px;
}.leadership_profile .name {
    font-size: calc(23px + 0.2rem);
}.leadership_profile .learner_voices > div:nth-child(2) > div {
    font-size: 17px;
}
}

@media (max-width: 767px) {.leadership_profile {
    padding: 4rem 0;
}.leadership_profile .learner_voices {
    padding: 2rem 1.5rem;
}.leadership_profile .exp_timeline {
    padding: 1rem 0.5rem;
}.leadership_profile .exp_timeline::before,
    .leadership_profile .exp_timeline::after {
    font-size: 2.5rem;
}}.secure_vault {
    background: #ffffff;
    color: #000000;
    height: auto;
    padding: 50px;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}.secure_vault h1 {
    margin-top: 0;
    font-size: 44px;
    font-family: Arial, sans-serif;
    text-align: center;
    border-bottom: 2px solid rgb(101,109,109);
    color: rgb(136,143,143);
    margin-bottom: 20px;
    font-weight: 700;
    grid-column: span 2;
    padding-bottom: 10px;
}.secure_vault h2 {
    font-family: Arial, sans-serif;
    color: rgb(101,109,109);
    margin-top: 0;
    border-left: 4px solid rgb(136,143,143);
    text-align: left;
    margin-bottom: 15px;
    font-size: 33px;
    padding-left: 10px;
    font-weight: 600;
}.secure_vault h3, .secure_vault h4, .secure_vault h5 {
    font-size: 18px;
    color: #000000;
}.secure_vault ul {
    padding-left: 20px;
    margin: 0;
    list-style-type: square;
}.secure_vault li {
    border-radius: 10px;
    margin-bottom: 10px;
    background: rgb(101,109,109,0.5);
    font-size: 17px;
    padding: 10px;
    color: #000000;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}.secure_vault div {
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    color: #000000;
    padding: 15px;
    border-radius: 11px;
    font-size: 17px;
    background: rgb(136,143,143,0.5);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}.secure_vault p, .secure_vault span {
    font-size: 17px;
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.8;
}
@media only screen and (max-width: 800px) {.secure_vault {
    padding: 20px;
    gap: 20px;
    grid-template-columns: 1fr;
}.secure_vault h1 {
    font-size: calc(18px - 4px);
    margin-bottom: 15px;
}.secure_vault h2 {
    margin-bottom: 10px;
    font-size: calc(18px - 2px);
}.secure_vault ul {
    padding-left: 15px;
}.secure_vault li {
    padding: 8px;
    margin-bottom: 8px;
}.secure_vault div {
    padding: 10px;
}}.contact {
    z-index: 1;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}.contact::before {
    background-color: rgb(136,143,143,0.5);
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    position: absolute;
}.contact .container {
    padding: 0 15px;
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
}.contact .inquiry_feedback {
    border-radius: 26px;
    flex-direction: column;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    display: flex;
}.contact .feedback_inquiry {
    border-radius: 26px 26px 0 0;
    position: relative;
    order: 1;
    width: 100%;
    z-index: 2;
    padding: 50px 30px;
    background-color: #ffffff;
}.contact .feedback_inquiry h3 {
    display: inline-block;
    font-size: 23px;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    color: #000000;
}.contact .feedback_inquiry h3::after {
    background-color: rgb(101,109,109);
    content: '';
    position: absolute;
    bottom: -8px;
    height: 3px;
    left: 0;
    width: 50%;
}.contact .feedback_inquiry form {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
}.contact .feedback_inquiry input[type="text"],
.contact .feedback_inquiry input[type="email"] {
    padding: 0 20px;
    flex: 1 0 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: none;
    height: 60px;
    background-color: rgb(171,178,178);
    font-size: 14px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    color: #000000;
}.contact .feedback_inquiry input[type="text"]:focus,
.contact .feedback_inquiry input[type="email"]:focus {
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 0 3px rgb(101,109,109,0.5);
    transform: translateY(-2px);
}.contact .feedback_inquiry input::placeholder {
    color: #000000;
    opacity: 0.6;
}.contact .feedback_inquiry .contact_feedback {
    margin-top: 10px;
    align-items: flex-start;
    display: flex;
    flex: 1 0 100%;
}.contact .feedback_inquiry .contact_feedback input[type="checkbox"] {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    margin-right: 10px;
    cursor: pointer;
    appearance: none;
    transition: background-color 0.3s ease;
    margin-top: 2px;
    height: 24px;
    border-radius: 10px;
    -webkit-appearance: none;
    width: 24px;
    background-color: rgb(171,178,178);
    position: relative;
}.contact .feedback_inquiry .contact_feedback input[type="checkbox"]:checked {
    background-color: rgb(101,109,109);
}.contact .feedback_inquiry .contact_feedback input[type="checkbox"]:checked::before {
    border: solid #ffffff;
    width: 6px;
    left: 9px;
    position: absolute;
    top: 6px;
    transform: rotate(45deg);
    content: '';
    border-width: 0 2px 2px 0;
    height: 10px;
}.contact .feedback_inquiry .contact_feedback label {
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
}.contact .feedback_inquiry .contact_feedback label a {
    text-decoration: none;
    color: rgb(136,143,143);
    position: relative;
    font-weight: 600;
}.contact .feedback_inquiry .contact_feedback label a::after {
    transform-origin: right;
    position: absolute;
    background-color: rgb(136,143,143);
    transition: transform 0.3s ease;
    width: 100%;
    height: 1px;
    left: 0;
    transform: scaleX(0);
    content: '';
    bottom: -2px;
}.contact .feedback_inquiry .contact_feedback label a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}.contact .feedback_inquiry .feedback_feedback {
    color: #ffffff;
    border-radius: 10px;
    height: 60px;
    background-color: rgb(101,109,109);
    flex: 1 0 100%;
    box-shadow: 0 4px 10px rgb(101,109,109,0.5);
    z-index: 1;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 15px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    border: none;
    overflow: hidden;
}.contact .feedback_inquiry .feedback_feedback::before {
    height: 100%;
    background: rgb(136,143,143);
    top: 0;
    left: 0;
    transform-origin: right;
    width: 100%;
    border-radius: 10px;
    transform: scaleX(0);
    transition: transform 0.5s ease;
    position: absolute;
    z-index: -1;
    content: '';
}.contact .feedback_inquiry .feedback_feedback:hover {
    box-shadow: 0 6px 15px rgb(136,143,143,0.5);
}.contact .feedback_inquiry .feedback_feedback:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.contact .help_widget {
    flex-direction: column;
    order: 2;
    border-radius: 0 0 26px 26px;
    display: flex;
    position: relative;
    align-items: center;
    width: 100%;
    background-color: rgb(136,143,143);
    padding: 50px 30px;
    color: #ffffff;
}.contact .help_widget::before {
    background: rgb(136,143,143);
    top: 0;
    position: absolute;
    transform: translateY(-15px);
    left: 0;
    width: 100%;
    content: '';
    height: 30px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}.contact .help_widget h3 {
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    width: 100%;
    font-size: 29px;
}.contact .help_widget h3::after {
    transform: translateX(-50%);
    bottom: -15px;
    background-color: rgb(101,109,109);
    position: absolute;
    content: '';
    height: 3px;
    left: 50%;
    width: 60px;
}.contact .help_widget div {
    margin-bottom: 30px;
    align-items: center;
    max-width: 400px;
    display: flex;
    width: 100%;
    padding: 0;
    position: relative;
}.contact .help_widget div::before {
    height: 1px;
    position: absolute;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    opacity: 0.2;
    content: '';
    width: 100%;
    bottom: -10px;
    left: 0;
}.contact .help_widget div:last-child::before {
    display: none;
}.contact .help_widget div svg {
    height: 32px;
    border-radius: 50%;
    margin-right: 20px;
    background-color: rgb(101,109,109);
    box-shadow: 0 4px 10px rgb(101,109,109,0.5);
    width: 32px;
    padding: 6px;
}.contact .help_widget div svg path {
    fill: #ffffff;
}.contact .help_widget div span {
    font-weight: 400;
    color: #ffffff;
    font-size: 14px;
}.contact .help_widget div span a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}.contact .help_widget div span a::after {
    position: absolute;
    height: 1px;
    left: 0;
    bottom: -2px;
    transform: scaleX(0);
    background-color: #ffffff;
    width: 100%;
    transition: transform 0.3s ease;
    content: '';
    transform-origin: right;
}.contact .help_widget div span a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

@media screen and (min-width: 992px) {.contact .inquiry_feedback {
    flex-direction: row;
    align-items: stretch;
}.contact .feedback_inquiry {
    order: 1;
    padding: 60px;
    border-radius: 26px 0 0 26px;
    width: 60%;
}.contact .help_widget {
    width: 40%;
    padding: 60px 40px;
    order: 2;
    border-radius: 0 26px 26px 0;
    justify-content: center;
}.contact .help_widget::before {
    height: 100%;
    width: 30px;
    transform: translateX(-15px);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    left: 0;
    top: 0;
}.contact .feedback_inquiry input#email {
    flex: 1 0 100%;
}
}

@media screen and (max-width: 991px) {.contact {
    padding: 80px 0;
}.contact .help_widget div {
    max-width: 100%;
}
}

@media screen and (max-width: 767px) {.contact {
    padding: 60px 0;
}.contact .feedback_inquiry,
    .contact .help_widget {
    padding: 40px 25px;
}.contact .feedback_inquiry h3,
    .contact .help_widget h3 {
    font-size: calc(23px + 2px);
}.contact .feedback_inquiry input[type="text"],
    .contact .feedback_inquiry input[type="email"],
    .contact .feedback_inquiry .feedback_feedback {
    height: 55px;
}
}

@media screen and (max-width: 480px) {.contact {
    padding: 40px 0;
}.contact .feedback_inquiry,
    .contact .help_widget {
    padding: 30px 20px;
}.contact .help_widget div svg {
    height: 28px;
    margin-right: 15px;
    width: 28px;
}}.client_opinions {
    overflow: hidden;
    padding: 100px 0;
    position: relative;
    background: linear-gradient(150deg, rgb(171,178,178) 0%, #ffffff 100%);
}.client_opinions::before {
    opacity: 0.6;
    left: 0;
    content: "";
    z-index: 0;
    height: 100%;
    position: absolute;
    top: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgb(136,143,143,0.5) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgb(101,109,109,0.5) 0%, transparent 30%);
    width: 100%;
}.client_opinions::after {
    background-size: 30px 30px;
    position: absolute;
    height: 100%;
    top: 0;
    opacity: 0.1;
    background-image: 
        linear-gradient(45deg, rgb(136,143,143,0.5) 1px, transparent 1px),
        linear-gradient(-45deg, rgb(101,109,109,0.5) 1px, transparent 1px);
    z-index: 0;
    width: 100%;
    left: 0;
    content: "";
}.client_opinions .skill_mastery {
    max-width: 1200px;
    z-index: 1;
    position: relative;
    padding: 0 30px;
    margin: 0 auto;
}.client_opinions h4 {
    margin-bottom: 80px;
    font-weight: 700;
    font-size: 29px;
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    color: #000000;
}.client_opinions h4::after {
    bottom: -20px;
    left: 50%;
    height: 3px;
    width: 80px;
    background: rgb(136,143,143);
    transform: translateX(-50%);
    content: "";
    position: absolute;
}.client_opinions h4::before {
    left: calc(50% - 20px);
    position: absolute;
    height: 40px;
    content: "";
    bottom: -40px;
    width: 40px;
    border: 2px solid rgb(136,143,143,0.5);
    transform: rotate(45deg);
    z-index: -1;
}.client_opinions .user_stories {
    display: flex;
    perspective: 1000px;
    flex-wrap: wrap;
    transform-style: preserve-3d;
    justify-content: center;
}.client_opinions .learner_voices {
    transform-origin: center center;
    width: calc(33.33% - 40px);
    background: #ffffff;
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.05),
        -5px -5px 30px rgba(255, 255, 255, 0.8);
    transform: rotateY(15deg) rotateX(5deg) translateZ(0);
    margin: 0 20px 60px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    border-radius: 13px;
    padding: 30px;
}.client_opinions .learner_voices:hover {
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.1),
        -10px -10px 40px rgba(255, 255, 255, 0.9);
    z-index: 2;
    transform: rotateY(0) rotateX(0) translateZ(30px);
}.client_opinions .learner_voices:nth-child(3n+2) {
    transform: rotateY(-15deg) rotateX(5deg) translateZ(0);
}.client_opinions .learner_voices:nth-child(3n+2):hover {
    transform: rotateY(0) rotateX(0) translateZ(30px);
}.client_opinions .learner_voices:nth-child(3n+3) {
    transform: rotateY(0) rotateX(10deg) translateZ(0);
}.client_opinions .learner_voices:nth-child(3n+3):hover {
    transform: rotateY(0) rotateX(0) translateZ(30px);
}.client_opinions .learner_voices::before {
    height: 100%;
    z-index: -1;
    border-radius: inherit;
    top: 0;
    left: 0;
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    width: 100%;
}.client_opinions .learner_voices::after {
    background: rgb(136,143,143,0.5);
    width: 40px;
    z-index: -1;
    border-radius: 50%;
    content: "";
    top: -10px;
    right: -10px;
    transition: all 0.4s ease;
    height: 40px;
    position: absolute;
    opacity: 0.3;
}.client_opinions .learner_voices:hover::after {
    transform: scale(1.2);
    opacity: 0.5;
}.client_opinions .icon_image {
    border: 4px solid #ffffff;
    transform: translateZ(20px);
    height: 90px;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    margin: 0 auto 20px;
    width: 90px;
}.client_opinions .learner_voices:hover .icon_image {
    transform: translateZ(40px) scale(1.1);
    border-color: rgb(136,143,143,0.5);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}.client_opinions .learner_voices span {
    transform: translateZ(15px);
    font-size: calc(17px * 1.1);
    display: block;
    transition: all 0.4s ease;
    margin-bottom: 12px;
    text-align: center;
    color: #000000;
    font-weight: 600;
}.client_opinions .learner_voices:hover span {
    color: rgb(136,143,143);
    transform: translateZ(30px);
}.client_opinions .learner_voices p {
    transition: all 0.4s ease;
    color: #000000;
    text-align: center;
    transform: translateZ(10px);
    font-size: 17px;
    line-height: 1.6;
}.client_opinions .learner_voices:hover p {
    color: #000000;
    transform: translateZ(20px);
}.client_opinions .learner_voices:nth-child(3n+1)::after {
    background: rgb(136,143,143,0.5);
}.client_opinions .learner_voices:nth-child(3n+2)::after {
    background: rgb(101,109,109,0.5);
}.client_opinions .learner_voices:nth-child(3n+3)::after {
    background: linear-gradient(135deg, rgb(136,143,143,0.5), rgb(101,109,109,0.5));
}

@media (max-width: 1200px) {.client_opinions .learner_voices {
    width: calc(50% - 40px);
}
}

@media (max-width: 768px) {.client_opinions {
    padding: 70px 0;
}.client_opinions h4 {
    margin-bottom: 60px;
}.client_opinions .user_stories {
    perspective: none;
}.client_opinions .learner_voices,
    .client_opinions .learner_voices:nth-child(3n+2),
    .client_opinions .learner_voices:nth-child(3n+3) {
    transform: none;
    max-width: 350px;
    margin: 0 auto 40px;
    padding: 25px;
    width: 100%;
}.client_opinions .learner_voices:hover,
    .client_opinions .learner_voices:nth-child(3n+2):hover,
    .client_opinions .learner_voices:nth-child(3n+3):hover {
    transform: translateY(-10px);
}.client_opinions .learner_voices:last-child {
    margin-bottom: 0;
}.client_opinions .icon_image {
    width: 80px;
    height: 80px;
}.client_opinions .learner_voices:hover .icon_image {
    transform: scale(1.1);
}.client_opinions .learner_voices span,
    .client_opinions .learner_voices:hover span,
    .client_opinions .learner_voices p,
    .client_opinions .learner_voices:hover p {
    transform: none;
}}.cookie_message_alert {
    position: fixed;
    width: 100%;
    background: rgb(171,178,178);
    bottom: 0;
    z-index: 90;
    border-top: 2px solid rgb(136,143,143);
}#cookiePopupWindow {
    display: none;
}#cookiePopupWindow:checked ~ .cookie_message_alert {
    opacity: 0;
    visibility: hidden;
}.learn_prefs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}.cookie_message_alert h5 {
    font-size: 22px;
    margin-bottom: 6px;
}.cookie_message_alert p {
    font-size: 18px;
}.cookie_overview {
    flex-shrink: 0;
    margin-right: 10px;
}.cookie_overview svg, .cookie_overview svg path, .cookie_overview img {
    height: 100px;
    width: 100px;
    fill: rgb(136,143,143);
}.data_approval {
    min-width: 120px;
    border-bottom: 2px solid rgb(136,143,143);
    margin-left: 10px;
    cursor: pointer;
    line-height: 35px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    color: rgb(136,143,143);
    font-size: 24px;
}.cookie_message_alert p a {
    color: rgb(136,143,143);
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {.cookie_message_alert {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.cookie_overview {
    display: none;
}.learn_prefs {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}.cookie_message_alert h5 {
    text-align: center;
}.cookie_message_alert p {
    text-align: center;
}.learn_cookies {
    margin-bottom: 20px;
}body .panel-container .data_approval {
    margin-bottom: 10px;
    margin-left: 0;
}}
.panel-container .cookie_message_alert {
    box-shadow: rgb(101,109,109,0.5) 0px 0px 10px 10px;
    background: rgb(136,143,143);
}.panel-container .learn_prefs {
    justify-content: space-between;
    padding: 40px 0;
}.panel-container .data_approval {
    font-size: 20px;
    padding: 10px;
    border: none;
    color: rgb(136,143,143);
    margin-left: 30px;
    background: #ffffff;
}.panel-container .learn_cookies {
    color: #ffffff;
    text-align: left;
}.panel-container .learn_cookies h5 {
    font-weight: 700;
}.panel-container .learn_cookies h5, .panel-container .learn_cookies p {
    color: #ffffff;
}.panel-container .cookie_message_alert p a {
    color: rgb(101,109,109);
    text-decoration: underline;
}header {
    width: 100%;
    z-index: 99;
    background: linear-gradient(to bottom, rgb(171,178,178), rgba(0, 0, 0, 0.5));
    overflow: visible;
    position: relative;
}header::before {
    left: 0;
    opacity: 0.1;
    width: 100%;
    position: absolute;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 6px
    );
    content: "";
    top: 0;
    height: 100%;
}header .top_wrap {
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    display: flex;
}header .top_wrap::before {
    height: 1px;
    position: absolute;
    content: "";
    left: 10%;
    bottom: 0;
    background: linear-gradient(to right, transparent, rgb(136,143,143), transparent);
    width: 80%;
}header .top_wrap .page_header {
    z-index: 2;
    margin-right: 40px;
    position: relative;
}header .top_wrap .page_header .head_prime {
    display: block;
    position: relative;
    padding: 5px;
}header .top_wrap .page_header .head_prime::before {
    content: "";
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    opacity: 0;
    transform: scale(0.9);
    left: -5px;
}header .top_wrap .page_header .head_prime:hover::before {
    transform: scale(1);
    opacity: 0.1;
}header .top_wrap .page_header .head_prime svg {
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    height: 45px;
}header .top_wrap .top_guide {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    perspective: 1000px;
}header .top_wrap .top_guide .header_bar {
    margin: 0;
    transform-style: preserve-3d;
    position: relative;
}header .top_wrap .top_guide .header_bar a {
    font-family: Arial, sans-serif;
    padding: 12px 20px;
    text-decoration: none;
    background: linear-gradient(to bottom, transparent, transparent);
    transition: color 0.3s ease, transform 0.3s ease;
    letter-spacing: 0.5px;
    display: block;
    text-transform: uppercase;
    position: relative;
    color: #000000;
    transform-style: preserve-3d;
    font-size: 16px;
    font-weight: 600;
}header .top_wrap .top_guide .header_bar a::before,
header .top_wrap .top_guide .header_bar a::after {
    left: 0;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    pointer-events: none;
    width: 100%;
}header .top_wrap .top_guide .header_bar a::before {
    background: linear-gradient(to bottom, rgb(136,143,143,0.5), transparent);
    transform-origin: top center;
    transform: translateZ(-1px) rotateX(10deg);
    opacity: 0;
}header .top_wrap .top_guide .header_bar a::after {
    transform-origin: bottom center;
    transform: translateZ(-2px) rotateX(-10deg);
    background: linear-gradient(to top, rgb(101,109,109,0.5), transparent);
    opacity: 0;
}header .top_wrap .top_guide .header_bar:hover a {
    color: rgb(136,143,143);
    transform: translateZ(10px);
}header .top_wrap .top_guide .header_bar:hover a::before,
header .top_wrap .top_guide .header_bar:hover a::after {
    opacity: 0.1;
}header .top_wrap .top_guide .header_bar:hover a::before {
    transform: translateZ(-5px) rotateX(15deg);
}header .top_wrap .top_guide .header_bar:hover a::after {
    transform: translateZ(-10px) rotateX(-15deg);
}

@media (max-width: 992px) {header .top_wrap {
    flex-direction: column;
    padding: 15px;
}header .top_wrap .page_header {
    margin: 0 0 15px 0;
}header .top_wrap .top_guide {
    perspective: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
}header .top_wrap .top_guide .header_bar a {
    font-size: calc(16px - 1px);
    padding: 10px 15px;
    transform-style: flat;
}header .top_wrap .top_guide .header_bar:hover a {
    transform: none;
}header .top_wrap .top_guide .header_bar a::before,
    header .top_wrap .top_guide .header_bar a::after {
    display: none;
}
}

@media (max-width: 767px) {header .top_wrap .top_guide .header_bar a {
    font-size: calc(16px - 2px);
    padding: 8px 12px;
}}.education_framework {
    background: linear-gradient(135deg, rgb(136,143,143,0.5), rgb(101,109,109) 120%);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
}.education_framework::before {
    content: "";
    z-index: 1;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 0.03) 15px,
        rgba(255, 255, 255, 0.03) 30px
    );
    left: 0;
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
}.education_framework::after {
    filter: blur(20px);
    position: absolute;
    right: -5%;
    width: 40%;
    background: linear-gradient(
        145deg,
        rgb(101,109,109),
        rgb(136,143,143,0.5) 60%,
        transparent
    );
    animation: floatEffect 15s infinite alternate ease-in-out;
    opacity: 0.15;
    transform: rotate(-15deg) skewX(30deg);
    content: "";
    z-index: 0;
    height: 70%;
    top: -10%;
}.education_framework .skill_mastery {
    display: grid;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.2s forwards ease-out;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    grid-template-columns: 1fr;
    opacity: 0;
    gap: 3rem;
}.education_framework h2 {
    font-weight: 700;
    font-size: 38px;
    transition: transform 0.5s ease;
    transform: perspective(1000px) rotateX(0deg);
    color: #ffffff;
    position: relative;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
}.education_framework h2::before {
    bottom: 0;
    transition: transform 0.5s ease-out;
    transform: scaleX(1);
    width: 80px;
    position: absolute;
    content: "";
    height: 4px;
    left: 0;
    background: linear-gradient(90deg, #ffffff, transparent);
    transform-origin: left;
}.education_framework h2::after {
    bottom: -10px;
    position: absolute;
    transition: transform 0.5s 0.2s ease-out;
    background: linear-gradient(90deg, rgb(255, 255, 255, 0.5), transparent);
    left: 0;
    height: 2px;
    transform-origin: left;
    width: 120px;
    content: "";
    transform: scaleX(0.8);
}.education_framework:hover h2::before {
    transform: scaleX(1.2);
}.education_framework:hover h2::after {
    transform: scaleX(1.5);
}.education_framework .text_panel_wrap {
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 2.5rem;
}.education_framework .text_panel_wrap::before {
    position: absolute;
    z-index: -1;
    background: linear-gradient(to right, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 15%, 
                rgba(255, 255, 255, 0) 60%);
    transition: opacity 0.5s ease;
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    opacity: 0;
    left: 0;
}.education_framework .text_panel_wrap:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}.education_framework .text_panel_wrap:hover::before {
    opacity: 1;
}.education_framework p {
    line-height: 1.8;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #ffffff;
    z-index: 2;
    margin: 0;
    font-weight: 400;
}.education_framework p::first-letter {
    font-weight: 700;
    font-size: 1.5em;
    color: #ffffff;
}

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

@keyframes floatEffect {
    0% {
        transform: rotate(-15deg) skewX(30deg) translateY(0);
    }
    50% {
        transform: rotate(-12deg) skewX(28deg) translateY(-20px);
    }
    100% {
        transform: rotate(-15deg) skewX(30deg) translateY(0);
    }
}

@media (min-width: 768px) {.education_framework {
    padding: 7rem 0;
}.education_framework .skill_mastery {
    padding: 3rem;
    gap: 4rem;
    grid-template-columns: 1fr;
}.education_framework h2 {
    max-width: 80%;
    margin-bottom: 2.5rem;
    font-size: calc(38px * 1.2);
}.education_framework .text_panel_wrap {
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
    padding: 3rem;
}.education_framework p {
    line-height: 1.9;
    font-size: calc(16px * 1.1);
}
}

@media (min-width: 992px) {.education_framework {
    padding: 8rem 0;
}.education_framework .skill_mastery {
    align-items: center;
    gap: 5rem;
    grid-template-columns: 0.8fr 1.2fr;
}.education_framework h2 {
    grid-column: 1 / 2;
    margin-bottom: 0;
    font-size: calc(38px * 1.4);
}.education_framework .text_panel_wrap {
    animation: fadeInRight 0.8s 0.4s forwards ease-out;
    transform: translateX(-20px);
    opacity: 0;
    grid-column: 2 / 3;
    padding: 3.5rem;
}
    
    @keyframes fadeInRight {
        0% {
            opacity: 0;
            transform: translateX(-20px);
        }
        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

@media (min-width: 1200px) {.education_framework {
    padding: 10rem 0;
}.education_framework .skill_mastery {
    gap: 7rem;
}.education_framework h2 {
    font-size: calc(38px * 1.5);
}.education_framework .text_panel_wrap {
    padding: 4rem;
}.education_framework p {
    line-height: 2;
    font-size: calc(16px * 1.2);
}
}

@media (max-width: 767px) {.education_framework {
    padding: 4rem 0;
}.education_framework .skill_mastery {
    gap: 2rem;
    padding: 1.5rem;
}.education_framework h2 {
    font-size: calc(38px * 0.9);
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
}.education_framework h2::before {
    height: 3px;
    width: 60px;
}.education_framework h2::after {
    width: 90px;
    height: 1px;
}.education_framework .text_panel_wrap {
    padding: 1.8rem;
    clip-path: polygon(0 0, 100% 0, 99% 100%, 1% 100%);
}.education_framework p {
    font-size: calc(16px * 0.95);
    line-height: 1.7;
}
}