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

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

header,footer {
    width: 100%;
}


header {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: fixed;
    width: 100%;
    background: linear-gradient(120deg, 
        rgb(218,188,188) 0%, 
        rgb(218,188,188,0.5) 100%
    );
    left: 0;
}

header .main_lead:after {
    content: '';
    filter: blur(8px);
    width: 60px;
    top: 50%;
    background-image: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
    transform: translateY(-50%);
    height: 60px;
    left: 0;
    position: absolute;
    opacity: 0.5;
}

header .head_sitewrap:before {
    content: '';
    opacity: 0.5;
    position: absolute;
    transform: translateY(-50%) translateX(-40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
}

header .head_mainbar {
    align-items: center;
    position: relative;
    display: flex;
    gap: 30px;
}

header .head_mainbar:hover:before {
    opacity: 0.7;
}

header .nav_main {
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #ffffff;
    padding: 8px 0;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
}

header .nav_main:hover {
    color: #ffffff;
    transform: translateX(5px);
}

header .nav_main:hover:after {
    transform: translateY(-50%) scaleX(1);
}

header .page_header:before {
    height: calc(100% + 20px);
    content: '';
    left: -10px;
    top: -10px;
    position: absolute;
    width: calc(100% + 20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
}

header .page_header:hover svg {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.program_results::after {
    width: 100%;
    content: "";
    transform: rotate(-15deg);
    position: absolute;
    right: -50%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(rgb(194,154,154,0.5), 0.08) 0%, transparent 70%);
    top: -50%;
    z-index: 1;
}

.program_results .learning_studio {
    gap: 60px;
    align-items: center;
    display: flex;
    perspective: 1000px;
    justify-content: space-between;
    transform-style: preserve-3d;
}

.program_results h4 {
    font-size: calc(24px * 1.2);
    line-height: 1.4;
    font-weight: 700;
    position: relative;
    margin-bottom: 30px;
    color: #000000;
}

.program_results h4::after {
    height: 3px;
    width: 60px;
    border-radius: 10px;
    background: linear-gradient(to right, rgb(194,154,154), rgba(rgb(194,154,154,0.5), 0.5));
    transition: width 0.4s ease;
    bottom: -10px;
    left: 0;
    position: absolute;
    content: "";
}

.program_results li p {
    font-size: 13px;
    color: #000000;
    align-items: flex-start;
    gap: 15px;
    display: flex;
    line-height: 1.6;
    margin: 0;
}

.program_results li p span:last-child {
    padding-top: 6px;
}

.program_results svg {
    transition: transform 0.3s ease;
    height: 20px;
    width: 20px;
    transform: translateZ(0);
}

.program_results svg path {
    transition: fill 0.3s ease;
    fill: rgb(194,154,154);
}

.program_results .image_panel {
    border-radius: 12px;
    height: auto;
    max-width: 500px;
    box-shadow: 
        20px 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.12),
        -5px -5px 30px rgba(#ffffff, 0.7);
    object-fit: cover;
    flex: 0 0 40%;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 85%,
        85% 100%,
        0 100%
    );
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
    transform: translateZ(20px) rotateY(5deg);
}

.contact_panel h3 {
    position: relative;
    font-family: Arial, sans-serif;
    font-size: 32px;
    margin-bottom: 70px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
    color: #000000;
}

.contact_panel .inquiry_widget {
    flex-direction: column;
    background: #ffffff;
    display: flex;
    z-index: 1;
    position: relative;
    padding: 80px;
    justify-content: center;
    flex: 1 1 55%;
}

.contact_panel .inquiry_widget h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 40px;
}

.contact_panel .inquiry_widget textarea {
    height: 150px;
    border-radius: 25px;
    resize: vertical;
    padding-top: 25px;
}

.contact_panel .inquiry_widget .support_grid {
    align-items: flex-start;
    margin-bottom: 30px;
    justify-content: center;
    display: flex;
}

.contact_panel .inquiry_widget .support_grid input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.contact_panel .inquiry_widget .support_grid input[type="checkbox"]:checked + label::before {
    background-color: rgb(218,188,188);
    border-color: rgb(218,188,188);
}

.contact_panel .inquiry_widget .support_grid a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: rgb(218,188,188);
    font-weight: 600;
}

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

.contact_panel .inquiry_list h4 {
    font-size: 22px;
    z-index: 1;
    font-weight: 300;
    color: #ffffff;
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}

.contact_panel .inquiry_list .request_list {
    list-style: none;
    max-width: 300px;
    z-index: 1;
    margin: 0 auto;
    padding: 0;
    position: relative;
}

.contact_panel .inquiry_list .request_list li:last-child {
    margin-bottom: 0;
}

.contact_panel .inquiry_list .request_list li:hover {
    transform: translateX(5px);
}

.contact_panel .inquiry_list .request_list li span {
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    color: #ffffff;
}

.contact_panel .inquiry_list .request_list li a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.statistical_overview::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    filter: blur(60px);
    background: 
        radial-gradient(circle at 20% 20%, rgb(218,188,188,0.5) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgb(194,154,154,0.5) 0%, transparent 30%);
    z-index: -1;
}

.statistical_overview .statistics_pros::before {
    border: 2px dashed rgb(218,188,188,0.5);
    top: -10px;
    bottom: -10px;
    border-radius: 50%;
    right: -10px;
    animation: rotate 60s linear infinite;
    position: absolute;
    left: -10px;
    content: "";
    pointer-events: none;
}

.statistical_overview .growth_statistics {
    max-width: 250px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    color: #000000;
}

.statistical_overview .statistics_perks {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 220px;
    align-items: center;
    overflow: hidden;
    flex-direction: column;
    height: 120px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: absolute;
    display: flex;
    text-align: center;
    background: linear-gradient(145deg, #ffffff, #f5f7fa);
    justify-content: center;
    padding: 30px;
    border-radius: 19px;
}

.statistical_overview .statistics_perks {
    width: 220px;
    box-sizing: border-box;
    height: 120px;
    position: absolute;
}

.statistical_overview .statistics_perks:nth-child(1):hover,
.statistical_overview .statistics_perks:nth-child(3):hover,
.statistical_overview .statistics_perks:nth-child(5):hover,
.statistical_overview .statistics_perks:nth-child(7):hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transform: translate(5%, -50%);
}

.statistical_overview .statistics_perks h4 {
    margin: 0 0 10px;
    color: rgb(218,188,188);
    font-weight: 700;
    font-size: calc(33px + 0.5rem);
}

.statistical_overview .statistics_perks:hover svg {
    transform: rotate(15deg) scale(1.2);
    fill: rgb(218,188,188);
}

.sample_docs::after {
    background: 
        linear-gradient(rgba(rgb(218,188,188), 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(rgb(218,188,188), 0.2) 1px, transparent 1px);
    opacity: 0.15;
    height: 100%;
    background-position: center;
    content: "";
    top: 0;
    position: absolute;
    z-index: -1;
    animation: gridAnimate 15s linear infinite;
    background-size: 30px 30px;
    width: 100%;
    left: 0;
}

.sample_docs .company_holder h3::after {
    left: 0;
    box-shadow: 0 0 10px rgb(218,188,188);
    bottom: -5px;
    height: 2px;
    background: rgb(218,188,188);
    content: "";
    position: absolute;
    width: 30%;
}

.sample_docs .main_teach {
    display: grid;
    width: 100%;
    gap: 3rem;
    grid-template-columns: repeat(2, 1fr);
}

.sample_docs .head_mainbar::before {
    position: absolute;
    top: 0;
    height: 0;
    content: "";
    width: 3px;
    background: rgb(218,188,188);
    left: 0;
    transition: height 0.3s ease;
}

.sample_docs .head_mainbar h5 {
    letter-spacing: 1px;
    color: rgb(194,154,154);
    padding-left: 1rem;
    position: relative;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 18px;
}

.sample_docs .head_mainbar .main_teach a::before {
    left: 0;
    position: absolute;
    height: 100%;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(rgb(218,188,188,0.5), 0.1), transparent);
    content: "";
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    z-index: -1;
}

.diploma_cta .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.diploma_cta .challenge_cta {
    color: #ffffff;
    opacity: 0.7;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.5px;
}

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

.about_this .text_banner {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 90%;
    transform: translateY(0);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    margin-left: auto;
    position: relative;
    padding: 60px 50px;
}

.about_this h1 {
    font-weight: 700;
    color: rgb(218,188,188);
    position: relative;
    transition: transform 0.4s ease;
    font-size: 45px;
    transform: translateX(0);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.about_this li:first-child {
    animation-delay: 0.6s;
    margin-bottom: 25px;
}

.about_this h4::before {
    background: rgb(194,154,154,0.5);
    transition: transform 0.3s ease;
    content: "";
    width: 100%;
    transform-origin: left;
    left: 0;
    bottom: -2px;
    height: 1px;
    transform: scaleX(0);
    position: absolute;
}

.about_this .text_banner:hover h1 {
    transform: translateX(5px);
}

.give_it_a_try::before {
    position: absolute;
    width: 100%;
    content: "";
    height: 100%;
    z-index: 1;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.03) 20px,
        rgba(255, 255, 255, 0.03) 40px
    );
    top: 0;
}

.give_it_a_try .learning_studio:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateZ(40px) rotateX(0deg);
}

.give_it_a_try svg {
    height: 48px;
    transform: rotate(-5deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    width: 48px;
}

.give_it_a_try .learning_studio:hover svg path {
    fill: rgb(194,154,154);
}

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

.give_it_a_try .container:hover h2 {
    transform: translateZ(25px);
}

.instructor_profile::before {
    content: "";
    filter: blur(60px);
    height: 100%;
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(218,188,188,0.5) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgb(194,154,154,0.5) 0%, transparent 25%);
    top: 0;
    width: 100%;
    animation: ambientLight 20s ease-in-out infinite alternate;
    position: absolute;
}

.instructor_profile .image_panel {
    transform: translateX(-50%) translateZ(30px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 5px rgb(218,188,188,0.5);
    border: 3px solid #ffffff;
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 180px;
    top: -90px;
    border-radius: 50%;
    height: 180px;
    left: 50%;
}

.instructor_profile .emp_progress {
    font-size: 18px;
    color: #ffffff;
    width: 100%;
    transition: transform 0.3s ease;
    position: relative;
    line-height: 1.7;
    transform: translateZ(10px);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2rem;
    border-left: 3px solid rgb(218,188,188);
    margin-top: 2rem;
}

.training_structure::after {
    opacity: 0.1;
    top: -50%;
    z-index: 1;
    content: "";
    height: 80%;
    filter: blur(60px);
    animation: glow 8s infinite alternate ease-in-out;
    position: absolute;
    transform: rotate(35deg);
    right: -50%;
    background: linear-gradient(
        to bottom right,
        transparent,
        rgb(218,188,188,0.5) 50%,
        transparent
    );
    width: 80%;
}

.training_structure .text_banner {
    background: #ffffff;
    transform: translateY(30px) rotateX(5deg);
    animation: slideUpRotate 1s forwards 0.5s ease-out;
    box-shadow: 
        10px 10px 30px rgba(0, 0, 0, 0.05),
        -10px -10px 30px rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 40px;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
}

.course_program_details {
    position: relative;
    padding: 120px 0;
    background: rgb(237,222,222);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px);
    overflow: hidden;
}

.course_program_details .career_classes::before {
    top: -30px;
    animation: borderPulse 4s infinite alternate;
    border: 1px solid rgb(218,188,188,0.5);
    left: -30px;
    content: "";
    transform: rotateY(5deg) rotateX(2deg);
    border-radius: 26px;
    z-index: -1;
    height: calc(100% + 60px);
    transform-style: preserve-3d;
    width: calc(100% + 60px);
    position: absolute;
}

.course_program_details .text_banner .description {
    color: #000000;
    border-radius: 10px;
    font-weight: 400;
    text-align: justify;
    padding: 18px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.07);
    margin-bottom: 25px;
    transition: all 0.5s ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    line-height: 1.9;
    position: relative;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
    font-size: 16px;
    transform: translateZ(0);
    border-left: 3px solid rgb(218,188,188,0.5);
}

.course_program_details .image_panel {
    border-radius: 26px;
    animation: floatImage 6s ease-in-out infinite alternate;
    transform-style: preserve-3d;
    height: 450px;
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
    background-position: center;
    transform: translateZ(0) rotateY(-5deg);
    position: relative;
    overflow: hidden;
    z-index: 4;
    background-size: cover;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    align-self: flex-start;
}

.title_section .skill_mastery:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

.title_section .title_style_header {
    font-size: 40px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.title_section h3 {
    line-height: 1.5;
    position: relative;
    font-size: 22px;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
    padding-left: 1rem;
}

.thanksNexus {
    position: relative;
    background: linear-gradient(135deg, rgb(237,222,222) 0%, rgb(194,154,154,0.5) 100%);
    padding: 80px 0;
    overflow: hidden;
}

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

.thanksNexus .learning_studio {
    backdrop-filter: blur(10px);
    gap: 30px;
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 50px;
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 0 0 1px rgba(0, 0, 0, 0.02), 
                0 4px 6px rgba(0, 0, 0, 0.04);
    display: flex;
    background-color: rgba(255, 255, 255, 0.95);
}

.thanksNexus .learning_studio > div:last-child {
    transform: translateY(20px);
    position: relative;
    opacity: 0;
    animation: fadeSlideUp 0.8s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1);
}

.thanksNexus a:hover {
    transform: translateX(5px);
}

.thanksNexus a::before {
    height: 0;
    top: 0;
    position: absolute;
    left: -20px;
    background-color: rgb(194,154,154);
    transition: height 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    content: "";
    width: 4px;
}

.privacy_shell h2 {
    margin-bottom: 15px;
    font-weight: 600;
    color: rgb(218,188,188);
    margin-top: 25px;
    font-size: 34px;
}

.privacy_shell section {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    padding: 20px;
}

.pricing_deck::before {
    position: absolute;
    content: "";
    bottom: 0;
    opacity: 0.85;
    left: 0;
    right: 0;
    background: #000000;
    z-index: 1;
    top: 0;
}

.pricing_deck h2::after {
    position: absolute;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, rgb(218,188,188), rgb(194,154,154));
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    bottom: -10px;
}

.pricing_deck .discount_plan {
    text-decoration: none;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    overflow: hidden;
    display: block;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

.pricing_deck .package_price h4::after {
    left: 0;
    background: rgb(218,188,188);
    width: 40px;
    bottom: -8px;
    height: 2px;
    content: "";
    position: absolute;
}

.pricing_deck .fee_choices {
    transition: all 0.3s ease;
    position: relative;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-size: calc(24px * 1.2);
    display: inline-block;
    align-self: flex-start;
    overflow: hidden;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgb(218,188,188), rgb(194,154,154));
    margin-top: auto;
}

.cookie_hide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 5%;
}

.cookie_window_dialog p {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.5;
}

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

.track_accept {
    white-space: nowrap;
    line-height: 40px;
    flex-shrink: 0;
    cursor: pointer;
    text-align: center;
    padding: 10px 20px;
    margin-left: 10px;
    text-decoration: none;
    background: linear-gradient(90deg, rgb(218,188,188), rgb(194,154,154));
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 16px;
    color: #000000;
    min-width: 140px;
    border-radius: 26px;
    box-shadow: 0 0 15px rgb(218,188,188);
}



@media (max-width: 991px) {header .container {
    padding: 12px 20px;
}header .head_mainbar {
    gap: 20px;
}header .page_header svg {
    height: 35px;
}
}



@media (max-width: 480px) {header .container {
    padding: 10px 15px;
}header .page_header svg {
    height: 30px;
}}



@media (max-width: 991px) {.program_results {
    padding: 80px 0;
}.program_results .learning_studio {
    flex-direction: column-reverse;
    gap: 40px;
}.program_results .text_banner {
    width: 100%;
    transform: translateZ(5px) rotateY(-2deg);
    padding: 30px;
}.program_results .text_banner:hover {
    transform: translateZ(10px) rotateY(-1deg);
}.program_results .image_panel {
    width: 100%;
    max-width: 450px;
    transform: translateZ(10px) rotateY(3deg);
}.program_results .image_panel:hover {
    transform: translateZ(15px) rotateY(1deg);
}.program_results h4 {
    font-size: 24px;
}
}



@media (max-width: 767px) {.program_results {
    padding: 60px 0;
}.program_results .text_banner {
    transform: translateZ(0) rotateY(0);
    padding: 25px 20px;
}.program_results .text_banner:hover {
    transform: translateZ(0) rotateY(0);
}.program_results .image_panel {
    transform: translateZ(0) rotateY(0);
    max-width: 100%;
}.program_results .image_panel:hover {
    transform: translateZ(0) rotateY(0);
}.program_results .text_banner > div {
    gap: 10px;
    flex-direction: column;
}.program_results ul {
    width: 100%;
}.program_results h4 {
    font-size: calc(21px * 1.2);
}.program_results li p {
    gap: 10px;
}.program_results li p span:first-child {
    height: 30px;
    width: 30px;
}.program_results svg {
    height: 16px;
    width: 16px;
}
}



@media (max-width: 992px) {.statistical_overview {
    padding: 250px 0 80px;
}.statistical_overview .statistics_pros {
    margin-top: 150px;
    top: 0;
    height: 300px;
    width: 300px;
    position: absolute;
    left: 50%;
    padding: 20px;
    transform: translate(-50%, -50%);
}.statistical_overview .pro_gains {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    margin-top: 150px;
    height: auto;
}.statistical_overview .statistics_perks {
    right: unset !important;
    height: 120px;
    bottom: unset !important;
    top: unset !important;
    transform: none !important;
    width: 100%;
    left: unset !important;
    position: relative;
}.statistical_overview .statistics_perks:hover {
    transform: translateY(-5px) !important;
}.statistics.items-4 .statistics_perks,
    .statistics.items-6 .statistics_perks,
    .statistics.items-8 .statistics_perks {
    top: unset !important;
}
}



@media (max-width: 1200px) {.about_this {
    padding: 100px 0;
}.about_this .text_banner {
    padding: 50px 40px;
    max-width: 95%;
}.about_this span {
    column-gap: 30px;
    column-count: 2;
}
}



@media (max-width: 768px) {.about_this {
    padding: 60px 0;
}.about_this::after {
    display: none;
}.about_this .text_banner {
    padding: 35px 25px;
}.about_this .text_banner::before {
    height: 60%;
    left: -10px;
}.about_this h1 {
    font-size: calc(45px * 0.85);
    margin-bottom: 25px;
}.about_this h1::after {
    width: 60px;
}.about_this span {
    line-height: 1.7;
    column-count: 1;
}
}



@media (max-width: 768px) {.give_it_a_try {
    padding: 3.5rem 0;
}.give_it_a_try h2 {
    text-align: center;
    font-size: calc(28px * 0.8);
}.give_it_a_try .learning_studio {
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateZ(20px) rotateX(0deg);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
}.give_it_a_try svg {
    width: 40px;
    height: 40px;
}.give_it_a_try .learning_studio div {
    width: 100%;
    justify-content: center;
}
}



@media (max-width: 991px) {.training_structure {
    padding: 90px 0;
}.training_structure h2 {
    font-size: calc(29px * 0.9);
    margin-bottom: 30px;
}.training_structure .text_banner {
    padding: 30px;
}
}



@media (max-width: 480px) {.training_structure {
    padding: 50px 0;
}.training_structure .learning_studio {
    padding: 0 20px;
}.training_structure h2 {
    margin-bottom: 20px;
    font-size: calc(29px * 0.7);
}.training_structure .text_banner {
    padding: 20px;
}.training_structure p {
    font-size: calc(18px * 0.95);
    line-height: 1.7;
}.training_structure h2::after {
    width: 50px;
    bottom: -8px;
    height: 3px;
}
}



@media screen and (max-width: 991px) {.course_program_details {
    padding: 80px 0;
}.course_program_details .career_classes {
    gap: 40px;
    grid-template-columns: 1fr;
}.course_program_details .career_classes::before {
    height: calc(100% + 40px);
    transform: none;
    left: -20px;
    top: -20px;
    width: calc(100% + 40px);
}.course_program_details .text_banner {
    animation: none;
    order: 2;
    transform: none;
}.course_program_details .image_panel {
    order: 1;
    min-height: 400px;
    animation: pulse 8s infinite alternate;
    transform: none;
}.course_program_details .image_panel:hover {
    transform: scale(1.02) translateY(-5px);
}.course_program_details .text_banner h2 {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-width: 100%;
}.course_program_details .text_banner .description {
    text-align: left;
}
}



@media (max-width: 480px) {.title_section .edu_start {
    min-height: 60vh;
}.title_section .skill_mastery {
    padding: 1.5rem;
}.title_section .title_style_header {
    font-size: calc(40px * 0.8);
}.title_section h3 {
    padding-left: 0.75rem;
    font-size: calc(22px * 0.8);
}.title_section p {
    padding-left: 0.75rem;
    font-size: calc(17px * 0.9);
}}



@media (max-width: 767px) {.thanksNexus {
    padding: 60px 0;
}.thanksNexus .learning_studio {
    padding: 35px 25px;
    gap: 25px;
}.thanksNexus .learning_studio > div:first-child::after {
    width: 60px;
}.thanksNexus h5 {
    font-size: calc(23px * 0.9);
}.thanksNexus a::before {
    left: -10px;
}
}



@media (max-width: 992px) {.pricing_deck {
    padding: 80px 0;
}.pricing_deck .package_deals {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}.pricing_deck .learning_plan {
    padding: 2rem 1.25rem;
}
}



@media (max-width: 576px) {.pricing_deck {
    padding: 50px 0;
}.pricing_deck h2 {
    font-size: calc(31px * 0.8);
}.pricing_deck .learning_plan {
    padding: 1.5rem 1rem;
}.pricing_deck .fee_choices {
    padding: 0.5rem 1rem;
    font-size: 24px;
}
}


@media only screen and (max-width: 1200px) {.cookie_window_dialog {
    padding: 15px 0;
}.cookie_hide {
    padding: 15px 5%;
}
}



@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}



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

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

@keyframes ambientLight {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
    100% { opacity: 0.3; transform: scale(1); }
}



@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}



@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.98);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}



@keyframes glowPulse {
    0% {
        opacity: 0.7;
        box-shadow: 0 0 10px rgb(218,188,188,0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgb(218,188,188);
    }
}



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



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



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



@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

