* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}html,body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    color: #000000;
    min-height: 100%;
    height: 100%;
}.style_panel-container {
    min-height: 100%;
    display: flex;
    height: 100%;
    flex-direction: column;
}a {
    text-decoration: none;
    color: inherit;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1223px;
}header,footer {
    width: 100%;
}.style_head_pagebar {
    flex: 1 0 auto;
}svg {
    width: 30px;
    height: 30px;
}.style_lesson_cta {
    flex: 0 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.style_primary_page {
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgb(212,227,219) 0%, rgba(245, 245, 250, 0.9) 100%);
    position: relative;
}.style_primary_page::before {
    background: linear-gradient(45deg, rgb(169,199,184,0.5) 0%, rgb(124,169,148,0.5) 100%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 60% 0);
    content: "";
    height: 100%;
    right: 0;
    position: absolute;
    width: 35%;
    top: 0;
    z-index: 1;
}.style_primary_page::after {
    background: linear-gradient(90deg, rgb(169,199,184) 0%, rgb(124,169,148) 100%);
    width: 100%;
    left: 0;
    z-index: 2;
    position: absolute;
    bottom: 0;
    content: "";
    height: 10px;
}.style_primary_page > div {
    display: flex;
    position: relative;
    z-index: 3;
    flex-direction: column;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}.style_primary_page > div > div:first-child {
    margin-bottom: 60px;
    max-width: 800px;
}.style_primary_page .style_course_entry {
    transform: translateX(0);
    font-size: 38px;
    color: #000000;
    position: relative;
    line-height: 1.2;
    font-weight: 700;
    transition: transform 0.5s ease-out;
    margin-bottom: 25px;
}.style_primary_page .style_course_entry::after {
    bottom: -12px;
    content: "";
    position: absolute;
    animation: scaleIn 1.2s forwards 0.3s;
    width: 100px;
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: 0;
    background: rgb(169,199,184);
    transform: scaleX(0);
    height: 4px;
}.style_primary_page:hover .style_course_entry {
    transform: translateX(10px);
}.style_primary_page p {
    position: relative;
    animation: fadeIn 1s forwards 0.5s;
    line-height: 1.6;
    opacity: 0;
    font-size: calc(13px + 0.15rem);
    color: #000000;
    margin-bottom: 30px;
    max-width: 90%;
}.style_primary_page .style_edu_start {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.4s ease;
    width: 100%;
}.style_primary_page .style_edu_start:hover {
    transform: translateY(-10px);
}.style_primary_page .style_class_sessions {
    align-items: flex-end;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    min-height: 350px;
    justify-content: center;
    padding: 40px;
    position: relative;
}.style_primary_page .style_class_sessions::before {
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    content: "";
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    height: 100%;
    width: 100%;
}.style_primary_page .style_class_sessions span {
    animation: slideUp 0.8s forwards 0.7s;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 20px 25px;
    position: relative;
    border-left: 5px solid rgb(169,199,184);
    transform: translateY(20px);
    width: calc(100% - 40px);
    max-width: 700px;
    z-index: 2;
    opacity: 0;
}.style_primary_page .style_class_sessions h3 {
    color: #000000;
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    font-size: calc(22px - 0.1rem);
}

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

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

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


@media screen and (max-width: 992px) {.style_primary_page {
    padding: 100px 0 60px;
}.style_primary_page::before {
    width: 25%;
}.style_primary_page .style_course_entry {
    font-size: calc(38px - 0.5rem);
}.style_primary_page .style_class_sessions {
    min-height: 300px;
}
}

@media screen and (max-width: 768px) {.style_primary_page {
    padding: 80px 0 50px;
}.style_primary_page::before {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 40% 0);
    width: 20%;
}.style_primary_page > div > div:first-child {
    margin-bottom: 40px;
}.style_primary_page .style_course_entry {
    font-size: calc(38px - 0.8rem);
}.style_primary_page p {
    font-size: 13px;
    max-width: 100%;
}.style_primary_page .style_class_sessions {
    min-height: 250px;
    padding: 30px;
}.style_primary_page .style_class_sessions span {
    padding: 15px 20px;
}.style_primary_page .style_class_sessions h3 {
    font-size: calc(22px - 0.2rem);
}
}

@media screen and (max-width: 576px) {.style_primary_page {
    padding: 60px 0 40px;
}.style_primary_page::before {
    display: none;
}.style_primary_page > div {
    padding: 0 15px;
}.style_primary_page .style_course_entry {
    font-size: calc(38px - 1rem);
}.style_primary_page .style_course_entry::after {
    width: 70px;
    height: 3px;
}.style_primary_page .style_class_sessions {
    min-height: 220px;
    padding: 20px;
}.style_primary_page .style_class_sessions span {
    width: calc(100% - 30px);
    padding: 12px 15px;
}.style_primary_page .style_class_sessions h3 {
    font-size: calc(22px - 0.3rem);
}}.style_plan_comparison {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(212,227,219) 0%, #ffffff 100%);
    padding: 6rem 0;
    position: relative;
}.style_plan_comparison::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(169,199,184,0.5) 0%, transparent 40%);
    left: 0;
    position: absolute;
    z-index: 1;
    top: 0;
    content: "";
}.style_plan_comparison .container {
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    z-index: 2;
}.style_plan_comparison .style_pricing_card {
    flex-direction: column;
    display: flex;
}.style_plan_comparison .style_cost_levels {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    order: 1;
    margin-bottom: 3rem;
    max-width: 800px;
}.style_plan_comparison .style_cost_levels h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    font-size: 37px;
    color: #000000;
}.style_plan_comparison .style_cost_levels h2::after {
    width: 80px;
    left: 50%;
    height: 3px;
    content: "";
    bottom: -10px;
    transform: translateX(-50%);
    position: absolute;
    background: rgb(169,199,184);
}.style_plan_comparison .style_bundle_price {
    font-size: 15px;
    word-break: break-word;
    line-height: 1.6;
    max-width: 600px;
    overflow-wrap: break-word;
    margin: 0 auto;
    color: #000000;
}.style_plan_comparison .style_program_fees {
    order: 2;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin-top: 2rem;
    gap: 2rem;
    display: grid;
}.style_plan_comparison .style_skill_offers {
    position: relative;
    height: 100%;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
}.style_plan_comparison .style_skill_offers:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}.style_plan_comparison .style_price_deals {
    height: 100%;
    display: flex;
    flex-direction: column;
}.style_plan_comparison .style_pricing_options {
    display: flex;
    flex-grow: 1;
    position: relative;
    flex-direction: column;
    z-index: 1;
    overflow-wrap: break-word;
    word-break: break-word;
    padding: 2rem;
}.style_plan_comparison .style_pricing_options::before {
    height: 100%;
    top: 0;
    position: absolute;
    opacity: 0.7;
    left: 0;
    content: "";
    z-index: -1;
    background: linear-gradient(135deg, transparent 0%, #ffffff 100%);
    width: 100%;
}.style_plan_comparison .style_pricing_options h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    font-size: calc(23px * 1.2);
    position: relative;
    color: #000000;
}.style_plan_comparison .style_pricing_options h3::after {
    width: 40px;
    background: rgb(124,169,148);
    position: absolute;
    height: 2px;
    bottom: 0;
    transition: width 0.3s ease;
    content: "";
    left: 0;
}.style_plan_comparison .style_skill_offers:hover .style_pricing_options h3::after {
    width: 80px;
}.style_plan_comparison .style_pricing_pack {
    position: relative;
    display: inline-block;
    color: rgb(169,199,184);
    font-size: calc(23px * 1.5);
    font-weight: 700;
    margin-bottom: 1.5rem;
}.style_plan_comparison .style_pricing_pack::before {
    content: "";
    height: 2px;
    transition: width 0.3s ease;
    background: rgb(169,199,184);
    bottom: -5px;
    left: 0;
    width: 0;
    position: absolute;
}.style_plan_comparison .style_skill_offers:hover .style_pricing_pack::before {
    width: 100%;
}.style_plan_comparison .style_pricing_options p {
    color: #000000;
    font-size: 15px;
    margin-top: auto;
    word-break: break-word;
    line-height: 1.6;
    overflow-wrap: break-word;
}.style_plan_comparison .style_img_shadow {
    transition: transform 0.5s ease;
    position: relative;
    height: 200px;
    overflow: hidden;
}.style_plan_comparison .style_img_shadow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    width: 100%;
    height: 100%;
}.style_plan_comparison .style_skill_offers:hover .style_img_shadow {
    transform: scale(1.05);
}.style_plan_comparison .style_skill_offers:nth-child(odd) .style_price_deals {
    flex-direction: column-reverse;
}.style_plan_comparison .style_skill_offers:nth-child(3n+1) {
    border-top: 3px solid rgb(169,199,184);
}.style_plan_comparison .style_skill_offers:nth-child(3n+2) {
    border-top: 3px solid rgb(124,169,148);
}.style_plan_comparison .style_skill_offers:nth-child(3n+3) {
    border-top: 3px solid #000000;
}

@media (min-width: 768px) {.style_plan_comparison .style_pricing_card {
    align-items: center;
    flex-direction: row;
    gap: 4rem;
}.style_plan_comparison .style_cost_levels {
    order: 2;
    margin-bottom: 0;
    text-align: left;
    flex: 0 0 30%;
}.style_plan_comparison .style_cost_levels h2 {
    text-align: left;
}.style_plan_comparison .style_cost_levels h2::after {
    left: 0;
    transform: none;
}.style_plan_comparison .style_bundle_price {
    margin: 0;
    text-align: left;
}.style_plan_comparison .style_program_fees {
    grid-template-columns: repeat(2, 1fr);
    flex: 0 0 65%;
    order: 1;
}
}

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

@media (max-width: 767px) {.style_plan_comparison {
    padding: 4rem 0;
}.style_plan_comparison .style_pricing_options {
    padding: 1.5rem;
}.style_plan_comparison .style_pricing_options h3 {
    font-size: 23px;
}.style_plan_comparison .style_pricing_pack {
    font-size: 23px;
}.style_plan_comparison .style_pricing_options p {
    font-size: calc(15px * 0.9);
    line-height: 1.5;
    max-height: 150px;
    overflow-y: auto;
}.style_plan_comparison .style_img_shadow {
    height: 150px;
}
}

@media (max-width: 480px) {.style_plan_comparison .style_program_fees {
    grid-template-columns: 1fr;
}.style_plan_comparison .style_cost_levels h2 {
    font-size: calc(37px * 0.8);
}.style_plan_comparison .style_bundle_price {
    font-size: calc(15px * 0.9);
}.style_plan_comparison .style_pricing_options p {
    max-height: 120px;
}}.style_privacy_sanctum {
    color: #000000;
    font-family: Arial, sans-serif;
    position: relative;
    padding: 4rem 1.5rem;
    overflow: hidden;
    background: linear-gradient(165deg, rgb(212,227,219) 0%, #ffffff 100%);
}.style_privacy_sanctum::before {
    left: 0;
    content: "";
    position: absolute;
    width: 100%;
    opacity: 0.05;
    height: 100%;
    top: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(169,199,184,0.5) 0,
        rgb(169,199,184,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    z-index: 0;
}.style_privacy_sanctum .container {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 0 auto;
    max-width: 1140px;
    padding: 3.5rem 2.5rem;
    background: #ffffff;
    transform: translateZ(0);
    z-index: 1;
}.style_privacy_sanctum h1 {
    transform: translateY(0);
    color: rgb(169,199,184);
    font-size: 46px;
    margin: 0 0 2rem;
    padding-bottom: 1rem;
    font-weight: 700;
    position: relative;
    line-height: 1.2;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.style_privacy_sanctum h1::after {
    position: absolute;
    content: "";
    height: 3px;
    left: 0;
    bottom: 0;
    transition: width 0.4s ease-out;
    width: 80px;
    background: linear-gradient(90deg, rgb(169,199,184) 0%, rgb(124,169,148) 100%);
}.style_privacy_sanctum:hover h1::after {
    width: 120px;
}.style_privacy_sanctum h2 {
    font-weight: 600;
    padding-left: 1rem;
    color: rgb(124,169,148);
    font-size: 33px;
    margin: 2.5rem 0 1.2rem;
    position: relative;
}.style_privacy_sanctum h2::before {
    height: 100%;
    background: rgb(169,199,184);
    border-radius: 2px;
    width: 4px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
    transform: scaleY(0.8);
}.style_privacy_sanctum h2:hover::before {
    transform: scaleY(1);
}.style_privacy_sanctum h3 {
    font-weight: 600;
    color: #000000;
    font-size: calc(33px * 0.85);
    margin: 2.2rem 0 1rem;
    position: relative;
    padding-left: 1.5rem;
}.style_privacy_sanctum h3::before {
    left: 0;
    background: rgb(124,169,148);
    height: 2px;
    width: 12px;
    position: absolute;
    content: "";
    transform: translateY(-50%);
    top: 50%;
}.style_privacy_sanctum h4 {
    margin: 2rem 0 0.8rem;
    font-weight: 400;
    font-size: calc(33px * 0.7);
    color: #000000;
    padding-left: 1.5rem;
    position: relative;
}.style_privacy_sanctum h4::before {
    transform: translateY(-50%);
    left: 0;
    content: "→";
    position: absolute;
    color: rgb(169,199,184);
    top: 50%;
    font-size: 0.9em;
}.style_privacy_sanctum p {
    line-height: 1.7;
    font-size: 17px;
    margin-bottom: 1.5rem;
    max-width: 92%;
    opacity: 0.9;
    color: #000000;
    transition: opacity 0.3s ease;
}.style_privacy_sanctum p:hover {
    opacity: 1;
}.style_privacy_sanctum p strong {
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: #000000;
}.style_privacy_sanctum p strong::after {
    transition: transform 0.3s ease;
    width: 100%;
    transform-origin: left;
    left: 0;
    bottom: 0;
    position: absolute;
    content: "";
    z-index: -1;
    background-color: rgb(169,199,184,0.5);
    transform: scaleX(0.95);
    height: 30%;
}.style_privacy_sanctum p strong:hover::after {
    transform: scaleX(1);
}.style_privacy_sanctum ul {
    list-style: none;
    position: relative;
    margin: 1.5rem 0;
    padding: 0.5rem 0 1rem 1.5rem;
}.style_privacy_sanctum ul::before {
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgb(169,199,184) 0%, rgb(169,199,184,0.5) 100%);
    width: 3px;
    border-radius: 1.5px;
    position: absolute;
    content: "";
    left: 0;
}.style_privacy_sanctum li {
    font-size: 17px;
    margin-bottom: 1rem;
    position: relative;
    color: #000000;
    line-height: 1.7;
    padding-left: 1.5rem;
    transition: transform 0.3s ease;
}.style_privacy_sanctum li::before {
    width: 8px;
    position: absolute;
    border-radius: 50%;
    top: 0.75em;
    transition: background 0.3s ease;
    content: "";
    transform: translateY(-50%);
    height: 8px;
    left: 0;
    background: rgb(124,169,148);
}.style_privacy_sanctum li:hover {
    transform: translateX(3px);
}.style_privacy_sanctum li:hover::before {
    background: rgb(169,199,184);
}.style_privacy_sanctum span {
    opacity: 0.85;
    line-height: 1.65;
    background-color: rgba(rgb(124,169,148,0.5), 0.07);
    border-left: 3px solid rgb(124,169,148);
    transition: all 0.3s ease;
    color: #000000;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: calc(17px * 0.95);
    display: block;
}.style_privacy_sanctum span:hover {
    opacity: 1;
    background-color: rgba(rgb(124,169,148,0.5), 0.1);
}

@media screen and (max-width: 992px) {.style_privacy_sanctum {
    padding: 3rem 1rem;
}.style_privacy_sanctum .container {
    padding: 2.5rem 2rem;
}.style_privacy_sanctum h1 {
    font-size: calc(46px * 0.9);
}.style_privacy_sanctum h2 {
    font-size: calc(33px * 0.9);
}.style_privacy_sanctum p {
    max-width: 100%;
}
}

@media screen and (max-width: 768px) {.style_privacy_sanctum {
    padding: 2.5rem 0.75rem;
}.style_privacy_sanctum .container {
    padding: 2rem 1.5rem;
}.style_privacy_sanctum h1 {
    font-size: calc(46px * 0.8);
    margin-bottom: 1.5rem;
}.style_privacy_sanctum h2 {
    font-size: calc(33px * 0.8);
    margin: 2rem 0 1rem;
}.style_privacy_sanctum h3 {
    font-size: calc(33px * 0.7);
}.style_privacy_sanctum h4 {
    font-size: calc(33px * 0.6);
}.style_privacy_sanctum p, 
    .style_privacy_sanctum li {
    font-size: calc(17px * 0.95);
}.style_privacy_sanctum span {
    font-size: calc(17px * 0.9);
    padding: 0.75rem 1rem;
}
}

@media screen and (max-width: 576px) {.style_privacy_sanctum {
    padding: 2rem 0.5rem;
}.style_privacy_sanctum .container {
    padding: 1.5rem 1.25rem;
}.style_privacy_sanctum h1 {
    padding-bottom: 0.75rem;
    font-size: calc(46px * 0.7);
}.style_privacy_sanctum h1::after {
    width: 60px;
    height: 2px;
}.style_privacy_sanctum:hover h1::after {
    width: 90px;
}.style_privacy_sanctum h2 {
    padding-left: 0.75rem;
    font-size: calc(33px * 0.7);
}.style_privacy_sanctum h2::before {
    width: 3px;
}.style_privacy_sanctum h3, 
    .style_privacy_sanctum h4 {
    padding-left: 1.25rem;
}.style_privacy_sanctum ul {
    padding-left: 1rem;
}.style_privacy_sanctum li {
    padding-left: 1.25rem;
}.style_privacy_sanctum li::before {
    height: 6px;
    width: 6px;
}.style_privacy_sanctum span {
    padding: 0.75rem 0.75rem;
    border-left: 2px solid rgb(124,169,148);
}}.style_cookie_overlay_window {
    background: rgb(212,227,219);
    z-index: 100;
    width: 100%;
    position: fixed;
    justify-content: center;
    display: flex;
    bottom: 0;
    border-top: 3px solid rgb(169,199,184);
    padding: 20px 0;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
}.style_cookie_eductrl {
    display: flex;
    align-items: center;
    border: 2px solid rgb(169,199,184);
    background: rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    padding: 20px;
    border-radius: 14px;
}.style_cookies_terms {
    flex-shrink: 0;
    margin-right: 20px;
}.style_cookies_terms svg {
    height: 50px;
    fill: rgb(169,199,184);
    width: 50px;
}.style_edu_approve {
    color: #ffffff;
    flex-grow: 1;
    text-align: left;
}.style_edu_approve h5 {
    margin-bottom: 10px;
    color: rgb(169,199,184);
    text-transform: uppercase;
    font-size: 21px;
    letter-spacing: 1px;
    font-weight: 700;
}.style_edu_approve p {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}.style_edu_approve p a {
    text-decoration: underline;
    color: rgb(169,199,184);
}.style_cookie_window {
    background: rgb(169,199,184);
    font-size: 17px;
    flex-shrink: 0;
    color: #ffffff;
    cursor: pointer;
    border-radius: 10px;
    min-width: 120px;
    border: none;
    text-align: center;
    padding: 10px 20px;
    text-decoration: none;
}.cookie_button.style_privacy_ack {
    margin-right: 10px;
}#style_dataProtectionBox {
    display: none;
}#style_dataProtectionBox:checked ~ .style_cookie_overlay_window {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1200px) {.style_cookie_eductrl {
    text-align: center;
    flex-direction: column;
    align-items: center;
}.style_cookies_terms {
    margin-right: 0;
    margin-bottom: 20px;
}.style_cookie_window {
    max-width: 250px;
    width: 100%;
    margin: 10px 0;
}}
.style_instructor_profile {
    padding: 8rem 0;
    overflow: hidden;
    background: linear-gradient(150deg, rgb(212,227,219) 0%, #000000 100%);
    position: relative;
    min-height: 700px;
}.style_instructor_profile::before {
    left: 0;
    opacity: 0.1;
    top: 0;
    animation: gridFlow 20s linear infinite;
    background: 
        linear-gradient(90deg, transparent 85%, rgb(169,199,184,0.5) 85%, rgb(169,199,184,0.5) 88%, transparent 88%),
        linear-gradient(180deg, transparent 85%, rgb(124,169,148,0.5) 85%, rgb(124,169,148,0.5) 88%, transparent 88%);
    z-index: 1;
    background-size: 150px 150px;
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
}.style_instructor_profile .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}.style_instructor_profile .style_student_perspectives {
    grid-template-columns: 45% 1fr;
    display: grid;
    background: transparent;
    min-height: 580px;
    grid-template-rows: auto auto 1fr;
    gap: 20px 30px;
    grid-template-areas:
        "photo name"
        "photo job"
        "photo quote";
    position: relative;
}.style_instructor_profile .style_student_perspectives::before {
    animation: horizontalBreathing 8s ease-in-out infinite alternate;
    z-index: -1;
    opacity: 0.3;
    right: 0;
    position: absolute;
    filter: blur(40px);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 90%;
    background: linear-gradient(90deg, rgb(169,199,184,0.5) 0%, transparent 50%);
    content: "";
    border-radius: 30px;
}.style_instructor_profile .style_student_perspectives::after {
    height: 100%;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    left: 0;
    z-index: -2;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
    position: absolute;
    content: "";
}.style_instructor_profile .style_img_shadow {
    grid-area: photo;
    height: 100%;
    border-radius: 30px 0 0 30px;
    overflow: hidden;
    z-index: 2;
    position: relative;
    filter: contrast(1.1) brightness(1.05);
    transform: scale(1);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}.style_instructor_profile .style_student_perspectives:hover .style_img_shadow {
    filter: contrast(1.2) brightness(1.1);
    transform: scale(1.02);
}.style_instructor_profile .style_img_shadow::before {
    height: 100%;
    opacity: 0.7;
    position: absolute;
    left: 0;
    z-index: 3;
    content: "";
    background: rgb(169,199,184);
    animation: pulseOpacity 3s ease-in-out infinite;
    top: 0;
    width: 10px;
}.style_instructor_profile .name {
    transform: translateX(0);
    padding-bottom: 10px;
    z-index: 3;
    margin-top: 80px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-size: 28px;
    color: #ffffff;
    align-self: end;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    grid-area: name;
    font-weight: 700;
}.style_instructor_profile .style_student_perspectives:hover .name {
    transform: translateX(15px);
}.style_instructor_profile .name::after {
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: rgb(169,199,184);
    content: "";
    transition: width 0.5s ease;
}.style_instructor_profile .style_student_perspectives:hover .name::after {
    width: 60%;
}.style_instructor_profile .style_student_perspectives span:not(.name) {
    border-radius: 10px;
    z-index: 3;
    font-weight: 600;
    font-size: 19px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
    backdrop-filter: blur(5px);
    align-self: start;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(0);
    padding: 0.6rem 1.2rem;
    grid-area: job;
    display: inline-block;
    background: rgba(0, 0, 0, 0.2);
    color: rgb(124,169,148);
}.style_instructor_profile .style_student_perspectives:hover span:not(.name) {
    background: rgba(0, 0, 0, 0.3);
    transform: translateX(15px);
}.style_instructor_profile .style_work_items {
    border-left: 4px solid rgb(124,169,148);
    transform: translateY(0);
    margin-right: 0;
    position: relative;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    color: #ffffff;
    backdrop-filter: blur(10px);
    font-size: 17px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 30px;
    padding: 2rem;
    z-index: 2;
    line-height: 1.8;
    width: 95%;
    align-self: start;
    grid-area: quote;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.3);
}.style_instructor_profile .style_student_perspectives:hover .style_work_items {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.4);
}.style_instructor_profile .container::after {
    content: "";
    background: radial-gradient(circle, rgb(124,169,148,0.5) 0%, transparent 70%);
    position: absolute;
    bottom: -150px;
    right: -150px;
    filter: blur(70px);
    height: 300px;
    z-index: -1;
    animation: pulseGlow 10s ease-in-out infinite alternate;
    width: 300px;
    opacity: 0.3;
}

@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) {.style_instructor_profile .style_student_perspectives {
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
            "style_img_shadow"
            "name"
            "style_job_milestones"
            "style_work_items";
    grid-template-columns: 1fr;
    gap: 20px;
}.style_instructor_profile .style_img_shadow {
    height: 350px;
    border-radius: 30px 30px 0 0;
}.style_instructor_profile .style_img_shadow::before {
    width: 100%;
    height: 10px;
}.style_instructor_profile .name {
    text-align: center;
    margin-top: 0;
}.style_instructor_profile .name::after {
    transform: translateX(-50%);
    left: 50%;
}.style_instructor_profile .style_student_perspectives:hover .name {
    transform: translateY(-5px);
}.style_instructor_profile .style_student_perspectives span:not(.name) {
    margin: 0 auto;
}.style_instructor_profile .style_student_perspectives:hover span:not(.name) {
    transform: translateY(-5px);
}.style_instructor_profile .style_work_items {
    width: 90%;
    border-top: 4px solid rgb(124,169,148);
    margin: 0 auto;
    border-left: none;
}.style_instructor_profile .style_student_perspectives:hover .style_work_items {
    transform: translateY(-5px);
}
}

@media (max-width: 576px) {.style_instructor_profile {
    padding: 5rem 0;
}.style_instructor_profile .style_img_shadow {
    height: 250px;
}.style_instructor_profile .name {
    font-size: 19px;
}.style_instructor_profile .style_student_perspectives span:not(.name) {
    font-size: 17px;
    padding: 0.5rem 1rem;
}.style_instructor_profile .style_work_items {
    padding: 1.5rem;
    line-height: 1.6;
    font-size: calc(17px * 0.9);
    width: 95%;
}}.style_our_team {
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: rgb(212,227,219);
    padding: 120px 0;
}.style_our_team::before {
    right: 0;
    top: 0;
    z-index: -1;
    content: "";
    left: 0;
    opacity: 0.05;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgb(169,199,184,0.5) 10px,
            rgb(169,199,184,0.5) 11px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgb(124,169,148,0.5) 10px,
            rgb(124,169,148,0.5) 11px
        );
    position: absolute;
}.style_our_team .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    padding: 0 25px;
}.style_our_team h2 {
    font-weight: 700;
    margin-bottom: 70px;
    text-align: center;
    font-size: 38px;
    text-transform: uppercase;
    padding-bottom: 20px;
    position: relative;
    color: #000000;
    letter-spacing: 2px;
}.style_our_team h2::before {
    content: "";
    height: 5px;
    width: 60px;
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
    left: 50%;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    background: rgb(169,199,184);
}.style_our_team h2::after {
    transform: translateX(-50%) rotate(45deg);
    animation: float 3s ease-in-out infinite;
    content: "";
    background: rgb(124,169,148);
    left: 50%;
    width: 10px;
    height: 10px;
    position: absolute;
    bottom: -3px;
}@keyframes float {
    0%, 100% {
        transform: translateX(-50%) rotate(45deg) translateY(0);
    }
    50% {
        transform: translateX(-50%) rotate(45deg) translateY(-5px);
    }
}

.style_our_team .style_team_bios {
    flex-direction: column;
    display: flex;
    gap: 40px;
}.style_our_team .style_expert_learnings {
    border-top: 4px solid transparent;
    padding: 40px;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.style_our_team .style_expert_learnings:nth-child(1) {
    border-top-color: rgb(169,199,184);
}.style_our_team .style_expert_learnings:nth-child(2) {
    border-top-color: rgb(124,169,148);
}.style_our_team .style_expert_learnings::before {
    top: -100px;
    right: -100px;
    background: linear-gradient(45deg, rgb(169,199,184,0.5), transparent);
    position: absolute;
    opacity: 0.1;
    transition: all 0.5s ease;
    width: 200px;
    border-radius: 50%;
    height: 200px;
    content: "";
}.style_our_team .style_expert_learnings:nth-child(2)::before {
    left: -100px;
    top: -100px;
    background: linear-gradient(45deg, rgb(124,169,148,0.5), transparent);
}.style_our_team .style_expert_learnings:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}.style_our_team .style_expert_learnings:hover::before {
    transform: scale(1.5);
}.style_our_team .style_expert_learnings::after {
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
    width: 100%;
    height: 5px;
    content: "";
    opacity: 0.1;
    bottom: 0;
    position: absolute;
}.style_our_team .style_expert_learnings h3 {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 20px;
}.style_our_team .style_expert_learnings:nth-child(1) h3 {
    color: rgb(169,199,184);
}.style_our_team .style_expert_learnings:nth-child(2) h3 {
    color: rgb(124,169,148);
}.style_our_team .style_expert_learnings h3::after {
    width: 0;
    transition: width 0.4s ease;
    position: absolute;
    content: "";
    background: currentColor;
    bottom: -5px;
    left: 0;
    height: 2px;
}.style_our_team .style_expert_learnings:hover h3::after {
    width: 100%;
}.style_our_team .style_expert_learnings p {
    z-index: 2;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    color: #000000;
    font-size: 17px;
}.style_our_team::after {
    content: "";
    z-index: -1;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(169,199,184,0.5) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgb(124,169,148,0.5) 1px, transparent 1px);
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0.2;
    animation: moveDots 100s linear infinite;
    position: absolute;
    height: 100%;
    background-size: 60px 60px;
}@keyframes moveDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 500px;
    }
}

.style_our_team .container::before,
.style_our_team .container::after {
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgb(169,199,184,0.5), transparent);
    animation: scanline 3s linear infinite;
    top: 0;
    position: absolute;
    z-index: -1;
    content: "";
}.style_our_team .container::before {
    animation-delay: 1s;
    height: 50%;
    left: 10%;
}.style_our_team .container::after {
    background: linear-gradient(to bottom, rgb(124,169,148,0.5), transparent);
    right: 10%;
    height: 70%;
}@keyframes scanline {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.style_our_team .style_expert_learnings:nth-child(1) {
    animation: fadeInUp 0.7s ease-out forwards;
}.style_our_team .style_expert_learnings:nth-child(2) {
    opacity: 0;
    animation: fadeInUp 0.7s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {.style_our_team {
    padding: 90px 0;
}.style_our_team h2 {
    margin-bottom: 50px;
}.style_our_team .style_expert_learnings {
    padding: 30px;
}
}

@media (max-width: 768px) {.style_our_team {
    padding: 70px 0;
}.style_our_team h2 {
    font-size: calc(38px * 0.9);
    margin-bottom: 40px;
}.style_our_team .style_expert_learnings {
    padding: 25px;
}.style_our_team .style_expert_learnings h3 {
    font-size: calc(18px * 0.9);
}
}

@media (max-width: 576px) {.style_our_team {
    padding: 50px 0;
}.style_our_team h2 {
    letter-spacing: 1px;
    font-size: calc(38px * 0.8);
    margin-bottom: 35px;
}.style_our_team h2::before {
    height: 4px;
    width: 40px;
}.style_our_team .style_expert_learnings {
    padding: 20px;
}.style_our_team .style_expert_learnings p {
    line-height: 1.6;
    font-size: calc(17px * 0.95);
}.style_our_team .container::before,
    .style_our_team .container::after {
    display: none;
}}footer {
    z-index: 1;
    position: relative;
}footer::before {
    content: "";
    bottom: 0;
    z-index: -2;
    top: 0;
    left: 0;
    opacity: 0.85;
    position: absolute;
    right: 0;
    background: linear-gradient(120deg, rgb(169,199,184) 0%, rgb(124,169,148) 100%);
}footer::after {
    position: absolute;
    right: 0;
    top: 0;
    background-size: 20px 20px;
    z-index: -1;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.07) 1px, transparent 1px);
    left: 0;
    bottom: 0;
    content: "";
}.style_lesson_cta {
    padding: 4rem 0 2.5rem;
    position: relative;
    color: #ffffff;
}.style_lesson_cta::before {
    top: 0;
    width: 100%;
    height: 10px;
    background: #ffffff;
    opacity: 0.2;
    left: 0;
    position: absolute;
    content: "";
    clip-path: polygon(
        0% 0%, 4% 100%, 8% 0%, 12% 100%, 16% 0%, 20% 100%, 
        24% 0%, 28% 100%, 32% 0%, 36% 100%, 40% 0%, 44% 100%, 
        48% 0%, 52% 100%, 56% 0%, 60% 100%, 64% 0%, 68% 100%, 
        72% 0%, 76% 100%, 80% 0%, 84% 100%, 88% 0%, 92% 100%, 
        96% 0%, 100% 100%
    );
}.style_lesson_cta .container {
    gap: 3rem;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
}.style_lesson_cta .company_holder {
    padding: 2.5rem;
    position: relative;
    flex: 1 1 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(
        0% 0%, 100% 0%, 95% 100%, 5% 100%
    );
}.style_lesson_cta .company_holder h3 {
    margin: 0 0 1.5rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 38px;
    background: rgba(255, 255, 255, 0.15);
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
    text-transform: uppercase;
    display: inline-block;
    padding: 0.5rem 2rem;
}.style_lesson_cta .style_pitch_comp {
    margin: 0 1rem;
    clip-path: polygon(3% 0%, 97% 0%, 100% 100%, 0% 100%);
    line-height: 1.6;
    padding: 1.5rem;
    color: #ffffff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.15);
}.style_lesson_cta .style_career_help {
    flex: 1 1 calc(100% - 480px);
    display: flex;
    min-width: 400px;
    gap: 2rem;
    flex-direction: column;
}.style_lesson_cta .style_main_pagewrap {
    flex-wrap: wrap;
    display: flex;
    gap: 2.5rem;
}.style_lesson_cta .style_top_class {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 200px;
    position: relative;
}.style_lesson_cta .style_top_class h5 {
    margin: 0 0 1.5rem;
    position: relative;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 5% 100%);
    display: inline-block;
    color: #ffffff;
    font-size: 21px;
    background: rgba(255, 255, 255, 0.15);
}.style_lesson_cta .style_top_class .style_main_pagewrap {
    clip-path: polygon(2% 0%, 98% 0%, 100% 95%, 0% 100%);
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}.style_lesson_cta .style_top_class .style_main_pagewrap a {
    clip-path: polygon(0% 0%, 97% 0%, 100% 100%, 3% 100%);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    position: relative;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}.style_lesson_cta .style_top_class .style_main_pagewrap a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}.style_lesson_cta .style_top_class .style_main_pagewrap a::before {
    position: absolute;
    transition: all 0.3s ease;
    content: "";
    background: #ffffff;
    opacity: 0;
    height: 100%;
    left: 0;
    top: 0;
    width: 3px;
}.style_lesson_cta .style_top_class .style_main_pagewrap a:hover::before {
    opacity: 0.7;
}.style_footer_benefit {
    margin-top: 3rem;
    clip-path: polygon(0% 20%, 2% 0%, 98% 0%, 100% 20%, 100% 100%, 0% 100%);
    position: relative;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.1);
}.style_footer_benefit .container {
    align-items: center;
    display: flex;
    justify-content: center;
}.style_footer_benefit .style_award_show {
    clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    text-align: center;
    padding: 0.7rem 2rem;
    position: relative;
}

@keyframes hexagonPulse {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@media (max-width: 1200px) {.style_lesson_cta .container {
    gap: 2rem;
}.style_lesson_cta .company_holder {
    flex: 1 1 380px;
}.style_lesson_cta .style_career_help {
    min-width: 380px;
    flex: 1 1 calc(100% - 430px);
}
}

@media (max-width: 992px) {.style_lesson_cta {
    padding: 3.5rem 0 2rem;
}.style_lesson_cta .container {
    flex-direction: column;
    gap: 2.5rem;
}.style_lesson_cta .company_holder,
    .style_lesson_cta .style_career_help {
    flex: 1 1 100%;
    min-width: 100%;
}.style_lesson_cta .style_top_class {
    min-width: 200px;
    flex: 1 1 calc(50% - 1.25rem);
}
}

@media (max-width: 768px) {.style_lesson_cta {
    padding: 3rem 0 1.5rem;
}.style_lesson_cta .company_holder {
    padding: 2rem;
}.style_lesson_cta .company_holder h3 {
    font-size: calc(38px - 2px);
}.style_lesson_cta .style_main_pagewrap {
    gap: 1.5rem;
}.style_footer_benefit {
    margin-top: 2rem;
}
}

@media (max-width: 576px) {.style_lesson_cta {
    padding: 2.5rem 0 1rem;
}.style_lesson_cta .style_top_class {
    min-width: 100%;
    flex: 1 1 100%;
}.style_lesson_cta .style_main_pagewrap {
    gap: 1rem;
}.style_footer_benefit {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    clip-path: polygon(0% 10%, 2% 0%, 98% 0%, 100% 10%, 100% 100%, 0% 100%);
}.style_lesson_cta::before {
    height: 5px;
}
}

@media (max-width: 420px) {.style_lesson_cta .company_holder {
    padding: 1.5rem;
    clip-path: polygon(0% 0%, 100% 0%, 97% 100%, 3% 100%);
}.style_lesson_cta .company_holder h3 {
    padding: 0.4rem 1rem;
}.style_lesson_cta .style_top_class h5 {
    padding: 0.4rem 1rem;
}.style_lesson_cta .style_top_class .style_main_pagewrap {
    padding: 1rem;
}.style_lesson_cta .style_top_class .style_main_pagewrap a:hover {
    transform: translateX(3px);
}.style_footer_benefit .style_award_show {
    padding: 0.6rem 1.5rem;
    width: 90%;
}}.style_thanksSpace {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(169,199,184,0.5), rgb(124,169,148,0.5));
}.style_thanksSpace::before {
    left: 0;
    height: 100%;
    content: "";
    top: 0;
    z-index: 1;
    pointer-events: none;
    position: absolute;
    width: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 40%);
}.style_thanksSpace::after {
    width: 100%;
    transform: rotate(35deg) scale(2);
    right: -50%;
    position: absolute;
    height: 100%;
    pointer-events: none;
    content: "";
    z-index: 0;
    animation: shimmer 8s infinite linear;
    background: linear-gradient(45deg, transparent, rgb(169,199,184,0.5), transparent);
    top: -50%;
}.style_thanksSpace .container {
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
}.style_thanksSpace .style_knowledge_sessions {
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.15),
        inset 0 0 20px rgba(rgb(169,199,184),0.05);
    position: relative;
    padding: 60px 50px;
    gap: 40px;
    flex-direction: column;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    backdrop-filter: blur(10px);
}.style_thanksSpace .style_knowledge_sessions:hover {
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255,255,255,0.2),
        inset 0 0 30px rgba(rgb(169,199,184),0.08);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.style_thanksSpace .style_knowledge_sessions::before {
    top: -10px;
    left: 20px;
    content: "";
    opacity: 0.4;
    z-index: -1;
    position: absolute;
    height: 10px;
    right: 20px;
    background: rgb(169,199,184);
    filter: blur(10px);
}.style_thanksSpace .style_knowledge_sessions > div:first-child {
    position: relative;
    padding-bottom: 30px;
}.style_thanksSpace .style_knowledge_sessions > div:first-child::after {
    content: "";
    transform-origin: left center;
    transition: transform 0.4s ease;
    background: linear-gradient(90deg, rgb(169,199,184), rgb(124,169,148));
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    position: absolute;
}.style_thanksSpace .style_knowledge_sessions:hover > div:first-child::after {
    transform: scaleX(1.5);
}.style_thanksSpace h5 {
    letter-spacing: -0.01em;
    margin: 0 0 15px;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    font-size: 22px;
    font-weight: 700;
    z-index: 2;
    position: relative;
    color: #000000;
}.style_thanksSpace h5::before {
    background: rgb(169,199,184);
    transition: transform 0.3s ease;
    left: -20px;
    width: 10px;
    opacity: 0.8;
    height: 10px;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    position: absolute;
    content: "";
}.style_thanksSpace .style_knowledge_sessions:hover h5::before {
    transform: translateY(-50%) rotate(135deg);
}.style_thanksSpace a {
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
}.style_thanksSpace a:hover {
    transform: translateX(5px);
}.style_thanksSpace p {
    font-size: 17px;
    font-weight: 400;
    color: #000000;
    transition: color 0.3s ease;
    position: relative;
    font-family: Arial, sans-serif;
    margin: 0;
    z-index: 2;
    line-height: 1.8;
}.style_thanksSpace a:hover p {
    color: rgb(169,199,184);
}

@keyframes shimmer {
    0% { transform: rotate(35deg) translateX(-30%) scale(2); }
    100% { transform: rotate(35deg) translateX(30%) scale(2); }
}

@media (min-width: 992px) {.style_thanksSpace .style_knowledge_sessions {
    padding: 80px 70px;
    align-items: center;
    flex-direction: row;
}.style_thanksSpace .style_knowledge_sessions > div:first-child {
    padding-right: 50px;
    padding-bottom: 0;
    flex: 0 0 40%;
}.style_thanksSpace .style_knowledge_sessions > div:first-child::after {
    left: auto;
    width: 3px;
    height: 80px;
    right: 0;
    transform-origin: center top;
    bottom: auto;
    top: 50%;
}.style_thanksSpace .style_knowledge_sessions:hover > div:first-child::after {
    transform: scaleY(1.5);
}.style_thanksSpace h5 {
    margin-bottom: 0;
    font-size: calc(22px * 1.1);
}.style_thanksSpace h5::before {
    left: -30px;
    height: 15px;
    width: 15px;
}.style_thanksSpace a:hover {
    transform: translateX(10px);
}
}

@media (max-width: 991px) {.style_thanksSpace {
    padding: 80px 0;
}.style_thanksSpace .style_knowledge_sessions {
    padding: 50px 35px;
}.style_thanksSpace h5 {
    font-size: calc(22px * 0.95);
}
}

@media (max-width: 767px) {.style_thanksSpace {
    padding: 60px 0;
}.style_thanksSpace .style_knowledge_sessions {
    gap: 30px;
    padding: 40px 25px;
}.style_thanksSpace h5 {
    font-size: calc(22px * 0.9);
}.style_thanksSpace p {
    line-height: 1.7;
    font-size: calc(17px * 0.95);
}.style_thanksSpace .style_knowledge_sessions > div:first-child {
    padding-bottom: 20px;
}
}

@media (max-width: 480px) {.style_thanksSpace {
    padding: 50px 0;
}.style_thanksSpace .style_knowledge_sessions {
    padding: 30px 20px;
    gap: 25px;
}.style_thanksSpace h5 {
    font-size: calc(22px * 0.85);
}.style_thanksSpace p {
    font-size: calc(17px * 0.9);
    line-height: 1.6;
}.style_thanksSpace .style_knowledge_sessions > div:first-child {
    padding-bottom: 15px;
}.style_thanksSpace .style_knowledge_sessions > div:first-child::after {
    width: 60px;
}}.style_stay_informed {
    position: relative;
    background: linear-gradient(135deg, rgb(212,227,219) 0%, rgb(124,169,148,0.5) 100%);
    isolation: isolate;
    overflow: hidden;
    padding: 4rem 2rem;
}.style_stay_informed::before {
    background-image: 
        repeating-linear-gradient(
            -45deg, 
            transparent, 
            transparent 15px, 
            rgba(255, 255, 255, 0.03) 15px, 
            rgba(255, 255, 255, 0.03) 30px
        );
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
}.style_stay_informed::after {
    opacity: 0.07;
    z-index: -1;
    background: rgb(124,169,148);
    transform: rotate(-12deg) skewX(-15deg);
    right: -5%;
    width: 30%;
    top: -10%;
    height: 120%;
    position: absolute;
    content: "";
}.style_stay_informed .container {
    margin: 0 auto;
    max-width: 1200px;
}.style_stay_informed .style_knowledge_sessions {
    grid-template-columns: 1fr;
    display: grid;
    gap: 2rem;
    animation: slideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform: translateX(-5px);
}.style_stay_informed h4 {
    transform: translateY(5px);
    position: relative;
    margin: 0;
    opacity: 0;
    line-height: 1.4;
    padding-left: 1.5rem;
    font-size: 23px;
    animation: fadeUp 0.6s ease-out 0.2s forwards;
    font-weight: 600;
    color: #000000;
}.style_stay_informed h4::before {
    height: calc(100% - 1rem);
    background: rgb(124,169,148);
    width: 4px;
    transform: scaleY(0);
    animation: scaleVertical 0.5s ease-out 0.6s forwards;
    transform-origin: top;
    content: "";
    left: 0;
    top: 0.5rem;
    position: absolute;
}.style_stay_informed .input_holder {
    gap: 1rem;
    transform: translateY(10px);
    opacity: 0;
    position: relative;
    display: flex;
    animation: fadeUp 0.6s ease-out 0.4s forwards;
    flex-direction: column;
}.style_stay_informed .input_holder span {
    position: relative;
    display: block;
}.style_stay_informed input[type="email"] {
    color: #000000;
    padding: 1rem 1.5rem;
    width: 100%;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 2px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}.style_stay_informed input[type="email"]:focus {
    transform: translateY(-2px);
    border-color: rgb(124,169,148);
    box-shadow: 0 5px 20px rgba(var(--secondary-color-rgb), 0.15);
    outline: none;
}.style_stay_informed input[type="email"]::placeholder {
    color: rgba(var(--dark-color-rgb), 0.5);
    transition: all 0.3s ease;
}.style_stay_informed input[type="email"]:focus::placeholder {
    transform: translateX(5px);
    opacity: 0.5;
}.style_stay_informed .style_sub_backdrop {
    display: inline-block;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1rem 2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(var(--secondary-color-rgb), 0.2);
    position: relative;
    border: none;
    overflow: hidden;
    font-size: 15px;
    background: rgb(124,169,148);
    width: 100%;
    font-weight: 600;
}.style_stay_informed .style_sub_backdrop:hover {
    background: rgb(169,199,184);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.25);
}.style_stay_informed .style_sub_backdrop::before {
    height: 150%;
    left: 50%;
    background: rgba(255, 255, 255, 0.1);
    content: "";
    transform: translate(-50%, -50%) scale(0);
    width: 150%;
    border-radius: 50%;
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    top: 50%;
}.style_stay_informed .style_sub_backdrop:hover::before {
    transform: translate(-50%, -50%) scale(1);
}.style_stay_informed .style_sub_backdrop:active {
    box-shadow: 0 3px 10px rgba(var(--primary-color-rgb), 0.2);
    transform: translateY(-1px);
}

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

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

@keyframes scaleVertical {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}


@media (min-width: 768px) {.style_stay_informed {
    padding: 5rem 3rem;
}.style_stay_informed .style_knowledge_sessions {
    gap: 3rem;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
}.style_stay_informed h4 {
    font-size: calc(23px * 1.1);
    padding-left: 2rem;
}.style_stay_informed h4::before {
    width: 6px;
}.style_stay_informed .input_holder {
    flex-direction: row;
    gap: 0;
}.style_stay_informed input[type="email"] {
    border-right: none;
}.style_stay_informed .style_sub_backdrop {
    white-space: nowrap;
    border-top-left-radius: 0;
    width: auto;
    border-bottom-left-radius: 0;
}
}

@media (min-width: 992px) {.style_stay_informed {
    padding: 6rem 4rem;
}.style_stay_informed::after {
    width: 40%;
}.style_stay_informed .style_knowledge_sessions {
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}.style_stay_informed h4 {
    font-size: calc(23px * 1.2);
    transform: skewX(-3deg);
}.style_stay_informed h4::before {
    transform: skewX(3deg);
    left: 0.3rem;
}.style_stay_informed .input_holder {
    transform: perspective(1000px) rotateY(2deg);
}.style_stay_informed input[type="email"] {
    padding: 1.2rem 1.8rem;
}.style_stay_informed .style_sub_backdrop {
    padding: 1.2rem 2.5rem;
}
}

@media (min-width: 1200px) {.style_stay_informed::before {
    background-image: 
            repeating-linear-gradient(
                -45deg, 
                transparent, 
                transparent 20px, 
                rgba(255, 255, 255, 0.04) 20px, 
                rgba(255, 255, 255, 0.04) 40px
            );
}.style_stay_informed .style_knowledge_sessions {
    grid-template-columns: 1.8fr 1.2fr;
}.style_stay_informed h4 {
    font-size: calc(23px * 1.3);
}.style_stay_informed input[type="email"] {
    transition: all 0.4s cubic-bezier(0.2, 0.85, 0.4, 1.275);
}.style_stay_informed input[type="email"]:focus {
    transform: translateY(-3px);
}
}

@media (max-width: 767px) {.style_stay_informed {
    padding: 3rem 1.5rem;
}.style_stay_informed h4 {
    padding-left: 1.2rem;
    font-size: calc(23px * 0.9);
}.style_stay_informed .style_sub_backdrop {
    margin-top: 0.5rem;
}}.style_course_candidates {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}.style_course_candidates::before {
    top: 0;
    width: 6px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    z-index: 1;
    bottom: 0;
    background-color: rgb(169,199,184,0.5);
}.style_course_candidates .style_knowledge_sessions {
    margin: 0 auto;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    position: relative;
    padding: 0 30px;
}.style_course_candidates h3 {
    border: 3px solid rgb(169,199,184,0.5);
    color: #000000;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #f9f9f9;
    border-radius: 50px;
    padding: 0 30px;
    display: inline-block;
    margin-bottom: 80px;
    font-weight: 700;
    font-size: 33px;
}.style_course_candidates ul {
    list-style: none;
    position: relative;
    padding: 0;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    margin: 0;
    display: flex;
}.style_course_candidates ul li {
    max-width: 500px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 2;
    gap: 20px;
    transition: all 0.4s ease;
    display: flex;
    width: 100%;
    align-items: center;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    text-align: left;
}.style_course_candidates ul li::before {
    z-index: 5;
    position: absolute;
    border: 6px solid rgb(169,199,184,0.5);
    background-color: #ffffff;
    width: 50px;
    content: '';
    transform: translateX(-50%);
    transition: all 0.4s ease;
    top: -25px;
    left: 50%;
    height: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}.style_course_candidates ul li:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}.style_course_candidates ul li:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}.style_course_candidates ul li:hover::before {
    background-color: rgb(169,199,184,0.5);
    border-color: #ffffff;
}.style_course_candidates ul li svg {
    border-radius: 50%;
    height: 60px;
    flex-shrink: 0;
    background-color: rgb(169,199,184,0.5);
    transition: all 0.4s ease;
    width: 60px;
    padding: 12px;
}.style_course_candidates ul li:hover svg {
    transform: rotate(360deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}.style_course_candidates ul li svg path {
    fill: #ffffff;
    transition: fill 0.4s ease;
}.style_course_candidates ul li:hover svg path {
    fill: rgb(169,199,184);
}@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.style_course_candidates ul li {
    animation: fadeInFromTop 0.6s ease forwards;
    opacity: 0;
}.style_course_candidates ul li:nth-child(1) {
    animation-delay: 0.1s;
}.style_course_candidates ul li:nth-child(2) {
    animation-delay: 0.3s;
}.style_course_candidates ul li:nth-child(3) {
    animation-delay: 0.5s;
}.style_course_candidates ul li:nth-child(4) {
    animation-delay: 0.7s;
}.style_course_candidates ul li:nth-child(5) {
    animation-delay: 0.9s;
}.style_course_candidates ul li:nth-child(6) {
    animation-delay: 1.1s;
}

@media (max-width: 992px) {.style_course_candidates {
    padding: 90px 0;
}.style_course_candidates h3 {
    margin-bottom: 60px;
}.style_course_candidates ul {
    gap: 60px;
}.style_course_candidates ul li {
    padding: 25px;
}.style_course_candidates ul li svg {
    height: 50px;
    width: 50px;
    padding: 10px;
}
}

@media (max-width: 768px) {.style_course_candidates ul li,
    .style_course_candidates ul li:nth-child(even) {
    align-items: center;
    text-align: center;
    flex-direction: column;
}.style_course_candidates ul li::before {
    top: -30px;
}
}

@media (max-width: 576px) {.style_course_candidates {
    padding: 70px 0;
}.style_course_candidates h3 {
    margin-bottom: 50px;
    font-size: calc(33px * 0.85);
    padding: 0 20px;
}.style_course_candidates ul {
    gap: 50px;
}.style_course_candidates ul li {
    padding: 20px;
}.style_course_candidates ul li::before {
    width: 40px;
    height: 40px;
    top: -25px;
}.style_course_candidates ul li svg {
    width: 45px;
    height: 45px;
    padding: 8px;
}
}

@media (prefers-reduced-motion: reduce) {.style_course_candidates ul li {
    animation: none;
    opacity: 1;
}.style_course_candidates ul li:hover {
    transform: none;
}.style_course_candidates ul li:hover svg {
    transform: none;
}}.style_statistical_details {
    background-color: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    padding: 120px 0;
    color: #ffffff;
    position: relative;
}.style_statistical_details::before {
    width: 100%;
    top: 0;
    position: absolute;
    content: '';
    height: 100%;
    z-index: -2;
    background: #000000;
    opacity: 0.9;
    left: 0;
}.style_statistical_details::after {
    top: 0;
    animation: backgroundPulse 20s infinite alternate;
    z-index: -1;
    left: 0;
    position: absolute;
    width: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgb(169,199,184,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgb(124,169,148,0.5) 0%, transparent 30%),
        linear-gradient(45deg, transparent 96%, rgb(169,199,184,0.5) 97%, rgb(169,199,184,0.5) 98%, transparent 99%),
        linear-gradient(135deg, transparent 96%, rgb(124,169,148,0.5) 97%, rgb(124,169,148,0.5) 98%, transparent 99%),
        repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.01) 5px, rgba(255, 255, 255, 0.01) 10px);
    background-size: auto, auto, 100px 100px, 100px 100px, 30px 30px;
    content: '';
    opacity: 0.6;
    height: 100%;
}@keyframes backgroundPulse {
    0% {
        background-position: 0% 0%, 0% 0%, 0px 0px, 0px 0px, 0px 0px;
        opacity: 0.5;
    }
    50% {
        background-position: 5% 5%, -5% -5%, 50px 50px, 50px 50px, 15px 15px;
        opacity: 0.7;
    }
    100% {
        background-position: 0% 0%, 0% 0%, 0px 0px, 0px 0px, 0px 0px;
        opacity: 0.5;
    }
}

.style_statistical_details .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
}.style_statistical_details .style_statistics_plus {
    display: grid;
    position: relative;
    grid-template-areas: 
        "image header header header"
        "stats stats stats stats";
    grid-gap: 40px;
    grid-template-columns: auto 1fr 1fr 1fr;
    align-items: start;
}.style_statistical_details .style_class_benefits {
    border-radius: 50%;
    height: 80px;
    z-index: 2;
    margin-right: 20px;
    display: flex;
    align-items: center;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    justify-content: center;
    justify-self: end;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    grid-area: image;
    width: 80px;
}.style_statistical_details .style_class_benefits::before {
    opacity: 0.3;
    content: '';
    top: -10px;
    animation: rotate 10s linear infinite;
    z-index: -1;
    width: 100px;
    left: -10px;
    border-radius: 50%;
    height: 100px;
    position: absolute;
    background: conic-gradient(
        from 0deg, 
        transparent 0deg,
        transparent 90deg,
        rgb(169,199,184) 90deg,
        rgb(169,199,184) 180deg,
        transparent 180deg,
        transparent 270deg,
        rgb(169,199,184) 270deg,
        rgb(169,199,184) 360deg
    );
}@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.style_statistical_details .style_class_benefits svg {
    width: 40px;
    height: 40px;
    fill: rgb(169,199,184);
}.style_statistical_details .style_class_benefits svg path {
    fill: rgb(169,199,184);
}.style_statistical_details .style_top_gain {
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
    padding: 15px;
    font-weight: 700;
    border-radius: 10px;
    grid-area: header;
    position: relative;
    color: #ffffff;
    text-transform: uppercase;
    padding-bottom: 25px;
    background: rgba(0, 0, 0, 0.2);
    font-size: calc(38px * 1.2);
}.style_statistical_details .style_top_gain::after {
    bottom: 0;
    left: 0;
    position: absolute;
    content: '';
    height: 3px;
    width: 60px;
    border-radius: 1.5px;
    background: rgb(169,199,184);
}.style_statistical_details .style_statistics_advance {
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    max-width: 800px;
    font-size: calc(18px * 1.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-radius: 19px;
    line-height: 1.7;
    grid-column: 1 / -1;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    margin: 0 auto 50px;
}.style_statistical_details .style_statistics_advance::before {
    left: 10px;
    top: 10px;
    position: absolute;
    width: 30px;
    height: 30px;
    border-left: 2px solid rgb(169,199,184);
    border-top: 2px solid rgb(169,199,184);
    opacity: 0.6;
    content: '';
}.style_statistical_details .style_statistics_advance::after {
    border-bottom: 2px solid rgb(169,199,184);
    right: 10px;
    border-right: 2px solid rgb(169,199,184);
    position: absolute;
    height: 30px;
    bottom: 10px;
    width: 30px;
    opacity: 0.6;
    content: '';
}.style_statistical_details .style_statistics_gain {
    display: grid;
    margin-top: 30px;
    grid-area: stats;
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 25px;
}.style_statistical_details .style_statistics_pro {
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding: 25px;
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.6);
}.style_statistical_details .style_statistics_pro:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.7);
}.style_statistical_details .style_statistics_pro::before {
    right: -2px;
    top: -2px;
    background: linear-gradient(90deg, transparent, rgb(169,199,184), transparent);
    position: absolute;
    content: '';
    opacity: 0.6;
    left: -2px;
    height: 2px;
}.style_statistical_details .style_statistics_pro::after {
    transition: opacity 0.3s ease;
    background-position: center;
    bottom: 0;
    z-index: -1;
    background-size: cover;
    height: 50%;
    width: 100%;
    left: 0;
    opacity: 0.05;
    position: absolute;
    content: '';
}.style_statistical_details .style_statistics_pro:hover::after {
    opacity: 0.1;
}.style_statistical_details .style_pro_extra {
    justify-content: center;
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.4);
}.style_statistical_details .style_pro_extra::before {
    z-index: -1;
    width: 100%;
    position: absolute;
    height: 100%;
    content: '';
    background: linear-gradient(135deg, rgb(169,199,184,0.5) 0%, transparent 100%);
    left: 0;
    top: 0;
    opacity: 0.3;
}.style_statistical_details .style_pro_extra svg {
    width: 25px;
    fill: rgb(169,199,184);
    height: 25px;
}.style_statistical_details .style_pro_extra svg path {
    fill: rgb(169,199,184);
}.style_statistical_details .style_statistics_gain .style_statistics_pro:nth-child(4n+1) span,
.style_statistical_details .style_statistics_gain .style_statistics_pro:nth-child(4n+4) span {
    margin-bottom: 10px;
    color: rgb(169,199,184);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: block;
    font-weight: 700;
    font-size: 2.2rem;
    position: relative;
}.style_statistical_details .style_statistics_gain .style_statistics_pro:nth-child(4n+2) span,
.style_statistical_details .style_statistics_gain .style_statistics_pro:nth-child(4n+3) span {
    position: relative;
    margin-bottom: 10px;
    display: block;
    font-size: 2.2rem;
    color: rgb(124,169,148);
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}.style_statistical_details .style_statistics_pro span::after {
    width: 30px;
    background: currentColor;
    opacity: 0.5;
    height: 2px;
    content: '';
    left: 0;
    position: absolute;
    bottom: -5px;
}.style_statistical_details .style_statistics_pro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin: 0;
}

@media screen and (max-width: 991px) {.style_statistical_details {
    padding: 100px 0;
}.style_statistical_details .style_statistics_plus {
    grid-template-areas: 
            "image header header header"
            "stats stats stats stats";
    grid-gap: 30px;
    grid-template-columns: auto 1fr 1fr 1fr;
}.style_statistical_details .style_statistics_advance {
    max-width: 100%;
}.style_statistical_details .style_statistics_gain {
    grid-template-columns: repeat(3, 1fr);
}
}

@media screen and (max-width: 767px) {.style_statistical_details {
    padding: 80px 0;
}.style_statistical_details .style_class_benefits {
    width: 70px;
    height: 70px;
}.style_statistical_details .style_class_benefits::before {
    left: -10px;
    height: 90px;
    top: -10px;
    width: 90px;
}.style_statistical_details .style_class_benefits svg {
    height: 35px;
    width: 35px;
}.style_statistical_details .style_top_gain {
    padding-bottom: 15px;
    font-size: calc(38px * 0.9);
}.style_statistical_details .style_statistics_advance {
    padding: 30px;
    font-size: calc(18px * 1.1);
    margin-bottom: 30px;
}.style_statistical_details .style_statistics_advance::before,
    .style_statistical_details .style_statistics_advance::after {
    height: 25px;
    width: 25px;
}.style_statistical_details .style_statistics_gain {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}.style_statistical_details .style_statistics_pro {
    padding: 20px;
}.style_statistical_details .style_pro_extra {
    height: 45px;
    margin-bottom: 15px;
    width: 45px;
}.style_statistical_details .style_pro_extra svg {
    height: 22px;
    width: 22px;
}.style_statistical_details .style_statistics_gain .style_statistics_pro span {
    font-size: 2rem;
}
}

@media screen and (max-width: 575px) {.style_statistical_details {
    padding: 60px 0;
}.style_statistical_details .style_statistics_plus {
    grid-gap: 25px;
}.style_statistical_details .style_class_benefits {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}.style_statistical_details .style_class_benefits::before {
    height: 80px;
    width: 80px;
    top: -10px;
    left: -10px;
}.style_statistical_details .style_class_benefits svg {
    height: 30px;
    width: 30px;
}.style_statistical_details .style_top_gain {
    font-size: calc(38px * 0.8);
    padding-bottom: 12px;
}.style_statistical_details .style_top_gain::after {
    width: 50px;
    height: 2px;
}.style_statistical_details .style_statistics_advance {
    font-size: calc(18px * 1.05);
    margin-bottom: 25px;
    padding: 25px;
}.style_statistical_details .style_statistics_advance::before,
    .style_statistical_details .style_statistics_advance::after {
    height: 20px;
    width: 20px;
}.style_statistical_details .style_statistics_gain {
    grid-template-columns: 1fr;
    gap: 15px;
}.style_statistical_details .style_statistics_pro {
    padding: 20px 15px;
}.style_statistical_details .style_pro_extra {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}.style_statistical_details .style_pro_extra svg {
    width: 20px;
    height: 20px;
}.style_statistical_details .style_statistics_gain .style_statistics_pro span {
    font-size: 1.8rem;
}.style_statistical_details .style_statistics_pro p {
    font-size: calc(18px * 0.85);
}}.style_course_offering {
    padding: 90px 0;
    overflow: hidden;
    background: rgb(212,227,219);
    z-index: 1;
    position: relative;
}.style_course_offering::before {
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    content: "";
    background: 
        linear-gradient(135deg, rgb(169,199,184,0.5) 0%, transparent 70%),
        linear-gradient(225deg, rgb(124,169,148,0.5) 0%, transparent 70%);
    position: absolute;
    opacity: 0.25;
    left: 0;
}.style_course_offering::after {
    top: 0;
    opacity: 0.2;
    position: absolute;
    z-index: -1;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(169,199,184,0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(124,169,148,0.5) 0%, transparent 40%);
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
}.style_course_offering .container {
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    padding: 0 15px;
    position: relative;
}.style_course_offering .style_knowledge_sessions {
    gap: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}.style_course_offering .style_img_shadow {
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    height: 450px;
    z-index: 1;
    transform: translateZ(0);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s;
    border-radius: 28px;
    position: relative;
}.style_course_offering .style_img_shadow:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}.style_course_offering .style_img_shadow::before {
    z-index: 1;
    background: linear-gradient(to bottom, 
                transparent 70%, 
                rgb(169,199,184,0.5) 100%);
    inset: 0;
    content: "";
    position: absolute;
    opacity: 0.7;
}.style_course_offering .style_img_shadow::after {
    opacity: 0.05;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: 
        repeating-linear-gradient(
            -45deg, 
            transparent, 
            transparent 20px, 
            rgb(169,199,184,0.5) 20px, 
            rgb(169,199,184,0.5) 21px
        );
}.style_course_offering .style_lesson_route {
    padding: 40px;
    z-index: 1;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}.style_course_offering .style_lesson_route:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}.style_course_offering .style_lesson_route::before {
    position: absolute;
    background: linear-gradient(90deg, 
                rgb(169,199,184), 
                rgb(124,169,148));
    width: 100%;
    top: 0;
    left: 0;
    height: 5px;
    border-radius: 28px 28px 0 0;
    content: "";
}.style_course_offering .style_lesson_route::after {
    height: 10px;
    border-radius: 0 0 50% 50%;
    background: #ffffff;
    position: absolute;
    z-index: -1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    content: "";
    bottom: -5px;
    width: 90%;
    left: 5%;
}.style_course_offering .style_nav_begin {
    margin-bottom: 25px;
    padding: 15px;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    align-items: center;
    background: rgb(212,227,219);
    position: relative;
}.style_course_offering .style_nav_begin:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px) rotate(5deg);
}.style_course_offering .style_nav_begin::after {
    position: absolute;
    inset: 0;
    border: 1px dashed rgb(169,199,184,0.5);
    content: "";
    border-radius: 10px;
    opacity: 0.5;
}.style_course_offering .style_nav_begin svg {
    height: auto;
    width: 80px;
    transition: transform 0.3s ease;
}.style_course_offering .style_nav_begin:hover svg {
    transform: scale(1.05);
}.style_course_offering .style_nav_begin svg path {
    transition: fill 0.3s ease;
    fill: rgb(169,199,184);
}.style_course_offering .style_nav_begin:hover svg path {
    fill: rgb(124,169,148);
}.style_course_offering .style_lesson_route h3 {
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 20px;
    color: #000000;
    font-size: 37px;
    font-family: Arial, sans-serif;
    position: relative;
}.style_course_offering .style_lesson_route h3::after {
    width: 50px;
    position: absolute;
    bottom: 0;
    transition: width 0.4s ease;
    background: rgb(169,199,184);
    left: 0;
    height: 3px;
    content: "";
}.style_course_offering .style_lesson_route:hover h3::after {
    width: 100px;
}.style_course_offering .style_lesson_route p {
    margin-bottom: 0;
    font-family: Arial, sans-serif;
    color: #000000;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
    position: relative;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {.style_course_offering {
    padding: 80px 0;
}.style_course_offering .style_img_shadow {
    height: 400px;
}.style_course_offering .style_lesson_route {
    padding: 35px;
}
}

@media (min-width: 768px) and (max-width: 991px) {.style_course_offering {
    padding: 70px 0;
}.style_course_offering .style_img_shadow {
    height: 350px;
}.style_course_offering .style_lesson_route {
    padding: 30px;
}.style_course_offering .style_nav_begin {
    padding: 12px;
}.style_course_offering .style_nav_begin svg {
    width: 70px;
}
}

@media (max-width: 767px) {.style_course_offering {
    padding: 60px 0;
}.style_course_offering .style_knowledge_sessions {
    gap: 30px;
}.style_course_offering .style_img_shadow {
    height: 300px;
}.style_course_offering .style_lesson_route {
    padding: 25px;
}.style_course_offering .style_nav_begin {
    padding: 10px;
    margin-bottom: 20px;
}.style_course_offering .style_nav_begin svg {
    width: 60px;
}.style_course_offering .style_lesson_route h3 {
    padding-bottom: 12px;
    margin-bottom: 15px;
    font-size: calc(37px * 0.9);
}
}

@media (max-width: 576px) {.style_course_offering {
    padding: 50px 0;
}.style_course_offering .style_knowledge_sessions {
    gap: 25px;
}.style_course_offering .style_img_shadow {
    height: 250px;
}.style_course_offering .style_lesson_route {
    padding: 20px;
}.style_course_offering .style_nav_begin {
    margin-bottom: 15px;
    padding: 8px;
}.style_course_offering .style_nav_begin svg {
    width: 50px;
}.style_course_offering .style_lesson_route h3 {
    margin-bottom: 12px;
    font-size: calc(37px * 0.8);
    padding-bottom: 10px;
}}header {
    position: relative;
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgb(169,199,184,0.5) 0%, rgb(124,169,148,0.5) 100%);
    padding: 0;
    margin-top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
}header::before {
    opacity: 0.5;
    position: absolute;
    left: 0;
    height: 100%;
    content: '';
    background: 
        radial-gradient(circle at 10% 20%, rgb(169,199,184,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgb(124,169,148,0.5) 0%, transparent 30%);
    width: 100%;
    top: 0;
    z-index: -1;
}header .style_header_site {
    z-index: 5;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    padding: 1.2rem 2.5rem;
}header .style_nav_begin {
    padding: 0.8rem 1.2rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.4s ease;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    border-radius: 14px;
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}header .style_nav_begin:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}header .style_header_learn {
    transition: all 0.3s ease;
    display: block;
}header .style_header_learn img {
    max-height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}header .style_top_class {
    position: relative;
    padding: 0;
    display: flex;
    z-index: 2;
    margin: 0;
    list-style: none;
}header .style_first_teach {
    margin: 0 0.3rem;
    position: relative;
}header .style_first_teach a {
    z-index: 1;
    display: block;
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
}header .style_first_teach a:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}header .style_first_teach a::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1), 
        rgba(255, 255, 255, 0.05)
    );
    opacity: 0;
    content: '';
    height: 100%;
    left: 0;
    z-index: -1;
    top: 0;
    border-radius: 14px;
    transition: opacity 0.3s ease;
    position: absolute;
    width: 100%;
}header .style_first_teach a:hover::before {
    opacity: 1;
}header .style_first_teach::after {
    background: #ffffff;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: -3px;
    width: 0;
    border-radius: 10px;
    content: '';
    transition: width 0.3s ease;
    opacity: 0.7;
    height: 3px;
}header .style_first_teach:hover::after {
    width: 70%;
}header .style_header_site::before {
    content: '';
    filter: blur(40px);
    position: absolute;
    background: rgb(169,199,184,0.5);
    height: 100px;
    opacity: 0.5;
    top: -20px;
    z-index: -1;
    right: -20px;
    width: 100px;
    border-radius: 50%;
}header .style_header_site::after {
    left: -20px;
    width: 80px;
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(30px);
    height: 80px;
    bottom: -20px;
    background: rgb(124,169,148,0.5);
}header .style_head_pagebar {
    padding-top: 2rem;
    position: relative;
    background: rgb(212,227,219);
    z-index: 1;
}@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

header .style_nav_begin::after {
    bottom: -20px;
    width: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    height: 20px;
    position: absolute;
    opacity: 0.5;
    left: 0;
    content: '';
    transition: all 0.4s ease;
}header .style_nav_begin:hover::after {
    transform: scaleX(0.9);
    opacity: 0.7;
}

@media (min-width: 1400px) {header .style_header_site {
    max-width: 1320px;
    margin: 0 auto;
}header .style_first_teach {
    margin: 0 0.5rem;
}header .style_first_teach a {
    padding: 0.8rem 1.5rem;
}
}

@media (max-width: 991px) {header {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}header .style_header_site {
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
}header .style_nav_begin {
    border-radius: 10px;
    padding: 0.6rem 1rem;
    margin-bottom: 0;
}header .style_top_class {
    margin-top: 1rem;
    justify-content: flex-end;
    flex-basis: 100%;
}header .style_first_teach a {
    border-radius: 10px;
    font-size: calc(16px - 1px);
    padding: 0.6rem 1rem;
}header .style_header_site::before,
    header .style_header_site::after {
    display: none;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .style_header_site {
    padding: 0.8rem 1.2rem;
}header .style_nav_begin {
    max-width: 140px;
    padding: 0.5rem 0.8rem;
}header .style_header_learn img {
    max-height: 35px;
}header .style_top_class {
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    margin-top: 0.8rem;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}header .style_top_class::-webkit-scrollbar {
    height: 3px;
}header .style_top_class::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}header .style_first_teach {
    flex: 0 0 auto;
    margin: 0 0.15rem;
}header .style_first_teach a {
    font-size: calc(16px - 2px);
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
}header .style_first_teach::after {
    display: none;
}header .style_nav_begin::after {
    display: none;
}
}

@media (max-width: 479px) {header .style_header_site {
    padding: 0.7rem 1rem;
}header .style_nav_begin {
    padding: 0.4rem 0.7rem;
    max-width: 120px;
}header .style_first_teach a {
    font-size: calc(16px - 3px);
    padding: 0.4rem 0.6rem;
}}.style_client_comments {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(to right, rgb(212,227,219) 0%, #ffffff 100%);
}.style_client_comments::before {
    height: 100%;
    left: 0;
    opacity: 0.05;
    background-size: 40px 40px;
    background: 
        linear-gradient(45deg, rgb(169,199,184,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(169,199,184,0.5) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(169,199,184,0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(169,199,184,0.5) 75%);
    position: absolute;
    content: "";
    width: 100%;
    top: 0;
    z-index: 0;
}.style_client_comments .style_knowledge_sessions {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    padding: 0 20px;
}.style_client_comments h4 {
    position: relative;
    color: #000000;
    margin-bottom: 100px;
    font-size: 29px;
    text-align: center;
    font-weight: 700;
}.style_client_comments h4::before {
    left: calc(50% - 20px);
    bottom: -50px;
    z-index: -1;
    content: "";
    transform: rotate(45deg);
    background: rgb(169,199,184,0.5);
    height: 40px;
    position: absolute;
    width: 40px;
}.style_client_comments h4::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    bottom: -20px;
    background: rgb(169,199,184);
    height: 2px;
    position: absolute;
    content: "";
}.style_client_comments .style_feedback_stories {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 40px;
    position: relative;
}.style_client_comments .style_student_perspectives {
    background: #ffffff;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border-radius: 29px;
    padding: 40px 30px 30px;
}.style_client_comments .style_student_perspectives:hover {
    transform: translateY(-15px);
}.style_client_comments .style_student_perspectives::before {
    border-radius: 29px;
    position: absolute;
    height: 100%;
    opacity: 0.2;
    transition: all 0.4s ease;
    top: 15px;
    content: "";
    z-index: -1;
    left: 15px;
    width: 100%;
    background: rgb(169,199,184,0.5);
}.style_client_comments .style_student_perspectives:hover::before {
    top: 5px;
    left: 5px;
}.style_client_comments .style_student_perspectives::after {
    border-radius: 29px;
    position: absolute;
    content: "";
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    left: 0;
    width: 100%;
    transition: all 0.4s ease;
    z-index: -2;
    top: 0;
}.style_client_comments .style_student_perspectives:hover::after {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}.style_client_comments .style_img_shadow {
    width: 100px;
    transition: all 0.4s ease;
    height: 100px;
    border-radius: 20px;
    border: 5px solid #ffffff;
    margin: -70px auto 25px;
    z-index: 3;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}.style_client_comments .style_student_perspectives:hover .style_img_shadow {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    transform: translateY(-5px);
}.style_client_comments .style_student_perspectives span {
    font-size: calc(16px * 1.2);
    transition: all 0.3s ease;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 600;
    display: block;
    text-align: center;
    position: relative;
}.style_client_comments .style_student_perspectives span::after {
    content: "";
    width: 40px;
    height: 2px;
    background: rgb(169,199,184);
    left: 50%;
    transition: all 0.3s ease;
    position: absolute;
    opacity: 0.5;
    bottom: -8px;
    transform: translateX(-50%);
}.style_client_comments .style_student_perspectives:hover span {
    color: rgb(169,199,184);
}.style_client_comments .style_student_perspectives:hover span::after {
    width: 60px;
    opacity: 1;
}.style_client_comments .style_student_perspectives p {
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.3s ease;
    color: #000000;
    text-align: center;
}.style_client_comments .style_student_perspectives:hover p {
    color: #000000;
}.style_client_comments .style_student_perspectives:nth-child(3n+1) {
    z-index: 3;
}.style_client_comments .style_student_perspectives:nth-child(3n+2) {
    z-index: 2;
}.style_client_comments .style_student_perspectives:nth-child(3n+3) {
    z-index: 1;
}.style_client_comments .style_student_perspectives:nth-child(3n+1)::before {
    background: rgb(169,199,184,0.5);
}.style_client_comments .style_student_perspectives:nth-child(3n+2)::before {
    background: rgb(124,169,148,0.5);
}.style_client_comments .style_student_perspectives:nth-child(3n+3)::before {
    background: rgb(169,199,184,0.5);
}.style_client_comments .style_student_perspectives:nth-child(3n+1):hover {
    z-index: 4;
}.style_client_comments .style_student_perspectives:nth-child(3n+2):hover {
    z-index: 4;
}.style_client_comments .style_student_perspectives:nth-child(3n+3):hover {
    z-index: 4;
}

@media (max-width: 992px) {.style_client_comments .style_feedback_stories {
    gap: 60px 30px;
    grid-template-columns: repeat(2, 1fr);
}.style_client_comments .style_img_shadow {
    margin-top: -60px;
    height: 90px;
    width: 90px;
}.style_client_comments .style_student_perspectives {
    padding: 35px 25px 25px;
}
}

@media (max-width: 768px) {.style_client_comments {
    padding: 80px 0;
}.style_client_comments h4 {
    margin-bottom: 80px;
}.style_client_comments .style_feedback_stories {
    margin: 0 auto;
    max-width: 400px;
    gap: 70px;
    grid-template-columns: 1fr;
}.style_client_comments .style_student_perspectives::before {
    left: 10px;
    top: 10px;
}.style_client_comments .style_student_perspectives:hover::before {
    top: 3px;
    left: 3px;
}.style_client_comments .style_img_shadow {
    width: 80px;
    margin-top: -50px;
    height: 80px;
}}.style_contact_information {
    padding: 100px 0;
    position: relative;
}.style_contact_information::before {
    z-index: 1;
    left: 0;
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    background: rgb(212,227,219);
    height: 100%;
    position: absolute;
    opacity: 0.85;
    content: '';
    width: 100%;
}.style_contact_information::after {
    bottom: 0;
    content: '';
    z-index: 1;
    background: rgb(169,199,184,0.5);
    position: absolute;
    clip-path: polygon(0 65%, 100% 25%, 100% 100%, 0 100%);
    height: 100%;
    left: 0;
    width: 100%;
}.style_contact_information .container {
    z-index: 2;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
}.style_contact_information .style_support_support {
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    border-radius: 17px;
    display: flex;
}.style_contact_information .style_inquiry_map {
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    transform-origin: left center;
    border-radius: 17px 0 0 17px;
    flex: 1;
    transform: rotateY(10deg);
    padding: 60px 40px;
}.style_contact_information .style_inquiry_map h3 {
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 32px;
    position: relative;
    letter-spacing: 2px;
    color: #000000;
}.style_contact_information .style_inquiry_map h3::before {
    width: 30px;
    background: rgb(169,199,184);
    top: -15px;
    left: 0;
    content: '';
    height: 5px;
    position: absolute;
}.style_contact_information .style_inquiry_map div {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    display: flex;
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 15px;
    background: #f5f7fa;
    border-radius: 10px;
    align-items: center;
}.style_contact_information .style_inquiry_map div:hover {
    transform: scale(1.05) translateZ(10px);
}.style_contact_information .style_inquiry_map svg {
    padding: 6px;
    margin-right: 15px;
    width: 30px;
    border-radius: 50%;
    height: 30px;
    background: #ffffff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}.style_contact_information .style_inquiry_map svg path {
    fill: rgb(169,199,184);
}.style_contact_information .style_inquiry_map span {
    font-weight: 400;
    color: #000000;
    font-size: 17px;
}.style_contact_information .style_inquiry_map a {
    font-weight: 600;
    text-decoration: none;
    color: rgb(169,199,184);
    position: relative;
}.style_contact_information .style_inquiry_map a::after {
    position: absolute;
    transition: width 0.3s ease;
    content: '';
    width: 0;
    height: 1px;
    left: 0;
    background: rgb(169,199,184);
    bottom: -2px;
}.style_contact_information .style_inquiry_map a:hover::after {
    width: 100%;
}.style_contact_information .style_query_form {
    padding: 60px 40px;
    transform-origin: right center;
    border-radius: 0 17px 17px 0;
    background: rgb(212,227,219);
    flex: 1.2;
    transform: rotateY(-5deg);
}.style_contact_information form {
    position: relative;
}.style_contact_information form h3 {
    text-align: center;
    color: rgb(169,199,184);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 32px;
    margin-bottom: 40px;
}.style_contact_information form input[type="text"],
.style_contact_information form input[type="email"] {
    width: 100%;
    margin-bottom: 25px;
    color: rgb(169,199,184);
    border: none;
    transition: all 0.3s ease;
    border-radius: 0;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    font-size: 17px;
}.style_contact_information form input[type="text"]:focus,
.style_contact_information form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 5px 10px -5px rgb(169,199,184,0.5);
    border-bottom-color: rgb(169,199,184);
}.style_contact_information form input::placeholder {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
}.style_contact_information .style_request_box {
    align-items: flex-start;
    display: flex;
    margin: 30px 0;
}.style_contact_information .style_request_box input[type="checkbox"] {
    appearance: none;
    width: 0;
    opacity: 0;
    position: absolute;
    height: 0;
    -webkit-appearance: none;
}.style_contact_information .style_request_box label {
    cursor: pointer;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 35px;
    position: relative;
    font-size: 13px;
}.style_contact_information .style_request_box label::before {
    top: 0;
    background: transparent;
    transition: all 0.3s ease;
    height: 22px;
    left: 0;
    content: '';
    position: absolute;
    width: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}.style_contact_information .style_request_box input[type="checkbox"]:checked + label::before {
    border-color: rgb(169,199,184);
    background: rgb(169,199,184);
}.style_contact_information .style_request_box input[type="checkbox"]:checked + label::after {
    width: 6px;
    top: 4px;
    height: 12px;
    content: '';
    position: absolute;
    border-width: 0 2px 2px 0;
    left: 8px;
    border: solid rgb(169,199,184);
    transform: rotate(45deg);
}.style_contact_information .style_request_box a {
    text-decoration: none;
    color: rgb(169,199,184);
    font-weight: 600;
    transition: color 0.3s ease;
}.style_contact_information .style_request_box a:hover {
    color: rgb(124,169,148);
}.style_contact_information .style_support_block {
    letter-spacing: 2px;
    overflow: hidden;
    position: relative;
    background: rgb(169,199,184);
    color: #ffffff;
    text-transform: uppercase;
    transition: all 0.4s ease;
    width: 100%;
    border: none;
    cursor: pointer;
    z-index: 1;
    font-size: 17px;
    padding: 18px 25px;
    font-weight: 700;
}.style_contact_information .style_support_block::before {
    height: 100%;
    top: 0;
    width: 0;
    content: '';
    left: 0;
    position: absolute;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgb(124,169,148);
    z-index: -1;
}.style_contact_information .style_support_block:hover::before {
    width: 100%;
}.style_contact_information .style_support_block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {.style_contact_information .style_support_support {
    transform-style: flat;
}.style_contact_information .style_inquiry_map,
    .style_contact_information .style_query_form {
    transform: none;
}
}

@media (max-width: 768px) {.style_contact_information {
    padding: 80px 0;
}.style_contact_information .style_support_support {
    flex-direction: column;
}.style_contact_information .style_inquiry_map,
    .style_contact_information .style_query_form {
    width: 100%;
    border-radius: 0;
    padding: 40px 30px;
}.style_contact_information .style_inquiry_map {
    border-radius: 17px 17px 0 0;
}.style_contact_information .style_query_form {
    border-radius: 0 0 17px 17px;
}.style_contact_information .style_inquiry_map h3,
    .style_contact_information form h3 {
    font-size: calc(32px * 0.9);
    margin-bottom: 30px;
}
}

@media (max-width: 576px) {.style_contact_information {
    padding: 60px 0;
}.style_contact_information::before,
    .style_contact_information::after {
    opacity: 0.9;
    clip-path: none;
}.style_contact_information::before {
    height: 60%;
}.style_contact_information::after {
    top: 60%;
    height: 40%;
}.style_contact_information .style_inquiry_map,
    .style_contact_information .style_query_form {
    padding: 30px 20px;
}.style_contact_information .style_inquiry_map h3,
    .style_contact_information form h3 {
    font-size: calc(32px * 0.8);
    margin-bottom: 25px;
}.style_contact_information .style_inquiry_map div {
    margin-bottom: 20px;
    padding: 12px;
}.style_contact_information form input[type="text"],
    .style_contact_information form input[type="email"] {
    margin-bottom: 20px;
    padding: 15px 20px;
}.style_contact_information .style_request_box {
    margin: 25px 0;
}.style_contact_information .style_support_block {
    padding: 15px 20px;
}}header .top_plank {
    background: rgb(169,199,184);
    color:  #ffffff;
}header .top_plank .style_plank_header div svg, header .top_plank .style_plank_header div svg path {
    fill: #ffffff;
}header .top_plank .style_plank_header div span {
    color: #ffffff;
}header .top_plank .style_plank_header {
    font-size: 14px;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 15px 0 10px 0;
    align-items: center;
    line-height: 21px;
}header .top_plank .style_plank_header div {
    justify-content: flex-start;
    display: flex;
    align-items: center;
    margin-right: 24px;
}header .top_plank .style_plank_header div img, header .top_plank .style_plank_header div svg {
    height: 16px;
    margin-right: 8px;
    width: 16px;
}