* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}header,footer {
    width: 100%;
}html,body {
    font-family: Arial, sans-serif;
    color: #000000;
    height: 100%;
    scroll-behavior: auto;
    min-height: 100%;
}svg {
    height: 30px;
    width: 30px;
}.wrapper-canvas {
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    display: flex;
}.rating_stars {
    flex: 0 0 auto;
}.container {
    max-width: 100%;
    width: 1141px;
    margin: auto;
}a {
    text-decoration: none;
    color: inherit;
}.nav_lead {
    flex: 1 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.developer_experience {
    background: linear-gradient(150deg, rgb(216,235,206) 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    min-height: 700px;
    padding: 8rem 0;
}.developer_experience::before {
    background-size: 150px 150px;
    background: 
        linear-gradient(90deg, transparent 85%, rgb(178,209,162,0.5) 85%, rgb(178,209,162,0.5) 88%, transparent 88%),
        linear-gradient(180deg, transparent 85%, rgb(138,181,116,0.5) 85%, rgb(138,181,116,0.5) 88%, transparent 88%);
    animation: gridFlow 20s linear infinite;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    z-index: 1;
    position: absolute;
}.developer_experience .container {
    max-width: 1300px;
    margin: 0 auto;
    z-index: 2;
    padding: 0 2rem;
    position: relative;
}.developer_experience .learner_feedback {
    position: relative;
    grid-template-columns: 45% 1fr;
    grid-template-rows: auto auto 1fr;
    min-height: 580px;
    display: grid;
    grid-template-areas:
        "photo name"
        "photo job"
        "photo quote";
    background: transparent;
    gap: 20px 30px;
}.developer_experience .learner_feedback::before {
    filter: blur(40px);
    right: 0;
    z-index: -1;
    height: 90%;
    background: linear-gradient(90deg, rgb(178,209,162,0.5) 0%, transparent 50%);
    left: 0;
    content: "";
    border-radius: 25px;
    top: 50%;
    animation: horizontalBreathing 8s ease-in-out infinite alternate;
    transform: translateY(-50%);
    position: absolute;
    opacity: 0.3;
}.developer_experience .learner_feedback::after {
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    border-radius: 25px;
    width: 100%;
    top: 0;
    z-index: -2;
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
    content: "";
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    position: absolute;
}.developer_experience .img_round {
    transform: scale(1);
    height: 100%;
    grid-area: photo;
    filter: contrast(1.1) brightness(1.05);
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 25px 0 0 25px;
    z-index: 2;
}.developer_experience .learner_feedback:hover .img_round {
    transform: scale(1.02);
    filter: contrast(1.2) brightness(1.1);
}.developer_experience .img_round::before {
    position: absolute;
    animation: pulseOpacity 3s ease-in-out infinite;
    height: 100%;
    background: rgb(178,209,162);
    top: 0;
    left: 0;
    z-index: 3;
    opacity: 0.7;
    content: "";
    width: 10px;
}.developer_experience .name {
    color: #ffffff;
    z-index: 3;
    font-size: 35px;
    font-weight: 700;
    transform: translateX(0);
    margin-top: 80px;
    grid-area: name;
    padding-bottom: 10px;
    align-self: end;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}.developer_experience .learner_feedback:hover .name {
    transform: translateX(15px);
}.developer_experience .name::after {
    bottom: 0;
    height: 2px;
    background: rgb(178,209,162);
    content: "";
    transition: width 0.5s ease;
    position: absolute;
    width: 0;
    left: 0;
}.developer_experience .learner_feedback:hover .name::after {
    width: 60%;
}.developer_experience .learner_feedback span:not(.name) {
    border-radius: 10px;
    font-weight: 600;
    transform: translateX(0);
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
    padding: 0.6rem 1.2rem;
    color: rgb(138,181,116);
    grid-area: job;
    backdrop-filter: blur(5px);
    font-size: 22px;
    align-self: start;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    position: relative;
    z-index: 3;
}.developer_experience .learner_feedback:hover span:not(.name) {
    transform: translateX(15px);
    background: rgba(0, 0, 0, 0.3);
}.developer_experience .experience_block {
    z-index: 2;
    grid-area: quote;
    width: 95%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    line-height: 1.8;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-left: 4px solid rgb(138,181,116);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    transform: translateY(0);
    color: #ffffff;
    margin-right: 0;
    align-self: start;
    font-size: 14px;
}.developer_experience .learner_feedback:hover .experience_block {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.4);
}.developer_experience .container::after {
    position: absolute;
    width: 300px;
    height: 300px;
    filter: blur(70px);
    z-index: -1;
    right: -150px;
    content: "";
    animation: pulseGlow 10s ease-in-out infinite alternate;
    opacity: 0.3;
    background: radial-gradient(circle, rgb(138,181,116,0.5) 0%, transparent 70%);
    bottom: -150px;
}

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

@keyframes horizontalBreathing {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(-50%) scaleX(0.9);
    }
    50% {
        opacity: 0.4;
        transform: translateY(-50%) scaleX(1.1);
    }
}

@keyframes pulseOpacity {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

@media (max-width: 992px) {.developer_experience .learner_feedback {
    grid-template-areas:
            "img_round"
            "name"
            "experience_data"
            "experience_block";
    grid-template-rows: auto auto auto auto;
    gap: 20px;
    grid-template-columns: 1fr;
}.developer_experience .img_round {
    border-radius: 25px 25px 0 0;
    height: 350px;
}.developer_experience .img_round::before {
    height: 10px;
    width: 100%;
}.developer_experience .name {
    text-align: center;
    margin-top: 0;
}.developer_experience .name::after {
    left: 50%;
    transform: translateX(-50%);
}.developer_experience .learner_feedback:hover .name {
    transform: translateY(-5px);
}.developer_experience .learner_feedback span:not(.name) {
    margin: 0 auto;
}.developer_experience .learner_feedback:hover span:not(.name) {
    transform: translateY(-5px);
}.developer_experience .experience_block {
    border-left: none;
    border-top: 4px solid rgb(138,181,116);
    margin: 0 auto;
    width: 90%;
}.developer_experience .learner_feedback:hover .experience_block {
    transform: translateY(-5px);
}
}

@media (max-width: 576px) {.developer_experience {
    padding: 5rem 0;
}.developer_experience .img_round {
    height: 250px;
}.developer_experience .name {
    font-size: 22px;
}.developer_experience .learner_feedback span:not(.name) {
    padding: 0.5rem 1rem;
    font-size: 14px;
}.developer_experience .experience_block {
    width: 95%;
    padding: 1.5rem;
    line-height: 1.6;
    font-size: calc(14px * 0.9);
}}.welcome {
    width: 100%;
    position: relative;
    font-family: Arial, sans-serif;
    overflow: hidden;
}.welcome .learning_open {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px;
    justify-content: center;
    box-sizing: border-box;
}.welcome .learning_open::before {
    bottom: 0;
    z-index: 1;
    right: 0;
    position: absolute;
    top: 0;
    background: linear-gradient(135deg, rgb(178,209,162,0.5), rgba(0, 0, 0, 0.5) 80%);
    left: 0;
    content: "";
}.welcome .master_program {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 40px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: perspective(1000px) rotateY(2deg);
    max-width: 1200px;
    border-left: 4px solid rgb(178,209,162);
    z-index: 2;
    backdrop-filter: blur(10px);
}.welcome .master_program:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(0deg);
}.welcome .master_program > div {
    transition: transform 0.4s ease-out;
    margin-bottom: 30px;
    transform: translateX(0);
}.welcome .master_program > div:hover {
    transform: translateX(10px);
}.welcome .master_program > div:last-child {
    margin-bottom: 0;
}.welcome p {
    margin: 0;
    padding-left: 20px;
    position: relative;
    font-size: calc(18px * 1.1);
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 0.5px;
}.welcome p::before {
    height: 10px;
    position: absolute;
    content: "";
    top: 50%;
    width: 10px;
    left: 0;
    background-color: rgb(138,181,116);
    transform: translateY(-50%);
}.welcome .title_style_header {
    font-size: 39px;
    padding-bottom: 10px;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}.welcome .title_style_header::after {
    height: 3px;
    width: 80%;
    content: "";
    bottom: 0;
    left: 0;
    transition: width 0.4s ease;
    position: absolute;
    background: linear-gradient(90deg, rgb(178,209,162), transparent);
}.welcome .title_style_header:hover::after {
    width: 100%;
}.welcome h3 {
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
    padding-top: 20px;
    font-size: calc(24px * 1.1);
}

@media (max-width: 1200px) {.welcome .master_program {
    max-width: 900px;
    padding: 30px;
}.welcome .title_style_header {
    font-size: calc(39px * 0.9);
}.welcome h3 {
    font-size: calc(24px * 1);
}
}

@media (max-width: 992px) {.welcome .master_program {
    max-width: 700px;
    transform: perspective(1000px) rotateY(1deg);
    padding: 25px;
}.welcome .title_style_header {
    font-size: calc(39px * 0.8);
}
}

@media (max-width: 768px) {.welcome .learning_open {
    padding: 80px 15px;
}.welcome .master_program {
    transform: none;
    padding: 20px;
    border-left-width: 3px;
}.welcome p {
    font-size: 18px;
}.welcome .title_style_header {
    font-size: calc(39px * 0.7);
}.welcome h3 {
    font-size: 24px;
}
}

@media (max-width: 576px) {.welcome .learning_open {
    padding: 60px 10px;
}.welcome .master_program {
    padding: 15px;
    border-left-width: 2px;
}.welcome p {
    font-size: calc(18px * 0.9);
    padding-left: 15px;
}.welcome p::before {
    width: 8px;
    height: 8px;
}.welcome .title_style_header {
    font-size: calc(39px * 0.6);
}.welcome h3 {
    font-size: calc(24px * 0.9);
}
}

@media (max-width: 400px) {.welcome .master_program {
    padding: 12px;
}.welcome p {
    font-size: calc(18px * 0.8);
}.welcome .title_style_header {
    font-size: calc(39px * 0.5);
}.welcome h3 {
    font-size: calc(24px * 0.8);
}}.rating_stars {
    background-position: center center;
    z-index: 1;
    position: relative;
    padding: 5rem 0 3rem;
    color: #ffffff;
}.rating_stars::before {
    position: absolute;
    height: 100%;
    background: linear-gradient(0deg, #000000 20%, transparent 100%);
    width: 100%;
    left: 0;
    content: "";
    z-index: -1;
    top: 0;
}.rating_stars::after {
    content: "";
    height: 100%;
    z-index: -1;
    top: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.3) 0px,
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 20px
    );
    width: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
}.rating_stars .container {
    position: relative;
    display: flex;
    flex-direction: column;
}.rating_stars .container::before {
    width: 100%;
    top: -80px;
    height: 80px;
    clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%);
    opacity: 0.3;
    content: "";
    position: absolute;
    background: linear-gradient(0deg, rgb(178,209,162) 0%, transparent 100%);
    left: 0;
}.rating_stars .company_holder {
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    margin-bottom: 4rem;
    border-radius: 10px;
    padding: 2rem;
    clip-path: polygon(
        0 0,
        calc(100% - 30px) 0,
        100% 30px,
        100% 100%,
        30px 100%,
        0 calc(100% - 30px)
    );
    border: 1px solid rgba(rgb(178,209,162), 0.3);
    backdrop-filter: blur(5px);
}.rating_stars .company_holder::before {
    height: calc(100% + 10px);
    content: "";
    top: -5px;
    position: absolute;
    opacity: 0.5;
    filter: blur(5px);
    clip-path: polygon(
        0 0,
        calc(100% - 40px) 0,
        100% 40px,
        100% 100%,
        40px 100%,
        0 calc(100% - 40px)
    );
    width: calc(100% + 10px);
    left: -5px;
    background: linear-gradient(45deg, rgb(178,209,162), transparent 70%);
    z-index: -1;
}.rating_stars .company_holder h3 {
    font-size: calc(37px * 1.2);
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    display: inline-block;
    color: #ffffff;
    text-shadow: 0 0 10px rgb(178,209,162), 0 0 20px rgb(178,209,162), 0 0 30px rgb(178,209,162);
}.rating_stars .company_holder h3::before {
    z-index: -1;
    filter: blur(1px);
    content: attr(data-text);
    position: absolute;
    color: rgb(178,209,162);
    left: 2px;
    top: 2px;
    opacity: 0.7;
}.rating_stars .trophy_case {
    border-left: 2px solid rgb(178,209,162);
    padding-left: 1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-top: 1.5rem;
    opacity: 0.8;
    font-size: 13px;
}.rating_stars .discord_cta {
    position: relative;
    display: flex;
    justify-content: space-between;
}.rating_stars .discord_cta::before {
    content: "";
    width: 100%;
    left: 0;
    height: 1px;
    top: -20px;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(178,209,162), transparent);
}.rating_stars .main_tutor {
    gap: 2rem;
    justify-content: space-between;
    width: 100%;
    display: flex;
}.rating_stars .head_know {
    padding: 1.5rem;
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    border-left: 2px solid rgb(178,209,162);
    border-bottom: 2px solid rgb(178,209,162);
    transition: all 0.3s ease;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
}.rating_stars .head_know:hover {
    background: rgba(rgb(178,209,162,0.5), 0.1);
    box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}.rating_stars .head_know h5 {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    color: rgb(138,181,116);
    font-weight: 600;
    text-transform: uppercase;
}.rating_stars .head_know h5::after {
    width: 40px;
    position: absolute;
    background: rgb(178,209,162);
    content: "";
    left: 0;
    box-shadow: 0 0 10px rgb(178,209,162);
    bottom: -8px;
    height: 2px;
}.rating_stars .head_know .main_tutor {
    flex-direction: column;
    display: flex;
    gap: 1rem;
}.rating_stars .head_know .main_tutor a {
    color: #ffffff;
    opacity: 0.7;
    padding: 0.5rem 0 0.5rem 1.5rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 13px;
    position: relative;
}.rating_stars .head_know .main_tutor a::before {
    font-size: 0.8em;
    color: rgb(178,209,162);
    left: 0;
    content: "//";
    position: absolute;
    transition: all 0.3s ease;
}.rating_stars .head_know .main_tutor a:hover {
    opacity: 1;
    text-shadow: 0 0 5px rgb(178,209,162);
    color: rgb(178,209,162);
}.rating_stars .head_know .main_tutor a:hover::before {
    color: rgb(138,181,116);
}.vr_labs {
    background: rgba(0, 0, 0, 0.6);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    margin-top: 3rem;
    position: relative;
    padding: 1.5rem 0;
}.vr_labs::before {
    height: 1px;
    position: absolute;
    background-image: 
        linear-gradient(90deg, transparent, rgb(178,209,162), transparent);
    width: 100%;
    top: 0;
    left: 0;
    content: "";
}.vr_labs .container {
    display: flex;
    justify-content: center;
    align-items: center;
}.vr_labs .discount_cta {
    letter-spacing: 1px;
    opacity: 0.7;
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
}.vr_labs .discount_cta::before,
.vr_labs .discount_cta::after {
    color: rgb(178,209,162);
    content: "//";
    margin: 0 10px;
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 0.9;
        text-shadow: 0 0 10px rgb(178,209,162), 0 0 20px rgb(178,209,162);
    }
    20%, 24%, 55% {
        opacity: 0.5;
        text-shadow: none;
    }
}

@keyframes scan-lines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

@media screen and (max-width: 992px) {.rating_stars .discord_cta {
    flex-direction: column;
}.rating_stars .main_tutor {
    flex-direction: column;
}.rating_stars .head_know {
    margin-bottom: 1rem;
    width: 100%;
}.vr_labs {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}
}

@media screen and (max-width: 768px) {.rating_stars {
    padding: 4rem 0 2rem;
}.rating_stars .company_holder {
    padding: 1.5rem;
    margin-bottom: 3rem;
}.rating_stars .company_holder h3 {
    font-size: 37px;
}.rating_stars .head_know h5 {
    font-size: calc(20px * 0.9);
}.vr_labs {
    margin-top: 2rem;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    padding: 1.2rem 0;
}
}

@media screen and (max-width: 576px) {.rating_stars {
    padding: 3rem 0 2rem;
}.rating_stars .company_holder {
    clip-path: polygon(
            0 0,
            calc(100% - 20px) 0,
            100% 20px,
            100% 100%,
            20px 100%,
            0 calc(100% - 20px)
        );
}.rating_stars .company_holder h3 {
    font-size: calc(37px * 0.85);
    letter-spacing: 1px;
}.rating_stars .trophy_case {
    font-size: calc(13px * 0.9);
}.rating_stars .head_know {
    padding: 1rem;
}.rating_stars .head_know .main_tutor a {
    font-size: calc(13px * 0.9);
}.vr_labs {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    padding: 1rem 0;
}.vr_labs .discount_cta::before,
    .vr_labs .discount_cta::after {
    display: none;
}}.consentSettingsDialog {
    bottom: 0;
    transition: all 0.3s ease-in-out;
    width: 100%;
    background: #ffffff;
    position: fixed;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    border-top: 3px solid rgb(178,209,162);
    z-index: 1050;
    padding: 15px 20px;
    font-family: Arial, sans-serif;
}.online_cookies {
    align-items: center;
    justify-content: space-between;
    display: flex;
    flex-wrap: nowrap;
}.cookie_expand {
    margin-right: 15px;
    flex-shrink: 0;
}.cookie_expand svg {
    transition: fill 0.3s ease-in-out;
    height: 50px;
    fill: rgb(178,209,162);
    width: 50px;
}.cookie_compl {
    flex-grow: 1;
    margin-right: 15px;
}.cookie_compl h5 {
    font-size: 19px;
    color: rgb(178,209,162);
    font-weight: 700;
    margin-bottom: 5px;
}.cookie_compl p {
    color: #000000;
    font-size: 16px;
    margin-bottom: 0;
}.data_settings {
    line-height: 1.5;
    font-size: 17px;
    padding: 0.375rem 0.75rem;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
    margin-left: 10px;
    vertical-align: middle;
    user-select: none;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}.cookie_button.cookie_visitor {
    border-color: rgb(178,209,162);
    color: #ffffff;
    background-color: rgb(178,209,162);
}#userConsentBanner {
    display: none;
}#userConsentBanner:checked ~ .consentSettingsDialog {
    visibility: hidden;
    opacity: 0;
}.cookie_button.cookie_visitor:hover {
    border-color: rgba(0, 0, 0, 0.5);
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
}.cookie_button.secure_cookies {
    background-color: rgb(138,181,116);
    border-color: rgb(138,181,116);
    color: #000000;
}.cookie_button.secure_cookies:hover {
    border-color: rgb(178,209,162);
    background-color: rgb(178,209,162);
    color: #ffffff;
}.consentSettingsDialog p a {
    text-decoration: underline;
    color: rgb(178,209,162);
}.consentSettingsDialog p a:hover {
    color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 1200px) {.cookie_compl h5 {
    font-size: calc(19px - 2px);
}.cookie_compl p {
    font-size: calc(16px - 2px);
}.data_settings {
    font-size: calc(17px - 2px);
}
}
@media (max-width: 800px) {.online_cookies {
    align-items: center;
    flex-direction: column;
}.cookie_expand {
    margin-bottom: 10px;
}.cookie_compl {
    text-align: center;
    margin-bottom: 15px;
}.data_settings {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
}}
.contact_panel {
    background: linear-gradient(120deg, rgb(216,235,206) 0%, #1a1e2e 100%);
    overflow: hidden;
    padding: 90px 0;
    position: relative;
}.contact_panel::before {
    width: 100%;
    top: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.4) 0%, transparent 40%),
        linear-gradient(0deg, transparent 80%, rgba(rgb(178,209,162), 0.05) 100%);
    left: 0;
    content: "";
    position: absolute;
    z-index: 0;
}.contact_panel::after {
    content: "";
    height: 100px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    position: absolute;
    background: 
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
}.contact_panel .container {
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
}.contact_panel h2 {
    margin-bottom: 70px;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
}.contact_panel h2::before {
    position: absolute;
    bottom: -20px;
    height: 2px;
    width: 30px;
    left: calc(50% - 50px);
    background: rgb(178,209,162);
    content: "";
}.contact_panel h2::after {
    position: absolute;
    background: rgb(178,209,162);
    left: calc(50% - 10px);
    width: 70px;
    height: 2px;
    content: "";
    bottom: -20px;
}.contact_panel .request_map {
    display: grid;
    border-radius: 13px;
    background: rgba(0, 0, 0, 0.2);
    grid-template-columns: 6fr 4fr;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}.contact_panel .img_round {
    position: relative;
    min-height: 100%;
}.contact_panel .img_round::before {
    height: 100%;
    content: "";
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    left: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 0;
}.contact_panel .img_round::after {
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(rgb(178,209,162), 0.1) 10px, rgba(rgb(178,209,162), 0.1) 11px);
    top: 0;
    animation: scanLines 5s linear infinite;
    z-index: 2;
    height: 100%;
    content: "";
    left: 0;
    width: 100%;
    position: absolute;
}@keyframes scanLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.contact_panel .query_panel {
    position: relative;
    padding: 50px;
}.contact_panel .query_panel::before {
    left: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    top: 0;
    content: "";
    position: absolute;
    height: 100%;
    z-index: -1;
    width: 100%;
}.contact_panel #contact {
    flex-direction: column;
    gap: 25px;
    display: flex;
}.contact_panel h3 {
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 19px;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 700;
}.contact_panel h3::after {
    left: 0;
    height: 2px;
    bottom: -10px;
    position: absolute;
    content: "";
    width: 50px;
    background: rgb(178,209,162);
}.contact_panel input[type="text"] {
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    font-size: 16px;
    border-radius: 10px;
    color: #ffffff;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}.contact_panel input[type="text"]:focus {
    outline: none;
    border-color: rgb(178,209,162);
    box-shadow: 0 0 15px rgba(rgb(178,209,162), 0.2);
    background: rgba(0, 0, 0, 0.3);
}.contact_panel input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}.contact_panel .query_form {
    gap: 12px;
    display: flex;
    align-items: flex-start;
    margin-top: 5px;
}.contact_panel .query_form input[type="checkbox"] {
    height: 24px;
    margin-top: 2px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    width: 24px;
    position: relative;
}.contact_panel .query_form input[type="checkbox"]:checked {
    border-color: rgb(178,209,162);
    background: rgb(178,209,162);
}.contact_panel .query_form input[type="checkbox"]:checked::after {
    top: 6px;
    width: 6px;
    left: 9px;
    transform: rotate(45deg);
    content: "";
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    height: 10px;
    position: absolute;
}.contact_panel .query_form label {
    font-size: calc(16px - 2px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}.contact_panel .query_form a {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    color: rgb(178,209,162);
}.contact_panel .query_form a:hover {
    color: #ffffff;
}.contact_panel .query_form a::after {
    left: 0;
    height: 1px;
    transition: all 0.3s ease;
    content: "";
    background: rgb(178,209,162);
    width: 100%;
    position: absolute;
    bottom: -2px;
}.contact_panel .query_form a:hover::after {
    background: #ffffff;
}.contact_panel .request_widget {
    color: #ffffff;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding: 16px 35px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: none;
    font-size: 20px;
    background: rgb(178,209,162);
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    align-self: flex-start;
}.contact_panel .request_widget::before {
    transition: all 0.5s ease;
    left: -100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
}.contact_panel .request_widget:hover {
    transform: translateY(-3px);
    background: rgb(138,181,116);
}.contact_panel .request_widget:hover::before {
    left: 100%;
}.contact_panel svg {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 0 5px rgba(rgb(178,209,162), 0.5));
    transition: all 0.3s ease;
    fill: rgb(178,209,162);
}.contact_panel svg path {
    fill: rgb(178,209,162);
    transition: all 0.3s ease;
}.contact_panel svg:hover {
    fill: #ffffff;
    transform: scale(1.1);
}.contact_panel svg:hover path {
    fill: #ffffff;
}

@media (max-width: 992px) {.contact_panel {
    padding: 70px 0;
}.contact_panel .request_map {
    grid-template-columns: 1fr;
}.contact_panel .img_round {
    min-height: 300px;
}.contact_panel .query_panel {
    padding: 40px 30px 50px;
}
}

@media (max-width: 768px) {.contact_panel {
    padding: 50px 0;
}.contact_panel h2 {
    margin-bottom: 50px;
    font-size: calc(30px - 4px);
}.contact_panel .img_round {
    min-height: 250px;
}
}

@media (max-width: 576px) {.contact_panel {
    padding: 40px 0;
}.contact_panel .container {
    padding: 0 15px;
}.contact_panel h2 {
    margin-bottom: 40px;
    font-size: calc(30px - 6px);
}.contact_panel h2::before {
    left: calc(50% - 35px);
    width: 20px;
}.contact_panel h2::after {
    width: 50px;
}.contact_panel .query_panel {
    padding: 30px 20px 40px;
}.contact_panel #contact {
    gap: 20px;
}.contact_panel .request_widget {
    width: 100%;
}.contact_panel .img_round {
    min-height: 200px;
}}header .top_plank {
    background: rgb(178,209,162);
    color:  #ffffff;
}header .top_plank .top_linksbar div svg, header .top_plank .top_linksbar div svg path {
    fill: #ffffff;
}header .top_plank .top_linksbar div span {
    color: #ffffff;
}header .top_plank .top_linksbar {
    display: flex;
    line-height: 21px;
    width: 100%;
    padding: 15px 0 10px 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    font-size: 16px;
}header .top_plank .top_linksbar div {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    margin-right: 24px;
}header .top_plank .top_linksbar div img, header .top_plank .top_linksbar div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}.data_summary {
    --stat-bg: linear-gradient(135deg, rgb(178,209,162,0.5), rgb(138,181,116,0.5));
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    --stat-hover-bg: linear-gradient(135deg, rgb(178,209,162), rgb(138,181,116,0.5));
    background: linear-gradient(170deg, rgb(216,235,206), rgba(0, 0, 0, 0.5));
    --item-transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease-out, background 0.4s ease;
}.data_summary::before {
    right: -5%;
    height: 60%;
    filter: blur(30px);
    content: "";
    z-index: 0;
    position: absolute;
    transform: rotate(-15deg);
    opacity: 0.6;
    top: -10%;
    width: 30%;
    background: linear-gradient(45deg, transparent, rgb(178,209,162,0.5), transparent);
}.data_summary::after {
    left: -5%;
    z-index: 0;
    transform: rotate(25deg);
    height: 70%;
    position: absolute;
    background: linear-gradient(135deg, transparent, rgb(138,181,116,0.5), transparent);
    width: 40%;
    content: "";
    opacity: 0.4;
    bottom: -20%;
    filter: blur(40px);
}.data_summary .container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    z-index: 1;
}.data_summary h4 {
    animation: fadeUp 0.8s ease-out 1.2s forwards;
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 19px;
    margin-top: 3rem;
    transform: translateY(1rem);
    color: #ffffff;
    opacity: 0;
    font-weight: 600;
}.data_summary ul {
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    list-style: none;
    display: grid;
    gap: 1.5rem;
    margin: 0;
}.data_summary .fast_benefits {
    transform: translateY(30px);
    justify-content: center;
    transition: var(--item-transition);
    display: flex;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background: var(--stat-bg);
    height: 160px;
    border-left: 3px solid rgb(178,209,162);
    animation: staggerIn 0.6s cubic-bezier(0.17, 0.67, 0.4, 1) forwards;
    backdrop-filter: blur(8px);
    position: relative;
    animation-delay: calc(0.15s * var(--i, 0));
    flex-direction: column;
    overflow: hidden;
    padding: 1.5rem;
    opacity: 0;
}.data_summary .fast_benefits:nth-child(1) {
    --i: 1;
}.data_summary .fast_benefits:nth-child(2) {
    --i: 2;
}.data_summary .fast_benefits:nth-child(3) {
    --i: 3;
}.data_summary .fast_benefits:nth-child(4) {
    --i: 4;
}.data_summary .fast_benefits:nth-child(5) {
    --i: 5;
}.data_summary .fast_benefits:nth-child(6) {
    --i: 6;
}.data_summary .fast_benefits:nth-child(7) {
    --i: 7;
}.data_summary .fast_benefits::before {
    right: 0;
    height: 100%;
    transition: opacity 0.5s ease;
    content: "";
    top: 0;
    position: absolute;
    width: 100%;
    opacity: 0;
    z-index: 0;
    background: linear-gradient(45deg, transparent, rgb(138,181,116,0.5) 80%);
}.data_summary .fast_benefits:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: var(--stat-hover-bg);
    transform: translateY(-5px) scale(1.02);
}.data_summary .fast_benefits:hover::before {
    opacity: 0.4;
}.data_summary .fast_benefits div {
    position: relative;
    z-index: 2;
}.data_summary .fast_benefits p {
    color: #ffffff;
    font-size: 3rem;
    position: relative;
    display: inline-block;
    line-height: 1;
    margin: 0 0 0.5rem;
    font-weight: 700;
}.data_summary .fast_benefits p::after {
    content: "+";
    top: 5px;
    font-size: 1.5rem;
    right: -15px;
    position: absolute;
    color: rgb(178,209,162);
}.data_summary .fast_benefits span {
    font-weight: 400;
    display: block;
    color: #ffffff;
    position: relative;
    line-height: 1.4;
    font-size: 16px;
    padding-left: 0;
    max-width: 90%;
    transition: padding 0.3s ease;
}.data_summary .fast_benefits:hover span {
    padding-left: 10px;
}.data_summary .fast_benefits span::before {
    height: 2px;
    background: rgb(178,209,162);
    top: 50%;
    position: absolute;
    content: "";
    left: 0;
    transform: translateY(-50%);
    transition: width 0.3s ease;
    width: 0;
}.data_summary .fast_benefits:hover span::before {
    width: 6px;
}

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

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

@media (max-width: 992px) {.data_summary {
    padding: 4rem 0;
}.data_summary ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}.data_summary .fast_benefits {
    height: 140px;
    padding: 1.25rem;
}.data_summary .fast_benefits p {
    font-size: 2.5rem;
}.data_summary .fast_benefits p::after {
    font-size: 1.25rem;
    top: 4px;
    right: -12px;
}
}

@media (max-width: 768px) {.data_summary {
    padding: 3rem 0;
}.data_summary ul {
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}.data_summary .fast_benefits {
    height: 130px;
    padding: 1rem;
}.data_summary .fast_benefits p {
    font-size: 2.25rem;
}.data_summary h4 {
    margin-top: 2rem;
}
}

@media (max-width: 576px) {.data_summary {
    padding: 2.5rem 0;
}.data_summary ul {
    gap: 0.75rem;
    grid-template-columns: 1fr 1fr;
}.data_summary .fast_benefits {
    height: 120px;
}.data_summary .fast_benefits p {
    font-size: 2rem;
}.data_summary .fast_benefits span {
    max-width: 100%;
    font-size: 0.85rem;
}.data_summary h4 {
    font-size: calc(19px * 0.9);
}
}

@media (max-width: 400px) {.data_summary ul {
    grid-template-columns: 1fr;
}.data_summary .fast_benefits {
    height: auto;
    min-height: 100px;
}}header {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    padding: 0;
    overflow: visible;
    z-index: 100;
    position: relative;
    margin-top: 0;
    background: linear-gradient(90deg, rgb(138,181,116) 0%, rgb(178,209,162) 100%);
}header::before {
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 5px,
        transparent 5px,
        transparent 25px
    );
    content: '';
    z-index: 0;
}header .main_pagewrap {
    padding: 1.2rem 2.5rem;
    justify-content: space-between;
    position: relative;
    display: flex;
    z-index: 5;
    align-items: center;
}header .top_bar {
    margin-right: 2rem;
    position: relative;
    padding: 0.5rem;
    overflow: visible;
    flex: 0 0 auto;
}header .top_bar::before {
    transform: skew(-5deg);
    z-index: -1;
    top: -5px;
    bottom: -5px;
    border: 2px solid #ffffff;
    content: '';
    opacity: 0.1;
    left: -5px;
    transition: all 0.3s ease;
    right: -5px;
    position: absolute;
}header .top_bar::after {
    z-index: -1;
    left: -5px;
    right: -5px;
    border: 2px solid #ffffff;
    opacity: 0;
    transform: skew(-5deg);
    bottom: -5px;
    box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
    position: absolute;
    content: '';
    top: -5px;
    transition: all 0.3s ease;
}header .top_bar:hover::before {
    opacity: 0;
}header .top_bar:hover::after {
    opacity: 0.5;
    animation: neonPulse 1.5s infinite alternate;
}@keyframes neonPulse {
    0% { opacity: 0.3; box-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff; }
    100% { opacity: 0.7; box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff; }
}

header .top_learn {
    display: block;
    position: relative;
    transition: all 0.3s ease;
}header .top_learn:hover {
    transform: scale(1.05);
}header .top_learn img {
    max-height: 40px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}header .head_know {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    z-index: 2;
    display: flex;
}header .top_page {
    position: relative;
    margin: 0 0.4rem;
}header .top_page a {
    overflow: hidden;
    height: 40px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    align-items: center;
    display: flex;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff;
    text-decoration: none;
    font-size: 17px;
    letter-spacing: 0.5px;
    justify-content: center;
}header .top_page a::before {
    right: -2px;
    content: '';
    z-index: -1;
    bottom: -2px;
    background: #ffffff;
    top: -2px;
    left: -2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    transform: scale(0.9);
}header .top_page a:hover {
    transform: translateY(-3px);
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    color: rgb(178,209,162);
    text-shadow: none;
}header .top_page a:hover::before {
    transform: scale(1);
    opacity: 1;
}header .top_page::after {
    opacity: 0;
    width: 80%;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    position: absolute;
    left: 10%;
    height: 5px;
    filter: blur(3px);
    bottom: -10px;
    content: '';
}header .top_page:hover::after {
    opacity: 0.5;
    bottom: -5px;
}header .main_pagewrap::before {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    height: 1px;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}header .main_pagewrap::after {
    height: 1px;
    content: '';
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    left: 0;
    bottom: 0;
    position: absolute;
    width: 100%;
}header .nav_lead {
    z-index: 1;
    position: relative;
    padding-top: 2rem;
    background: rgb(216,235,206);
}

@media (min-width: 1400px) {header .main_pagewrap {
    max-width: 1320px;
    margin: 0 auto;
}header .top_page {
    margin: 0 0.6rem;
}header .top_page a {
    padding: 0 1.5rem;
}
}

@media (max-width: 991px) {header .main_pagewrap {
    flex-wrap: wrap;
    padding: 1rem 2rem;
}header .top_bar {
    margin-right: 0;
    margin-bottom: 0;
}header .head_know {
    margin-top: 1rem;
    flex-basis: 100%;
    justify-content: flex-end;
}header .top_page a {
    height: 36px;
    font-size: calc(17px - 1px);
    padding: 0 1rem;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .main_pagewrap {
    padding: 0.8rem 1.5rem;
}header .top_bar {
    max-width: 140px;
}header .top_bar::before, 
    header .top_bar::after {
    left: -3px;
    bottom: -3px;
    top: -3px;
    right: -3px;
}header .top_learn img {
    max-height: 35px;
}header .head_know {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-top: 0.8rem;
    padding-bottom: 0.5rem;
    justify-content: flex-start;
}header .head_know::-webkit-scrollbar {
    height: 3px;
}header .head_know::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}header .top_page {
    flex: 0 0 auto;
    margin: 0 0.2rem;
}header .top_page a {
    font-size: calc(17px - 2px);
    height: 32px;
    padding: 0 0.8rem;
    white-space: nowrap;
}header .top_page::after {
    display: none;
}
}

@media (max-width: 479px) {header .main_pagewrap {
    padding: 0.7rem 1.2rem;
}header .top_bar {
    max-width: 120px;
}header .top_page a {
    padding: 0 0.6rem;
    height: 30px;
    font-size: calc(17px - 3px);
}}.course_offering {
    overflow: hidden;
    padding: 100px 0;
    background-color: #000000;
    position: relative;
}.course_offering::before {
    left: 0;
    z-index: 1;
    height: 100%;
    position: absolute;
    top: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgb(178,209,162,0.5) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgb(138,181,116,0.5) 0%, transparent 40%);
    width: 100%;
    content: "";
}.course_offering::after {
    top: 0;
    content: "";
    z-index: 1;
    width: 100%;
    position: absolute;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
    left: 0;
}.course_offering .container {
    position: relative;
    z-index: 2;
}.course_offering .education_flow {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    grid-template-areas:
        "image title"
        "desc1 desc2";
    grid-template-rows: auto 1fr;
    min-height: 500px;
    display: grid;
}.course_offering .text_display_box {
    display: contents;
}.course_offering .text_display_box h2 {
    border-left: 3px solid rgb(178,209,162);
    animation: slide-in 0.8s forwards 0.2s;
    font-weight: 700;
    transform: translateX(-30px);
    margin: 0;
    align-self: center;
    padding: 30px;
    backdrop-filter: blur(5px);
    opacity: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 100%);
    border-radius: 20px;
    color: #ffffff;
    grid-area: title;
    font-size: 31px;
}.course_offering .text_display_box .description:nth-of-type(1) {
    opacity: 0;
    transform: translateY(30px);
    animation: fade-up 0.8s forwards 0.4s;
    grid-area: desc1;
}.course_offering .text_display_box .description:nth-of-type(2) {
    transform: translateY(30px);
    animation: fade-up 0.8s forwards 0.6s;
    grid-area: desc2;
    opacity: 0;
}.course_offering .text_display_box .description {
    position: relative;
    border-radius: 20px;
    line-height: 1.8;
    border-top: 3px solid rgb(138,181,116);
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    font-size: 13px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin: 0;
    overflow: hidden;
    color: #000000;
    backdrop-filter: blur(5px);
}.course_offering .text_display_box .description::before {
    height: 100%;
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    top: 0;
    width: 100%;
    pointer-events: none;
    content: "";
    left: 0;
}.course_offering .img_round {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    border-radius: 20px;
    grid-area: image;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}.course_offering .img_round::before {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, transparent 100%);
    height: 100%;
}

@keyframes slide-in {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-up {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    95% {
        opacity: 0.5;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@media (max-width: 991px) {.course_offering {
    padding: 80px 0;
}.course_offering .education_flow {
    grid-template-areas:
            "image image"
            "title title"
            "desc1 desc2";
    min-height: auto;
}.course_offering .img_round {
    height: 400px;
}
}

@media (max-width: 767px) {.course_offering {
    padding: 60px 0;
}.course_offering .education_flow {
    grid-template-columns: 1fr;
    gap: 20px;
    grid-template-areas:
            "image"
            "title"
            "desc1"
            "desc2";
}.course_offering .img_round {
    height: 350px;
}.course_offering .text_display_box h2 {
    padding: 20px;
    font-size: calc(31px * 0.9);
}.course_offering .text_display_box .description {
    padding: 20px;
}

}

@media (max-width: 480px) {.course_offering {
    padding: 40px 0;
}.course_offering .img_round {
    height: 250px;
}.course_offering .text_display_box h2 {
    padding: 15px;
    font-size: calc(31px * 0.8);
}.course_offering .text_display_box .description {
    padding: 15px;
    font-size: calc(13px * 0.95);
}.course_offering .tech-element {
    display: none;
}}.pricing_lineup {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}.pricing_lineup::before {
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(135deg, rgba(18, 36, 66, 0.92), rgba(39, 55, 89, 0.85));
    top: 0;
    left: 0;
    content: "";
}.pricing_lineup .container {
    margin: 0 auto;
    max-width: 1320px;
    z-index: 2;
    padding: 0 15px;
    position: relative;
}.program_rate {
    position: relative;
}.pricing_lineup h2 {
    margin-bottom: 20px;
    font-size: 31px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-align: center;
    color: #ffffff;
    transform: translateY(0);
    font-weight: 700;
    position: relative;
}.pricing_lineup h2::after {
    background: rgb(178,209,162);
    transform: translateX(-50%);
    position: absolute;
    bottom: -12px;
    left: 50%;
    content: "";
    width: 80px;
    height: 3px;
}.pricing_lineup .cost_rates {
    line-height: 1.6;
    font-size: 18px;
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
    color: #ffffff;
    opacity: 0.9;
}.pricing_lineup .learn_packs {
    display: grid;
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin: 0;
    list-style: none;
    gap: 30px;
}.pricing_lineup .lesson_plans {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    display: block;
}.pricing_lineup .cert_cost {
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    transition: all 0.4s ease;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    min-height: 380px;
    height: 100%;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    height: 100%;
    justify-content: space-between;
    position: relative;
}.pricing_lineup .cert_cost::before {
    opacity: 0;
    left: 0;
    height: 100%;
    transition: opacity 0.5s ease;
    position: absolute;
    content: "";
    background: linear-gradient(to bottom right, 
        rgb(178,209,162,0.5), 
        transparent,
        rgba(255, 255, 255, 0.05));
    width: 100%;
    top: 0;
}.pricing_lineup .pay_plans {
    flex-direction: column;
    z-index: 2;
    position: relative;
    height: 100%;
    display: flex;
}.pricing_lineup .lesson_plans h4 {
    margin-bottom: 20px;
    transition: transform 0.4s ease;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}.pricing_lineup .lesson_plans h4::after {
    background: rgb(178,209,162);
    bottom: 0;
    transition: width 0.4s ease;
    content: "";
    height: 2px;
    position: absolute;
    left: 0;
    width: 40px;
}.pricing_lineup .lesson_plans p {
    color: #ffffff;
    opacity: 0.85;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 15px;
    margin-bottom: 25px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}.pricing_lineup .learning_deals {
    background: linear-gradient(135deg, rgb(178,209,162), rgb(138,181,116));
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-top: auto;
    font-size: 28px;
    align-self: flex-start;
    padding: 10px 20px;
    position: relative;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 700;
}.pricing_lineup .learning_deals::before {
    transform: translateX(-100%);
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    content: "";
    width: 100%;
    left: 0;
    transition: transform 0.6s ease;
    top: 0;
    position: absolute;
}.pricing_lineup .lesson_plans:hover {
    transform: translateY(-10px);
}.pricing_lineup .lesson_plans:hover .cert_cost {
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}.pricing_lineup .lesson_plans:hover .cert_cost::before {
    opacity: 1;
}.pricing_lineup .lesson_plans:hover h4 {
    transform: translateX(5px);
}.pricing_lineup .lesson_plans:hover h4::after {
    width: 60px;
}.pricing_lineup .lesson_plans:hover .learning_deals {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}.pricing_lineup .lesson_plans:hover .learning_deals::before {
    transform: translateX(100%);
}

@media (max-width: 1200px) {.pricing_lineup {
    padding: 100px 0;
}.pricing_lineup .learn_packs {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}.pricing_lineup .cert_cost {
    padding: 25px;
    min-height: 360px;
}.pricing_lineup h2 {
    font-size: calc(31px - 2px);
}
}

@media (max-width: 992px) {.pricing_lineup {
    padding: 80px 0;
}.pricing_lineup .learn_packs {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}.pricing_lineup .cert_cost {
    padding: 22px;
    min-height: 340px;
}.pricing_lineup .lesson_plans h4 {
    font-size: 20px;
}.pricing_lineup .lesson_plans p {
    font-size: 14px;
    line-height: 1.6;
}.pricing_lineup .learning_deals {
    padding: 8px 16px;
    font-size: 24px;
}
}

@media (max-width: 768px) {.pricing_lineup {
    padding: 60px 0;
}.pricing_lineup .learn_packs {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}.pricing_lineup .cert_cost {
    padding: 25px;
    min-height: auto;
}.pricing_lineup h2 {
    font-size: calc(31px - 4px);
}.pricing_lineup .cost_rates {
    font-size: 16px;
    margin-bottom: 40px;
}
}

@media (max-width: 576px) {.pricing_lineup {
    padding: 50px 0;
}.pricing_lineup h2 {
    font-size: calc(31px - 6px);
}.pricing_lineup .cost_rates {
    font-size: 15px;
    margin-bottom: 30px;
}.pricing_lineup .cert_cost {
    padding: 20px;
}.pricing_lineup .lesson_plans h4 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 12px;
}.pricing_lineup .lesson_plans p {
    font-size: 14px;
    margin-bottom: 20px;
}.pricing_lineup .learning_deals {
    padding: 8px 14px;
    font-size: 22px;
}}.privacy_hub {
    background: linear-gradient(135deg, rgb(216,235,206) 0%, rgba(255,255,255,0.98) 100%);
    position: relative;
    perspective: 1000px;
    overflow: hidden;
    padding: 5rem 2rem;
}.privacy_hub::before {
    width: 100%;
    opacity: 0.15;
    transform: translateZ(-50px);
    background: 
        radial-gradient(circle at 20% 30%, rgb(178,209,162,0.5) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgb(138,181,116,0.5) 0%, transparent 25%);
    top: 0;
    z-index: 0;
    position: absolute;
    height: 100%;
    left: 0;
    content: "";
}.privacy_hub .container {
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.05),
        0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 1140px;
    transform: translateZ(0) rotateX(0.5deg);
    z-index: 1;
    transform-style: preserve-3d;
    padding: 2rem;
    margin: 0 auto;
    background: #ffffff;
    border-left: 4px solid rgb(178,209,162);
    position: relative;
}.privacy_hub .container:hover {
    transform: translateZ(10px) rotateX(0deg);
}.privacy_hub h1 {
    font-weight: 700;
    font-size: calc(48px * 1.2);
    padding-bottom: 1rem;
    position: relative;
    letter-spacing: -0.5px;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #000000;
    font-family: Arial, sans-serif;
}.privacy_hub h1::after {
    left: 0;
    transition: transform 0.4s ease-out;
    content: "";
    width: 80px;
    height: 4px;
    bottom: 0;
    transform-origin: left;
    transform: scaleX(1);
    position: absolute;
    background: linear-gradient(90deg, rgb(178,209,162) 0%, rgb(138,181,116) 100%);
}.privacy_hub:hover h1::after {
    transform: scaleX(1.5);
}.privacy_hub h2 {
    font-size: calc(33px * 1.05);
    transition: transform 0.3s ease-out;
    font-weight: 600;
    font-family: Arial, sans-serif;
    transform: translateX(0);
    margin: 3rem 0 1.5rem;
    color: #000000;
    border-left: 3px solid rgb(138,181,116);
    padding-left: 1rem;
    position: relative;
}.privacy_hub h2:hover {
    transform: translateX(5px);
}.privacy_hub h3 {
    color: #000000;
    font-size: calc(20px * 1.2);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    position: relative;
    font-weight: 600;
}.privacy_hub h4 {
    color: #000000;
    font-size: calc(19px * 1.1);
    position: relative;
    font-family: Arial, sans-serif;
    font-weight: 600;
    padding-left: 1.5rem;
    margin: 2rem 0 1rem;
}.privacy_hub h4::before {
    transform: translateY(-50%) rotate(45deg);
    height: 8px;
    content: "";
    left: 0;
    top: 50%;
    position: absolute;
    width: 8px;
    background-color: rgb(178,209,162);
}.privacy_hub p {
    transition: transform 0.3s ease-out;
    color: #000000;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    transform: translateZ(0);
    font-size: 18px;
    position: relative;
}.privacy_hub p:hover {
    transform: translateZ(5px);
}.privacy_hub strong {
    padding: 0 2px;
    font-weight: 600;
    color: #000000;
    background: linear-gradient(to bottom, transparent 85%, rgb(138,181,116,0.5) 85%, rgb(138,181,116,0.5) 100%);
    position: relative;
    display: inline-block;
}.privacy_hub ul {
    padding-left: 1.5rem;
    margin: 1.5rem 0 2rem;
    list-style: none;
    position: relative;
}.privacy_hub ul li {
    margin-bottom: 1rem;
    color: #000000;
    font-size: 18px;
    padding-left: 1.5rem;
    transition: transform 0.2s ease-out;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    position: relative;
}.privacy_hub ul li:hover {
    transform: translateX(5px);
}.privacy_hub ul li::before {
    border-radius: 50%;
    height: 6px;
    top: 0.65rem;
    content: "";
    background-color: rgb(178,209,162);
    width: 6px;
    transition: transform 0.2s ease-out, background-color 0.2s ease-out;
    position: absolute;
    left: 0;
}.privacy_hub ul li:hover::before {
    transform: scale(1.5);
    background-color: rgb(138,181,116);
}.privacy_hub span {
    transition: transform 0.3s ease-out, border-left-color 0.3s ease-out;
    display: block;
    transform: translateX(0);
    background-color: rgba(rgba(0, 0, 0, 0.5), 0.02);
    padding: 1rem 1.5rem;
    line-height: 1.7;
    font-family: Arial, sans-serif;
    font-size: 18px;
    border-left: 2px solid rgb(138,181,116,0.5);
    margin-bottom: 2rem;
    color: #000000;
}.privacy_hub span:hover {
    border-left-color: rgb(138,181,116);
    transform: translateX(5px);
}

@media screen and (max-width: 1200px) {.privacy_hub {
    padding: 4rem 1.5rem;
}.privacy_hub .container {
    padding: 1.5rem;
}.privacy_hub h1 {
    font-size: calc(48px * 1.1);
}.privacy_hub h2 {
    font-size: 33px;
}
}

@media screen and (max-width: 992px) {.privacy_hub {
    padding: 3rem 1rem;
}.privacy_hub .container {
    transform: none;
    box-shadow: 
            0 10px 30px rgba(0,0,0,0.05),
            0 3px 10px rgba(0,0,0,0.03);
}.privacy_hub .container:hover {
    transform: none;
}.privacy_hub h1 {
    font-size: 48px;
}
}

@media screen and (max-width: 768px) {.privacy_hub {
    padding: 2rem 0.5rem;
}.privacy_hub .container {
    padding: 1.5rem 1rem;
}.privacy_hub h1 {
    font-size: calc(48px * 0.9);
}.privacy_hub h2 {
    padding-left: 0.75rem;
    font-size: calc(33px * 0.9);
}.privacy_hub h3 {
    font-size: 20px;
}.privacy_hub h4 {
    font-size: 19px;
}.privacy_hub p, 
    .privacy_hub ul li,
    .privacy_hub span {
    font-size: calc(18px * 0.95);
}.privacy_hub ul {
    padding-left: 0.5rem;
}.privacy_hub span {
    padding: 0.75rem 1rem;
}
}

@media screen and (max-width: 576px) {.privacy_hub {
    padding: 1.5rem 0.5rem;
}.privacy_hub .container {
    padding: 1rem;
    border-left-width: 3px;
}.privacy_hub h1 {
    font-size: calc(48px * 0.8);
}.privacy_hub h1::after {
    height: 3px;
    width: 60px;
}.privacy_hub h2 {
    border-left-width: 2px;
    margin: 2rem 0 1rem;
}.privacy_hub ul li {
    padding-left: 1.25rem;
}.privacy_hub p:hover,
    .privacy_hub ul li:hover,
    .privacy_hub span:hover,
    .privacy_hub h2:hover {
    transform: none;
}}.future_attendees {
    padding: 100px 0;
    background: rgb(216,235,206);
    overflow: hidden;
    position: relative;
}.future_attendees::before {
    background: linear-gradient(
        135deg,
        transparent 20px,
        rgb(178,209,162,0.5) 20px,
        rgb(178,209,162,0.5) 22px,
        transparent 22px
    ),
    linear-gradient(
        225deg,
        transparent 20px,
        rgb(138,181,116,0.5) 20px,
        rgb(138,181,116,0.5) 22px,
        transparent 22px
    );
    top: 0;
    position: absolute;
    background-size: 60px 60px;
    width: 100%;
    left: 0;
    opacity: 0.15;
    z-index: 0;
    content: "";
    height: 100%;
}.future_attendees::after {
    width: 100%;
    z-index: 0;
    background-size: 40px 40px;
    position: absolute;
    background: 
        linear-gradient(90deg, transparent 47%, rgb(178,209,162,0.5) 47%, rgb(178,209,162,0.5) 53%, transparent 53%),
        linear-gradient(0deg, transparent 47%, rgb(138,181,116,0.5) 47%, rgb(138,181,116,0.5) 53%, transparent 53%);
    top: 0;
    left: 0;
    opacity: 0.1;
    height: 100%;
    filter: blur(1px);
    content: "";
}.future_attendees .pro_training {
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    max-width: 1200px;
    z-index: 1;
}.future_attendees h3 {
    color: #000000;
    font-size: 33px;
    transform: translateX(-50%);
    position: relative;
    font-weight: 700;
    font-family: Arial, sans-serif;
    box-shadow: 0 10px 25px -10px rgb(178,209,162,0.5);
    text-align: center;
    display: inline-block;
    margin-bottom: 80px;
    padding: 0 20px 20px;
    left: 50%;
}.future_attendees h3::before {
    position: absolute;
    width: 100%;
    content: "";
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, 
        rgb(178,209,162),
        rgb(138,181,116),
        rgb(178,209,162)
    );
}.future_attendees h3::after {
    background: rgb(178,209,162);
    box-shadow: 0 0 15px rgb(178,209,162,0.5);
    height: 12px;
    bottom: -6px;
    animation: pulseCircle 2s infinite;
    transform: translateX(-50%);
    content: "";
    width: 12px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
}.future_attendees ul {
    list-style: none;
    display: grid;
    padding: 0;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 0;
}.future_attendees ul li {
    border-bottom: 3px solid rgb(138,181,116);
    border-right: 1px solid rgb(138,181,116,0.5);
    position: relative;
    border-top: 1px solid rgb(138,181,116,0.5);
    font-size: 14px;
    transition: all 0.4s ease;
    border-left: 3px solid rgb(178,209,162);
    font-family: Arial, sans-serif;
    padding: 25px 25px 25px 70px;
    color: #000000;
    background: #ffffff;
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.05),
        -10px -10px 20px rgba(255, 255, 255, 0.5);
}.future_attendees ul li::before {
    background: rgb(178,209,162);
    height: 10px;
    position: absolute;
    top: -5px;
    content: "";
    width: 10px;
    border-radius: 50%;
    left: -5px;
}.future_attendees ul li::after {
    right: -5px;
    height: 10px;
    bottom: -5px;
    border-radius: 50%;
    width: 10px;
    position: absolute;
    background: rgb(138,181,116);
    content: "";
}.future_attendees ul li:hover {
    border-left: 3px solid rgb(138,181,116);
    border-bottom: 3px solid rgb(178,209,162);
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.1),
        -15px -15px 30px rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
}.future_attendees ul li svg {
    top: 50%;
    transform: translateY(-50%);
    height: 35px;
    width: 35px;
    position: absolute;
    left: 20px;
    transition: all 0.4s ease;
}.future_attendees ul li:hover svg {
    transform: translateY(-50%) scale(1.2);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}.future_attendees ul li svg path {
    transition: fill 0.4s ease;
    fill: rgb(178,209,162);
}.future_attendees ul li:hover svg path {
    fill: rgb(138,181,116);
}.future_attendees ul::before {
    background-size: 30px 30px;
    left: 0;
    width: 100%;
    background-image: 
        linear-gradient(45deg, transparent 97%, rgb(178,209,162,0.5) 97%),
        linear-gradient(135deg, transparent 97%, rgb(138,181,116,0.5) 97%);
    pointer-events: none;
    height: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.3;
    content: "";
    top: 0;
}@keyframes pulseCircle {
    0%, 100% {
        box-shadow: 0 0 10px rgb(178,209,162,0.5);
    }
    50% {
        box-shadow: 0 0 20px rgb(178,209,162);
    }
}

.future_attendees ul li:nth-child(odd) {
    animation: lightsOn 3s infinite alternate;
}.future_attendees ul li:nth-child(even) {
    animation: lightsOn 5s infinite alternate-reverse;
}

@keyframes lightsOn {
    0% {
        box-shadow: 
            10px 10px 20px rgba(0, 0, 0, 0.05),
            -10px -10px 20px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 
            10px 10px 20px rgba(0, 0, 0, 0.05),
            -10px -10px 20px rgba(255, 255, 255, 0.5),
            0 0 15px rgb(178,209,162,0.5);
    }
}

@media (max-width: 992px) {.future_attendees {
    padding: 80px 0;
}.future_attendees ul {
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}.future_attendees h3 {
    font-size: calc(33px * 0.9);
    margin-bottom: 60px;
}
}

@media (max-width: 768px) {.future_attendees {
    padding: 60px 0;
}.future_attendees ul {
    gap: 20px;
    grid-template-columns: 1fr;
}.future_attendees ul li {
    padding: 20px 20px 20px 65px;
}.future_attendees h3 {
    font-size: calc(33px * 0.8);
    margin-bottom: 40px;
}
}

@media (max-width: 480px) {.future_attendees {
    padding: 50px 0;
}.future_attendees .pro_training {
    padding: 0 15px;
}.future_attendees h3 {
    margin-bottom: 35px;
    font-size: calc(33px * 0.7);
}.future_attendees ul li {
    padding: 18px 15px 18px 60px;
}.future_attendees ul li svg {
    width: 30px;
    height: 30px;
    left: 15px;
}}.tySection {
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(216,235,206) 0%, rgba(rgb(138,181,116,0.5), 0.15) 100%);
    z-index: 1;
}.tySection::before {
    height: 180%;
    position: absolute;
    top: -20%;
    z-index: -1;
    content: "";
    clip-path: polygon(0 0, 100% 15%, 85% 100%, 0% 85%);
    width: 60%;
    animation: floatBg 18s infinite alternate ease-in-out;
    transform: rotate(-15deg) translateZ(0);
    left: -10%;
    background: linear-gradient(145deg, rgb(178,209,162) 0%, rgba(rgb(178,209,162,0.5), 0.2) 100%);
}.tySection::after {
    height: 140%;
    right: -5%;
    position: absolute;
    background: linear-gradient(215deg, rgb(138,181,116) 0%, rgba(rgb(138,181,116,0.5), 0.3) 100%);
    transform: rotate(12deg) translateZ(0);
    bottom: -10%;
    animation: floatBg 15s infinite alternate-reverse ease-in-out;
    z-index: -1;
    width: 40%;
    content: "";
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 85%);
}.tySection .container {
    margin: 0 auto;
    max-width: 1320px;
    z-index: 2;
    padding: 0 20px;
    position: relative;
}.tySection .pro_training {
    animation: slideUp 0.9s cubic-bezier(0.17, 0.67, 0.26, 0.97);
    box-shadow: 0 20px 50px rgba(rgba(0, 0, 0, 0.5), 0.1), 
                0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05),
                0 5px 15px rgba(rgb(178,209,162,0.5), 0.05);
    position: relative;
    transform: translateY(0);
    background: rgba(rgb(255, 255, 255, 0.5), 0.9);
    border-left: 4px solid rgb(178,209,162);
    opacity: 1;
    backdrop-filter: blur(15px);
    padding: 4rem;
}.tySection .pro_training::before {
    border: 2px dashed rgba(rgb(138,181,116,0.5), 0.2);
    content: "";
    top: 20px;
    width: 100%;
    left: 20px;
    z-index: -1;
    transform: translate(-10px, -10px);
    position: absolute;
    height: 100%;
    pointer-events: none;
}.tySection .pro_training > div:first-child {
    margin-bottom: 2rem;
    animation: slideRight 0.8s 0.3s cubic-bezier(0.17, 0.67, 0.26, 0.97) both;
    transform: translateX(0);
    position: relative;
}.tySection .pro_training > div:first-child::after {
    bottom: -0.8rem;
    height: 3px;
    position: absolute;
    animation: expandWidth 1.2s 0.8s cubic-bezier(0.17, 0.67, 0.26, 0.97) forwards;
    background: rgb(178,209,162);
    width: 80px;
    left: 0;
    content: "";
}.tySection h5 {
    transform: translateZ(0);
    font-weight: 700;
    color: #000000;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
}.tySection .pro_training > div:last-child {
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease-out forwards;
    transform: translateY(20px);
}.tySection a {
    display: block;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.26, 0.97);
    text-decoration: none;
    position: relative;
}.tySection a:hover {
    transform: translateY(-5px);
}.tySection a::before {
    transition: all 0.4s ease;
    content: "";
    background: linear-gradient(135deg, rgb(178,209,162) 0%, rgb(138,181,116) 100%);
    left: -20px;
    height: 40px;
    opacity: 0.1;
    top: -15px;
    width: 40px;
    transform: rotate(-15deg);
    position: absolute;
    border-radius: 10px;
}.tySection a:hover::before {
    transform: rotate(0deg) scale(1.2);
    opacity: 0.2;
}.tySection p {
    color: #000000;
    z-index: 2;
    margin: 0;
    font-size: 16px;
    position: relative;
    font-weight: 400;
    line-height: 1.8;
}

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

@keyframes slideRight {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes expandWidth {
    0% {
        width: 0;
    }
    100% {
        width: 80px;
    }
}

@keyframes floatBg {
    0% {
        transform: rotate(-15deg) translateZ(0);
    }
    100% {
        transform: rotate(-10deg) translateY(-10px) translateZ(0);
    }
}

@media (max-width: 991px) {.tySection {
    padding: 4rem 0;
}.tySection .pro_training {
    padding: 3rem;
}.tySection h5 {
    font-size: calc(18px * 0.9);
}
}

@media (max-width: 767px) {.tySection {
    padding: 3rem 0;
}.tySection .pro_training {
    padding: 2.5rem 2rem;
}.tySection h5 {
    font-size: calc(18px * 0.85);
}.tySection p {
    font-size: calc(16px * 0.95);
    line-height: 1.7;
}.tySection::before {
    width: 80%;
}.tySection::after {
    width: 60%;
}
}

@media (max-width: 575px) {.tySection {
    padding: 2.5rem 0;
}.tySection .pro_training {
    padding: 2rem 1.5rem;
}.tySection h5 {
    font-size: calc(18px * 0.8);
}.tySection p {
    font-size: calc(16px * 0.9);
    line-height: 1.6;
}.tySection .pro_training::before {
    display: none;
}.tySection .pro_training > div:first-child::after {
    width: 60px;
}
    
    @keyframes expandWidth {
        0% {
            width: 0;
        }
        100% {
            width: 60px;
        }
    }
}

@media (hover: hover) {.tySection a {
    position: relative;
    overflow: hidden;
}.tySection a::after {
    bottom: 0;
    left: 0;
    transform-origin: right;
    position: absolute;
    content: "";
    background: rgb(178,209,162);
    transform: scaleX(0);
    height: 1px;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}.tySection a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}}.find_us {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    background: rgb(216,235,206);
}.find_us::before {
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0.6;
    top: 0;
    content: "";
    position: absolute;
}.find_us .container {
    z-index: 1;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    max-width: 1200px;
}.find_us .send_query {
    border-radius: 10px;
    padding: 50px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}.find_us .send_query h3 {
    font-size: 33px;
    display: inline-block;
    font-weight: 700;
    color: #000000;
    position: relative;
    margin-bottom: 20px;
}.find_us .send_query h3::after {
    border-radius: 10px;
    left: 0;
    bottom: -10px;
    height: 3px;
    position: absolute;
    width: 80px;
    background: rgb(178,209,162);
    content: "";
}.find_us .learn_help {
    margin-bottom: 40px;
    font-size: 14px;
    max-width: 80%;
    color: #000000;
    line-height: 1.7;
}.find_us .contact_links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}.find_us .contact_links span {
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
}.find_us .contact_links span:hover {
    border-color: rgb(178,209,162);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}.find_us .contact_links span p {
    color: #000000;
    font-size: calc(14px * 1.05);
    margin-bottom: 5px;
    font-weight: 600;
    margin: 0;
}.find_us .contact_links span {
    color: #000000;
}.find_us .contact_links span svg {
    flex-shrink: 0;
    fill: rgb(178,209,162);
    height: 24px;
    margin: 10px 10px 10px 0;
    transition: all 0.3s ease;
    width: 24px;
}.find_us .contact_links span:hover svg {
    fill: rgb(138,181,116);
    transform: translateY(-2px);
}.find_us .contact_links span svg path {
    stroke: #ffffff;
    stroke-width: 1;
    transition: all 0.3s ease;
}.find_us .contact_links span:hover svg path {
    stroke-width: 1.5;
}.find_us .contact_links span span {
    border: none;
    display: flex;
    padding: 5px 0 0 0;
    margin: 0;
    box-shadow: none;
    align-items: flex-start;
    color: #000000;
    background: transparent;
    font-size: 14px;
    text-align: left;
}.find_us .contact_links span span:hover {
    box-shadow: none;
    border-color: transparent;
}.find_us .contact_links span a {
    color: rgb(178,209,162);
    font-weight: 600;
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}.find_us .contact_links span a:hover {
    color: rgb(138,181,116);
}.find_us .contact_links span a svg {
    margin-right: 8px;
}.find_us .contact_help {
    margin-top: 20px;
    padding: 30px;
    grid-column: 1 / -1;
    background: rgb(216,235,206);
    border-radius: 10px;
}.find_us .contact_help h4 {
    align-items: center;
    margin-bottom: 20px;
    display: flex;
    color: #000000;
    font-weight: 700;
    font-size: 22px;
}.find_us .contact_help h4 svg {
    margin-right: 10px;
    width: 22px;
    fill: rgb(178,209,162);
    height: 22px;
}.find_us .contact_help span {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    font-size: 14px;
    display: block;
    color: #000000;
}.find_us .contact_help span:last-child {
    border-bottom: none;
}

@media (max-width: 992px) {.find_us {
    padding: 60px 0;
}.find_us .send_query {
    padding: 40px 30px;
}.find_us .learn_help {
    max-width: 100%;
}.find_us .contact_links {
    grid-template-columns: repeat(2, 1fr);
}.find_us .contact_links span svg {
    width: 20px;
    height: 20px;
}
}

@media (max-width: 768px) {.find_us {
    padding: 40px 0;
}.find_us .send_query {
    padding: 30px 20px;
}.find_us .send_query h3 {
    font-size: calc(33px * 0.85);
}.find_us .contact_links {
    gap: 20px;
    grid-template-columns: 1fr;
}.find_us .contact_links span {
    padding: 20px;
}.find_us .contact_links span svg {
    width: 18px;
    height: 18px;
}.find_us .contact_help {
    padding: 20px;
}.find_us .contact_help h4 svg {
    width: 18px;
    height: 18px;
}}.user_comments {
    background: rgb(216,235,206);
    perspective: 1200px;
    padding: 7rem 2rem;
    overflow: hidden;
    position: relative;
}.user_comments::before {
    z-index: 0;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0;
    left: 0;
    position: absolute;
    background-size: 80px 140px;
    opacity: 0.1;
    top: 0;
    background: 
        linear-gradient(30deg, rgb(178,209,162,0.5) 12%, transparent 12.5%, transparent 87%, rgb(178,209,162,0.5) 87.5%, rgb(178,209,162,0.5)),
        linear-gradient(150deg, rgb(178,209,162,0.5) 12%, transparent 12.5%, transparent 87%, rgb(178,209,162,0.5) 87.5%, rgb(178,209,162,0.5)),
        linear-gradient(30deg, rgb(178,209,162,0.5) 12%, transparent 12.5%, transparent 87%, rgb(178,209,162,0.5) 87.5%, rgb(178,209,162,0.5)),
        linear-gradient(150deg, rgb(178,209,162,0.5) 12%, transparent 12.5%, transparent 87%, rgb(178,209,162,0.5) 87.5%, rgb(178,209,162,0.5)),
        linear-gradient(60deg, rgb(138,181,116,0.5) 25%, transparent 25.5%, transparent 75%, rgb(138,181,116,0.5) 75%, rgb(138,181,116,0.5));
    width: 100%;
    height: 100%;
    content: "";
}.user_comments .pro_training {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 1;
}.user_comments h4 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 5rem;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    transform: perspective(800px) rotateX(10deg);
    color: #000000;
}.user_comments h4::before {
    background: rgb(178,209,162);
    transform: translateX(-50%);
    height: 3px;
    bottom: -15px;
    content: "";
    width: 60px;
    left: 50%;
    position: absolute;
}.user_comments h4::after {
    content: "";
    width: 100px;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(138,181,116);
    height: 1px;
    position: absolute;
}.user_comments .user_voices {
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
    transform: perspective(1000px) rotateX(20deg);
    display: grid;
    transform-style: preserve-3d;
}.user_comments .learner_feedback {
    transition: all 0.5s ease;
    background: #ffffff;
    padding: 2.5rem;
    transform-style: preserve-3d;
    border-radius: 12px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.05),
        20px 20px 0 -5px rgb(216,235,206),
        20px 20px 0 0px rgb(178,209,162,0.5);
    position: relative;
    transform: translateZ(0) translateY(0);
}.user_comments .learner_feedback:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        20px 20px 0 -5px rgb(216,235,206),
        20px 20px 0 0px rgb(138,181,116);
    transform: translateZ(30px) translateY(-10px);
}.user_comments .learner_feedback::before {
    opacity: 0;
    width: 100%;
    content: "";
    background: linear-gradient(45deg, transparent, rgb(178,209,162,0.5) 80%);
    z-index: -1;
    position: absolute;
    transition: all 0.5s ease;
    left: 0;
    top: 0;
    border-radius: 12px;
    height: 100%;
}.user_comments .learner_feedback:hover::before {
    opacity: 0.1;
}.user_comments .learner_feedback::after {
    bottom: 100%;
    position: absolute;
    content: "";
    transform: scaleY(0);
    width: 2px;
    height: 40px;
    transition: transform 0.5s ease;
    transform-origin: bottom;
    background: rgb(178,209,162);
    left: 20px;
}.user_comments .learner_feedback:hover::after {
    transform: scaleY(1);
}.user_comments .learner_feedback .img_round {
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateZ(30px);
    transition: all 0.4s ease;
    border: 3px solid #ffffff;
    border-radius: 12px;
    margin: 0 auto 1.5rem;
    height: 90px;
    width: 90px;
}.user_comments .learner_feedback:hover .img_round {
    border-radius: 50%;
    transform: translateZ(50px) rotate(5deg);
}.user_comments .learner_feedback .img_round::before {
    position: absolute;
    opacity: 0;
    content: "";
    transition: all 0.4s ease;
    background: linear-gradient(45deg, rgb(178,209,162,0.5), transparent 60%);
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 2;
}.user_comments .learner_feedback:hover .img_round::before {
    opacity: 0.4;
}.user_comments .learner_feedback span {
    transition: all 0.4s ease;
    text-align: center;
    font-size: 18px;
    color: #000000;
    margin-bottom: 1.2rem;
    display: block;
    transform: translateZ(20px);
    font-weight: 600;
}.user_comments .learner_feedback:hover span {
    transform: translateZ(35px);
    color: rgb(178,209,162);
}.user_comments .learner_feedback p {
    transition: all 0.4s ease;
    font-size: 18px;
    color: #000000;
    text-align: center;
    transform: translateZ(10px);
    line-height: 1.7;
}.user_comments .learner_feedback:hover p {
    transform: translateZ(25px);
}.user_comments .learner_feedback:nth-child(3n+1) {
    transform: translateZ(10px) translateY(0);
}.user_comments .learner_feedback:nth-child(3n+2) {
    transform: translateZ(0) translateY(0);
}.user_comments .learner_feedback:nth-child(3n+3) {
    transform: translateZ(5px) translateY(0);
}.user_comments .learner_feedback:nth-child(3n+1):hover {
    transform: translateZ(40px) translateY(-10px);
}.user_comments .learner_feedback:nth-child(3n+2):hover {
    transform: translateZ(30px) translateY(-10px);
}.user_comments .learner_feedback:nth-child(3n+3):hover {
    transform: translateZ(35px) translateY(-10px);
}

@media (max-width: 992px) {.user_comments {
    padding: 5rem 1.5rem;
}.user_comments .user_voices {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    transform: perspective(1000px) rotateX(15deg);
}.user_comments h4 {
    font-size: calc(37px * 0.9);
    margin-bottom: 4rem;
}.user_comments .learner_feedback:nth-child(2n+1) {
    transform: translateZ(10px) translateY(0);
}.user_comments .learner_feedback:nth-child(2n+2) {
    transform: translateZ(0) translateY(0);
}.user_comments .learner_feedback:nth-child(2n+1):hover {
    transform: translateZ(40px) translateY(-10px);
}.user_comments .learner_feedback:nth-child(2n+2):hover {
    transform: translateZ(30px) translateY(-10px);
}
}

@media (max-width: 768px) {.user_comments {
    padding: 4rem 1rem;
}.user_comments .user_voices {
    transform: perspective(1000px) rotateX(10deg);
    gap: 2rem;
    grid-template-columns: 1fr;
}.user_comments h4 {
    margin-bottom: 3rem;
    font-size: calc(37px * 0.8);
    transform: perspective(800px) rotateX(5deg);
}.user_comments .learner_feedback:nth-child(n) {
    transform: translateZ(0) translateY(0);
}.user_comments .learner_feedback:nth-child(n):hover {
    transform: translateZ(20px) translateY(-5px);
}}.our_team {
    position: relative;
    background-color: rgb(216,235,206);
    overflow: hidden;
    padding: 120px 0;
}.our_team::before {
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgb(178,209,162,0.5) 0%, transparent 50%, rgb(138,181,116,0.5) 100%);
    content: "";
    top: 0;
    z-index: 1;
    position: absolute;
}.our_team::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    z-index: 2;
    background: radial-gradient(circle at 30% 30%, rgb(178,209,162,0.5) 0%, transparent 40%);
    top: 0;
}.our_team .container {
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}.our_team h2 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-weight: 700;
    padding-bottom: 20px;
    font-size: 36px;
    color: #000000;
}.our_team h2::before {
    background: linear-gradient(90deg, rgb(178,209,162), rgb(138,181,116));
    transform: translateX(-50%);
    height: 3px;
    left: 50%;
    border-radius: 10px;
    bottom: 0;
    content: "";
    position: absolute;
    width: 80px;
}.our_team h2::after {
    width: 40px;
    background: linear-gradient(90deg, rgb(138,181,116), rgb(178,209,162));
    animation: pulse 3s infinite;
    content: "";
    bottom: -5px;
    left: 50%;
    height: 3px;
    position: absolute;
    border-radius: 10px;
    transform: translateX(-50%);
}.our_team .class_sessions {
    position: relative;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
}.our_team .class_sessions::before {
    transform: translateX(-50%);
    height: 100%;
    left: 50%;
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgb(178,209,162,0.5), rgb(138,181,116,0.5), transparent);
    top: 0;
    content: "";
    width: 2px;
}.our_team .success_metric {
    padding: 40px;
    border-radius: 18px;
    z-index: 2;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}.our_team .success_metric:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}.our_team .success_metric::before {
    left: 0;
    height: 5px;
    top: 0;
    position: absolute;
    width: 100%;
    background: linear-gradient(90deg, rgb(178,209,162), rgb(138,181,116));
    content: "";
}.our_team .success_metric::after {
    opacity: 0;
    background: radial-gradient(circle at bottom right, rgb(178,209,162,0.5) 0%, transparent 70%);
    right: 0;
    transition: opacity 0.3s ease;
    width: 30%;
    height: 30%;
    content: "";
    z-index: -1;
    position: absolute;
    bottom: 0;
}.our_team .success_metric:hover::after {
    opacity: 1;
}.our_team .success_metric:first-child::before {
    background: linear-gradient(90deg, rgb(178,209,162), rgb(138,181,116));
}.our_team .success_metric:last-child::before {
    background: linear-gradient(90deg, rgb(138,181,116), rgb(178,209,162));
}.our_team .success_metric h3 {
    color: #000000;
    position: relative;
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    font-weight: 600;
}.our_team .success_metric h3::before {
    background-color: rgb(178,209,162);
    position: absolute;
    width: 8px;
    left: 0;
    height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
    content: "";
    top: 50%;
}.our_team .success_metric:first-child h3::before {
    background-color: rgb(178,209,162);
}.our_team .success_metric:last-child h3::before {
    background-color: rgb(138,181,116);
}.our_team .success_metric p {
    color: #000000;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 0;
    position: relative;
}.our_team .success_metric p::first-letter {
    font-weight: 600;
    color: rgb(178,209,162);
    font-size: 1.2em;
}.our_team .success_metric:last-child p::first-letter {
    color: rgb(138,181,116);
}@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

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

.our_team .container::before,
.our_team .container::after {
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    height: 200px;
    position: absolute;
    background: rgb(178,209,162,0.5);
    width: 200px;
    content: "";
}.our_team .container::before {
    animation: float 15s ease-in-out infinite;
    top: -100px;
    left: -100px;
}.our_team .container::after {
    bottom: -100px;
    right: -100px;
    animation: float 20s ease-in-out infinite reverse;
    background: rgb(138,181,116,0.5);
}.our_team::before {
    content: "";
    top: 0;
    background-size: 30px 30px;
    width: 100%;
    position: absolute;
    opacity: 0.3;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgb(178,209,162,0.5) 45%, rgb(178,209,162,0.5) 55%, transparent 55%);
    left: 0;
    z-index: 1;
}.our_team .success_metric:hover h3 {
    color: rgb(178,209,162);
    transition: color 0.3s ease;
}.our_team .success_metric:last-child:hover h3 {
    color: rgb(138,181,116);
}.our_team .success_metric:hover::before {
    background-size: 200% 200%;
    animation: gradient-shift 3s linear infinite;
}

@media (max-width: 991px) {.our_team {
    padding: 80px 0;
}.our_team h2 {
    margin-bottom: 40px;
}.our_team .class_sessions {
    gap: 30px;
    grid-template-columns: 1fr;
}.our_team .class_sessions::before {
    display: none;
}.our_team .success_metric {
    padding: 30px;
}.our_team .container::before,
    .our_team .container::after {
    width: 150px;
    height: 150px;
}
}

@media (max-width: 767px) {.our_team {
    padding: 60px 0;
}.our_team h2 {
    font-size: calc(36px * 0.9);
    margin-bottom: 30px;
}.our_team h2::before {
    width: 60px;
}.our_team h2::after {
    width: 30px;
}.our_team .success_metric {
    padding: 25px;
}.our_team .success_metric h3 {
    font-size: calc(20px * 0.9);
    margin-bottom: 15px;
}.our_team .success_metric p {
    font-size: calc(17px * 0.95);
}.our_team .container::before,
    .our_team .container::after {
    width: 100px;
    filter: blur(40px);
    height: 100px;
}
}

@media (max-width: 480px) {.our_team {
    padding: 40px 0;
}.our_team h2 {
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: calc(36px * 0.8);
}.our_team h2::before {
    height: 2px;
    width: 50px;
}.our_team h2::after {
    height: 2px;
    bottom: -3px;
    width: 25px;
}.our_team .success_metric {
    padding: 20px;
}.our_team .success_metric h3 {
    font-size: calc(20px * 0.85);
    margin-bottom: 12px;
    padding-left: 15px;
}.our_team .success_metric h3::before {
    width: 6px;
    height: 6px;
}.our_team .success_metric p {
    font-size: calc(17px * 0.9);
}.our_team .success_metric::before {
    height: 3px;
}.our_team .container::before,
    .our_team .container::after {
    height: 80px;
    width: 80px;
    filter: blur(30px);
}}.receive_updates {
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(178,209,162) 100%);
    overflow: hidden;
    padding: 5rem 2rem;
    position: relative;
}.receive_updates::before {
    background: repeating-linear-gradient(45deg, rgb(178,209,162,0.5) 0px, transparent 2px, transparent 10px, rgb(178,209,162,0.5) 12px);
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
    z-index: -1;
    content: "";
    top: 0;
    opacity: 0.1;
    transform: translateZ(0);
}.receive_updates::after {
    content: "";
    height: 200%;
    opacity: 0.1;
    position: absolute;
    width: 70%;
    transform: rotate(-20deg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    background: rgb(138,181,116);
    right: -20%;
    top: -50%;
    z-index: -1;
}.receive_updates .container {
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}.receive_updates .pro_training {
    display: grid;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2.5rem;
    grid-template-columns: 1fr;
    transform: perspective(1000px) rotateY(2deg);
    position: relative;
}.receive_updates .pro_training:hover {
    transform: perspective(1000px) rotateY(0deg);
}.receive_updates h3 {
    position: relative;
    font-size: calc(24px * 1.2);
    transform: translateX(-10px);
    line-height: 1.4;
    margin: 0;
    color: #ffffff;
    animation: slideInText 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    font-weight: 700;
    opacity: 0;
}.receive_updates h3::before {
    transform: translateY(-50%);
    top: 50%;
    left: -20px;
    height: 0;
    background: rgb(138,181,116);
    content: "";
    animation: growLine 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
    position: absolute;
    width: 5px;
}.receive_updates .input_holder {
    opacity: 0;
    gap: 1rem;
    animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
    display: flex;
    flex-direction: column;
    transform: translateY(10px);
}.receive_updates .input_holder div {
    overflow: hidden;
    position: relative;
    flex: 1;
}.receive_updates .input_holder div::before {
    height: 2px;
    background: rgb(138,181,116);
    bottom: 0;
    width: 0;
    z-index: 1;
    left: 0;
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    position: absolute;
    content: "";
}.receive_updates .input_holder div:hover::before,
.receive_updates .input_holder div:focus-within::before {
    width: 100%;
}.receive_updates .mail_sub {
    padding: 1.2rem 1.5rem;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: none;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    font-size: 18px;
    width: 100%;
    color: #000000;
}.receive_updates .mail_sub:focus {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    outline: none;
    transform: translateY(-2px);
}.receive_updates .request_widget {
    z-index: 1;
    font-weight: 600;
    background: linear-gradient(to right, rgb(138,181,116) 0%, rgb(178,209,162) 100%);
    padding: 1.1rem 2rem;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}.receive_updates .request_widget::before {
    width: 100%;
    position: absolute;
    transform: translateX(-100%);
    top: 0;
    left: 0;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    background: rgb(138,181,116);
    z-index: -1;
    content: "";
    height: 100%;
}.receive_updates .request_widget:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}.receive_updates .request_widget:hover::before {
    transform: translateX(0);
}.receive_updates .request_widget:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

@keyframes growLine {
    to {
        height: 80%;
    }
}

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

@media (min-width: 768px) {.receive_updates {
    padding: 6rem 3rem;
}.receive_updates .pro_training {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}.receive_updates h3 {
    font-size: 24px;
}.receive_updates .input_holder {
    flex-direction: row;
}.receive_updates .mail_sub {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}.receive_updates .request_widget {
    border-bottom-left-radius: 0;
    flex-shrink: 0;
    border-top-left-radius: 0;
}
}

@media (min-width: 992px) {.receive_updates {
    padding: 7rem 4rem;
}.receive_updates .pro_training {
    gap: 4rem;
}.receive_updates h3 {
    font-size: calc(24px * 1.1);
}.receive_updates::before {
    background-size: 20px 20px;
}
}

@media (min-width: 1200px) {.receive_updates {
    padding: 8rem 2rem;
}.receive_updates h3 {
    font-size: calc(24px * 1.2);
}.receive_updates .pro_training {
    transform: perspective(1200px) rotateY(3deg);
}.receive_updates .mail_sub {
    padding: 1.3rem 1.8rem;
}.receive_updates .request_widget {
    padding: 1.3rem 2.5rem;
}
}

@media (max-width: 767px) {.receive_updates .pro_training {
    transform: none;
}.receive_updates h3 {
    margin-bottom: 1rem;
    text-align: center;
}.receive_updates h3::before {
    left: -10px;
}.receive_updates .request_widget {
    margin-top: 0.5rem;
    width: 100%;
}
}

@media (hover: none) {.receive_updates .pro_training:hover {
    transform: none;
}.receive_updates .request_widget:hover {
    transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}.receive_updates .mail_sub:focus {
    transform: none;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
