* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}html,body {
    min-height: 100%;
    color: #000000;
    font-family: Arial, sans-serif;
    auto
contain
    scroll-behavior: smooth;
    height: 100%;
}header,footer {
    width: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1160px;
}.wrap-container {
    display: flex;
    height: 100%;
    flex-direction: column;
    min-height: 100%;
}.ssl_info {
    flex: 0 0 auto;
}svg {
    height: 30px;
    width: 30px;
}.main_core {
    flex: 1 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
footer {
    width: 100%;
    z-index: 1;
    position: relative;
}.ssl_info {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, #000000, rgb(123,122,129));
    position: relative;
    font-family: Arial, sans-serif;
    color: #ffffff;
}.ssl_info::before {
    pointer-events: none;
    bottom: 0;
    top: 0;
    position: absolute;
    left: 0;
    content: "";
    right: 0;
    background: radial-gradient(circle at 10% 20%, rgb(123,122,129,0.5) 0%, transparent 50%);
}.ssl_info::after {
    bottom: 0;
    position: absolute;
    animation: shiftGradient 15s infinite linear;
    background: linear-gradient(45deg, transparent 40%, rgb(155,154,161,0.5) 70%, transparent 100%);
    top: 0;
    pointer-events: none;
    content: "";
    right: 0;
    left: 0;
}@keyframes shiftGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.ssl_info .container {
    position: relative;
    z-index: 2;
}footer .sustain_cta {
    gap: 40px;
    display: grid;
    grid-template-columns: 1fr;
}footer .edu_form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    display: flex;
    flex-wrap: wrap;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}footer .edu_form:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}footer .info_item {
    align-items: center;
    display: flex;
    flex: 1 1 220px;
}footer .info_item svg {
    filter: drop-shadow(0 0 3px rgb(155,154,161,0.5));
    margin-right: 12px;
    height: 20px;
    fill: rgb(155,154,161);
    width: 20px;
    transition: transform 0.3s ease;
}footer .info_item:hover svg {
    transform: scale(1.1);
}footer .info_item p, footer .info_item a {
    font-size: 12px;
    align-items: center;
    display: flex;
    font-weight: 400;
    transition: color 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}footer .info_item a:hover {
    text-shadow: 0 0 8px rgb(155,154,161,0.5);
    color: rgb(155,154,161);
}footer .text_main_holder {
    gap: 40px;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr;
}footer .head_top {
    gap: 15px;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}footer .head_top svg {
    filter: drop-shadow(0 0 5px rgb(155,154,161,0.5));
    margin-bottom: 10px;
    height: 50px;
    width: auto;
    transition: filter 0.3s ease;
}footer .head_top:hover svg {
    filter: drop-shadow(0 0 8px rgb(155,154,161));
}footer .footer_social {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.5;
    max-width: 300px;
    color: #ffffff;
}footer .top_pagebar {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    padding: 25px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.3s ease;
}footer .top_pagebar:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}footer .top_pagebar::before {
    bottom: -2px;
    transition: opacity 0.5s ease;
    right: -2px;
    content: "";
    position: absolute;
    opacity: 0;
    background: linear-gradient(45deg, rgb(155,154,161), transparent, rgb(123,122,129), transparent);
    left: -2px;
    z-index: -1;
    border-radius: calc(24px + 2px);
    top: -2px;
}footer .top_pagebar:hover::before {
    opacity: 0.7;
    animation: borderRotate 6s linear infinite;
}@keyframes borderRotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

footer .top_pagebar h5 {
    padding-bottom: 10px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}footer .top_pagebar h5::after {
    background: rgb(155,154,161);
    position: absolute;
    left: 0;
    width: 50px;
    transition: width 0.3s ease;
    bottom: -1px;
    height: 2px;
    content: "";
}footer .top_pagebar:hover h5::after {
    width: 100px;
}footer .head_page {
    gap: 10px;
    flex-direction: column;
    display: flex;
    margin-bottom: 25px;
}footer .head_page a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-weight: 400;
    padding-left: 15px;
    position: relative;
    font-size: calc(12px - 1px);
}footer .head_page a::before {
    left: 0;
    content: "";
    transform: translateY(-50%) scale(0.8);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    opacity: 0.7;
    border-radius: 50%;
    background-color: rgb(155,154,161);
}footer .head_page a:hover {
    padding-left: 20px;
    color: rgb(155,154,161);
}footer .head_page a:hover::before {
    box-shadow: 0 0 5px rgb(155,154,161), 0 0 10px rgb(155,154,161,0.5);
    background-color: rgb(155,154,161);
    opacity: 1;
    transform: translateY(-50%) scale(1);
}footer .subscribe_holder {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    background: linear-gradient(135deg, rgb(123,122,129,0.5), #000000);
    padding: 30px;
}footer .subscribe_holder::before {
    top: -50%;
    left: -50%;
    content: "";
    z-index: -1;
    animation: pulseBackground 10s infinite ease-in-out;
    width: 200%;
    background: radial-gradient(circle, transparent 20%, #000000 70%);
    position: absolute;
    height: 200%;
}@keyframes pulseBackground {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

footer .subscribe_holder h5 {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    font-size: 24px;
}footer .subscribe_holder h5::after {
    position: absolute;
    width: 100%;
    bottom: -5px;
    content: "";
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(155,154,161), transparent);
}footer .subscribe_holder p {
    opacity: 0.9;
    font-size: 12px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
}footer .input_holder {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}footer .input_holder input[type="email"] {
    padding: 14px 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 12px;
    color: #ffffff;
}footer .input_holder input[type="email"]:focus {
    border-color: rgb(155,154,161);
    box-shadow: 0 0 10px rgb(155,154,161,0.5);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .sub_banners {
    color: #ffffff;
    border-radius: 10px;
    padding: 14px 24px;
    overflow: hidden;
    position: relative;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    background: rgb(155,154,161);
    transition: all 0.3s ease;
}footer .sub_banners::before {
    transition: left 0.7s ease;
    left: -100%;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    width: 100%;
    top: 0;
    height: 100%;
}footer .sub_banners:hover {
    background: rgb(123,122,129);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}footer .sub_banners:hover::before {
    left: 100%;
}footer .support_cta {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}footer .honor_cta {
    letter-spacing: 0.5px;
    font-size: 13px;
    text-align: center;
    color: #ffffff;
    opacity: 0.7;
}

@media (min-width: 768px) {footer .info_item {
    flex: 1 1 60px;
}footer .text_main_holder {
    grid-template-columns: 1fr 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .sub_banners {
    white-space: nowrap;
}
}

@media (min-width: 992px) {footer .sustain_cta {
    grid-template-columns: 1fr;
}footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}footer .edu_form {
    flex-wrap: nowrap;
    display: flex;
    justify-content: space-between;
}footer .info_item {
    flex: 0 1 auto;
}
}

@media (max-width: 767px) {footer .ssl_info {
    padding: 60px 0 30px;
}footer .edu_form {
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}footer .info_item {
    width: 100%;
}footer .top_pagebar, footer .subscribe_holder {
    padding: 20px;
}footer .subscribe_holder h5, footer .top_pagebar h5 {
    font-size: calc(24px - 2px);
}footer .subscribe_holder p, footer .head_page a {
    font-size: calc(12px - 2px);
}footer .support_cta {
    margin-top: 30px;
}
}

@media (max-width: 576px) {footer .ssl_info {
    padding: 40px 0 20px;
}footer .edu_form, footer .top_pagebar, footer .subscribe_holder {
    padding: 15px;
}footer .input_holder input[type="email"], footer .sub_banners {
    padding: 12px;
}footer .head_top svg {
    height: 40px;
}footer .footer_social {
    font-size: calc(13px - 1px);
}}.course_overview {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    background: rgb(188,187,193);
}.course_overview::before {
    top: 0;
    position: absolute;
    background: linear-gradient(135deg, rgb(188,187,193) 0%, rgb(155,154,161,0.5) 100%);
    opacity: 0.6;
    z-index: 1;
    content: "";
    left: 0;
    width: 100%;
    height: 100%;
}.course_overview::after {
    z-index: 1;
    position: absolute;
    animation: gridShift 30s infinite linear;
    background-size: 4rem 4rem;
    content: "";
    left: 0;
    opacity: 0.15;
    width: 100%;
    top: 0;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 15px, rgb(123,122,129,0.5) 15px, rgb(123,122,129,0.5) 16px),
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgb(155,154,161,0.5) 15px, rgb(155,154,161,0.5) 16px);
}.course_overview .container {
    z-index: 3;
    position: relative;
}.course_overview .virtual_guides {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, minmax(50px, auto));
    gap: 1rem;
}.course_overview .skill_path {
    border-radius: 21px;
    grid-row: 2 / 8;
    background: #ffffff;
    position: relative;
    z-index: 5;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    grid-column: 1 / 9;
}.course_overview .img_circle {
    z-index: 3;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    clip-path: polygon(0% 15%, 100% 0%, 100% 85%, 0% 100%);
    grid-row: 1 / 7;
    border-radius: 21px;
    grid-column: 7 / 13;
    overflow: hidden;
}.course_overview .img_circle::before {
    z-index: 2;
    content: "";
    background: linear-gradient(45deg, rgb(155,154,161,0.5) 0%, transparent 70%);
    left: 0;
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
}.course_overview .img_circle::after {
    z-index: 1;
    border: 2px solid rgb(123,122,129);
    border-radius: 10px;
    content: "";
    bottom: -5px;
    position: absolute;
    clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
    right: -5px;
    width: 70%;
    height: 70%;
    opacity: 0.6;
}.course_overview .head_top {
    width: 5rem;
    z-index: 10;
    top: -2rem;
    position: absolute;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    right: 3rem;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    height: 5rem;
    transition: transform 0.3s ease-out;
    background: #ffffff;
    transform: rotate(-5deg);
}.course_overview .head_top:hover {
    transform: rotate(0deg) scale(1.05);
}.course_overview .head_top svg {
    height: 3rem;
    width: 3rem;
    transition: all 0.3s ease;
}.course_overview .head_top:hover svg {
    transform: scale(1.1);
}.course_overview .head_top svg path {
    fill: rgb(155,154,161);
}.course_overview h3 {
    padding-left: 1rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border-left: 4px solid rgb(155,154,161);
    color: #000000;
    position: relative;
    font-size: 31px;
}.course_overview p {
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 0;
    position: relative;
}.course_overview .virtual_guides::before {
    filter: blur(100px);
    z-index: 1;
    position: absolute;
    content: "";
    background: rgb(155,154,161,0.5);
    animation: moveCircle 20s infinite alternate;
    height: 12rem;
    width: 12rem;
    opacity: 0.6;
    border-radius: 50%;
    top: -6rem;
    left: -6rem;
}.course_overview .virtual_guides::after {
    bottom: -4rem;
    height: 8rem;
    width: 8rem;
    position: absolute;
    right: -4rem;
    filter: blur(80px);
    background: rgb(123,122,129,0.5);
    opacity: 0.5;
    z-index: 1;
    content: "";
    animation: moveCircle 15s infinite alternate-reverse;
    border-radius: 50%;
}.course_overview .skill_path::before {
    border-radius: 0 10px 0 10px;
    height: 5px;
    width: 100px;
    background: linear-gradient(90deg, rgb(155,154,161) 0%, rgb(123,122,129) 100%);
    position: absolute;
    right: 0;
    content: "";
    top: 0;
}.course_overview .skill_path::after {
    content: "";
    bottom: 0;
    width: 5px;
    height: 100px;
    border-radius: 0 0 10px 0;
    background: linear-gradient(180deg, rgb(155,154,161) 0%, rgb(123,122,129) 100%);
    position: absolute;
    right: 0;
}

@keyframes gridShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 4rem 4rem;
    }
}

@keyframes moveCircle {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
    100% {
        transform: translate(-20px, -20px);
    }
}

@media (max-width: 1200px) {.course_overview {
    padding: 7rem 0;
}.course_overview .virtual_guides {
    gap: 0.75rem;
}.course_overview .skill_path {
    grid-column: 1 / 8;
    padding: 2.5rem;
}.course_overview .img_circle {
    grid-column: 6 / 13;
}.course_overview .head_top {
    right: 2rem;
}
}

@media (max-width: 992px) {.course_overview {
    padding: 6rem 0;
}.course_overview .virtual_guides {
    grid-template-rows: auto auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}.course_overview .skill_path {
    grid-row: 2 / 3;
    padding: 2.5rem;
    grid-column: auto;
}.course_overview .img_circle {
    grid-row: 1 / 2;
    grid-column: auto;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
    height: 350px;
}.course_overview .head_top {
    bottom: -2rem;
    right: 3rem;
    top: auto;
}.course_overview h3 {
    font-size: calc(31px * 0.9);
}
}

@media (max-width: 768px) {.course_overview {
    padding: 5rem 0;
}.course_overview .skill_path {
    padding: 2rem;
}.course_overview .img_circle {
    height: 300px;
}.course_overview .head_top {
    bottom: -1.5rem;
    width: 4.5rem;
    right: 2rem;
    height: 4.5rem;
}.course_overview .head_top svg {
    height: 2.5rem;
    width: 2.5rem;
}.course_overview h3 {
    margin-bottom: 1.25rem;
    font-size: calc(31px * 0.8);
}.course_overview p {
    line-height: 1.7;
    font-size: calc(14px * 0.95);
}.course_overview .skill_path::before {
    width: 70px;
}.course_overview .skill_path::after {
    height: 70px;
}
}

@media (max-width: 576px) {.course_overview {
    padding: 4rem 0;
}.course_overview .skill_path {
    padding: 1.5rem;
}.course_overview .img_circle {
    clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
    height: 250px;
}.course_overview .head_top {
    height: 4rem;
    width: 4rem;
    right: 1.5rem;
    bottom: -1.25rem;
}.course_overview .head_top svg {
    width: 2.25rem;
    height: 2.25rem;
}.course_overview h3 {
    font-size: calc(31px * 0.7);
    margin-bottom: 1rem;
    padding-left: 0.75rem;
}.course_overview p {
    line-height: 1.6;
    font-size: calc(14px * 0.9);
}.course_overview .skill_path::before {
    width: 50px;
}.course_overview .skill_path::after {
    height: 50px;
}.course_overview .virtual_guides::before,
    .course_overview .virtual_guides::after {
    display: none;
}}.connect_form {
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(145deg, rgb(188,187,193) 0%, rgba(9, 19, 32, 0.9) 100%);
    position: relative;
}.connect_form::before {
    left: 0;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
    width: 100%;
    opacity: 0.05;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    background: repeating-linear-gradient(
        45deg,
        rgb(155,154,161,0.5) 0px,
        transparent 1px,
        transparent 10px,
        rgb(155,154,161,0.5) 11px
    );
}.connect_form::after {
    left: -50%;
    top: -50%;
    position: absolute;
    height: 200%;
    content: "";
    animation: pulseGlow 15s ease-in-out infinite;
    width: 200%;
    opacity: 0.1;
    background: radial-gradient(circle, rgb(155,154,161,0.5) 0%, transparent 60%);
    pointer-events: none;
}.connect_form .container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    padding: 0 20px;
}.connect_form h2 {
    position: relative;
    font-weight: 700;
    color: #ffffff;
    font-family: Arial, sans-serif;
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 60px;
    font-size: 38px;
}.connect_form h2::after {
    height: 3px;
    background: linear-gradient(to right, transparent, rgb(155,154,161), transparent);
    content: "";
    width: 80px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    bottom: 0;
}.connect_form .inquiry_info {
    display: flex;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}.connect_form .inquiry_info::before {
    content: "";
    background: linear-gradient(to bottom right, rgb(155,154,161,0.5), transparent);
    pointer-events: none;
    position: absolute;
    width: 100%;
    opacity: 0.03;
    height: 100%;
    top: 0;
    left: 0;
}.connect_form .img_circle {
    transform: scale(1.01);
    min-height: 500px;
    position: relative;
    transition: transform 0.6s ease;
    flex: 1;
}.connect_form .img_circle::after {
    top: 0;
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    position: absolute;
    height: 100%;
    content: "";
    width: 100%;
}.connect_form .query_block {
    padding: 50px;
    flex: 1;
    position: relative;
}.connect_form .query_block::before {
    right: 20px;
    height: 50px;
    border-top: 2px solid rgb(155,154,161,0.5);
    opacity: 0.7;
    position: absolute;
    top: 20px;
    width: 50px;
    border-right: 2px solid rgb(155,154,161,0.5);
    content: "";
}.connect_form .query_block::after {
    height: 50px;
    border-left: 2px solid rgb(155,154,161,0.5);
    bottom: 20px;
    border-bottom: 2px solid rgb(155,154,161,0.5);
    opacity: 0.7;
    left: 20px;
    content: "";
    width: 50px;
    position: absolute;
}.connect_form form {
    width: 100%;
}.connect_form form h3 {
    color: #ffffff;
    position: relative;
    font-size: 24px;
    font-family: Arial, sans-serif;
    padding-left: 15px;
    margin-bottom: 30px;
    font-weight: 600;
}.connect_form form h3::before {
    transform: translateY(-50%);
    border-radius: 10px;
    position: absolute;
    left: 0;
    background: rgb(155,154,161);
    content: "";
    top: 50%;
    height: 25px;
    width: 5px;
}.connect_form form input[type="text"] {
    width: 100%;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-size: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 10px;
}.connect_form form input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 15px rgba(rgb(155,154,161), 0.2);
    border-color: rgb(155,154,161);
}.connect_form form input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}.connect_form .query_section {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}.connect_form .query_section input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.connect_form .query_section label {
    line-height: 1.5;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 35px;
}.connect_form .query_section label::before {
    top: 2px;
    position: absolute;
    left: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 22px;
    height: 22px;
    content: "";
    transition: all 0.3s ease;
}.connect_form .query_section input[type="checkbox"]:checked + label::before {
    background: rgb(155,154,161);
    border-color: rgb(155,154,161);
}.connect_form .query_section input[type="checkbox"]:checked + label::after {
    top: 11px;
    position: absolute;
    height: 4px;
    border-left: 2px solid #ffffff;
    content: "";
    transform: rotate(-45deg);
    left: 7px;
    width: 8px;
    border-bottom: 2px solid #ffffff;
}.connect_form .query_section label a {
    color: rgb(155,154,161);
    text-decoration: none;
    transition: all 0.3s ease;
}.connect_form .query_section label a:hover {
    text-decoration: underline;
}.connect_form form .support_form {
    font-weight: 600;
    font-size: 16px;
    border-radius: 10px;
    transition: all 0.4s ease;
    padding: 15px 35px;
    cursor: pointer;
    position: relative;
    border: none;
    z-index: 1;
    background: linear-gradient(45deg, rgb(155,154,161), rgb(123,122,129));
    color: #ffffff;
    overflow: hidden;
    display: inline-block;
    font-family: Arial, sans-serif;
}.connect_form form .support_form::before {
    height: 100%;
    width: 100%;
    content: "";
    transition: all 0.4s ease;
    background: linear-gradient(45deg, rgb(123,122,129), rgb(155,154,161));
    position: absolute;
    z-index: -1;
    left: -100%;
    top: 0;
}.connect_form form .support_form:hover::before {
    left: 0;
}.connect_form form .support_form:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}.connect_form svg {
    fill: rgb(155,154,161);
    width: 24px;
    height: 24px;
    margin-right: 15px;
}.connect_form svg path {
    transition: fill 0.3s ease;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
}

@media screen and (max-width: 991px) {.connect_form {
    padding: 80px 0;
}.connect_form .inquiry_info {
    flex-direction: column;
}.connect_form .img_circle {
    min-height: 300px;
    order: 1;
}.connect_form .query_block {
    padding: 40px 30px;
    order: 2;
}
}

@media screen and (max-width: 767px) {.connect_form {
    padding: 60px 0;
}.connect_form h2 {
    margin-bottom: 40px;
}.connect_form .img_circle {
    min-height: 200px;
}.connect_form .query_block {
    padding: 30px 20px;
}.connect_form form .support_form {
    text-align: center;
    width: 100%;
}
}

@media screen and (max-width: 480px) {.connect_form {
    padding: 40px 0;
}.connect_form h2 {
    font-size: calc(38px * 0.8);
}.connect_form form h3 {
    font-size: calc(24px * 0.9);
}.connect_form .query_block::before,
    .connect_form .query_block::after {
    width: 30px;
    height: 30px;
}}header .top_plank {
    background: rgb(155,154,161);
    color:  #ffffff;
}header .top_plank .plank_banner div svg, header .top_plank .plank_banner div svg path {
    fill: #ffffff;
}header .top_plank .plank_banner div span {
    color: #ffffff;
}header .top_plank .plank_banner {
    justify-content: flex-start;
    flex-wrap: wrap;
    line-height: 21px;
    align-items: center;
    padding: 15px 0 10px 0;
    font-size: 12px;
    display: flex;
    width: 100%;
}header .top_plank .plank_banner div {
    align-items: center;
    margin-right: 24px;
    display: flex;
    justify-content: flex-start;
}header .top_plank .plank_banner div img, header .top_plank .plank_banner div svg {
    height: 16px;
    margin-right: 8px;
    width: 16px;
}.gratBlock {
    justify-content: center;
    perspective: 1000px;
    align-items: center;
    display: flex;
    position: relative;
    background: linear-gradient(135deg, rgb(188,187,193) 0%, #ffffff 100%);
    min-height: 100vh;
    overflow: hidden;
}.gratBlock::before {
    transform: rotate(-5deg) skewX(5deg);
    left: -5%;
    width: 120%;
    position: absolute;
    pointer-events: none;
    background: 
        linear-gradient(120deg, rgb(155,154,161,0.5) 0%, transparent 40%),
        linear-gradient(-120deg, rgb(123,122,129,0.5) 0%, transparent 40%);
    z-index: 0;
    height: 120%;
    top: -10%;
    content: "";
}.gratBlock::after {
    transform: rotate(15deg);
    content: "";
    width: 60%;
    background: linear-gradient(135deg, rgb(155,154,161,0.5) 0%, rgb(123,122,129,0.5) 100%);
    height: 60%;
    right: -20%;
    bottom: -20%;
    z-index: 0;
    opacity: 0.2;
    filter: blur(80px);
    position: absolute;
}.gratBlock .container {
    z-index: 2;
    position: relative;
    transform-style: preserve-3d;
    width: 90%;
    animation: container-entry 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
    max-width: 1200px;
}.gratBlock .virtual_guides {
    transition: transform 0.5s ease;
    padding: calc(2rem + 3vw);
    position: relative;
    transform-style: preserve-3d;
    transform: translateZ(0) rotateX(2deg);
    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(0, 0, 0, 0.02);
    background-color: #ffffff;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 30px), 
        calc(100% - 30px) 100%, 
        0 100%
    );
}.gratBlock .virtual_guides::before {
    bottom: 20px;
    left: 20px;
    border: 1px solid rgb(155,154,161,0.5);
    transform: translateZ(-10px);
    content: "";
    position: absolute;
    top: 20px;
    opacity: 0.4;
    pointer-events: none;
    right: 20px;
}.gratBlock .virtual_guides:hover {
    transform: translateZ(10px) rotateX(0deg);
}.gratBlock .virtual_guides > div:first-child {
    transform: translateZ(20px);
    margin-bottom: 2rem;
    position: relative;
}.gratBlock .virtual_guides > div:first-child::after {
    position: absolute;
    content: "";
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scaleX(1);
    left: 0;
    width: 80px;
    bottom: -10px;
    height: 4px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgb(155,154,161) 0%, rgb(123,122,129) 100%);
}.gratBlock .virtual_guides:hover > div:first-child::after {
    transform: scaleX(1.5);
}.gratBlock h5 {
    transition: transform 0.5s ease;
    font-size: 23px;
    transform: translateZ(30px);
    color: #000000;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}.gratBlock .virtual_guides:hover h5 {
    transform: translateZ(40px);
}.gratBlock .virtual_guides > div:last-child {
    transform: translateZ(10px);
    transition: transform 0.5s ease;
    position: relative;
}.gratBlock .virtual_guides:hover > div:last-child {
    transform: translateZ(20px);
}.gratBlock p {
    font-weight: 400;
    transition: color 0.3s ease, transform 0.5s ease;
    font-size: 15px;
    color: #000000;
    line-height: 1.8;
    margin: 0;
    transform: translateZ(0);
    position: relative;
}.gratBlock a {
    overflow: hidden;
    display: block;
    position: relative;
    transition: transform 0.3s ease;
    text-decoration: none;
}.gratBlock a::before {
    left: 0;
    transform: translateY(10px);
    opacity: 0;
    position: absolute;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        transparent 95%, 
        rgb(155,154,161,0.5) 95%, 
        rgb(155,154,161,0.5) 100%
    );
    transition: opacity 0.3s ease, transform 0.3s ease;
    content: "";
    width: 100%;
    z-index: -1;
    height: 100%;
}.gratBlock a:hover::before {
    transform: translateY(0);
    opacity: 0.2;
}.gratBlock a:hover p {
    color: rgb(155,154,161);
    transform: translateZ(5px);
}

@keyframes container-entry {
    0% {
        opacity: 0;
        transform: translateY(40px) translateZ(-100px) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0) rotateX(0);
    }
}

@media (max-width: 991px) {.gratBlock {
    padding: 4rem 0;
}.gratBlock .virtual_guides {
    padding: calc(1.5rem + 2vw);
    transform: translateZ(0) rotateX(1deg);
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 20px), 
            calc(100% - 20px) 100%, 
            0 100%
        );
}.gratBlock h5 {
    font-size: calc(23px * 0.9);
    line-height: 1.5;
}.gratBlock p {
    line-height: 1.7;
    font-size: calc(15px * 0.95);
}
}

@media (max-width: 767px) {.gratBlock {
    min-height: auto;
}.gratBlock .container {
    width: 95%;
}.gratBlock .virtual_guides {
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 15px), 
            calc(100% - 15px) 100%, 
            0 100%
        );
    transform: none;
    padding: 1.5rem;
}.gratBlock .virtual_guides::before {
    right: 10px;
    top: 10px;
    left: 10px;
    bottom: 10px;
}.gratBlock .virtual_guides > div:first-child::after {
    width: 60px;
    height: 3px;
}.gratBlock h5 {
    font-size: calc(23px * 0.85);
    transform: none;
}.gratBlock p {
    font-size: calc(15px * 0.9);
    line-height: 1.6;
}.gratBlock .virtual_guides:hover h5,
    .gratBlock .virtual_guides:hover > div:last-child,
    .gratBlock .virtual_guides:hover {
    transform: none;
}
}

@media (max-width: 480px) {.gratBlock {
    padding: 3rem 0;
}.gratBlock .virtual_guides {
    padding: 1.25rem;
    box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.08),
            0 3px 10px rgba(0, 0, 0, 0.04),
            0 0 0 1px rgba(0, 0, 0, 0.02);
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 10px), 
            calc(100% - 10px) 100%, 
            0 100%
        );
}.gratBlock h5 {
    line-height: 1.4;
    font-size: calc(23px * 0.8);
}.gratBlock p {
    line-height: 1.5;
    font-size: calc(15px * 0.85);
}.gratBlock .virtual_guides > div:first-child {
    margin-bottom: 1.5rem;
}.gratBlock .virtual_guides > div:first-child::after {
    bottom: -8px;
    height: 3px;
    width: 50px;
}}header {
    padding: 0;
    background: rgb(188,187,193);
    width: 100%;
    position: relative;
    z-index: 100;
}header::before {
    z-index: 0;
    height: 100%;
    left: 0;
    content: '';
    background: linear-gradient(135deg, 
        rgb(155,154,161,0.5) 0%, 
        transparent 60%, 
        rgb(123,122,129,0.5) 100%);
    top: 0;
    position: absolute;
    width: 100%;
    opacity: 0.6;
}header .container {
    padding: 0;
    margin: 0;
    width: 100%;
    position: relative;
    max-width: 100%;
    z-index: 1;
}header .nav_master {
    flex-wrap: wrap;
    padding: 0.8rem 3%;
    align-items: center;
    display: flex;
    justify-content: space-between;
}header .head_mentor {
    margin-right: 1rem;
    padding: 0.6rem;
    display: flex;
    text-decoration: none;
    align-items: center;
    position: relative;
}header .head_mentor::after {
    background: linear-gradient(to right, rgb(155,154,161), rgb(123,122,129));
    left: 0;
    content: '';
    bottom: 0;
    transition: transform 0.3s ease;
    position: absolute;
    transform: scaleX(0.7);
    height: 2px;
    width: 100%;
}header .head_mentor:hover::after {
    transform: scaleX(1);
}header .head_mentor svg {
    width: 140px;
    transition: all 0.3s ease;
    height: auto;
}header .head_mentor:hover svg {
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}header .top_pagebar {
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    gap: 0.4rem;
    display: flex;
    padding: 0.5rem;
}header .top_expert {
    padding: 0.4rem 0.7rem;
    font-size: 19px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    color: #000000;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 400;
    overflow: hidden;
}header .top_expert::after {
    bottom: 0;
    transition: transform 0.3s ease;
    left: 0;
    background: linear-gradient(to right, rgb(155,154,161), rgb(123,122,129));
    transform: scaleX(0);
    height: 2px;
    transform-origin: left;
    content: '';
    width: 100%;
    position: absolute;
}header .top_expert:hover {
    color: rgb(155,154,161);
    background: rgba(255, 255, 255, 0.7);
}header .top_expert:hover::after {
    transform: scaleX(1);
}

@media (max-width: 991px) {header .nav_master {
    padding: 0.7rem 2.5%;
}header .head_mentor svg {
    width: 130px;
}header .top_pagebar {
    padding: 0.4rem;
    gap: 0.35rem;
}header .top_expert {
    font-size: calc(19px - 1px);
    padding: 0.35rem 0.6rem;
}
}

@media (max-width: 767px) {header .nav_master {
    padding: 0.7rem 2%;
    justify-content: center;
}header .head_mentor {
    margin: 0 0 0.6rem 0;
}header .head_mentor svg {
    width: 120px;
}header .top_pagebar {
    justify-content: center;
    width: 100%;
}header .top_expert {
    padding: 0.3rem 0.5rem;
    font-size: calc(19px - 2px);
}
}

@media (max-width: 480px) {header .nav_master {
    padding: 0.6rem 1.5%;
}header .head_mentor svg {
    width: 110px;
}header .top_pagebar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
}header .top_pagebar::-webkit-scrollbar {
    height: 2px;
}header .top_pagebar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(155,154,161);
}header .top_expert {
    flex-shrink: 0;
    white-space: nowrap;
}}.instructor_profile {
    padding: 80px 0;
    background-color: rgb(188,187,193);
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}.instructor_profile::before {
    top: -10%;
    position: absolute;
    width: 120%;
    z-index: 0;
    content: "";
    left: -5%;
    transform: skewY(-5deg);
    background: linear-gradient(
        135deg,
        rgb(123,122,129,0.5) 0%,
        transparent 40%,
        rgb(155,154,161,0.5) 100%
    );
    height: 120%;
}.instructor_profile .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    z-index: 1;
}.instructor_profile .learner_ratings {
    grid-template-columns: 1fr;
    transform: perspective(1000px) rotateY(-2deg);
    padding: 40px;
    gap: 30px;
    transform-style: preserve-3d;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    display: grid;
    border-left: 4px solid rgb(155,154,161);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: rgba(255, 255, 255, 0.95);
}.instructor_profile .learner_ratings:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.07),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}.instructor_profile .learner_ratings > div:first-child {
    transform: translateZ(20px);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    height: 240px;
    transition: transform 0.4s ease-out;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}.instructor_profile .learner_ratings:hover > div:first-child {
    transform: translateZ(40px) translateY(-5px);
}.instructor_profile .learner_ratings .img_circle {
    height: 100%;
    width: 100%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.instructor_profile .learner_ratings:hover .img_circle {
    transform: scale(1.03);
}.instructor_profile .learner_ratings > div:nth-child(2) {
    padding-left: 15px;
    position: relative;
    transform: translateZ(10px);
}.instructor_profile .learner_ratings > div:nth-child(2)::before {
    position: absolute;
    background: linear-gradient(
        to bottom,
        rgb(155,154,161) 0%,
        rgb(123,122,129) 100%
    );
    left: 0;
    top: 0;
    height: 100%;
    content: "";
    transform-origin: top;
    transform: scaleY(0);
    width: 3px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.instructor_profile .learner_ratings:hover > div:nth-child(2)::before {
    transform: scaleY(1);
}.instructor_profile .name {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    position: relative;
    color: #000000;
}.instructor_profile .name::after {
    background-color: rgb(155,154,161);
    width: 40%;
    transition: width 0.4s ease;
    content: "";
    position: absolute;
    height: 2px;
    bottom: -5px;
    left: 0;
}.instructor_profile .learner_ratings:hover .name::after {
    width: 100%;
}.instructor_profile .learner_ratings > div:nth-child(2) > div {
    font-weight: 600;
    color: rgb(123,122,129);
    font-size: calc(12px - 2px);
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-top: 5px;
}.instructor_profile .learner_ratings > div:nth-child(3) {
    transform: translateZ(5px);
    transition: transform 0.4s ease-out;
    position: relative;
}.instructor_profile .learner_ratings:hover > div:nth-child(3) {
    transform: translateZ(15px);
}.instructor_profile .job_area {
    background-color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    color: #000000;
    position: relative;
    padding: 20px 10px 20px 25px;
    border-radius: 10px;
    margin: 0;
    box-shadow: 
        inset 0 0 0 1px rgba(rgb(155,154,161,0.5), 0.1),
        0 10px 30px rgba(0, 0, 0, 0.03);
    font-size: 12px;
}.instructor_profile .job_area::before {
    opacity: 0.4;
    line-height: 1;
    top: 10px;
    position: absolute;
    left: 5px;
    font-size: calc(40px * 1.5);
    content: "";
    color: rgb(155,154,161,0.5);
}

@media screen and (min-width: 768px) {.instructor_profile {
    padding: 100px 0;
}.instructor_profile .learner_ratings {
    grid-template-rows: auto 1fr;
    padding: 50px;
    grid-template-columns: 300px 1fr;
}.instructor_profile .learner_ratings > div:first-child {
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    grid-row: 1 / span 2;
}.instructor_profile .learner_ratings > div:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
    padding-left: 40px;
    align-self: start;
}.instructor_profile .learner_ratings > div:nth-child(3) {
    padding-left: 40px;
    grid-row: 2;
    grid-column: 2;
}.instructor_profile .job_area {
    font-size: calc(12px + 1px);
    padding: 25px 20px 25px 35px;
}
}

@media screen and (min-width: 992px) {.instructor_profile {
    padding: 120px 0;
}.instructor_profile .learner_ratings {
    gap: 40px;
    padding: 60px;
    transform: perspective(1200px) rotateY(-3deg);
    grid-template-columns: 380px 1fr;
}.instructor_profile .name {
    font-size: calc(18px + 2px);
}.instructor_profile .learner_ratings > div:nth-child(2) > div {
    font-size: 12px;
}.instructor_profile .job_area {
    line-height: 1.9;
    padding: 30px 25px 30px 45px;
}.instructor_profile .job_area::before {
    font-size: calc(40px * 2);
}
}

@media (hover: none) {.instructor_profile .learner_ratings {
    transform: none !important;
}.instructor_profile .learner_ratings > div:first-child,
    .instructor_profile .learner_ratings > div:nth-child(3) {
    transform: none !important;
}
}

@media (prefers-reduced-motion) {.instructor_profile .learner_ratings,
    .instructor_profile .learner_ratings > div,
    .instructor_profile .name::after,
    .instructor_profile .img_circle {
    transform: none !important;
    transition: none !important;
}}.course_methodology {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    background: linear-gradient(125deg, rgb(188,187,193), rgb(123,122,129,0.5) 70%);
}.course_methodology::before {
    left: -25%;
    height: 150%;
    width: 150%;
    position: absolute;
    animation: rotateBg 25s linear infinite;
    transform: rotate(-15deg);
    z-index: 1;
    top: -25%;
    content: "";
    background: 
        radial-gradient(circle at 20% 30%, rgb(155,154,161,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(123,122,129,0.5) 0%, transparent 40%);
    opacity: 0.5;
}.course_methodology::after {
    right: 0;
    left: 0;
    content: "";
    bottom: 0;
    animation: hologlow 8s ease-in-out infinite alternate;
    z-index: 2;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px
        );
    top: 0;
    position: absolute;
}.course_methodology .virtual_guides {
    position: relative;
    gap: 4rem;
    margin: 0 auto;
    flex-direction: column;
    display: flex;
    max-width: 1000px;
    transform-style: preserve-3d;
    z-index: 3;
}.course_methodology h3 {
    font-weight: 700;
    transform: translateZ(50px);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    color: #000000;
    text-align: center;
    font-size: 33px;
    margin-bottom: 0;
    animation: floatTitle 6s ease-in-out infinite;
    text-shadow: 0 0 15px rgb(155,154,161,0.5);
}.course_methodology h3::before,
.course_methodology h3::after {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(155,154,161), transparent);
    height: 2px;
    content: "";
}.course_methodology h3::before {
    bottom: -15px;
    transform: translateX(-50%);
    width: 200px;
    left: 50%;
    animation: expandLine 3s ease-in-out infinite alternate;
}.course_methodology h3::after {
    opacity: 0.7;
    left: 50%;
    animation: expandLine 3s ease-in-out 0.5s infinite alternate-reverse;
    width: 100px;
    transform: translateX(-50%);
    bottom: -25px;
}.course_methodology span {
    font-size: 18px;
    line-height: 1.8;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    color: #000000;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease;
    padding: 2.5rem;
    transform: translateZ(30px) translateY(-20px);
    animation: floatContent 8s ease-in-out 1s infinite alternate;
}.course_methodology span::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: rainbowShift 8s linear infinite;
    border-radius: inherit;
    z-index: -1;
    content: "";
    background: linear-gradient(
        135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    position: absolute;
    opacity: 0.8;
}.course_methodology span::after {
    bottom: -5px;
    top: -5px;
    position: absolute;
    right: -5px;
    transform: translateZ(-10px);
    filter: blur(10px);
    z-index: -2;
    animation: glowPulse 4s ease-in-out infinite alternate;
    background: linear-gradient(
        45deg,
        rgb(155,154,161,0.5),
        rgb(123,122,129,0.5),
        rgb(155,154,161,0.5)
    );
    left: -5px;
    opacity: 0.3;
    border-radius: 15px;
    content: "";
}

@keyframes rotateBg {
    0% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(15deg);
    }
}

@keyframes hologlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes floatTitle {
    0%, 100% {
        transform: translateZ(50px) translateY(0);
    }
    50% {
        transform: translateZ(50px) translateY(-15px);
    }
}

@keyframes floatContent {
    0%, 100% {
        transform: translateZ(30px) translateY(-20px) rotateX(2deg);
    }
    50% {
        transform: translateZ(30px) translateY(-10px) rotateX(-2deg);
    }
}

@keyframes expandLine {
    0% {
        width: 50px;
        opacity: 0.5;
    }
    100% {
        width: 200px;
        opacity: 1;
    }
}

@keyframes rainbowShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        filter: blur(10px);
    }
    50% {
        opacity: 0.6;
        filter: blur(15px);
    }
}

@media (max-width: 992px) {.course_methodology {
    padding: 6rem 0;
}.course_methodology h3 {
    transform: translateZ(30px);
    font-size: calc(33px * 0.9);
}.course_methodology span {
    padding: 2rem;
    transform: translateZ(20px) translateY(-15px);
}.course_methodology .virtual_guides {
    margin: 0 2rem;
    gap: 3rem;
}
}

@media (max-width: 768px) {.course_methodology {
    padding: 4rem 0;
    perspective: 500px;
}.course_methodology h3 {
    font-size: calc(33px * 0.8);
    transform: translateZ(20px);
    letter-spacing: 1px;
}.course_methodology span {
    transform: translateZ(10px) translateY(-10px);
    font-size: calc(18px * 0.95);
    padding: 1.5rem;
}.course_methodology .virtual_guides {
    margin: 0 1rem;
    gap: 2rem;
}}.cookie_popup_advisory {
    z-index: 90;
    position: fixed;
    background: rgb(188,187,193);
    bottom: 0;
    border-top: 2px solid rgb(155,154,161);
    width: 100%;
}.track_edu {
    justify-content: space-between;
    padding: 20px 0;
    align-items: center;
    display: flex;
}.cookie_popup_advisory h5 {
    margin-bottom: 6px;
    font-size: 22px;
}#cookie_disclosure {
    display: none;
}#cookie_disclosure:checked ~ .cookie_popup_advisory {
    visibility: hidden;
    opacity: 0;
}.cookie_popup_advisory p {
    font-size: 18px;
}.cookie_confirm {
    margin-right: 10px;
    flex-shrink: 0;
}.cookie_confirm svg, .cookie_confirm svg path, .cookie_confirm img {
    fill: rgb(155,154,161);
    height: 100px;
    width: 100px;
}.consent_comply {
    text-align: center;
    line-height: 35px;
    min-width: 120px;
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    white-space: nowrap;
    color: rgb(155,154,161);
    font-size: 24px;
    border-bottom: 2px solid rgb(155,154,161);
    margin-left: 10px;
}.cookie_popup_advisory p a {
    color: rgb(155,154,161);
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {.cookie_popup_advisory {
    padding: 20px;
}}

.wrap-container .cookie_popup_advisory {
    padding: 40px 0;
    box-shadow: rgb(123,122,129,0.5) 0px 0px 40px 39px;
    background: rgb(123,122,129);
    border: none;
}.wrap-container .consent_comply {
    margin-left: 30px;
    border: none;
    color: #ffffff;
    font-weight: 400;
    padding: 10px;
    font-size: 20px;
    background: rgb(155,154,161);
}.wrap-container .cookie_rules h5, .wrap-container .cookie_rules p {
    color: #ffffff;
}
@media only screen and (max-width: 800px) {.cookie_confirm {
    display: none;
}.track_edu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}.cookie_popup_advisory h5 {
    text-align: center;
}.cookie_popup_advisory p {
    text-align: center;
}.cookie_rules {
    margin-bottom: 20px;
}body .wrap-container .consent_comply {
    margin-left: 0;
    margin-bottom: 10px;
}}.sign_up {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgb(155,154,161,0.5), rgb(123,122,129,0.5));
    overflow: hidden;
}.sign_up::before {
    z-index: 1;
    top: 0;
    content: "";
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.03) 2px,
        transparent 2px,
        transparent 8px
    );
    height: 100%;
    left: 0;
    width: 100%;
    position: absolute;
}.sign_up::after {
    background: rgb(155,154,161);
    content: "";
    height: 120%;
    top: -10%;
    opacity: 0.1;
    z-index: 0;
    transform: rotate(15deg);
    right: -5%;
    width: 35%;
    position: absolute;
}.sign_up .container {
    margin: 0 auto;
    position: relative;
    padding: 0 1.5rem;
    max-width: 1200px;
    z-index: 5;
}.sign_up .virtual_guides {
    display: grid;
    gap: 2rem;
    transform: translateZ(0);
    position: relative;
    overflow: hidden;
    background: #ffffff;
    grid-template-columns: 1fr;
    padding: 2.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}.sign_up .virtual_guides::before {
    height: 100%;
    background: rgb(155,154,161);
    width: 6px;
    content: "";
    top: 0;
    position: absolute;
    left: 0;
    z-index: 2;
}.sign_up .virtual_guides::after {
    position: absolute;
    content: "";
    right: 0;
    height: 6px;
    bottom: 0;
    z-index: 2;
    background: rgb(123,122,129);
    width: 40%;
    transform-origin: right;
}.sign_up h4 {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    margin: 0 0 0.5rem;
    line-height: 1.4;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    transform: translateY(0);
    color: #000000;
}.sign_up .input_holder {
    grid-template-columns: 1fr;
    gap: 1rem;
    position: relative;
    display: grid;
}.sign_up .input_holder span {
    display: block;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}.sign_up .input_holder span:hover {
    transform: translateY(-2px);
}.sign_up .input_holder input[type="email"] {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.08);
    outline: none;
    color: #000000;
    font-family: Arial, sans-serif;
    width: 100%;
    transition: all 0.3s ease;
    background: #ffffff;
    font-size: 14px;
}.sign_up .input_holder input[type="email"]:focus {
    border-color: rgb(155,154,161);
    box-shadow: 0 0 0 3px rgb(155,154,161,0.5);
}.sign_up .input_holder input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s ease;
}.sign_up .input_holder input[type="email"]:focus::placeholder {
    opacity: 0.5;
}.sign_up .sub_banners {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
    border: none;
    width: 100%;
    font-size: 17px;
    font-family: Arial, sans-serif;
    position: relative;
    font-weight: 600;
    z-index: 1;
    padding: 1rem 1.5rem;
    color: #ffffff;
    background: rgb(155,154,161);
    cursor: pointer;
}.sign_up .sub_banners:hover {
    transform: translateY(-2px);
    background: #000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}.sign_up .sub_banners:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}.sign_up .sub_banners::before {
    content: "";
    top: 0;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transition: transform 0.6s ease;
    position: absolute;
    z-index: -1;
    width: 100%;
    left: -100%;
    height: 100%;
}.sign_up .sub_banners:hover::before {
    transform: translateX(200%);
}

@media (min-width: 768px) {.sign_up {
    padding: 6rem 0;
}.sign_up .virtual_guides {
    grid-template-columns: 1fr 1fr;
    padding: 3rem;
    align-items: center;
    gap: 3rem;
}.sign_up .input_holder {
    gap: 1rem;
    grid-template-columns: 2fr 1fr;
}.sign_up h4 {
    margin: 0;
    font-size: calc(20px * 1.1);
}.sign_up .virtual_guides::after {
    width: 25%;
}
}

@media (min-width: 992px) {.sign_up .virtual_guides {
    padding: 4rem;
    gap: 4rem;
}.sign_up h4 {
    font-size: calc(20px * 1.2);
}.sign_up .input_holder input[type="email"] {
    padding: 1.1rem 1.5rem;
}.sign_up .sub_banners {
    padding: 1.1rem 2rem;
}.sign_up .virtual_guides:hover h4 {
    transform: translateY(-3px);
}
}

@media (max-width: 767px) {.sign_up {
    padding: 3rem 0;
}.sign_up .virtual_guides {
    padding: 2rem;
}.sign_up h4 {
    margin-bottom: 1.5rem;
    font-size: 14px;
}.sign_up .input_holder span {
    margin-bottom: 0.5rem;
}.sign_up .input_holder input[type="email"],
    .sign_up .sub_banners {
    padding: 0.9rem 1rem;
}
}

@media (max-width: 480px) {.sign_up {
    padding: 2.5rem 0;
}.sign_up .virtual_guides {
    padding: 1.5rem;
}.sign_up h4 {
    font-size: calc(14px * 0.95);
}.sign_up .virtual_guides::before {
    width: 4px;
}.sign_up .virtual_guides::after {
    height: 4px;
    width: 50%;
}
}

@media (prefers-reduced-motion: reduce) {.sign_up .virtual_guides:hover h4,
    .sign_up .input_holder span:hover,
    .sign_up .sub_banners:hover,
    .sign_up .sub_banners:hover::before {
    transform: none;
    transition: none;
}}.our_background {
    position: relative;
    background: linear-gradient(135deg, rgb(188,187,193) 0%, rgba(0, 0, 0, 0.5) 100%);
    overflow: hidden;
    padding: 120px 0;
}.our_background::before {
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgb(155,154,161,0.5) 0%, transparent 50%);
    animation: pulse 15s infinite alternate;
    z-index: 1;
    content: '';
    position: absolute;
}.our_background::after {
    content: '';
    bottom: 0;
    animation: pulse 20s infinite alternate-reverse;
    width: 100%;
    background: radial-gradient(circle at 90% 80%, rgb(123,122,129,0.5) 0%, transparent 50%);
    height: 100%;
    z-index: 1;
    position: absolute;
    right: 0;
}@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.95);
    }
}

.our_background .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 5;
}.our_background .virtual_guides {
    display: grid;
    align-items: center;
    position: relative;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}.our_background .virtual_guides::before {
    animation: borderPulse 8s infinite alternate;
    top: -20px;
    width: calc(100% + 40px);
    z-index: -1;
    content: '';
    height: calc(100% + 40px);
    border: 1px solid rgb(155,154,161,0.5);
    position: absolute;
    left: -20px;
    transform: rotate(-1deg);
    opacity: 0.4;
    border-radius: 16px;
}@keyframes borderPulse {
    0% {
        border-color: rgb(155,154,161,0.5);
    }
    50% {
        border-color: rgb(123,122,129,0.5);
    }
    100% {
        border-color: rgb(155,154,161,0.5);
    }
}

.our_background .guide_approach {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    padding: 30px;
    border-radius: 16px;
}.our_background .guide_approach:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}.our_background .img_circle {
    margin-bottom: 25px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
    border: 4px solid #ffffff;
    width: 200px;
    height: 200px;
    position: relative;
}.our_background .img_circle::before {
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    position: absolute;
    border: 1px solid rgb(155,154,161,0.5);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
    content: '';
}.our_background .img_circle::after {
    animation: rotate 25s linear infinite reverse;
    border-radius: 50%;
    border: 1px dashed rgb(123,122,129,0.5);
    bottom: -20px;
    right: -20px;
    content: '';
    top: -20px;
    left: -20px;
    position: absolute;
}@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.our_background .learn_guides {
    z-index: 2;
    width: 100%;
    position: relative;
    text-align: center;
}.our_background .how_started {
    margin-bottom: 5px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    color: #ffffff;
    font-size: 24px;
}.our_background .how_started::after {
    transition: width 0.3s ease;
    left: 50%;
    width: 50px;
    bottom: -8px;
    transform: translateX(-50%);
    position: absolute;
    background: rgb(155,154,161);
    height: 2px;
    content: '';
}.our_background .guide_approach:hover .how_started::after {
    width: 100px;
}.our_background .learning_experts {
    margin-top: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 14px;
    color: rgb(123,122,129);
}.our_background .text_post {
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transform: perspective(1000px) rotateY(-2deg);
    background: rgba(255, 255, 255, 0.03);
    transition: transform 0.5s ease;
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}.our_background .text_post:hover {
    transform: perspective(1000px) rotateY(0);
}.our_background .text_post::before {
    border-left: 2px solid rgb(155,154,161);
    top: 20px;
    content: '';
    left: 20px;
    border-top: 2px solid rgb(155,154,161);
    width: 40px;
    opacity: 0.5;
    height: 40px;
    position: absolute;
}.our_background .text_post::after {
    border-bottom: 2px solid rgb(123,122,129);
    content: '';
    right: 20px;
    opacity: 0.5;
    border-right: 2px solid rgb(123,122,129);
    width: 40px;
    bottom: 20px;
    position: absolute;
    height: 40px;
}.our_background .learning_track {
    align-items: center;
    color: rgb(155,154,161);
    display: flex;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}.our_background .learning_track svg {
    margin-right: 10px;
    fill: rgb(155,154,161);
    height: 40px;
    width: 40px;
    transition: transform 0.5s ease;
}.our_background .learning_track svg path {
    transition: fill 0.3s ease;
    fill: rgb(155,154,161);
}.our_background h2 {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 35px;
    padding-bottom: 15px;
    position: relative;
}.our_background h2::after {
    left: 0;
    width: 80px;
    position: absolute;
    content: '';
    bottom: 0;
    background: linear-gradient(90deg, rgb(155,154,161) 0%, rgb(123,122,129) 100%);
    transition: width 0.5s ease;
    height: 3px;
}.our_background .text_post:hover h2::after {
    width: 120px;
}.our_background p {
    font-size: 14px;
    margin-bottom: 0;
    position: relative;
    line-height: 1.8;
    color: #000000;
}

@media (max-width: 992px) {.our_background {
    padding: 80px 0;
}.our_background .container {
    padding: 0 20px;
}.our_background .virtual_guides {
    grid-template-columns: 1fr;
    gap: 30px;
}.our_background .guide_approach {
    max-width: 400px;
    margin: 0 auto;
}.our_background .text_post {
    transform: none;
    padding: 30px;
}.our_background h2 {
    font-size: calc(35px * 0.9);
}
}

@media (max-width: 768px) {.our_background {
    padding: 60px 0;
}.our_background .virtual_guides::before {
    display: none;
}.our_background .img_circle {
    height: 150px;
    width: 150px;
}.our_background .img_circle::before,
    .our_background .img_circle::after {
    display: none;
}.our_background .guide_approach {
    padding: 20px;
}.our_background .text_post {
    padding: 25px 20px;
}.our_background .text_post::before,
    .our_background .text_post::after {
    height: 25px;
    width: 25px;
}.our_background h2 {
    font-size: calc(35px * 0.8);
    margin-bottom: 20px;
}.our_background .learning_track svg {
    width: 30px;
    height: 30px;
}
}

@media (max-width: 480px) {.our_background {
    padding: 40px 0;
}.our_background .img_circle {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}.our_background .how_started {
    font-size: calc(24px * 0.9);
}.our_background .learning_experts {
    font-size: calc(14px * 0.9);
}.our_background .learning_track {
    font-size: calc(20px * 0.9);
}.our_background h2 {
    padding-bottom: 10px;
    font-size: calc(35px * 0.7);
}.our_background p {
    line-height: 1.6;
    font-size: calc(14px * 0.9);
}}.price_card_item {
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.price_card_item::before {
    z-index: 1;
    position: absolute;
    top: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    right: 0;
    left: 0;
    content: "";
    bottom: 0;
}.price_card_item .container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    z-index: 2;
    position: relative;
}.sub_options {
    position: relative;
}.price_card_item h2 {
    transform: translateY(0);
    color: #ffffff;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s ease;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    font-size: 29px;
    text-align: center;
    position: relative;
    opacity: 1;
    margin-bottom: 25px;
}.price_card_item h2::after {
    transition: transform 0.4s ease;
    content: "";
    margin: 20px auto 0;
    transform: scaleX(1);
    width: 80px;
    display: block;
    height: 3px;
    background: linear-gradient(90deg, rgb(123,122,129), rgb(155,154,161));
}.price_card_item:hover h2::after {
    transform: scaleX(1.2);
}.price_card_item .rate_plans {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    font-size: calc(15px + 2px);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    line-height: 1.6;
    opacity: 0.9;
    margin: 0 auto 60px;
}.price_card_item .plan_fees {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
}.price_card_item .plan_fees li {
    margin: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.price_card_item .plan_fees li:hover {
    transform: translateY(-10px);
    z-index: 10;
}.price_card_item .trial_pricing {
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: none;
    display: block;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    -webkit-backdrop-filter: blur(10px);
}.price_card_item .trial_pricing::before {
    position: absolute;
    background: linear-gradient(230deg, rgb(123,122,129,0.5) 0%, transparent 80%);
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    transition: opacity 0.5s ease;
    opacity: 0;
    top: 0;
}.price_card_item .trial_pricing:hover {
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}.price_card_item .trial_pricing:hover::before {
    opacity: 0.2;
}.price_card_item .learning_pricing {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
}.price_card_item .annual_fee {
    height: 100%;
    flex-direction: column;
    display: flex;
}.price_card_item .annual_fee h4 {
    margin-top: 0;
    transition: transform 0.3s ease;
    padding-bottom: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: calc(24px + 2px);
    position: relative;
    font-weight: 600;
}.price_card_item .annual_fee h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 40px;
    transition: width 0.4s ease;
    left: 0;
    height: 2px;
    background: rgb(155,154,161);
}.price_card_item .trial_pricing:hover .annual_fee h4::after {
    width: 60px;
}.price_card_item .annual_fee p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.6;
    transition: color 0.3s ease;
    flex-grow: 1;
    position: relative;
}.price_card_item .trial_pricing:hover .annual_fee p {
    color: #ffffff;
}.price_card_item .learning_packages {
    padding: 10px 0;
    background: linear-gradient(90deg, rgb(123,122,129) 0%, rgb(155,154,161) 100%);
    color: #ffffff;
    -webkit-background-clip: text !important;
    font-weight: 700;
    background-clip: text !important;
    font-size: calc(24px + 4px);
    display: inline-block;
    margin-top: auto;
    transition: transform 0.3s ease;
    position: relative;
    -webkit-text-fill-color: transparent;
}.price_card_item .learning_packages::before {
    position: absolute;
    height: 1px;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(123,122,129) 0%, transparent 100%);
}.price_card_item .trial_pricing:hover .learning_packages {
    transform: scale(1.05);
}

@media (max-width: 992px) {.price_card_item {
    padding: 90px 0;
}.price_card_item .plan_fees {
    grid-template-columns: repeat(2, 1fr);
}.price_card_item .learning_pricing {
    padding: 30px 25px;
}
}

@media (max-width: 768px) {.price_card_item {
    padding: 70px 0;
}.price_card_item h2 {
    font-size: calc(29px - 4px);
}.price_card_item .rate_plans {
    font-size: 15px;
    margin-bottom: 40px;
}.price_card_item .plan_fees {
    gap: 20px;
    grid-template-columns: 1fr;
}.price_card_item .learning_pricing {
    padding: 25px 20px;
}.price_card_item .learning_packages {
    font-size: calc(24px + 2px);
}
}

@media (max-width: 480px) {.price_card_item {
    padding: 60px 0;
}.price_card_item h2 {
    font-size: calc(29px - 6px);
}.price_card_item .annual_fee h4 {
    font-size: 24px;
}.price_card_item .annual_fee p {
    font-size: calc(15px - 1px);
}}.title_welcome {
    background: linear-gradient(135deg, rgb(188,187,193) 0%, rgb(155,154,161,0.5) 100%);
    perspective: 1000px;
    min-height: 100vh;
    justify-content: center;
    position: relative;
    align-items: center;
    display: flex;
    overflow: hidden;
}.title_welcome::before {
    content: "";
    pointer-events: none;
    opacity: 0.05;
    background: repeating-linear-gradient(
    45deg,
    rgb(155,154,161,0.5) 0px,
    rgb(155,154,161,0.5) 1px,
    transparent 1px,
    transparent 20px
  );
    top: 0;
    left: 0;
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
}.title_welcome::after {
    width: 40%;
    right: -10%;
    opacity: 0.2;
    background: radial-gradient(
    circle at center,
    rgb(123,122,129) 0%,
    transparent 70%
  );
    height: 40%;
    animation: float 18s infinite ease-in-out;
    position: absolute;
    filter: blur(60px);
    content: "";
    top: -10%;
}.title_welcome .intro_title {
    animation: fadeInUp 1s ease-out forwards;
    position: relative;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    transform-style: preserve-3d;
    max-width: 1200px;
    width: 90%;
    z-index: 5;
}.title_welcome .intro_title > div:first-child {
    position: relative;
    box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-left: 3px solid rgb(123,122,129);
    padding: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.01)
  );
    transform: translateZ(50px);
}.title_welcome .intro_title > div:first-child:hover {
    transform: translateZ(70px) scale(1.02);
}.title_welcome h3 {
    transition: transform 0.4s ease-out;
    position: relative;
    color: rgb(155,154,161);
    margin: 0;
    transform: translateX(0);
    font-size: calc(21px * 1.1);
    letter-spacing: 0.02em;
    line-height: 1.5;
    font-weight: 600;
}.title_welcome .intro_title > div:first-child:hover h3 {
    transform: translateX(10px);
}.title_welcome .intro_title > div:nth-child(2) {
    perspective: 800px;
    position: relative;
}.title_welcome .growth_hist {
    background: linear-gradient(
    145deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
    padding: 3rem;
    box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 2px 5px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.1);
    transform-origin: bottom center;
    transition: 
    transform 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67),
    box-shadow 0.6s ease;
    transform: rotateX(5deg);
    position: relative;
}.title_welcome .growth_hist:hover {
    transform: rotateX(0);
    box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 2px 5px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}.title_welcome .growth_hist::before {
    background: linear-gradient(
    to right,
    rgb(155,154,161),
    rgb(123,122,129)
  );
    left: 0;
    height: 5px;
    right: 0;
    position: absolute;
    content: "";
    z-index: 1;
    top: 0;
}.title_welcome h1 {
    margin: 0 0 2rem 0;
    letter-spacing: -0.01em;
    transition: transform 0.5s ease;
    font-weight: 700;
    color: #000000;
    position: relative;
    transform: translateY(0);
    line-height: 1.2;
    font-size: 44px;
}.title_welcome .growth_hist:hover h1 {
    transform: translateY(-5px);
}.title_welcome h1::after {
    transition: transform 0.5s ease;
    position: absolute;
    left: 0;
    transform-origin: left;
    width: 80px;
    background: rgb(123,122,129);
    content: "";
    height: 3px;
    transform: scaleX(1);
    bottom: -10px;
}.title_welcome .growth_hist:hover h1::after {
    transform: scaleX(1.5);
}.title_welcome .growth_hist > div {
    border-radius: 10px;
    box-shadow: 
    0 15px 25px rgba(0, 0, 0, 0.1),
    0 5px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    position: relative;
    transform: translateY(0);
}.title_welcome .growth_hist:hover > div {
    transform: translateY(5px);
}.title_welcome .growth_hist > div::before {
    bottom: 0;
    z-index: 1;
    top: 0;
    left: 0;
    content: "";
    background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
    position: absolute;
    right: 0;
}.title_welcome p {
    text-align: center;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 3rem 2rem;
    line-height: 1.6;
    font-size: calc(12px * 1.2);
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

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

@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-5%, 5%);
  }
  50% {
    transform: translate(5%, 10%);
  }
  75% {
    transform: translate(-3%, 3%);
  }
  100% {
    transform: translate(0, 0);
  }
}

@media (min-width: 768px) {.title_welcome .intro_title {
    gap: 3rem;
    grid-template-columns: 0.8fr 1.2fr;
}.title_welcome h1 {
    font-size: calc(44px * 1.1);
}.title_welcome p {
    padding: 4rem 3rem;
    font-size: calc(12px * 1.3);
}.title_welcome .intro_title > div:first-child {
    padding: 3rem;
    align-self: center;
}
}

@media (min-width: 992px) {.title_welcome .intro_title {
    gap: 4rem;
    grid-template-columns: 0.7fr 1.3fr;
}.title_welcome h1 {
    font-size: calc(44px * 1.2);
}.title_welcome h3 {
    font-size: calc(21px * 1.2);
}
}

@media (max-width: 767px) {.title_welcome {
    padding: 4rem 1rem;
}.title_welcome .intro_title > div:first-child {
    padding: 1.5rem;
}.title_welcome h3 {
    font-size: 21px;
}.title_welcome .growth_hist {
    padding: 2rem 1.5rem;
}.title_welcome h1 {
    font-size: calc(35px * 1.1);
    margin-bottom: 1.5rem;
}.title_welcome p {
    padding: 2rem 1.5rem;
    font-size: 12px;
}
}

@media (max-width: 480px) {.title_welcome {
    padding: 3rem 1rem;
}.title_welcome .intro_title > div:first-child {
    padding: 1.25rem;
}.title_welcome h3 {
    font-size: calc(17px * 1.1);
}.title_welcome .growth_hist {
    padding: 1.5rem 1rem;
}.title_welcome h1 {
    margin-bottom: 1rem;
    font-size: 35px;
}}.privacy_compartment {
    font-family: Arial, sans-serif;
    background-color: rgb(188,187,193);
    border: 1px solid #000000;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}.privacy_compartment h1 {
    color: #000000;
    text-transform: uppercase;
    font-weight: 700;
    margin: 20px 0;
    font-size: 30px;
}.privacy_compartment h2 {
    margin: 15px 0;
    color: #000000;
    font-size: 24px;
    font-weight: 600;
}.privacy_compartment h3, .privacy_compartment h4, .privacy_compartment h5, .privacy_compartment h6 {
    margin: 10px 0;
    color: #000000;
    font-size: 24px;
}.privacy_compartment ul {
    padding-left: 20px;
    color: #000000;
    margin: 15px 0;
    list-style-type: square;
}.privacy_compartment li {
    font-size: 12px;
    line-height: 1.8;
}
@media only screen and (max-width: 800px) {.privacy_compartment {
    padding: 20px;
}.privacy_compartment h1 {
    font-size: 24px;
}.privacy_compartment h2 {
    font-size: 18px;
}.privacy_compartment ul {
    font-size: 12px;
}}
.educational_gains {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(188,187,193) 0%, rgba(245, 245, 250, 0.95) 100%);
}.educational_gains::before {
    z-index: 0;
    position: absolute;
    height: 300px;
    content: '';
    background: radial-gradient(circle, rgb(123,122,129,0.5) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    width: 300px;
    filter: blur(40px);
}.educational_gains::after {
    filter: blur(30px);
    background: radial-gradient(circle, rgb(155,154,161,0.5) 0%, transparent 70%);
    left: -5%;
    z-index: 0;
    width: 250px;
    height: 250px;
    bottom: -10%;
    position: absolute;
    content: '';
}.educational_gains .container {
    padding: 0 20px;
    max-width: 1200px;
    z-index: 1;
    position: relative;
    margin: 0 auto;
}.educational_gains .virtual_guides {
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05),
                -20px -20px 60px rgba(255, 255, 255, 0.8);
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    display: flex;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 248, 252, 0.8));
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    flex-direction: column-reverse;
    gap: 40px;
}.educational_gains .virtual_guides:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.03),
                -15px -15px 30px rgba(255, 255, 255, 0.9);
}.educational_gains .text_post {
    z-index: 2;
    position: relative;
}.educational_gains h4 {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    transform: translateZ(10px);
    color: #000000;
    position: relative;
    margin-bottom: 25px;
}.educational_gains h4::after {
    width: 60px;
    transform: scaleX(0);
    content: '';
    position: absolute;
    transition: transform 0.5s ease-out;
    left: 0;
    height: 3px;
    transform-origin: left;
    bottom: -8px;
    background: rgb(123,122,129);
}.educational_gains .virtual_guides:hover h4::after {
    transform: scaleX(1);
}.educational_gains .text_post > div {
    display: flex;
    gap: 20px;
    flex-direction: column;
}.educational_gains ul {
    list-style: none;
    margin: 0;
    padding: 0;
}.educational_gains li {
    animation-delay: calc(var(--i, 0) * 0.1s);
    transform: translateX(-10px);
    opacity: 0;
    margin-bottom: 15px;
    animation: slideIn 0.5s forwards;
}.educational_gains li:nth-child(1) {
    --i: 1;
}.educational_gains li:nth-child(2) {
    --i: 2;
}.educational_gains li:nth-child(3) {
    --i: 3;
}.educational_gains li:nth-child(4) {
    --i: 4;
}.educational_gains li:nth-child(5) {
    --i: 5;
}.educational_gains li p {
    transition: all 0.3s ease;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.03),
                -5px -5px 10px rgba(255, 255, 255, 0.8);
    padding: 12px 15px;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffffff, #f0f0f5);
    color: #000000;
    display: flex;
}.educational_gains li p:hover {
    transform: translateY(-3px);
    box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.05),
                -8px -8px 15px rgba(255, 255, 255, 0.9);
}.educational_gains li p span:first-child {
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    display: flex;
}.educational_gains li p span:last-child {
    line-height: 1.5;
}.educational_gains svg {
    height: 24px;
    transform-origin: center;
    width: 24px;
    transition: transform 0.3s ease;
}.educational_gains li:hover svg {
    transform: scale(1.1) rotate(5deg);
}.educational_gains svg path {
    transition: fill 0.3s ease;
    fill: rgb(123,122,129);
}.educational_gains li:hover svg path {
    fill: rgb(155,154,161);
}.educational_gains .img_circle {
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
    height: auto;
    filter: saturate(1.1) contrast(1.05);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
}.educational_gains .virtual_guides:hover .img_circle {
    transform: perspective(1000px) rotateY(0deg);
}

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

@media (min-width: 768px) {.educational_gains {
    padding: 100px 0;
}.educational_gains .virtual_guides {
    gap: 60px;
    padding: 50px;
    align-items: center;
    flex-direction: row;
}.educational_gains .text_post {
    flex: 1;
}.educational_gains .text_post > div {
    gap: 30px;
    flex-wrap: wrap;
    flex-direction: row;
}.educational_gains .text_post > div > div {
    min-width: 280px;
    flex: 1;
}.educational_gains h4 {
    font-size: 31px;
    margin-bottom: 35px;
}.educational_gains .img_circle {
    object-position: center;
    transform: perspective(1000px) rotateY(-8deg) translateZ(20px);
    height: 400px;
    width: 40%;
}
}

@media (min-width: 992px) {.educational_gains .virtual_guides {
    padding: 60px;
}.educational_gains .img_circle {
    width: 45%;
    height: 450px;
}.educational_gains li p {
    padding: 16px 20px;
}
}

@media (min-width: 1200px) {.educational_gains .virtual_guides {
    gap: 80px;
    padding: 70px;
}.educational_gains h4 {
    margin-bottom: 45px;
}.educational_gains .img_circle {
    height: 500px;
}
}

@media (hover: none) {.educational_gains .virtual_guides,
    .educational_gains .virtual_guides:hover,
    .educational_gains .img_circle,
    .educational_gains .virtual_guides:hover .img_circle {
    transform: none;
}
}