﻿* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}a {
    text-decoration: none;
    color: inherit;
}header,footer {
    width: 100%;
}svg {
    width: 30px;
    height: 30px;
}::-webkit-scrollbar {
    width: 17px;
    height: 15px;
}::-webkit-scrollbar-track {
    background: rgb(156,191,191,0.5);
}::-webkit-scrollbar-thumb {
    transition: box-shadow 4.8s ease-in-out;
    background: rgb(221,228,224);
    min-height: 92px;
    border-radius: 9999px;
    border: 2px double rgb(110,127,175,0.5);
}::-webkit-scrollbar-thumb:hover {
    box-shadow: -1px 2px 5px 8px rgba(0, 0, 0, 0.4);
    background: rgb(221,228,224);
    border-color: rgb(156,191,191);
}* {
    scrollbar-width: none;
    scrollbar-color: rgb(156,191,191,0.5) rgb(255, 255, 255, 0.5);
}html,body {
    font-family: Arial, sans-serif;
    height: 100%;
    scroll-behavior: smooth;
    min-height: 100%;
    color: #000000;
}.green_edukey {
    flex: 0 0 auto;
}.main_topkey {
    flex: 1 0 auto;
}.wrapper-borderkey {
    flex-direction: column;
    height: 100%;
    display: flex;
    min-height: 100%;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1186px;
}

@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.program_overviewkey {
    position: relative;
    background: linear-gradient(135deg, rgb(221,228,224) 0%, #ffffff 100%);
    padding: 7rem 0;
    overflow: hidden;
}.program_overviewkey::before {
    position: absolute;
    background: repeating-linear-gradient(
        45deg,
        rgb(156,191,191,0.5) 0px,
        rgb(156,191,191,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    opacity: 0.05;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    content: "";
    left: 0;
}.program_overviewkey::after {
    right: -5%;
    background: radial-gradient(circle, rgb(156,191,191,0.5) 0%, transparent 70%);
    opacity: 0.15;
    height: 30rem;
    width: 30rem;
    z-index: 0;
    top: -10%;
    content: "";
    position: absolute;
}.program_overviewkey .container {
    z-index: 1;
    padding: 0 1.5rem;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}.program_overviewkey h2 {
    line-height: 1.3;
    position: relative;
    opacity: 0;
    text-align: center;
    font-size: 35px;
    margin-bottom: 3rem;
    transform: translateY(20px);
    color: #000000;
    font-weight: 700;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}.program_overviewkey h2::after {
    left: 50%;
    bottom: -15px;
    border-radius: 10px;
    width: 80px;
    position: absolute;
    background: linear-gradient(90deg, rgb(156,191,191) 0%, rgb(110,127,175) 100%);
    transform: translateX(-50%);
    content: "";
    height: 4px;
}.program_overviewkey .training_guidekey {
    gap: 2.5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}.program_overviewkey .image_show_itemkey {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    height: 350px;
    transform: perspective(1000px) rotateY(-3deg);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}.program_overviewkey .image_show_itemkey::before {
    width: 100%;
    top: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    left: 0;
    position: absolute;
    height: 100%;
    z-index: 1;
    content: "";
}.program_overviewkey .image_show_itemkey::after {
    z-index: 2;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    position: absolute;
    animation: shimmer 6s infinite linear;
    top: -100%;
    width: 300%;
    height: 300%;
    content: "";
    left: -100%;
    transform: rotate(45deg);
}.program_overviewkey .text_info_boxkey {
    flex-direction: column;
    gap: 1.5rem;
    display: flex;
}.program_overviewkey .description {
    font-weight: 400;
    line-height: 1.7;
    padding: 0 0.5rem;
    transition: all 0.3s ease;
    color: #000000;
    position: relative;
    font-size: 18px;
}.program_overviewkey .description:first-of-type {
    padding-left: 1.25rem;
    position: relative;
    border-left: 3px solid rgb(156,191,191);
}.program_overviewkey .description:nth-of-type(2) {
    position: relative;
    border-right: 3px solid rgb(110,127,175);
    padding-right: 1.25rem;
}.program_overviewkey .description:first-of-type::before {
    left: -10px;
    top: 0;
    position: absolute;
    opacity: 0.2;
    content: "";
    background: rgb(156,191,191);
    width: 20px;
    height: 20px;
    border-radius: 50%;
}.program_overviewkey .description:nth-of-type(2)::after {
    opacity: 0.2;
    content: "";
    height: 20px;
    background: rgb(110,127,175);
    border-radius: 50%;
    bottom: 0;
    position: absolute;
    width: 20px;
    right: -10px;
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@media (min-width: 768px) {.program_overviewkey .training_guidekey {
    flex-direction: row;
    align-items: flex-start;
}.program_overviewkey .image_show_itemkey {
    flex: 0 0 45%;
    height: 450px;
}.program_overviewkey .text_info_boxkey {
    flex: 0 0 55%;
    padding-left: 2.5rem;
}.program_overviewkey .description {
    font-size: calc(18px + 0.05rem);
}.program_overviewkey h2 {
    margin-right: auto;
    max-width: 80%;
    margin-left: auto;
    font-size: calc(35px + 0.2rem);
}.program_overviewkey .image_show_itemkey:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
}

@media (min-width: 992px) {.program_overviewkey {
    padding: 9rem 0;
}.program_overviewkey .container {
    padding: 0 3rem;
}.program_overviewkey .image_show_itemkey {
    height: 500px;
}.program_overviewkey h2 {
    margin-bottom: 4rem;
}.program_overviewkey .description {
    font-size: calc(18px + 0.1rem);
}
}

@media (max-width: 767px) {.program_overviewkey {
    padding: 5rem 0;
}.program_overviewkey h2 {
    font-size: calc(35px - 0.2rem);
    margin-bottom: 2rem;
}.program_overviewkey .image_show_itemkey {
    height: 280px;
}.program_overviewkey .text_info_boxkey {
    gap: 1rem;
}.program_overviewkey .description {
    font-size: calc(18px - 0.1rem);
}}#cookie_popup_infokey {
    display: none;
}#cookie_popup_infokey:checked ~ .consentNotificationBoxkey {
    visibility: hidden;
    opacity: 0;
}.consentNotificationBoxkey {
    font-family: Arial, sans-serif;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 90;
    background: rgb(110,127,175);
    position: fixed;
    border-top: 3px solid rgb(156,191,191);
}.learn_prefskey {
    border: 2px dashed rgb(156,191,191);
    gap: 20px;
    padding: 20px 5%;
    border-radius: 21px;
    justify-content: space-between;
    align-items: center;
    display: flex;
    background: rgba(0, 0, 0, 0.5);
}.consentNotificationBoxkey h5 {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    letter-spacing: 1.5px;
    color: rgb(156,191,191);
    text-transform: uppercase;
}.consentNotificationBoxkey p {
    position: relative;
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
    color: #ffffff;
}.data_optkey {
    justify-content: center;
    display: flex;
    background: rgb(156,191,191,0.5);
    padding: 10px;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 21px;
}.data_optkey svg {
    height: 60px;
    fill: rgb(156,191,191);
    width: 60px;
}.online_cookieskey {
    background: rgb(156,191,191);
    text-align: center;
    min-width: 140px;
    text-decoration: none;
    margin-left: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgb(156,191,191);
    color: #000000;
    flex-shrink: 0;
    white-space: nowrap;
    cursor: pointer;
    font-size: 17px;
    line-height: 40px;
}.online_cookieskey:hover {
    background-color: rgb(110,127,175);
    box-shadow: 0 0 10px rgb(110,127,175);
}.cookie_button.user_trackerkey {
    color: #ffffff;
    border: 2px solid rgb(110,127,175);
    background: rgba(0, 0, 0, 0.5);
}.cookie_button.user_trackerkey:hover {
    box-shadow: 0 0 10px rgb(110,127,175);
}.consentNotificationBoxkey p a {
    border-bottom: 1px dashed rgb(156,191,191);
    color: rgb(156,191,191);
    text-decoration: none;
    transition: color 0.3s ease;
}.consentNotificationBoxkey p a:hover {
    color: rgb(110,127,175);
}
@media only screen and (max-width: 1200px) {.consentNotificationBoxkey {
    padding: 15px 0;
}.learn_prefskey {
    padding: 15px 5%;
}.data_optkey {
    display: none;
}.learn_prefskey {
    flex-direction: column;
    align-items: center;
    text-align: center;
}.consentNotificationBoxkey h5 {
    font-size: 18px;
    margin-bottom: 10px;
}.cookie_ruleskey {
    margin-bottom: 15px;
}.online_cookieskey {
    min-width: 100%;
    margin: 10px 0;
}}
.reach_outkey {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}.reach_outkey::before {
    background-color: rgba(0, 0, 0, 0.5);
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
}.reach_outkey::after {
    content: "";
    background: linear-gradient(45deg, 
        transparent 65%, 
        rgba(255, 255, 255, 0.08) 70%, 
        transparent 75%);
    animation: shine 8s linear infinite;
    position: absolute;
    left: -50%;
    width: 200%;
    z-index: 2;
    height: 200%;
    top: -50%;
}.reach_outkey .container {
    margin: 0 auto;
    z-index: 3;
    position: relative;
    max-width: 1200px;
    padding: 0 15px;
}.reach_outkey .support_feedbackkey {
    padding: 2rem;
    display: flex;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    gap: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.3));
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2), 
                0 5px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}.reach_outkey .support_feedbackkey::before {
    position: absolute;
    left: -50%;
    content: "";
    top: 0;
    height: 1px;
    width: 200%;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(156,191,191), 
        transparent);
}.reach_outkey .support_feedbackkey::after {
    width: 200%;
    right: -50%;
    content: "";
    background: linear-gradient(90deg, 
        transparent, 
        rgb(110,127,175), 
        transparent);
    position: absolute;
    bottom: 0;
    height: 1px;
}.reach_outkey .connect_requestkey {
    border-radius: 10px;
    background: linear-gradient(135deg, 
        rgb(156,191,191,0.5), 
        rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    transform: translateZ(0);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    backdrop-filter: blur(5px);
    overflow: hidden;
    flex: 1 1 300px;
}.reach_outkey .connect_requestkey::before {
    left: -50%;
    content: "";
    top: -50%;
    background: radial-gradient(
        circle at center, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 70%);
    animation: pulse 15s infinite linear;
    height: 200%;
    width: 200%;
    position: absolute;
    z-index: -1;
}.reach_outkey .connect_requestkey h3 {
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding-bottom: 1rem;
    font-size: 18px;
    font-weight: 600;
}.reach_outkey .connect_requestkey h3::after {
    width: 50px;
    box-shadow: 0 0 8px rgb(110,127,175);
    background: rgb(110,127,175);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
}.reach_outkey .connect_requestkey div {
    margin-bottom: 1.5rem;
    align-items: center;
    position: relative;
    display: flex;
    padding-left: 10px;
    transition: all 0.3s ease;
}.reach_outkey .connect_requestkey div:hover {
    transform: translateX(5px);
}.reach_outkey .connect_requestkey div::before {
    transition: height 0.3s ease;
    left: 0;
    width: 3px;
    content: "";
    position: absolute;
    top: 50%;
    height: 0;
    background: rgb(110,127,175);
}.reach_outkey .connect_requestkey div:hover::before {
    height: 80%;
    top: 10%;
}.reach_outkey .connect_requestkey div svg {
    flex-shrink: 0;
    width: 20px;
    margin-right: 15px;
    height: 20px;
}.reach_outkey .connect_requestkey div svg path {
    fill: rgb(110,127,175);
    transition: all 0.3s ease;
}.reach_outkey .connect_requestkey div:hover svg path {
    filter: drop-shadow(0 0 2px rgb(156,191,191));
    fill: rgb(156,191,191);
}.reach_outkey .connect_requestkey div span {
    font-size: calc(14px - 2px);
    letter-spacing: 0.5px;
    color: #ffffff;
}.reach_outkey .connect_requestkey div span a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}.reach_outkey .connect_requestkey div span a:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    color: rgb(110,127,175);
}.reach_outkey .help_infokey {
    backdrop-filter: blur(8px);
    overflow: hidden;
    flex: 1 1 400px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05), 
        rgba(0, 0, 0, 0.1));
    position: relative;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}.reach_outkey .help_infokey::before {
    border-radius: 50%;
    width: 200px;
    background: radial-gradient(
        circle, 
        rgb(156,191,191,0.5) 0%, 
        transparent 70%);
    content: "";
    right: -100px;
    top: -100px;
    height: 200px;
    position: absolute;
    opacity: 0.3;
}.reach_outkey .help_infokey form {
    display: flex;
    gap: 1.2rem;
    flex-direction: column;
}.reach_outkey .help_infokey h3 {
    position: relative;
    font-size: 19px;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}.reach_outkey .help_infokey h3::after {
    width: 50px;
    box-shadow: 0 0 8px rgb(110,127,175);
    height: 2px;
    left: 50%;
    content: "";
    bottom: -10px;
    transform: translateX(-50%);
    background: rgb(110,127,175);
    position: absolute;
}.reach_outkey .help_infokey input[type="text"],
.reach_outkey .help_infokey input[type="email"] {
    font-size: 14px;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    outline: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}.reach_outkey .help_infokey input[type="text"]:focus,
.reach_outkey .help_infokey input[type="email"]:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgb(156,191,191);
    box-shadow: 0 0 0 2px rgb(156,191,191,0.5);
}.reach_outkey .help_infokey input[type="text"]::placeholder,
.reach_outkey .help_infokey input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}.reach_outkey .help_infokey .help_sectionkey {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    margin: 0.5rem 0;
}.reach_outkey .help_infokey .help_sectionkey input[type="checkbox"] {
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin-top: 3px;
    transition: all 0.3s ease;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    appearance: none;
    flex-shrink: 0;
    -webkit-appearance: none;
    width: 18px;
    position: relative;
}.reach_outkey .help_infokey .help_sectionkey input[type="checkbox"]:checked {
    background: rgb(110,127,175);
    border-color: rgb(110,127,175);
}.reach_outkey .help_infokey .help_sectionkey input[type="checkbox"]:checked::before {
    top: 50%;
    font-size: 12px;
    position: absolute;
    left: 50%;
    content: "✓";
    color: #ffffff;
    transform: translate(-50%, -50%);
}.reach_outkey .help_infokey .help_sectionkey label {
    font-size: calc(14px - 2px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}.reach_outkey .help_infokey .help_sectionkey label a {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    color: rgb(110,127,175);
}.reach_outkey .help_infokey .help_sectionkey label a::after {
    height: 1px;
    transition: width 0.3s ease;
    width: 0;
    bottom: -2px;
    left: 0;
    content: "";
    background: rgb(110,127,175);
    position: absolute;
}.reach_outkey .help_infokey .help_sectionkey label a:hover::after {
    width: 100%;
}.reach_outkey .help_infokey .request_messagekey {
    cursor: pointer;
    background: linear-gradient(135deg, 
        rgb(156,191,191), 
        rgb(110,127,175));
    border-radius: 10px;
    overflow: hidden;
    padding: 12px 20px;
    border: none;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
}.reach_outkey .help_infokey .request_messagekey::before {
    position: absolute;
    transition: all 0.6s ease;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    content: "";
    width: 100%;
    left: -100%;
    top: 0;
    height: 100%;
}.reach_outkey .help_infokey .request_messagekey:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}.reach_outkey .help_infokey .request_messagekey:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@media screen and (max-width: 992px) {.reach_outkey {
    padding: 5rem 0;
}.reach_outkey .support_feedbackkey {
    flex-direction: column;
    gap: 2rem;
}.reach_outkey .connect_requestkey,
    .reach_outkey .help_infokey {
    flex: 1 1 100%;
}
}

@media screen and (max-width: 768px) {.reach_outkey {
    padding: 4rem 0;
}.reach_outkey .support_feedbackkey {
    padding: 1.5rem;
}.reach_outkey .connect_requestkey,
    .reach_outkey .help_infokey {
    padding: 1.5rem;
}.reach_outkey .connect_requestkey div svg {
    height: 18px;
    margin-right: 10px;
    width: 18px;
}.reach_outkey .connect_requestkey h3,
    .reach_outkey .help_infokey h3 {
    font-size: calc(19px - 2px);
}
}

@media screen and (max-width: 576px) {.reach_outkey {
    padding: 3rem 0;
}.reach_outkey .support_feedbackkey {
    padding: 1rem;
    gap: 1.5rem;
}.reach_outkey .connect_requestkey,
    .reach_outkey .help_infokey {
    padding: 1rem;
}.reach_outkey .connect_requestkey div {
    margin-bottom: 1rem;
}.reach_outkey .help_infokey form {
    gap: 1rem;
}.reach_outkey .help_infokey input[type="text"],
    .reach_outkey .help_infokey input[type="email"] {
    padding: 10px 12px;
}.reach_outkey .help_infokey .request_messagekey {
    padding: 10px 16px;
}}.education_historykey {
    overflow: hidden;
    position: relative;
    padding: 5rem 2rem;
    background: rgb(221,228,224);
    perspective: 1000px;
}.education_historykey::before {
    height: 100%;
    filter: blur(60px);
    top: 0;
    background: conic-gradient(
        from 45deg at 50% 50%,
        rgb(110,127,175,0.5) 0deg,
        rgb(156,191,191,0.5) 90deg,
        rgb(221,228,224) 180deg,
        rgb(156,191,191,0.5) 270deg,
        rgb(110,127,175,0.5) 360deg
    );
    position: absolute;
    opacity: 0.4;
    z-index: 1;
    content: "";
    left: 0;
    width: 100%;
}.education_historykey .student_ratingskey {
    gap: 0;
    z-index: 2;
    align-items: center;
    justify-content: space-between;
    transform-style: preserve-3d;
    position: relative;
    display: flex;
    flex-direction: row;
}.education_historykey .image_show_itemkey {
    border-radius: 15px;
    width: 40%;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -20px 20px 30px -10px rgba(0, 0, 0, 0.5);
    height: 400px;
    position: relative;
    filter: saturate(0.8);
    transform: rotateY(10deg) translateZ(50px);
}.education_historykey .image_show_itemkey::after {
    opacity: 0.4;
    transition: opacity 0.6s ease;
    width: 100%;
    position: absolute;
    content: "";
    border-radius: 15px;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgb(156,191,191,0.5) 100%
    );
}.education_historykey .image_show_itemkey:hover {
    transform: rotateY(0deg) translateZ(70px) scale(1.05);
    filter: saturate(1.2);
    box-shadow: -30px 30px 50px -10px rgba(0, 0, 0, 0.5);
}.education_historykey .image_show_itemkey:hover::after {
    opacity: 0;
}.education_historykey .exp_itemskey {
    box-shadow: 20px 20px 30px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 2.5rem;
    background: #ffffff;
    transform: rotateY(-5deg) translateZ(30px);
    width: 60%;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
}.education_historykey .exp_itemskey::before {
    left: -50%;
    transition: transform 0.8s ease;
    height: 200%;
    transform: scale(0);
    top: -50%;
    background: radial-gradient(
        circle at center,
        rgb(110,127,175,0.5) 0%,
        transparent 70%
    );
    position: absolute;
    width: 200%;
    opacity: 0.1;
    content: "";
}.education_historykey .exp_itemskey:hover {
    box-shadow: 30px 30px 50px -10px rgba(0, 0, 0, 0.5);
    transform: rotateY(0deg) translateZ(50px);
}.education_historykey .exp_itemskey:hover::before {
    transform: scale(1);
}.education_historykey .name {
    color: rgb(156,191,191);
    font-weight: 700;
    display: inline-block;
    position: relative;
    font-size: 36px;
    margin-bottom: 0.5rem;
}.education_historykey .name::after {
    position: absolute;
    background: rgb(110,127,175);
    height: 3px;
    width: 0;
    left: 0;
    bottom: -5px;
    transition: width 0.4s ease-in-out;
    content: "";
}.education_historykey .exp_itemskey:hover .name::after {
    width: 100%;
}.education_historykey .exp_itemskey > div:nth-child(2) {
    font-weight: 600;
    opacity: 0.9;
    color: rgb(110,127,175);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}.education_historykey .work_viewkey {
    color: #000000;
    font-size: 18px;
    position: relative;
    font-weight: 400;
    line-height: 1.7;
    font-style: italic;
    padding-left: 2rem;
    border-left: 3px solid rgb(156,191,191,0.5);
}.education_historykey .work_viewkey::before {
    color: rgb(110,127,175,0.5);
    position: absolute;
    font-family: serif;
    opacity: 0.3;
    font-size: 5rem;
    content: "";
    top: -20px;
    left: -10px;
}@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(156,191,191,0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.education_historykey .image_show_itemkey:hover {
    animation: pulse 1.5s infinite;
}

@media (max-width: 992px) {.education_historykey .student_ratingskey {
    flex-direction: column;
}.education_historykey .image_show_itemkey,
    .education_historykey .exp_itemskey {
    width: 100%;
    transform: none;
}.education_historykey .image_show_itemkey {
    margin-bottom: 2rem;
    height: 300px;
}.education_historykey .image_show_itemkey:hover,
    .education_historykey .exp_itemskey:hover {
    transform: translateY(-10px);
}}.future_learnerskey {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(150deg, rgb(221,228,224) 0%, rgba(0, 0, 0, 0.5) 100%);
}.future_learnerskey::before {
    width: 100%;
    content: "";
    height: 100%;
    left: 0;
    z-index: 0;
    background: 
        radial-gradient(circle at 10% 10%, rgba(rgb(156,191,191), 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(rgb(110,127,175), 0.05) 0%, transparent 50%);
    position: absolute;
    top: 0;
}.future_learnerskey .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}.future_learnerskey .expert_sessionskey {
    background: #ffffff;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}.future_learnerskey h4 {
    color: #000000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 35px;
    position: relative;
    text-align: center;
    padding: 30px;
    font-weight: 700;
    margin: 0;
}.future_learnerskey h4::after {
    position: absolute;
    background: linear-gradient(90deg, rgb(156,191,191), rgb(110,127,175));
    width: 80px;
    height: 3px;
    bottom: -1px;
    left: 50%;
    content: "";
    transform: translateX(-50%);
}.future_learnerskey div {
    display: flex;
    padding: 40px;
    gap: 0;
    flex-wrap: wrap;
}.future_learnerskey div p {
    position: relative;
    padding: 20px 20px 20px 60px;
    border-left: 3px solid rgb(156,191,191);
    width: calc(100% - 30px);
    flex: 1 1 calc(100% - 30px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    margin: 0 15px 0 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}.future_learnerskey div p:last-child {
    margin-bottom: 0;
}.future_learnerskey div p:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, rgba(rgb(156,191,191), 0.03) 0%, transparent 100%);
}.future_learnerskey div p::before {
    left: 0;
    background: linear-gradient(90deg, rgba(rgb(156,191,191), 0.1) 0%, transparent 100%);
    top: 0;
    z-index: -1;
    transition: width 0.3s ease;
    height: 100%;
    width: 0;
    content: "";
    position: absolute;
}.future_learnerskey div p:hover::before {
    width: 100%;
}.future_learnerskey div p::after {
    transition: all 0.3s ease;
    border-right: 2px solid rgb(156,191,191);
    top: 50%;
    border-top: 2px solid rgb(156,191,191);
    width: 6px;
    content: "";
    transform: translateY(-50%) rotate(45deg);
    height: 6px;
    opacity: 0;
    position: absolute;
    right: 20px;
}.future_learnerskey div p:hover::after {
    right: 15px;
    opacity: 1;
}.future_learnerskey div p svg {
    left: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}.future_learnerskey div p:hover svg {
    transform: translateY(-50%) scale(1.2) rotate(10deg);
}.future_learnerskey div p svg path {
    fill: rgb(156,191,191);
    transition: fill 0.3s ease;
}.future_learnerskey div p:hover svg path {
    fill: rgb(110,127,175);
}

@media (max-width: 991px) {.future_learnerskey {
    padding: 100px 0;
}.future_learnerskey h4 {
    font-size: calc(35px - 2px);
    padding: 25px;
}.future_learnerskey div {
    padding: 30px;
}.future_learnerskey div p {
    padding: 18px 18px 18px 55px;
    margin-bottom: 15px;
}.future_learnerskey div p svg {
    height: 22px;
    width: 22px;
    left: 18px;
}
}

@media (max-width: 767px) {.future_learnerskey {
    padding: 80px 0;
}.future_learnerskey h4 {
    padding: 20px;
    font-size: calc(35px - 4px);
}.future_learnerskey div {
    padding: 25px 20px;
}.future_learnerskey div p {
    margin-bottom: 12px;
    padding: 15px 15px 15px 50px;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    flex: 1 1 100%;
}.future_learnerskey div p svg {
    left: 15px;
    height: 20px;
    width: 20px;
}
}

@media (max-width: 479px) {.future_learnerskey {
    padding: 60px 0;
}.future_learnerskey h4 {
    padding: 18px 15px;
    font-size: calc(35px - 6px);
}.future_learnerskey div {
    padding: 20px 15px;
}.future_learnerskey div p {
    margin-bottom: 10px;
    padding: 12px 12px 12px 45px;
    font-size: calc(12px - 1px);
}.future_learnerskey div p svg {
    left: 12px;
    height: 18px;
    width: 18px;
}}header {
    background: rgb(221,228,224);
    position: relative;
    z-index: 100;
    padding: 1.2rem 0;
}header::before {
    width: 100%;
    content: '';
    position: absolute;
    left: 0;
    opacity: 0.5;
    top: 0;
    background: linear-gradient(135deg, 
        rgb(156,191,191,0.5) 0%, 
        transparent 50%, 
        rgb(110,127,175,0.5) 100%);
    height: 100%;
}header .container {
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
}header .top_barkey {
    border-radius: 29px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}header .nav_startkey {
    justify-content: center;
    display: flex;
    margin-bottom: 0.5rem;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 1rem;
}header .nav_startkey::before {
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    background: linear-gradient(to right, 
        transparent, 
        rgb(156,191,191,0.5), 
        rgb(110,127,175,0.5), 
        rgb(156,191,191,0.5), 
        transparent);
}header .nav_startkey svg {
    transition: all 0.3s ease;
    width: 160px;
    height: auto;
}header .nav_startkey:hover svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgb(156,191,191,0.5));
}header .nav_corekey {
    background: rgb(221,228,224);
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
    padding: 0.6rem;
    display: flex;
    gap: 0.4rem;
}header .top_pagebarkey {
    color: #000000;
    font-size: 15px;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 400;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 1;
}header .top_pagebarkey::before {
    content: '';
    background: linear-gradient(135deg, rgb(156,191,191), rgb(110,127,175));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}header .top_pagebarkey:hover {
    color: #ffffff;
}header .top_pagebarkey:hover::before {
    opacity: 1;
}header .top_pagebarkey::after {
    transform: scaleX(0);
    content: '';
    left: 0;
    background: linear-gradient(to right, rgb(156,191,191), rgb(110,127,175));
    transition: transform 0.3s ease;
    position: absolute;
    height: 2px;
    bottom: 0;
    width: 100%;
    transform-origin: left;
}header .top_pagebarkey:hover::after {
    transform: scaleX(1);
}

@media (max-width: 991px) {header {
    padding: 1rem 0;
}header .top_barkey {
    padding: 0.8rem;
    gap: 0.8rem;
}header .nav_startkey svg {
    width: 140px;
}header .nav_corekey {
    padding: 0.5rem;
}header .top_pagebarkey {
    padding: 0.4rem 0.8rem;
    font-size: calc(15px - 1px);
}
}

@media (max-width: 767px) {header {
    padding: 0.8rem 0;
}header .top_barkey {
    gap: 0.7rem;
    padding: 0.7rem;
}header .nav_startkey svg {
    width: 120px;
}header .nav_corekey {
    padding: 0.4rem;
    gap: 0.3rem;
}header .top_pagebarkey {
    padding: 0.3rem 0.7rem;
    font-size: calc(15px - 2px);
}
}

@media (max-width: 480px) {header {
    padding: 0.7rem 0;
}header .top_barkey {
    gap: 0.6rem;
    padding: 0.6rem;
}header .nav_startkey svg {
    width: 110px;
}header .nav_corekey {
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.4rem;
    overflow-x: auto;
}header .nav_corekey::-webkit-scrollbar {
    height: 2px;
}header .nav_corekey::-webkit-scrollbar-thumb {
    background: rgb(156,191,191);
    border-radius: 10px;
}header .top_pagebarkey {
    white-space: nowrap;
    flex-shrink: 0;
}}.green_edukey {
    position: relative;
    color: #000000;
    font-family: Arial, sans-serif;
    background-color: rgb(221,228,224);
    padding: 5rem 0 2rem;
}.green_edukey::before {
    height: 250px;
    position: absolute;
    right: 0;
    opacity: 0.05;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgb(156,191,191,0.5) 100%);
    content: '';
    left: 0;
    z-index: 0;
}.green_edukey .container {
    z-index: 1;
    position: relative;
}.green_edukey .lang_learnkey {
    gap: 4rem;
    flex-direction: column;
    display: flex;
}.green_edukey .message_formkey {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    display: grid;
    position: relative;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgb(110,127,175,0.5);
    gap: 1.5rem;
}.green_edukey .message_formkey::after {
    width: 60px;
    background-color: rgb(156,191,191);
    bottom: -1px;
    position: absolute;
    content: '';
    height: 3px;
    left: 0;
}.green_edukey .info_item {
    transition: transform 0.3s ease-out;
    padding: 0.5rem;
}.green_edukey .info_item:hover {
    transform: translateX(5px);
}.green_edukey .info_item p,
.green_edukey .info_item a {
    display: flex;
    text-decoration: none;
    gap: 0.75rem;
    color: #000000;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 15px;
    align-items: center;
}.green_edukey .info_item a:hover {
    color: rgb(156,191,191);
}.green_edukey .info_item svg {
    flex-shrink: 0;
    fill: rgb(156,191,191);
    height: 20px;
    width: 20px;
}.green_edukey .text_main_holder {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1.2fr 1fr 1.2fr;
}.green_edukey .top_sitekey {
    gap: 1.25rem;
    display: flex;
    flex-direction: column;
}.green_edukey .top_sitekey svg {
    height: auto;
    transition: opacity 0.3s ease;
    max-width: 160px;
}.green_edukey .top_sitekey svg:hover {
    opacity: 0.8;
}.green_edukey .app_storekey {
    line-height: 1.6;
    color: #000000;
    font-size: 13px;
    max-width: 300px;
    opacity: 0.8;
}.green_edukey .nav_corekey {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}.green_edukey .nav_corekey h5 {
    color: #000000;
    position: relative;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0.5rem;
}.green_edukey .top_pagewrapkey {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}.green_edukey .top_pagewrapkey a {
    position: relative;
    font-size: 15px;
    padding-left: 0;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    color: #000000;
}.green_edukey .top_pagewrapkey a::before {
    transition: width 0.3s ease, left 0.3s ease;
    width: 0;
    top: 50%;
    content: '';
    background-color: rgb(156,191,191);
    height: 1px;
    transform: translateY(-50%);
    position: absolute;
    left: -10px;
}.green_edukey .top_pagewrapkey a:hover {
    color: rgb(156,191,191);
    padding-left: 12px;
}.green_edukey .top_pagewrapkey a:hover::before {
    width: 10px;
    left: 0;
}.green_edukey .subscribe_holder {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    border-radius: 21px;
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
    padding: 2rem;
}.green_edukey .subscribe_holder h5 {
    font-weight: 600;
    font-size: 22px;
    color: #000000;
}.green_edukey .subscribe_holder p {
    line-height: 1.6;
    color: #000000;
    font-size: 15px;
}.green_edukey .input_holder {
    position: relative;
    gap: 0.5rem;
    display: flex;
}.green_edukey .input_holder input[type="email"] {
    background-color: transparent;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    flex: 1;
    border: 1px solid rgb(110,127,175,0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: #000000;
    font-size: 15px;
}.green_edukey .input_holder input[type="email"]:focus {
    outline: none;
    border-color: rgb(156,191,191);
    box-shadow: 0 0 0 3px rgb(156,191,191,0.5);
}.green_edukey .input_holder input[type="email"]::placeholder {
    opacity: 0.5;
    color: #000000;
}.green_edukey .sub_typographykey {
    font-size: 19px;
    border: none;
    cursor: pointer;
    background-color: rgb(156,191,191);
    color: #ffffff;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border-radius: 10px;
    padding: 1rem 1.5rem;
}.green_edukey .sub_typographykey:hover {
    background-color: rgb(110,127,175);
    transform: translateY(-2px);
}.green_edukey .lesson_ctakey {
    margin-top: 3rem;
    border-top: 1px solid rgb(110,127,175,0.5);
    text-align: center;
    padding-top: 1.5rem;
}.green_edukey .edu_globalkey {
    color: #000000;
    opacity: 0.8;
    font-size: 13px;
}.green_edukey .top_pagewrapkey:first-child {
    margin-bottom: 1.5rem;
    position: relative;
}.green_edukey .top_pagewrapkey:first-child::after {
    left: 0;
    position: absolute;
    background-color: rgb(110,127,175,0.5);
    content: '';
    bottom: -0.75rem;
    height: 1px;
    width: 30px;
}.green_edukey {
    background-image: 
        linear-gradient(rgb(110,127,175,0.5) 1px, transparent 1px),
        linear-gradient(to right, rgb(110,127,175,0.5) 1px, transparent 1px);
    background-position: center;
    background-size: 40px 40px;
    background-blend-mode: overlay;
    background-attachment: fixed;
    background-repeat: repeat;
}

@media (max-width: 1024px) {.green_edukey {
    padding: 4rem 0 2rem;
}.green_edukey .text_main_holder {
    gap: 2.5rem;
    grid-template-columns: 1fr 1fr;
}.green_edukey .subscribe_holder {
    grid-column: span 2;
}
}

@media (max-width: 768px) {.green_edukey {
    padding: 3.5rem 0 1.5rem;
}.green_edukey .text_main_holder {
    gap: 3rem;
    grid-template-columns: 1fr;
}.green_edukey .subscribe_holder {
    grid-column: auto;
}.green_edukey .message_formkey {
    grid-template-columns: 1fr 1fr;
}.green_edukey .info_item:hover {
    transform: translateX(0) translateY(-5px);
}
}

@media (max-width: 576px) {.green_edukey {
    padding: 3rem 0 1.5rem;
}.green_edukey .message_formkey {
    grid-template-columns: 1fr;
}.green_edukey .input_holder {
    flex-direction: column;
}.green_edukey .sub_typographykey {
    width: 100%;
}.green_edukey .top_sitekey,
    .green_edukey .nav_corekey h5,
    .green_edukey .top_pagewrapkey,
    .green_edukey .top_pagewrapkey a {
    text-align: center;
    align-items: center;
}.green_edukey .top_sitekey svg {
    margin: 0 auto;
}.green_edukey .app_storekey {
    text-align: center;
    max-width: 100%;
}.green_edukey .top_pagewrapkey:first-child::after {
    transform: translateX(-50%);
    left: 50%;
}.green_edukey .message_formkey::after {
    transform: translateX(-50%);
    left: 50%;
}.green_edukey .top_pagewrapkey a::before {
    display: none;
}.green_edukey .top_pagewrapkey a:hover {
    padding-left: 0;
}}.plan_arraykey {
    overflow: hidden;
    background-color: rgb(221,228,224);
    padding: 6rem 0;
    position: relative;
}.plan_arraykey::before {
    background: linear-gradient(135deg, rgb(156,191,191,0.5) 0%, transparent 70%);
    z-index: 1;
    content: "";
    pointer-events: none;
    left: 0;
    top: 0;
    width: 100%;
    position: absolute;
    height: 100%;
}.plan_arraykey::after {
    position: absolute;
    background: linear-gradient(225deg, rgb(110,127,175) 0%, transparent 80%);
    height: 20rem;
    width: 20rem;
    z-index: 1;
    content: "";
    transform: rotate(-15deg);
    opacity: 0.15;
    right: -5rem;
    pointer-events: none;
    bottom: -5rem;
}.plan_arraykey .container {
    position: relative;
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1400px;
    z-index: 2;
}.plan_arraykey .discount_dealskey {
    display: grid;
    position: relative;
    gap: 3rem;
    grid-template-columns: 1fr;
}.plan_arraykey .learning_rateskey {
    background-color: #ffffff;
    transform: translateZ(0);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 2rem;
    border-left: 4px solid rgb(156,191,191);
}.plan_arraykey .learning_rateskey::before {
    content: "";
    position: absolute;
    z-index: -1;
    transform: rotate(45deg);
    background-color: rgb(156,191,191);
    width: 40px;
    height: 40px;
    top: 20px;
    left: -20px;
}.plan_arraykey .learning_rateskey h2 {
    font-size: 37px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    transform: perspective(800px) translateZ(30px);
    position: relative;
    color: #000000;
}.plan_arraykey .learning_rateskey h2::after {
    background: linear-gradient(90deg, rgb(156,191,191), rgb(110,127,175));
    content: "";
    height: 3px;
    width: 80px;
    bottom: -10px;
    left: 0;
    position: absolute;
}.plan_arraykey .learning_rateskey .learning_pricekey {
    color: #000000;
    font-size: 15px;
    line-height: 1.6;
    max-width: 80%;
}.plan_arraykey .pricing_schemeskey {
    display: grid;
    gap: 2rem;
    perspective: 1000px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.plan_arraykey .promo_planskey {
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    position: relative;
    transform-style: preserve-3d;
    color: inherit;
}.plan_arraykey .promo_planskey:hover {
    transform: translateY(-10px);
}.plan_arraykey .plan_feekey {
    transform: translateZ(0);
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    border-radius: 10px;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: #ffffff;
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}.plan_arraykey .promo_planskey:hover .plan_feekey {
    transform: translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgb(156,191,191,0.5);
}.plan_arraykey .promo_planskey:nth-child(odd) .plan_feekey {
    transform: rotate(-1deg);
}.plan_arraykey .promo_planskey:nth-child(even) .plan_feekey {
    transform: rotate(1deg);
}.plan_arraykey .promo_planskey:hover .plan_feekey {
    transform: rotate(0) translateZ(20px);
}.plan_arraykey .plan_dealskey {
    word-break: break-word;
    padding: 2rem;
    z-index: 2;
    flex-direction: column;
    overflow-wrap: break-word;
    position: relative;
    flex: 1;
    display: flex;
}.plan_arraykey .plan_dealskey::before {
    content: "";
    height: 100%;
    top: 0;
    width: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
}.plan_arraykey .plan_dealskey h3 {
    transition: transform 0.3s ease;
    position: relative;
    color: #000000;
    font-weight: 600;
    margin-bottom: 1rem;
    transform: translateZ(10px);
    font-size: calc(19px * 1.2);
}.plan_arraykey .promo_planskey:hover .plan_dealskey h3 {
    transform: translateZ(25px);
}.plan_arraykey .plan_dealskey h3::after {
    background: rgb(156,191,191);
    width: 40px;
    position: absolute;
    height: 3px;
    left: 0;
    transition: width 0.3s ease;
    bottom: -8px;
    content: "";
}.plan_arraykey .promo_planskey:hover .plan_dealskey h3::after {
    width: 60px;
}.plan_arraykey .price_plankey {
    position: relative;
    display: block;
    font-size: calc(19px * 1.8);
    transform: translateZ(15px);
    font-weight: 700;
    color: rgb(156,191,191);
    margin: 0.5rem 0 1.5rem;
}.plan_arraykey .price_plankey::before {
    height: 2px;
    width: 80px;
    content: "";
    bottom: -8px;
    position: absolute;
    background: linear-gradient(90deg, rgb(156,191,191,0.5), transparent);
    left: 0;
}.plan_arraykey .plan_dealskey p {
    flex: 1;
    color: #000000;
    overflow-wrap: break-word;
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 15px;
    word-break: break-word;
}.plan_arraykey .image_show_itemkey {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    width: 100%;
    transition: transform 0.5s ease;
    height: 200px;
}.plan_arraykey .promo_planskey:hover .image_show_itemkey {
    transform: scale(1.05) translateZ(0);
}.plan_arraykey .image_show_itemkey::after {
    width: 100%;
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    bottom: 0;
    height: 50%;
    content: "";
    z-index: 1;
    left: 0;
}.plan_arraykey .image_show_itemkey::before {
    background: rgb(156,191,191);
    width: 100%;
    content: "";
    top: 0;
    z-index: 1;
    transition: opacity 0.3s ease;
    opacity: 0.15;
    position: absolute;
    left: 0;
    height: 100%;
}.plan_arraykey .promo_planskey:hover .image_show_itemkey::before {
    opacity: 0.05;
}

@media (min-width: 992px) {.plan_arraykey .discount_dealskey {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}.plan_arraykey .learning_rateskey {
    padding: 3rem;
}.plan_arraykey .pricing_schemeskey {
    grid-row: 1;
    grid-column: 1;
}.plan_arraykey .learning_rateskey {
    grid-column: 2;
    position: sticky;
    top: 2rem;
    align-self: start;
    transform: perspective(1000px) rotateY(-5deg) translateZ(0);
    grid-row: 1;
}.plan_arraykey .learning_rateskey:hover {
    transform: perspective(1000px) rotateY(0) translateZ(30px);
}
}

@media (min-width: 1200px) {.plan_arraykey .pricing_schemeskey {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}.plan_arraykey .plan_dealskey {
    min-height: 300px;
}
}

@media (max-width: 991px) {.plan_arraykey {
    padding: 4rem 0;
}.plan_arraykey .learning_rateskey {
    order: -1;
}.plan_arraykey .learning_rateskey h2 {
    font-size: calc(37px * 0.9);
}.plan_arraykey .learning_rateskey .learning_pricekey {
    max-width: 100%;
}
}

@media (max-width: 767px) {.plan_arraykey {
    padding: 3rem 0;
}.plan_arraykey .container {
    padding: 0 1.5rem;
}.plan_arraykey .pricing_schemeskey {
    grid-template-columns: 1fr;
}.plan_arraykey .learning_rateskey h2 {
    font-size: calc(37px * 0.8);
}.plan_arraykey .plan_dealskey {
    padding: 1.5rem;
}.plan_arraykey .price_plankey {
    font-size: calc(19px * 1.5);
}.plan_arraykey .image_show_itemkey {
    height: 180px;
}
}

@media (max-width: 480px) {.plan_arraykey .plan_dealskey p {
    font-size: calc(15px * 0.9);
}.plan_arraykey .plan_dealskey h3 {
    font-size: 19px;
}.plan_arraykey .price_plankey {
    font-size: calc(19px * 1.3);
}.plan_arraykey .image_show_itemkey {
    height: 160px;
}}.secure_sanctuarykey {
    height: auto;
    padding: 40px;
    background: linear-gradient(135deg, rgb(156,191,191,0.5) 30%, rgb(110,127,175,0.5) 100%);
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}.secure_sanctuarykey h1 {
    margin-bottom: 30px;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    border-radius: 10px;
    background: rgb(156,191,191);
    font-weight: 700;
    padding: 10px;
    letter-spacing: 2px;
    margin-top: 40px;
    font-size: 43px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}.secure_sanctuarykey h2 {
    font-weight: 600;
    padding-bottom: 5px;
    text-align: left;
    margin-top: 35px;
    border-bottom: 2px solid rgb(156,191,191);
    margin-bottom: 25px;
    font-size: 36px;
    color: rgb(110,127,175);
}.secure_sanctuarykey ul, .secure_sanctuarykey ol {
    list-style: none;
    list-style-position: outside;
    padding-left: 20px;
    color: #000000;
    padding: 15px 0;
    font-family: Arial, sans-serif;
    font-size: 13px;
}.secure_sanctuarykey li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}.secure_sanctuarykey li::before {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1em;
    font-size: 1.5em;
    color: rgb(156,191,191);
    content: '•';
}.secure_sanctuarykey p, .secure_sanctuarykey span, .secure_sanctuarykey div {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 13px;
    transition: all 0.3s ease;
    color: #000000;
    margin-bottom: 15px;
}.secure_sanctuarykey p:hover, .secure_sanctuarykey span:hover, .secure_sanctuarykey div:hover {
    transform: translateY(-2px);
    color: rgb(156,191,191);
}

@media only screen and (max-width: 800px) {.secure_sanctuarykey {
    border-radius: 10px;
    padding: 20px 10px;
}.secure_sanctuarykey h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: calc(21px - 10px);
}.secure_sanctuarykey h2 {
    margin-bottom: 15px;
    font-size: calc(21px - 8px);
    margin-top: 20px;
}.secure_sanctuarykey ul, .secure_sanctuarykey ol {
    padding-left: 10px;
}.secure_sanctuarykey li {
    padding-left: 15px;
}}
.newsletterkey {
    position: relative;
    background: rgb(221,228,224);
    padding: 90px 0;
    overflow: hidden;
}.newsletterkey::before {
    background-size: 20px 20px;
    width: 100%;
    position: absolute;
    background: 
        linear-gradient(0deg, transparent 95%, rgb(156,191,191,0.5) 95%),
        linear-gradient(90deg, transparent 95%, rgb(156,191,191,0.5) 95%);
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0.3;
    height: 100%;
    content: "";
}.newsletterkey::after {
    height: 160%;
    right: -30%;
    filter: blur(60px);
    content: "";
    background: rgb(156,191,191,0.5);
    width: 60%;
    position: absolute;
    top: -30%;
    transform: rotate(-45deg);
    z-index: 0;
}.newsletterkey .expert_sessionskey {
    margin: 0 auto;
    position: relative;
    max-width: 450px;
    padding: 0 20px;
    z-index: 2;
}.newsletterkey .support_feedbackkey {
    flex-direction: column;
    padding-bottom: 20px;
    transform-style: preserve-3d;
    position: relative;
    display: flex;
}.newsletterkey .support_feedbackkey::before {
    left: -10px;
    clip-path: polygon(0 15%, 15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    position: absolute;
    z-index: -1;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    transform: translateZ(-20px);
    background: rgb(110,127,175,0.5);
    content: "";
}.newsletterkey .support_feedbackkey::after {
    top: 20px;
    position: absolute;
    height: calc(100% - 40px);
    content: "";
    left: 20px;
    border: 2px dashed rgb(156,191,191,0.5);
    animation: rotateFrame 20s linear infinite;
    z-index: -1;
    width: calc(100% - 40px);
}.newsletterkey h3 {
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    padding-bottom: 20px;
    font-size: 29px;
    text-transform: uppercase;
    position: relative;
}.newsletterkey h3::before {
    left: 0;
    background: rgb(156,191,191);
    position: absolute;
    bottom: 0;
    height: 5px;
    width: 60px;
    content: "";
}.newsletterkey h3::after {
    width: 30px;
    height: 5px;
    bottom: 0;
    left: 70px;
    position: absolute;
    background: rgb(110,127,175);
    content: "";
}.newsletterkey .input_holder {
    position: relative;
    flex-direction: column;
    gap: 20px;
    display: flex;
}.newsletterkey input[type="email"] {
    border-radius: 14px;
    padding: 20px 25px;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.5);
    background: #ffffff;
    width: 100%;
    transition: all 0.3s ease;
    color: #000000;
    border: none;
    font-size: 14px;
    font-family: Arial, sans-serif;
}.newsletterkey input[type="email"]:focus {
    outline: none;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}.newsletterkey .sub_typographykey {
    border: none;
    padding: 18px 0;
    overflow: hidden;
    font-size: 20px;
    position: relative;
    width: 80%;
    border-radius: 14px;
    cursor: pointer;
    color: #ffffff;
    align-self: center;
    background: rgb(156,191,191);
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: Arial, sans-serif;
    font-weight: 600;
}.newsletterkey .sub_typographykey::before {
    top: 0;
    background: rgb(110,127,175);
    left: -100%;
    transition: all 0.5s ease;
    width: 100%;
    content: "";
    position: absolute;
    height: 100%;
    z-index: 0;
}.newsletterkey .sub_typographykey:hover {
    box-shadow: 0 10px 20px -5px rgb(156,191,191,0.5);
    transform: translateY(-5px);
}.newsletterkey .sub_typographykey:hover::before {
    left: 0;
}.newsletterkey .sub_typographykey:active {
    transform: translateY(-2px);
}.newsletterkey .sub_typographykey::after {
    top: 50%;
    font-size: 1.5em;
    position: absolute;
    content: "→";
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
    right: 30px;
    transform: translateY(-50%);
}.newsletterkey .sub_typographykey:hover::after {
    opacity: 1;
    right: 20px;
}

@keyframes rotateFrame {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {.newsletterkey {
    padding: 70px 0;
}.newsletterkey h3 {
    margin-bottom: 25px;
    font-size: calc(29px * 0.9);
}.newsletterkey .support_feedbackkey::before {
    clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}
}

@media (max-width: 480px) {.newsletterkey {
    padding: 50px 0;
}.newsletterkey h3 {
    font-size: 21px;
    margin-bottom: 20px;
    padding-bottom: 15px;
}.newsletterkey h3::before {
    width: 40px;
    height: 3px;
}.newsletterkey h3::after {
    left: 50px;
    width: 20px;
    height: 3px;
}.newsletterkey input[type="email"] {
    padding: 15px 20px;
}.newsletterkey .sub_typographykey {
    padding: 15px 0;
    width: 100%;
}.newsletterkey .support_feedbackkey::after {
    left: 10px;
    top: 10px;
    height: calc(100% - 20px);
    width: calc(100% - 20px);
}}.ty_successkey {
    background: linear-gradient(135deg, #f5f7fa 0%, #ebedee 100%);
    padding: 4rem 0;
    font-family: Arial, sans-serif;
    overflow: hidden;
    position: relative;
}.ty_successkey::before {
    position: absolute;
    background: linear-gradient(145deg, rgb(156,191,191,0.5) 0%, rgb(110,127,175,0.5) 100%);
    z-index: 0;
    transform: rotate(-15deg);
    height: 70%;
    content: "";
    animation: float 15s ease-in-out infinite alternate;
    opacity: 0.3;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    width: 60%;
    filter: blur(30px);
    top: -30%;
    right: -10%;
}.ty_successkey::after {
    animation: float 18s ease-in-out infinite alternate-reverse;
    filter: blur(25px);
    width: 40%;
    border-radius: 30% 70% 60% 40% / 50% 30% 70% 50%;
    content: "";
    position: absolute;
    bottom: -20%;
    transform: rotate(10deg);
    background: linear-gradient(225deg, rgb(110,127,175,0.5) 0%, rgb(156,191,191,0.5) 100%);
    z-index: 0;
    height: 60%;
    opacity: 0.2;
    left: -5%;
}.ty_successkey .container {
    z-index: 2;
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
}.ty_successkey .expert_sessionskey {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    position: relative;
    border-radius: 15px;
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05),
                -10px -10px 30px rgba(255, 255, 255, 0.8),
                inset 2px 2px 5px rgba(255, 255, 255, 0.4),
                inset -2px -2px 5px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}.ty_successkey .expert_sessionskey:hover {
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.08),
                -15px -15px 40px rgba(255, 255, 255, 0.9),
                inset 2px 2px 5px rgba(255, 255, 255, 0.4),
                inset -2px -2px 5px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.ty_successkey .expert_sessionskey > div:first-child {
    margin-bottom: 1.5rem;
    position: relative;
}.ty_successkey .expert_sessionskey > div:first-child::after {
    transform-origin: left;
    background: linear-gradient(90deg, rgb(156,191,191) 0%, rgb(110,127,175) 100%);
    content: "";
    bottom: -0.75rem;
    height: 3px;
    transition: width 0.3s ease;
    border-radius: 10px;
    position: absolute;
    width: 80px;
    left: 0;
}.ty_successkey .expert_sessionskey:hover > div:first-child::after {
    width: 120px;
}.ty_successkey h5 {
    font-size: 24px;
    color: #000000;
    line-height: 1.4;
    font-weight: 700;
    display: inline-block;
    margin: 0;
    position: relative;
}.ty_successkey h5::before {
    width: 26px;
    content: "✓";
    transition: opacity 0.5s ease, transform 0.5s ease;
    justify-content: center;
    position: absolute;
    align-items: center;
    top: 50%;
    opacity: 0;
    background: linear-gradient(135deg, rgb(156,191,191) 0%, rgb(110,127,175) 100%);
    transform: translateY(-50%);
    display: flex;
    font-size: 14px;
    color: #ffffff;
    height: 26px;
    border-radius: 50%;
    left: -35px;
}.ty_successkey .expert_sessionskey:hover h5::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}.ty_successkey p {
    color: #000000;
    transition: color 0.3s ease;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}.ty_successkey a {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}.ty_successkey a::before {
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(90deg, rgb(156,191,191,0.5) 0%, rgb(110,127,175) 100%);
    transform-origin: right;
    content: "";
    height: 2px;
    position: absolute;
    left: 0;
    transform: scaleX(0);
    bottom: 0;
}.ty_successkey a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.ty_successkey a:hover {
    transform: translateY(-2px);
}.ty_successkey a:hover p {
    color: rgb(156,191,191);
}

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

@media (max-width: 991px) {.ty_successkey {
    padding: 3rem 0;
}.ty_successkey .expert_sessionskey {
    padding: 2.5rem;
}.ty_successkey h5 {
    font-size: calc(24px - 2px);
}
}

@media (max-width: 767px) {.ty_successkey {
    padding: 2.5rem 0;
}.ty_successkey .expert_sessionskey {
    transform: perspective(1000px) rotateX(1deg);
    padding: 2rem;
}.ty_successkey h5 {
    padding-left: 20px;
    font-size: calc(24px - 4px);
}.ty_successkey h5::before {
    width: 22px;
    font-size: 12px;
    height: 22px;
    left: -15px;
}.ty_successkey p {
    font-size: calc(16px - 1px);
}
}

@media (max-width: 576px) {.ty_successkey {
    padding: 2rem 0;
}.ty_successkey .expert_sessionskey {
    border-radius: 10px;
    padding: 1.5rem;
    transform: none;
}.ty_successkey h5 {
    font-size: calc(24px - 6px);
}.ty_successkey .expert_sessionskey > div:first-child::after {
    width: 60px;
    height: 2px;
}.ty_successkey .expert_sessionskey:hover > div:first-child::after {
    width: 90px;
}.ty_successkey h5::before {
    width: 20px;
    font-size: 10px;
    height: 20px;
}.ty_successkey p {
    font-size: calc(16px - 2px);
    line-height: 1.6;
}}.title_introkey {
    overflow: hidden;
    perspective: 1200px;
    position: relative;
    min-height: 600px;
    background-color: rgb(221,228,224);
    height: 100vh;
    width: 100%;
}.title_introkey::before {
    height: 100%;
    width: 100%;
    animation: gridMove 30s infinite linear;
    background-size: 20px 20px;
    content: "";
    position: absolute;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    top: 0;
    z-index: 1;
    left: 0;
}.title_introkey::after {
    height: 100%;
    mix-blend-mode: soft-light;
    width: 100%;
    background: 
        linear-gradient(135deg, rgb(156,191,191,0.5) 0%, transparent 70%),
        linear-gradient(225deg, rgb(110,127,175,0.5) 0%, transparent 70%);
    z-index: 1;
    content: "";
    top: 0;
    position: absolute;
    left: 0;
}.title_introkey .expert_sessionskey {
    z-index: 3;
    width: 100%;
    height: 100%;
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}.title_introkey .learn_quickprokey {
    height: 100%;
    left: 0;
    z-index: 1;
    top: 0;
    position: absolute;
    overflow: hidden;
    width: 100%;
}.title_introkey .edu_welcomekey {
    animation: carouselSlide 25s cubic-bezier(0.33, 1, 0.68, 1) infinite;
    display: flex;
    height: 100%;
    width: fit-content;
}.title_introkey .start_basekey {
    position: relative;
    overflow: hidden;
    width: 100vw;
    transform-style: preserve-3d;
    height: 100%;
}.title_introkey .start_basekey::before {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    position: absolute;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    content: "";
}.title_introkey .start_basekey img {
    width: 100%;
    transform-origin: center;
    animation: zoomPan 20s infinite alternate ease-in-out;
    filter: brightness(0.9) contrast(1.1) saturate(1.1);
    height: 100%;
    object-fit: cover;
}.title_introkey .text_info_boxkey {
    padding: 2.5rem 3rem;
    z-index: 4;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    max-width: 550px;
    animation: textReveal 1.2s ease-out forwards;
    border-radius: 10px;
    margin-right: 10%;
    margin-left: auto;
    position: relative;
}.title_introkey .text_info_boxkey::before {
    opacity: 0.8;
    height: 8px;
    width: 8px;
    position: absolute;
    content: "";
    border-radius: 50%;
    background-color: rgb(156,191,191);
    animation: blinkPulse 2s infinite alternate;
    top: 15px;
    right: 15px;
}.title_introkey .text_info_boxkey::after {
    animation: blinkPulse 3s infinite alternate;
    top: 30px;
    height: 6px;
    position: absolute;
    width: 6px;
    background-color: rgb(110,127,175);
    border-radius: 50%;
    right: 15px;
    content: "";
    opacity: 0.8;
}.title_introkey .text_info_boxkey h1 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    font-size: 47px;
    position: relative;
    padding-bottom: 15px;
}.title_introkey .text_info_boxkey h1::before {
    left: 0;
    content: "";
    background: linear-gradient(90deg, rgb(156,191,191), transparent);
    bottom: 0;
    height: 3px;
    position: absolute;
    width: 50px;
}.title_introkey .text_info_boxkey h1::after {
    background-color: rgb(156,191,191);
    left: 55px;
    bottom: 0;
    height: 3px;
    animation: pulseWidth 2s infinite alternate;
    content: "";
    position: absolute;
    width: 20px;
}.title_introkey .text_info_boxkey p {
    margin-bottom: 2.5rem;
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.3px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}.title_introkey .text_info_boxkey .request_messagekey {
    font-size: 18px;
    justify-content: center;
    color: #ffffff;
    clip-path: polygon(
        0 0,
        90% 0,
        100% 50%,
        90% 100%,
        0 100%
    );
    transition: all 0.3s ease;
    display: inline-flex;
    padding: 1rem 2.5rem;
    background: linear-gradient(
        90deg,
        rgb(156,191,191) 0%,
        rgb(110,127,175) 100%
    );
    overflow: hidden;
    font-weight: 600;
    border-radius: 0;
    border: none;
    position: relative;
    z-index: 1;
    align-items: center;
    text-decoration: none;
}.title_introkey .text_info_boxkey .request_messagekey::before {
    content: "";
    top: 0;
    height: 100%;
    z-index: -1;
    animation: buttonScan 3s infinite;
    position: absolute;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    left: -100%;
}.title_introkey .text_info_boxkey .request_messagekey:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    filter: brightness(1.1);
}.title_introkey .expert_sessionskey::before {
    animation: rotate 20s linear infinite;
    left: 5%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 150px;
    content: "";
    border-radius: 50%;
    width: 150px;
    top: 30%;
    z-index: 2;
    position: absolute;
}.title_introkey .expert_sessionskey::after {
    width: 150px;
    content: "";
    border-radius: 50%;
    top: 30%;
    border: 1px dashed rgb(156,191,191,0.5);
    position: absolute;
    z-index: 2;
    left: 5%;
    animation: rotate 30s linear infinite reverse;
    height: 150px;
}

@keyframes carouselSlide {
    0%, 16% {
        transform: translateX(0);
    }
    20%, 36% {
        transform: translateX(-100vw);
    }
    40%, 56% {
        transform: translateX(-200vw);
    }
    60%, 76% {
        transform: translateX(-300vw);
    }
    80%, 96% {
        transform: translateX(-400vw);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes zoomPan {
    0% {
        transform: scale(1) translate(0, 0);
    }
    25% {
        transform: scale(1.05) translate(-1%, -1%);
    }
    50% {
        transform: scale(1.08) translate(1%, 0);
    }
    75% {
        transform: scale(1.05) translate(0, 1%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonScan {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes blinkPulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulseWidth {
    0% {
        width: 20px;
    }
    100% {
        width: 40px;
    }
}

@media screen and (max-width: 1200px) {.title_introkey .text_info_boxkey {
    margin-right: 5%;
    max-width: 500px;
}.title_introkey .expert_sessionskey::before,
    .title_introkey .expert_sessionskey::after {
    width: 120px;
    height: 120px;
}
}

@media screen and (max-width: 992px) {.title_introkey .expert_sessionskey {
    grid-template-columns: 1fr;
}.title_introkey .text_info_boxkey {
    max-width: 80%;
    margin: 0 auto;
    padding: 2rem;
}.title_introkey .text_info_boxkey h1 {
    font-size: calc(47px * 0.9);
}.title_introkey .expert_sessionskey::before,
    .title_introkey .expert_sessionskey::after {
    left: 10%;
    width: 100px;
    height: 100px;
}
}

@media screen and (max-width: 768px) {.title_introkey {
    height: 100vh;
}.title_introkey .text_info_boxkey {
    max-width: 90%;
    margin-top: 20%;
    padding: 1.8rem;
}.title_introkey .text_info_boxkey h1 {
    font-size: calc(47px * 0.8);
}.title_introkey .text_info_boxkey p {
    font-size: calc(18px * 0.95);
}.title_introkey .expert_sessionskey::before,
    .title_introkey .expert_sessionskey::after {
    display: none;
}
}

@media screen and (max-width: 576px) {.title_introkey .text_info_boxkey {
    max-width: 92%;
    padding: 1.5rem;
    margin-top: 25%;
}.title_introkey .text_info_boxkey h1 {
    margin-bottom: 1rem;
    font-size: calc(47px * 0.7);
}.title_introkey .text_info_boxkey p {
    margin-bottom: 1.5rem;
    font-size: calc(18px * 0.9);
}.title_introkey .text_info_boxkey .request_messagekey {
    padding: 0.8rem 2rem;
    font-size: calc(18px * 0.9);
}}header .top_plank {
    background: rgb(156,191,191);
    color:  #ffffff;
}header .top_plank .nav_alertkey div svg, header .top_plank .nav_alertkey div svg path {
    fill: #ffffff;
}header .top_plank .nav_alertkey div span {
    color: #ffffff;
}header .top_plank .nav_alertkey {
    flex-wrap: wrap;
    justify-content: flex-start;
    line-height: 21px;
    display: flex;
    width: 100%;
    font-size: 12px;
    padding: 15px 0 10px 0;
    align-items: center;
}header .top_plank .nav_alertkey div {
    align-items: center;
    margin-right: 24px;
    justify-content: flex-start;
    display: flex;
}header .top_plank .nav_alertkey div img, header .top_plank .nav_alertkey div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}.our_missionkey {
    padding: 120px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}.our_missionkey::before {
    content: "";
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6));
}.our_missionkey::after {
    top: 0;
    background: linear-gradient(45deg, rgb(156,191,191,0.5), transparent);
    mix-blend-mode: overlay;
    left: 0;
    width: 100%;
    content: "";
    z-index: 2;
    height: 100%;
    position: absolute;
}.our_missionkey h4 {
    letter-spacing: 3px;
    text-align: center;
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
    transform: translateY(10px);
    animation: fadeInUp 0.8s 0.2s forwards;
    z-index: 10;
    opacity: 0;
    font-size: 34px;
    text-transform: uppercase;
}.our_missionkey .container {
    margin: 0 auto;
    max-width: 1200px;
    perspective: 1000px;
    z-index: 5;
    position: relative;
    padding: 0 15px;
}.our_missionkey .text_info_boxkey {
    padding: 40px;
    border-left: 4px solid rgb(110,127,175);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform-origin: top center;
    background: rgba(255, 255, 255, 0.07);
    transform: translateZ(0) rotateX(2deg);
    animation: slideIn 1s 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
}.our_missionkey .text_info_boxkey:hover {
    transform: translateZ(30px) rotateX(0);
}.our_missionkey .text_info_boxkey::before {
    width: 100px;
    height: 100px;
    position: absolute;
    background: rgb(156,191,191,0.5);
    z-index: -1;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    right: 0;
    content: "";
    top: 0;
}.our_missionkey .text_info_boxkey::after {
    content: "";
    height: 100px;
    background: rgb(110,127,175,0.5);
    width: 100px;
    bottom: 0;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    left: 0;
    z-index: -1;
    position: absolute;
}.our_missionkey h6 {
    color: rgb(110,127,175);
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
    font-size: calc(22px + 2px);
    margin-bottom: 25px;
    opacity: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.6s 0.8s forwards;
    display: inline-block;
}.our_missionkey h6::after {
    animation: expandWidth 1.2s 1s forwards;
    background: linear-gradient(to right, rgb(110,127,175), transparent);
    left: 0;
    content: "";
    height: 3px;
    transform-origin: left;
    width: 60px;
    bottom: 0;
    position: absolute;
    transform: scaleX(0);
}.our_missionkey span {
    line-height: 1.8;
    margin-bottom: 20px;
    animation: fadeInParagraph 1.2s 1s forwards;
    opacity: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    column-count: 1;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    display: block;
    font-size: 15px;
}

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

@keyframes slideIn {
    from {
        transform: translateZ(-50px) rotateX(5deg);
        opacity: 0;
    }
    to {
        transform: translateZ(0) rotateX(2deg);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@media (min-width: 768px) {.our_missionkey {
    padding: 150px 0;
}.our_missionkey h4 {
    text-align: left;
    font-size: calc(34px + 4px);
    margin-left: 50px;
}.our_missionkey .text_info_boxkey {
    border-left: 6px solid rgb(110,127,175);
    padding: 60px;
    margin-left: 50px;
    width: 90%;
}.our_missionkey span {
    column-count: 2;
    column-gap: 40px;
}.our_missionkey h6 {
    margin-bottom: 35px;
    font-size: calc(22px + 6px);
}.our_missionkey h6::after {
    width: 100px;
}
}

@media (min-width: 992px) {.our_missionkey {
    padding: 180px 0;
}.our_missionkey h4 {
    margin-left: 80px;
}.our_missionkey .text_info_boxkey {
    transform: translateZ(0) rotateX(2deg) rotateY(-1deg);
    width: 80%;
    padding: 70px;
    margin-left: 80px;
}.our_missionkey .text_info_boxkey:hover {
    transform: translateZ(50px) rotateX(0) rotateY(0);
}.our_missionkey span {
    column-gap: 50px;
    column-count: 3;
}
}

@media (max-width: 767px) {.our_missionkey {
    padding: 80px 0;
}.our_missionkey h4 {
    font-size: calc(22px + 2px);
    margin-bottom: 25px;
}.our_missionkey .text_info_boxkey {
    border-left-width: 3px;
    padding: 30px 20px;
}.our_missionkey h6 {
    font-size: 21px;
    margin-bottom: 20px;
    padding-bottom: 8px;
}.our_missionkey h6::after {
    height: 2px;
    width: 40px;
}.our_missionkey span {
    line-height: 1.6;
    font-size: calc(15px - 1px);
}
}