* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}.cheat_sheet_id {
    flex: 0 0 auto;
}.head_pagewrap_id {
    flex: 1 0 auto;
}svg {
    width: 30px;
    height: 30px;
}a {
    text-decoration: none;
    color: inherit;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1154px;
}header,footer {
    width: 100%;
}.wrapper-capsule_id {
    flex-direction: column;
    display: flex;
    min-height: 100%;
    height: 100%;
}html,body {
    height: 100%;
    font-family: Nunito, sans-serif;
    auto
contain
    scroll-behavior: smooth;
    min-height: 100%;
    color: #000000;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.teaching_process_id {
    padding: 160px 0;
    overflow: visible;
    position: relative;
    background: linear-gradient(170deg, rgb(236,219,229) 0%, rgba(0, 0, 0, 0.5) 100%);
}.teaching_process_id::before {
    height: 100%;
    content: '';
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, rgb(218,178,204,0.5) 0%, transparent 40%);
    position: absolute;
    left: 0;
    opacity: 0.2;
    z-index: 1;
}.teaching_process_id .who_mentors_id {
    margin: 0 auto;
    padding: 0 20px;
    transform: rotate(-3deg);
    z-index: 2;
    position: relative;
    max-width: 1200px;
}.teaching_process_id .text_holder_wrap_id {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    margin-left: 5%;
    border-radius: 0 18px 18px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 60%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 4px solid rgb(218,178,204);
    transform: translateX(20px);
    backdrop-filter: blur(10px);
    padding: 60px 70px 60px 50px;
    position: relative;
    overflow: visible;
}.teaching_process_id .text_holder_wrap_id:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateX(10px);
}.teaching_process_id .text_holder_wrap_id::before {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    width: 180px;
    background: rgb(218,178,204);
    filter: blur(40px);
    right: -90px;
    content: '';
    height: 180px;
    animation: pulse-glow 8s infinite alternate;
    top: -90px;
    z-index: -1;
}.teaching_process_id .text_holder_wrap_id::after {
    height: 3px;
    z-index: 3;
    content: '';
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(218,178,204,0.5) 30%, 
        rgb(218,178,204) 50%, 
        rgb(218,178,204,0.5) 70%, 
        transparent 100%
    );
    left: -25%;
    width: 150%;
    bottom: -30px;
}.teaching_process_id .text_holder_wrap_id h2 {
    color: #ffffff;
    margin-bottom: 30px;
    transform: translateX(-40px);
    padding-bottom: 15px;
    font-weight: 700;
    font-size: 34px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}.teaching_process_id .text_holder_wrap_id h2::before {
    opacity: 0.6;
    content: '';
    z-index: -1;
    left: -35px;
    animation: spin-slow 20s linear infinite;
    border-radius: 10px;
    position: absolute;
    border: 2px solid rgb(218,178,204,0.5);
    height: 70px;
    width: 70px;
    top: -35px;
}.teaching_process_id .text_holder_wrap_id h2::after {
    height: 4px;
    width: 60px;
    background: rgb(218,178,204);
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    border-radius: 10px;
}.teaching_process_id .text_holder_wrap_id p {
    line-height: 1.8;
    font-size: 13px;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}.teaching_process_id::after {
    transform: rotate(30deg);
    width: 180px;
    position: absolute;
    bottom: -90px;
    right: 15%;
    border-radius: 18px;
    opacity: 0.1;
    height: 180px;
    background: rgb(197,138,175);
    animation: rotate-float 25s infinite linear;
    content: '';
    filter: blur(30px);
}.teaching_process_id .who_mentors_id::before {
    border-radius: 50%;
    width: 100px;
    opacity: 0.4;
    content: '';
    right: 10%;
    animation: float-vertical 10s infinite ease-in-out;
    position: absolute;
    top: -120px;
    height: 100px;
    border: 1px solid rgb(218,178,204,0.5);
}.teaching_process_id .who_mentors_id::after {
    background: rgb(218,178,204);
    border-radius: 50%;
    opacity: 0.2;
    width: 25px;
    left: -40px;
    position: absolute;
    filter: blur(5px);
    top: 40%;
    height: 25px;
    animation: pulse-subtle 5s infinite;
    content: '';
}@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-float {
    0% {
        transform: rotate(30deg) translateY(0);
    }
    25% {
        transform: rotate(120deg) translateY(-20px);
    }
    50% {
        transform: rotate(210deg) translateY(0);
    }
    75% {
        transform: rotate(300deg) translateY(20px);
    }
    100% {
        transform: rotate(390deg) translateY(0);
    }
}

@keyframes float-vertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes pulse-subtle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

.teaching_process_id .text_holder_wrap_id p::first-letter {
    font-size: 1.5em;
    font-weight: 700;
    color: rgb(218,178,204);
}.teaching_process_id .text_holder_wrap_id p::after {
    position: absolute;
    right: -250px;
    width: 200px;
    content: '';
    background-image: repeating-linear-gradient(
        -45deg,
        rgb(218,178,204,0.5),
        rgb(218,178,204,0.5) 1px,
        transparent 1px,
        transparent 6px
    );
    height: 100%;
    top: 0;
    opacity: 0.3;
    z-index: -1;
}

@media screen and (max-width: 1200px) {.teaching_process_id .text_holder_wrap_id::after {
    left: -10%;
    width: 120%;
}.teaching_process_id .text_holder_wrap_id p::after {
    display: none;
}
}

@media screen and (max-width: 992px) {.teaching_process_id {
    padding: 120px 0;
}.teaching_process_id .who_mentors_id {
    transform: rotate(-2deg);
}.teaching_process_id .text_holder_wrap_id {
    width: 70%;
    padding: 50px 40px 50px 40px;
}.teaching_process_id .text_holder_wrap_id h2 {
    transform: translateX(-30px);
}.teaching_process_id .text_holder_wrap_id::before {
    width: 150px;
    top: -75px;
    height: 150px;
    right: -75px;
}.teaching_process_id::after {
    height: 150px;
    width: 150px;
    bottom: -75px;
}
}

@media screen and (max-width: 768px) {.teaching_process_id {
    overflow: hidden;
    padding: 90px 0;
}.teaching_process_id .who_mentors_id {
    transform: none;
}.teaching_process_id .text_holder_wrap_id {
    width: 90%;
    border-radius: 18px;
    margin-left: 0;
    transform: none;
    padding: 40px 30px;
}.teaching_process_id .text_holder_wrap_id:hover {
    transform: none;
}.teaching_process_id .text_holder_wrap_id h2 {
    margin-bottom: 25px;
    font-size: calc(34px * 0.9);
    transform: none;
}.teaching_process_id .text_holder_wrap_id h2::before {
    display: none;
}.teaching_process_id .text_holder_wrap_id::before {
    width: 120px;
    right: -60px;
    height: 120px;
    top: -60px;
}.teaching_process_id .text_holder_wrap_id::after {
    bottom: -20px;
    width: 100%;
    left: 0;
}.teaching_process_id .who_mentors_id::before,
    .teaching_process_id .who_mentors_id::after,
    .teaching_process_id::after {
    display: none;
}
}

@media screen and (max-width: 480px) {.teaching_process_id {
    padding: 70px 0;
}.teaching_process_id .text_holder_wrap_id {
    padding: 30px 20px;
    width: 100%;
}.teaching_process_id .text_holder_wrap_id h2 {
    margin-bottom: 20px;
    font-size: calc(34px * 0.8);
    padding-bottom: 12px;
}.teaching_process_id .text_holder_wrap_id h2::after {
    height: 3px;
    width: 50px;
}.teaching_process_id .text_holder_wrap_id p {
    font-size: calc(13px * 0.9);
}.teaching_process_id .text_holder_wrap_id::before {
    right: -40px;
    top: -40px;
    height: 80px;
    width: 80px;
}}header .top_plank {
    background: rgb(218,178,204);
    color:  #ffffff;
}header .top_plank .top_zone_id div svg, header .top_plank .top_zone_id div svg path {
    fill: #ffffff;
}header .top_plank .top_zone_id div span {
    color: #ffffff;
}header .top_plank .top_zone_id {
    flex-wrap: wrap;
    justify-content: flex-start;
    display: flex;
    line-height: 21px;
    padding: 15px 0 10px 0;
    font-size: 14px;
    width: 100%;
    align-items: center;
}header .top_plank .top_zone_id div {
    justify-content: flex-start;
    margin-right: 24px;
    align-items: center;
    display: flex;
}header .top_plank .top_zone_id div img, header .top_plank .top_zone_id div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}.course_program_id {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background-color: rgb(236,219,229);
}.course_program_id::before {
    height: 100%;
    z-index: 1;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    position: absolute;
    background: linear-gradient(135deg, rgb(218,178,204,0.5) 0%, transparent 50%, rgb(197,138,175,0.5) 100%);
}.course_program_id::after {
    top: -50px;
    z-index: 0;
    height: 200px;
    position: absolute;
    background-color: rgb(218,178,204,0.5);
    width: 200px;
    right: -50px;
    content: "";
    border-radius: 50%;
    filter: blur(80px);
    animation: floatAnimation 15s infinite alternate ease-in-out;
}.course_program_id .skill_work_id {
    z-index: 2;
    display: flex;
    flex-direction: column;
}.course_program_id .text_holder_wrap_id {
    margin: 0 auto 60px;
    position: relative;
    width: 80%;
}.course_program_id .text_holder_wrap_id::before {
    top: -20px;
    position: absolute;
    left: 0;
    content: "";
    width: 80px;
    background: linear-gradient(90deg, rgb(218,178,204), rgb(197,138,175));
    height: 4px;
    border-radius: 10px;
}.course_program_id .text_holder_wrap_id h2 {
    color: #000000;
    border-radius: 10px;
    font-weight: 700;
    padding: 15px;
    font-size: 37px;
    margin-bottom: 30px;
    background-image: repeating-linear-gradient(45deg, rgb(218,178,204,0.5) 0px, rgb(218,178,204,0.5) 2px, transparent 2px, transparent 8px);
    transition: transform 0.5s ease;
    position: relative;
    transform: translateX(0);
}.course_program_id .text_holder_wrap_id h2:hover {
    transform: translateX(10px);
}.course_program_id .text_holder_wrap_id .description {
    color: #000000;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid rgb(218,178,204);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 13px;
}.course_program_id .text_holder_wrap_id .description:last-child {
    border-radius: 10px;
    font-weight: 600;
    position: relative;
    margin-top: 30px;
    border-left: none;
    backdrop-filter: blur(5px);
    padding: 30px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    color: #ffffff;
}.course_program_id .image_card_id {
    top: 0;
    position: absolute;
    z-index: 1;
    left: 0;
    opacity: 0.2;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
}.course_program_id .skill_work_id:hover .image_card_id {
    transform: scale(1.05);
    opacity: 0.3;
}.course_program_id .image_card_id::before {
    position: absolute;
    background: linear-gradient(135deg, rgb(218,178,204,0.5) 0%, transparent 80%);
    height: 100%;
    z-index: 1;
    top: 0;
    width: 100%;
    left: 0;
    content: "";
}.course_program_id .image_card_id::after {
    width: 80%;
    bottom: 0;
    right: 0;
    background: linear-gradient(225deg, rgb(197,138,175,0.5) 0%, transparent 100%);
    height: 40%;
    position: absolute;
    content: "";
    z-index: 1;
}@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, 20px) scale(1.2);
    }
    50% {
        transform: translate(0, 40px) scale(0.8);
    }
    75% {
        transform: translate(-30px, 20px) scale(1.1);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes pulseAnimation {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.4;
    }
}

.course_program_id .skill_work_id::before {
    filter: blur(100px);
    height: 200px;
    content: "";
    left: -50px;
    width: 200px;
    bottom: -100px;
    animation: pulseAnimation 10s infinite ease-in-out;
    background-color: rgb(197,138,175,0.5);
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}.course_program_id .skill_work_id::after {
    border-radius: 10px;
    position: absolute;
    height: 40px;
    z-index: -1;
    border: 4px solid rgb(218,178,204,0.5);
    right: -20px;
    animation: rotateAnimation 20s infinite linear;
    top: 40px;
    content: "";
    width: 40px;
}@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.course_program_id .text_holder_wrap_id::after {
    right: -60px;
    height: 100px;
    border-radius: 50%;
    z-index: -1;
    animation: rotateAnimation 30s infinite linear reverse;
    content: "";
    width: 100px;
    top: -40px;
    position: absolute;
    border: 2px dashed rgb(218,178,204,0.5);
}.course_program_id .text_holder_wrap_id .description:first-of-type {
    padding: 20px;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgb(236,219,229) 10px,
        rgb(236,219,229) 12px
    );
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    border-left: none;
}.course_program_id .text_holder_wrap_id .description:first-of-type::after {
    background: linear-gradient(90deg, rgb(218,178,204), transparent);
    position: absolute;
    bottom: 0;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
}.course_program_id .text_holder_wrap_id .description:last-child::before {
    border-radius: 10px;
    top: 0;
    background-position: center;
    height: 100%;
    filter: brightness(0.5) contrast(1.2);
    position: absolute;
    z-index: -1;
    width: 100%;
    content: "";
    left: 0;
    background-size: cover;
}

@media (max-width: 1024px) {.course_program_id {
    padding: 80px 0;
}.course_program_id .text_holder_wrap_id {
    width: 90%;
}
}

@media (max-width: 768px) {.course_program_id {
    padding: 60px 0;
}.course_program_id .text_holder_wrap_id {
    margin-bottom: 40px;
    width: 100%;
}.course_program_id .text_holder_wrap_id h2 {
    font-size: calc(37px * 0.9);
    margin-bottom: 20px;
}.course_program_id .text_holder_wrap_id .description:last-child {
    padding: 25px 30px;
}
}

@media (max-width: 576px) {.course_program_id {
    padding: 40px 0;
}.course_program_id .text_holder_wrap_id h2 {
    font-size: calc(37px * 0.8);
}.course_program_id .text_holder_wrap_id .description {
    font-size: calc(13px * 0.95);
}.course_program_id .text_holder_wrap_id .description:last-child {
    padding: 20px;
}.course_program_id::after,
    .course_program_id .skill_work_id::before,
    .course_program_id .text_holder_wrap_id::after {
    display: none;
}.course_program_id .text_holder_wrap_id::before {
    width: 60px;
}}

.course_program_id .skill_work_id .text_holder_wrap_id .description strong {
    font-weight: 600;
    color: rgb(197,138,175);
}.course_program_id .container::before {
    background: linear-gradient(90deg, transparent, rgb(218,178,204,0.5), transparent);
    content: "";
    bottom: -40px;
    width: 150%;
    height: 1px;
    position: absolute;
    left: -25%;
}.course_program_id .text_holder_wrap_id h2::after {
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    height: 30px;
    width: 30px;
    filter: blur(15px);
    background-color: rgb(218,178,204,0.5);
    left: -15px;
    content: "";
    top: -15px;
}.experience_trial_id {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgb(218,178,204) 0%, rgb(197,138,175) 100%);
    z-index: 1;
    overflow: hidden;
}.experience_trial_id::before {
    top: 0;
    height: 100%;
    z-index: -1;
    left: 0;
    content: "";
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 10px
    );
    position: absolute;
}.experience_trial_id::after {
    height: 150%;
    content: "";
    transform: rotate(-15deg);
    right: -10%;
    top: -30%;
    z-index: -1;
    position: absolute;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 70%
    );
    width: 40%;
}.experience_trial_id .container {
    position: relative;
    align-items: center;
    margin: 0 auto;
    transform-style: preserve-3d;
    display: flex;
    max-width: 1140px;
    flex-direction: column;
    perspective: 1000px;
}.experience_trial_id h6 {
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    max-width: 800px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    transform: translateZ(10px);
    font-size: calc(21px * 1.1);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-family: Nunito, sans-serif;
    color: #ffffff;
}.experience_trial_id div div {
    justify-content: center;
    display: flex;
    transform: translateZ(20px);
}.experience_trial_id span {
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}.experience_trial_id .feedback_widget_id {
    justify-content: center;
    border-radius: 10px;
    color: rgb(218,178,204);
    display: inline-flex;
    transform: translateY(0);
    align-items: center;
    padding: 1rem 2rem;
    font-size: 15px;
    overflow: hidden;
    font-family: Nunito, sans-serif;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    font-weight: 600;
}.experience_trial_id .feedback_widget_id::before {
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    position: absolute;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: transform 0.8s ease;
    top: 0;
    transform: translateX(-100%);
    z-index: -1;
}.experience_trial_id .feedback_widget_id span {
    z-index: 2;
    opacity: 1;
    animation: none;
    position: relative;
}.experience_trial_id .feedback_widget_id:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    background-color: #ffffff;
    color: rgb(197,138,175);
}.experience_trial_id .feedback_widget_id:hover::before {
    transform: translateX(100%);
}.experience_trial_id .feedback_widget_id:active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

@media (max-width: 991px) {.experience_trial_id {
    padding: 3.5rem 1.5rem;
}.experience_trial_id h6 {
    margin-bottom: 2rem;
    font-size: calc(21px * 1);
}.experience_trial_id .feedback_widget_id {
    padding: 0.9rem 1.8rem;
}
}

@media (max-width: 767px) {.experience_trial_id {
    padding: 3rem 1.2rem;
}.experience_trial_id h6 {
    margin-bottom: 1.8rem;
    line-height: 1.5;
    font-size: calc(21px * 0.95);
}.experience_trial_id .feedback_widget_id {
    padding: 0.8rem 1.6rem;
    font-size: calc(15px * 0.95);
}
}

@media (max-width: 575px) {.experience_trial_id {
    padding: 2.5rem 1rem;
}.experience_trial_id h6 {
    line-height: 1.4;
    font-size: calc(21px * 0.9);
    margin-bottom: 1.5rem;
}.experience_trial_id .feedback_widget_id {
    font-size: calc(15px * 0.9);
    padding: 0.75rem 1.4rem;
}.experience_trial_id::after {
    width: 60%;
    right: -20%;
}
}

@media (max-width: 380px) {.experience_trial_id h6 {
    font-size: calc(21px * 0.85);
}.experience_trial_id .feedback_widget_id {
    font-size: calc(15px * 0.85);
    padding: 0.7rem 1.2rem;
}}.reach_out_info_id {
    font-family: Nunito, sans-serif;
    color: #000000;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(236,219,229) 0%, rgb(218,178,204,0.5) 100%);
    position: relative;
    padding: 4rem 2rem;
}.reach_out_info_id::before {
    position: absolute;
    left: -10%;
    animation: pulse 15s infinite alternate ease-in-out;
    z-index: 0;
    content: "";
    height: 120%;
    opacity: 0.4;
    top: -10%;
    background: radial-gradient(circle at 30% 70%, rgb(218,178,204,0.5) 0%, transparent 60%);
    width: 120%;
}.reach_out_info_id::after {
    animation: float 20s infinite alternate ease-in-out;
    right: 0;
    bottom: 0;
    content: "";
    background-image: radial-gradient(circle at 80% 20%, rgb(197,138,175,0.5) 0%, transparent 40%);
    position: absolute;
    width: 100%;
    z-index: 0;
    height: 100%;
}.reach_out_info_id h1 {
    transform: translateY(-5px);
    font-size: 38px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    color: rgb(218,178,204);
    position: relative;
    text-align: center;
    z-index: 2;
}.reach_out_info_id h1::after {
    background: linear-gradient(to right, rgb(218,178,204), rgb(197,138,175));
    border-radius: 10px;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    content: "";
    width: 80px;
    position: absolute;
    height: 4px;
}.reach_out_info_id .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}.reach_out_info_id .msg_team_id {
    transform: perspective(1000px) rotateX(2deg);
    display: grid;
    backdrop-filter: blur(10px);
    border-radius: 23px;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem;
    transition: transform 0.5s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06),
                0 5px 15px rgba(0, 0, 0, 0.04);
}.reach_out_info_id .msg_team_id:hover {
    transform: perspective(1000px) rotateX(0deg);
}.reach_out_info_id .msg_team_id > div {
    position: relative;
    transition: transform 0.3s ease-out;
}.reach_out_info_id .msg_team_id > div:hover {
    transform: translateY(-5px);
}.reach_out_info_id .msg_team_id > div:first-child {
    border-bottom: 1px solid rgb(218,178,204,0.5);
    color: #000000;
    line-height: 1.6;
    padding: 0 0 1.5rem 0;
    font-size: calc(15px * 1.1);
}.reach_out_info_id .msg_team_id h6 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 18px;
    color: rgb(218,178,204);
    font-weight: 600;
}.reach_out_info_id .msg_team_id span {
    font-size: 15px;
    display: block;
    color: #000000;
    padding-left: 2rem;
}.reach_out_info_id .edu_reach_id {
    flex-direction: column;
    gap: 1rem;
    display: flex;
}.reach_out_info_id .edu_reach_id > div {
    position: relative;
    transition: all 0.3s ease;
}.reach_out_info_id .edu_reach_id > div:hover {
    transform: translateX(5px);
}.reach_out_info_id .msg_page_id {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgb(218,178,204);
    transition: color 0.3s ease;
    font-size: calc(15px * 0.95);
    align-items: center;
    display: flex;
    font-weight: 600;
}.reach_out_info_id .msg_page_id:hover {
    color: rgb(197,138,175);
}.reach_out_info_id .msg_page_id:hover svg {
    transform: scale(1.1) rotate(5deg);
}.reach_out_info_id svg {
    margin-left: 0.5rem;
    height: 22px;
    transition: transform 0.3s ease;
    width: 22px;
}.reach_out_info_id svg path {
    fill: rgb(218,178,204);
    transition: fill 0.3s ease;
}.reach_out_info_id .msg_page_id:hover svg path {
    fill: rgb(197,138,175);
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.2;
        transform: scale(1);
    }
}

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

@media screen and (min-width: 768px) {.reach_out_info_id {
    padding: 6rem 3rem;
}.reach_out_info_id .msg_team_id {
    padding: 3rem;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}.reach_out_info_id .msg_team_id > div:first-child {
    border-bottom: none;
    padding: 0 2rem 0 0;
    border-right: 1px solid rgb(218,178,204,0.5);
}.reach_out_info_id h1 {
    font-size: calc(38px * 1.2);
    margin-bottom: 4rem;
}.reach_out_info_id h1::after {
    width: 120px;
}
}

@media screen and (min-width: 992px) {.reach_out_info_id .msg_team_id {
    transform: perspective(1500px) rotateX(3deg);
}.reach_out_info_id .edu_reach_id {
    gap: 1.5rem;
}
}

@media screen and (max-width: 767px) {.reach_out_info_id .msg_team_id > div:nth-child(2) {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgb(218,178,204,0.5);
}.reach_out_info_id svg {
    width: 20px;
    height: 20px;
}.reach_out_info_id h1 {
    font-size: calc(38px * 0.9);
}
}

@media screen and (max-width: 480px) {.reach_out_info_id {
    padding: 3rem 1.5rem;
}.reach_out_info_id .msg_team_id {
    padding: 1.5rem;
}.reach_out_info_id h1 {
    margin-bottom: 2rem;
}}.privacy_wrapper_id {
    width: 100%;
    height: auto;
    gap: 25px;
    flex-direction: column;
    padding: 40px;
    border: 2px solid rgb(218,178,204);
    color: #ffffff;
    display: flex;
    background: rgb(197,138,175);
    box-shadow: 0 0 10px rgb(218,178,204,0.5), inset 0 0 15px rgba(0, 0, 0, 0.5);
}.privacy_wrapper_id h1 {
    border-bottom: 2px solid rgb(197,138,175);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 10px;
    font-family: Nunito, sans-serif;
    font-size: 38px;
    margin: 0;
    color: rgb(218,178,204);
    text-align: center;
}.privacy_wrapper_id h2 {
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    text-align: left;
    font-family: Nunito, sans-serif;
    padding-left: 15px;
    font-size: 33px;
    border-left: 4px solid rgb(218,178,204);
    letter-spacing: 1px;
    color: rgb(197,138,175);
}.privacy_wrapper_id h3, .privacy_wrapper_id h4, .privacy_wrapper_id h5 {
    font-size: 18px;
    color: #ffffff;
}.privacy_wrapper_id ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}.privacy_wrapper_id li {
    font-family: Nunito, sans-serif;
    background: rgb(197,138,175,0.5);
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid rgb(218,178,204);
    line-height: 1.6;
    padding: 10px;
    color: #ffffff;
}.privacy_wrapper_id div {
    line-height: 1.8;
    border: 1px solid rgb(197,138,175);
    font-size: 14px;
    color: #000000;
    background: rgb(218,178,204,0.5);
    border-radius: 16px;
    font-family: Nunito, sans-serif;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
}.privacy_wrapper_id p, .privacy_wrapper_id span {
    font-size: 14px;
    line-height: 1.8;
    font-family: Nunito, sans-serif;
    color: #ffffff;
    margin-bottom: 10px;
}
@media only screen and (max-width: 800px) {.privacy_wrapper_id {
    padding: 20px;
}.privacy_wrapper_id h1 {
    margin-bottom: 15px;
    font-size: calc(18px - 4px);
}.privacy_wrapper_id h2 {
    margin-bottom: 10px;
    font-size: calc(18px - 2px);
}.privacy_wrapper_id ul {
    padding-left: 15px;
}.privacy_wrapper_id li {
    margin-bottom: 8px;
    padding: 8px;
}.privacy_wrapper_id div {
    padding: 15px;
}}.connect_with_us_id {
    background: rgb(236,219,229);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}.connect_with_us_id::before {
    left: 0;
    width: 100%;
    height: 5px;
    top: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(218,178,204), rgb(197,138,175));
    content: "";
}.connect_with_us_id .container {
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 1;
    max-width: 1200px;
}.connect_with_us_id h2 {
    position: relative;
    padding-left: 20px;
    font-weight: 700;
    text-align: left;
    display: inline-block;
    margin-bottom: 60px;
    font-family: Nunito, sans-serif;
    color: #000000;
    font-size: 31px;
}.connect_with_us_id h2::before {
    top: 0;
    left: 0;
    width: 5px;
    background: rgb(218,178,204);
    border-radius: 10px;
    height: 100%;
    position: absolute;
    content: "";
}.connect_with_us_id .request_info_id {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}.connect_with_us_id .image_card_id {
    box-shadow: -15px 15px 0 rgb(218,178,204,0.5);
    min-height: 500px;
    position: relative;
    order: 2;
    overflow: hidden;
    border-radius: 14px;
}.connect_with_us_id .help_card_id {
    order: 1;
}.connect_with_us_id form {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 50px;
    width: 100%;
}.connect_with_us_id form h3 {
    font-weight: 700;
    font-size: 18px;
    color: #000000;
    letter-spacing: 1px;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-family: Nunito, sans-serif;
}.connect_with_us_id form input[type="text"] {
    width: 100%;
    padding: 18px 25px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    background: rgb(236,219,229);
    font-size: 17px;
    border: none;
    border-radius: 10px;
    font-family: Nunito, sans-serif;
    color: #000000;
}.connect_with_us_id form input[type="text"]:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgb(218,178,204,0.5);
}.connect_with_us_id form input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.5;
}.connect_with_us_id .connect_inquiry_id {
    margin-bottom: 30px;
    align-items: flex-start;
    display: flex;
}.connect_with_us_id .connect_inquiry_id input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.connect_with_us_id .connect_inquiry_id label {
    line-height: 1.5;
    font-size: 12px;
    padding-left: 35px;
    position: relative;
    cursor: pointer;
    color: #000000;
}.connect_with_us_id .connect_inquiry_id label::before {
    transition: all 0.2s ease;
    content: "";
    position: absolute;
    background: rgb(236,219,229);
    top: 2px;
    height: 22px;
    width: 22px;
    left: 0;
    border-radius: 10px;
}.connect_with_us_id .connect_inquiry_id input[type="checkbox"]:checked + label::before {
    background: rgb(218,178,204);
}.connect_with_us_id .connect_inquiry_id input[type="checkbox"]:checked + label::after {
    position: absolute;
    top: 6px;
    border-right: 2px solid #ffffff;
    left: 8px;
    border-bottom: 2px solid #ffffff;
    content: "";
    width: 6px;
    height: 10px;
    transform: rotate(45deg);
}.connect_with_us_id .connect_inquiry_id label a {
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgb(218,178,204);
}.connect_with_us_id .connect_inquiry_id label a:hover {
    color: rgb(197,138,175);
}.connect_with_us_id form .feedback_widget_id {
    display: inline-block;
    position: relative;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    font-family: Nunito, sans-serif;
    background: #000000;
    overflow: hidden;
    border: none;
    color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 18px 40px;
}.connect_with_us_id form .feedback_widget_id:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgb(218,178,204);
}.connect_with_us_id svg {
    width: 20px;
    fill: rgb(218,178,204);
    height: 20px;
}.connect_with_us_id svg path {
    transition: fill 0.3s ease;
    fill: rgb(218,178,204);
}

@media screen and (max-width: 991px) {.connect_with_us_id {
    padding: 90px 0;
}.connect_with_us_id .request_info_id {
    grid-template-columns: 1fr;
    gap: 40px;
}.connect_with_us_id .image_card_id {
    max-width: 600px;
    margin: 0 auto;
    order: 1;
    min-height: 400px;
}.connect_with_us_id .help_card_id {
    order: 2;
}.connect_with_us_id form {
    max-width: 600px;
    margin: 0 auto;
}
}

@media screen and (max-width: 767px) {.connect_with_us_id {
    padding: 70px 0;
}.connect_with_us_id h2 {
    margin-bottom: 40px;
    font-size: calc(31px * 0.9);
}.connect_with_us_id .image_card_id {
    min-height: 300px;
    width: 100%;
    box-shadow: -10px 10px 0 rgb(218,178,204,0.5);
}.connect_with_us_id form {
    padding: 40px 30px;
}
}

@media screen and (max-width: 576px) {.connect_with_us_id {
    padding: 50px 0;
}.connect_with_us_id h2 {
    font-size: calc(31px * 0.8);
    margin-bottom: 30px;
}.connect_with_us_id .image_card_id {
    box-shadow: -8px 8px 0 rgb(218,178,204,0.5);
    min-height: 250px;
}.connect_with_us_id form {
    padding: 30px 20px;
}.connect_with_us_id form h3 {
    font-size: calc(18px * 0.9);
    margin-bottom: 25px;
}.connect_with_us_id form input[type="text"] {
    padding: 15px 20px;
    margin-bottom: 20px;
}.connect_with_us_id form .feedback_widget_id {
    width: 100%;
    padding: 15px 20px;
}}.appHub_id {
    background: linear-gradient(135deg, rgb(236,219,229) 0%, rgba(rgb(197,138,175,0.5), 0.15) 100%);
    z-index: 1;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}.appHub_id::before {
    z-index: -1;
    top: -20%;
    height: 180%;
    content: "";
    transform: rotate(-15deg) translateZ(0);
    width: 60%;
    position: absolute;
    animation: floatBg 18s infinite alternate ease-in-out;
    background: linear-gradient(145deg, rgb(218,178,204) 0%, rgba(rgb(218,178,204,0.5), 0.2) 100%);
    left: -10%;
    clip-path: polygon(0 0, 100% 15%, 85% 100%, 0% 85%);
}.appHub_id::after {
    width: 40%;
    z-index: -1;
    bottom: -10%;
    right: -5%;
    height: 140%;
    transform: rotate(12deg) translateZ(0);
    background: linear-gradient(215deg, rgb(197,138,175) 0%, rgba(rgb(197,138,175,0.5), 0.3) 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 85%);
    animation: floatBg 15s infinite alternate-reverse ease-in-out;
    content: "";
    position: absolute;
}.appHub_id .container {
    padding: 0 20px;
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    z-index: 2;
}.appHub_id .who_mentors_id {
    opacity: 1;
    transform: translateY(0);
    backdrop-filter: blur(15px);
    background: rgba(rgb(255, 255, 255, 0.5), 0.9);
    box-shadow: 0 20px 50px rgba(rgba(0, 0, 0, 0.5), 0.1), 
                0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05),
                0 5px 15px rgba(rgb(218,178,204,0.5), 0.05);
    border-left: 4px solid rgb(218,178,204);
    padding: 4rem;
    animation: slideUp 0.9s cubic-bezier(0.17, 0.67, 0.26, 0.97);
    position: relative;
}.appHub_id .who_mentors_id::before {
    height: 100%;
    position: absolute;
    transform: translate(-10px, -10px);
    content: "";
    top: 20px;
    width: 100%;
    pointer-events: none;
    left: 20px;
    border: 2px dashed rgba(rgb(197,138,175,0.5), 0.2);
    z-index: -1;
}.appHub_id .who_mentors_id > div:first-child {
    animation: slideRight 0.8s 0.3s cubic-bezier(0.17, 0.67, 0.26, 0.97) both;
    position: relative;
    transform: translateX(0);
    margin-bottom: 2rem;
}.appHub_id .who_mentors_id > div:first-child::after {
    height: 3px;
    bottom: -0.8rem;
    left: 0;
    position: absolute;
    width: 80px;
    background: rgb(218,178,204);
    animation: expandWidth 1.2s 0.8s cubic-bezier(0.17, 0.67, 0.26, 0.97) forwards;
    content: "";
}.appHub_id h5 {
    line-height: 1.4;
    color: #000000;
    letter-spacing: -0.01em;
    margin: 0;
    transform: translateZ(0);
    font-weight: 700;
    font-size: 20px;
}.appHub_id .who_mentors_id > div:last-child {
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.5s ease-out forwards;
    opacity: 0;
}.appHub_id a {
    display: block;
    text-decoration: none;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.26, 0.97);
}.appHub_id a:hover {
    transform: translateY(-5px);
}.appHub_id a::before {
    transform: rotate(-15deg);
    background: linear-gradient(135deg, rgb(218,178,204) 0%, rgb(197,138,175) 100%);
    width: 40px;
    transition: all 0.4s ease;
    left: -20px;
    content: "";
    opacity: 0.1;
    height: 40px;
    position: absolute;
    top: -15px;
    border-radius: 10px;
}.appHub_id a:hover::before {
    transform: rotate(0deg) scale(1.2);
    opacity: 0.2;
}.appHub_id p {
    font-size: 12px;
    z-index: 2;
    margin: 0;
    color: #000000;
    font-weight: 400;
    position: relative;
    line-height: 1.8;
}

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

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

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

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

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

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

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

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

@media (hover: hover) {.appHub_id a {
    position: relative;
    overflow: hidden;
}.appHub_id a::after {
    content: "";
    left: 0;
    transform-origin: right;
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleX(0);
    width: 100%;
    height: 1px;
    background: rgb(218,178,204);
    bottom: 0;
}.appHub_id a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}}.our_team_id {
    background: linear-gradient(145deg, rgb(236,219,229), #f8f9fa);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.05),
                -12px -12px 24px rgba(255, 255, 255, 0.8);
}.our_team_id::before {
    top: -50px;
    height: 300px;
    filter: blur(20px);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: float 15s ease-in-out infinite alternate;
    width: 300px;
    content: "";
    right: -50px;
    position: absolute;
    background: linear-gradient(135deg, rgb(218,178,204,0.5), transparent 70%);
    z-index: 0;
}.our_team_id::after {
    height: 400px;
    content: "";
    bottom: -100px;
    background: linear-gradient(225deg, rgb(197,138,175,0.5), transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    left: -100px;
    z-index: 0;
    position: absolute;
    filter: blur(25px);
    animation: float 18s ease-in-out infinite alternate-reverse;
    width: 400px;
}.our_team_id .container {
    max-width: 1200px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    margin: 0 auto;
}.our_team_id h1 {
    transition: transform 0.5s ease-out;
    transform: perspective(1000px) translateZ(0);
    font-weight: 700;
    margin-bottom: 50px;
    color: #000000;
    text-align: center;
    font-size: 43px;
    position: relative;
}.our_team_id h1::before {
    bottom: -15px;
    left: 50%;
    width: 80px;
    content: "";
    position: absolute;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, rgb(218,178,204), rgb(197,138,175));
    height: 4px;
}.our_team_id h1:hover {
    transform: perspective(1000px) translateZ(10px);
}.our_team_id h1:hover::before {
    width: 120px;
}.our_team_id .learning_zone_id {
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.05),
                -8px -8px 16px rgba(255, 255, 255, 0.8),
                inset 1px 1px 2px rgba(255, 255, 255, 0.6),
                inset -1px -1px 2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}.our_team_id .learning_zone_id:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px rgba(0, 0, 0, 0.08),
                -12px -12px 20px rgba(255, 255, 255, 0.9),
                inset 1px 1px 2px rgba(255, 255, 255, 0.6),
                inset -1px -1px 2px rgba(0, 0, 0, 0.05);
}.our_team_id ul {
    gap: 30px;
    padding: 0;
    display: grid;
    list-style: none;
    margin: 0;
    grid-template-columns: 1fr;
}.our_team_id .corp_culture_id {
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.06),
                -8px -8px 16px rgba(255, 255, 255, 0.7),
                inset 1px 1px 2px rgba(255, 255, 255, 0.3),
                inset -1px -1px 2px rgba(0, 0, 0, 0.02);
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    position: relative;
}.our_team_id .corp_culture_id::before {
    background: linear-gradient(180deg, rgb(218,178,204), rgb(197,138,175));
    height: 0;
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    width: 4px;
    transition: height 0.5s ease;
}.our_team_id .corp_culture_id:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.08),
                -12px -12px 24px rgba(255, 255, 255, 0.8),
                inset 1px 1px 2px rgba(255, 255, 255, 0.3),
                inset -1px -1px 2px rgba(0, 0, 0, 0.02);
}.our_team_id .corp_culture_id:hover::before {
    height: 100%;
}.our_team_id .corp_culture_id h4 {
    font-weight: 600;
    color: #000000;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    position: relative;
}.our_team_id .corp_culture_id h4::after {
    height: 2px;
    transition: width 0.4s ease;
    width: 0;
    left: 0;
    background: linear-gradient(90deg, rgb(218,178,204), rgb(197,138,175));
    position: absolute;
    bottom: -8px;
    content: "";
}.our_team_id .corp_culture_id:hover h4 {
    color: rgb(218,178,204);
    transform: translateX(10px);
}.our_team_id .corp_culture_id:hover h4::after {
    width: 100%;
}.our_team_id .corp_culture_id div {
    margin-left: 5px;
    color: #000000;
    padding-right: 10px;
    transition: color 0.3s ease;
    font-weight: 400;
    max-height: 300px;
    overflow-y: auto;
    line-height: 1.7;
    font-size: 12px;
}.our_team_id .corp_culture_id:hover div {
    color: #000000;
}.our_team_id .corp_culture_id div::-webkit-scrollbar {
    width: 4px;
}.our_team_id .corp_culture_id div::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}.our_team_id .corp_culture_id div::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgb(218,178,204), rgb(197,138,175));
    border-radius: 8px;
}

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

@media (min-width: 768px) {.our_team_id {
    padding: 100px 0;
}.our_team_id ul {
    grid-template-columns: repeat(2, 1fr);
}.our_team_id h1 {
    font-size: calc(43px * 1.2);
    margin-bottom: 70px;
}.our_team_id .corp_culture_id {
    padding: 35px 30px;
    height: 100%;
}.our_team_id .corp_culture_id div {
    max-height: 400px;
}
}

@media (min-width: 992px) {.our_team_id .container {
    padding: 0 40px;
}.our_team_id .learning_zone_id {
    padding: 40px;
}.our_team_id .corp_culture_id {
    padding: 40px 35px;
}.our_team_id .corp_culture_id div {
    max-height: 500px;
    line-height: 1.8;
}
}

@media (max-width: 767px) {.our_team_id {
    padding: 60px 0;
}.our_team_id h1 {
    margin-bottom: 40px;
    font-size: calc(43px * 0.9);
}.our_team_id .corp_culture_id {
    padding: 20px;
}.our_team_id .corp_culture_id div {
    max-height: 250px;
}
}

@media (hover: none) {.our_team_id h1:hover,
    .our_team_id .corp_culture_id:hover,
    .our_team_id .learning_zone_id:hover {
    transform: none;
}.our_team_id .corp_culture_id:hover::before {
    height: 70px;
}.our_team_id .corp_culture_id:hover h4 {
    transform: translateX(5px);
}}.education_experience_id {
    padding: 6rem 2rem 4rem;
    position: relative;
    background: linear-gradient(180deg, rgb(236,219,229) 0%, rgb(197,138,175,0.5) 100%);
    overflow: hidden;
}.education_experience_id::before {
    background: repeating-linear-gradient(
        -45deg,
        rgb(218,178,204,0.5) 0px,
        rgb(218,178,204,0.5) 2px,
        transparent 2px,
        transparent 10px
    );
    top: 0;
    opacity: 0.2;
    height: 100%;
    position: absolute;
    content: "";
    z-index: 1;
    left: 0;
    width: 100%;
}.education_experience_id::after {
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    background: #ffffff;
    width: 50%;
    position: absolute;
    content: "";
    top: 0;
    opacity: 0.1;
    z-index: 1;
    height: 100%;
    right: 0;
}.education_experience_id .review_grid_id {
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}.education_experience_id .image_card_id {
    border-radius: 0;
    width: 200px;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
    margin-bottom: -50px;
    transition: all 0.5s ease;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    height: 250px;
}.education_experience_id .image_card_id:hover {
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.5);
    transform: translateY(-15px);
}.education_experience_id .career_exp_id {
    position: relative;
    padding: 70px 30px 30px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    background: #ffffff;
    z-index: 2;
    width: 100%;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    flex-direction: column;
}.education_experience_id .career_exp_id::before {
    width: 100%;
    background: rgb(218,178,204);
    position: absolute;
    transform: translateZ(-20px);
    z-index: -1;
    top: 0;
    content: "";
    left: 0;
    height: 100%;
}.education_experience_id .name {
    font-size: 34px;
    color: rgb(218,178,204);
    text-align: center;
    position: relative;
    margin-bottom: 0.5rem;
    font-weight: 700;
}.education_experience_id .name::after {
    content: "";
    left: 50%;
    height: 3px;
    transform: translateX(-50%);
    position: absolute;
    width: 50px;
    background: rgb(197,138,175);
    bottom: -10px;
}.education_experience_id .career_exp_id > div:nth-child(2) {
    letter-spacing: 2px;
    color: rgb(197,138,175);
    margin: 20px 0;
    font-weight: 600;
    font-size: 17px;
    text-transform: uppercase;
    text-align: center;
}.education_experience_id .emp_summary_id {
    line-height: 1.8;
    text-align: center;
    color: #000000;
    position: relative;
    padding-top: 30px;
    font-weight: 400;
    font-size: 13px;
    font-style: italic;
    margin-top: 20px;
    border-top: 1px solid rgb(236,219,229);
    width: 100%;
}.education_experience_id .emp_summary_id::before,
.education_experience_id .emp_summary_id::after {
    border-radius: 50%;
    background: rgb(197,138,175,0.5);
    width: 30px;
    position: absolute;
    content: "";
    height: 30px;
}.education_experience_id .emp_summary_id::before {
    transform: translateX(-20px);
    left: 50%;
    top: -15px;
}.education_experience_id .emp_summary_id::after {
    left: 50%;
    transform: translateX(-10px);
    top: -15px;
}@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.education_experience_id .career_exp_id:hover {
    animation: float 3s ease-in-out infinite;
}

@media (max-width: 768px) {.education_experience_id {
    padding: 4rem 1rem 3rem;
}.education_experience_id .image_card_id {
    width: 150px;
    height: 180px;
    margin-bottom: -40px;
}.education_experience_id .career_exp_id {
    padding: 60px 20px 20px;
}}header {
    margin-top: 0;
    background: linear-gradient(135deg, rgb(218,178,204,0.5) 0%, rgb(236,219,229) 100%);
    position: relative;
    padding: 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    z-index: 100;
    overflow: visible;
}header::before {
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
    opacity: 0.4;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 8%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 12%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 10%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 15%),
        radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 8%);
    width: 100%;
    z-index: 0;
    content: '';
}header::after {
    opacity: 0.6;
    content: '';
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(218,178,204,0.5), 
        transparent
    );
    bottom: 0;
    height: 10px;
    width: 100%;
}header .first_teach_id {
    display: flex;
    z-index: 5;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 3rem;
}header .main_pagewrap_id {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50% 30% 60% 40% / 40% 50% 30% 50%;
    margin-right: 2rem;
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
    transition: all 0.6s ease;
}header .main_pagewrap_id:hover {
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.7), 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 60% 40% 30% 70% / 50% 30% 60% 40%;
    transform: translateY(-5px);
}header .nav_skill_id {
    display: block;
    transition: all 0.4s ease;
    position: relative;
}header .nav_skill_id img {
    max-height: 38px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}header .top_core_id {
    position: relative;
    z-index: 2;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}header .top_core_id::before {
    transition: all 0.6s ease;
    opacity: 0.1;
    top: -5%;
    left: -5%;
    background: linear-gradient(135deg, rgb(218,178,204,0.5) 0%, transparent 100%);
    z-index: -1;
    border-radius: 70% 30% 50% 40% / 40% 60% 30% 50%;
    position: absolute;
    content: '';
    height: 110%;
    width: 110%;
}header .top_core_id:hover::before {
    opacity: 0.2;
    border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
}header .head_sitebar_id {
    margin: 0 0.5rem;
    position: relative;
}header .head_sitebar_id a {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    font-size: 15px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    padding: 0.8rem 1.3rem;
    text-decoration: none;
    display: flex;
    z-index: 1;
    border-radius: 60% 40% 40% 60% / 40% 50% 50% 60%;
    color: #000000;
    align-items: center;
}header .head_sitebar_id a::before {
    z-index: -1;
    left: 0;
    transform: scale(1.1);
    background: linear-gradient(135deg, rgb(218,178,204,0.5) 0%, rgb(197,138,175,0.5) 100%);
    position: absolute;
    top: 0;
    content: '';
    opacity: 0;
    height: 100%;
    border-radius: inherit;
    transition: opacity 0.4s ease;
    width: 100%;
}header .head_sitebar_id a:hover {
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}header .head_sitebar_id a:hover::before {
    transform: scale(1);
    opacity: 1;
}header .head_sitebar_id::after {
    background: rgb(218,178,204);
    opacity: 0.7;
    bottom: -8px;
    transform: translateX(-50%) scale(0);
    left: 50%;
    content: '';
    transition: transform 0.4s ease;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
}header .head_sitebar_id:hover::after {
    transform: translateX(-50%) scale(1);
}header .first_teach_id::before {
    height: 200px;
    width: 200px;
    content: '';
    background: radial-gradient(circle, rgb(218,178,204,0.5) 0%, transparent 70%);
    right: -100px;
    border-radius: 50%;
    top: -100px;
    opacity: 0.1;
    position: absolute;
    filter: blur(30px);
}header .first_teach_id::after {
    height: 150px;
    filter: blur(30px);
    bottom: -75px;
    opacity: 0.1;
    position: absolute;
    border-radius: 50%;
    width: 150px;
    content: '';
    background: radial-gradient(circle, rgb(197,138,175,0.5) 0%, transparent 70%);
    left: -75px;
}.head_pagewrap_id {
    background: rgb(236,219,229);
    z-index: 1;
    position: relative;
    padding-top: 2rem;
}

@keyframes morphing {
    0%, 100% { border-radius: 60% 40% 30% 70% / 50% 30% 60% 40%; }
    33% { border-radius: 40% 60% 70% 30% / 30% 40% 30% 70%; }
    66% { border-radius: 30% 60% 70% 40% / 60% 30% 70% 40%; }
}

@media (min-width: 1400px) {header .first_teach_id {
    max-width: 1320px;
    margin: 0 auto;
}header .head_sitebar_id {
    margin: 0 0.7rem;
}header .head_sitebar_id a {
    padding: 0.8rem 1.6rem;
}
}

@media (max-width: 991px) {header .first_teach_id {
    flex-wrap: wrap;
    padding: 1rem 2rem;
}header .main_pagewrap_id {
    margin-right: 0;
    padding: 0.7rem;
    margin-bottom: 0;
}header .top_core_id {
    margin-top: 1rem;
    flex-basis: 100%;
    justify-content: flex-end;
}header .head_sitebar_id a {
    padding: 0.6rem 1rem;
    font-size: calc(15px - 1px);
}header .top_core_id::before {
    display: none;
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .first_teach_id {
    padding: 0.8rem 1.5rem;
}header .main_pagewrap_id {
    padding: 0.6rem;
    max-width: 140px;
    border-radius: 40% 60% 50% 50% / 40% 50% 50% 40%;
}header .nav_skill_id img {
    max-height: 35px;
}header .top_core_id {
    padding-bottom: 0.5rem;
    overflow-x: auto;
    margin-top: 0.8rem;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    scrollbar-width: thin;
}header .top_core_id::-webkit-scrollbar {
    height: 3px;
}header .top_core_id::-webkit-scrollbar-thumb {
    background: rgb(218,178,204,0.5);
    border-radius: 10px;
}header .head_sitebar_id {
    flex: 0 0 auto;
    margin: 0 0.2rem;
}header .head_sitebar_id a {
    font-size: calc(15px - 2px);
    padding: 0.5rem 0.8rem;
    border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
    white-space: nowrap;
}header .head_sitebar_id::after {
    display: none;
}header::after {
    height: 5px;
}
}

@media (max-width: 479px) {header .first_teach_id {
    padding: 0.7rem 1.2rem;
}header .main_pagewrap_id {
    padding: 0.5rem;
    max-width: 120px;
}header .head_sitebar_id a {
    padding: 0.4rem 0.6rem;
    font-size: calc(15px - 3px);
}}.greeting_page_id {
    width: 100%;
    overflow: hidden;
    position: relative;
}.greeting_page_id .start_welcome_id {
    min-height: 100vh;
    padding: 8% 10%;
    align-items: center;
    display: flex;
    position: relative;
    justify-content: flex-start;
    z-index: 1;
}.greeting_page_id .start_welcome_id::before {
    z-index: -1;
    position: absolute;
    left: 0;
    content: "";
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(25,25,35,0.6) 50%, rgba(0,0,0,0.8) 100%);
    right: 0;
    top: 0;
}.greeting_page_id .start_welcome_id::after {
    position: absolute;
    background: linear-gradient(to right, rgb(218,178,204,0.5) 0%, transparent 30%, transparent 70%, rgb(197,138,175,0.5) 100%);
    left: -10%;
    top: -10%;
    transform: skewY(-8deg);
    height: 120%;
    content: "";
    pointer-events: none;
    width: 120%;
    z-index: -1;
}.greeting_page_id .expert_sessions_id {
    animation: slideIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(calc(5% + 5vw));
    max-width: 750px;
}.greeting_page_id .expert_sessions_id::before {
    left: -5vw;
    top: 50%;
    content: "";
    position: absolute;
    background: rgb(218,178,204);
    animation: lineGrow 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.8s;
    transform: translateY(-50%);
    height: 0;
    width: 3px;
}.greeting_page_id .expert_sessions_id::after {
    position: absolute;
    background: linear-gradient(90deg, rgb(218,178,204) 0%, rgb(197,138,175) 100%);
    width: 80px;
    left: 0;
    bottom: -40px;
    transform: scaleX(0);
    content: "";
    transform-origin: left;
    height: 4px;
    animation: scaleIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 1.2s;
}.greeting_page_id h1 {
    animation: fadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.4s;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    position: relative;
    color: #ffffff;
    opacity: 0;
    font-weight: 700;
    transform: translateY(30px);
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    line-height: 1.1;
}.greeting_page_id h1::after {
    width: 60px;
    bottom: -0.5rem;
    height: 3px;
    background: rgb(218,178,204);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    animation: scaleIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.8s;
    left: 0;
    position: absolute;
}.greeting_page_id h3 {
    font-size: clamp(1.2rem, 2vw + 0.5rem, 1.8rem);
    max-width: 90%;
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0;
    line-height: 1.4;
    position: relative;
    color: #ffffff;
    animation: fadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.6s;
    transform: translateY(20px);
}.greeting_page_id p {
    transform: translateY(15px);
    position: relative;
    animation: fadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.8s;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
    color: #ffffff;
    margin-top: 2rem;
    line-height: 1.6;
    opacity: 0;
    max-width: 85%;
    border-left: 2px solid rgb(197,138,175);
    padding-left: 16px;
}

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

@keyframes slideIn {
  from {
    transform: translateX(calc(10% + 5vw));
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes lineGrow {
  from {
    height: 0;
  }
  to {
    height: 70%;
  }
}

@media (max-width: 1200px) {.greeting_page_id .start_welcome_id {
    padding: 10% 8%;
}.greeting_page_id .expert_sessions_id {
    max-width: 650px;
}
}

@media (max-width: 991px) {.greeting_page_id .start_welcome_id {
    padding: 12% 6%;
    min-height: 90vh;
}.greeting_page_id .expert_sessions_id::before {
    left: -4vw;
}.greeting_page_id h1 {
    margin-bottom: 1.5rem;
}.greeting_page_id h3 {
    max-width: 95%;
}
}

@media (max-width: 768px) {.greeting_page_id .start_welcome_id {
    padding: 15% 5%;
    align-items: flex-start;
    padding-top: 25vh;
}.greeting_page_id .expert_sessions_id {
    max-width: 100%;
}.greeting_page_id .expert_sessions_id::before {
    display: none;
}.greeting_page_id h1 {
    font-size: clamp(2rem, 7vw, 3rem);
}.greeting_page_id h3 {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
    max-width: 100%;
}.greeting_page_id p {
    margin-top: 1.5rem;
    max-width: 100%;
}
}

@media (max-width: 576px) {.greeting_page_id .start_welcome_id {
    padding: 25% 5% 15%;
    min-height: 80vh;
}.greeting_page_id .start_welcome_id::after {
    transform: skewY(-12deg);
}.greeting_page_id h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
}.greeting_page_id h3 {
    line-height: 1.5;
    font-size: clamp(1rem, 4vw, 1.2rem);
}.greeting_page_id p {
    padding-left: 12px;
    font-size: 1rem;
}.greeting_page_id .expert_sessions_id::after {
    width: 60px;
    bottom: -25px;
}}footer {
    z-index: 1;
    position: relative;
}footer::before {
    z-index: -2;
    position: absolute;
    opacity: 0.85;
    bottom: 0;
    left: 0;
    background: linear-gradient(120deg, rgb(218,178,204) 0%, rgb(197,138,175) 100%);
    right: 0;
    content: "";
    top: 0;
}footer::after {
    position: absolute;
    content: "";
    right: 0;
    z-index: -1;
    background-size: 20px 20px;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.07) 1px, transparent 1px);
    bottom: 0;
    left: 0;
    top: 0;
}.cheat_sheet_id {
    color: #ffffff;
    position: relative;
    padding: 4rem 0 2.5rem;
}.cheat_sheet_id::before {
    background: #ffffff;
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    clip-path: polygon(
        0% 0%, 4% 100%, 8% 0%, 12% 100%, 16% 0%, 20% 100%, 
        24% 0%, 28% 100%, 32% 0%, 36% 100%, 40% 0%, 44% 100%, 
        48% 0%, 52% 100%, 56% 0%, 60% 100%, 64% 0%, 68% 100%, 
        72% 0%, 76% 100%, 80% 0%, 84% 100%, 88% 0%, 92% 100%, 
        96% 0%, 100% 100%
    );
    content: "";
    opacity: 0.2;
    position: absolute;
}.cheat_sheet_id .container {
    flex-wrap: wrap;
    display: flex;
    position: relative;
    justify-content: space-between;
    gap: 3rem;
}.cheat_sheet_id .company_holder {
    background: rgba(255, 255, 255, 0.1);
    flex: 1 1 400px;
    padding: 2.5rem;
    clip-path: polygon(
        0% 0%, 100% 0%, 95% 100%, 5% 100%
    );
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}.cheat_sheet_id .company_holder h3 {
    font-size: 32px;
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 5% 100%);
    letter-spacing: 1px;
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    padding: 0.5rem 2rem;
    margin: 0 0 1.5rem;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
}.cheat_sheet_id .webinar_cta_id {
    color: #ffffff;
    padding: 1.5rem;
    line-height: 1.6;
    background: rgba(0, 0, 0, 0.15);
    margin: 0 1rem;
    clip-path: polygon(3% 0%, 97% 0%, 100% 100%, 0% 100%);
    font-size: 15px;
}.cheat_sheet_id .edu_global_id {
    min-width: 400px;
    flex-direction: column;
    flex: 1 1 calc(100% - 480px);
    display: flex;
    gap: 2rem;
}.cheat_sheet_id .top_lesson_id {
    gap: 2.5rem;
    flex-wrap: wrap;
    display: flex;
}.cheat_sheet_id .top_core_id {
    min-width: 200px;
    position: relative;
    flex: 1 1 calc(50% - 1.25rem);
}.cheat_sheet_id .top_core_id h5 {
    background: rgba(255, 255, 255, 0.15);
    clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 5% 100%);
    color: #ffffff;
    display: inline-block;
    font-weight: 600;
    margin: 0 0 1.5rem;
    position: relative;
    font-size: 21px;
    padding: 0.5rem 1.5rem;
}.cheat_sheet_id .top_core_id .top_lesson_id {
    background: rgba(0, 0, 0, 0.15);
    flex-direction: column;
    display: flex;
    clip-path: polygon(2% 0%, 98% 0%, 100% 95%, 0% 100%);
    padding: 1.5rem;
    gap: 0.8rem;
}.cheat_sheet_id .top_core_id .top_lesson_id a {
    text-decoration: none;
    clip-path: polygon(0% 0%, 97% 0%, 100% 100%, 3% 100%);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    font-size: 15px;
    display: block;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}.cheat_sheet_id .top_core_id .top_lesson_id a:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.15);
}.cheat_sheet_id .top_core_id .top_lesson_id a::before {
    left: 0;
    content: "";
    transition: all 0.3s ease;
    background: #ffffff;
    top: 0;
    width: 3px;
    opacity: 0;
    height: 100%;
    position: absolute;
}.cheat_sheet_id .top_core_id .top_lesson_id a:hover::before {
    opacity: 0.7;
}.review_block_id {
    clip-path: polygon(0% 20%, 2% 0%, 98% 0%, 100% 20%, 100% 100%, 0% 100%);
    position: relative;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}.review_block_id .container {
    display: flex;
    align-items: center;
    justify-content: center;
}.review_block_id .site_map_id {
    color: #ffffff;
    text-align: center;
    clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
    position: relative;
    font-size: 13px;
    padding: 0.7rem 2rem;
    background: rgba(255, 255, 255, 0.05);
}

@keyframes hexagonPulse {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@media (max-width: 1200px) {.cheat_sheet_id .container {
    gap: 2rem;
}.cheat_sheet_id .company_holder {
    flex: 1 1 380px;
}.cheat_sheet_id .edu_global_id {
    flex: 1 1 calc(100% - 430px);
    min-width: 380px;
}
}

@media (max-width: 992px) {.cheat_sheet_id {
    padding: 3.5rem 0 2rem;
}.cheat_sheet_id .container {
    gap: 2.5rem;
    flex-direction: column;
}.cheat_sheet_id .company_holder,
    .cheat_sheet_id .edu_global_id {
    flex: 1 1 100%;
    min-width: 100%;
}.cheat_sheet_id .top_core_id {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 200px;
}
}

@media (max-width: 768px) {.cheat_sheet_id {
    padding: 3rem 0 1.5rem;
}.cheat_sheet_id .company_holder {
    padding: 2rem;
}.cheat_sheet_id .company_holder h3 {
    font-size: calc(32px - 2px);
}.cheat_sheet_id .top_lesson_id {
    gap: 1.5rem;
}.review_block_id {
    margin-top: 2rem;
}
}

@media (max-width: 576px) {.cheat_sheet_id {
    padding: 2.5rem 0 1rem;
}.cheat_sheet_id .top_core_id {
    flex: 1 1 100%;
    min-width: 100%;
}.cheat_sheet_id .top_lesson_id {
    gap: 1rem;
}.review_block_id {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
    clip-path: polygon(0% 10%, 2% 0%, 98% 0%, 100% 10%, 100% 100%, 0% 100%);
}.cheat_sheet_id::before {
    height: 5px;
}
}

@media (max-width: 420px) {.cheat_sheet_id .company_holder {
    padding: 1.5rem;
    clip-path: polygon(0% 0%, 100% 0%, 97% 100%, 3% 100%);
}.cheat_sheet_id .company_holder h3 {
    padding: 0.4rem 1rem;
}.cheat_sheet_id .top_core_id h5 {
    padding: 0.4rem 1rem;
}.cheat_sheet_id .top_core_id .top_lesson_id {
    padding: 1rem;
}.cheat_sheet_id .top_core_id .top_lesson_id a:hover {
    transform: translateX(3px);
}.review_block_id .site_map_id {
    padding: 0.6rem 1.5rem;
    width: 90%;
}
}