﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}.container {
    width: 1163px;
    max-width: 100%;
    margin: auto;
}header,footer {
    width: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.content-wrapper_lkHjP {
    min-height: 100%;
    height: 100%;
    flex-direction: column;
    display: flex;
}svg {
    height: 30px;
    width: 30px;
}.header_navbar_qzfnB {
    flex: 1 0 auto;
}.lesson_cta_eSKzT {
    flex: 0 0 auto;
}html,body {
    color: #000000;
    font-family: Arial, sans-serif;
    height: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.study_process_dSxWZ {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(142,168,166,0.5) 0%, rgb(106,131,130) 100%);
    position: relative;
    overflow: hidden;
}.study_process_dSxWZ::before {
    width: 100%;
    left: 0;
    background: radial-gradient(circle at 70% 30%, rgb(255, 255, 255, 0.5) 0%, transparent 70%);
    z-index: 1;
    position: absolute;
    height: 100%;
    content: "";
    top: 0;
}.study_process_dSxWZ::after {
    height: 100%;
    opacity: 0.5;
    content: "";
    background-size: 200px 200px;
    background-image: 
        radial-gradient(circle at 10% 10%, rgb(255, 255, 255, 0.5) 1px, transparent 2px),
        radial-gradient(circle at 30% 40%, rgb(255, 255, 255, 0.5) 1px, transparent 2px),
        radial-gradient(circle at 60% 30%, rgb(255, 255, 255, 0.5) 1px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgb(255, 255, 255, 0.5) 1px, transparent 2px),
        radial-gradient(circle at 20% 80%, rgb(255, 255, 255, 0.5) 1px, transparent 2px),
        radial-gradient(circle at 90% 20%, rgb(255, 255, 255, 0.5) 1px, transparent 2px);
    width: 100%;
    left: 0;
    z-index: 1;
    position: absolute;
    animation: twinkle 15s infinite linear;
    top: 0;
}.study_process_dSxWZ .container {
    overflow: visible;
    transform: perspective(1000px) rotateX(2deg);
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    transition: transform 0.5s ease-out;
    position: relative;
}.study_process_dSxWZ .container:hover {
    transform: perspective(1000px) rotateX(0deg);
}.study_process_dSxWZ .heritage_edu_MEnhg {
    padding: 3rem;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 -1px 0 rgba(0, 0, 0, 0.1) inset;
    border-radius: 8px;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%
    );
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(5px);
}.study_process_dSxWZ .heritage_edu_MEnhg:hover {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 1px 0 rgba(255, 255, 255, 0.3) inset,
        0 -1px 0 rgba(0, 0, 0, 0.15) inset;
    transform: translateY(-5px);
}.study_process_dSxWZ h3 {
    margin-bottom: 1.5rem;
    animation: slideInTitle 0.8s 0.2s forwards cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 38px;
    transform: translateX(-10px);
    color: #ffffff;
    font-weight: 700;
    opacity: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
}.study_process_dSxWZ h3::after {
    width: 60px;
    transform-origin: left;
    bottom: -8px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    animation: expandLine 1s 0.6s forwards cubic-bezier(0.22, 1, 0.36, 1);
    left: 0;
    content: "";
    position: absolute;
    transform: scaleX(0);
    height: 3px;
    background: #ffffff;
}.study_process_dSxWZ p {
    position: relative;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.7;
    transform: translateY(10px);
    animation: fadeInUp 0.8s 0.4s forwards cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    font-size: 16px;
}.study_process_dSxWZ p span {
    display: inline-block;
    position: relative;
    z-index: 2;
}.study_process_dSxWZ p span::before {
    width: 3px;
    transform-origin: top;
    background: rgb(142,168,166);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    height: 100%;
    transform: scaleY(0);
    top: 0;
    left: -10px;
    opacity: 0.5;
    position: absolute;
    content: "";
}.study_process_dSxWZ .heritage_edu_MEnhg:hover p span::before {
    transform: scaleY(1);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

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

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

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

@media (max-width: 991px) {.study_process_dSxWZ {
    padding: 4rem 0;
}.study_process_dSxWZ .heritage_edu_MEnhg {
    padding: 2.5rem;
}.study_process_dSxWZ h3 {
    font-size: calc(38px * 0.9);
}
}

@media (max-width: 767px) {.study_process_dSxWZ {
    padding: 3rem 0;
}.study_process_dSxWZ .container {
    transform: perspective(1000px) rotateX(1deg);
}.study_process_dSxWZ .heritage_edu_MEnhg {
    padding: 2rem;
}.study_process_dSxWZ h3 {
    margin-bottom: 1.2rem;
    font-size: calc(38px * 0.85);
}.study_process_dSxWZ p {
    font-size: calc(16px * 0.95);
}
}

@media (max-width: 576px) {.study_process_dSxWZ {
    padding: 2.5rem 0;
}.study_process_dSxWZ .container {
    transform: none;
}.study_process_dSxWZ .heritage_edu_MEnhg {
    padding: 1.5rem;
}.study_process_dSxWZ h3 {
    margin-bottom: 1rem;
    font-size: calc(38px * 0.8);
}.study_process_dSxWZ p {
    font-size: calc(16px * 0.9);
    line-height: 1.6;
}.study_process_dSxWZ h3::after {
    width: 50px;
}
}

@media (prefers-reduced-motion: reduce) {.study_process_dSxWZ .container,
    .study_process_dSxWZ .heritage_edu_MEnhg,
    .study_process_dSxWZ h3,
    .study_process_dSxWZ p,
    .study_process_dSxWZ::after {
    transform: none;
    animation: none;
    transition: none;
}.study_process_dSxWZ h3,
    .study_process_dSxWZ p {
    opacity: 1;
}.study_process_dSxWZ h3::after {
    transform: scaleX(1);
}}.who_we_are_JEWqu {
    background: linear-gradient(125deg, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
    position: relative;
    color: #ffffff;
    padding: 120px 0 100px;
    overflow: hidden;
}.who_we_are_JEWqu::before {
    height: 100%;
    width: 100%;
    background-size: 30px 30px;
    left: 0;
    position: absolute;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.5) 1px, transparent 1px);
    content: "";
    top: 0;
    opacity: 0.15;
}.who_we_are_JEWqu::after {
    width: 200%;
    height: 200%;
    animation: rotateBackground 60s linear infinite;
    background: radial-gradient(ellipse at center, transparent 30%, #000000 100%);
    top: -50%;
    position: absolute;
    opacity: 0.2;
    content: "";
    left: -50%;
}@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.who_we_are_JEWqu .container {
    z-index: 2;
    max-width: 1280px;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
}.who_we_are_JEWqu h2 {
    position: relative;
    letter-spacing: 2px;
    margin-bottom: 80px;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 41px;
    text-align: center;
    font-weight: 700;
}.who_we_are_JEWqu h2::before {
    bottom: -20px;
    transform: translateX(-50%);
    background: rgb(142,168,166);
    height: 4px;
    width: 60px;
    position: absolute;
    content: "";
    left: 50%;
}.who_we_are_JEWqu h2::after {
    position: absolute;
    white-space: nowrap;
    letter-spacing: 5px;
    content: attr(data-text);
    top: -0.5em;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(142,168,166);
    font-size: 0.15em;
}.who_we_are_JEWqu .learn_studio_SUaHv {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    gap: 30px;
}.who_we_are_JEWqu .learn_track_YXaTz {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    padding: 40px;
    position: relative;
}.who_we_are_JEWqu .learn_track_YXaTz:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgb(142,168,166,0.5);
    transform: translateY(-10px);
}.who_we_are_JEWqu .learn_track_YXaTz:first-child:hover {
    border-color: rgb(142,168,166,0.5);
}.who_we_are_JEWqu .learn_track_YXaTz:last-child:hover {
    border-color: rgb(106,131,130,0.5);
}.who_we_are_JEWqu .learn_track_YXaTz::before {
    transition: transform 0.5s ease;
    top: 0;
    transform: scaleY(0);
    content: "";
    transform-origin: bottom;
    background: rgb(142,168,166);
    width: 4px;
    height: 100%;
    left: 0;
    position: absolute;
}.who_we_are_JEWqu .learn_track_YXaTz:last-child::before {
    background: rgb(106,131,130);
}.who_we_are_JEWqu .learn_track_YXaTz:hover::before {
    transform: scaleY(1);
}.who_we_are_JEWqu .learn_track_YXaTz::after {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    filter: blur(40px);
    right: 0;
    position: absolute;
    background: rgb(142,168,166,0.5);
    z-index: -1;
    top: 0;
    content: "";
    opacity: 0.05;
}.who_we_are_JEWqu .learn_track_YXaTz:last-child::after {
    background: rgb(106,131,130,0.5);
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
}.who_we_are_JEWqu .learn_track_YXaTz h3 {
    color: rgb(142,168,166);
    font-weight: 600;
    position: relative;
    margin-bottom: 25px;
    align-items: center;
    font-size: 18px;
    display: flex;
}.who_we_are_JEWqu .learn_track_YXaTz:last-child h3 {
    color: rgb(106,131,130);
}.who_we_are_JEWqu .learn_track_YXaTz h3::before {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    height: 8px;
    content: "";
    background: currentColor;
    width: 8px;
    margin-right: 15px;
}.who_we_are_JEWqu .learn_track_YXaTz p {
    line-height: 1.8;
    z-index: 2;
    opacity: 0.8;
    font-size: 16px;
    position: relative;
    color: #ffffff;
}.who_we_are_JEWqu .learn_track_YXaTz:first-child {
    animation: slideUp 0.7s ease forwards;
}.who_we_are_JEWqu .learn_track_YXaTz:last-child {
    animation: slideUp 0.7s 0.2s ease forwards;
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.who_we_are_JEWqu .learn_studio_SUaHv::before {
    left: 50%;
    position: absolute;
    filter: blur(30px);
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgb(142,168,166,0.5) 0%, transparent 70%);
    content: "";
    opacity: 0.1;
    z-index: -1;
    width: 200px;
    border-radius: 50%;
    height: 200px;
}.who_we_are_JEWqu .learn_studio_SUaHv::after {
    position: absolute;
    bottom: -30px;
    height: 1px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgb(142,168,166,0.5), rgb(106,131,130,0.5), transparent);
    content: "";
}

@media (max-width: 1100px) {.who_we_are_JEWqu {
    padding: 100px 0 80px;
}.who_we_are_JEWqu h2 {
    margin-bottom: 60px;
    font-size: calc(41px * 0.9);
}.who_we_are_JEWqu .learn_track_YXaTz {
    padding: 35px;
}
}

@media (max-width: 768px) {.who_we_are_JEWqu {
    padding: 80px 0 60px;
}.who_we_are_JEWqu h2 {
    margin-bottom: 50px;
    font-size: calc(41px * 0.8);
}.who_we_are_JEWqu .learn_studio_SUaHv {
    gap: 40px;
    grid-template-columns: 1fr;
}.who_we_are_JEWqu .learn_track_YXaTz {
    padding: 30px;
}.who_we_are_JEWqu .learn_track_YXaTz:last-child {
    animation-delay: 0.1s;
}
}

@media (max-width: 576px) {.who_we_are_JEWqu {
    padding: 60px 0 50px;
}.who_we_are_JEWqu h2 {
    font-size: calc(37px);
    margin-bottom: 40px;
}.who_we_are_JEWqu h2::before {
    bottom: -15px;
    width: 50px;
    height: 3px;
}.who_we_are_JEWqu .learn_studio_SUaHv {
    gap: 30px;
}.who_we_are_JEWqu .learn_track_YXaTz {
    padding: 25px;
}.who_we_are_JEWqu .learn_track_YXaTz h3 {
    font-size: calc(18px * 0.9);
    margin-bottom: 20px;
}.who_we_are_JEWqu .learn_track_YXaTz p {
    font-size: calc(16px * 0.95);
}
}

@media (prefers-reduced-motion: reduce) {.who_we_are_JEWqu::after {
    animation: none;
}.who_we_are_JEWqu .learn_track_YXaTz,
    .who_we_are_JEWqu .learn_track_YXaTz::before {
    transition: none;
}.who_we_are_JEWqu .learn_track_YXaTz:hover {
    transform: none;
}.who_we_are_JEWqu .learn_track_YXaTz:first-child,
    .who_we_are_JEWqu .learn_track_YXaTz:last-child {
    opacity: 1;
    animation: none;
    transform: none;
}
}

@supports not (backdrop-filter: blur(10px)) {.who_we_are_JEWqu .learn_track_YXaTz {
    background: rgba(30, 30, 30, 0.7);
}}.contact_form_box_wePMl {
    padding: 80px 0;
    background: rgb(176,199,198);
    overflow: hidden;
    position: relative;
}.contact_form_box_wePMl::before {
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    position: absolute;
    content: '';
    background: radial-gradient(circle at 20% 50%, rgb(142,168,166,0.5) 0%, transparent 40%),
                radial-gradient(circle at 80% 30%, rgb(106,131,130,0.5) 0%, transparent 40%);
    opacity: 0.6;
}.contact_form_box_wePMl .gallery_wrapper_zbmrl {
    width: 50%;
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 100%;
}.contact_form_box_wePMl .gallery_wrapper_zbmrl::before {
    position: absolute;
    content: '';
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
    top: 0;
    width: 100%;
    left: 0;
}.contact_form_box_wePMl .container {
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    z-index: 2;
    position: relative;
}.contact_form_box_wePMl h3 {
    border-radius: 10px;
    font-size: 36px;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff;
    margin-bottom: 40px;
    text-align: center;
    backdrop-filter: blur(5px);
    font-weight: 700;
    padding: 15px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #000000;
    font-family: Arial, sans-serif;
}.contact_form_box_wePMl .request_support_kcDlT {
    overflow: hidden;
    position: relative;
    border-radius: 17px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 3;
    background: #ffffff;
    display: flex;
}.contact_form_box_wePMl .request_support_kcDlT::before {
    transform: translate(50%, -50%);
    height: 150px;
    width: 150px;
    background: rgb(142,168,166,0.5);
    opacity: 0.2;
    content: '';
    position: absolute;
    top: 0;
    border-radius: 50%;
    right: 0;
}.contact_form_box_wePMl .request_support_kcDlT::after {
    transform: translate(-50%, 50%);
    bottom: 0;
    border-radius: 50%;
    position: absolute;
    width: 100px;
    left: 0;
    content: '';
    background: rgb(106,131,130,0.5);
    opacity: 0.2;
    height: 100px;
}.contact_form_box_wePMl .query_block_qTRGF {
    padding: 50px;
    position: relative;
    flex: 1;
}.contact_form_box_wePMl form h3 {
    margin-bottom: 25px;
    font-size: 23px;
    text-align: left;
}.contact_form_box_wePMl input[type="text"],
.contact_form_box_wePMl textarea {
    padding: 15px 20px;
    color: #000000;
    background: #ffffff;
    width: 100%;
    font-size: 13px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 17px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}.contact_form_box_wePMl input[type="text"]:focus,
.contact_form_box_wePMl textarea:focus {
    border-color: rgb(142,168,166);
    box-shadow: 0 0 10px rgb(142,168,166,0.5);
    outline: none;
}.contact_form_box_wePMl textarea {
    resize: none;
    height: 140px;
}.contact_form_box_wePMl .feedback_support_wAIHY {
    align-items: flex-start;
    display: flex;
    margin-bottom: 25px;
}.contact_form_box_wePMl .feedback_support_wAIHY input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact_form_box_wePMl .feedback_support_wAIHY label {
    padding-left: 30px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    color: #000000;
}.contact_form_box_wePMl .feedback_support_wAIHY label::before {
    border: 2px solid rgb(142,168,166,0.5);
    left: 0;
    content: '';
    border-radius: 10px;
    transition: all 0.3s ease;
    top: 2px;
    height: 20px;
    position: absolute;
    width: 20px;
}.contact_form_box_wePMl .feedback_support_wAIHY input[type="checkbox"]:checked + label::before {
    border-color: rgb(142,168,166);
    background: rgb(142,168,166);
}.contact_form_box_wePMl .feedback_support_wAIHY input[type="checkbox"]:checked + label::after {
    height: 10px;
    border: solid #ffffff;
    left: 7px;
    top: 6px;
    content: '';
    transform: rotate(45deg);
    border-width: 0 2px 2px 0;
    width: 6px;
    position: absolute;
}.contact_form_box_wePMl .feedback_support_wAIHY a {
    text-decoration: none;
    color: rgb(142,168,166);
    font-weight: 600;
    transition: all 0.3s ease;
}.contact_form_box_wePMl .feedback_support_wAIHY a:hover {
    color: rgb(106,131,130);
}.contact_form_box_wePMl .query_help_vFQVe {
    color: #ffffff;
    font-family: Arial, sans-serif;
    padding: 15px 30px;
    transition: all 0.3s ease;
    position: relative;
    background: rgb(142,168,166);
    font-size: 15px;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
    border-radius: 17px;
    font-weight: 600;
}.contact_form_box_wePMl .query_help_vFQVe::before {
    content: '';
    position: absolute;
    z-index: -1;
    height: 100%;
    background: rgb(106,131,130);
    width: 100%;
    transition: transform 0.4s ease;
    top: 0;
    left: 0;
    transform: translateX(-100%);
}.contact_form_box_wePMl .query_help_vFQVe:hover {
    box-shadow: 0 5px 15px rgb(142,168,166,0.5);
}.contact_form_box_wePMl .query_help_vFQVe:hover::before {
    transform: translateX(0);
}.contact_form_box_wePMl .feedback_links_wPlxJ {
    padding: 50px;
    background: linear-gradient(135deg, rgb(142,168,166), rgb(106,131,130));
    position: relative;
    width: 35%;
    overflow: hidden;
    color: #ffffff;
}.contact_form_box_wePMl .feedback_links_wPlxJ::before {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    background-size: 20px 20px;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%),
                linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.1) 75%);
    top: 0;
    opacity: 0.3;
}.contact_form_box_wePMl .feedback_links_wPlxJ h4 {
    position: relative;
    color: #ffffff;
    font-size: 23px;
    font-family: Arial, sans-serif;
    margin-bottom: 30px;
    font-weight: 600;
}.contact_form_box_wePMl .feedback_links_wPlxJ h4::after {
    position: absolute;
    left: 0;
    height: 3px;
    bottom: -10px;
    border-radius: 3px;
    content: '';
    background: #ffffff;
    width: 40px;
}.contact_form_box_wePMl .support_grid_MeJwi {
    list-style: none;
    margin: 0;
    padding: 0;
}.contact_form_box_wePMl .support_grid_MeJwi li {
    display: flex;
    padding-bottom: 15px;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}.contact_form_box_wePMl .support_grid_MeJwi li:last-child {
    border-bottom: none;
}.contact_form_box_wePMl .support_grid_MeJwi li:hover {
    transform: translateX(5px);
}.contact_form_box_wePMl .support_grid_MeJwi svg {
    margin-right: 15px;
    width: 22px;
    flex-shrink: 0;
    margin-top: 3px;
    height: 22px;
}.contact_form_box_wePMl .support_grid_MeJwi svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}.contact_form_box_wePMl .support_grid_MeJwi li:hover svg path {
    fill: rgba(255, 255, 255, 0.8);
}.contact_form_box_wePMl .support_grid_MeJwi span {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    font-size: 13px;
    color: #ffffff;
}.contact_form_box_wePMl .support_grid_MeJwi a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
}.contact_form_box_wePMl .support_grid_MeJwi a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 992px) {.contact_form_box_wePMl .gallery_wrapper_zbmrl {
    width: 40%;
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
}.contact_form_box_wePMl .request_support_kcDlT {
    flex-direction: column;
    max-width: 90%;
    margin: 0 auto;
}.contact_form_box_wePMl .query_block_qTRGF {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}.contact_form_box_wePMl .feedback_links_wPlxJ {
    width: 100%;
}
}

@media (max-width: 768px) {.contact_form_box_wePMl {
    padding: 60px 0;
}.contact_form_box_wePMl .gallery_wrapper_zbmrl {
    display: none;
}.contact_form_box_wePMl h3 {
    font-size: calc(36px * 0.9);
}.contact_form_box_wePMl .query_block_qTRGF,
    .contact_form_box_wePMl .feedback_links_wPlxJ {
    padding: 40px 30px;
}.contact_form_box_wePMl form h3,
    .contact_form_box_wePMl .feedback_links_wPlxJ h4 {
    font-size: calc(23px * 0.9);
}
}

@media (max-width: 576px) {.contact_form_box_wePMl {
    padding: 40px 0;
}.contact_form_box_wePMl h3 {
    font-size: calc(36px * 0.8);
}.contact_form_box_wePMl .request_support_kcDlT {
    max-width: 95%;
}.contact_form_box_wePMl .query_block_qTRGF,
    .contact_form_box_wePMl .feedback_links_wPlxJ {
    padding: 30px 20px;
}.contact_form_box_wePMl input[type="text"],
    .contact_form_box_wePMl textarea {
    padding: 12px;
}.contact_form_box_wePMl .query_help_vFQVe {
    width: 100%;
    padding: 12px;
}}.privacy_shell_Phust {
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 100%;
    padding: 40px;
}.privacy_shell_Phust h1 {
    font-size: 48px;
    margin-top: 40px;
    text-align: center;
    font-family: Arial, sans-serif;
    padding-bottom: 10px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: rgb(142,168,166);
    border-bottom: 2px solid rgb(142,168,166);
}.privacy_shell_Phust h2 {
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-family: Arial, sans-serif;
    font-size: 37px;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(106,131,130);
    margin-top: 30px;
    color: rgb(106,131,130);
}.privacy_shell_Phust h3, .privacy_shell_Phust h4, .privacy_shell_Phust h5, .privacy_shell_Phust h6 {
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    color: #000000;
    margin-bottom: 15px;
    font-size: 21px;
    font-family: Arial, sans-serif;
}.privacy_shell_Phust ul, .privacy_shell_Phust ol {
    list-style-position: inside;
    margin: 0;
    padding: 15px 0;
    padding-left: 0;
}.privacy_shell_Phust li {
    margin-bottom: 12px;
    transition: background 0.3s ease-in-out;
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: #000000;
    border-radius: 10px;
    line-height: 1.6;
    padding: 5px;
}.privacy_shell_Phust li:hover {
    background: rgb(142,168,166,0.5);
}.privacy_shell_Phust section {
    background: none;
}.privacy_shell_Phust p, .privacy_shell_Phust span, .privacy_shell_Phust div {
    font-size: 15px;
    color: #000000;
    line-height: 1.8;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
}

@media only screen and (max-width: 800px) {.privacy_shell_Phust {
    padding: 25px 10px;
    width: 100%;
}.privacy_shell_Phust h1, .privacy_shell_Phust h2 {
    font-size: calc(21px - 5px);
    text-align: left;
}.privacy_shell_Phust ul, .privacy_shell_Phust ol {
    padding: 10px 0;
}}.target_audience_GoIsk {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(176,199,198) 0%, rgba(0, 0, 0, 0.5) 100%);
}.target_audience_GoIsk::before {
    left: 0;
    position: absolute;
    content: "";
    opacity: 0.6;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(142,168,166,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(106,131,130,0.5) 0%, transparent 40%);
    z-index: 0;
    top: 0;
}.target_audience_GoIsk::after {
    z-index: 0;
    background-size: 120px 120px;
    left: 0;
    content: "";
    opacity: 0.03;
    background-position: 0 0, 0 60px, 60px -60px, -60px 0px;
    width: 100%;
    top: 0;
    height: 100%;
    background-image: 
        linear-gradient(45deg, #000000 25%, transparent 25%),
        linear-gradient(-45deg, #000000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #000000 25%),
        linear-gradient(-45deg, transparent 75%, #000000 25%);
    position: absolute;
}.target_audience_GoIsk .container {
    max-width: 1200px;
    z-index: 1;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}.target_audience_GoIsk .heritage_edu_MEnhg {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: translateY(0);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 50px;
}.target_audience_GoIsk .heritage_edu_MEnhg:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    transform: translateY(-10px);
}.target_audience_GoIsk .heritage_edu_MEnhg::before {
    opacity: 0.1;
    animation: pulse-effect 8s infinite alternate ease-in-out;
    right: -100px;
    width: 200px;
    content: "";
    position: absolute;
    height: 200px;
    background: linear-gradient(45deg, rgb(142,168,166) 0%, rgb(106,131,130) 100%);
    filter: blur(30px);
    top: -100px;
    border-radius: 50%;
}.target_audience_GoIsk .heritage_edu_MEnhg::after {
    filter: blur(25px);
    bottom: -75px;
    animation: pulse-effect 8s infinite alternate-reverse ease-in-out;
    height: 150px;
    left: -75px;
    background: linear-gradient(225deg, rgb(106,131,130) 0%, rgb(142,168,166) 100%);
    opacity: 0.1;
    width: 150px;
    content: "";
    border-radius: 50%;
    position: absolute;
}@keyframes pulse-effect {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

.target_audience_GoIsk h4 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    position: relative;
    color: #ffffff;
    padding-bottom: 15px;
}.target_audience_GoIsk h4::after {
    background: linear-gradient(90deg, rgb(142,168,166) 0%, rgb(106,131,130) 100%);
    height: 4px;
    content: "";
    position: absolute;
    bottom: 0;
    width: 80px;
    left: 50%;
    border-radius: 10px;
    transform: translateX(-50%);
}.target_audience_GoIsk div p {
    font-size: calc(13px + 2px);
    margin-bottom: 25px;
    border-left: 3px solid rgb(142,168,166);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    position: relative;
    color: #ffffff;
    backdrop-filter: blur(5px);
    padding: 15px 20px;
    transition: all 0.3s ease;
    align-items: center;
    border-radius: 10px;
}.target_audience_GoIsk div p:last-child {
    margin-bottom: 0;
}.target_audience_GoIsk div p:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}.target_audience_GoIsk div p svg {
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    margin-right: 15px;
    transition: transform 0.3s ease;
    min-width: 24px;
    height: 24px;
    width: 24px;
}.target_audience_GoIsk div p:hover svg {
    transform: scale(1.2) rotate(5deg);
}.target_audience_GoIsk div p svg path {
    fill: rgb(142,168,166);
}.target_audience_GoIsk div p::after {
    background: linear-gradient(90deg, rgb(142,168,166) 0%, transparent 100%);
    height: 1px;
    position: absolute;
    bottom: 0;
    transition: width 0.5s ease;
    content: "";
    width: 0;
    left: 0;
}.target_audience_GoIsk div p:hover::after {
    width: 100%;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 991px) {.target_audience_GoIsk {
    padding: 80px 0;
}.target_audience_GoIsk .heritage_edu_MEnhg {
    padding: 40px 30px;
}.target_audience_GoIsk h4 {
    font-size: calc(36px - 2px);
    margin-bottom: 30px;
}.target_audience_GoIsk div p {
    font-size: 13px;
    margin-bottom: 20px;
    padding: 12px 15px;
}
}

@media (max-width: 767px) {.target_audience_GoIsk {
    padding: 60px 0;
}.target_audience_GoIsk .heritage_edu_MEnhg {
    padding: 30px 20px;
}.target_audience_GoIsk h4 {
    margin-bottom: 25px;
    font-size: calc(36px - 4px);
    padding-bottom: 12px;
}.target_audience_GoIsk h4::after {
    width: 60px;
    height: 3px;
}.target_audience_GoIsk div p {
    margin-bottom: 15px;
    padding: 10px 12px;
    font-size: calc(13px - 1px);
}.target_audience_GoIsk div p svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 10px;
}.target_audience_GoIsk::before,
    .target_audience_GoIsk::after {
    opacity: 0.05;
}
}

@media (max-width: 479px) {.target_audience_GoIsk {
    padding: 40px 0;
}.target_audience_GoIsk .heritage_edu_MEnhg {
    padding: 25px 15px;
}.target_audience_GoIsk h4 {
    font-size: calc(36px - 6px);
}.target_audience_GoIsk div p {
    font-size: calc(13px - 2px);
    padding: 8px 10px;
}.target_audience_GoIsk div p svg {
    margin-right: 8px;
    height: 18px;
    width: 18px;
    min-width: 18px;
}}header {
    position: fixed;
    left: 0;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgb(176,199,198);
    top: 0;
    z-index: 1000;
    width: 100%;
}header:before {
    animation: gradientMove 6s infinite linear;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(142,168,166), rgb(106,131,130), rgb(142,168,166));
    position: absolute;
    left: 0;
    background-size: 200% 100%;
    content: '';
    height: 4px;
}header .head_class_bPkCi {
    width: 100%;
    padding: 0;
}header .container {
    padding: 20px;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}header .main_know_hCsRO {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}header .nav_sitebar_bWOrE {
    align-items: center;
    display: flex;
    gap: 35px;
}header .site_head_ejKAf {
    font-weight: 600;
    font-family: Arial, sans-serif;
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    font-size: 17px;
    transition: all 0.3s ease;
    color: #000000;
}header .site_head_ejKAf:before {
    width: 6px;
    transition: transform 0.3s ease;
    top: 50%;
    left: -15px;
    position: absolute;
    border-radius: 10px;
    content: '';
    transform: translateY(-50%) scale(0);
    background-color: rgb(142,168,166);
    height: 6px;
}header .site_head_ejKAf:after {
    width: 100%;
    background-color: rgb(142,168,166);
    transform-origin: center;
    content: '';
    bottom: 0;
    position: absolute;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    height: 2px;
}header .site_head_ejKAf:hover {
    color: rgb(142,168,166);
}header .site_head_ejKAf:hover:before {
    transform: translateY(-50%) scale(1);
}header .site_head_ejKAf:hover:after {
    transform: scaleX(1);
}header .head_lead_ReprD {
    position: relative;
    text-decoration: none;
    display: flex;
    padding: 5px 10px;
    transition: all 0.3s ease;
    align-items: center;
}header .head_lead_ReprD:before {
    height: 100%;
    left: 0;
    border-radius: 10px;
    top: 0;
    opacity: 0;
    content: '';
    border: 2px solid transparent;
    width: 100%;
    transition: opacity 0.3s ease;
    position: absolute;
    -webkit-mask-composite: xor;
    background: linear-gradient(to right, rgb(142,168,166), rgb(106,131,130)) border-box;
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
}header .head_lead_ReprD:hover:before {
    opacity: 1;
}header .head_lead_ReprD svg {
    height: 42px;
    width: auto;
    transition: transform 0.3s ease;
}header .head_lead_ReprD:hover svg {
    transform: scale(1.05);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

@media (max-width: 991px) {header .container {
    padding: 15px;
}header .nav_sitebar_bWOrE {
    gap: 20px;
}header .site_head_ejKAf:before {
    left: -10px;
}header .head_lead_ReprD svg {
    height: 38px;
}
}

@media (max-width: 767px) {header .nav_sitebar_bWOrE {
    background-color: #ffffff;
    overflow: hidden;
    width: 100%;
    transition: max-height 0.4s ease;
    max-height: 0;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid rgb(142,168,166);
    top: 100%;
    position: absolute;
    gap: 0;
    left: 0;
    z-index: 1001;
}header .menu.active {
    max-height: 400px;
}header .site_head_ejKAf {
    width: 100%;
    padding: 12px 20px;
    border-bottom: 1px solid rgb(176,199,198);
}header .site_head_ejKAf:last-child {
    border-bottom: none;
}header .site_head_ejKAf:before {
    left: 5px;
}header .main_know_hCsRO {
    padding: 5px 0;
}header .head_lead_ReprD {
    margin: 0 auto;
}
}

@media (max-width: 480px) {header .container {
    padding: 12px 10px;
}header .head_lead_ReprD svg {
    height: 32px;
}}.primary_page_FpdQM {
    min-height: 100vh;
    display: flex;
    perspective: 1000px;
    background: linear-gradient(135deg, rgb(176,199,198) 0%, rgba(240, 245, 255, 1) 70%, rgba(225, 240, 250, 1) 100%);
    position: relative;
    overflow: hidden;
    align-items: center;
}.primary_page_FpdQM::before {
    content: "";
    z-index: 1;
    pointer-events: none;
    right: 0;
    position: absolute;
    left: 0;
    background: repeating-linear-gradient(45deg, rgba(94, 170, 168, 0.03), rgba(94, 170, 168, 0.03) 10px, transparent 10px, transparent 20px);
    bottom: 0;
    top: 0;
}.primary_page_FpdQM::after {
    height: 70%;
    width: 40%;
    pointer-events: none;
    right: -5%;
    background: linear-gradient(145deg, rgba(94, 170, 168, 0.15), rgba(94, 170, 168, 0.05) 60%, transparent 100%);
    transform: rotate(-15deg) skewX(10deg);
    position: absolute;
    top: -10%;
    content: "";
    z-index: 0;
}.primary_page_FpdQM .heritage_edu_MEnhg {
    z-index: 2;
    gap: 2rem;
    max-width: 1280px;
    padding: 3rem;
    transform-style: preserve-3d;
    width: 100%;
    display: grid;
    margin: 0 auto;
    position: relative;
    grid-template-columns: 1fr 1fr;
}.primary_page_FpdQM .statement_box_WrNHE {
    z-index: 3;
    transform: translateZ(20px);
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}.primary_page_FpdQM .statement_box_WrNHE::before {
    border-left: 4px solid rgb(142,168,166);
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0.7) 80%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: -1;
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    top: 0;
    backdrop-filter: blur(10px);
    position: absolute;
    content: "";
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.4), box-shadow 0.5s ease;
    height: 100%;
}.primary_page_FpdQM .statement_box_WrNHE:hover::before {
    transform: translateX(5px) translateY(-5px);
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
}.primary_page_FpdQM h1 {
    color: #000000;
    position: relative;
    font-size: 38px;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
    transform: translateX(-10px);
    font-weight: 700;
}.primary_page_FpdQM h1::after {
    content: "";
    transform: scaleX(0.8);
    transform-origin: left;
    bottom: -10px;
    width: 60px;
    transition: transform 0.5s ease;
    background: rgb(142,168,166);
    left: 0;
    height: 4px;
    position: absolute;
}.primary_page_FpdQM .statement_box_WrNHE:hover h1 {
    transform: translateX(0);
}.primary_page_FpdQM .statement_box_WrNHE:hover h1::after {
    transform: scaleX(1);
}.primary_page_FpdQM .learn_team_FrsBC {
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-direction: column;
    display: flex;
}.primary_page_FpdQM .learn_team_FrsBC svg {
    transform: rotate(-5deg);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
    width: 80px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s ease;
    margin-left: -10px;
    height: 80px;
}.primary_page_FpdQM .statement_box_WrNHE:hover .learn_team_FrsBC svg {
    filter: drop-shadow(3px 6px 8px rgba(0, 0, 0, 0.15));
    transform: rotate(0) scale(1.05);
}.primary_page_FpdQM .learn_team_FrsBC svg path {
    transition: fill 0.3s ease;
    fill: rgb(94, 170, 168);
}.primary_page_FpdQM .learn_team_FrsBC svg text {
    transition: fill 0.3s ease;
    fill: rgb(94, 170, 168);
    font-family: Arial, sans-serif;
}.primary_page_FpdQM .statement_box_WrNHE:hover .learn_team_FrsBC svg path,
.primary_page_FpdQM .statement_box_WrNHE:hover .learn_team_FrsBC svg text {
    fill: rgb(142,168,166);
}.primary_page_FpdQM .learn_team_FrsBC p {
    color: #000000;
    transform: translateY(5px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 90%;
    font-size: calc(18px * 1.1);
}.primary_page_FpdQM .statement_box_WrNHE:hover .learn_team_FrsBC p {
    transform: translateY(0);
    opacity: 1;
}.primary_page_FpdQM ul {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
}.primary_page_FpdQM ul li {
    display: inline-block;
}.primary_page_FpdQM .query_help_vFQVe {
    color: #ffffff;
    font-weight: 600;
    padding: 0.9rem 2rem;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(94, 170, 168, 0.3);
    z-index: 1;
    overflow: hidden;
    font-size: 17px;
    border: none;
    display: inline-block;
    position: relative;
    text-decoration: none;
    background: linear-gradient(135deg, rgb(142,168,166) 0%, rgb(94, 170, 168) 100%);
}.primary_page_FpdQM .query_help_vFQVe::before {
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    left: 0;
    background: linear-gradient(135deg, rgb(94, 170, 168) 0%, rgb(142,168,166) 100%);
    width: 100%;
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
}.primary_page_FpdQM .query_help_vFQVe:hover {
    box-shadow: 0 8px 25px rgba(94, 170, 168, 0.4);
    transform: translateY(-5px);
}.primary_page_FpdQM .query_help_vFQVe:hover::before {
    opacity: 1;
}.primary_page_FpdQM .gallery_wrapper_zbmrl {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    min-height: 400px;
    transform-style: preserve-3d;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    transform: translateZ(10px) perspective(1000px) rotateY(-5deg);
}.primary_page_FpdQM .gallery_wrapper_zbmrl::before {
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(94, 170, 168, 0.7) 0%, rgba(94, 170, 168, 0) 70%);
    top: 0;
    transition: opacity 0.5s ease;
    content: "";
}.primary_page_FpdQM .gallery_wrapper_zbmrl:hover {
    transform: translateZ(30px) perspective(1000px) rotateY(0deg);
}.primary_page_FpdQM .gallery_wrapper_zbmrl:hover::before {
    opacity: 0.7;
}

@media (max-width: 991px) {.primary_page_FpdQM .heritage_edu_MEnhg {
    padding: 2rem 1.5rem;
    grid-template-columns: 1fr;
}.primary_page_FpdQM .statement_box_WrNHE {
    padding: 1.5rem;
    transform: translateZ(0);
    order: 2;
}.primary_page_FpdQM .gallery_wrapper_zbmrl {
    min-height: 350px;
    order: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateZ(0) perspective(1000px) rotateY(0);
}.primary_page_FpdQM h1 {
    transform: translateX(0);
    font-size: calc(38px * 0.9);
}.primary_page_FpdQM .learn_team_FrsBC p {
    max-width: 100%;
}.primary_page_FpdQM .statement_box_WrNHE::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
}

@media (max-width: 767px) {.primary_page_FpdQM {
    min-height: auto;
    padding: 3rem 0;
}.primary_page_FpdQM .heritage_edu_MEnhg {
    padding: 1rem;
    gap: 1.5rem;
}.primary_page_FpdQM .statement_box_WrNHE {
    padding: 1.2rem;
}.primary_page_FpdQM h1 {
    font-size: calc(38px * 0.8);
    margin-bottom: 1.2rem;
}.primary_page_FpdQM .learn_team_FrsBC {
    gap: 1rem;
    margin-bottom: 1.5rem;
}.primary_page_FpdQM .learn_team_FrsBC svg {
    height: 60px;
    width: 60px;
}.primary_page_FpdQM .learn_team_FrsBC p {
    font-size: 18px;
}.primary_page_FpdQM .gallery_wrapper_zbmrl {
    min-height: 250px;
}.primary_page_FpdQM .query_help_vFQVe {
    padding: 0.8rem 1.5rem;
    font-size: calc(17px * 0.9);
}
}

@media (max-width: 480px) {.primary_page_FpdQM {
    padding: 2rem 0;
}.primary_page_FpdQM .heritage_edu_MEnhg {
    gap: 1rem;
    padding: 0.8rem;
}.primary_page_FpdQM .statement_box_WrNHE {
    padding: 1rem;
}.primary_page_FpdQM h1 {
    font-size: calc(38px * 0.7);
    margin-bottom: 1rem;
}.primary_page_FpdQM .learn_team_FrsBC svg {
    width: 50px;
    height: 50px;
}.primary_page_FpdQM .learn_team_FrsBC p {
    font-size: calc(18px * 0.9);
}.primary_page_FpdQM .gallery_wrapper_zbmrl {
    min-height: 200px;
}}.price_plan_eoaDl {
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background-color: rgb(176,199,198);
}.price_plan_eoaDl::before {
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, rgba(rgb(106,131,130,0.5), 0.05) 0%, rgba(rgb(142,168,166,0.5), 0.08) 100%);
    left: 0;
    width: 100%;
    z-index: 0;
    top: 0;
    content: "";
}.price_plan_eoaDl .container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 20px;
}.price_plan_eoaDl .tuition_plans_qswEL {
    flex-direction: column;
    display: flex;
}.price_plan_eoaDl .pro_rates_ykCRI {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
    margin-bottom: 60px;
    transform: translateY(20px);
}.price_plan_eoaDl .pro_rates_ykCRI h2 {
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.2;
    color: #000000;
    position: relative;
    display: inline-block;
    font-size: 28px;
    font-weight: 700;
}.price_plan_eoaDl .pro_rates_ykCRI h2::after {
    content: "";
    bottom: -10px;
    background: linear-gradient(90deg, rgb(106,131,130), rgb(142,168,166));
    width: 80px;
    left: 0;
    height: 4px;
    border-radius: 2px;
    position: absolute;
}.price_plan_eoaDl .learning_deals_kBpvT {
    color: #000000;
    max-width: 800px;
    line-height: 1.6;
    font-size: 17px;
    margin-top: 25px;
}.price_plan_eoaDl .tuition_table_ajxsr {
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin-top: 20px;
    display: grid;
}.price_plan_eoaDl .cost_plan_eLzsD {
    transform: translateY(30px);
    text-decoration: none;
    opacity: 0;
    perspective: 1000px;
    display: block;
    animation-delay: calc(0.15s * var(--i, 1));
    animation: fadeUp 0.8s ease-out forwards;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.price_plan_eoaDl .cost_plan_eLzsD:nth-child(1) {
    --i: 1;
}.price_plan_eoaDl .cost_plan_eLzsD:nth-child(2) {
    --i: 2;
}.price_plan_eoaDl .cost_plan_eLzsD:nth-child(3) {
    --i: 3;
}.price_plan_eoaDl .cost_plan_eLzsD:nth-child(4) {
    --i: 4;
}.price_plan_eoaDl .fee_choices_znbGq {
    transform-style: preserve-3d;
    overflow: hidden;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.15), 
              0 5px 15px -10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s ease;
    background-color: #ffffff;
}.price_plan_eoaDl .cost_plan_eLzsD:hover .fee_choices_znbGq {
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2),
              15px 15px 30px -10px rgba(0, 0, 0, 0.1),
              -15px 15px 30px -10px rgba(rgb(142,168,166,0.5), 0.1);
    transform: translateY(-15px) rotateX(2deg) rotateY(-2deg);
}.price_plan_eoaDl .cost_card_ZTufK {
    min-height: 250px;
    z-index: 2;
    box-sizing: border-box;
    padding: 35px 30px;
    position: relative;
}.price_plan_eoaDl .cost_card_ZTufK h3 {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    display: inline-block;
    font-size: calc(24px + 2px);
    position: relative;
    font-weight: 700;
    color: #000000;
}.price_plan_eoaDl .cost_plan_eLzsD:hover .cost_card_ZTufK h3 {
    color: rgb(142,168,166);
    transform: translateX(5px);
}.price_plan_eoaDl .plan_table_IFksE {
    transition: all 0.3s ease;
    position: relative;
    font-weight: 700;
    display: block;
    font-size: calc(24px + 4px);
    margin: 20px 0;
    color: rgb(106,131,130);
}.price_plan_eoaDl .plan_table_IFksE::before {
    width: 40px;
    left: 0;
    content: "";
    border-radius: 2px;
    position: absolute;
    top: -10px;
    height: 3px;
    background: linear-gradient(90deg, rgb(106,131,130), transparent);
}.price_plan_eoaDl .cost_plan_eLzsD:hover .plan_table_IFksE {
    color: rgb(142,168,166);
    transform: scale(1.05);
}.price_plan_eoaDl .cost_card_ZTufK p {
    font-size: 17px;
    white-space: normal;
    hyphens: auto;
    word-wrap: break-word;
    color: #000000;
    line-height: 1.6;
    word-break: normal;
    overflow-wrap: break-word;
    transition: color 0.3s ease;
    margin-top: 15px;
}.price_plan_eoaDl .gallery_wrapper_zbmrl {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 200px;
    transition: all 0.5s ease;
}.price_plan_eoaDl .gallery_wrapper_zbmrl::after {
    z-index: 1;
    opacity: 0.6;
    top: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    position: absolute;
    transition: opacity 0.4s ease;
    left: 0;
    content: "";
    width: 100%;
}.price_plan_eoaDl .cost_plan_eLzsD:hover .gallery_wrapper_zbmrl {
    transform: scale(1.05);
}.price_plan_eoaDl .cost_plan_eLzsD:hover .gallery_wrapper_zbmrl::after {
    opacity: 0.3;
}

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

@media (min-width: 1200px) {.price_plan_eoaDl .tuition_plans_qswEL {
    flex-direction: row-reverse;
}.price_plan_eoaDl .pro_rates_ykCRI {
    width: 30%;
    padding-left: 50px;
    margin-bottom: 0;
}.price_plan_eoaDl .tuition_table_ajxsr {
    width: 70%;
}.price_plan_eoaDl .pro_rates_ykCRI h2 {
    font-size: calc(28px + 4px);
}
}

@media (max-width: 1199px) {.price_plan_eoaDl {
    padding: 80px 0;
}.price_plan_eoaDl .pro_rates_ykCRI {
    margin: 0 auto 50px;
    max-width: 800px;
    text-align: center;
}.price_plan_eoaDl .pro_rates_ykCRI h2::after {
    transform: translateX(-50%);
    left: 50%;
}
}

@media (max-width: 767px) {.price_plan_eoaDl {
    padding: 60px 0;
}.price_plan_eoaDl .tuition_table_ajxsr {
    grid-template-columns: 1fr;
    gap: 20px;
}.price_plan_eoaDl .cost_card_ZTufK {
    padding: 25px 20px;
}.price_plan_eoaDl .gallery_wrapper_zbmrl {
    height: 180px;
}.price_plan_eoaDl .pro_rates_ykCRI h2 {
    font-size: calc(28px - 2px);
}.price_plan_eoaDl .learning_deals_kBpvT {
    font-size: calc(17px - 1px);
}
}

@media (hover: none) {.price_plan_eoaDl .cost_plan_eLzsD:hover .fee_choices_znbGq {
    transform: none;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.15),
                0 5px 15px -10px rgba(0, 0, 0, 0.05);
}.price_plan_eoaDl .cost_plan_eLzsD:hover .cost_card_ZTufK h3 {
    transform: none;
}.price_plan_eoaDl .cost_plan_eLzsD:hover .plan_table_IFksE {
    transform: none;
}.price_plan_eoaDl .cost_plan_eLzsD:hover .gallery_wrapper_zbmrl {
    transform: none;
}}.newsletter_subscription_UwueI {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(142,168,166,0.5) 0%, rgb(106,131,130) 100%);
    padding: 4rem 2rem;
}.newsletter_subscription_UwueI::before {
    height: 70%;
    position: absolute;
    content: "";
    width: 120%;
    top: -10%;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
    transform: rotate(-15deg);
    background: rgb(106,131,130,0.5);
    left: -10%;
    z-index: 1;
}.newsletter_subscription_UwueI .heritage_edu_MEnhg {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
}.newsletter_subscription_UwueI .inquiry_info_AeOtg {
    display: flex;
    transform: translateX(10%);
    max-width: 90%;
    flex-direction: column;
}.newsletter_subscription_UwueI h3 {
    margin-bottom: 2rem;
    font-size: 38px;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    transform: skewX(-5deg);
    color: #ffffff;
}.newsletter_subscription_UwueI .input_holder {
    flex-direction: row;
    align-items: stretch;
    transform: perspective(800px) rotateY(-5deg);
    display: flex;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 21px;
    max-width: 90%;
}.newsletter_subscription_UwueI input[type="email"] {
    font-size: 17px;
    flex-grow: 1;
    background: #ffffff;
    color: #000000;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
    border: none;
    font-family: Arial, sans-serif;
}.newsletter_subscription_UwueI input[type="email"]:focus {
    background: rgb(176,199,198);
    box-shadow: inset 0 0 0 3px rgb(142,168,166,0.5);
    outline: none;
}.newsletter_subscription_UwueI .subscribe_tip_QgDyV {
    padding: 1rem 2.5rem;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    font-weight: 600;
    font-family: Arial, sans-serif;
    cursor: pointer;
    font-size: 14px;
    background: linear-gradient(to right, rgb(142,168,166), rgb(106,131,130));
}.newsletter_subscription_UwueI .subscribe_tip_QgDyV:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(142,168,166,0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.newsletter_subscription_UwueI .subscribe_tip_QgDyV:active {
    animation: pulse 1s forwards;
    transform: translateY(2px);
}

@media (max-width: 768px) {.newsletter_subscription_UwueI {
    padding: 3rem 1rem;
}.newsletter_subscription_UwueI .inquiry_info_AeOtg {
    max-width: 100%;
    transform: translateX(0);
}.newsletter_subscription_UwueI h3 {
    text-align: left;
    font-size: calc(21px + 0.2rem);
}.newsletter_subscription_UwueI .input_holder {
    max-width: 100%;
    flex-direction: column;
    transform: perspective(0) rotateY(0);
}.newsletter_subscription_UwueI input[type="email"] {
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    width: 100%;
}.newsletter_subscription_UwueI .subscribe_tip_QgDyV {
    padding: 1rem;
    width: 100%;
    border-radius: 0 0 10px 10px;
}}.course_highlights_bWRmw {
    display: flex;
    align-items: center;
    background-color: rgb(142,168,166);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}.course_highlights_bWRmw::before {
    background: repeating-linear-gradient(
        -45deg,
        rgba(rgb(142,168,166), 0.8),
        rgba(rgb(142,168,166), 0.8) 10px,
        rgba(rgb(106,131,130), 0.5) 10px,
        rgba(rgb(106,131,130), 0.5) 20px
    );
    position: absolute;
    top: 0;
    content: "";
    opacity: 0.1;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}.course_highlights_bWRmw .tech_classes_GJpyF {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    height: 100%;
    position: absolute;
    width: 45%;
    overflow: hidden;
    top: 0;
    left: 0;
}.course_highlights_bWRmw .tech_classes_GJpyF::after {
    height: 100%;
    position: absolute;
    z-index: 3;
    background: linear-gradient(90deg, transparent 0%, rgb(142,168,166) 100%);
    right: 0;
    content: "";
    top: 0;
    width: 50px;
}.course_highlights_bWRmw .skill_academy_Osdrg {
    display: flex;
    flex-direction: column;
    height: 500%;
    width: 100%;
    animation: vertical-carousel 35s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
}.course_highlights_bWRmw .tech_classes_GJpyF:hover .skill_academy_Osdrg {
    animation-play-state: paused;
}.course_highlights_bWRmw .learn_skills_UKrpZ {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 20%;
}.course_highlights_bWRmw .learn_skills_UKrpZ::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        to right,
        rgba(rgb(106,131,130), 0.6) 0%,
        transparent 70%
    );
    position: absolute;
    content: "";
}.course_highlights_bWRmw .learn_skills_UKrpZ img {
    transform: scale(1.05);
    height: 100%;
    object-fit: cover;
    width: 100%;
    transition: filter 0.5s ease, transform 4s ease-out;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
}.course_highlights_bWRmw .learn_skills_UKrpZ:hover img {
    transform: scale(1.15);
    filter: brightness(1) contrast(1.05) saturate(1.2);
}.course_highlights_bWRmw .container {
    width: 100%;
    max-width: 1320px;
    position: relative;
    padding: 3rem;
    z-index: 3;
    margin: 0 auto;
    justify-content: flex-end;
    display: flex;
}.course_highlights_bWRmw .heritage_edu_MEnhg {
    margin-right: 2%;
    width: 55%;
    align-items: center;
    display: flex;
    justify-content: center;
}.course_highlights_bWRmw .study_route_Bhjwr {
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    border-radius: 15px;
    background: linear-gradient(
        135deg,
        rgba(rgb(142,168,166), 0.7) 0%,
        rgba(rgb(106,131,130), 0.7) 100%
    );
    padding: 3rem;
    max-width: 600px;
}.course_highlights_bWRmw .study_route_Bhjwr::before {
    left: 0;
    content: "";
    background: linear-gradient(
        90deg,
        rgb(142,168,166) 0%,
        rgb(106,131,130) 100%
    );
    height: 5px;
    top: 0;
    width: 100%;
    position: absolute;
}.course_highlights_bWRmw .study_route_Bhjwr::after {
    top: -50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 60%
    );
    position: absolute;
    pointer-events: none;
    content: "";
    height: 200%;
    width: 200%;
    z-index: -1;
    left: -50%;
    animation: rotate-gradient 20s linear infinite;
}.course_highlights_bWRmw .study_route_Bhjwr h3 {
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-size: 35px;
    color: #ffffff;
    padding-bottom: 1rem;
}.course_highlights_bWRmw .study_route_Bhjwr h3::after {
    width: 50px;
    height: 3px;
    left: 0;
    position: absolute;
    background: linear-gradient(
        90deg,
        rgb(142,168,166) 0%,
        rgb(106,131,130) 100%
    );
    bottom: 0;
    content: "";
}.course_highlights_bWRmw .study_route_Bhjwr p {
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.9;
    position: relative;
}.course_highlights_bWRmw .study_route_Bhjwr .query_help_vFQVe {
    font-size: 17px;
    transition: all 0.4s ease;
    background: linear-gradient(
        to right,
        rgb(142,168,166) 0%,
        rgb(106,131,130) 100%
    );
    padding: 1rem 2.5rem;
    z-index: 1;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    display: inline-flex;
    text-decoration: none;
    overflow: hidden;
    border-radius: 10px;
    background-size: 200% auto;
    position: relative;
    justify-content: center;
    align-items: center;
}.course_highlights_bWRmw .study_route_Bhjwr .query_help_vFQVe::before {
    transition: all 0.4s ease;
    background: linear-gradient(
        to right,
        rgb(106,131,130) 0%,
        rgb(142,168,166) 100%
    );
    left: -100%;
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    z-index: -1;
    height: 100%;
    opacity: 0;
}.course_highlights_bWRmw .study_route_Bhjwr .query_help_vFQVe:hover {
    background-position: right center;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(rgb(142,168,166), 0.3);
}.course_highlights_bWRmw .study_route_Bhjwr .query_help_vFQVe:hover::before {
    opacity: 1;
    left: 0;
}

@keyframes vertical-carousel {
    0%, 15% {
        transform: translateY(0);
    }
    20%, 35% {
        transform: translateY(-20%);
    }
    40%, 55% {
        transform: translateY(-40%);
    }
    60%, 75% {
        transform: translateY(-60%);
    }
    80%, 95% {
        transform: translateY(-80%);
    }
    100% {
        transform: translateY(-80%);
    }
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 992px) {.course_highlights_bWRmw .tech_classes_GJpyF {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    width: 40%;
}.course_highlights_bWRmw .heritage_edu_MEnhg {
    width: 60%;
    margin-right: 0;
}.course_highlights_bWRmw .study_route_Bhjwr {
    padding: 2rem;
}.course_highlights_bWRmw .study_route_Bhjwr h3 {
    font-size: calc(35px * 0.9);
}
}


@media (max-width: 768px) {.course_highlights_bWRmw {
    min-height: auto;
    display: block;
}.course_highlights_bWRmw .tech_classes_GJpyF {
    height: 300px;
    clip-path: none;
    position: relative;
    width: 100%;
}.course_highlights_bWRmw .tech_classes_GJpyF::after {
    display: none;
}.course_highlights_bWRmw .skill_academy_Osdrg {
    flex-direction: row;
    height: 100%;
    animation: horizontal-carousel 25s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
    width: 500%;
}.course_highlights_bWRmw .learn_skills_UKrpZ {
    height: 100%;
    width: 20%;
}.course_highlights_bWRmw .learn_skills_UKrpZ::before {
    background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(rgb(106,131,130), 0.8) 100%
        );
}.course_highlights_bWRmw .container {
    padding: 2rem 1rem;
    justify-content: center;
}.course_highlights_bWRmw .heritage_edu_MEnhg {
    margin: 0;
    width: 100%;
}.course_highlights_bWRmw .study_route_Bhjwr {
    padding: 1.5rem;
    max-width: 100%;
}.course_highlights_bWRmw .study_route_Bhjwr h3 {
    font-size: calc(35px * 0.8);
}.course_highlights_bWRmw .study_route_Bhjwr p {
    font-size: calc(17px * 0.9);
    margin-bottom: 1.5rem;
}.course_highlights_bWRmw .study_route_Bhjwr .query_help_vFQVe {
    width: 100%;
    padding: 0.8rem 1.5rem;
}@keyframes horizontal-carousel {
        0%, 15% {
            transform: translateX(0);
        }
        20%, 35% {
            transform: translateX(-20%);
        }
        40%, 55% {
            transform: translateX(-40%);
        }
        60%, 75% {
            transform: translateX(-60%);
        }
        80%, 95% {
            transform: translateX(-80%);
        }
        100% {
            transform: translateX(0);
        }
    }
}.developer_experience_vrGbD {
    padding: 140px 0;
    background: linear-gradient(135deg, #000000 0%, rgb(176,199,198) 100%);
    position: relative;
    overflow: hidden;
}.developer_experience_vrGbD::before {
    mix-blend-mode: screen;
    background: 
    radial-gradient(circle at 25% 25%, rgb(142,168,166,0.5) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgb(106,131,130,0.5) 0%, transparent 40%);
    height: 100%;
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    animation: morphBackground 15s infinite alternate ease-in-out;
    top: 0;
}.developer_experience_vrGbD .container {
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
}.developer_experience_vrGbD .user_feedback_QOuGH {
    gap: 20px 40px;
    grid-template-columns: 35% 1fr;
    display: grid;
    grid-template-rows: auto auto 1fr;
    position: relative;
    grid-template-areas:
    "photo name"
    "photo job"
    "quote quote";
}.developer_experience_vrGbD .gallery_wrapper_zbmrl {
    z-index: 3;
    border-radius: 16px;
    clip-path: polygon(0 0, 100% 10%, 90% 100%, 0 90%);
    box-shadow: 
    20px 20px 30px rgba(0, 0, 0, 0.5),
    -10px -10px 30px rgb(142,168,166,0.5);
    transform: perspective(1000px) rotateY(-8deg);
    height: 420px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    grid-area: photo;
    position: relative;
}.developer_experience_vrGbD .gallery_wrapper_zbmrl::before {
    mix-blend-mode: multiply;
    border-radius: 16px;
    content: "";
    inset: 0;
    position: absolute;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
}.developer_experience_vrGbD .user_feedback_QOuGH:hover .gallery_wrapper_zbmrl {
    transform: perspective(1000px) rotateY(-4deg) translateZ(20px);
}.developer_experience_vrGbD .name {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 32px;
    transform: perspective(1000px) rotateY(5deg);
    grid-area: name;
    font-weight: 700;
    padding-left: 20px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    color: #ffffff;
    position: relative;
    align-self: end;
    transform-origin: left center;
    margin: 0;
}.developer_experience_vrGbD .name::after {
    position: absolute;
    content: "";
    background: rgb(142,168,166);
    bottom: -8px;
    transition: transform 0.5s ease;
    transform: scaleX(0.6);
    transform-origin: left;
    width: 60px;
    left: 20px;
    height: 4px;
}.developer_experience_vrGbD .user_feedback_QOuGH:hover .name {
    transform: perspective(1000px) rotateY(2deg) translateZ(15px);
}.developer_experience_vrGbD .user_feedback_QOuGH:hover .name::after {
    transform: scaleX(1);
}.developer_experience_vrGbD .user_feedback_QOuGH > span:not(.name) {
    font-weight: 600;
    grid-area: job;
    transform-origin: left center;
    color: rgb(106,131,130);
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
    font-size: 22px;
    transform: perspective(1000px) rotateY(5deg);
    padding-left: 20px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}.developer_experience_vrGbD .user_feedback_QOuGH:hover > span:not(.name) {
    transform: perspective(1000px) rotateY(2deg) translateZ(10px);
}.developer_experience_vrGbD .career_projects_ZVaxo {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    line-height: 1.7;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    font-size: 17px;
    grid-area: quote;
    z-index: 2;
    color: #ffffff;
    transform: translateY(0);
    font-weight: 300;
    margin: 30px 0 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-left: 4px solid rgb(142,168,166);
    position: relative;
    padding: 35px;
}.developer_experience_vrGbD .career_projects_ZVaxo::before {
    top: -15px;
    position: absolute;
    font-size: calc(47px * 2);
    opacity: 0.7;
    left: 25px;
    color: rgb(142,168,166);
    content: "";
}.developer_experience_vrGbD .user_feedback_QOuGH:hover .career_projects_ZVaxo {
    transform: translateY(-10px);
}

@keyframes morphBackground {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1) rotate(5deg);
  }
}

@media (max-width: 992px) {.developer_experience_vrGbD {
    padding: 80px 0;
}.developer_experience_vrGbD .user_feedback_QOuGH {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "gallery_wrapper_zbmrl"
      "name"
      "job_block_sLGjA"
      "career_projects_ZVaxo";
    gap: 15px;
}.developer_experience_vrGbD .gallery_wrapper_zbmrl {
    height: 320px;
    max-width: 320px;
    margin: 0 auto;
    transform: none;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}.developer_experience_vrGbD .name,
  .developer_experience_vrGbD .user_feedback_QOuGH > span:not(.name) {
    padding-left: 0;
    text-align: center;
    transform: none;
}.developer_experience_vrGbD .name::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0.6);
}.developer_experience_vrGbD .user_feedback_QOuGH:hover .name::after {
    transform: translateX(-50%) scaleX(1);
}.developer_experience_vrGbD .career_projects_ZVaxo {
    margin-top: 20px;
}.developer_experience_vrGbD .user_feedback_QOuGH:hover .gallery_wrapper_zbmrl,
  .developer_experience_vrGbD .user_feedback_QOuGH:hover .name,
  .developer_experience_vrGbD .user_feedback_QOuGH:hover > span:not(.name),
  .developer_experience_vrGbD .user_feedback_QOuGH:hover .career_projects_ZVaxo {
    transform: none;
}
}

@media (max-width: 576px) {.developer_experience_vrGbD {
    padding: 60px 0;
}.developer_experience_vrGbD .gallery_wrapper_zbmrl {
    height: 250px;
    max-width: 250px;
}.developer_experience_vrGbD .name {
    font-size: 21px;
}.developer_experience_vrGbD .career_projects_ZVaxo {
    font-size: calc(17px * 0.95);
    padding: 25px 20px;
}}.try_immediately_GKkDN {
    background: linear-gradient(135deg, rgb(142,168,166), rgb(106,131,130));
    padding: 5rem 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}.try_immediately_GKkDN::before {
    left: -50%;
    width: 200%;
    background: radial-gradient(circle at 30% 40%, rgb(142,168,166,0.5), transparent 60%);
    transform: rotate(-15deg);
    top: -50%;
    position: absolute;
    height: 200%;
    content: "";
    z-index: 1;
}.try_immediately_GKkDN::after {
    position: absolute;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    bottom: -20px;
    opacity: 0.2;
    right: -20px;
    background: rgb(106,131,130);
    height: 150px;
    z-index: 1;
    content: "";
    transform: rotate(15deg);
    width: 150px;
}.try_immediately_GKkDN .container {
    max-width: 1140px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    flex-direction: column;
    display: flex;
    transform: perspective(1000px) rotateX(2deg);
}.try_immediately_GKkDN h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
    max-width: 800px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-size: 18px;
    transform: translateY(-5px);
}.try_immediately_GKkDN div div {
    transform: translateY(5px);
    display: flex;
    justify-content: center;
}.try_immediately_GKkDN div div span {
    overflow: hidden;
    position: relative;
    display: inline-block;
}.try_immediately_GKkDN div div span::before {
    content: "";
    background: #ffffff;
    position: absolute;
    opacity: 0.2;
    top: -10px;
    height: 20px;
    transform: scale(0);
    left: -10px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 20px;
    border-radius: 50%;
}.try_immediately_GKkDN .query_help_vFQVe {
    padding: 14px 36px;
    border-radius: 10px;
    position: relative;
    font-size: 14px;
    color: rgb(142,168,166);
    align-items: center;
    background: #ffffff;
    transform: translateZ(0);
    justify-content: center;
    backface-visibility: hidden;
    overflow: hidden;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}.try_immediately_GKkDN .query_help_vFQVe::before {
    transition: opacity 0.5s ease;
    height: 100%;
    background: linear-gradient(45deg, rgb(142,168,166,0.5), rgb(106,131,130,0.5));
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    content: "";
}.try_immediately_GKkDN .query_help_vFQVe span {
    z-index: 2;
    transition: transform 0.3s ease;
    position: relative;
}.try_immediately_GKkDN .query_help_vFQVe:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}.try_immediately_GKkDN .query_help_vFQVe:hover::before {
    opacity: 0.15;
}.try_immediately_GKkDN .query_help_vFQVe:hover span {
    transform: translateX(5px);
}.try_immediately_GKkDN .query_help_vFQVe:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}.try_immediately_GKkDN div div span:hover::before {
    transform: scale(20);
}

@media (min-width: 768px) {.try_immediately_GKkDN {
    padding: 6rem 0;
}.try_immediately_GKkDN .container {
    flex-direction: row;
    transform: perspective(1200px) rotateX(1deg);
    align-items: center;
    justify-content: space-between;
}.try_immediately_GKkDN h6 {
    margin-bottom: 0;
    text-align: left;
    margin-right: 2rem;
    max-width: 60%;
    transform: translateY(0);
}.try_immediately_GKkDN div div {
    transform: translateY(0);
}
}

@media (min-width: 992px) {.try_immediately_GKkDN {
    padding: 7rem 0;
}.try_immediately_GKkDN::before {
    top: -30%;
    left: -30%;
}.try_immediately_GKkDN::after {
    right: -30px;
    width: 200px;
    height: 200px;
    bottom: -30px;
}.try_immediately_GKkDN h6 {
    font-size: calc(18px * 1.1);
    max-width: 65%;
}.try_immediately_GKkDN .query_help_vFQVe {
    padding: 16px 42px;
}
}

@media (max-width: 767px) {.try_immediately_GKkDN {
    padding: 4rem 0;
}.try_immediately_GKkDN h6 {
    margin-bottom: 2rem;
    font-size: calc(18px * 0.9);
}.try_immediately_GKkDN .query_help_vFQVe {
    padding: 12px 30px;
    font-size: calc(14px * 0.95);
}
}

@media (max-width: 480px) {.try_immediately_GKkDN {
    padding: 3.5rem 0;
}.try_immediately_GKkDN h6 {
    font-size: calc(18px * 0.85);
    margin-bottom: 1.8rem;
}.try_immediately_GKkDN .query_help_vFQVe {
    padding: 10px 26px;
    font-size: calc(14px * 0.9);
}}.cookie_overlay_panel_LzqJF {
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
    justify-content: center;
    width: 100%;
    position: fixed;
    border-top: 3px solid rgb(142,168,166);
    background: rgb(176,199,198);
    z-index: 100;
    bottom: 0;
    display: flex;
    padding: 20px 0;
}.digital_consent_gBSDf {
    margin: auto;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    border: 2px solid rgb(142,168,166);
    background: rgba(0, 0, 0, 0.5);
    width: 90%;
    border-radius: 22px;
    align-items: center;
    justify-content: space-between;
}.cookie_user_KlmEt {
    flex-shrink: 0;
    margin-right: 20px;
}.cookie_user_KlmEt svg {
    height: 50px;
    fill: rgb(142,168,166);
    width: 50px;
}.cookie_check_lsrMd {
    text-align: left;
    color: #ffffff;
    flex-grow: 1;
}.cookie_check_lsrMd h5 {
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 18px;
    color: rgb(142,168,166);
    font-weight: 700;
}.cookie_check_lsrMd p {
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}.cookie_check_lsrMd p a {
    text-decoration: underline;
    color: rgb(142,168,166);
}.data_comply_xhpwG {
    padding: 10px 20px;
    background: rgb(142,168,166);
    font-size: 15px;
    color: #ffffff;
    min-width: 120px;
    text-decoration: none;
    border: none;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
}.cookie_button.privacy_opt_aWEMF {
    margin-right: 10px;
}#cookieWarningBanner_BOouw {
    display: none;
}#cookieWarningBanner_BOouw:checked ~ .cookie_overlay_panel_LzqJF {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1200px) {.digital_consent_gBSDf {
    align-items: center;
    flex-direction: column;
    text-align: center;
}.cookie_user_KlmEt {
    margin-right: 0;
    margin-bottom: 20px;
}.data_comply_xhpwG {
    margin: 10px 0;
    width: 100%;
    max-width: 250px;
}}
.gratitudeDiv_ENejK {
    padding: 6rem 0;
    perspective: 1000px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(176,199,198) 0%, rgba(rgb(142,168,166,0.5), 0.08) 100%);
}.gratitudeDiv_ENejK::before {
    height: 200%;
    position: absolute;
    pointer-events: none;
    left: -50%;
    background: radial-gradient(circle at center, rgba(rgb(106,131,130,0.5), 0.03) 0%, transparent 60%);
    opacity: 0.8;
    width: 200%;
    top: -50%;
    content: "";
    animation: orbital 30s infinite linear;
    transform: rotate(-12deg);
}.gratitudeDiv_ENejK::after {
    position: absolute;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(rgb(142,168,166,0.5), 0.05) 1px, transparent 2px),
        radial-gradient(circle at 30% 70%, rgba(rgb(142,168,166,0.5), 0.06) 1px, transparent 2px),
        radial-gradient(circle at 70% 40%, rgba(rgb(142,168,166,0.5), 0.05) 1px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(rgb(142,168,166,0.5), 0.05) 1px, transparent 2px);
    width: 100%;
    left: 0;
    height: 100%;
    background-size: 8rem 8rem;
    opacity: 0.4;
    top: 0;
    content: "";
    pointer-events: none;
}.gratitudeDiv_ENejK .container {
    padding: 0 1.5rem;
    margin: 0 auto;
    z-index: 1;
    max-width: 1200px;
    transform-style: preserve-3d;
    position: relative;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg {
    background: linear-gradient(
        145deg, 
        rgba(rgb(255, 255, 255, 0.5), 0.95) 0%, 
        rgba(rgb(255, 255, 255, 0.5), 0.85) 100%
    );
    mask-image: linear-gradient(
        to bottom right,
        transparent 0%,
        black 5%,
        black 95%,
        transparent 100%
    );
    position: relative;
    padding: 3.5rem;
    box-shadow: 
        0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.08),
        0 5px 15px rgba(rgba(0, 0, 0, 0.5), 0.05);
    display: flex;
    overflow: hidden;
    flex-direction: column;
    transform: translateZ(0);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    gap: 2.5rem;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg:hover {
    transform: translateZ(20px) translateY(-5px);
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:first-child {
    transform: translateZ(10px);
    position: relative;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:first-child::before {
    width: 2.5rem;
    height: 2px;
    transform: translateY(-50%);
    left: -3.5rem;
    content: "";
    top: 50%;
    background: linear-gradient(90deg, transparent, rgb(142,168,166), transparent);
    position: absolute;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:last-child {
    transform: translateZ(5px);
    position: relative;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:last-child::after {
    height: 2px;
    position: absolute;
    width: 2.5rem;
    bottom: 2rem;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, rgb(142,168,166), transparent);
    right: -3.5rem;
    content: "";
}.gratitudeDiv_ENejK h5 {
    transition: transform 0.5s ease;
    margin: 0;
    position: relative;
    font-weight: 700;
    transform: perspective(1000px) rotateX(0deg);
    line-height: 1.4;
    font-size: 19px;
    color: #000000;
    padding-left: 1.5rem;
}.gratitudeDiv_ENejK h5::before {
    height: 0.5rem;
    top: 0.5rem;
    border-radius: 50%;
    position: absolute;
    left: 0;
    background: rgb(142,168,166);
    content: "";
    box-shadow: 0 0 10px rgba(rgb(142,168,166,0.5), 0.5);
    width: 0.5rem;
    animation: pulse 3s infinite ease-in-out;
}.gratitudeDiv_ENejK a {
    transition: transform 0.4s ease-out;
    display: block;
    text-decoration: none;
}.gratitudeDiv_ENejK a:hover {
    transform: translateX(5px);
}.gratitudeDiv_ENejK p {
    padding: 0 0 0 1.5rem;
    line-height: 1.8;
    margin: 0;
    font-size: 13px;
    position: relative;
    border-left: 1px solid rgba(rgb(142,168,166,0.5), 0.2);
    color: #000000;
    font-weight: 400;
}

@media (min-width: 768px) {.gratitudeDiv_ENejK {
    padding: 8rem 0;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg {
    padding: 4.5rem;
    gap: 3rem;
}.gratitudeDiv_ENejK h5 {
    padding-left: 2rem;
    font-size: calc(19px * 1.1);
}.gratitudeDiv_ENejK p {
    font-size: calc(13px * 1.05);
    padding: 0 0 0 2rem;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:first-child::before {
    width: 4rem;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:last-child::after {
    width: 4rem;
}
}

@media (min-width: 992px) {.gratitudeDiv_ENejK {
    padding: 10rem 0;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg {
    gap: 4rem;
    align-items: center;
    flex-direction: row;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:first-child {
    flex: 0 0 40%;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:last-child {
    flex: 0 0 60%;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:first-child::before {
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgb(142,168,166), transparent);
    left: auto;
    top: 50%;
    height: 3rem;
    right: -2rem;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:last-child::after {
    right: auto;
    width: 2px;
    height: 3rem;
    background: linear-gradient(to bottom, transparent, rgb(142,168,166), transparent);
    left: -2rem;
    bottom: 2rem;
}
}

@media (min-width: 1200px) {.gratitudeDiv_ENejK .heritage_edu_MEnhg {
    gap: 5rem;
    padding: 5rem;
}.gratitudeDiv_ENejK h5 {
    font-size: calc(19px * 1.2);
}.gratitudeDiv_ENejK p {
    font-size: calc(13px * 1.1);
}
}

@media (max-width: 767px) {.gratitudeDiv_ENejK {
    padding: 4rem 0;
}.gratitudeDiv_ENejK .heritage_edu_MEnhg {
    gap: 2rem;
    padding: 2.5rem;
}.gratitudeDiv_ENejK h5 {
    font-size: calc(19px * 0.95);
}.gratitudeDiv_ENejK .heritage_edu_MEnhg > div:first-child::before,
    .gratitudeDiv_ENejK .heritage_edu_MEnhg > div:last-child::after {
    display: none;
}}

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

@keyframes orbital {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}.lesson_cta_eSKzT {
    padding: 0;
    font-family: Arial, sans-serif;
    color: #ffffff;
    position: relative;
    background-color: rgb(106,131,130);
}.lesson_cta_eSKzT .container {
    z-index: 2;
    position: relative;
}.lesson_cta_eSKzT .ssl_info_DKdEs {
    flex-direction: column;
    display: flex;
}.lesson_cta_eSKzT .connect_experts_XdFLs {
    display: grid;
    position: relative;
    background-color: rgb(142,168,166);
    padding: 3rem 1.5rem 5rem;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    margin-bottom: -2rem;
    z-index: 3;
    grid-template-columns: repeat(4, 1fr);
}.lesson_cta_eSKzT .connect_experts_XdFLs::before {
    width: 100%;
    height: 100%;
    content: '';
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    top: 0;
    z-index: -1;
    position: absolute;
    left: 0;
}.lesson_cta_eSKzT .info_item {
    padding: 0.5rem 1rem;
    transition: transform 0.3s ease;
    position: relative;
}.lesson_cta_eSKzT .info_item:hover {
    transform: translateX(10px);
}.lesson_cta_eSKzT .info_item p,
.lesson_cta_eSKzT .info_item a {
    gap: 0.75rem;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    align-items: center;
    display: flex;
}.lesson_cta_eSKzT .info_item svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    fill: #ffffff;
}.lesson_cta_eSKzT .info_item:hover svg {
    transform: scale(1.2);
}.lesson_cta_eSKzT .text_main_holder {
    gap: 0;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    z-index: 2;
}.lesson_cta_eSKzT .top_base_RMjfr {
    z-index: 4;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
    gap: 1.5rem;
    background-color: rgb(106,131,130);
    display: flex;
    padding: 4rem 2rem 3rem;
    position: relative;
    flex-direction: column;
}.lesson_cta_eSKzT .top_base_RMjfr svg {
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
    max-width: 150px;
    height: auto;
}.lesson_cta_eSKzT .top_base_RMjfr:hover svg {
    transform: scale(1.05);
}.lesson_cta_eSKzT .converter_NWhct {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}.lesson_cta_eSKzT .nav_sitebar_bWOrE {
    gap: 2rem;
    z-index: 2;
    background-color: #000000;
    display: flex;
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 5rem 2rem 3rem;
    flex-direction: column;
}.lesson_cta_eSKzT .nav_sitebar_bWOrE::before {
    z-index: -1;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    content: '';
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
}.lesson_cta_eSKzT .nav_sitebar_bWOrE h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 23px;
    color: #ffffff;
    display: inline-block;
    position: relative;
}.lesson_cta_eSKzT .nav_sitebar_bWOrE h5::after {
    bottom: -0.5rem;
    background-color: rgb(142,168,166);
    height: 3px;
    position: absolute;
    width: 40px;
    left: 0;
    content: '';
}.lesson_cta_eSKzT .nav_pagewrap_thKkN {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}.lesson_cta_eSKzT .nav_pagewrap_thKkN:not(:last-child) {
    margin-bottom: 1rem;
}.lesson_cta_eSKzT .nav_pagewrap_thKkN a {
    opacity: 0.8;
    position: relative;
    padding: 0.5rem 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}.lesson_cta_eSKzT .nav_pagewrap_thKkN a::before {
    transition: width 0.3s ease;
    width: 0;
    bottom: 0;
    content: '';
    background-color: rgb(142,168,166);
    height: 2px;
    left: 0;
    position: absolute;
}.lesson_cta_eSKzT .nav_pagewrap_thKkN a:hover {
    padding-left: 10px;
    opacity: 1;
}.lesson_cta_eSKzT .nav_pagewrap_thKkN a:hover::before {
    width: 30px;
}.lesson_cta_eSKzT .subscribe_holder {
    position: relative;
    z-index: 3;
    gap: 1.5rem;
    background-color: rgb(106,131,130);
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem 3rem;
}.lesson_cta_eSKzT .subscribe_holder::before {
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    content: '';
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
}.lesson_cta_eSKzT .subscribe_holder h5 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 23px;
    font-weight: 600;
}.lesson_cta_eSKzT .subscribe_holder p {
    color: #ffffff;
    opacity: 0.9;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 1rem;
}.lesson_cta_eSKzT .input_holder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}.lesson_cta_eSKzT .input_holder input[type="email"] {
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 18px;
    color: #ffffff;
    transition: all 0.3s ease;
}.lesson_cta_eSKzT .input_holder input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.3);
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}.lesson_cta_eSKzT .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}.lesson_cta_eSKzT .subscribe_tip_QgDyV {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    border: none;
    background-color: rgb(142,168,166);
    overflow: hidden;
    font-size: 19px;
}.lesson_cta_eSKzT .subscribe_tip_QgDyV::before {
    width: 100%;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    content: '';
    position: absolute;
    transition: left 0.5s ease;
    left: -100%;
}.lesson_cta_eSKzT .subscribe_tip_QgDyV:hover {
    background-color: rgb(142,168,166,0.5);
}.lesson_cta_eSKzT .subscribe_tip_QgDyV:hover::before {
    left: 100%;
}.lesson_cta_eSKzT .debate_club_bFUnw {
    position: relative;
    z-index: 1;
    background-color: rgb(106,131,130);
    padding: 6rem 0 2rem;
    margin-top: 0;
    text-align: center;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
}.lesson_cta_eSKzT .debate_club_bFUnw::before {
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    content: '';
    width: 100%;
    position: absolute;
}.lesson_cta_eSKzT .encrypt_cta_JAnlm {
    font-size: 13px;
    opacity: 0.7;
    color: #ffffff;
}

@media (max-width: 1200px) {.lesson_cta_eSKzT .connect_experts_XdFLs {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}.lesson_cta_eSKzT .text_main_holder {
    grid-template-columns: 1fr 1.5fr;
}.lesson_cta_eSKzT .subscribe_holder {
    grid-column: 1 / -1;
}
}

@media (max-width: 991px) {.lesson_cta_eSKzT .text_main_holder {
    grid-template-columns: 1fr;
}.lesson_cta_eSKzT .top_base_RMjfr,
    .lesson_cta_eSKzT .nav_sitebar_bWOrE,
    .lesson_cta_eSKzT .subscribe_holder {
    clip-path: none;
}.lesson_cta_eSKzT .nav_sitebar_bWOrE {
    padding: 3rem 2rem;
}.lesson_cta_eSKzT .top_base_RMjfr {
    align-items: center;
    padding: 3rem 2rem;
    text-align: center;
}.lesson_cta_eSKzT .subscribe_holder {
    padding: 3rem 2rem;
}.lesson_cta_eSKzT .debate_club_bFUnw {
    padding: 3rem 0 2rem;
    clip-path: none;
}
}

@media (max-width: 768px) {.lesson_cta_eSKzT .connect_experts_XdFLs {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem 3rem;
    margin-bottom: 0;
    clip-path: none;
}.lesson_cta_eSKzT .nav_pagewrap_thKkN {
    grid-template-columns: 1fr;
}.lesson_cta_eSKzT .nav_sitebar_bWOrE h5,
    .lesson_cta_eSKzT .subscribe_holder h5 {
    display: block;
    text-align: center;
}.lesson_cta_eSKzT .nav_sitebar_bWOrE h5::after {
    transform: translateX(-50%);
    left: 50%;
}.lesson_cta_eSKzT .subscribe_holder p {
    text-align: center;
}
}

@media (max-width: 576px) {.lesson_cta_eSKzT .top_base_RMjfr,
    .lesson_cta_eSKzT .nav_sitebar_bWOrE,
    .lesson_cta_eSKzT .subscribe_holder {
    padding: 2.5rem 1.5rem;
}.lesson_cta_eSKzT .debate_club_bFUnw {
    padding: 2.5rem 0 1.5rem;
}.lesson_cta_eSKzT .info_item {
    padding: 0.5rem 0;
}.lesson_cta_eSKzT .info_item p,
    .lesson_cta_eSKzT .info_item a {
    justify-content: center;
}
}