* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

html,body {
    min-height: 100%;
    height: 100%;
    scroll-behavior: auto;
    color: #000000;
    font-family: Arial, sans-serif;
}

svg {
    width: 30px;
    height: 30px;
}

.wrapper-bundle {
    height: 100%;
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.law_res::before {
    width: 100%;
    opacity: 0.15;
    top: 0;
    content: '';
    z-index: 1;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(169,170,169,0.5) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgb(126,127,128,0.5) 0%, transparent 30%);
    left: 0;
    position: absolute;
    height: 100%;
}

.law_res .container {
    position: relative;
    z-index: 3;
}

.law_res .qna_board {
    display: flex;
    flex-direction: column;
    position: relative;
}

.law_res .connect_team {
    margin-bottom: 2rem;
    background-color: #ffffff;
    display: flex;
    transform: translateY(-3.5rem);
    padding: 1.25rem 2rem;
    z-index: 10;
    gap: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    border-radius: 18px;
}

.law_res .info_item:not(:last-child)::after {
    right: -0.75rem;
    transform: translateY(-50%);
    background: linear-gradient(to bottom, transparent, rgb(126,127,128,0.5), transparent);
    height: 70%;
    position: absolute;
    content: '';
    top: 50%;
    width: 1px;
}

.law_res .info_item:hover {
    transform: translateY(-5px);
}

.law_res .info_item:hover p,
.law_res .info_item:hover a {
    color: rgb(169,170,169);
}

.law_res .info_item:hover svg {
    transform: scale(1.15);
}

.law_res .text_main_holder {
    gap: 4rem;
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1.5fr 1fr;
}

.law_res .nav_lesson svg {
    filter: brightness(0) invert(1);
    max-width: 180px;
    height: auto;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.law_res .main_learning {
    flex-direction: column;
    position: relative;
    display: flex;
}

.law_res .main_learning::after {
    top: 0;
    right: -2rem;
    background: linear-gradient(to bottom, transparent, rgb(126,127,128,0.5) 30%, rgb(126,127,128,0.5) 70%, transparent);
    position: absolute;
    bottom: 0;
    width: 1px;
    content: '';
}

.law_res .main_learning h5::after {
    left: 0;
    height: 2px;
    bottom: 0;
    background: linear-gradient(to right, rgb(169,170,169), transparent);
    position: absolute;
    width: 60px;
    content: '';
}

.law_res .main_mainwrap:first-child {
    margin-bottom: 2rem;
}

.law_res .main_mainwrap a::before {
    position: absolute;
    content: '';
    transition: width 0.3s ease;
    bottom: 0;
    width: 0;
    background-color: rgb(169,170,169);
    left: 0;
    height: 1px;
}

.law_res .main_mainwrap a:hover::before {
    width: 20px;
}

.law_res .subscribe_holder {
    flex-direction: column;
    display: flex;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    gap: 1.5rem;
    overflow: hidden;
    border-radius: 18px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.law_res .subscribe_holder::after {
    background: radial-gradient(circle, rgb(169,170,169,0.5) 0%, transparent 70%);
    opacity: 0.3;
    animation: pulseGlow 6s infinite alternate;
    bottom: 0;
    width: 150px;
    content: '';
    right: 0;
    position: absolute;
    height: 150px;
    z-index: -1;
}

.law_res .subscribe_holder p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 13px;
}

.law_res .input_holder {
    position: relative;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    margin-top: 0.5rem;
}



.law_res .input_holder input[type="email"] {
    padding: 1.125rem 1.5rem;
    font-size: 13px;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.law_res .input_holder input[type="email"]:focus {
    border-color: rgb(169,170,169,0.5);
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgb(169,170,169,0.5);
}

.law_res .get_started::before {
    width: 100%;
    z-index: -1;
    position: absolute;
    left: -100%;
    content: '';
    transition: left 0.7s ease;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 100%;
}

.law_res .get_started::after {
    z-index: -2;
    content: '';
    left: 0;
    background: rgb(126,127,128);
    top: 0;
    height: 100%;
    transition: opacity 0.3s ease;
    opacity: 0;
    width: 100%;
    position: absolute;
}

.law_res .mentor_cta::before {
    background: linear-gradient(to right, transparent, rgb(126,127,128,0.5), transparent);
    position: absolute;
    content: '';
    height: 1px;
    top: 0;
    width: 60%;
    left: 20%;
}

.privacy_switch {
    justify-content: space-between;
    align-items: center;
    display: flex;
    padding: 20px 0;
}

#cookieWarningBanner {
    display: none;
}

.cookie_notice_window h5 {
    font-size: 22px;
    margin-bottom: 6px;
}

.consent_comply {
    flex-shrink: 0;
    margin-right: 10px;
}

.cookie_screen {
    white-space: nowrap;
    color: rgb(169,170,169);
    text-decoration: none;
    text-align: center;
    border-bottom: 2px solid rgb(169,170,169);
    flex-shrink: 0;
    margin-left: 10px;
    font-size: 24px;
    min-width: 120px;
    line-height: 35px;
    cursor: pointer;
}

.wrapper-bundle .cookie_screen {
    font-weight: 400;
    font-size: 20px;
    background: rgb(169,170,169);
    border: none;
    padding: 10px;
    color: #ffffff;
    margin-left: 30px;
}

.wrapper-bundle .consent_comply svg, .wrapper-bundle .consent_comply svg path, .wrapper-bundle .consent_comply img {
    width: 40px;
    height: 40px;
    fill:#000000;
}

header .container {
    position: relative;
    z-index: 1;
    padding: 0 2%;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

header .header_master {
    margin: 1rem 0;
    overflow: hidden;
    border-radius: 19px;
    display: flex;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    align-items: center;
    position: relative;
}

header .header_master::before {
    background: linear-gradient(to right, rgb(169,170,169), rgb(126,127,128));
    left: 0;
    position: absolute;
    content: '';
    height: 5px;
    top: 0;
    width: 100%;
}

header .page_head::after {
    background: linear-gradient(to right, transparent, rgb(169,170,169,0.5), rgb(126,127,128,0.5), rgb(169,170,169,0.5), transparent);
    position: absolute;
    left: 20%;
    height: 1px;
    bottom: 0;
    width: 60%;
    content: '';
}

header .nav_tutor {
    padding: 0.7rem 1.3rem;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    font-size: 17px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: linear-gradient(to bottom, #ffffff, rgb(207,207,181));
    border-radius: 10px;
    z-index: 1;
    transition: all 0.3s ease;
    color: #000000;
    font-family: Arial, sans-serif;
}

header .nav_tutor:hover::before {
    height: 100%;
}

.contact_sectionwJn {
    background: rgb(207,207,181);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact_sectionwJn::after {
    z-index: 1;
    animation: pulse 15s infinite alternate;
    height: 100%;
    position: absolute;
    top: 0;
    content: "";
    left: 0;
    width: 100%;
    background: radial-gradient(circle at 30% 70%, rgb(169,170,169,0.5) 0%, transparent 30%);
}

.contact_sectionwJn h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-weight: 700;
    color: #000000;
}

.contact_sectionwJn .lightbox_img {
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    filter: grayscale(40%) contrast(120%);
    position: absolute;
}

.help_formY69 {
    background: #ffffff;
    display: flex;
    border-radius: 17px;
    overflow: hidden;
    justify-content: space-between;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

.help_formY69 .help_reach {
    padding: 50px;
    flex: 0 0 60%;
    position: relative;
}

.help_formY69 .help_reach h3 {
    color: #000000;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
    font-size: 22px;
}

.help_formY69 .help_reach h3::after {
    transform: none;
    width: 60px;
    left: 0;
}

.help_formY69 .help_reach input[type="text"],
.help_formY69 .help_reach textarea {
    transition: all 0.3s ease;
    font-size: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.8);
}

.help_formY69 .help_reach .inquiry_card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.help_formY69 .help_reach .inquiry_card label {
    color: #000000;
    font-size: calc(15px - 2px);
    padding-left: 30px;
    line-height: 1.5;
    cursor: pointer;
    position: relative;
}

.help_formY69 .help_reach .inquiry_card input[type="checkbox"]:checked + label::before {
    border-color: rgb(169,170,169);
    background: rgb(169,170,169);
}

.help_formY69 .help_reach .inquiry_card a {
    font-weight: 600;
    text-decoration: none;
    color: rgb(169,170,169);
    transition: all 0.3s ease;
}

.help_formY69 .help_reach .inquiry_card a:hover {
    text-decoration: underline;
}

.help_formY69 .help_reach .inquiry_map::before {
    width: 100%;
    background: rgb(126,127,128);
    height: 100%;
    content: "";
    transition: all 0.5s ease;
    z-index: -1;
    position: absolute;
    top: 0;
    left: -100%;
}

.help_formY69 .help_reach .inquiry_map:hover::before {
    left: 0;
}

.help_formY69 .help_reach .inquiry_map:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgb(169,170,169,0.5);
}

.help_formY69 .request_links::before {
    position: absolute;
    background: radial-gradient(circle, rgb(169,170,169,0.5) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    content: "";
    right: -50%;
    top: -50%;
    height: 100%;
    width: 100%;
}

.help_formY69 .request_links .inquiry_list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.help_formY69 .request_links .inquiry_list li {
    position: relative;
    align-items: flex-start;
    z-index: 1;
    margin-bottom: 25px;
    display: flex;
}

.help_formY69 .request_links .inquiry_list li svg {
    flex-shrink: 0;
    margin-right: 15px;
    height: 24px;
    width: 24px;
}

.help_formY69 .request_links .inquiry_list li span {
    font-size: 15px;
    line-height: 1.5;
    color: #000000;
}

.help_formY69 .request_links .inquiry_list li a:hover {
    color: rgb(169,170,169);
}

.title_intro {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    position: relative;
    min-height: 600px;
    background-color: #000000;
}

.title_intro .learn_first {
    width: 100%;
    z-index: 1;
    left: 0;
    top: 0;
    overflow: hidden;
    position: absolute;
    height: 100%;
}

.title_intro .learn_first::after {
    bottom: 0;
    width: 100%;
    left: 0;
    content: '';
    position: absolute;
    z-index: 2;
    background: linear-gradient(to top, #000000 10%, transparent 100%);
    height: 40%;
}

.title_intro .edu_trackfast {
    overflow: hidden;
    position: relative;
    width: calc(100% / var(--slide-count, 5));
    height: 100%;
}

.title_intro .edu_trackfast img {
    object-fit: cover;
    filter: saturate(1.2) contrast(1.1);
    height: 100%;
    animation: scale-pulse 15s ease-in-out infinite alternate;
    transition: transform 0.5s ease-out;
    width: 100%;
    transform: scale(1.1);
}

.title_intro .text_description h1 {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    font-weight: 700;
    font-size: 43px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.title_intro .text_description p {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    line-height: 1.7;
    color: #ffffff;
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.title_intro .text_description .inquiry_map::before {
    content: '';
    width: 100%;
    transition: left 0.7s ease;
    top: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    left: -100%;
}

.title_intro .text_description .inquiry_map:hover {
    background: linear-gradient(135deg, rgb(126,127,128) 0%, rgb(169,170,169) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}



@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))) {.title_intro .learn_first::before {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}}

.title_intro:has(.edu_trackfast:nth-child(n+6)) .learn_front {
    --slide-count: 5;
}

.leadership_profile::before {
    width: 100%;
    content: "";
    top: 0;
    height: 100%;
    position: absolute;
    left: 0;
    background: linear-gradient(120deg, transparent 30%, rgb(169,170,169,0.5) 100%);
    z-index: 1;
}

.leadership_profile .user_quotes {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    z-index: 2;
    position: relative;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.leadership_profile .lightbox_img::before {
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 70%, 
        rgb(169,170,169,0.5) 100%);
    top: 0;
    z-index: 1;
    height: 100%;
}

.leadership_profile .work_milestones::before {
    position: absolute;
    transition: height 0.8s ease-out;
    top: 0;
    height: 0;
    left: 0;
    content: "";
    background: rgb(169,170,169);
    width: 2px;
}

.leadership_profile .name {
    color: #000000;
    font-size: 48px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    overflow: hidden;
    position: relative;
}

.leadership_profile .user_quotes:hover .name::after {
    transform: translateX(0);
}

.leadership_profile .work_milestones > div:nth-child(2) {
    letter-spacing: 3px;
    font-size: 19px;
    font-weight: 400;
    color: rgb(126,127,128);
    transition: all 0.5s ease-out 0.4s;
    transform: translateY(20px);
    opacity: 0;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.leadership_profile .user_quotes:hover .employee_section {
    opacity: 1;
    transform: translateY(0);
}



.leadership_profile:hover .name {
    white-space: nowrap;
    animation: 
        typing 2.5s steps(40, end),
        blink .75s step-end infinite;
    overflow: hidden;
}

.our_background::before {
    position: absolute;
    top: 0;
    background: linear-gradient(120deg, rgb(169,170,169,0.5) 0%, transparent 30%),
                linear-gradient(240deg, rgb(126,127,128,0.5) 0%, transparent 30%);
    height: 100%;
    content: "";
    width: 100%;
    left: 0;
    z-index: 1;
}

.our_background h2::after {
    content: "";
    transform: translateX(-50%);
    bottom: -15px;
    left: 50%;
    height: 3px;
    position: absolute;
    border-radius: 10px;
    width: 100px;
    background: linear-gradient(90deg, rgb(169,170,169), rgb(126,127,128));
}

.our_background .knowledge_growth:nth-child(2) {
    border-left-color: rgb(126,127,128);
}

.our_background .knowledge_growth::before {
    left: 0;
    height: 100%;
    top: 0;
    position: absolute;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: -1;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    content: "";
}

.our_background .knowledge_growth:nth-child(2)::after {
    border-color: rgb(126,127,128,0.5);
    animation-delay: 2s;
}

.our_background .knowledge_growth h3 {
    display: inline-block;
    margin-bottom: 20px;
    color: rgb(169,170,169);
    position: relative;
    font-weight: 600;
    font-size: 20px;
}

.our_background .knowledge_growth h3::before {
    bottom: -8px;
    left: 0;
    background: currentColor;
    width: 30px;
    transition: width 0.3s ease;
    position: absolute;
    content: "";
    height: 2px;
}

.our_background .knowledge_growth:first-child {
    opacity: 0;
    animation: slideIn 0.6s forwards 0.2s;
    transform: translateX(-20px);
}



.our_background::after {
    content: "";
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 1px, transparent 1px);
    left: 0;
    opacity: 0.03;
    z-index: 1;
    top: 0;
    position: absolute;
    width: 100%;
    background-size: 50px 50px;
    height: 100%;
}

.our_background .container::after {
    background: radial-gradient(circle, rgb(126,127,128,0.5) 0%, transparent 70%);
    left: -100px;
    bottom: -100px;
}

.join_our_mailing_list::before {
    width: 30%;
    top: -10%;
    z-index: -1;
    opacity: 0.2;
    content: '';
    animation: float 12s ease-in-out infinite;
    filter: blur(20px);
    position: absolute;
    height: 60%;
    right: -5%;
    background: linear-gradient(225deg, rgb(169,170,169) 0%, rgb(169,170,169,0.5) 90%);
    transform: rotate(-15deg) skewX(15deg);
}

.join_our_mailing_list .container {
    margin: 0 auto;
    position: relative;
    max-width: 1140px;
}

.join_our_mailing_list .mastery_zone {
    transform: perspective(1000px) rotateY(-1deg);
    position: relative;
    border-left: 4px solid rgb(169,170,169);
    background: #ffffff;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    grid-template-columns: 1fr;
    display: grid;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 1px 5px rgba(0, 0, 0, 0.03);
    gap: 2rem;
    padding: 3rem 2.5rem;
}

.join_our_mailing_list .mastery_zone:hover h3::before {
    opacity: 1;
    transform: scaleY(1);
}

.join_our_mailing_list .input_holder {
    flex-direction: column;
    display: flex;
    gap: 1rem;
    position: relative;
    margin-top: 1rem;
}

.join_our_mailing_list .input_holder div {
    flex: 1;
    position: relative;
}

.join_our_mailing_list .join_us:focus {
    border-color: rgb(169,170,169,0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    outline: none;
}

.join_our_mailing_list .join_us::placeholder {
    color: rgba(0, 0, 0, 0.35);
    transition: color 0.3s ease;
}

.join_our_mailing_list .get_started {
    font-weight: 600;
    background: linear-gradient(135deg, rgb(169,170,169) 0%, rgb(126,127,128) 100%);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0.875rem 1.75rem;
    position: relative;
    color: #ffffff;
    border: none;
    overflow: hidden;
    align-self: flex-start;
    font-size: 16px;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.join_our_mailing_list .get_started:hover::before {
    transform: translateX(100%);
}

.user_reviews {
    background: linear-gradient(165deg, rgb(207,207,181) 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
    padding: 120px 0;
}

.user_reviews::after {
    z-index: 0;
    height: 100%;
    background-size: 50px 50px;
    opacity: 0.05;
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(90deg, rgb(169,170,169,0.5) 1px, transparent 1px),
        linear-gradient(0deg, rgb(169,170,169,0.5) 1px, transparent 1px);
}

.user_reviews h4 {
    color: #000000;
    z-index: 2;
    text-align: center;
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 80px;
    position: relative;
}

.user_reviews h4::after {
    position: absolute;
    height: 20px;
    content: "";
    left: 50%;
    z-index: 1;
    background: #ffffff;
    border-radius: 50%;
    bottom: -26px;
    width: 20px;
    border: 3px solid rgb(169,170,169);
    transform: translateX(-50%);
}

.user_reviews .learner_voices:hover {
    animation-play-state: paused;
}

.user_reviews .user_quotes {
    margin: 0 20px;
    position: relative;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
    transform: translateY(0);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    height: 400px;
    align-items: center;
    z-index: 1;
    padding: 30px;
}

.user_reviews .user_quotes::after {
    right: -10px;
    opacity: 0.2;
    content: "";
    width: 60px;
    height: 60px;
    position: absolute;
    background: rgb(169,170,169,0.5);
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: -1;
    top: -10px;
}

.user_reviews .user_quotes:hover .lightbox_img {
    border-color: rgb(169,170,169,0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

.user_reviews .user_quotes span::after {
    opacity: 0.5;
    background: rgb(169,170,169);
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    content: "";
    transition: all 0.3s ease;
    width: 40px;
    bottom: -8px;
}

.user_reviews .user_quotes p {
    align-items: center;
    line-height: 1.6;
    flex-grow: 1;
    color: #000000;
    text-align: center;
    display: flex;
    transition: all 0.3s ease;
    overflow: hidden;
    font-size: 13px;
}

.user_reviews .user_quotes:nth-child(3n+2)::after {
    background: rgb(126,127,128,0.5);
}

.user_reviews .user_quotes:nth-child(even) {
    margin-top: 30px;
}

.user_reviews .user_quotes:nth-child(odd) {
    margin-top: -30px;
}

.privacy_haven h1 {
    border-bottom: 2px solid rgb(169,170,169);
    font-weight: 700;
    padding-bottom: 10px;
    font-size: 40px;
    color: rgb(169,170,169);
    margin-bottom: 25px;
    text-transform: uppercase;
    margin-top: 40px;
}

.privacy_haven h2 {
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: 600;
    margin-top: 30px;
    color: rgb(126,127,128);
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(126,127,128);
}

.privacy_haven section {
    padding: 20px;
    background: rgb(207,207,181);
    margin-top: 20px;
    border-radius: 10px;
}

.plan_showcase {
    padding: 7rem 0;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.plan_showcase::before {
    height: 400px;
    top: -150px;
    filter: blur(30px);
    right: -100px;
    opacity: 0.6;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    width: 400px;
    animation: float 15s ease-in-out infinite alternate;
    background: linear-gradient(135deg, rgb(169,170,169,0.5), transparent);
    content: '';
    position: absolute;
    z-index: 1;
}

.plan_showcase .container {
    max-width: 1200px;
    padding: 0 15px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}

.plan_showcase .rate_plans {
    transform: translateY(20px);
    margin-bottom: 3rem;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    text-align: center;
    opacity: 0;
}

.plan_showcase .rate_plans h2::after {
    width: 80px;
    transform: translateX(-50%);
    left: 50%;
    content: '';
    bottom: -10px;
    height: 3px;
    position: absolute;
    background: rgb(169,170,169);
}

.plan_showcase .promo_rates {
    display: block;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out 0.4s forwards;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    opacity: 0;
}

.plan_showcase .promo_rates:hover {
    transform: translateY(-10px);
}

.plan_showcase .promo_rates:hover .cert_cost {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 
                0 10px 20px rgba(0, 0, 0, 0.08);
}

.plan_showcase .fee_board {
    position: relative;
    flex-grow: 1;
    z-index: 2;
    padding: 2.5rem 2rem;
    flex-direction: column;
    display: flex;
}

.plan_showcase .promo_rates:hover .fee_board h3 {
    color: rgb(169,170,169);
}

.plan_showcase .price_tiers {
    display: inline-block;
    position: relative;
    font-weight: 700;
    padding-bottom: 10px;
    color: rgb(169,170,169);
    font-size: calc(20px + 4px);
    margin-bottom: 1.5rem;
}

.plan_showcase .promo_rates:hover .price_tiers::after {
    width: 80px;
}

.plan_showcase .fee_board p {
    line-height: 1.6;
    color: #000000;
    white-space: normal;
    word-wrap: break-word;
    margin-bottom: 2rem;
    overflow-wrap: break-word;
    hyphens: auto;
    flex-grow: 1;
    font-size: 18px;
}

.plan_showcase .promo_rates:hover .lightbox_img::after {
    opacity: 1;
}

.thanksFocus {
    background: linear-gradient(135deg, rgb(207,207,181) 0%, rgba(255,255,255,0.95) 100%);
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
}

.thanksFocus::after {
    filter: blur(70px);
    content: "";
    position: absolute;
    z-index: 0;
    opacity: 0.25;
    background: linear-gradient(145deg, rgb(169,170,169,0.5), rgb(126,127,128,0.5));
    height: 50%;
    right: -5%;
    top: -10%;
    width: 30%;
    animation: floatGlow 15s ease-in-out infinite alternate;
}

.thanksFocus .container {
    z-index: 2;
    position: relative;
    max-width: 1200px;
    transform: translateZ(0);
    padding: 0 1.5rem;
    margin: 0 auto;
}

.thanksFocus h2 {
    text-align: center;
    font-family: Arial, sans-serif;
    color: #000000;
    position: relative;
    margin-bottom: 3rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-size: 35px;
    font-weight: 700;
    transform: perspective(1000px) translateZ(0);
}

.thanksFocus:hover h2::after {
    transform: translateX(-50%) scaleX(1);
}

.thanksFocus .mastery_zone {
    border: 1px solid rgba(rgba(0, 0, 0, 0.5), 0.08);
    position: relative;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 10px 30px -10px rgba(rgba(0, 0, 0, 0.5), 0.1),
        0 1px 4px rgba(rgba(0, 0, 0, 0.5), 0.05);
    background: #ffffff;
    transform: translateY(0);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), 
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.thanksFocus:hover .mastery_zone {
    box-shadow: 
        0 20px 40px -15px rgba(rgba(0, 0, 0, 0.5), 0.15),
        0 1px 6px rgba(rgba(0, 0, 0, 0.5), 0.07);
    transform: translateY(-5px);
}

.thanksFocus li {
    position: relative;
    z-index: 2;
}

.thanksFocus:hover li::before {
    opacity: 0.5;
    transform: scale(1.2);
}

.thanksFocus span {
    transition: color 0.3s ease;
    display: block;
    position: relative;
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    font-family: Arial, sans-serif;
    padding: 0.5rem 0;
}

.thanksFocus span::first-letter {
    font-weight: 600;
    color: rgb(169,170,169);
    font-size: 1.5em;
}

.program_offerings::before {
    width: 100%;
    opacity: 0.6;
    position: absolute;
    height: 100%;
    z-index: 1;
    background: 
        radial-gradient(ellipse at 20% 30%, rgb(169,170,169,0.5) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgb(126,127,128,0.5) 0%, transparent 60%);
    content: "";
    left: 0;
    top: 0;
}



.program_offerings .container {
    position: relative;
    z-index: 2;
}

.program_offerings .mastery_zone {
    display: flex;
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.02), 
        rgba(255, 255, 255, 0.08)
    );
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    border-radius: 26px;
}

.program_offerings .lightbox_img {
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    top: 5%;
    width: 45%;
    right: 3%;
    animation: morphShape 15s infinite alternate ease-in-out;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    position: absolute;
    z-index: 2;
    height: 440px;
}

.program_offerings .lightbox_img::after {
    opacity: 0.2;
    position: absolute;
    content: "";
    z-index: 3;
    width: 100%;
    background-size: 20px 20px;
    top: 0;
    height: 100%;
    background: 
        linear-gradient(
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.1) 1px,
            transparent 1px
        );
    left: 0;
}

.program_offerings .nav_lesson svg path {
    stroke-dashoffset: 100;
    stroke-dasharray: 100;
    stroke: rgb(169,170,169);
    stroke-width: 0.5;
}

.program_offerings h3::after {
    left: 0;
    width: 60px;
    height: 3px;
    bottom: -10px;
    border-radius: 3px;
    transition: width 0.3s ease;
    background: linear-gradient(90deg, rgb(169,170,169), rgb(126,127,128));
    content: "";
    position: absolute;
}

.program_offerings .mastery_zone::after {
    filter: blur(80px);
    height: 200px;
    border-radius: 50%;
    width: 200px;
    background: rgb(126,127,128,0.5);
    z-index: 1;
    content: "";
    opacity: 0.3;
    bottom: -50px;
    position: absolute;
    left: -50px;
}


@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}


@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}



@media (max-width: 1200px) {.law_res .text_main_holder {
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}.law_res .subscribe_holder {
    grid-column: 1 / -1;
    margin-top: 2rem;
}.law_res .main_learning::after {
    display: none;
}
}



@media (max-width: 768px) {.law_res {
    padding: 4rem 0 2rem;
}.law_res .connect_team {
    padding: 1rem 1.5rem;
    transform: translateY(-2.5rem);
}.law_res .info_item {
    max-width: none;
    width: 100%;
}.law_res .main_mainwrap {
    grid-template-columns: repeat(2, 1fr);
}.law_res .mentor_cta {
    margin-top: 3rem;
}
}



@media (max-width: 576px) {.law_res {
    padding: 3rem 0 1.5rem;
}.law_res .connect_team {
    transform: translateY(-1.5rem);
    padding: 1rem;
}.law_res .info_item p,
    .law_res .info_item a {
    font-size: calc(13px - 1px);
}.law_res .main_mainwrap {
    grid-template-columns: 1fr;
    text-align: center;
}.law_res .main_mainwrap a:hover {
    transform: none;
}.law_res .main_mainwrap a::before {
    left: 50%;
    transform: translateX(-50%);
}.law_res .main_mainwrap a:hover::before {
    width: 30px;
}.law_res .input_holder {
    width: 100%;
}}


@media only screen and (max-width: 800px){.wrapper-bundle .consent_comply {
    margin-bottom: 14px;
    margin: 0;
}}



@media (max-width: 991px) {header .header_master {
    padding: 1.2rem 0;
    margin: 0.8rem 0;
}header .page_head {
    padding: 0 0 0.8rem 0;
}header .page_head svg {
    width: 160px;
}header .main_learning {
    padding: 0.8rem 1.5rem 0;
    gap: 0.6rem;
}header .nav_tutor {
    padding: 0.6rem 1.1rem;
}
}



@media (max-width: 480px) {header .header_master {
    margin: 0.5rem 0;
    padding: 0.8rem 0;
}header .page_head {
    padding: 0 0 0.6rem 0;
}header .page_head svg {
    width: 120px;
}header .main_learning {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.6rem 0.5rem 0;
}header .main_learning::-webkit-scrollbar {
    height: 3px;
}header .main_learning::-webkit-scrollbar-thumb {
    background: rgb(169,170,169);
    border-radius: 10px;
}header .nav_tutor {
    white-space: nowrap;
    margin-right: 3px;
    flex-shrink: 0;
}}



@media screen and (max-width: 768px) {.contact_sectionwJn {
    padding: 60px 0;
}.contact_sectionwJn h3 {
    font-size: calc(28px - 4px);
}.help_formY69 .help_reach,
    .help_formY69 .request_links {
    padding: 30px;
}.help_formY69 .help_reach h3,
    .help_formY69 .request_links h4 {
    font-size: calc(22px - 2px);
}.help_formY69 .help_reach input[type="text"],
    .help_formY69 .help_reach textarea {
    padding: 12px 15px;
}.help_formY69 .help_reach .inquiry_map {
    text-align: center;
    width: 100%;
}
}



@media (max-width: 992px) {.title_intro {
    height: 80vh;
}.title_intro .text_description {
    padding: 1.5rem;
    max-width: 600px;
}.title_intro .text_description h1 {
    margin-bottom: 1.2rem;
    font-size: 43px;
}.title_intro .text_description h1::after {
    width: 60px;
}.title_intro .text_description p {
    margin-bottom: 2rem;
}
}



@media (max-width: 576px) {.title_intro {
    height: 60vh;
    min-height: 500px;
}.title_intro .learn_first::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
}.title_intro .learn_front {
    animation: carousel-slide 20s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}.title_intro .text_description {
    padding: 1rem;
}.title_intro .text_description h1 {
    font-size: calc(43px * 0.9);
}.title_intro .text_description h1::after {
    width: 50px;
    height: 2px;
}.title_intro .text_description p {
    font-size: calc(15px * 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}.title_intro .text_description .inquiry_map {
    padding: 0.6rem 1.5rem;
    font-size: calc(16px * 0.95);
}
}



@media (max-width: 992px) {.our_background {
    padding: 80px 0;
}.our_background h2 {
    margin-bottom: 50px;
}.our_background .knowledge_growth {
    padding: 30px;
}
}



@media (max-width: 768px) {.our_background {
    padding: 60px 0;
}.our_background h2 {
    margin-bottom: 40px;
    font-size: calc(30px * 0.9);
}.our_background .knowledge_growth {
    padding: 25px;
}.our_background .knowledge_growth h3 {
    font-size: calc(20px * 0.9);
    margin-bottom: 15px;
}
}



@media (min-width: 768px) {.join_our_mailing_list {
    padding: 5rem 2rem;
}.join_our_mailing_list .mastery_zone {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3.5rem;
}.join_our_mailing_list h3 {
    margin: 0;
    padding-left: 1.5rem;
}.join_our_mailing_list .input_holder {
    flex-direction: row;
    margin-top: 0;
}.join_our_mailing_list .join_us {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}.join_our_mailing_list .get_started {
    border-top-left-radius: 0;
    align-self: stretch;
    border-bottom-left-radius: 0;
}
}



@media (max-width: 767px) {.join_our_mailing_list .mastery_zone {
    transform: none;
    border-left: none;
    border-top: 4px solid rgb(169,170,169);
}.join_our_mailing_list h3 {
    padding-top: 1.25rem;
    padding-left: 0;
}.join_our_mailing_list h3::before {
    height: 4px;
    top: 0;
    bottom: auto;
    width: 40px;
    transform: scaleX(0.7);
    left: 0;
}.join_our_mailing_list .mastery_zone:hover h3::before {
    transform: scaleX(1);
}}



@media (max-width: 992px) {.user_reviews {
    padding: 70px 0;
}.user_reviews h4 {
    margin-bottom: 60px;
}.user_reviews .user_quotes {
    width: 250px;
    margin: 0 15px;
    height: 350px;
    padding: 20px;
}.user_reviews .lightbox_img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}.user_reviews .user_quotes span {
    font-size: 13px;
}.user_reviews .user_quotes:nth-child(even) {
    margin-top: 20px;
}.user_reviews .user_quotes:nth-child(odd) {
    margin-top: -20px;
}
}



@media only screen and (max-width: 800px) {.privacy_haven {
    padding: 20px 10px;
}.privacy_haven h1 {
    font-size: calc(18px * 0.8);
}.privacy_haven h2 {
    font-size: calc(18px * 0.8);
}.privacy_haven h3, .privacy_haven h4, .privacy_haven h5, .privacy_haven h6 {
    font-size: calc(18px * 0.8);
}.privacy_haven p, .privacy_haven span, .privacy_haven div {
    font-size: calc(15px * 0.9);
}}



@media (max-width: 991px) {.plan_showcase {
    padding: 5rem 0;
}.plan_showcase .rate_plans {
    margin-bottom: 2rem;
}.plan_showcase .edu_rates {
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
}



@media (max-width: 767px) {.plan_showcase {
    padding: 4rem 0;
}.plan_showcase .fee_board {
    padding: 2rem 1.5rem;
}.plan_showcase .lightbox_img {
    height: 180px;
}
}



@media (max-width: 575px) {.plan_showcase {
    padding: 3rem 0;
}.plan_showcase .rate_plans h2 {
    font-size: calc(38px - 4px);
}.plan_showcase .edu_rates {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.plan_showcase .fee_board {
    padding: 1.5rem 1.25rem;
}.plan_showcase .lightbox_img {
    height: 160px;
}
}



@media (max-width: 991px) {.thanksFocus {
    padding: 4rem 0;
}.thanksFocus h2 {
    margin-bottom: 2.5rem;
    font-size: calc(35px * 0.9);
}.thanksFocus .mastery_zone {
    padding: 2.5rem 2rem;
}
}



@media (max-width: 575px) {.thanksFocus {
    padding: 3rem 0;
}.thanksFocus h2 {
    margin-bottom: 1.8rem;
    font-size: calc(35px * 0.7);
}.thanksFocus h2::after {
    width: 4rem;
}.thanksFocus .mastery_zone {
    padding: 1.5rem 1.25rem;
}.thanksFocus span {
    line-height: 1.5;
    font-size: calc(18px * 0.9);
}.thanksFocus li::before {
    left: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    top: -0.3rem;
}}



@media (max-width: 767px) {.program_offerings {
    padding: 60px 0;
}.program_offerings .skill_up {
    padding: 200px 30px 40px 30px;
}.program_offerings .lightbox_img {
    height: 180px;
}.program_offerings .nav_lesson {
    left: 30px;
    top: 140px;
}.program_offerings .nav_lesson svg {
    width: 60px;
}.program_offerings h3 {
    font-size: calc(35px * 0.8);
}.program_offerings p {
    font-size: calc(17px * 0.95);
}
}



@media (max-width: 480px) {.program_offerings {
    padding: 40px 0;
}.program_offerings .skill_up {
    padding: 180px 25px 30px 25px;
}.program_offerings .lightbox_img {
    height: 160px;
}.program_offerings .nav_lesson {
    left: 25px;
    top: 120px;
}.program_offerings .nav_lesson svg {
    width: 50px;
}.program_offerings h3 {
    margin-bottom: 15px;
    font-size: calc(35px * 0.7);
}.program_offerings p {
    font-size: calc(17px * 0.9);
}
}



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



@keyframes scale-pulse {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.1);
    }
}



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



@keyframes button-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(rgb(169,170,169,0.5), 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(rgb(169,170,169,0.5), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(rgb(169,170,169,0.5), 0);
    }
}

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



@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}



@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}



@keyframes patternShift {
    0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
    100% { background-position: 100px 100px, 100px 110px, 110px 90px, 90px 100px; }
}

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



@keyframes floatDots {
    0% {
        transform: translateY(0);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0.4;
    }
}

