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

* {
    scrollbar-width: thin;
    scrollbar-color: rgb(101,109,109) rgb(101,109,109,0.5);
}

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

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


.teacher_profile_lib {
    background: linear-gradient(170deg, rgb(171,178,178), #ffffff);
    overflow: hidden;
    position: relative;
    padding: 100px 0;
}

.teacher_profile_lib .review_experiences_lib {
    position: relative;
    padding: 50px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-radius: 13px;
    flex-direction: column;
    display: flex;
    max-width: 800px;
    background-color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.teacher_profile_lib .image_strip_lib {
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    position: relative;
    border-radius: 50%;
    align-self: center;
    height: 120px;
    width: 120px;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.teacher_profile_lib .career_story_lib::before {
    border-bottom: 10px solid rgb(171,178,178);
    top: -10px;
    content: "";
    border-left: 10px solid transparent;
    position: absolute;
    left: 30px;
    border-right: 10px solid transparent;
}

.teacher_profile_lib span:not(.name) {
    order: 2;
    letter-spacing: 1px;
    text-align: center;
    color: rgb(101,109,109);
    font-size: calc(16px * 0.9);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact_panel_lib::after {
    top: -50%;
    height: 200%;
    content: '';
    animation: circuit-pulse 10s infinite alternate;
    left: -50%;
    opacity: 0.6;
    background: radial-gradient(
        circle at center, 
        rgb(136,143,143,0.5) 0%, 
        transparent 70%
    );
    z-index: 2;
    width: 200%;
    position: absolute;
}

.contact_panel_lib h2::before,
.contact_panel_lib h2::after {
    position: absolute;
    background: linear-gradient(
        to right, 
        transparent, 
        rgb(136,143,143), 
        transparent
    );
    height: 2px;
    content: '';
    bottom: -0.5rem;
}

.contact_panel_lib h2::before {
    left: 0;
    width: 30%;
}

.contact_panel_lib .image_strip_lib::before {
    mix-blend-mode: color-dodge;
    background: linear-gradient(
        135deg, 
        rgb(136,143,143,0.5) 0%, 
        rgb(101,109,109,0.5) 100%
    );
    top: 0;
    height: 100%;
    opacity: 0.7;
    left: 0;
    content: '';
    width: 100%;
    position: absolute;
}

.contact_panel_lib .feedback_section_lib h3 {
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 30px;
}

.contact_panel_lib .feedback_section_lib input:not([type="checkbox"]):not([type="submit"]):focus {
    border-color: rgb(136,143,143);
    box-shadow: 0 0 15px rgb(136,143,143,0.5);
}

.contact_panel_lib .feedback_section_lib input:not([type="checkbox"]):not([type="submit"]):focus::before {
    opacity: 1;
}

.contact_panel_lib .feedback_section_lib .feedback_info_lib input[type="checkbox"] {
    margin-right: 1rem;
    cursor: pointer;
    height: 22px;
    border-radius: 10px;
    appearance: none;
    position: relative;
    background: rgb(101,109,109,0.5);
    border: 2px solid rgb(136,143,143,0.5);
    width: 22px;
    transition: all 0.3s ease;
}

.contact_panel_lib .feedback_section_lib .feedback_info_lib a {
    color: rgb(136,143,143);
    transition: color 0.3s ease;
    margin-left: 0.3rem;
    text-decoration: none;
}

.contact_panel_lib .feedback_section_lib .connect_inquiry_lib:hover::before {
    left: 100%;
}

.contact_panel_lib .feedback_section_lib .connect_inquiry_lib:hover {
    box-shadow: 0 10px 20px rgb(136,143,143,0.5);
    transform: translateY(-3px);
}

.client_feedback_lib::before {
    content: "";
    top: 0;
    z-index: 0;
    left: 0;
    width: 100%;
    position: absolute;
    opacity: 0.07;
    background: 
        radial-gradient(circle at 20% 30%, rgb(136,143,143,0.5) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgb(101,109,109,0.5) 0%, transparent 20%);
    height: 100%;
}

.client_feedback_lib h2:hover::after {
    transform: scaleX(1.2);
}

.client_feedback_lib .training_classes_lib {
    position: relative;
    overflow: visible;
}

.client_feedback_lib .rating_views_lib {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    gap: 2.5rem;
    position: relative;
}

.client_feedback_lib .review_experiences_lib:hover {
    box-shadow: 0 15px 40px rgba(var(--primary-color-rgb), 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-10px);
}

.client_feedback_lib .review_experiences_lib:nth-child(3n) {
    border-left: 3px solid rgb(101,109,109);
}

.client_feedback_lib .review_experiences_lib div {
    border: 2px solid rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    margin-top: auto;
    height: 3.5rem;
    width: 3.5rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
    transform: rotate(-3deg);
    position: relative;
}

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

.price_set_lib h2::after {
    border-radius: 3px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgb(101,109,109), rgb(136,143,143));
    position: absolute;
    content: "";
    left: 50%;
    bottom: -10px;
}

.price_set_lib .cost_matrix_lib li {
    transition: transform 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.price_set_lib .pricing_deals_lib {
    padding: 30px 25px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.price_set_lib .skill_plans_lib {
    z-index: 2;
    position: relative;
}

.price_set_lib .package_pricing_lib h4 {
    margin-top: 0;
    color: #ffffff;
    transition: transform 0.3s ease;
    font-size: calc(24px - 2px);
    margin-bottom: 20px;
    position: relative;
}

.price_set_lib .package_pricing_lib p {
    margin-bottom: 25px;
    font-size: 13px;
    word-break: normal;
    max-height: 250px;
    overflow-y: auto;
    hyphens: auto;
    overflow-wrap: break-word;
    padding-right: 10px;
    line-height: 1.6;
    color: rgb(255, 255, 255, 0.5);
}

.price_set_lib .package_pricing_lib:hover {
    transform: translateY(-5px);
    box-shadow: 
    7px 7px 20px rgba(0, 0, 0, 0.3),
    -7px -7px 20px rgba(255, 255, 255, 0.07),
    inset 3px 3px 10px rgba(255, 255, 255, 0.05),
    inset -3px -3px 10px rgba(0, 0, 0, 0.1);
}

.price_set_lib .package_pricing_lib:hover .price_opts_lib {
    box-shadow: 
    3px 3px 12px rgba(0, 0, 0, 0.15),
    -3px -3px 12px rgba(255, 255, 255, 0.07);
    transform: translateY(-3px) scale(1.03);
}

.cookie_dialog_notice_lib .track_toggle_lib svg {
    width: 60px;
    height: 60px;
    fill: rgb(136,143,143);
}

.cookie_dialog_notice_lib .visitor_confirm_lib {
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 15px;
    font-size: 14px;
    background-color: rgb(136,143,143);
    margin-top: 20px;
    color: #ffffff;
}

.launch_now_lib::before {
    left: 0;
    z-index: 1;
    content: '';
    height: 100%;
    position: absolute;
    opacity: 0.1;
    width: 100%;
    top: 0;
    background: repeating-linear-gradient(
        45deg,
        rgb(136,143,143,0.5),
        rgb(136,143,143,0.5) 10px,
        transparent 10px,
        transparent 20px
    );
}

.launch_now_lib h3::after {
    border-radius: 10px;
    width: 80px;
    height: 4px;
    left: 50%;
    content: '';
    box-shadow: 0 0 15px rgb(101,109,109);
    background: rgb(101,109,109);
    transform: translateX(-50%);
    position: absolute;
    bottom: -15px;
}

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

.data_summary_lib {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 8rem 0;
    background: rgb(171,178,178);
}

.data_summary_lib::before {
    background-size: 100% 100%, 200% 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, transparent, rgb(136,143,143,0.5), transparent) 0 0,
        linear-gradient(to right, transparent, transparent, rgba(255,255,255,0.05), transparent, transparent) 0 0;
    width: 100%;
    opacity: 1;
    content: "";
    position: absolute;
    left: 0;
    z-index: -1;
    top: 0;
    animation: backgroundSweep 8s infinite ease-in-out;
}

.data_summary_lib h2::after {
    background: linear-gradient(90deg, transparent, rgb(136,143,143), transparent);
    left: -10%;
    border-radius: 10px;
    height: 8px;
    width: 120%;
    bottom: -20px;
    position: absolute;
    content: "";
    opacity: 0.3;
}



.data_summary_lib .growth_statistics_lib {
    padding: 2rem 1rem;
    transition: all 0.4s ease;
    animation: slideIn 0.5s forwards;
    flex: 0 0 20%;
    background: linear-gradient(to bottom, transparent, rgba(rgb(136,143,143), 0.02), transparent);
    opacity: 0;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    display: flex;
    height: 0;
}

.data_summary_lib .growth_statistics_lib:nth-child(7) {
    animation-delay: 0.7s;
}

.data_summary_lib .growth_statistics_lib:nth-child(10) {
    animation-delay: 1s;
}

.data_summary_lib .growth_statistics_lib::after {
    width: 80%;
    content: "";
    z-index: -1;
    position: absolute;
    left: 10%;
    bottom: -5px;
    background: linear-gradient(90deg, transparent, rgb(136,143,143,0.5), transparent);
    transition: all 0.3s ease;
    opacity: 0.1;
    height: 2px;
}

.data_summary_lib .growth_statistics_lib:nth-child(odd) p {
    color: rgb(136,143,143);
}

.data_summary_lib .growth_statistics_lib:nth-child(even) p {
    color: rgb(101,109,109);
}

.data_summary_lib .growth_statistics_lib:hover p {
    transform: translateY(-5px);
}

.data_summary_lib::after {
    background-size: 200% 1px, 200% 1px;
    position: absolute;
    z-index: -1;
    opacity: 0.15;
    background-image: 
        linear-gradient(90deg, transparent, rgb(136,143,143,0.5) 50%, transparent 100%),
        linear-gradient(90deg, transparent, rgb(101,109,109,0.5) 50%, transparent 100%);
    background-position: 0% 100%, 100% 85%;
    left: 0;
    width: 100%;
    content: "";
    background-repeat: repeat-x;
    bottom: 0;
    height: 40%;
    animation: lineSweep 10s infinite linear;
}

.data_summary_lib .growth_statistics_lib:nth-child(6) p::before {
    background: rgb(101,109,109);
    content: "06";
}

.data_summary_lib .growth_statistics_lib:nth-child(9) p::before {
    background: rgb(136,143,143);
    content: "09";
}

.about_this_lib::before {
    left: 0;
    opacity: 0.85;
    background: linear-gradient(135deg, rgb(136,143,143,0.5), rgb(101,109,109,0.5));
    content: "";
    z-index: -1;
    position: absolute;
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.1);
    width: 100%;
    top: 0;
    height: 100%;
}

.about_this_lib h2::after {
    background: rgb(101,109,109);
    bottom: -12px;
    content: "";
    left: 0;
    transform-origin: left;
    box-shadow: 0 2px 10px rgb(101,109,109,0.5);
    height: 4px;
    animation: lineExpand 1.2s 0.3s forwards cubic-bezier(0.17, 0.67, 0.31, 0.95);
    transform: scaleX(0);
    position: absolute;
    width: 80px;
}

.about_this_lib .textual_box_lib > div {
    position: relative;
    padding: 35px;
}

.about_this_lib .textual_box_lib p {
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: calc(14px * 1.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    color: #ffffff;
}

.about_this_lib .textual_box_lib div div {
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    column-rule: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.8;
    font-size: 14px;
    color: #ffffff;
    column-gap: 40px;
    column-count: 1;
    opacity: 0.95;
    z-index: 2;
}

.forum_link_lib .info_item {
    padding: 0.5rem;
    transition: transform 0.3s ease-out;
}

.forum_link_lib .info_item:hover {
    transform: translateX(5px);
}

.forum_link_lib .info_item p,
.forum_link_lib .info_item a {
    font-size: 18px;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.forum_link_lib .nav_top_lib svg:hover {
    opacity: 0.8;
}

.forum_link_lib .main_page_lib {
    gap: 1.5rem;
    flex-direction: column;
    display: flex;
}

.forum_link_lib .top_edu_lib a {
    padding-left: 0;
    color: #000000;
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: 18px;
    text-decoration: none;
}

.forum_link_lib .subscribe_holder {
    display: flex;
    background-color: #ffffff;
    flex-direction: column;
    padding: 2rem;
    border-radius: 17px;
    gap: 1.5rem;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.forum_link_lib .input_holder input[type="email"] {
    padding: 1rem 1.25rem;
    border: 1px solid rgb(101,109,109,0.5);
    font-size: 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: #000000;
    flex: 1;
    border-radius: 10px;
    background-color: transparent;
}

.forum_link_lib .collab_space_lib {
    font-size: 12px;
    color: #000000;
    opacity: 0.8;
}

.forum_link_lib .top_edu_lib:first-child {
    position: relative;
    margin-bottom: 1.5rem;
}

.primary_page_lib .training_classes_lib {
    height: 100%;
    position: relative;
    grid-template-rows: auto auto;
    display: grid;
    margin: 0 auto;
    max-width: 1400px;
    padding: 2rem;
    grid-template-columns: 1fr;
}

.primary_page_lib .training_classes_lib {
    gap: 2rem;
    grid-template-rows: auto;
    align-items: center;
    height: 100vh;
    padding: 3rem;
    grid-template-columns: 1fr 1fr;
}

.primary_page_lib h1::after {
    background: linear-gradient(90deg, rgb(136,143,143) 0%, rgb(101,109,109) 100%);
    animation: expandLine 0.5s ease-out 0.8s forwards;
    left: 0;
    bottom: -8px;
    transform: scaleX(0);
    transform-origin: left center;
    content: "";
    height: 3px;
    position: absolute;
    width: 60px;
}

.primary_page_lib .main_home_lib svg text {
    fill: rgb(136,143,143);
    opacity: 0;
    animation: fadeInText 1s ease-out 1.5s forwards;
}

.primary_page_lib .main_home_lib p {
    position: relative;
    line-height: 1.6;
    color: #000000;
    max-width: 550px;
    margin-bottom: 2rem;
    font-size: clamp(1rem, 2vw, 13px);
    padding-left: 12px;
}

.primary_page_lib .connect_inquiry_lib {
    box-shadow: 0 4px 15px rgba(94,170,168,0.3);
    font-size: 14px;
    background: linear-gradient(135deg, rgb(136,143,143) 0%, rgb(101,109,109) 100%);
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    color: #ffffff;
    transform: translateZ(0);
    position: relative;
}

.primary_page_lib .image_strip_lib::before {
    position: absolute;
    content: "";
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
    right: 0;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(94,170,168,0.4) 0%, rgba(94,170,168,0) 50%);
    bottom: 0;
}

.secure_safekeeping_lib {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    color: #000000;
    padding: 60px;
}

.secure_safekeeping_lib ul,
.secure_safekeeping_lib ol {
    padding: 0 0 0 20px;
    z-index: 2;
    margin: 20px 0;
    position: relative;
}

.secure_safekeeping_lib ul {
    list-style-type: disc;
}

.secure_safekeeping_lib > div {
    background-color: rgb(171,178,178);
    padding: 30px;
    z-index: 2;
    border: 1px solid rgb(136,143,143,0.5);
    position: relative;
    border-radius: 10px;
}

.secure_safekeeping_lib::after {
    right: -150px;
    width: 300px;
    height: 300px;
    bottom: -150px;
}

.program_overview_lib::before {
    width: 100%;
    position: absolute;
    background: linear-gradient(135deg, rgb(136,143,143,0.5) 0%, transparent 50%, rgb(101,109,109,0.5) 100%);
    z-index: 1;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
}

.program_overview_lib .textual_box_lib::before {
    height: 4px;
    left: 0;
    content: "";
    background: linear-gradient(90deg, rgb(136,143,143), rgb(101,109,109));
    width: 80px;
    border-radius: 10px;
    top: -20px;
    position: absolute;
}

.program_overview_lib .textual_box_lib .description:last-child {
    border-radius: 28px;
    color: #ffffff;
    backdrop-filter: blur(5px);
    margin-top: 30px;
    padding: 30px 40px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    border-left: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program_overview_lib .image_strip_lib::after {
    position: absolute;
    height: 40%;
    bottom: 0;
    right: 0;
    width: 80%;
    content: "";
    background: linear-gradient(225deg, rgb(101,109,109,0.5) 0%, transparent 100%);
    z-index: 1;
}



.program_overview_lib .textual_box_lib::after {
    border-radius: 50%;
    content: "";
    animation: rotateAnimation 30s infinite linear reverse;
    right: -60px;
    height: 100px;
    position: absolute;
    top: -40px;
    width: 100px;
    border: 2px dashed rgb(136,143,143,0.5);
    z-index: -1;
}

.program_overview_lib .textual_box_lib .description:last-child::before {
    width: 100%;
    left: 0;
    top: 0;
    filter: brightness(0.5) contrast(1.2);
    content: "";
    position: absolute;
    background-size: cover;
    border-radius: 28px;
    height: 100%;
    background-position: center;
    z-index: -1;
}

.program_overview_lib .textual_box_lib h2::after {
    border-radius: 50%;
    top: -15px;
    height: 30px;
    background-color: rgb(136,143,143,0.5);
    position: absolute;
    z-index: -1;
    filter: blur(15px);
    content: "";
    left: -15px;
    width: 30px;
}

header .nav_top_lib {
    position: relative;
    flex: 0 0 auto;
    margin-right: 2rem;
    padding: 0.5rem;
    overflow: visible;
}

header .nav_top_lib:hover::before {
    opacity: 0;
}

header .nav_top_lib:hover::after {
    opacity: 0.5;
    animation: neonPulse 1.5s infinite alternate;
}



header .nav_class_lib {
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

header .header_top_lib {
    position: relative;
    margin: 0 0.4rem;
}

header .header_top_lib a {
    z-index: 1;
    align-items: center;
    font-size: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    padding: 0 1.2rem;
    display: flex;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    text-decoration: none;
    justify-content: center;
    font-weight: 600;
    position: relative;
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff;
}

header .head_learning_lib::after {
    content: '';
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    bottom: 0;
    position: absolute;
    height: 1px;
}

.program_assets_lib::after {
    right: -50%;
    height: 100%;
    position: absolute;
    top: -50%;
    content: '';
    transform: rotate(45deg);
    opacity: 0.05;
    z-index: 0;
    width: 100%;
    background: linear-gradient(45deg, transparent 45%, rgb(136,143,143,0.5) 100%);
}

.program_assets_lib .image_strip_lib {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 400px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.15);
    transform: perspective(1000px) rotateY(-2deg);
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    width: 100%;
}

.program_assets_lib .image_strip_lib {
    transform: perspective(1200px) rotateY(-8deg);
}

.program_assets_lib ul {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    list-style: none;
    display: grid;
    padding: 0;
}

.program_assets_lib ul {
    grid-template-columns: repeat(2, 1fr);
}

.program_assets_lib li:hover {
    transform: translateX(5px);
}

.program_assets_lib li:hover svg {
    transform: scale(1.15);
}

.program_assets_lib svg path {
    transition: fill 0.3s ease;
    fill: rgb(136,143,143);
}

.gratFrame_lib {
    background: linear-gradient(135deg, rgb(171,178,178) 0%, rgb(136,143,143,0.5) 100%);
    overflow: hidden;
    position: relative;
    padding: 7rem 0;
    z-index: 1;
}

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

.gratFrame_lib h2::after {
    bottom: -15px;
    left: 0;
    transform: scaleX(1);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left center;
    content: "";
    height: 4px;
    width: 120px;
    position: absolute;
    background: linear-gradient(90deg, rgb(136,143,143) 0%, rgb(101,109,109) 100%);
}

.gratFrame_lib ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.gratFrame_lib li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.gratFrame_lib li::before {
    transform: scale(0);
    top: 0.5rem;
    animation: pulseIn 0.3s 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    background: rgb(136,143,143);
    content: "";
    height: 6px;
    position: absolute;
    width: 6px;
    border-radius: 50%;
    left: 0;
}


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



@media (max-width: 768px) {.teacher_profile_lib {
    padding: 70px 0;
}.teacher_profile_lib .review_experiences_lib {
    padding: 40px 30px;
}
}



@media (max-width: 576px) {.teacher_profile_lib {
    padding: 50px 0;
}.teacher_profile_lib .review_experiences_lib {
    padding: 30px 20px;
}.teacher_profile_lib .career_story_lib {
    padding: 15px 20px;
    margin-top: 20px;
}}



@media screen and (max-width: 1024px) {.contact_panel_lib .inquiry_section_lib {
    flex-direction: column;
    transform: none;
}.contact_panel_lib .image_strip_lib {
    min-height: 300px;
    flex: 0 0 100%;
}.contact_panel_lib .feedback_section_lib {
    padding: 3rem 2rem;
    flex: 0 0 100%;
}
}



@media screen and (max-width: 768px) {.contact_panel_lib {
    padding: 3rem 0;
}.contact_panel_lib h2 {
    font-size: calc(39px * 0.8);
    margin-bottom: 2rem;
}.contact_panel_lib .feedback_section_lib h3 {
    font-size: calc(30px * 0.9);
}.contact_panel_lib .feedback_section_lib input:not([type="checkbox"]):not([type="submit"]) {
    padding: 0.8rem 1.2rem;
    margin-bottom: 1rem;
}.contact_panel_lib .feedback_section_lib .feedback_info_lib {
    align-items: flex-start;
}.contact_panel_lib .feedback_section_lib .feedback_info_lib input[type="checkbox"] {
    margin-top: 0.2rem;
}
}



@media (min-width: 1200px) {.client_feedback_lib h2 {
    transform: translateX(6vw);
    margin-bottom: 5rem;
}.client_feedback_lib .rating_views_lib {
    gap: 2.5rem;
}.client_feedback_lib .review_experiences_lib {
    height: calc(100% - 20px);
}.client_feedback_lib .review_experiences_lib:nth-child(1) {
    transform: translateY(0);
}.client_feedback_lib .review_experiences_lib:nth-child(2) {
    transform: translateY(40px);
}.client_feedback_lib .review_experiences_lib:nth-child(3) {
    transform: translateY(20px);
}.client_feedback_lib .review_experiences_lib:nth-child(4) {
    transform: translateY(60px);
}.client_feedback_lib .review_experiences_lib:nth-child(5) {
    transform: translateY(10px);
}.client_feedback_lib .review_experiences_lib:nth-child(6) {
    transform: translateY(50px);
}.client_feedback_lib .review_experiences_lib:nth-child(7) {
    transform: translateY(30px);
}.client_feedback_lib .review_experiences_lib:hover {
    transform: translateY(calc(var(--translateY) - 15px));
}
}


@media (max-width: 768px) {.cookie_dialog_notice_lib .track_toggle_lib {
    margin-right: 0;
    margin-bottom: 15px;
}.cookie_dialog_notice_lib .visitor_confirm_lib {
    margin-left: 0;
    text-align: center;
    width: 48%;
}}



@media screen and (max-width: 992px) {.launch_now_lib {
    padding: 60px 0;
}.launch_now_lib h3 {
    font-size: calc(35px * 0.9);
    margin-bottom: 30px;
}.launch_now_lib .training_classes_lib::after {
    bottom: -70px;
    height: 150px;
    width: 150px;
    right: -30px;
}
}




@media screen and (max-width: 1024px) {.data_summary_lib {
    padding: 6rem 0;
}.data_summary_lib ul {
    height: 350px;
}.data_summary_lib .growth_statistics_lib p {
    font-size: calc(48px * 1.2);
}
}



@media screen and (max-width: 480px) {.data_summary_lib {
    padding: 4rem 0;
}.data_summary_lib h2 {
    font-size: calc(36px * 0.8);
    margin-bottom: 3rem;
}.data_summary_lib ul {
    display: flex;
    flex-wrap: wrap;
}.data_summary_lib .growth_statistics_lib {
    margin-bottom: 2.5rem;
    flex: 0 0 100%;
    padding: 0;
}.data_summary_lib .growth_statistics_lib::before {
    display: none;
}.data_summary_lib .growth_statistics_lib:last-child {
    margin-bottom: 0;
}.data_summary_lib .growth_statistics_lib p {
    font-size: calc(48px * 1.1);
}.data_summary_lib .growth_statistics_lib:nth-child(n) {
    animation-delay: calc(0.1s * var(--n));
}}



@media (max-width: 1024px) {.forum_link_lib {
    padding: 4rem 0 2rem;
}.forum_link_lib .text_main_holder {
    gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
}.forum_link_lib .subscribe_holder {
    grid-column: span 2;
}
}



@media (max-width: 576px) {.forum_link_lib {
    padding: 3rem 0 1.5rem;
}.forum_link_lib .contact_faq_lib {
    grid-template-columns: 1fr;
}.forum_link_lib .input_holder {
    flex-direction: column;
}.forum_link_lib .sub_benefit_lib {
    width: 100%;
}.forum_link_lib .nav_top_lib,
    .forum_link_lib .main_page_lib h5,
    .forum_link_lib .top_edu_lib,
    .forum_link_lib .top_edu_lib a {
    text-align: center;
    align-items: center;
}.forum_link_lib .nav_top_lib svg {
    margin: 0 auto;
}.forum_link_lib .ranking_bar_lib {
    text-align: center;
    max-width: 100%;
}.forum_link_lib .top_edu_lib:first-child::after {
    transform: translateX(-50%);
    left: 50%;
}.forum_link_lib .contact_faq_lib::after {
    transform: translateX(-50%);
    left: 50%;
}.forum_link_lib .top_edu_lib a::before {
    display: none;
}.forum_link_lib .top_edu_lib a:hover {
    padding-left: 0;
}}



@media only screen and (max-width: 800px) {.secure_safekeeping_lib {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 30px;
}.secure_safekeeping_lib h1 {
    font-size: calc(24px * 0.8);
    grid-column: span 1;
}.secure_safekeeping_lib h2 {
    font-size: calc(24px * 0.8);
}.secure_safekeeping_lib ul,
    .secure_safekeeping_lib ol {
    padding-left: 15px;
}.secure_safekeeping_lib > div {
    padding: 20px;
}.secure_safekeeping_lib::before {
    width: 100px;
    left: -50px;
    top: -50px;
    height: 100px;
}.secure_safekeeping_lib::after {
    height: 150px;
    right: -75px;
    width: 150px;
    bottom: -75px;
}}



@media (max-width: 767px) {header {
    padding: 0;
}header .head_learning_lib {
    padding: 0.8rem 1.5rem;
}header .nav_top_lib {
    max-width: 140px;
}header .nav_top_lib::before, 
    header .nav_top_lib::after {
    bottom: -3px;
    right: -3px;
    top: -3px;
    left: -3px;
}header .nav_class_lib img {
    max-height: 35px;
}header .main_page_lib {
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    overflow-x: auto;
    margin-top: 0.8rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}header .main_page_lib::-webkit-scrollbar {
    height: 3px;
}header .main_page_lib::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
}header .header_top_lib {
    margin: 0 0.2rem;
    flex: 0 0 auto;
}header .header_top_lib a {
    height: 32px;
    padding: 0 0.8rem;
    font-size: calc(13px - 2px);
    white-space: nowrap;
}header .header_top_lib::after {
    display: none;
}
}



@media (max-width: 576px) {.gratFrame_lib {
    padding: 3.5rem 0;
}.gratFrame_lib .container {
    padding: 0 1.5rem;
}.gratFrame_lib h2 {
    font-size: calc(37px * 0.7);
    margin-bottom: 1.8rem;
}.gratFrame_lib h2::after {
    width: 80px;
    bottom: -12px;
}.gratFrame_lib .training_classes_lib {
    border-left-width: 4px;
    padding: 1.8rem 1.5rem;
}.gratFrame_lib li span {
    font-size: calc(13px * 0.9);
    line-height: 1.6;
}.gratFrame_lib li::before {
    width: 5px;
    height: 5px;
    top: 0.4rem;
}
}

@keyframes logoScale {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

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

@keyframes slideIn {
    to {
        height: auto;
        transform: translateY(0);
        opacity: 1;
    }
}



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



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



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



@keyframes rotateSvg {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}



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



@keyframes floatGlow {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, 30px);
    }
    100% {
        transform: translate(10px, -20px);
    }
}



@keyframes pulseAnimation {
    0% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.4;
    }
}

@keyframes rotateAnimation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


    
    @keyframes expand {
        0% { width: 0; }
        100% { width: 100px; }
    }



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



@keyframes pulseIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}

