.container {
    max-width: 100%;
    margin: auto;
    width: 1168px;
}

html,body {
    color: #000000;
    auto
contain
touch-action: none;
    auto
    scroll-behavior: smooth;
    min-height: 100%;
    height: 100%;
    scroll-snap-type: none;
    font-family: Arial, sans-serif;
}

.company_overview .text_item {
    border-left: 4px solid rgb(164,166,161);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    transform: perspective(1000px) rotateY(1deg);
    overflow: hidden;
}

.company_overview .text_item:hover h5::after {
    transform: scaleX(1);
}

.company_overview p {
    margin-bottom: 25px;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}

.company_overview ol {
    padding-left: 0;
    position: relative;
    margin-top: 30px;
}

.company_overview .text_item:hover ol::before {
    transform: scaleY(1);
}

.gratContent {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(204,201,182) 0%, rgb(164,166,161,0.5) 100%);
    position: relative;
    overflow: hidden;
}

.gratContent .container {
    padding: 0 2rem;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    transform: perspective(1000px) rotateX(2deg);
    z-index: 2;
}

.gratContent h2::after {
    bottom: -1rem;
    width: 6rem;
    transform: scaleX(0);
    left: 0;
    position: absolute;
    content: "";
    animation: expandLine 1s 0.5s forwards cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: left;
    background: linear-gradient(90deg, rgb(164,166,161) 0%, rgb(121,122,120) 100%);
    height: 0.3rem;
}

.confidential_asylum {
    display: flex;
    width: 100%;
    flex-direction: column;
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    padding: 60px;
    border: 2px solid #000000;
    background: #ffffff;
    align-items: center;
}

.confidential_asylum ul, .confidential_asylum ol {
    margin: 30px 0;
    list-style: none;
    border-bottom: 2px solid #000000;
    width: 100%;
    border-top: 2px solid #000000;
    padding: 20px 0;
    padding-left: 0;
    max-width: 800px;
}

.contact_box {
    padding: 90px 0;
    background: rgb(204,201,182);
    position: relative;
    overflow: hidden;
}

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

.contact_box .image_frame {
    position: relative;
    min-height: 550px;
    flex: 0 0 45%;
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
}

.contact_box #contact {
    flex-direction: column;
    gap: 25px;
    display: flex;
}

.contact_box input[type="text"] {
    border-left: 3px solid rgb(164,166,161);
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 0 10px 10px 0;
    border: none;
    font-size: 18px;
    color: #000000;
    background: rgb(204,201,182);
    padding: 15px 20px;
}

.contact_box .feedback_request input[type="checkbox"]:checked {
    background: rgb(164,166,161);
    border-color: rgb(164,166,161);
}

.contact_box .feedback_request a {
    transition: all 0.3s ease;
    position: relative;
    color: rgb(164,166,161);
    text-decoration: none;
}

.contact_box .feedback_request a:hover::after {
    background: rgb(121,122,120);
    height: 2px;
}

.contact_box .request_map:hover {
    background: rgb(121,122,120);
}

.contact_box .request_map:hover::after {
    height: 300%;
    width: 300%;
}

.contact_box svg path {
    fill: rgb(164,166,161);
    transition: all 0.3s ease;
}

.contact_box svg:hover path {
    fill: rgb(121,122,120);
}

.info_hub .container {
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    max-width: 1200px;
}

.info_hub .edu_coach {
    padding: 3rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 
                0 1px 3px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    display: grid;
    background: rgba(255, 255, 255, 0.95);
    grid-template-columns: 1fr;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: perspective(1000px) rotateX(2deg);
    gap: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.info_hub .instant_help:hover svg {
    transform: scale(1.1);
}

.info_hub svg path {
    transition: fill 0.3s ease;
    fill: #000000;
}

.title_screen {
    background: linear-gradient(135deg, rgb(121,122,120,0.5), rgba(0, 0, 0, 0.5));
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 100vh;
}

.title_screen {
    padding: 3rem 1rem;
}

.title_screen h1::before {
    position: absolute;
    width: 6px;
    animation: scaleVertical 0.5s 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    transform: scaleY(0);
    content: '';
    height: calc(100% - 1rem);
    background: rgb(164,166,161);
    border-radius: 3px;
    left: 0;
    top: 0.5rem;
    transform-origin: top;
}

.title_screen h1::before {
    left: 50%;
    width: 80px;
    height: 6px;
    transform-origin: center;
    bottom: 0;
    animation: scaleHorizontal 0.5s 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    top: auto;
    transform: translateX(-50%) scaleX(0);
}

.title_screen svg {
    height: 120px;
    filter: drop-shadow(0 4px 12px rgba(94, 170, 168, 0.3));
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    width: 120px;
}

.title_screen svg {
    width: 100px;
    height: 100px;
}

.title_screen .request_map {
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 1;
    background: rgb(164,166,161);
    font-size: 20px;
    transform: translateZ(0);
    box-shadow: 0 8px 25px rgba(94, 170, 168, 0.3),
                inset 0 1px 1px rgba(255, 255, 255, 0.3);
    display: inline-block;
    overflow: hidden;
    color: #ffffff;
    border-radius: 10px;
    position: relative;
}

.price_pack .fee_chart {
    display: flex;
    flex-direction: column;
}

.price_pack .annual_fee h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
    position: relative;
    display: inline-block;
}

.price_pack .bundle_offer {
    display: block;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
    color: #000000;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.price_pack .learning_plan .study_offers {
    font-size: calc(22px * 1.3);
    position: relative;
    color: rgb(164,166,161);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price_pack .image_frame::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    position: absolute;
}

.program_structure::before {
    content: '';
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    z-index: 1;
}

.program_structure .job_classes:hover img {
    transform: scale(1.2);
}

.program_structure .education_path {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 11px;
    background-color: #ffffff;
    backdrop-filter: blur(5px);
    position: relative;
    padding: 3rem;
    border-top: 4px solid rgb(164,166,161);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.program_structure .education_path .request_map:hover::before {
    opacity: 1;
}

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

#cookieWarningWindow {
    display: none;
}

.cookieNotificationBanner p {
    font-size: 18px;
}

.edu_cookie svg, .edu_cookie svg path, .edu_cookie img {
    width: 100px;
    fill: rgb(164,166,161);
    height: 100px;
}

.viewport-container .edu_cookie {
    width: 80px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    height: 80px;
    background:rgb(164,166,161);
    display: flex;
}

header .main_mainbar {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    transform: none;
    z-index: 5;
    justify-content: space-between;
    position: relative;
    flex-direction: row;
}

header .main_mainbar .nav_top::before {
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-2deg) scale(1.03);
    content: "";
    border-radius: 29px;
    z-index: -1;
}

.operation_process {
    background: linear-gradient(135deg, rgb(121,122,120,0.5) 0%, rgb(164,166,161) 100%);
    overflow: hidden;
    color: #ffffff;
    position: relative;
    padding: 100px 0;
}

.operation_process .container.knowledge_hub > div {
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    backdrop-filter: blur(10px);
    position: relative;
    transform: perspective(1000px) rotateY(-2deg);
    padding: 40px;
    border-left: 3px solid rgb(121,122,120);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
}

.operation_process .container.knowledge_hub > div:hover h3::after {
    transform: scaleX(1);
}

.operation_process .container.knowledge_hub > div:hover p span {
    opacity: 1;
    transform: translateY(0);
}

.teacher_profile::before {
    content: "";
    width: 100%;
    opacity: 0.04;
    left: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgb(164,166,161,0.5) 20px,
            rgb(164,166,161,0.5) 21px
        );
    top: 0;
    height: 100%;
    position: absolute;
}



.teacher_profile .image_frame {
    width: 240px;
    height: 240px;
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 50%;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 10px rgba(255, 255, 255, 0.1),
        0 0 0 20px rgba(255, 255, 255, 0.05);
    z-index: 5;
}

.teacher_profile .name::after {
    position: absolute;
    left: 50%;
    height: 2px;
    width: 0;
    background: linear-gradient(
        to right,
        rgb(164,166,161) 0%,
        rgb(121,122,120) 100%
    );
    transform: translateX(-50%);
    content: "";
    bottom: -8px;
    transition: width 0.4s ease;
}

.teacher_profile .career_table::before,
.teacher_profile .career_table::after {
    position: absolute;
    width: 10px;
    content: "";
    height: 10px;
}

.teacher_profile .career_table::before {
    border-left: 2px solid rgb(164,166,161);
    left: 25px;
    border-top: 2px solid rgb(164,166,161);
    top: 25px;
}

footer::before {
    z-index: -1;
    opacity: 0.92;
    left: 0;
    content: "";
    bottom: 0;
    background: linear-gradient(135deg, rgb(164,166,161,0.5) 0%, rgb(121,122,120,0.5) 100%);
    right: 0;
    position: absolute;
    top: 0;
}

.event_cal .company_holder h3 {
    font-weight: 700;
    font-size: 33px;
    transform: skewX(-10deg);
    padding-bottom: 1rem;
    position: relative;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1.5rem;
}

.event_cal .nav_top h5 {
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 1.5rem;
    padding-left: 1rem;
    transform: skewX(-5deg);
    color: #ffffff;
    position: relative;
}

.event_cal .nav_top .nav_begin a:hover {
    padding-left: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: skewX(-5deg) translateX(5px);
}

.template_cta .container {
    align-items: center;
    flex-wrap: wrap;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.newsletter_subscription .knowledge_hub {
    margin: 0 auto;
    z-index: 1;
    max-width: 1200px;
    position: relative;
}

.newsletter_subscription h3::after {
    content: ".";
    animation: blinkDot 1.5s infinite;
    color: rgb(164,166,161);
}

.newsletter_subscription input[type="email"]:focus {
    outline: none;
    border-bottom-color: rgb(164,166,161);
}

.newsletter_subscription input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.5);
    opacity: 0.7;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.newsletter_subscription .sub_texts:hover::before {
    width: 100%;
}

.newsletter_subscription::after {
    z-index: 0;
    background: rgb(204,201,182);
    right: 0;
    position: absolute;
    clip-path: polygon(0 0, 100% 25%, 100% 75%, 0 100%);
    animation: slideBg 1.2s 0.4s forwards cubic-bezier(0.25, 1, 0.5, 1);
    content: "";
    top: 20%;
    transform: translateX(50%);
    width: 30%;
    height: 60%;
}



@media (max-width: 992px) {.gratContent {
    padding: 4rem 0;
}.gratContent h2 {
    max-width: 100%;
    font-size: calc(32px * 0.9);
}.gratContent .knowledge_hub {
    padding: 2.5rem;
}.gratContent::before {
    width: 30%;
}
}



@media (max-width: 576px) {.gratContent {
    padding: 3rem 0;
}.gratContent h2 {
    font-size: calc(32px * 0.7);
    margin-bottom: 2rem;
}.gratContent h2::after {
    bottom: -0.75rem;
    height: 0.25rem;
    width: 5rem;
}.gratContent .knowledge_hub {
    padding: 1.5rem;
}.gratContent .container {
    transform: none;
    padding: 0 1.5rem;
}.gratContent::before {
    display: none;
}.gratContent li {
    padding-left: 1.5rem;
}.gratContent li::before {
    width: 0.5rem;
    height: 0.5rem;
    top: 0.4rem;
}.gratContent span {
    line-height: 1.7;
    font-size: calc(12px * 0.95);
}}



@media (hover: hover) {.info_hub .instant_help::after {
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    width: 0;
    height: 1px;
    left: 0;
    bottom: 0;
    content: "";
    background: rgb(164,166,161);
    position: absolute;
}.info_hub .instant_help:hover::after {
    width: 100%;
}
}



@media (min-width: 768px) {.title_screen .knowledge_hub {
    padding: 4rem 2rem;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}.title_screen h1 {
    padding-left: 2rem;
    margin-bottom: 1rem;
}.title_screen h1::before {
    width: 8px;
}.title_screen .text_item {
    padding: 3rem;
}.title_screen svg {
    height: 150px;
    width: 150px;
}.title_screen .request_map {
    padding: 1.2rem 3rem;
}
}



@media (max-width: 767px) {.price_pack {
    padding: 4rem 0;
}.price_pack .annual_fee h2 {
    font-size: calc(36px * 0.9);
}.price_pack .learning_plan h3 {
    font-size: 22px;
}.price_pack .learning_plan .study_offers {
    font-size: calc(22px * 1.15);
}.price_pack .image_frame {
    height: 160px;
}
}



@media screen and (max-width: 768px) {.program_structure .learn_more {
    height: 350px;
}.program_structure .container {
    padding: 3rem 1.5rem;
}.program_structure .education_path {
    padding: 2rem;
}.program_structure .education_path h3 {
    font-size: calc(36px * 0.9);
}
}


@media only screen and (max-width: 800px){.viewport-container .edu_cookie {
    margin: 0;
    margin-bottom: 14px;
}}



@media (max-width: 992px) {header .main_mainbar {
    align-items: center;
    flex-direction: column;
}header .main_mainbar .first_pagebar {
    margin-bottom: 15px;
    margin-right: 0;
}header .main_mainbar .nav_top {
    padding: 15px;
    justify-content: center;
    width: 100%;
}header .main_mainbar .nav_top .nav_teach {
    margin: 5px 15px 5px 0;
}header .main_mainbar .nav_top .nav_teach a {
    padding: 5px;
    font-size: calc(12px - 2px);
}}



@media (max-width: 991px) {.teacher_profile {
    padding: 90px 0;
}.teacher_profile .image_frame {
    margin-bottom: 25px;
    width: 200px;
    height: 200px;
}.teacher_profile .review_space::before {
    height: 400px;
    width: 400px;
}.teacher_profile .review_space::after {
    height: 320px;
    width: 320px;
}.teacher_profile .name {
    font-size: calc(44px * 0.9);
}.teacher_profile .career_table {
    padding: 30px 35px;
    max-width: 600px;
}
}



@media (max-width: 768px) {.event_cal {
    padding: 3.5rem 0 1.5rem;
}.event_cal::before {
    height: 10px;
}.event_cal .company_holder h3 {
    font-size: calc(33px - 2px);
}.event_cal .eng_center {
    transform: skewX(-3deg);
    padding: 1.2rem;
}.event_cal .nav_top h5, 
    .event_cal .nav_top .nav_begin a {
    transform: skewX(-3deg);
}.event_cal .nav_top .nav_begin a:hover {
    transform: skewX(-3deg) translateX(5px);
}.template_cta {
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}.template_cta .music_edu {
    transform: skewX(-3deg);
}
}



@media (max-width: 767px) {.newsletter_subscription {
    padding: 5rem 1.5rem;
}.newsletter_subscription .help_form {
    width: 100%;
}.newsletter_subscription .input_holder {
    gap: 2rem;
}.newsletter_subscription::after {
    height: 30%;
    top: 10%;
    width: 50%;
}
}



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



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

@keyframes scaleHorizontal {
        from {
            transform: translateX(-50%) scaleX(0);
        }
        to {
            transform: translateX(-50%) scaleX(1);
        }
    }



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



@keyframes slideBg {
    to {
        transform: translateX(0);
    }
}

