﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
header,footer {
    width: 100%;
}
section {
    background-color: rgb(234,226,231);
}
.ws_nav_block {
    flex: 1 0 auto;
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Merriweather, sans-serif;
    color: #000000;
}
a {
    color: inherit;
    text-decoration: none;
}
.footer {
    flex: 0 0 auto;
}
.container {
    margin: auto;
    width: 1133px;
    max-width: 100%;
}

.pk_grid-container {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
svg {
    width: 30px;
    height: 30px;
}
@media only screen and (max-width: 1200px)  {
        .container {
            width: 100%;
            padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
        .container {
            padding: 0 12px;
    }
}.Ju_course_info {
    position: relative;
    background: linear-gradient(45deg, rgb(234,226,231) 0%, rgb(179,133,195,0.5) 50%, rgb(234,226,231) 100%);
    padding: 6rem 0;
    overflow: hidden;
}

.Ju_course_info::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(211,182,209,0.5) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 1;
    animation: pulseGlow 15s ease-in-out infinite;
}

.Ju_course_info::after {
    content: "";
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(179,133,195,0.5) 0%, transparent 70%);
    opacity: 0.3;
    z-index: 1;
    animation: pulseGlow 12s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.Ju_course_info .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.Ju_course_info .AM_skill_boost {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    transform: perspective(1000px) rotateY(-2deg);
    transform-style: preserve-3d;
}

.Ju_course_info .AM_skill_boost::before {
    content: "";
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: calc(100% + 4rem);
    height: calc(100% + 4rem);
    background: 
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgb(211,182,209,0.5) 50px, rgb(211,182,209,0.5) 51px),
        repeating-linear-gradient(180deg, transparent, transparent 50px, rgb(211,182,209,0.5) 50px, rgb(211,182,209,0.5) 51px);
    z-index: -1;
    opacity: 0.05;
    border-radius: 25px;
    transform: translateZ(-10px);
}

.Ju_course_info .na_study_map {
    position: relative;
    padding: 3rem;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.1),
        0 10px 20px -5px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgb(234,226,231);
    transform: translateZ(20px);
    z-index: 3;
    clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.Ju_course_info .na_study_map::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, transparent 100%);
    z-index: -1;
    opacity: 0.7;
    border-radius: 25px;
}

.Ju_course_info .sV_head_main {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.Ju_course_info .sV_head_main::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 40px;
    height: 2px;
    background: rgb(211,182,209);
    transform: translateY(-50%);
    opacity: 0.6;
}

.Ju_course_info .sV_head_main::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(179,133,195) 0%, transparent 100%);
    border-radius: 10px;
}

.Ju_course_info .sV_head_main svg {
    width: auto;
    height: 4rem;
    filter: drop-shadow(0 2px 4px rgb(211,182,209,0.5));
    transition: all 0.3s ease;
}

.Ju_course_info .sV_head_main svg:hover {
    transform: translateY(-2px) scale(1.03);
    filter: drop-shadow(0 6px 12px rgb(211,182,209,0.5));
}

.Ju_course_info .sV_head_main svg path {
    fill: rgb(211,182,209);
    transition: fill 0.3s ease;
}

.Ju_course_info .sV_head_main svg:hover path {
    fill: rgb(179,133,195);
}

.Ju_course_info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #000000 0%, rgb(211,182,209) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transform: translateZ(5px);
}

.Ju_course_info h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: rgb(211,182,209);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.Ju_course_info .na_study_map:hover h3::after {
    width: 80px;
}

.Ju_course_info p {
    font-size: 14px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transform: translateZ(10px);
}

.Ju_course_info .wG_pic_stack {
    position: relative;
    height: 100%;
    min-height: 400px;
    height: 450px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 
        20px 20px 60px rgba(0, 0, 0, 0.1),
        -20px -20px 60px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    transform: translateZ(30px) rotate(3deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatAnimation 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes floatAnimation {
    0% {
        transform: translateZ(30px) rotate(3deg) translateY(0);
    }
    50% {
        transform: translateZ(30px) rotate(3deg) translateY(-10px);
    }
    100% {
        transform: translateZ(30px) rotate(3deg) translateY(0);
    }
}

.Ju_course_info .wG_pic_stack::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        transparent 40%,
        rgb(211,182,209,0.5) 100%
    );
    z-index: 1;
    opacity: 0.5;
    mix-blend-mode: soft-light;
    transition: all 0.5s ease;
}

.Ju_course_info .wG_pic_stack::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(
        to top,
        rgb(211,182,209,0.5) 0%,
        transparent 100%
    );
    z-index: 1;
    opacity: 0.3;
}

.Ju_course_info .AM_skill_boost:hover .wG_pic_stack {
    transform: translateZ(40px) rotate(1deg) scale(1.03);
    border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%;
    box-shadow: 
        25px 25px 70px rgba(0, 0, 0, 0.15),
        -25px -25px 70px rgba(255, 255, 255, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.Ju_course_info .AM_skill_boost:hover .wG_pic_stack::before {
    opacity: 0.7;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgb(179,133,195,0.5) 40%,
        rgb(211,182,209,0.5) 100%
    );
}

@media (max-width: 1024px) {
    .Ju_course_info {
        padding: 5rem 0;
    }
    
    .Ju_course_info .AM_skill_boost {
        grid-template-columns: 1fr;
        gap: 2rem;
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .Ju_course_info .na_study_map {
        padding: 2.5rem;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    
    .Ju_course_info .wG_pic_stack {
        min-height: 350px;
        transform: translateZ(20px) rotate(0deg);
        border-radius: 20% 80% 20% 80% / 80% 20% 80% 20%;
    }
    
    .Ju_course_info .AM_skill_boost:hover .wG_pic_stack {
        transform: translateZ(30px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .Ju_course_info {
        padding: 4rem 0;
    }
    
    .Ju_course_info .AM_skill_boost::before {
        top: -1.5rem;
        left: -1.5rem;
        width: calc(100% + 3rem);
        height: calc(100% + 3rem);
    }
    
    .Ju_course_info .na_study_map {
        padding: 2rem;
    }
    
    .Ju_course_info .sV_head_main svg {
        height: 3.5rem;
    }
    
    .Ju_course_info h3 {
        font-size: calc(28px * 0.9);
    }
    
    .Ju_course_info .wG_pic_stack {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .Ju_course_info {
        padding: 3rem 0;
    }
    
    .Ju_course_info .AM_skill_boost::before {
        display: none;
    }
    
    .Ju_course_info .na_study_map {
        padding: 1.5rem;
    }
    
    .Ju_course_info .sV_head_main svg {
        height: 3rem;
    }
    
    .Ju_course_info .sV_head_main::before {
        right: -10px;
        width: 20px;
    }
    
    .Ju_course_info h3 {
        font-size: calc(28px * 0.8);
        margin-bottom: 1rem;
    }
    
    .Ju_course_info p {
        font-size: calc(14px * 0.9);
    }
    
    .Ju_course_info .wG_pic_stack {
        min-height: 250px;
        border-radius: 10% 90% 10% 90% / 90% 10% 90% 10%;
    }
}.DI_leadership_experience {
    padding: 8vh 0;
    background: linear-gradient(135deg, rgb(179,133,195), rgb(179,133,195,0.5));
    font-family: Merriweather, sans-serif;
    position: relative;
    overflow: hidden;
}
.DI_leadership_experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgb(211,182,209,0.5), transparent);
    z-index: 0;
}
.DI_leadership_experience .jE_learner_feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    max-width: 90vw;
    margin: 0 auto;
    text-align: center;
    background: radial-gradient(circle, rgb(179,133,195), rgba(0, 0, 0, 0.5));
    padding: 2vw;
    border: 2px solid rgb(211,182,209);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
.DI_leadership_experience .jE_learner_feedback .wG_pic_stack {
    height: 30vh;
    width: 30vh;
    border: 5px solid rgb(211,182,209);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgb(211,182,209,0.5);
    background: linear-gradient(to bottom, rgb(211,182,209,0.5), transparent), url('$variable_for_links$<?php echo $arData["img"];?>') no-repeat;
    background-size: cover;
    background-position: center;
    margin: 2vh 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.DI_leadership_experience .Mb_emp_container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 2vw;
    background: linear-gradient(135deg, rgb(179,133,195), rgb(179,133,195,0.5));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgb(211,182,209);
    margin: 2vh 0;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.DI_leadership_experience .Mb_emp_container .name {
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 1vh;
    transition: color 0.3s ease;
}
.DI_leadership_experience .Mb_emp_container .UC_work_trajectory {
    font-size: 19px;
    font-weight: 400;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.DI_leadership_experience .worker_info {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    background: linear-gradient(135deg, rgb(179,133,195), rgba(0, 0, 0, 0.5));
    color: #000000;
    padding: 2vw;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgb(211,182,209);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.DI_leadership_experience .worker_info .af_exp_card {
    font-weight: 300;
    padding: 1vh 2vw;
    transition: color 0.3s ease;
    text-align: left;
}
.DI_leadership_experience .worker_info .DR_work_details {
    font-size: 15px;
    text-align: left;
    padding: 1vh 2vw;
    border-top: 1px solid rgb(211,182,209);
    border-bottom: 1px solid rgb(211,182,209);
    transition: background 0.3s ease, border-color 0.3s ease;
}
.DI_leadership_experience .jE_learner_feedback .wG_pic_stack,
.DI_leadership_experience .Mb_emp_container,
.DI_leadership_experience .worker_info {
    animation: fadeInUp 0.5s ease-out both;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@media only screen and (max-width: 800px) {
    .DI_leadership_experience .jE_learner_feedback {
        flex-direction: column;
    }
    .DI_leadership_experience .jE_learner_feedback .wG_pic_stack {
        height: 30vh;
        width: 30vh;
    }
    .DI_leadership_experience .Mb_emp_container,
    .DI_leadership_experience .worker_info {
        width: 100%;
        flex-direction: column;
        padding: 4vw;
        margin: 2vh 0;
        align-items: center;
    }
    .DI_leadership_experience .Mb_emp_container .name,
    .DI_leadership_experience .Mb_emp_container .UC_work_trajectory,
    .DI_leadership_experience .worker_info .af_exp_card,
    .DI_leadership_experience .worker_info .DR_work_details {
        text-align: center;
    }
}
.GT_receive_updates {
    padding-bottom: 80px;
    padding-top: 80px;
    position: relative;
}

.GT_receive_updates .AM_skill_boost {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.GT_receive_updates input {
    padding: 12px;
    background: #ffffff;
    outline: none;
    border: 1px solid rgb(179,133,195,0.5);
    margin-right: 10px;
    min-width: 200px;
}

.GT_receive_updates h2 {
    margin-bottom: 20px;
    text-align: center;
}

.GT_receive_updates .UP_query_info {
    background: rgb(179,133,195);
    color: #ffffff;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    flex-shrink: 0;
}

.GT_receive_updates .input_holder {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 800px) {
    .GT_receive_updates .AM_skill_boost {
        flex-direction: column;
    }

    .GT_receive_updates {
        padding: 30px 20px;
    }

    .GT_receive_updates input {
        min-width: unset;
    }

    .GT_receive_updates .UP_query_info {
        flex-shrink: unset;
    }

    .GT_receive_updates .input_holder {
        flex-direction: column;
        width: 100%;
    }

    .GT_receive_updates input {
        margin: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .pk_grid-container .GT_receive_updates .AM_skill_boost h2 {
        font-size: 20px;
    }
}

.pk_grid-container .GT_receive_updates {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgb(211,182,209), rgb(179,133,195));
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.pk_grid-container .GT_receive_updates::before,
.pk_grid-container .GT_receive_updates::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    transform: rotate(-45deg);
    z-index: 0;
}

.pk_grid-container .GT_receive_updates::after {
    top: auto;
    bottom: -50px;
    left: auto;
    right: -50px;
    transform: rotate(45deg);
}

.pk_grid-container .GT_receive_updates .container {
    position: relative;
    z-index: 1;
}

.pk_grid-container .GT_receive_updates .AM_skill_boost {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.pk_grid-container .GT_receive_updates h2 {
    font-size: 24px;
    font-weight: 700;
    color: rgb(211,182,209);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pk_grid-container .GT_receive_updates .input_holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pk_grid-container .GT_receive_updates input[type="email"] {
    padding: 15px 20px;
    font-size: 18px;
    color: #000000;
    background: #ffffff;
    border: 2px solid rgb(211,182,209,0.5);
    border-radius: 10px;
    margin-right: 10px;
    flex: 1;
    transition: all 0.3s ease;
}

.pk_grid-container .GT_receive_updates input[type="email"]:focus {
    border-color: rgb(179,133,195);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    outline: none;
}

.pk_grid-container .GT_receive_updates .UP_query_info {
    background: rgb(179,133,195);
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pk_grid-container .GT_receive_updates .UP_query_info:hover {
    background: rgb(179,133,195,0.5);
}

@media only screen and (max-width: 800px) {
    .pk_grid-container .GT_receive_updates {
        padding: 40px 15px;
    }

    .pk_grid-container .GT_receive_updates .AM_skill_boost {
        padding: 30px 20px;
    }

    .pk_grid-container .GT_receive_updates h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .pk_grid-container .GT_receive_updates .input_holder {
        flex-direction: column;
    }

    .pk_grid-container .GT_receive_updates input[type="email"] {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
    }

    .pk_grid-container .GT_receive_updates .UP_query_info {
        width: 100%;
        padding: 15px;
    }
}.Xy_welcome_board {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, rgb(211,182,209,0.5) 100%);
    font-family: Merriweather, sans-serif;
    position: relative;
    overflow: hidden;
}
.Xy_welcome_board .rB_start_learn {
    width: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    background-size: cover;
    border: 1px solid rgb(179,133,195);
    padding: 40px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
    backdrop-filter: blur(10px);
}
.Xy_welcome_board .pn_academy_cult {
    background: rgba(0, 0, 0, 0.75);
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    color: #ffffff;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    z-index: 2;
}
.Xy_welcome_board .pn_academy_cult h1 {
    font-size: 45px;
    font-weight: 700;
    color: rgb(211,182,209);
    margin-bottom: 15px;
    border-bottom: 2px solid rgb(179,133,195);
    padding-bottom: 10px;
}
.Xy_welcome_board .pn_academy_cult h3 {
    font-size: 29px;
    font-weight: 600;
    color: rgb(179,133,195);
    margin-bottom: 10px;
    padding-left: 5px;
    border-left: 3px solid rgb(211,182,209);
}
.Xy_welcome_board .pn_academy_cult p {
    font-size: 13px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.6;
    padding-left: 10px;
    border-left: 3px solid rgb(179,133,195);
}
@media only screen and (max-width: 1200px) {
    .Xy_welcome_board .rB_start_learn {
        width: 90%;
        height: 75%;
        padding: 30px;
    }
    .Xy_welcome_board .pn_academy_cult {
        padding: 20px;
    }
    .Xy_welcome_board .pn_academy_cult h1 {
        font-size: 29px;
    }
    .Xy_welcome_board .pn_academy_cult h3 {
        font-size: 22px;
    }
    .Xy_welcome_board .pn_academy_cult p {
        font-size: 13px;
    }
}
@media only screen and (max-width: 800px) {
    .Xy_welcome_board .rB_start_learn {
        width: 95%;
        height: 80%;
        padding: 20px;
    }
    .Xy_welcome_board .pn_academy_cult {
        padding: 15px;
    }
    .Xy_welcome_board .pn_academy_cult h1 {
        font-size: 22px;
    }
    .Xy_welcome_board .pn_academy_cult h3 {
        font-size: 22px;
    }
    .Xy_welcome_board .pn_academy_cult p {
        font-size: 13px;
    }
}
.pk_grid-container .Xy_welcome_board {
    position: relative;
}
.pk_grid-container .Xy_welcome_board::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}
.pk_grid-container .Xy_welcome_board .rB_start_learn {
    height: auto;
}
.pk_grid-container .Xy_welcome_board .pn_academy_cult {
    background: linear-gradient(135deg, rgb(211,182,209,0.5), rgb(179,133,195,0.5));
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 10px;
}
.pk_grid-container .Xy_welcome_board .pn_academy_cult h1,
.pk_grid-container .Xy_welcome_board .pn_academy_cult h3,
.pk_grid-container .Xy_welcome_board .pn_academy_cult p {
    color: #ffffff;
}
.pk_grid-container .Xy_welcome_board .pn_academy_cult h1 {
    font-size: 50px;
}
.pk_grid-container .Xy_welcome_board .pn_academy_cult h3 {
    font-size: 30px;
}
.pk_grid-container .Xy_welcome_board .pn_academy_cult p {
    font-size: 20px;
}
@media only screen and (max-width: 1200px) {
    .pk_grid-container .Xy_welcome_board .pn_academy_cult {
        padding: 40px;
        height: auto;
    }
    .pk_grid-container .Xy_welcome_board .pn_academy_cult h1 {
        font-size: 40px;
    }
    .pk_grid-container .Xy_welcome_board .pn_academy_cult h3 {
        font-size: 24px;
    }
    .pk_grid-container .Xy_welcome_board .pn_academy_cult p {
        font-size: 18px;
    }
}
@media only screen and (max-width: 800px) {
    .pk_grid-container .Xy_welcome_board .pn_academy_cult {
        width: 100%;
        padding: 30px;
        height: auto;
    }
    .pk_grid-container .Xy_welcome_board .rB_start_learn {
        height: auto;
    }
}.rT_head_edu {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}
.rT_head_edu .RN_top_mainwrap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.rT_head_edu .sV_head_main {
    display: flex;
    align-items: center;
}
.rT_head_edu .PZ_main_bar {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgb(211,182,209);
    font-weight: 700;
    font-size: 19px;
    transition: color 0.3s ease;
}
.rT_head_edu .PZ_main_bar:hover {
    color: rgb(179,133,195);
}
.rT_head_edu .PZ_main_bar svg,
.rT_head_edu .PZ_main_bar img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    fill: rgb(211,182,209);
    transition: fill 0.3s ease;
}
.rT_head_edu .PZ_main_bar:hover svg,
.rT_head_edu .PZ_main_bar:hover img {
    fill: rgb(179,133,195);
}
.rT_head_edu .Xr_top_head {
    font-size: 15px;
    color: #000000;
    margin-left: 20px;
    position: relative;
    padding-left: 15px;
}
.rT_head_edu .Xr_top_head::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background-color: rgb(211,182,209);
}
.rT_head_edu .bz_nav_core {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.rT_head_edu .bz_nav_core a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    position: relative;
    font-size: 14px;
    transition: color 0.3s ease;
}
.rT_head_edu .bz_nav_core a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(211,182,209);
    transition: width 0.3s ease;
}
.rT_head_edu .bz_nav_core a:hover,
.rT_head_edu .bz_nav_core a:focus {
    color: rgb(211,182,209);
}
.rT_head_edu .bz_nav_core a:hover::after,
.rT_head_edu .bz_nav_core a:focus::after {
    width: 100%;
}
@media (max-width: 1200px) {
    .rT_head_edu .RN_top_mainwrap {
        flex-direction: column;
        align-items: flex-start;
    }
    .rT_head_edu .sV_head_main {
        margin-bottom: 15px;
    }
    .rT_head_edu .Xr_top_head {
        margin-left: 0;
        margin-bottom: 15px;
        padding-left: 0;
        padding-top: 15px;
    }
    .rT_head_edu .Xr_top_head::before {
        left: 0;
        top: 0;
        transform: none;
        width: 50px;
        height: 3px;
    }
    .rT_head_edu .bz_nav_core {
        flex-direction: column;
        width: 100%;
    }
    .rT_head_edu .bz_nav_core a {
        padding: 10px 0;
        border-bottom: 1px solid rgb(179,133,195,0.5);
    }
    .rT_head_edu .bz_nav_core a:last-child {
        border-bottom: none;
    }
    .rT_head_edu .bz_nav_core a::after {
        display: none;
    }
}
.rT_head_edu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: rgb(211,182,209);
}
@media (prefers-reduced-motion: reduce) {
    .rT_head_edu,
    .rT_head_edu *,
    .rT_head_edu *::before,
    .rT_head_edu *::after {
        transition: none !important;
    }
}footer {
    background: rgb(179,133,195);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    padding: 50px 0;
    border-top: 3px solid rgb(211,182,209);
}
footer .container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}
footer .sU_footer_account {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid rgb(211,182,209,0.5);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
footer .sV_head_main svg, footer .sV_head_main img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
    fill: rgb(211,182,209);
}
footer .Uw_site_core {
    display: flex;
    flex-direction: column;
}
footer .Af_head_pro {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
footer .Uw_site_core a {
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    color: #ffffff;
    padding: 10px 15px;
    border: 2px solid rgb(211,182,209);
    border-radius: 10px;
    transition: background 0.3s, color 0.3s;
}
footer .Uw_site_core a:hover {
    background: rgb(211,182,209);
    color: #000000;
}
footer .Bb_cheat_sheet {
    background: rgb(211,182,209,0.5);
    padding: 15px 0;
    text-align: center;
}
footer .SU_trial_offer {
    font-size: 13px;
    color: #ffffff;
}
@media only screen and (max-width: 1200px) {
    footer .container {
        grid-template-columns: 1fr;
    }
    
    footer .sU_footer_account {
        flex-direction: column;
        align-items: center;
    }
    
    footer .Af_head_pro {
        justify-content: center;
    }
}
@media only screen and (max-width: 800px) {
    footer .Af_head_pro {
        flex-direction: column;
        text-align: center;
    }
    
    footer .Uw_site_core a {
        margin-bottom: 10px;
        border-right: none;
        padding: 10px 20px;
    }
}
.pk_grid-container footer .footer {
    padding: 0;
    border-bottom: 3px solid rgb(211,182,209);
}
.pk_grid-container footer .sU_footer_account {
    flex-direction: row-reverse;
    align-items: center;
    min-height: 100px;
}
.pk_grid-container footer .Af_head_pro {
    flex-direction: row;
}
.pk_grid-container footer .Uw_site_core a {
    margin: 0;
    padding: 0 30px;
    border-right: 3px solid rgb(211,182,209);
    font-size: 20px;
    color: #ffffff;
}
.pk_grid-container footer .Bb_cheat_sheet {
    background: rgb(211,182,209,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}
.pk_grid-container footer .SU_trial_offer {
    text-align: right;
}
@media only screen and (max-width: 1200px) {
    .pk_grid-container footer .Af_head_pro {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .pk_grid-container footer .Uw_site_core a {
        font-size: 18px;
    }
    .pk_grid-container footer .Uw_site_core a:first-child {
        margin-bottom: 10px;
    }
    .pk_grid-container footer .sU_footer_account {
        padding: 20px 10px;
    }
    .pk_grid-container footer .SU_trial_offer {
        text-align: center;
    }
    .pk_grid-container footer .SU_trial_offer a {
        display: block;
        margin-top: 5px;
    }
}.XQ_connect_form {
    position: relative;
    background: #000000;
    padding: 100px 0;
    overflow: hidden;
}

.XQ_connect_form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgb(211,182,209,0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgb(179,133,195,0.5) 0%, transparent 40%);
    opacity: 0.2;
    z-index: 1;
}

.XQ_connect_form::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 95%, rgb(211,182,209,0.5) 95.5%, transparent 96%),
        linear-gradient(0deg, transparent 95%, rgb(179,133,195,0.5) 95.5%, transparent 96%);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 1;
}

.XQ_connect_form .wG_pic_stack {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: 1;
}

.XQ_connect_form .wG_pic_stack::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000000 0%, transparent 50%, #000000 100%);
}

.XQ_connect_form .wG_pic_stack::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.XQ_connect_form .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.XQ_connect_form h3 {
    font-family: Merriweather, sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 5px rgb(211,182,209),
        0 0 10px rgb(211,182,209),
        0 0 15px rgb(211,182,209);
}

.XQ_connect_form .Zg_query_message {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(0, 0, 0, 0.5),
        0 0 10px rgb(211,182,209,0.5),
        0 0 20px rgb(179,133,195,0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.XQ_connect_form .lN_contact_request {
    flex: 3;
    padding: 50px;
    position: relative;
}

.XQ_connect_form form h3 {
    font-size: 20px;
    text-align: left;
    margin-bottom: 30px;
    text-shadow: 0 0 5px rgb(211,182,209);
}

.XQ_connect_form input[type="text"],
.XQ_connect_form textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(rgb(211,182,209,0.5), 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    font-family: Merriweather, sans-serif;
    font-size: 17px;
    color: #ffffff;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.XQ_connect_form input[type="text"]:focus,
.XQ_connect_form textarea:focus {
    border-color: rgb(211,182,209);
    box-shadow: 
        inset 0 0 5px rgba(0, 0, 0, 0.5),
        0 0 5px rgb(211,182,209,0.5);
    outline: none;
}

.XQ_connect_form input[type="text"]::placeholder,
.XQ_connect_form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.XQ_connect_form textarea {
    height: 140px;
    resize: none;
}

.XQ_connect_form .hy_reach_map {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
}

.XQ_connect_form .hy_reach_map input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.XQ_connect_form .hy_reach_map label {
    position: relative;
    padding-left: 35px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    cursor: pointer;
}

.XQ_connect_form .hy_reach_map label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    border: 1px solid rgb(211,182,209);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgb(211,182,209,0.5);
}

.XQ_connect_form .hy_reach_map input[type="checkbox"]:checked + label::before {
    background: rgb(211,182,209);
    box-shadow: 0 0 8px rgb(211,182,209);
}

.XQ_connect_form .hy_reach_map input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.XQ_connect_form .hy_reach_map a {
    color: rgb(211,182,209);
    text-decoration: none;
    text-shadow: 0 0 3px rgb(211,182,209);
    transition: all 0.3s ease;
}

.XQ_connect_form .hy_reach_map a:hover {
    color: rgb(179,133,195);
    text-shadow: 0 0 5px rgb(179,133,195);
}

.XQ_connect_form .UP_query_info {
    background: rgb(211,182,209);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgb(211,182,209,0.5);
}

.XQ_connect_form .UP_query_info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.XQ_connect_form .UP_query_info:hover {
    background: rgb(179,133,195);
    box-shadow: 0 0 20px rgb(179,133,195);
    transform: translateY(-3px);
}

.XQ_connect_form .UP_query_info:hover::before {
    left: 100%;
}

.XQ_connect_form .PS_contact_message {
    flex: 2;
    padding: 50px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.XQ_connect_form .PS_contact_message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(211,182,209,0.5) 0%, transparent 100%);
    opacity: 0.1;
}

.XQ_connect_form .PS_contact_message h4 {
    font-family: Merriweather, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 0 5px rgb(211,182,209);
}

.XQ_connect_form .PS_contact_message h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: rgb(211,182,209);
    box-shadow: 0 0 5px rgb(211,182,209);
}

.XQ_connect_form .PG_inquiry_form {
    list-style: none;
    padding: 0;
    margin: 0;
}

.XQ_connect_form .PG_inquiry_form li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.XQ_connect_form .PG_inquiry_form li:hover {
    transform: translateX(5px);
}

.XQ_connect_form .PG_inquiry_form svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.XQ_connect_form .PG_inquiry_form svg path {
    fill: rgb(211,182,209);
    filter: drop-shadow(0 0 3px rgb(211,182,209));
    transition: fill 0.3s ease;
}

.XQ_connect_form .PG_inquiry_form li:hover svg path {
    fill: rgb(179,133,195);
    filter: drop-shadow(0 0 5px rgb(179,133,195));
}

.XQ_connect_form .PG_inquiry_form span {
    font-family: Merriweather, sans-serif;
    font-size: 17px;
    color: #ffffff;
    line-height: 1.6;
}

.XQ_connect_form .PG_inquiry_form a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.XQ_connect_form .PG_inquiry_form a:hover {
    color: rgb(211,182,209);
    text-shadow: 0 0 5px rgb(211,182,209,0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgb(211,182,209,0.5);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@media (max-width: 992px) {
    .XQ_connect_form .wG_pic_stack {
        width: 100%;
        height: 40%;
        opacity: 0.3;
    }
    
    .XQ_connect_form .Zg_query_message {
        flex-direction: column;
        max-width: 700px;
    }
    
    .XQ_connect_form .lN_contact_request,
    .XQ_connect_form .PS_contact_message {
        width: 100%;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .XQ_connect_form {
        padding: 80px 0;
    }
    
    .XQ_connect_form h3 {
        font-size: calc(38px * 0.9);
        margin-bottom: 40px;
    }
    
    .XQ_connect_form .lN_contact_request,
    .XQ_connect_form .PS_contact_message {
        padding: 30px;
    }
    
    .XQ_connect_form form h3,
    .XQ_connect_form .PS_contact_message h4 {
        font-size: calc(20px * 0.9);
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .XQ_connect_form {
        padding: 60px 0;
    }
    
    .XQ_connect_form h3 {
        font-size: calc(38px * 0.8);
        margin-bottom: 30px;
    }
    
    .XQ_connect_form .lN_contact_request,
    .XQ_connect_form .PS_contact_message {
        padding: 25px 20px;
    }
    
    .XQ_connect_form input[type="text"],
    .XQ_connect_form textarea {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .XQ_connect_form .UP_query_info {
        width: 100%;
        padding: 12px;
    }
}
.Vl_benefits_outline .Ag_learn_advantages h2 {
    color: rgb(179,133,195);
}

.Vl_benefits_outline .pc_training_edge svg, .Vl_benefits_outline .pc_training_edge svg path {
    fill: rgb(211,182,209);
}

.Vl_benefits_outline .pc_training_edge p {
    color: #000000;
}

.Vl_benefits_outline .pc_training_edge b {
    color: rgb(211,182,209);
}

.Vl_benefits_outline {
    padding-top: 80px;
    padding-bottom: 80px;
}

.Vl_benefits_outline .iH_key_classes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.Vl_benefits_outline .Ag_learn_advantages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.Vl_benefits_outline .Ag_learn_advantages h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 35px;
    font-weight: 600;
}

.Vl_benefits_outline .Ag_learn_advantages h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.Vl_benefits_outline .Jd_gain_pro {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.Vl_benefits_outline .pc_training_edge {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.Vl_benefits_outline .pc_training_edge svg, .Vl_benefits_outline .pc_training_edge img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .pk_grid-container .Vl_benefits_outline .iH_key_classes {
        justify-content: center;
    }
    .pk_grid-container .Vl_benefits_outline .iH_key_classes .pc_training_edge {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .Vl_benefits_outline .Ag_learn_advantages h2 {
        font-size: 30px;
    }

    .Vl_benefits_outline .iH_key_classes {
        flex-direction: column;
    }

    .Vl_benefits_outline {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .pk_grid-container .Vl_benefits_outline .iH_key_classes .pc_training_edge {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.pk_grid-container .Vl_benefits_outline {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(179,133,195,0.5) 100%);
    color: #ffffff;
}

.pk_grid-container .Vl_benefits_outline .Ag_learn_advantages {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.pk_grid-container .Vl_benefits_outline .Ag_learn_advantages h2 {
    font-size: 35px;
    font-weight: 700;
    color: rgb(211,182,209);
    margin-bottom: 40px;
    position: relative;
}

.pk_grid-container .Vl_benefits_outline .Ag_learn_advantages h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: rgb(211,182,209);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.pk_grid-container .Vl_benefits_outline .Jd_gain_pro {
    font-size: 15px;
    margin-bottom: 30px;
    color: #ffffff;
    padding: 10px 20px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.pk_grid-container .Vl_benefits_outline .iH_key_classes {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.pk_grid-container .Vl_benefits_outline .pc_training_edge {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid rgb(211,182,209);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 23%;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pk_grid-container .Vl_benefits_outline .pc_training_edge:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

.pk_grid-container .Vl_benefits_outline .oD_top_gain img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid rgb(211,182,209);
    padding: 10px;
    background: rgb(211,182,209,0.5);
}

.pk_grid-container .Vl_benefits_outline .pc_training_edge h4 {
    font-size: 20px;
    font-weight: 700;
    color: rgb(211,182,209);
    margin-top: 10px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
    .pk_grid-container .Vl_benefits_outline .pc_training_edge {
        width: calc(50% - 10px);
        margin-right: 10px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .pk_grid-container .Vl_benefits_outline .iH_key_classes {
        flex-direction: column;
        align-items: center;
    }

    .pk_grid-container .Vl_benefits_outline .pc_training_edge {
        width: 80%;
        margin-bottom: 20px;
    }

    .pk_grid-container .Vl_benefits_outline .Ag_learn_advantages h2 {
        font-size: 28px;
    }

    .pk_grid-container .Vl_benefits_outline {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}.jo_privacy_corner {
    padding: 30px;
    width: 100%;
    overflow: hidden;
    height: 100%;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.jo_privacy_corner h1 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 41px;
    color: rgb(211,182,209);
    font-family: Merriweather, sans-serif;
    font-weight: 700;
    text-align: center;
    border-bottom: 2px solid rgb(211,182,209);
    padding-bottom: 10px;
}

.jo_privacy_corner h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 36px;
    color: rgb(179,133,195);
    font-family: Merriweather, sans-serif;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid rgb(179,133,195);
    padding-bottom: 5px;
}

.jo_privacy_corner h3, .jo_privacy_corner h4, .jo_privacy_corner h5, .jo_privacy_corner h6 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #000000;
    font-family: Merriweather, sans-serif;
    font-weight: 400;
}

.jo_privacy_corner ul, .jo_privacy_corner ol {
    list-style-position: inside;
    padding-left: 0;
    padding: 10px 0;
    color: #000000;
    font-family: Merriweather, sans-serif;
    font-size: 15px;
    list-style: none;
}

.jo_privacy_corner li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.jo_privacy_corner li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(211,182,209);
    font-size: 1.2em;
    line-height: 1em;
    top: 0;
}

.jo_privacy_corner section {
    background: none;
}

.jo_privacy_corner p, .jo_privacy_corner span, .jo_privacy_corner div {
    line-height: 1.5;
    margin-bottom: 15px;
    color: #000000;
    font-family: Merriweather, sans-serif;
    font-size: 15px;
}

@media only screen and (max-width: 800px) {
    .jo_privacy_corner {
        padding: 20px 10px;
    }

    .jo_privacy_corner h1 {
        font-size: calc(18px - 4px);
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .jo_privacy_corner h2 {
        font-size: calc(18px - 4px);
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .jo_privacy_corner ul, .jo_privacy_corner ol {
        padding-left: 10px;
    }

    .jo_privacy_corner li {
        padding-left: 15px;
    }
}.ic_enroll_instantly {
    padding: 5vh 0;
    background-color: rgb(234,226,231);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid rgb(211,182,209,0.5);
    border-bottom: 1px solid rgb(211,182,209,0.5);
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ic_enroll_instantly::before,
.ic_enroll_instantly::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    opacity: 0.7;
    pointer-events: none;
}

.ic_enroll_instantly::before {
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.7) 0%, transparent 40%);
    background-size: 200% 200%;
    animation: moveCloud 30s linear infinite;
}

.ic_enroll_instantly::after {
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.7) 0%, transparent 40%);
    background-size: 200% 200%;
    animation: moveCloud 40s linear infinite reverse;
}

@keyframes moveCloud {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

.ic_enroll_instantly .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2vh 2vw;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    width: 100%;
    max-width: 1200px;
    gap: 2vh;
    position: relative;
    z-index: 1;
}

.ic_enroll_instantly .AM_skill_boost {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
    padding: 1vh;
    width: 100%;
}

.ic_enroll_instantly .AM_skill_boost svg, .ic_enroll_instantly .AM_skill_boost svg path {
    fill: rgb(211,182,209);
    width: 8vw;
    height: 8vw;
    max-width: 100px;
    max-height: 100px;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.ic_enroll_instantly .AM_skill_boost svg:hover {
    transform: scale(1.1);
    fill: rgb(179,133,195);
}

.ic_enroll_instantly .AM_skill_boost h2 {
    font-size: calc(31px + 0.5vw);
    color: #000000;
    margin: 0;
    font-weight: 600;
    text-align: left;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.ic_enroll_instantly .AM_skill_boost h2::after {
    content: '';
    display: block;
    width: 6vw;
    height: 0.5vh;
    background-color: rgb(179,133,195);
    margin-top: 1vh;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.ic_enroll_instantly .AM_skill_boost h2:hover::after {
    width: 100%;
}

.ic_enroll_instantly .AM_skill_boost .UP_query_info {
    padding: 12px 25px;
    background: linear-gradient(135deg, rgb(179,133,195), rgb(211,182,209));
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ic_enroll_instantly .AM_skill_boost .UP_query_info::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ic_enroll_instantly .AM_skill_boost .UP_query_info:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.ic_enroll_instantly .AM_skill_boost .UP_query_info:hover::before {
    width: 300px;
    height: 300px;
}

@media only screen and (max-width: 1024px) {
    .ic_enroll_instantly .AM_skill_boost {
        flex-direction: column;
        text-align: center;
    }
    
    .ic_enroll_instantly .AM_skill_boost svg, .ic_enroll_instantly .AM_skill_boost svg path {
        width: 12vw;
        height: 12vw;
        max-width: 80px;
        max-height: 80px;
    }
    
    .ic_enroll_instantly .AM_skill_boost h2 {
        font-size: 22px;
        text-align: center;
    }
    
    .ic_enroll_instantly .AM_skill_boost h2::after {
        margin: 1vh auto 0;
    }
}

@media only screen and (max-width: 800px) {
    .ic_enroll_instantly .container {
        padding: 10px;
    }
    
    .ic_enroll_instantly .AM_skill_boost h2 {
        font-size: 16px;
    }
    
    .ic_enroll_instantly .AM_skill_boost svg, .ic_enroll_instantly .AM_skill_boost svg path {
        width: 60px;
        height: 60px;
    }
    
    .ic_enroll_instantly .AM_skill_boost .UP_query_info {
        padding: 10px 20px;
        font-size: 13px;
    }
}header .top_plank {
    background: rgb(211,182,209);
    color:  #ffffff;
}
header .top_plank .sd_main_links div svg, header .top_plank .sd_main_links div svg path {
    fill: #ffffff;
}
header .top_plank .sd_main_links div span {
    color: #ffffff;
}
header .top_plank .sd_main_links {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0 10px 0;
    font-size: 14px;
    line-height: 21px;
    flex-wrap: wrap;
}
header .top_plank .sd_main_links div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 24px;
}
header .top_plank .sd_main_links div img, header .top_plank .sd_main_links div svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}.JS_educational_rewards {
    position: relative;
    padding: 80px 0;
    background: rgb(234,226,231);
    overflow: hidden;
}

.JS_educational_rewards .container {
    position: relative;
    z-index: 2;
}

.JS_educational_rewards .AM_skill_boost {
    border-radius: 30px;
    padding: 20px;
    backdrop-filter: blur(10px);
    background: linear-gradient(45deg, 
        rgba(0, 0, 0, 0.5) 0%,
        rgb(179,133,195,0.5) 100%);
}

.JS_educational_rewards .jd_learning_impact {
    position: relative;
    border-radius: 30px;
    padding: 60px 40px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.JS_educational_rewards .jd_learning_impact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.5) 50%,
        #000000 100%);
    border-radius: 30px;
}

.JS_educational_rewards .jd_learning_impact h3 {
    position: relative;
    color: #ffffff;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgb(211,182,209);
}

.JS_educational_rewards .jd_learning_impact div {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.JS_educational_rewards .jd_learning_impact p {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border-left: 3px solid rgb(211,182,209);
    transition: transform 0.3s ease;
}

.JS_educational_rewards .jd_learning_impact p:hover {
    transform: translateY(-5px);
}

@media (max-width: 991px) {
    .JS_educational_rewards {
        padding: 60px 0;
    }

    .JS_educational_rewards .jd_learning_impact {
        min-height: 500px;
        padding: 40px 30px;
    }

    .JS_educational_rewards .jd_learning_impact div {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .JS_educational_rewards .jd_learning_impact h3 {
        font-size: calc(35px * 0.9);
    }
}

@media (max-width: 767px) {
    .JS_educational_rewards {
        padding: 40px 0;
    }

    .JS_educational_rewards .AM_skill_boost {
        padding: 15px;
    }

    .JS_educational_rewards .jd_learning_impact {
        min-height: 400px;
        padding: 30px 20px;
    }

    .JS_educational_rewards .jd_learning_impact h3 {
        font-size: calc(35px * 0.8);
        margin-bottom: 20px;
    }

    .JS_educational_rewards .jd_learning_impact p {
        font-size: calc(12px * 0.95);
        padding: 15px;
    }
}.rD_who_we_are {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    z-index: 1;
}

.rD_who_we_are::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(170deg, #000000 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: -1;
}

.rD_who_we_are::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.02) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02) 76%, transparent 77%),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.02) 25%, rgba(255, 255, 255, 0.02) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.02) 75%, rgba(255, 255, 255, 0.02) 76%, transparent 77%);
    background-size: 50px 50px;
    z-index: -1;
}

.rD_who_we_are:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(211,182,209,0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(179,133,195,0.5) 0%, transparent 50%);
    opacity: 0.3;
    z-index: -2;
}

.rD_who_we_are:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, transparent 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}

.rD_who_we_are .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rD_who_we_are .TW_text_wrapper {
    position: relative;
    width: 900px;
    background: rgba(0, 0, 0, 0.6);
    padding: 0;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-gap: 0;
    clip-path: polygon(
        0 0, 
        calc(100% - 50px) 0, 
        100% 50px, 
        100% 100%, 
        50px 100%, 
        0 calc(100% - 50px)
    );
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rD_who_we_are .TW_text_wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48.9%, rgb(211,182,209) 49%, rgb(211,182,209) 50%, transparent 50.1%) top right/50px 50px no-repeat,
        linear-gradient(-45deg, transparent 48.9%, rgb(179,133,195) 49%, rgb(179,133,195) 50%, transparent 50.1%) bottom left/50px 50px no-repeat;
    z-index: -1;
    pointer-events: none;
}

.rD_who_we_are .TW_text_wrapper:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: -1;
}

.rD_who_we_are .TW_text_wrapper h3 {
    grid-row: 1;
    font-size: 29px;
    color: #ffffff;
    margin: 0;
    padding: 40px 60px 20px;
    position: relative;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(211,182,209,0.5);
}

.rD_who_we_are .TW_text_wrapper h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(211,182,209), transparent);
}

.rD_who_we_are .TW_text_wrapper h3:after {
    content: ;
    position: absolute;
    right: 60px;
    top: 40px;
    font-size: 14px;
    color: rgb(211,182,209);
    opacity: 0.7;
    font-family: monospace;
}

.rD_who_we_are .TW_text_wrapper span {
    grid-row: 2;
    font-size: 22px;
    color: rgb(179,133,195);
    margin: 0;
    padding: 20px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.2);
}

.rD_who_we_are .TW_text_wrapper span:before {
    content: "[ ";
    color: rgb(211,182,209);
    margin-right: 8px;
    font-weight: 400;
}

.rD_who_we_are .TW_text_wrapper span:after {
    content: " ]";
    color: rgb(211,182,209);
    margin-left: 8px;
    font-weight: 400;
}

.rD_who_we_are .TW_text_wrapper p {
    grid-row: 3;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.9;
    margin: 0;
    padding: 40px 60px;
    position: relative;
}

.rD_who_we_are .TW_text_wrapper p:before {
    content: "";
    position: absolute;
    left: 20px;
    top: 40px;
    width: 20px;
    height: calc(100% - 80px);
    border-left: 1px solid rgb(211,182,209,0.5);
    border-top: 1px solid rgb(211,182,209,0.5);
    border-bottom: 1px solid rgb(211,182,209,0.5);
    opacity: 0.5;
}

.rD_who_we_are .TW_text_wrapper:after {
    content: ;
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgb(211,182,209);
    font-size: 12px;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 1;
}

.rD_who_we_are .container:before,
.rD_who_we_are .container:after {
    content: "";
    position: absolute;
    border: 1px dashed rgb(211,182,209,0.5);
    opacity: 0.3;
    z-index: -1;
}

.rD_who_we_are .container:before {
    top: -100px;
    right: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.rD_who_we_are .container:after {
    bottom: -150px;
    left: 15%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    animation: rotate 50s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rD_who_we_are .TW_text_wrapper:before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid rgb(211,182,209,0.5);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
    opacity: 0.5;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.rD_who_we_are .TW_text_wrapper h3:before,
.rD_who_we_are .TW_text_wrapper p:before {
    content: "";
    position: absolute;
    background: rgb(211,182,209,0.5);
    opacity: 0.5;
}

.rD_who_we_are svg {
    position: absolute;
    width: 150px;
    height: 150px;
    fill: none;
    stroke: rgb(211,182,209);
    stroke-width: 0.5;
    opacity: 0.1;
    z-index: -1;
}

.rD_who_we_are svg:nth-child(1) {
    top: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}

.rD_who_we_are svg:nth-child(2) {
    bottom: 10%;
    left: 5%;
    stroke: rgb(179,133,195);
    animation: float 13s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 992px) {
    .rD_who_we_are {
        padding: 120px 0;
    }
    
    .rD_who_we_are .TW_text_wrapper {
        width: 700px;
        clip-path: polygon(
            0 0, 
            calc(100% - 30px) 0, 
            100% 30px, 
            100% 100%, 
            30px 100%, 
            0 calc(100% - 30px)
        );
    }
    
    .rD_who_we_are .TW_text_wrapper h3 {
        font-size: calc(29px - 2px);
        padding: 35px 50px 15px;
    }
    
    .rD_who_we_are .TW_text_wrapper h3:after {
        right: 50px;
        top: 35px;
    }
    
    .rD_who_we_are .TW_text_wrapper span {
        font-size: calc(22px - 1px);
        padding: 15px 50px;
    }
    
    .rD_who_we_are .TW_text_wrapper p {
        padding: 30px 50px;
    }
    
    .rD_who_we_are .TW_text_wrapper p:before {
        left: 15px;
        top: 30px;
        height: calc(100% - 60px);
    }
    
    .rD_who_we_are .container:before {
        width: 150px;
        height: 150px;
    }
    
    .rD_who_we_are .container:after {
        width: 200px;
        height: 200px;
    }
    
    .rD_who_we_are svg {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .rD_who_we_are {
        padding: 90px 0;
    }
    
    .rD_who_we_are .TW_text_wrapper {
        width: 100%;
        clip-path: polygon(
            0 0, 
            calc(100% - 20px) 0, 
            100% 20px, 
            100% 100%, 
            20px 100%, 
            0 calc(100% - 20px)
        );
    }
    
    .rD_who_we_are .TW_text_wrapper h3 {
        font-size: calc(29px - 4px);
        padding: 30px 30px 15px;
        letter-spacing: 1px;
    }
    
    .rD_who_we_are .TW_text_wrapper h3:after {
        right: 30px;
        top: 30px;
    }
    
    .rD_who_we_are .TW_text_wrapper span {
        font-size: calc(22px - 2px);
        padding: 15px 30px;
    }
    
    .rD_who_we_are .TW_text_wrapper p {
        font-size: calc(13px - 1px);
        line-height: 1.8;
        padding: 25px 30px;
    }
    
    .rD_who_we_are .TW_text_wrapper p:before {
        display: none;
    }
    
    .rD_who_we_are .container:before,
    .rD_who_we_are .container:after {
        display: none;
    }
    
    .rD_who_we_are svg {
        width: 80px;
        height: 80px;
    }
    
    .rD_who_we_are .TW_text_wrapper:before {
        width: 30px;
        height: 30px;
        bottom: 15px;
        left: 15px;
    }
    
    .rD_who_we_are .TW_text_wrapper:after {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .rD_who_we_are {
        padding: 70px 0;
    }
    
    .rD_who_we_are .TW_text_wrapper {
        clip-path: none;
        border-radius: 10px;
    }
    
    .rD_who_we_are .TW_text_wrapper h3 {
        font-size: calc(29px - 6px);
        padding: 25px 20px 15px;
    }
    
    .rD_who_we_are .TW_text_wrapper h3:after {
        right: 20px;
        top: 25px;
        font-size: 12px;
    }
    
    .rD_who_we_are .TW_text_wrapper span {
        font-size: calc(22px - 3px);
        padding: 15px 20px;
    }
    
    .rD_who_we_are .TW_text_wrapper p {
        font-size: calc(13px - 2px);
        line-height: 1.7;
        padding: 20px;
    }
    
    .rD_who_we_are svg {
        display: none;
    }
    
    .rD_who_we_are .TW_text_wrapper:before {
        display: none;
    }
    
    .rD_who_we_are .TW_text_wrapper:after {
        font-size: 10px;
        padding: 3px 6px;
    }
}.ku_thanksSpace {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgb(211,182,209,0.5);
    color: #ffffff;
    font-family: Merriweather, sans-serif;
    padding: 10px 0;
    text-align: center;
}
.ku_thanksSpace .container {
    background: rgb(234,226,231);
    padding: 50px;
    border-radius: 27px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 80%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ku_thanksSpace h2 {
    font-size: 43px;
    margin-bottom: 20px;
    font-weight: 700;
    color: rgb(211,182,209);
    border-bottom: 2px solid rgb(179,133,195);
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
}
.ku_thanksSpace p {
    font-size: 12px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {
    .ku_thanksSpace {
        padding: 20px;
    }
    .ku_thanksSpace .container {
        padding: 30px;
    }
    .ku_thanksSpace h2 {
        font-size: 38px;
    }
}
