﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}svg {
    height: 30px;
    width: 30px;
}.container {
    max-width: 100%;
    width: 1194px;
    margin: auto;
}.p_main_mentor {
    flex: 1 0 auto;
}::-webkit-scrollbar {
    padding: 0px;
    background: rgb(117,158,159);
    width: 16px;
}::-webkit-scrollbar-track {
    border-radius: 5.7vw;
    background: rgb(163,190,190,0.5);
    margin: 3px 0;
}::-webkit-scrollbar-thumb {
    transition: all 1.5s cubic-bezier(0.42, 0, 0.58, 1);
    background: rgb(255, 255, 255, 0.5);
    border-radius: 3%;
}::-webkit-scrollbar-thumb:hover {
    box-shadow: 5px -4px 15px 5px rgba(0, 0, 0, 0.3);
    background: rgb(163,190,190);
}::-webkit-scrollbar-thumb:active {
    background: rgb(207,222,223);
    transform: scale(0.95);
}.s_grid-container {
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    display: flex;
}header,footer {
    width: 100%;
}a {
    text-decoration: none;
    color: inherit;
}html,body {
    scroll-behavior: auto;
    height: 100%;
    min-height: 100%;
    font-family: Arial, sans-serif;
    scroll-snap-type: none;
    auto
contain
touch-action: none;
    color: #000000;
}.A_idea_pool {
    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;
}}
.y_course_program_info {
    overflow: hidden;
    background-color: rgb(207,222,223);
    padding: 100px 0;
    position: relative;
}.y_course_program_info::before {
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, rgb(163,190,190,0.5) 0%, transparent 50%, rgb(117,158,159,0.5) 100%);
    z-index: 1;
    left: 0;
    content: "";
    position: absolute;
    height: 100%;
}.y_course_program_info::after {
    border-radius: 50%;
    background: radial-gradient(circle, rgb(117,158,159,0.5) 0%, transparent 80%);
    width: 400px;
    z-index: 1;
    content: "";
    right: -100px;
    height: 400px;
    top: -100px;
    position: absolute;
    animation: rotate 20s linear infinite;
}.y_course_program_info .container {
    z-index: 2;
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}.y_course_program_info .X_tech_training {
    gap: 40px;
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
}.y_course_program_info .m_text_cube {
    align-items: center;
    gap: 30px;
    grid-template-columns: 1fr 1fr;
    display: grid;
}.y_course_program_info .m_text_cube h2 {
    position: relative;
    font-size: 28px;
    padding-left: 20px;
    font-weight: 700;
    color: #000000;
    border-left: 4px solid rgb(163,190,190);
    grid-column: 1 / -1;
    margin-bottom: 20px;
}.y_course_program_info .description {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    line-height: 1.8;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    color: #000000;
}.y_course_program_info .description:first-of-type {
    overflow: hidden;
    position: relative;
}.y_course_program_info .description:first-of-type::before {
    left: -10px;
    height: 40px;
    content: "";
    width: 40px;
    z-index: -1;
    top: -10px;
    border-radius: 50%;
    background-color: rgb(163,190,190,0.5);
    position: absolute;
}.y_course_program_info .description:last-of-type {
    position: relative;
    overflow: hidden;
}.y_course_program_info .description:last-of-type::before {
    z-index: -1;
    border-radius: 50%;
    content: "";
    right: -10px;
    position: absolute;
    bottom: -10px;
    background-color: rgb(117,158,159,0.5);
    height: 40px;
    width: 40px;
}.y_course_program_info .description:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}.y_course_program_info .d_pic_border {
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
    margin: 40px 0;
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    overflow: hidden;
}.y_course_program_info .d_pic_border::before {
    bottom: 0;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
    left: 0;
    content: "";
    z-index: 1;
}.y_course_program_info .d_pic_border::after {
    transform: translateX(-50%);
    top: -20px;
    left: 50%;
    border-radius: 50%;
    animation: glow 4s infinite alternate;
    background: rgb(163,190,190);
    content: "";
    opacity: 0.7;
    width: 90%;
    height: 10px;
    filter: blur(10px);
    position: absolute;
}.y_course_program_info .d_pic_border:hover {
    transform: perspective(1000px) rotateX(0deg);
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
        width: 90%;
    }
    100% {
        opacity: 0.8;
        width: 95%;
    }
}

@media screen and (max-width: 1024px) {.y_course_program_info {
    padding: 80px 0;
}.y_course_program_info .d_pic_border {
    margin: 30px 0;
    height: 350px;
}
}

@media screen and (max-width: 768px) {.y_course_program_info {
    padding: 60px 0;
}.y_course_program_info .m_text_cube {
    grid-template-columns: 1fr;
    gap: 20px;
}.y_course_program_info .description {
    padding: 25px;
}.y_course_program_info .d_pic_border {
    height: 300px;
    margin: 25px 0;
}.y_course_program_info h2 {
    font-size: calc(28px * 0.9);
}
}

@media screen and (max-width: 480px) {.y_course_program_info {
    padding: 40px 0;
}.y_course_program_info .X_tech_training {
    gap: 30px;
}.y_course_program_info .m_text_cube h2 {
    padding-left: 15px;
    font-size: calc(28px * 0.8);
}.y_course_program_info .description {
    padding: 20px;
    font-size: calc(16px * 0.95);
}.y_course_program_info .d_pic_border {
    transform: perspective(1000px) rotateX(0deg);
    height: 250px;
    margin: 20px 0;
}}.z_education_framework {
    padding: 6rem 0;
    margin: 3rem 0;
    background: linear-gradient(135deg, rgb(207,222,223) 0%, rgb(117,158,159,0.5) 100%);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}.z_education_framework::before {
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.7;
    transform: translateY(-5%);
    content: "";
    background: linear-gradient(to right, rgb(117,158,159,0.5) 0%, transparent 20%, transparent 80%, rgb(117,158,159,0.5) 100%);
    top: 0;
}.z_education_framework::after {
    content: "";
    opacity: 0.1;
    height: 200px;
    top: -50px;
    right: -50px;
    width: 200px;
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 15s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95);
    z-index: 0;
    position: absolute;
    background: rgb(117,158,159);
}.z_education_framework:hover::before {
    transform: translateY(0);
}.z_education_framework .D_virtual_study {
    display: grid;
    margin: 0 auto;
    padding: 0 1.5rem;
    gap: 2rem;
    z-index: 2;
    grid-template-columns: 1fr;
    max-width: 1200px;
    position: relative;
}.z_education_framework .D_virtual_study > div {
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.6s ease;
    transform-style: preserve-3d;
    padding: 3rem;
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
}.z_education_framework .D_virtual_study > div::before {
    transition: height 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(to bottom, rgb(163,190,190), rgb(117,158,159));
    top: 0;
    height: 0;
    width: 4px;
    position: absolute;
    left: 0;
    content: "";
}.z_education_framework .D_virtual_study > div:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08), 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.z_education_framework .D_virtual_study > div:hover::before {
    height: 100%;
}.z_education_framework h3 {
    font-size: calc(30px * 0.9);
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    transform: translateZ(20px);
    position: relative;
    display: inline-block;
}.z_education_framework h3::after {
    transform-origin: left;
    height: 3px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    bottom: -8px;
    left: 0;
    transform: scaleX(0.7);
    width: 60%;
    content: "";
    position: absolute;
    background: linear-gradient(to right, rgb(163,190,190), rgb(117,158,159));
}.z_education_framework .D_virtual_study > div:hover h3::after {
    transform: scaleX(1);
}.z_education_framework p {
    transform: translateZ(5px);
    margin: 0;
    font-size: 12px;
    font-family: Arial, sans-serif;
    position: relative;
    line-height: 1.7;
    color: #000000;
}.z_education_framework p span {
    padding-left: 1rem;
    display: block;
    border-left: 1px solid rgb(117,158,159,0.5);
    position: relative;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.15;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

@media screen and (min-width: 768px) {.z_education_framework {
    padding: 8rem 0;
}.z_education_framework .D_virtual_study {
    padding: 0 3rem;
}.z_education_framework .D_virtual_study > div {
    padding: 4rem;
}.z_education_framework h3 {
    font-size: 30px;
    margin-bottom: 2rem;
}.z_education_framework p {
    line-height: 1.75;
    font-size: calc(12px * 1.05);
}.z_education_framework p span {
    padding-left: 2rem;
}
}

@media screen and (min-width: 992px) {.z_education_framework {
    padding: 10rem 0;
}.z_education_framework .D_virtual_study > div {
    margin-left: 5%;
    width: 90%;
}.z_education_framework h3 {
    font-size: calc(30px * 1.1);
}.z_education_framework p span {
    column-count: 2;
    padding-left: 0;
    border-left: none;
    column-gap: 3rem;
}
}

@media (prefers-reduced-motion: reduce) {.z_education_framework::after {
    animation: none;
}.z_education_framework .D_virtual_study > div,
    .z_education_framework .D_virtual_study > div:hover {
    transform: none;
    transition: box-shadow 0.3s ease;
}
}

@media (hover: none) {.z_education_framework .D_virtual_study > div {
    transform: none;
}.z_education_framework .D_virtual_study > div:hover {
    transform: none;
}}.w_cookieUsageContainer {
    background: rgb(207,222,223);
    position: fixed;
    z-index: 1050;
    border-top: 3px solid rgb(163,190,190);
    bottom: 0;
    padding: 20px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    width: 100%;
}.v_privacy_opt {
    flex-wrap: nowrap;
    display: flex;
    align-items: center;
    z-index: 1;
    justify-content: space-between;
}.l_consent_ack {
    flex-shrink: 0;
    margin-right: 20px;
}#s_cookie_box_notice {
    display: none;
}#s_cookie_box_notice:checked ~ .w_cookieUsageContainer {
    visibility: hidden;
    opacity: 0;
}.l_consent_ack svg {
    fill: rgb(163,190,190);
    transition: fill 0.3s ease-in-out;
    height: 60px;
    width: 60px;
}.I_manage_cookies {
    margin-right: 20px;
    flex-grow: 1;
}.I_manage_cookies h5 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
    color: rgb(163,190,190);
}.I_manage_cookies p {
    color: #000000;
    margin-bottom: 0;
    font-size: 12px;
}.L_accept_cookies {
    margin-left: 10px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
}.L_accept_cookies {
    color: #ffffff;
    border: 1px solid rgb(163,190,190);
    background-color: rgb(163,190,190);
}.L_accept_cookies:hover {
    border-color: #000000;
    background-color: rgba(0, 0, 0, 0.5);
}.w_cookieUsageContainer p a {
    color: rgb(163,190,190);
    text-decoration: underline;
}.w_cookieUsageContainer p a:hover {
    color: #000000;
}
@media (max-width: 1200px) {.I_manage_cookies h5 {
    font-size: calc(20px - 2px);
}.I_manage_cookies p {
    font-size: calc(12px - 2px);
}.L_accept_cookies {
    padding: 8px 16px;
    font-size: calc(16px - 2px);
}
}
@media (max-width: 800px) {.v_privacy_opt {
    align-items: center;
    flex-direction: column;
}.l_consent_ack {
    margin-bottom: 15px;
}.I_manage_cookies {
    margin-bottom: 20px;
    text-align: center;
}.L_accept_cookies {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
}}
header {
    background: rgb(117,158,159);
    overflow: visible;
    position: relative;
    z-index: 100;
    padding: 0;
    margin-top: 0;
}header::before {
    position: absolute;
    z-index: 0;
    content: '';
    background-size: 20px 20px;
    left: 0;
    height: 100%;
    top: 0;
    background-image: linear-gradient(0deg, 
        rgba(255, 255, 255, 0.02) 1px, 
        transparent 1px),
    linear-gradient(90deg, 
        rgba(255, 255, 255, 0.02) 1px, 
        transparent 1px);
    width: 100%;
}header::after {
    content: '';
    top: 0;
    position: absolute;
    height: 100%;
    left: 0;
    background: 
        linear-gradient(to right, transparent 0%, rgb(117,158,159,0.5) 50%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, rgb(117,158,159,0.5) 50%, transparent 100%);
    width: 100%;
    z-index: 0;
}header .T_site_main {
    z-index: 5;
    align-items: center;
    padding: 1.3rem 2.5rem;
    position: relative;
    justify-content: space-between;
    display: flex;
}header .B_top_master {
    flex: 0 0 auto;
    border-left: 3px solid rgb(163,190,190);
    padding: 0.5rem 0.7rem;
    z-index: 2;
    overflow: hidden;
    margin-right: 2rem;
    position: relative;
    transition: all 0.3s ease;
}header .B_top_master::before {
    position: absolute;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transition: all 0.4s ease;
    width: 100%;
    content: '';
    opacity: 0;
    height: 100%;
}header .B_top_master:hover {
    transform: translateX(5px);
    box-shadow: 5px 0 15px -5px rgb(163,190,190);
}header .B_top_master:hover::before {
    opacity: 1;
    transform: scaleX(1);
}header .j_page_nav {
    transition: all 0.3s ease;
    display: block;
    position: relative;
}header .j_page_nav::after {
    background: rgb(163,190,190);
    right: -5px;
    opacity: 0;
    position: absolute;
    transition: all 0.3s ease;
    content: '';
    height: 10px;
    width: 10px;
    bottom: -5px;
}header .j_page_nav:hover::after {
    opacity: 1;
}header .j_page_nav img {
    max-height: 40px;
    filter: brightness(1.1);
}header .C_main_lead {
    z-index: 2;
    padding: 0;
    position: relative;
    margin: 0;
    list-style: none;
    display: flex;
}header .C_main_lead::before {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background: rgb(163,190,190);
    height: 1px;
    right: -20px;
    content: '';
    width: 40px;
}header .v_head_train {
    margin: 0 1px;
    position: relative;
}header .v_head_train a {
    border-right: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    padding: 0 1.2rem;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    z-index: 1;
    display: flex;
    justify-content: center;
    font-size: 12px;
    overflow: hidden;
    height: 45px;
    color: #ffffff;
    border-left: 1px solid transparent;
    align-items: center;
}header .v_head_train a::before {
    top: 0;
    background: rgb(163,190,190);
    width: 100%;
    position: absolute;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
    left: 0;
    content: '';
}header .v_head_train a:hover {
    border-left-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-right-color: rgba(255, 255, 255, 0.2);
}header .v_head_train a:hover::before {
    transform: translateX(0);
}header .v_head_train a::after {
    width: 100%;
    transform-origin: right;
    top: 0;
    transition: transform 0.3s ease;
    position: absolute;
    transform: scaleX(0);
    content: '';
    left: 0;
    height: 2px;
    background: rgb(163,190,190);
}header .v_head_train a:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}header .v_head_train::before {
    height: 5px;
    top: 50%;
    transition: transform 0.3s ease;
    width: 5px;
    position: absolute;
    transform: translateY(-50%) scale(0);
    background: rgb(163,190,190);
    left: -10px;
    content: '';
}header .v_head_train:hover::before {
    transform: translateY(-50%) scale(1);
}header .T_site_main::before {
    height: 1px;
    background: rgb(163,190,190);
    position: absolute;
    width: 30px;
    top: 20px;
    left: 20px;
    content: '';
}header .T_site_main::after {
    height: 30px;
    content: '';
    left: 20px;
    position: absolute;
    background: rgb(163,190,190);
    width: 1px;
    top: 20px;
}.p_main_mentor {
    background: rgb(207,222,223);
    z-index: 1;
    position: relative;
    padding-top: 2rem;
}@keyframes typingCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

header .v_head_train:last-child::after {
    color: rgb(163,190,190);
    font-weight: 700;
    content: '|';
    top: 50%;
    animation: typingCursor 1s infinite;
    right: -10px;
    position: absolute;
    transform: translateY(-50%);
}

@media (min-width: 1400px) {header .T_site_main {
    max-width: 1320px;
    margin: 0 auto;
}header .v_head_train {
    margin: 0 2px;
}header .v_head_train a {
    padding: 0 1.5rem;
}
}

@media (max-width: 991px) {header .T_site_main {
    padding: 1rem 2rem;
    flex-wrap: wrap;
}header .B_top_master {
    margin-right: 0;
    margin-bottom: 0;
}header .C_main_lead {
    justify-content: flex-end;
    flex-basis: 100%;
    margin-top: 1rem;
}header .C_main_lead::before {
    display: none;
}header .v_head_train a {
    padding: 0 1rem;
    height: 40px;
    font-size: calc(12px - 1px);
}header .v_head_train::before {
    display: none;
}header .T_site_main::before,
    header .T_site_main::after {
    display: none;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .T_site_main {
    padding: 0.8rem 1.5rem;
}header .B_top_master {
    max-width: 140px;
    padding: 0.4rem 0.6rem;
}header .j_page_nav img {
    max-height: 35px;
}header .C_main_lead {
    justify-content: flex-start;
    margin-top: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}header .C_main_lead::-webkit-scrollbar {
    height: 3px;
}header .C_main_lead::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(163,190,190);
}header .v_head_train {
    flex: 0 0 auto;
    margin: 0;
}header .v_head_train a {
    font-size: calc(12px - 2px);
    letter-spacing: 0.5px;
    white-space: nowrap;
    height: 35px;
    padding: 0 0.8rem;
}header .v_head_train:last-child::after {
    display: none;
}
}

@media (max-width: 479px) {header .T_site_main {
    padding: 0.7rem 1.2rem;
}header .B_top_master {
    padding: 0.3rem 0.5rem;
    max-width: 120px;
}header .v_head_train a {
    font-size: calc(12px - 3px);
    height: 32px;
    padding: 0 0.6rem;
}}.n_confidential_asylum {
    color: #ffffff;
    padding: 60px;
    height: auto;
    width: 100%;
}.n_confidential_asylum h1 {
    color: rgb(163,190,190);
    grid-column: span 2;
    margin-bottom: 40px;
    font-size: 40px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid rgb(117,158,159);
    font-weight: 700;
}.n_confidential_asylum h2 {
    border-bottom: 2px solid rgb(163,190,190);
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 600;
    margin-top: 0;
    padding-bottom: 10px;
    color: rgb(117,158,159);
}.n_confidential_asylum ul, .n_confidential_asylum ol {
    padding-left: 0;
    list-style: none;
    margin: 0;
}.n_confidential_asylum li {
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 20px;
    color: #000000;
    border-left: 4px solid rgb(163,190,190);
    background: rgb(163,190,190,0.5);
    border-radius: 10px;
}.n_confidential_asylum section {
    padding: 30px;
    width: 100%;
    background: rgb(117,158,159,0.5);
    border-radius: 15px;
}.n_confidential_asylum p, .n_confidential_asylum span, .n_confidential_asylum div {
    line-height: 1.8;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin-bottom: 20px;
    color: #000000;
}

@media only screen and (max-width: 800px) {.n_confidential_asylum {
    grid-template-columns: 1fr;
    padding: 30px 15px;
}.n_confidential_asylum h1 {
    font-size: calc(18px - 10px);
}.n_confidential_asylum h2 {
    font-size: calc(18px - 8px);
}.n_confidential_asylum li {
    font-size: calc(14px - 2px);
    padding: 8px 15px;
}}.p_contact {
    overflow: hidden;
    padding: 100px 0;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    background: linear-gradient(120deg, rgb(163,190,190,0.5) 0%, rgb(207,222,223) 100%);
}.p_contact::before {
    left: 0;
    opacity: 0.2;
    content: '';
    position: absolute;
    background: 
        linear-gradient(90deg, transparent 95%, rgb(117,158,159,0.5) 95%) 0 0 / 20px 100%,
        linear-gradient(180deg, transparent 95%, rgb(163,190,190,0.5) 95%) 0 0 / 100% 20px;
    right: 0;
    animation: gridMove 25s linear infinite;
    bottom: 0;
    top: 0;
}.p_contact::after {
    left: -50%;
    right: -50%;
    background: radial-gradient(circle at center, rgb(117,158,159) 0%, transparent 50%);
    z-index: 0;
    top: -50%;
    animation: pulseEffect 10s ease-in-out infinite;
    position: absolute;
    bottom: -50%;
    content: '';
    opacity: 0.03;
}@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}
@keyframes pulseEffect {
    0%, 100% {
        transform: scale(1);
        opacity: 0.03;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.05;
    }
}
.p_contact .container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
    padding: 0 20px;
}.p_contact .G_reach_team {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 5px 15px rgba(0, 0, 0, 0.05) inset;
    position: relative;
}.p_contact .G_reach_team::before {
    content: '';
    position: absolute;
    background-size: 200% 100%;
    animation: gradientFlow 3s linear infinite;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, rgb(163,190,190), rgb(117,158,159), rgb(163,190,190));
    height: 3px;
    width: 100%;
}@keyframes gradientFlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}
.p_contact .G_reach_team::after {
    content: '';
    z-index: -1;
    top: -75px;
    background: rgb(163,190,190,0.5);
    opacity: 0.2;
    position: absolute;
    right: -75px;
    height: 150px;
    width: 150px;
    border-radius: 50%;
}.p_contact h3 {
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgb(163,190,190);
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 28px;
}.p_contact h3::after {
    width: 50px;
    left: 0;
    height: 2px;
    content: '';
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgb(163,190,190);
    bottom: 0;
    background: rgb(163,190,190);
    position: absolute;
}.p_contact .G_reach_team:hover h3::after {
    width: 100px;
}.p_contact .e_start_chat {
    position: relative;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.8;
    padding: 15px;
    font-size: calc(13px + 0.05rem);
    background: rgb(207,222,223);
    border-radius: 10px;
    border-left: 3px solid rgb(117,158,159);
    color: #000000;
}.p_contact .s_connect_experts {
    gap: 25px;
    display: grid;
    position: relative;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.p_contact .s_connect_experts::before {
    left: 0;
    width: 30%;
    box-shadow: 0 0 5px rgb(163,190,190);
    top: -20px;
    position: absolute;
    content: '';
    background: rgb(163,190,190);
    height: 1px;
}.p_contact .s_connect_experts::after {
    height: 1px;
    right: 0;
    position: absolute;
    width: 60%;
    top: -20px;
    background: linear-gradient(to right, rgb(163,190,190), transparent);
    content: '';
}.p_contact .s_connect_experts span {
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    z-index: 1;
    position: relative;
    background: #ffffff;
    padding: 20px;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    flex-direction: column;
}.p_contact .s_connect_experts span::before {
    background: linear-gradient(135deg, rgb(207,222,223) 0%, #ffffff 100%);
    transform: translateX(0) translateY(0) rotate(45deg);
    content: '';
    height: 300%;
    left: -100%;
    z-index: -1;
    top: -100%;
    transition: transform 0.6s ease;
    position: absolute;
    width: 300%;
}.p_contact .s_connect_experts span:hover {
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 0 4px rgb(163,190,190,0.5);
    transform: translateY(-5px);
}.p_contact .s_connect_experts span p {
    display: flex;
    margin: 0 0 5px 0;
    font-size: 13px;
    align-items: center;
    color: #000000;
    font-weight: 600;
    line-height: 1.5;
}.p_contact .s_connect_experts span svg {
    height: 20px;
    transition: all 0.3s ease;
    margin-right: 10px;
    fill: rgb(163,190,190);
    width: 20px;
}.p_contact .s_connect_experts span:hover svg {
    fill: rgb(117,158,159);
    transform: scale(1.2);
}.p_contact .s_connect_experts span svg path {
    stroke-linejoin: round;
    stroke: #ffffff;
    stroke-width: 0.5;
    stroke-linecap: round;
    transition: all 0.3s ease;
}.p_contact .s_connect_experts span:hover svg path {
    stroke-width: 1;
    stroke: rgb(163,190,190);
}.p_contact .s_connect_experts span span {
    background: transparent;
    box-shadow: none;
    color: #000000;
    padding: 0;
    margin: 5px 0 0 0;
    font-weight: 400;
    display: inline-block;
}.p_contact .s_connect_experts span span::before {
    display: none;
}.p_contact .s_connect_experts span span a {
    color: rgb(163,190,190);
    transition: all 0.3s ease;
    border-radius: 10px;
    display: flex;
    padding: 2px 5px;
    text-decoration: none;
    align-items: center;
    position: relative;
}.p_contact .s_connect_experts span span a svg {
    height: 16px;
    margin-right: 5px;
    opacity: 0.8;
    width: 16px;
}.p_contact .s_connect_experts span span a::before {
    width: 100%;
    bottom: 0;
    background: rgb(163,190,190);
    transform: scaleX(0);
    content: '';
    left: 0;
    transition: transform 0.3s ease;
    height: 1px;
    position: absolute;
    transform-origin: right;
}.p_contact .F_contact_details {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    grid-column: 1 / -1;
    border-radius: 18px;
    padding: 30px;
    margin-top: 20px;
    position: relative;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    overflow: hidden;
}.p_contact .F_contact_details::before {
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    opacity: 0.3;
    content: '';
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 98%, rgb(163,190,190,0.5) 98%) 0 0 / 20px 20px,
        linear-gradient(-45deg, transparent 98%, rgb(117,158,159,0.5) 98%) 0 0 / 20px 20px;
}.p_contact .F_contact_details h4 {
    display: flex;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    font-weight: 700;
    align-items: center;
    color: rgb(163,190,190);
    font-size: 24px;
}.p_contact .F_contact_details h4::before {
    left: 0;
    content: '';
    height: 100%;
    width: 4px;
    border-radius: 10px;
    top: 0;
    background: rgb(163,190,190);
    position: absolute;
}.p_contact .F_contact_details h4 svg {
    margin-right: 10px;
    width: 22px;
    fill: rgb(163,190,190);
    height: 22px;
}.p_contact .F_contact_details h4 svg path {
    stroke-width: 0.5;
    stroke: #ffffff;
}.p_contact .F_contact_details span {
    background: rgb(207,222,223);
    z-index: 1;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    color: #000000;
    padding: 12px 15px;
    margin-bottom: 8px;
    display: flex;
    border-radius: 10px;
    font-size: 13px;
    align-items: center;
}.p_contact .F_contact_details span svg {
    margin-right: 8px;
    height: 16px;
    fill: rgb(117,158,159);
    transition: all 0.3s ease;
    width: 16px;
}.p_contact .F_contact_details span svg path {
    stroke-width: 0.3;
    stroke: #ffffff;
}
@media (max-width: 991px) {.p_contact {
    padding: 70px 0;
}.p_contact .G_reach_team {
    padding: 40px;
}.p_contact h3 {
    font-size: calc(28px - 0.2rem);
}.p_contact .s_connect_experts {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}.p_contact .F_contact_details {
    padding: 25px;
}.p_contact .s_connect_experts span svg {
    width: 18px;
    margin-right: 8px;
    height: 18px;
}
}
@media (max-width: 767px) {.p_contact {
    padding: 50px 0;
}.p_contact .G_reach_team {
    padding: 30px;
}.p_contact h3 {
    font-size: calc(28px - 0.3rem);
}.p_contact .e_start_chat {
    margin-bottom: 30px;
    padding: 12px;
}.p_contact .s_connect_experts {
    gap: 15px;
    grid-template-columns: 1fr;
}.p_contact .s_connect_experts span {
    padding: 15px;
}.p_contact .F_contact_details span {
    padding: 10px 12px;
}.p_contact .s_connect_experts span svg {
    height: 16px;
    width: 16px;
    margin-right: 6px;
}
}
@media (max-width: 480px) {.p_contact {
    border-radius: 10px;
    padding: 40px 0;
}.p_contact .container {
    padding: 0 15px;
}.p_contact .G_reach_team {
    padding: 25px 20px;
}.p_contact h3 {
    font-size: calc(28px - 0.4rem);
    margin-bottom: 20px;
}.p_contact .e_start_chat {
    margin-bottom: 25px;
    padding: 10px;
    font-size: 13px;
}.p_contact .s_connect_experts span {
    padding: 12px;
}.p_contact .F_contact_details {
    padding: 20px 15px;
    margin-top: 15px;
}.p_contact .F_contact_details h4 {
    margin-bottom: 15px;
}.p_contact .F_contact_details span {
    padding: 8px 10px;
    margin-bottom: 6px;
}.p_contact .s_connect_experts span svg {
    height: 14px;
    margin-right: 5px;
    width: 14px;
}.p_contact .F_contact_details h4 svg {
    height: 18px;
    margin-right: 8px;
    width: 18px;
}.p_contact .F_contact_details span svg {
    margin-right: 6px;
    height: 14px;
    width: 14px;
}}.C_contact_box {
    padding: 90px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, rgb(207,222,223) 0%, rgb(163,190,190,0.5) 100%);
}.C_contact_box::before {
    content: "";
    top: 0;
    width: 100%;
    position: absolute;
    opacity: 0.03;
    background: repeating-linear-gradient(
        -45deg,
        rgb(163,190,190,0.5),
        rgb(163,190,190,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    height: 100%;
    left: 0;
}.C_contact_box .container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    padding: 0 20px;
}.C_contact_box h2 {
    font-family: Arial, sans-serif;
    font-size: 43px;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    position: relative;
    color: #000000;
}.C_contact_box .z_help_card {
    background: #ffffff;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    display: flex;
}.C_contact_box .d_pic_border {
    width: 100%;
    position: relative;
    height: 200px;
}.C_contact_box .X_support_panel {
    position: relative;
    width: 100%;
    padding: 50px;
}.C_contact_box form {
    width: 100%;
}.C_contact_box form h3 {
    margin-bottom: 30px;
    color: #000000;
    font-weight: 700;
    font-family: Arial, sans-serif;
    display: inline-block;
    position: relative;
    font-size: 24px;
}.C_contact_box form h3::after {
    content: "";
    position: absolute;
    background: rgb(163,190,190);
    width: 100%;
    left: 0;
    bottom: -10px;
    border-radius: 1.5px;
    height: 3px;
}.C_contact_box form input[type="text"] {
    font-size: 12px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    background: rgb(207,222,223);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-bottom: 20px;
    padding: 15px 20px;
    width: 100%;
    color: #000000;
}.C_contact_box form input[type="text"]:focus {
    outline: none;
    border-color: rgb(163,190,190);
}.C_contact_box form input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.35);
}.C_contact_box .z_query_request {
    margin-bottom: 30px;
    align-items: flex-start;
    display: flex;
}.C_contact_box .z_query_request input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.C_contact_box .z_query_request label {
    cursor: pointer;
    position: relative;
    color: #000000;
    font-size: 12px;
    line-height: 1.6;
    padding-left: 35px;
}.C_contact_box .z_query_request label::before {
    content: "";
    top: 2px;
    left: 0;
    position: absolute;
    border-radius: 10px;
    width: 22px;
    background: rgb(207,222,223);
    height: 22px;
    transition: all 0.3s ease;
}.C_contact_box .z_query_request input[type="checkbox"]:checked + label::before {
    background: rgb(163,190,190);
}.C_contact_box .z_query_request input[type="checkbox"]:checked + label::after {
    left: 8px;
    width: 6px;
    border-right: 2px solid #ffffff;
    content: "";
    position: absolute;
    border-bottom: 2px solid #ffffff;
    height: 12px;
    top: 5px;
    transform: rotate(45deg);
}.C_contact_box .z_query_request label a {
    color: rgb(163,190,190);
    text-decoration: none;
    transition: all 0.3s ease;
}.C_contact_box .z_query_request label a:hover {
    text-decoration: underline;
}.C_contact_box form .V_query_list {
    overflow: hidden;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    padding: 16px 20px;
    color: #ffffff;
    cursor: pointer;
    text-align: center;
    border: none;
    position: relative;
    background: rgb(163,190,190);
}.C_contact_box form .V_query_list:hover {
    background: rgb(117,158,159);
}.C_contact_box svg {
    height: 20px;
    fill: rgb(163,190,190);
    width: 20px;
}.C_contact_box svg path {
    transition: fill 0.3s ease;
    fill: rgb(163,190,190);
}

@media screen and (min-width: 768px) {.C_contact_box .z_help_card {
    flex-direction: row;
    max-width: 1000px;
}.C_contact_box .d_pic_border {
    width: 40%;
    height: auto;
    min-height: 400px;
}.C_contact_box .X_support_panel {
    width: 60%;
}
}

@media screen and (min-width: 992px) {.C_contact_box .d_pic_border {
    width: 50%;
}.C_contact_box .X_support_panel {
    width: 50%;
    padding: 60px;
}
}

@media screen and (min-width: 1200px) {.C_contact_box .z_help_card {
    max-width: 1100px;
}.C_contact_box .d_pic_border {
    min-height: 500px;
}
}

@media screen and (max-width: 576px) {.C_contact_box {
    padding: 60px 0;
}.C_contact_box h2 {
    margin-bottom: 30px;
    font-size: calc(43px * 0.7);
}.C_contact_box .X_support_panel {
    padding: 30px 20px;
}.C_contact_box form h3 {
    font-size: calc(24px * 0.9);
}}.c_metrics_summary {
    padding: 120px 0;
    color: #ffffff;
    overflow: hidden;
    position: relative;
}.c_metrics_summary::before {
    position: absolute;
    height: 100%;
    z-index: 1;
    width: 100%;
    left: 0;
    content: "";
    top: 0;
    opacity: 0.9;
    background: linear-gradient(135deg, #000000 0%, rgba(0, 0, 0, 0.95) 100%);
}.c_metrics_summary::after {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgb(163,190,190,0.5) 0%, transparent 70%);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.1;
}.c_metrics_summary .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 5;
}.c_metrics_summary .Y_statistics_extra {
    border-radius: 12px;
    overflow: hidden;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    backdrop-filter: blur(10px);
}.c_metrics_summary .M_success_statistics {
    align-items: center;
    padding: 15px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    height: 60px;
    display: flex;
    background: linear-gradient(135deg, rgb(163,190,190) 0%, rgb(117,158,159) 100%);
    width: 60px;
    justify-content: center;
    margin-right: 20px;
    border-radius: 10px;
}.c_metrics_summary .M_success_statistics svg {
    height: 100%;
    width: 100%;
    fill: #ffffff;
}.c_metrics_summary .M_success_statistics svg path {
    fill: #ffffff;
}.c_metrics_summary .d_pro_statistics {
    font-size: 29px;
    font-weight: 700;
    margin: 0 0 10px;
    position: relative;
}.c_metrics_summary .N_career_statistics {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    max-width: 700px;
}.c_metrics_summary .F_benefits_block {
    display: flex;
    overflow-x: auto;
    margin: 0 -10px;
    padding-bottom: 10px;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
}.c_metrics_summary .F_benefits_block::-webkit-scrollbar {
    display: none;
}.c_metrics_summary .F_benefits_block::after {
    bottom: 0;
    position: absolute;
    left: 10px;
    right: 10px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%, 
        rgba(255, 255, 255, 0.1) 80%, 
        transparent 100%);
    content: "";
}.c_metrics_summary .g_class_benefits {
    min-width: calc(25% - 20px);
    position: relative;
    display: flex;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-direction: column;
    border-radius: 8px;
    text-align: center;
    padding: 20px 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    margin: 0 10px;
}.c_metrics_summary .g_class_benefits::before {
    background: linear-gradient(90deg, rgb(163,190,190) 0%, rgb(117,158,159) 100%);
    position: absolute;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
    height: 3px;
    content: "";
    transition: opacity 0.3s ease;
}.c_metrics_summary .g_class_benefits:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}.c_metrics_summary .g_class_benefits:hover::before {
    opacity: 1;
}.c_metrics_summary .d_statistics_advances {
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
}.c_metrics_summary .d_statistics_advances::after {
    top: 50%;
    height: 48px;
    border-radius: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    position: absolute;
    width: 48px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.1);
    left: 50%;
}.c_metrics_summary .g_class_benefits:hover .d_statistics_advances::after {
    width: 52px;
    border-color: rgba(rgb(163,190,190), 0.3);
    height: 52px;
}.c_metrics_summary .d_statistics_advances svg {
    height: 100%;
    fill: rgb(117,158,159);
    transition: all 0.3s ease;
    width: 100%;
}.c_metrics_summary .d_statistics_advances svg path {
    fill: rgb(117,158,159);
}.c_metrics_summary .g_class_benefits:hover .d_statistics_advances svg {
    fill: rgb(163,190,190);
}.c_metrics_summary .g_class_benefits:hover .d_statistics_advances svg path {
    fill: rgb(163,190,190);
}.c_metrics_summary .g_class_benefits span {
    display: block;
    position: relative;
    animation: numberFadeUp 0.5s forwards 0.2s;
    color: #ffffff;
    margin-bottom: 8px;
    transform: translateY(10px);
    opacity: 0;
    font-size: calc(24px + 4px);
    font-weight: 700;
}.c_metrics_summary .g_class_benefits:nth-child(2) span {
    animation-delay: 0.3s;
}.c_metrics_summary .g_class_benefits:nth-child(3) span {
    animation-delay: 0.4s;
}.c_metrics_summary .g_class_benefits:nth-child(4) span {
    animation-delay: 0.5s;
}@keyframes numberFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.c_metrics_summary .g_class_benefits p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}.c_metrics_summary .g_class_benefits:nth-child(1) {
    animation: fadeInSlide 0.4s ease forwards;
}.c_metrics_summary .g_class_benefits:nth-child(2) {
    animation: fadeInSlide 0.4s ease forwards 0.1s;
}.c_metrics_summary .g_class_benefits:nth-child(3) {
    animation: fadeInSlide 0.4s ease forwards 0.2s;
}.c_metrics_summary .g_class_benefits:nth-child(4) {
    animation: fadeInSlide 0.4s ease forwards 0.3s;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@media screen and (max-width: 991px) {.c_metrics_summary {
    padding: 100px 0;
}.c_metrics_summary .Y_statistics_extra {
    padding: 30px;
}.c_metrics_summary .M_success_statistics {
    padding: 12px;
    height: 50px;
    width: 50px;
    margin-right: 15px;
}.c_metrics_summary .d_pro_statistics {
    font-size: calc(29px - 2px);
}.c_metrics_summary .N_career_statistics {
    font-size: calc(17px - 1px);
}.c_metrics_summary .g_class_benefits {
    padding: 15px 12px;
    min-width: calc(33.33% - 20px);
}.c_metrics_summary .d_statistics_advances {
    height: 36px;
    margin-bottom: 12px;
    width: 36px;
}.c_metrics_summary .d_statistics_advances::after {
    height: 42px;
    width: 42px;
}.c_metrics_summary .g_class_benefits span {
    font-size: calc(24px + 2px);
}
}

@media screen and (max-width: 767px) {.c_metrics_summary {
    padding: 80px 0;
}.c_metrics_summary .Y_statistics_extra {
    padding: 25px;
}.c_metrics_summary .M_success_statistics {
    margin-bottom: 15px;
    margin-right: 0;
}.c_metrics_summary .d_pro_statistics {
    margin-bottom: 8px;
    font-size: calc(29px - 4px);
}.c_metrics_summary .N_career_statistics {
    font-size: calc(17px - 1px);
}.c_metrics_summary .g_class_benefits {
    padding: 15px 10px;
    min-width: calc(50% - 20px);
}.c_metrics_summary .d_statistics_advances {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}.c_metrics_summary .d_statistics_advances::after {
    width: 38px;
    height: 38px;
}.c_metrics_summary .g_class_benefits span {
    font-size: calc(24px);
}.c_metrics_summary .g_class_benefits p {
    font-size: calc(17px - 1px);
}

}

@media screen and (max-width: 576px) {.c_metrics_summary {
    padding: 70px 0;
}.c_metrics_summary .container {
    padding: 0 15px;
}.c_metrics_summary .Y_statistics_extra {
    padding: 20px;
}.c_metrics_summary .M_success_statistics {
    width: 45px;
    margin-bottom: 12px;
    height: 45px;
    padding: 10px;
}.c_metrics_summary .d_pro_statistics {
    font-size: calc(29px - 6px);
}.c_metrics_summary .N_career_statistics {
    font-size: calc(17px - 2px);
}.c_metrics_summary .g_class_benefits {
    padding: 15px;
    min-width: calc(85% - 20px);
}.c_metrics_summary .d_statistics_advances {
    width: 30px;
    height: 30px;
}.c_metrics_summary .d_statistics_advances::after {
    height: 36px;
    width: 36px;
}.c_metrics_summary .g_class_benefits span {
    font-size: calc(24px - 1px);
}.c_metrics_summary .g_class_benefits p {
    font-size: calc(17px - 2px);
}}.x_launch_now {
    background: linear-gradient(135deg, rgb(117,158,159,0.5), rgb(163,190,190));
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
    perspective: 1000px;
}.x_launch_now::before {
    height: 100%;
    z-index: 1;
    width: 100%;
    left: 0;
    content: "";
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
    top: 0;
    position: absolute;
}.x_launch_now::after {
    width: 50%;
    z-index: 0;
    transform: rotate(-15deg);
    height: 70%;
    position: absolute;
    top: -10%;
    right: -5%;
    filter: blur(40px);
    background: radial-gradient(ellipse at center, rgb(163,190,190,0.5) 0%, transparent 70%);
    content: "";
}.x_launch_now .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    transform-style: preserve-3d;
}.x_launch_now h2 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(20px);
    color: #ffffff;
    font-family: Arial, sans-serif;
}.x_launch_now .D_virtual_study {
    gap: 2rem;
    backdrop-filter: blur(10px);
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.5s ease;
    transform: translateZ(30px) rotateX(2deg);
    border-left: 4px solid rgb(163,190,190);
    display: flex;
    padding: 2rem;
}.x_launch_now .D_virtual_study:hover {
    transform: translateZ(40px) rotateX(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.15);
}.x_launch_now svg {
    transform: rotate(-5deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 48px;
    flex-shrink: 0;
    width: 48px;
}.x_launch_now svg:hover {
    transform: rotate(0deg) scale(1.1);
}.x_launch_now svg path {
    transition: fill 0.3s ease;
    fill: rgb(163,190,190);
}.x_launch_now .D_virtual_study:hover svg path {
    fill: rgb(117,158,159);
}.x_launch_now .D_virtual_study div {
    justify-content: flex-end;
    flex-grow: 1;
    display: flex;
}.x_launch_now .V_query_list {
    font-size: 18px;
    background: linear-gradient(135deg, rgb(163,190,190), rgb(117,158,159));
    padding: 0.875rem 2rem;
    font-weight: 600;
    border: none;
    transform: skewX(-5deg);
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    position: relative;
    font-family: Arial, sans-serif;
}.x_launch_now .V_query_list::before {
    transition: all 0.5s ease;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    left: -100%;
    position: absolute;
}.x_launch_now .V_query_list:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: skewX(-5deg) translateY(-3px);
}.x_launch_now .V_query_list:hover::before {
    left: 100%;
}.x_launch_now .container:hover h2 {
    transform: translateZ(25px);
}

@media (max-width: 992px) {.x_launch_now {
    padding: 4rem 0;
}.x_launch_now h2 {
    font-size: calc(28px * 0.9);
    margin-bottom: 2rem;
}.x_launch_now .D_virtual_study {
    gap: 1.5rem;
    padding: 1.75rem;
}
}

@media (max-width: 768px) {.x_launch_now {
    padding: 3.5rem 0;
}.x_launch_now h2 {
    text-align: center;
    font-size: calc(28px * 0.8);
}.x_launch_now .D_virtual_study {
    gap: 1.5rem;
    transform: translateZ(20px) rotateX(0deg);
    padding: 2rem 1.5rem;
    text-align: center;
    align-items: center;
    flex-direction: column;
}.x_launch_now svg {
    width: 40px;
    height: 40px;
}.x_launch_now .D_virtual_study div {
    width: 100%;
    justify-content: center;
}
}

@media (max-width: 576px) {.x_launch_now {
    padding: 3rem 0;
}.x_launch_now h2 {
    font-size: calc(28px * 0.7);
    margin-bottom: 1.5rem;
}.x_launch_now .D_virtual_study {
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
}.x_launch_now .V_query_list {
    font-size: calc(18px * 0.9);
    padding: 0.75rem 1.5rem;
}}.V_about_this {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background: #ffffff;
}.V_about_this::before {
    height: 50%;
    z-index: 1;
    background: rgb(163,190,190);
    top: 0;
    width: 100%;
    position: absolute;
    transform: skewY(-6deg) translateY(-30%);
    content: '';
    left: 0;
}.V_about_this .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}.V_about_this .D_virtual_study {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}.V_about_this .P_learn_track {
    text-align: center;
    position: relative;
    flex: 0 0 300px;
}.V_about_this .d_pic_border {
    height: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 8px solid #ffffff;
    z-index: 3;
    overflow: hidden;
    width: 220px;
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
}.V_about_this .C_path_edu {
    margin-bottom: 20px;
}.V_about_this .e_edu_promise {
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    font-size: 23px;
}.V_about_this .p_our_journey {
    display: inline-block;
    position: relative;
    color: rgb(163,190,190);
    padding: 0 15px;
    font-weight: 600;
    font-size: 12px;
}.V_about_this .p_our_journey::before,
.V_about_this .p_our_journey::after {
    background-color: rgb(163,190,190,0.5);
    position: absolute;
    content: '';
    height: 1px;
    top: 50%;
    width: 30px;
}.V_about_this .p_our_journey::before {
    left: -30px;
}.V_about_this .p_our_journey::after {
    right: -30px;
}.V_about_this .m_text_cube {
    background-color: #ffffff;
    min-width: 300px;
    flex: 1;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 50px;
}.V_about_this .m_text_cube::before {
    position: absolute;
    width: 60px;
    top: 30px;
    border-left: 4px solid rgb(163,190,190,0.5);
    height: 60px;
    content: '';
    left: 30px;
    border-top: 4px solid rgb(163,190,190,0.5);
    opacity: 0.5;
}.V_about_this .m_text_cube::after {
    right: 30px;
    position: absolute;
    border-right: 4px solid rgb(117,158,159,0.5);
    width: 60px;
    content: '';
    border-bottom: 4px solid rgb(117,158,159,0.5);
    opacity: 0.5;
    height: 60px;
    bottom: 30px;
}.V_about_this .y_diff_block {
    margin-bottom: 25px;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    display: flex;
    align-items: center;
}.V_about_this .y_diff_block svg {
    width: 35px;
    fill: rgb(163,190,190);
    margin-right: 10px;
    height: 35px;
}.V_about_this .y_diff_block svg path {
    fill: rgb(163,190,190);
}.V_about_this h2 {
    color: #000000;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-size: 36px;
    position: relative;
    font-weight: 700;
}.V_about_this h2::after {
    background: rgb(163,190,190);
    height: 3px;
    bottom: 0;
    left: 0;
    position: absolute;
    content: '';
    width: 70px;
}.V_about_this p {
    position: relative;
    font-size: 12px;
    line-height: 1.8;
    color: #000000;
}.V_about_this p::first-line {
    font-weight: 600;
    color: #000000;
}

@media (max-width: 992px) {.V_about_this {
    padding: 80px 0;
}.V_about_this .P_learn_track {
    flex: 0 0 100%;
    margin-bottom: 20px;
}.V_about_this .m_text_cube {
    padding: 40px;
    flex: 0 0 100%;
}.V_about_this .m_text_cube::before,
    .V_about_this .m_text_cube::after {
    height: 40px;
    width: 40px;
}
}

@media (max-width: 768px) {.V_about_this {
    padding: 60px 0;
}.V_about_this .d_pic_border {
    width: 180px;
    border-width: 6px;
    height: 180px;
}.V_about_this .m_text_cube {
    padding: 30px;
}.V_about_this h2 {
    font-size: calc(36px * 0.9);
    margin-bottom: 20px;
}.V_about_this .m_text_cube::before,
    .V_about_this .m_text_cube::after {
    height: 30px;
    width: 30px;
}
}

@media (max-width: 480px) {.V_about_this {
    padding: 40px 0;
}.V_about_this .d_pic_border {
    margin-bottom: 20px;
    height: 150px;
    width: 150px;
    border-width: 5px;
}.V_about_this .e_edu_promise {
    font-size: calc(23px * 0.9);
}.V_about_this .p_our_journey {
    padding: 0 10px;
    font-size: calc(12px * 0.9);
}.V_about_this .p_our_journey::before,
    .V_about_this .p_our_journey::after {
    width: 20px;
}.V_about_this .p_our_journey::before {
    left: -20px;
}.V_about_this .p_our_journey::after {
    right: -20px;
}.V_about_this .m_text_cube {
    padding: 25px 20px;
}.V_about_this h2 {
    padding-bottom: 10px;
    font-size: calc(36px * 0.8);
    margin-bottom: 15px;
}.V_about_this p {
    line-height: 1.6;
    font-size: calc(12px * 0.9);
}.V_about_this .y_diff_block {
    margin-bottom: 15px;
    font-size: calc(18px * 0.9);
}.V_about_this .y_diff_block svg {
    width: 30px;
    height: 30px;
}.V_about_this .m_text_cube::before,
    .V_about_this .m_text_cube::after {
    width: 25px;
    border-width: 3px;
    height: 25px;
}}.u_ty_page {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(207,222,223) 0%, rgb(117,158,159,0.5) 100%);
    isolation: isolate;
    padding: 6rem 0;
}.u_ty_page::before {
    z-index: -1;
    opacity: 0.15;
    position: absolute;
    background: repeating-linear-gradient(
        -45deg,
        rgb(117,158,159,0.5) 0px,
        rgb(117,158,159,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    top: 0;
    height: 100%;
    content: "";
    width: 100%;
    left: 0;
    animation: patternShift 30s linear infinite;
}.u_ty_page::after {
    right: -50px;
    background: rgb(163,190,190,0.5);
    z-index: -1;
    opacity: 0.3;
    bottom: -50px;
    width: 250px;
    content: "";
    height: 250px;
    position: absolute;
    filter: blur(80px);
}.u_ty_page .container {
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
    perspective: 1000px;
    margin: 0 auto;
    transform-style: preserve-3d;
}.u_ty_page h2 {
    animation: slideInTitle 0.8s ease-out forwards;
    color: #000000;
    font-size: 29px;
    text-align: center;
    transform: translateZ(20px);
    line-height: 1.3;
    font-family: Arial, sans-serif;
    position: relative;
    font-weight: 700;
    margin-bottom: 2.5rem;
}.u_ty_page h2::after {
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, rgb(163,190,190), rgb(117,158,159));
    bottom: -15px;
    position: absolute;
    left: 50%;
    animation: expandWidth 1s ease-out 0.8s forwards;
    content: "";
}.u_ty_page .D_virtual_study {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08),
                0 30px 60px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(0, 0, 0, 0.02);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: translateZ(10px) rotateX(2deg);
    background: #ffffff;
    padding: 2.5rem;
}.u_ty_page .D_virtual_study::before {
    content: "";
    left: 0;
    position: absolute;
    animation: gradientShift 8s ease infinite;
    background: linear-gradient(90deg, rgb(163,190,190), rgb(117,158,159));
    height: 6px;
    top: 0;
    width: 100%;
}.u_ty_page .D_virtual_study ul {
    list-style: none;
    margin: 0;
    padding: 0;
}.u_ty_page .D_virtual_study li {
    animation: fadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
    padding: 0;
    position: relative;
}.u_ty_page .D_virtual_study span {
    text-align: center;
    position: relative;
    font-size: calc(17px * 1.1);
    display: block;
    font-family: Arial, sans-serif;
    color: #000000;
    line-height: 1.7;
}.u_ty_page .D_virtual_study:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1),
                0 35px 65px rgba(0, 0, 0, 0.07),
                0 0 0 1px rgba(0, 0, 0, 0.03);
    transform: translateZ(15px) rotateX(0deg);
}

@keyframes slideInTitle {
    from {
        transform: translateY(-30px) translateZ(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0) translateZ(20px);
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

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

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

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

@media (max-width: 1024px) {.u_ty_page {
    padding: 5rem 0;
}.u_ty_page h2 {
    font-size: calc(29px * 0.9);
    margin-bottom: 2rem;
}.u_ty_page .D_virtual_study {
    padding: 2rem;
}
}

@media (max-width: 768px) {.u_ty_page {
    padding: 4rem 0;
}.u_ty_page h2 {
    font-size: calc(29px * 0.8);
    margin-bottom: 1.8rem;
}.u_ty_page .D_virtual_study {
    transform: translateZ(5px) rotateX(1deg);
    padding: 1.8rem;
}.u_ty_page .D_virtual_study span {
    font-size: 17px;
    line-height: 1.6;
}
}

@media (max-width: 576px) {.u_ty_page {
    padding: 3rem 0;
}.u_ty_page h2 {
    font-size: calc(29px * 0.7);
    margin-bottom: 1.5rem;
}.u_ty_page h2::after {
    height: 3px;
    bottom: -10px;
}.u_ty_page .D_virtual_study {
    transform: translateZ(0) rotateX(0deg);
    padding: 1.5rem;
}.u_ty_page .D_virtual_study::before {
    height: 4px;
}.u_ty_page .D_virtual_study span {
    line-height: 1.5;
    font-size: calc(17px * 0.95);
}
}

@media (prefers-reduced-motion) {.u_ty_page h2,
    .u_ty_page h2::after,
    .u_ty_page .D_virtual_study,
    .u_ty_page .D_virtual_study::before,
    .u_ty_page .D_virtual_study li {
    transition: none;
    animation: none;
}.u_ty_page .D_virtual_study:hover {
    transform: none;
}.u_ty_page::before {
    animation: none;
}}.h_instructor_history {
    overflow: hidden;
    position: relative;
    padding: 6rem 2rem;
    background-color: rgb(207,222,223);
}.h_instructor_history::before {
    filter: blur(120px);
    right: -100px;
    top: -100px;
    width: 300px;
    z-index: 0;
    border-radius: 50%;
    background: rgb(163,190,190,0.5);
    position: absolute;
    height: 300px;
    content: "";
}.h_instructor_history::after {
    position: absolute;
    filter: blur(100px);
    z-index: 0;
    border-radius: 50%;
    bottom: -80px;
    height: 250px;
    content: "";
    left: -80px;
    background: rgb(117,158,159,0.5);
    width: 250px;
}.h_instructor_history .Z_learning_feedback {
    background: #ffffff;
    gap: 0;
    max-width: 1100px;
    overflow: visible;
    display: grid;
    border-radius: 16px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08), 
                -20px -20px 60px rgba(255, 255, 255, 0.8);
    margin: 0 auto;
    grid-template-columns: 1fr 1.2fr;
    position: relative;
    z-index: 2;
}.h_instructor_history .d_pic_border {
    position: relative;
    transform: translateX(-30px) translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    height: 500px;
    border-radius: 16px 0 0 16px;
}.h_instructor_history .d_pic_border::before {
    left: 30px;
    top: 30px;
    border-radius: 16px;
    z-index: -1;
    height: 100%;
    position: absolute;
    content: "";
    background: rgb(163,190,190,0.5);
    width: 100%;
}.h_instructor_history .f_job_exp {
    padding: 4rem 3rem;
    justify-content: center;
    display: flex;
    flex-direction: column;
}.h_instructor_history .name {
    color: #000000;
    font-size: 39px;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    font-weight: 700;
}.h_instructor_history .f_job_exp > div:nth-child(2) {
    font-weight: 400;
    letter-spacing: 2px;
    color: rgb(163,190,190);
    font-size: 22px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}.h_instructor_history .f_job_exp > div:nth-child(2)::after {
    left: 0;
    height: 2px;
    position: absolute;
    background: rgb(117,158,159);
    width: 60px;
    content: "";
    bottom: 0;
}.h_instructor_history .Y_career_explore {
    line-height: 1.7;
    font-size: calc(12px * 1.1);
    font-family: Arial, sans-serif;
    color: #000000;
    font-weight: 300;
    font-style: italic;
    position: relative;
}.h_instructor_history .Y_career_explore::before {
    content: "";
    color: rgb(117,158,159,0.5);
    position: absolute;
    font-family: serif;
    z-index: -1;
    font-size: 5rem;
    top: -2.5rem;
    left: -2rem;
}.h_instructor_history .Z_learning_feedback:hover .d_pic_border {
    transform: translateX(-20px) translateY(-40px);
}@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgb(163,190,190,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

.h_instructor_history .Z_learning_feedback:hover .name {
    -webkit-background-clip: text !important;
    text-fill-color: transparent;
    background: linear-gradient(90deg, rgb(163,190,190), rgb(117,158,159));
    background-clip: text !important;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {.h_instructor_history .Z_learning_feedback {
    grid-template-columns: 1fr;
    max-width: 90%;
}.h_instructor_history .d_pic_border {
    border-radius: 16px 16px 0 0;
    transform: translateY(-30px);
    height: 400px;
}.h_instructor_history .d_pic_border::before {
    width: 100%;
    top: 30px;
    left: 0;
}.h_instructor_history .f_job_exp {
    padding: 1rem 2rem 3rem;
}.h_instructor_history .Z_learning_feedback:hover .d_pic_border {
    transform: translateY(-40px);
}
}

@media (max-width: 576px) {.h_instructor_history {
    padding: 4rem 1rem;
}.h_instructor_history .Z_learning_feedback {
    max-width: 100%;
}.h_instructor_history .d_pic_border {
    transform: translateY(-20px);
    height: 320px;
}.h_instructor_history .d_pic_border::before {
    top: 20px;
}.h_instructor_history .f_job_exp {
    padding: 0.5rem 1.5rem 2.5rem;
}.h_instructor_history .name {
    font-size: calc(35px);
}.h_instructor_history .f_job_exp > div:nth-child(2) {
    font-size: 12px;
    letter-spacing: 1px;
}.h_instructor_history .Y_career_explore {
    font-size: 12px;
}.h_instructor_history .Z_learning_feedback:hover .d_pic_border {
    transform: translateY(-25px);
}}.g_plan_wrapper {
    position: relative;
    background-color: rgb(207,222,223);
    padding: 6rem 0;
    overflow: hidden;
}.g_plan_wrapper::before {
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(135deg, rgb(163,190,190,0.5) 0%, transparent 70%);
    z-index: 1;
    width: 100%;
    height: 100%;
}.g_plan_wrapper::after {
    z-index: 1;
    height: 20rem;
    opacity: 0.15;
    content: "";
    pointer-events: none;
    bottom: -5rem;
    width: 20rem;
    transform: rotate(-15deg);
    right: -5rem;
    background: linear-gradient(225deg, rgb(117,158,159) 0%, transparent 80%);
    position: absolute;
}.g_plan_wrapper .container {
    max-width: 1400px;
    z-index: 2;
    padding: 0 2rem;
    margin: 0 auto;
    position: relative;
}.g_plan_wrapper .K_price_sheet {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    position: relative;
}.g_plan_wrapper .h_member_fees {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid rgb(163,190,190);
}.g_plan_wrapper .h_member_fees::before {
    width: 40px;
    position: absolute;
    background-color: rgb(163,190,190);
    content: "";
    height: 40px;
    left: -20px;
    z-index: -1;
    top: 20px;
    transform: rotate(45deg);
}.g_plan_wrapper .h_member_fees h2 {
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 30px;
    transform: perspective(800px) translateZ(30px);
    position: relative;
}.g_plan_wrapper .h_member_fees h2::after {
    height: 3px;
    width: 80px;
    bottom: -10px;
    left: 0;
    position: absolute;
    content: "";
    background: linear-gradient(90deg, rgb(163,190,190), rgb(117,158,159));
}.g_plan_wrapper .h_member_fees .Y_monthly_rate {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    max-width: 80%;
}.g_plan_wrapper .z_class_rates {
    perspective: 1000px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    display: grid;
}.g_plan_wrapper .B_value_fees {
    transform-style: preserve-3d;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    display: block;
    text-decoration: none;
}.g_plan_wrapper .B_value_fees:hover {
    transform: translateY(-10px);
}.g_plan_wrapper .S_trial_rates {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    height: 100%;
    flex-direction: column;
    border-radius: 10px;
    background-color: #ffffff;
    transform: translateZ(0);
}.g_plan_wrapper .B_value_fees:hover .S_trial_rates {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgb(163,190,190,0.5);
    transform: translateZ(20px);
}.g_plan_wrapper .B_value_fees:nth-child(odd) .S_trial_rates {
    transform: rotate(-1deg);
}.g_plan_wrapper .B_value_fees:nth-child(even) .S_trial_rates {
    transform: rotate(1deg);
}.g_plan_wrapper .B_value_fees:hover .S_trial_rates {
    transform: rotate(0) translateZ(20px);
}.g_plan_wrapper .R_study_packages {
    padding: 2rem;
    flex-direction: column;
    overflow-wrap: break-word;
    flex: 1;
    position: relative;
    z-index: 2;
    word-break: break-word;
    display: flex;
}.g_plan_wrapper .R_study_packages::before {
    height: 100%;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    position: absolute;
    top: 0;
    width: 100%;
    content: "";
}.g_plan_wrapper .R_study_packages h3 {
    color: #000000;
    font-weight: 600;
    transform: translateZ(10px);
    transition: transform 0.3s ease;
    font-size: calc(22px * 1.2);
    position: relative;
    margin-bottom: 1rem;
}.g_plan_wrapper .B_value_fees:hover .R_study_packages h3 {
    transform: translateZ(25px);
}.g_plan_wrapper .R_study_packages h3::after {
    transition: width 0.3s ease;
    background: rgb(163,190,190);
    height: 3px;
    position: absolute;
    bottom: -8px;
    content: "";
    left: 0;
    width: 40px;
}.g_plan_wrapper .B_value_fees:hover .R_study_packages h3::after {
    width: 60px;
}.g_plan_wrapper .N_learn_fees {
    transform: translateZ(15px);
    position: relative;
    font-weight: 700;
    color: rgb(163,190,190);
    display: block;
    margin: 0.5rem 0 1.5rem;
    font-size: calc(22px * 1.8);
}.g_plan_wrapper .N_learn_fees::before {
    content: "";
    width: 80px;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(90deg, rgb(163,190,190,0.5), transparent);
    position: absolute;
}.g_plan_wrapper .R_study_packages p {
    font-size: 15px;
    overflow-wrap: break-word;
    flex: 1;
    line-height: 1.6;
    word-break: break-word;
    color: #000000;
    margin-top: 1rem;
}.g_plan_wrapper .d_pic_border {
    position: relative;
    height: 200px;
    transition: transform 0.5s ease;
    overflow: hidden;
    transform: translateZ(0);
    width: 100%;
}.g_plan_wrapper .B_value_fees:hover .d_pic_border {
    transform: scale(1.05) translateZ(0);
}.g_plan_wrapper .d_pic_border::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    left: 0;
    content: "";
    width: 100%;
    z-index: 1;
    height: 50%;
    bottom: 0;
    position: absolute;
}.g_plan_wrapper .d_pic_border::before {
    top: 0;
    transition: opacity 0.3s ease;
    background: rgb(163,190,190);
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
    height: 100%;
    content: "";
    opacity: 0.15;
}.g_plan_wrapper .B_value_fees:hover .d_pic_border::before {
    opacity: 0.05;
}

@media (min-width: 992px) {.g_plan_wrapper .K_price_sheet {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}.g_plan_wrapper .h_member_fees {
    padding: 3rem;
}.g_plan_wrapper .z_class_rates {
    grid-column: 1;
    grid-row: 1;
}.g_plan_wrapper .h_member_fees {
    grid-row: 1;
    align-self: start;
    grid-column: 2;
    position: sticky;
    transform: perspective(1000px) rotateY(-5deg) translateZ(0);
    top: 2rem;
}.g_plan_wrapper .h_member_fees:hover {
    transform: perspective(1000px) rotateY(0) translateZ(30px);
}
}

@media (min-width: 1200px) {.g_plan_wrapper .z_class_rates {
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
}.g_plan_wrapper .R_study_packages {
    min-height: 300px;
}
}

@media (max-width: 991px) {.g_plan_wrapper {
    padding: 4rem 0;
}.g_plan_wrapper .h_member_fees {
    order: -1;
}.g_plan_wrapper .h_member_fees h2 {
    font-size: calc(30px * 0.9);
}.g_plan_wrapper .h_member_fees .Y_monthly_rate {
    max-width: 100%;
}
}

@media (max-width: 767px) {.g_plan_wrapper {
    padding: 3rem 0;
}.g_plan_wrapper .container {
    padding: 0 1.5rem;
}.g_plan_wrapper .z_class_rates {
    grid-template-columns: 1fr;
}.g_plan_wrapper .h_member_fees h2 {
    font-size: calc(30px * 0.8);
}.g_plan_wrapper .R_study_packages {
    padding: 1.5rem;
}.g_plan_wrapper .N_learn_fees {
    font-size: calc(22px * 1.5);
}.g_plan_wrapper .d_pic_border {
    height: 180px;
}
}

@media (max-width: 480px) {.g_plan_wrapper .R_study_packages p {
    font-size: calc(15px * 0.9);
}.g_plan_wrapper .R_study_packages h3 {
    font-size: 22px;
}.g_plan_wrapper .N_learn_fees {
    font-size: calc(22px * 1.3);
}.g_plan_wrapper .d_pic_border {
    height: 160px;
}}.t_primary_page {
    overflow: hidden;
    background: rgb(207,222,223);
    width: 100%;
    position: relative;
}.t_primary_page .D_virtual_study {
    align-items: center;
    width: 100%;
    z-index: 2;
    position: relative;
    display: flex;
    height: 75vh;
}.t_primary_page .d_study_smart {
    height: 75vh;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}.t_primary_page .d_study_smart::before {
    top: 0;
    pointer-events: none;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 3;
    background: linear-gradient(
        to right,
        #000000 0%,
        transparent 20%
    );
    content: "";
    height: 100%;
}.t_primary_page .d_study_smart input {
    display: none;
}.t_primary_page .T_course_begin {
    display: flex;
    height: 100%;
    width: 500%;
    transition: transform 0.8s cubic-bezier(0.5, 0, 0.2, 1);
}.t_primary_page .A_page_front {
    position: relative;
    width: 20%;
    overflow: hidden;
    height: 100%;
}.t_primary_page .A_page_front::before {
    height: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: absolute;
    width: 100%;
    content: "";
    top: 0;
}.t_primary_page .A_page_front img {
    transform: scale(1.1) translateX(0);
    width: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 0.6s ease;
    filter: grayscale(0.3);
    height: 100%;
}.t_primary_page .C_learn_skillspro {
    flex-direction: column;
    display: flex;
    left: 30px;
    z-index: 10;
    position: absolute;
    bottom: 30px;
    gap: 15px;
}.t_primary_page .C_learn_skillspro label {
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
    height: 30px;
    position: relative;
    width: 3px;
    background: #ffffff;
}.t_primary_page .C_learn_skillspro label::before {
    left: 0;
    height: 0;
    position: absolute;
    transition: height 0.3s ease;
    width: 100%;
    background: rgb(117,158,159);
    content: "";
    top: 0;
}.t_primary_page .C_learn_skillspro label:hover {
    opacity: 0.7;
}.t_primary_page .m_text_cube {
    z-index: 5;
    overflow: hidden;
    width: 40%;
    max-width: 550px;
    position: relative;
    margin-left: 8%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    background: rgb(163,190,190);
    padding: 0;
}.t_primary_page .m_text_cube::before {
    content: "";
    left: 0;
    position: absolute;
    background: rgb(117,158,159);
    top: 0;
    height: 5px;
    width: 100%;
}.t_primary_page .m_text_cube .container {
    position: relative;
    color: #ffffff;
    padding: 3rem;
}.t_primary_page .m_text_cube .container::before {
    opacity: 0.15;
    height: 80px;
    position: absolute;
    content: "";
    border-right: 5px solid #ffffff;
    width: 80px;
    right: 15px;
    border-top: 5px solid #ffffff;
    top: 15px;
}.t_primary_page .m_text_cube .container::after {
    border-bottom: 5px solid #ffffff;
    width: 80px;
    opacity: 0.15;
    position: absolute;
    left: 15px;
    border-left: 5px solid #ffffff;
    bottom: 15px;
    content: "";
    height: 80px;
}.t_primary_page .m_text_cube h1 {
    color: #ffffff;
    font-weight: 700;
    position: relative;
    font-size: 46px;
    margin-bottom: 1.5rem;
}.t_primary_page .m_text_cube h3 {
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 20px;
}.t_primary_page .m_text_cube p {
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 400;
    opacity: 0.8;
    line-height: 1.7;
    font-size: 14px;
}.t_primary_page input:nth-of-type(1):checked ~ .T_course_begin {
    transform: translateX(0);
}.t_primary_page input:nth-of-type(2):checked ~ .T_course_begin {
    transform: translateX(-20%);
}.t_primary_page input:nth-of-type(3):checked ~ .T_course_begin {
    transform: translateX(-40%);
}.t_primary_page input:nth-of-type(4):checked ~ .T_course_begin {
    transform: translateX(-60%);
}.t_primary_page input:nth-of-type(5):checked ~ .T_course_begin {
    transform: translateX(-80%);
}.t_primary_page input:nth-of-type(6):checked ~ .T_course_begin {
    transform: translateX(-100%);
}.t_primary_page input:nth-of-type(7):checked ~ .T_course_begin {
    transform: translateX(-120%);
}.t_primary_page input:nth-of-type(8):checked ~ .T_course_begin {
    transform: translateX(-140%);
}.t_primary_page input:nth-of-type(9):checked ~ .T_course_begin {
    transform: translateX(-160%);
}.t_primary_page input:nth-of-type(10):checked ~ .T_course_begin {
    transform: translateX(-180%);
}.t_primary_page input:nth-of-type(1):checked ~ .C_learn_skillspro label:nth-child(1)::before,
.t_primary_page input:nth-of-type(2):checked ~ .C_learn_skillspro label:nth-child(2)::before,
.t_primary_page input:nth-of-type(3):checked ~ .C_learn_skillspro label:nth-child(3)::before,
.t_primary_page input:nth-of-type(4):checked ~ .C_learn_skillspro label:nth-child(4)::before,
.t_primary_page input:nth-of-type(5):checked ~ .C_learn_skillspro label:nth-child(5)::before,
.t_primary_page input:nth-of-type(6):checked ~ .C_learn_skillspro label:nth-child(6)::before,
.t_primary_page input:nth-of-type(7):checked ~ .C_learn_skillspro label:nth-child(7)::before,
.t_primary_page input:nth-of-type(8):checked ~ .C_learn_skillspro label:nth-child(8)::before,
.t_primary_page input:nth-of-type(9):checked ~ .C_learn_skillspro label:nth-child(9)::before,
.t_primary_page input:nth-of-type(10):checked ~ .C_learn_skillspro label:nth-child(10)::before {
    height: 100%;
}.t_primary_page input:nth-of-type(1):checked ~ .C_learn_skillspro label:nth-child(1),
.t_primary_page input:nth-of-type(2):checked ~ .C_learn_skillspro label:nth-child(2),
.t_primary_page input:nth-of-type(3):checked ~ .C_learn_skillspro label:nth-child(3),
.t_primary_page input:nth-of-type(4):checked ~ .C_learn_skillspro label:nth-child(4),
.t_primary_page input:nth-of-type(5):checked ~ .C_learn_skillspro label:nth-child(5),
.t_primary_page input:nth-of-type(6):checked ~ .C_learn_skillspro label:nth-child(6),
.t_primary_page input:nth-of-type(7):checked ~ .C_learn_skillspro label:nth-child(7),
.t_primary_page input:nth-of-type(8):checked ~ .C_learn_skillspro label:nth-child(8),
.t_primary_page input:nth-of-type(9):checked ~ .C_learn_skillspro label:nth-child(9),
.t_primary_page input:nth-of-type(10):checked ~ .C_learn_skillspro label:nth-child(10) {
    opacity: 1;
    width: 5px;
}.t_primary_page input:checked ~ .T_course_begin .A_page_front img {
    transform: scale(1) translateX(-10px);
    filter: grayscale(0);
}

@media (max-width: 1199px) {.t_primary_page .m_text_cube {
    width: 45%;
    max-width: 500px;
    margin-left: 6%;
}.t_primary_page .m_text_cube .container {
    padding: 2.5rem;
}
}

@media (max-width: 991px) {.t_primary_page .D_virtual_study {
    height: 70vh;
}.t_primary_page .d_study_smart {
    height: 70vh;
}.t_primary_page .m_text_cube {
    width: 50%;
    margin-left: 5%;
    max-width: 450px;
}.t_primary_page .m_text_cube .container {
    padding: 2rem;
}.t_primary_page .m_text_cube h1 {
    margin-bottom: 1.2rem;
    font-size: calc(46px * 0.9);
}.t_primary_page .m_text_cube h3 {
    margin-bottom: 1.5rem;
    font-size: calc(20px * 0.9);
}.t_primary_page .m_text_cube p {
    font-size: calc(14px * 0.95);
}.t_primary_page .C_learn_skillspro {
    bottom: 25px;
    left: 25px;
    gap: 12px;
}.t_primary_page .C_learn_skillspro label {
    height: 25px;
}
}

@media (max-width: 767px) {.t_primary_page .D_virtual_study {
    height: auto;
    min-height: 90vh;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}.t_primary_page .d_study_smart {
    height: 50vh;
    position: relative;
}.t_primary_page .d_study_smart::before {
    background: linear-gradient(
            to bottom,
            transparent 70%,
            rgb(207,222,223) 100%
        );
}.t_primary_page .m_text_cube {
    width: 90%;
    max-width: 600px;
    margin: -50px 0 30px;
}.t_primary_page .m_text_cube .container {
    padding: 2rem;
}.t_primary_page .m_text_cube h1 {
    font-size: calc(46px * 0.85);
    margin-bottom: 1rem;
}.t_primary_page .m_text_cube h3 {
    margin-bottom: 1.2rem;
    font-size: calc(20px * 0.85);
}.t_primary_page .C_learn_skillspro {
    flex-direction: row;
    bottom: 20px;
    gap: 10px;
    transform: translateX(-50%);
    left: 50%;
}.t_primary_page .C_learn_skillspro label {
    height: 3px;
    width: 25px;
}.t_primary_page input:nth-of-type(n):checked ~ .C_learn_skillspro label:nth-child(n) {
    height: 3px;
    width: 35px;
}
}

@media (max-width: 575px) {.t_primary_page .d_study_smart {
    height: 45vh;
}.t_primary_page .m_text_cube {
    margin: -40px 0 20px;
    width: 95%;
}.t_primary_page .m_text_cube .container {
    padding: 1.5rem;
}.t_primary_page .m_text_cube .container::before,
    .t_primary_page .m_text_cube .container::after {
    height: 60px;
    width: 60px;
}.t_primary_page .m_text_cube h1 {
    font-size: calc(46px * 0.8);
}.t_primary_page .m_text_cube h3 {
    font-size: calc(21px * 1.1);
    margin-bottom: 1rem;
}.t_primary_page .m_text_cube p {
    line-height: 1.5;
    font-size: calc(14px * 0.9);
}.t_primary_page .C_learn_skillspro {
    gap: 8px;
    bottom: 15px;
}.t_primary_page .C_learn_skillspro label {
    width: 20px;
}.t_primary_page input:nth-of-type(n):checked ~ .C_learn_skillspro label:nth-child(n) {
    width: 30px;
}
}

@media (max-width: 480px) {.t_primary_page .d_study_smart {
    height: 40vh;
}.t_primary_page .m_text_cube {
    margin: -30px 0 20px;
}
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 768px) {.t_primary_page .D_virtual_study {
    height: 85vh;
}.t_primary_page .d_study_smart {
    height: 85vh;
}}footer {
    perspective: 1000px;
    position: relative;
    z-index: 1;
}footer::before {
    background: linear-gradient(135deg, rgb(117,158,159,0.5) 0%, rgb(163,190,190,0.5) 100%);
    position: absolute;
    top: 0;
    content: "";
    opacity: 0.9;
    right: 0;
    left: 0;
    z-index: -2;
    bottom: 0;
}footer::after {
    position: absolute;
    background: 
        radial-gradient(circle at 20% 20%, transparent 0, transparent 80px, rgba(255, 255, 255, 0.03) 81px),
        radial-gradient(circle at 80% 40%, transparent 0, transparent 120px, rgba(255, 255, 255, 0.03) 121px),
        radial-gradient(circle at 40% 70%, transparent 0, transparent 100px, rgba(255, 255, 255, 0.03) 101px);
    left: 0;
    top: 0;
    content: "";
    right: 0;
    bottom: 0;
    z-index: -1;
}.A_idea_pool {
    padding: 5rem 0 2.5rem;
    position: relative;
    color: #ffffff;
}.A_idea_pool::before {
    background: repeating-linear-gradient(
        90deg,
        rgb(163,190,190) 0px,
        rgb(163,190,190) 40px,
        rgb(117,158,159) 40px,
        rgb(117,158,159) 80px
    );
    width: 100%;
    left: 0;
    height: 20px;
    top: 0;
    position: absolute;
    content: "";
}.A_idea_pool .container {
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
    display: flex;
    gap: 4rem;
}.A_idea_pool .company_holder {
    flex: 1 1 380px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    background: rgb(163,190,190,0.5);
    transform-style: preserve-3d;
    position: relative;
    padding: 2rem;
    transition: all 0.4s ease;
    border-radius: 0;
    transform: rotateX(5deg);
    border-bottom: 6px solid rgb(163,190,190);
}.A_idea_pool .company_holder:hover {
    transform: rotateX(0deg);
}.A_idea_pool .company_holder h3 {
    font-size: 31px;
    transform: translateZ(20px);
    margin: 0 0 1.5rem;
    display: inline-block;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    letter-spacing: 1px;
}.A_idea_pool .company_holder h3::before {
    width: 30px;
    top: -10px;
    position: absolute;
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    content: "";
    left: -10px;
    height: 30px;
}.A_idea_pool .company_holder h3::after {
    position: absolute;
    width: 30px;
    right: -10px;
    border-bottom: 3px solid #ffffff;
    content: "";
    border-right: 3px solid #ffffff;
    bottom: -10px;
    height: 30px;
}.A_idea_pool .I_digital_res {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translateZ(10px);
    line-height: 1.6;
    font-size: 15px;
    padding: 1.5rem;
}.A_idea_pool .A_media_kit {
    min-width: 400px;
    flex: 1 1 calc(100% - 480px);
}.A_idea_pool .u_nav_class {
    gap: 3rem;
    display: flex;
    flex-wrap: wrap;
}.A_idea_pool .C_main_lead {
    transform-style: preserve-3d;
    flex: 1 1 calc(50% - 1.5rem);
    transition: all 0.4s ease;
    position: relative;
    min-width: 220px;
    transform: rotateX(-5deg);
}.A_idea_pool .C_main_lead:hover {
    transform: rotateX(0deg);
}.A_idea_pool .C_main_lead h5 {
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    display: inline-block;
    min-width: 200px;
    margin: 0 0 1.5rem;
    background: rgb(117,158,159,0.5);
    font-weight: 600;
    font-size: 20px;
    transform: translateZ(15px);
    color: #ffffff;
    position: relative;
    padding: 1rem 1.5rem;
}.A_idea_pool .C_main_lead h5::after {
    left: 0;
    background: rgb(117,158,159);
    height: 5px;
    bottom: -5px;
    position: absolute;
    right: 0;
    content: "";
}.A_idea_pool .C_main_lead .u_nav_class {
    background: rgba(255, 255, 255, 0.1);
    flex-direction: column;
    display: flex;
    transform: translateZ(5px);
    padding: 1rem;
    border-radius: 10px;
    gap: 1rem;
}.A_idea_pool .C_main_lead .u_nav_class a {
    text-decoration: none;
    padding: 0.7rem 1rem;
    position: relative;
    overflow: hidden;
    display: block;
    color: #ffffff;
    transform: translateZ(10px);
    background: rgba(255, 255, 255, 0.05);
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 10px;
}.A_idea_pool .C_main_lead .u_nav_class a::before {
    height: 100%;
    content: "";
    left: -100%;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    width: 100%;
    top: 0;
    transition: all 0.5s ease;
}.A_idea_pool .C_main_lead .u_nav_class a:hover {
    background: rgb(117,158,159,0.5);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}.A_idea_pool .C_main_lead .u_nav_class a:hover::before {
    left: 100%;
}.d_code_labs {
    perspective: 1000px;
    padding: 2rem 0;
    position: relative;
    background: rgb(117,158,159,0.5);
    margin-top: 3rem;
    transform-style: preserve-3d;
}.d_code_labs::before {
    content: "";
    transform-origin: bottom;
    top: -20px;
    width: 100%;
    height: 20px;
    position: absolute;
    transform: rotateX(45deg);
    left: 0;
    background: rgb(117,158,159);
}.d_code_labs .container {
    justify-content: center;
    align-items: center;
    display: flex;
}.d_code_labs .R_footer_classes {
    padding: 0.8rem 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 13px;
    transform: translateZ(5px);
    border-radius: 50px;
    text-align: center;
}

@media (max-width: 1200px) {.A_idea_pool .container {
    gap: 3rem;
}.A_idea_pool .company_holder {
    flex: 1 1 350px;
}.A_idea_pool .A_media_kit {
    min-width: 350px;
    flex: 1 1 calc(100% - 430px);
}.A_idea_pool .u_nav_class {
    gap: 2rem;
}
}

@media (max-width: 992px) {.A_idea_pool {
    padding: 4rem 0 2rem;
}.A_idea_pool .container {
    gap: 3rem;
    flex-direction: column;
}.A_idea_pool .company_holder,
    .A_idea_pool .A_media_kit {
    min-width: 100%;
    flex: 1 1 100%;
}.A_idea_pool .C_main_lead {
    min-width: 220px;
    flex: 1 1 calc(50% - 1.5rem);
}.A_idea_pool .company_holder,
    .A_idea_pool .C_main_lead {
    transform: none;
}
}

@media (max-width: 768px) {.A_idea_pool {
    padding: 3.5rem 0 1.5rem;
}.A_idea_pool .u_nav_class {
    gap: 1.5rem;
}.A_idea_pool .company_holder h3 {
    font-size: calc(31px - 2px);
}.A_idea_pool .company_holder h3::before,
    .A_idea_pool .company_holder h3::after {
    width: 20px;
    height: 20px;
}.d_code_labs {
    margin-top: 2rem;
}.d_code_labs::before {
    top: -15px;
    height: 15px;
}
}

@media (max-width: 576px) {.A_idea_pool {
    padding: 3rem 0 1rem;
}.A_idea_pool .C_main_lead {
    flex: 1 1 100%;
    min-width: 100%;
}.A_idea_pool .u_nav_class {
    gap: 0.7rem;
}.A_idea_pool .C_main_lead .u_nav_class a {
    padding: 0.6rem 0.8rem;
}.d_code_labs {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
}.d_code_labs::before {
    display: none;
}
}

@media (max-width: 420px) {.A_idea_pool::before {
    height: 10px;
}.A_idea_pool .company_holder h3::before,
    .A_idea_pool .company_holder h3::after {
    display: none;
}.A_idea_pool .C_main_lead h5 {
    width: 100%;
    min-width: auto;
}.d_code_labs .R_footer_classes {
    width: 90%;
    padding: 0.7rem 1.5rem;
}}.X_customer_reviews {
    padding: 100px 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}.X_customer_reviews::before {
    position: absolute;
    border-radius: 50%;
    background: rgb(207,222,223);
    width: 100%;
    top: -50%;
    z-index: 0;
    right: -50%;
    content: "";
    height: 100%;
}.X_customer_reviews .container {
    position: relative;
    z-index: 1;
}.X_customer_reviews h2 {
    color: #000000;
    font-size: 31px;
    position: relative;
    transform: translateX(-10%);
    font-weight: 700;
    margin-bottom: 100px;
}.X_customer_reviews h2::first-letter {
    font-size: 1.8em;
    color: rgb(163,190,190);
}.X_customer_reviews .R_review_spot {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(12, 1fr);
}.X_customer_reviews .Z_learning_feedback {
    opacity: 0;
    position: relative;
    padding: 30px 0;
    animation: fadeIn 0.8s ease forwards;
}.X_customer_reviews .Z_learning_feedback:nth-child(3n+1) {
    animation-delay: 0.1s;
    grid-column: span 5;
}.X_customer_reviews .Z_learning_feedback:nth-child(3n+2) {
    margin-top: 80px;
    animation-delay: 0.3s;
    grid-column: span 4;
}.X_customer_reviews .Z_learning_feedback:nth-child(3n+3) {
    animation-delay: 0.5s;
    grid-column: span 3;
    margin-top: 40px;
}.X_customer_reviews .Z_learning_feedback::before {
    font-size: 120px;
    content: "";
    z-index: -1;
    font-family: Arial, sans-serif;
    left: -20px;
    position: absolute;
    line-height: 1;
    top: -30px;
    color: rgb(163,190,190,0.5);
}.X_customer_reviews .Z_learning_feedback img {
    position: absolute;
    transform: translateY(0);
    height: 60px;
    border-radius: 10px;
    right: 0;
    filter: grayscale(100%);
    bottom: 20px;
    border: 3px solid #ffffff;
    width: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.X_customer_reviews .Z_learning_feedback:hover img {
    transform: translateY(-15px);
    filter: grayscale(0%);
}.X_customer_reviews .Z_learning_feedback p {
    margin: 0;
}.X_customer_reviews .Z_learning_feedback p:first-of-type {
    white-space: nowrap;
    font-weight: 600;
    bottom: 0;
    font-size: 19px;
    color: rgb(163,190,190);
    text-transform: uppercase;
    position: absolute;
    letter-spacing: 1px;
    right: 70px;
}.X_customer_reviews .Z_learning_feedback .description {
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: calc(17px * 1.2);
    position: relative;
    color: #000000;
    font-weight: 300;
}.X_customer_reviews .Z_learning_feedback .description::first-letter {
    font-weight: 600;
    font-size: 1.3em;
}.X_customer_reviews .Z_learning_feedback .description::after {
    width: 40px;
    transform: scaleX(1);
    left: 0;
    position: absolute;
    content: "";
    transition: transform 0.4s ease;
    transform-origin: left;
    height: 2px;
    bottom: -20px;
    background: rgb(117,158,159);
}.X_customer_reviews .Z_learning_feedback:hover .description::after {
    transform: scaleX(3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {.X_customer_reviews {
    padding: 80px 0;
}.X_customer_reviews h2 {
    transform: none;
    margin-bottom: 60px;
}.X_customer_reviews .R_review_spot {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}.X_customer_reviews .Z_learning_feedback:nth-child(3n+1),
    .X_customer_reviews .Z_learning_feedback:nth-child(3n+2),
    .X_customer_reviews .Z_learning_feedback:nth-child(3n+3) {
    margin-top: 0;
    grid-column: span 3;
}.X_customer_reviews .Z_learning_feedback:nth-child(2n) {
    margin-top: 40px;
}
}

@media (max-width: 767px) {.X_customer_reviews {
    padding: 60px 0;
}.X_customer_reviews::before {
    right: -20%;
    top: -20%;
}.X_customer_reviews h2 {
    font-size: calc(31px * 0.9);
    margin-bottom: 50px;
}.X_customer_reviews .R_review_spot {
    grid-template-columns: 1fr;
}.X_customer_reviews .Z_learning_feedback:nth-child(3n+1),
    .X_customer_reviews .Z_learning_feedback:nth-child(3n+2),
    .X_customer_reviews .Z_learning_feedback:nth-child(3n+3),
    .X_customer_reviews .Z_learning_feedback:nth-child(2n) {
    grid-column: 1;
    margin-bottom: 50px;
    margin-top: 0;
}.X_customer_reviews .Z_learning_feedback::before {
    font-size: 80px;
}.X_customer_reviews .Z_learning_feedback img {
    width: 50px;
    height: 50px;
}.X_customer_reviews .Z_learning_feedback p:first-of-type {
    right: 60px;
    font-size: calc(19px * 0.9);
}.X_customer_reviews .Z_learning_feedback .description {
    font-size: 17px;
}
}