* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}svg {
    width: 30px;
    height: 30px;
}.container {
    margin: auto;
    width: 1218px;
    max-width: 100%;
}.ui_intern_opp {
    flex: 0 0 auto;
}a {
    color: inherit;
    text-decoration: none;
}.ui_wrapper-holder {
    flex-direction: column;
    min-height: 100%;
    display: flex;
    height: 100%;
}html,body {
    height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
    scroll-behavior: smooth;
    min-height: 100%;
}.ui_main_lead {
    flex: 1 0 auto;
}header,footer {
    width: 100%;
}::-webkit-scrollbar {
    width: 18px;
}::-webkit-scrollbar-track {
    background: rgb(195,191,208);
}::-webkit-scrollbar-thumb {
    background: rgb(157,152,173);
    border-radius: 1.8em;
    transition: all, border-radius 5s linear;
}::-webkit-scrollbar-thumb:active {
    box-shadow: inset -1px 3px 2px -2px rgba(0, 0, 0, 0.6);
    background: rgb(228,225,233);
}::-webkit-scrollbar-corner {
    background: rgb(195,191,208);
    border: 1px dotted #ffffff;
}* {
    scrollbar-color: #ffffff rgb(157,152,173);
    scrollbar-width: thin;
}

@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.ui_instructor_profile {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(135deg, rgb(228,225,233) 0%, #ffffff 100%);
    overflow: hidden;
}.ui_instructor_profile::before {
    filter: blur(120px);
    z-index: 0;
    background: rgb(195,191,208,0.5);
    height: 400px;
    right: -100px;
    position: absolute;
    top: -100px;
    content: "";
    width: 400px;
}.ui_instructor_profile::after {
    width: 300px;
    height: 300px;
    bottom: -50px;
    background: rgb(157,152,173,0.5);
    left: -50px;
    position: absolute;
    z-index: 0;
    filter: blur(100px);
    content: "";
}.ui_instructor_profile .container {
    z-index: 1;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}.ui_instructor_profile .ui_rating_spot {
    transform-style: preserve-3d;
    grid-template-columns: 1fr;
    transform: perspective(1000px) rotateY(2deg);
    background: rgba(255, 255, 255, 0.9);
    gap: 30px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    display: grid;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
              0 4px 8px rgba(0, 0, 0, 0.04);
}.ui_instructor_profile .ui_rating_spot:hover {
    transform: perspective(1000px) rotateY(0deg);
}.ui_instructor_profile .ui_rating_spot > div:first-child {
    justify-content: center;
    display: flex;
    align-items: center;
}.ui_instructor_profile .ui_rating_spot .ui_img_display {
    width: 180px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    height: 180px;
}.ui_instructor_profile .ui_rating_spot:hover .ui_img_display {
    transform: translateZ(20px) scale(1.05);
}.ui_instructor_profile .ui_rating_spot .ui_img_display::before {
    position: absolute;
    inset: 0;
    content: "";
    z-index: 1;
    background: linear-gradient(
    45deg,
    transparent 60%,
    rgb(195,191,208,0.5) 100%
  );
}.ui_instructor_profile .ui_rating_spot > div:nth-child(2) {
    text-align: center;
    transform: translateZ(10px);
}.ui_instructor_profile .ui_rating_spot .name {
    display: inline-block;
    font-size: calc(22px * 1.1);
    position: relative;
    margin-bottom: 10px;
    color: rgb(195,191,208);
    font-weight: 700;
}.ui_instructor_profile .ui_rating_spot .name::after {
    position: absolute;
    width: 80px;
    bottom: -8px;
    background: rgb(157,152,173);
    content: "";
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
}.ui_instructor_profile .ui_rating_spot > div:nth-child(2) > div {
    margin-top: 15px;
    font-weight: 600;
    font-size: calc(12px * 0.95);
    font-style: italic;
    color: #000000;
}.ui_instructor_profile .ui_rating_spot > div:nth-child(3) {
    position: relative;
}.ui_instructor_profile .ui_rating_spot .ui_employee_content {
    margin: 0;
    transform: translateZ(5px);
    line-height: 1.7;
    position: relative;
    padding: 20px 0;
    color: #000000;
    font-size: 12px;
}.ui_instructor_profile .ui_rating_spot .ui_employee_content::before,
.ui_instructor_profile .ui_rating_spot .ui_employee_content::after {
    content: "";
    font-family: Georgia, serif;
    color: rgb(195,191,208,0.5);
    position: absolute;
    font-size: 80px;
    line-height: 1;
}.ui_instructor_profile .ui_rating_spot .ui_employee_content::before {
    top: -20px;
    left: -15px;
}.ui_instructor_profile .ui_rating_spot .ui_employee_content::after {
    content: "";
    right: -15px;
    bottom: -60px;
}

@media (min-width: 768px) {.ui_instructor_profile .ui_rating_spot {
    gap: 30px 40px;
    padding: 50px;
    grid-template-rows: auto 1fr;
    grid-template-columns: 220px 1fr;
}.ui_instructor_profile .ui_rating_spot > div:first-child {
    grid-row: span 2;
}.ui_instructor_profile .ui_rating_spot > div:nth-child(2) {
    align-self: end;
    text-align: left;
}.ui_instructor_profile .ui_rating_spot .name::after {
    left: 0;
    transform: none;
}.ui_instructor_profile .ui_rating_spot .ui_employee_content {
    padding: 10px 0 10px 30px;
    border-left: 3px solid rgb(157,152,173,0.5);
}
}

@media (min-width: 992px) {.ui_instructor_profile {
    padding: 140px 0;
}.ui_instructor_profile .ui_rating_spot {
    padding: 60px;
    grid-template-columns: 260px 1fr;
    gap: 40px 60px;
}.ui_instructor_profile .ui_rating_spot .ui_img_display {
    height: 220px;
    width: 220px;
}.ui_instructor_profile .ui_rating_spot .name {
    font-size: calc(22px * 1.2);
}.ui_instructor_profile .ui_rating_spot .ui_employee_content {
    line-height: 1.8;
    font-size: calc(12px * 1.05);
}
}

@media (max-width: 767px) {.ui_instructor_profile {
    padding: 80px 0;
}.ui_instructor_profile .ui_rating_spot {
    padding: 30px 25px;
}.ui_instructor_profile .ui_rating_spot .ui_img_display {
    height: 150px;
    width: 150px;
}.ui_instructor_profile .ui_rating_spot .ui_employee_content {
    line-height: 1.6;
    font-size: calc(12px * 0.95);
}.ui_instructor_profile .ui_rating_spot .ui_employee_content::before,
  .ui_instructor_profile .ui_rating_spot .ui_employee_content::after {
    font-size: 60px;
}
}

@media (max-width: 480px) {.ui_instructor_profile {
    padding: 60px 0;
}.ui_instructor_profile .ui_rating_spot {
    gap: 20px;
    padding: 25px 20px;
}.ui_instructor_profile .ui_rating_spot .ui_img_display {
    width: 120px;
    height: 120px;
}.ui_instructor_profile .ui_rating_spot .name {
    font-size: 22px;
}.ui_instructor_profile .ui_rating_spot > div:nth-child(2) > div {
    font-size: calc(12px * 0.9);
}}.ui_operation_process {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(228,225,233) 0%, rgba(255,255,255,0.92) 100%);
    padding: 120px 0;
}.ui_operation_process::before {
    position: absolute;
    opacity: 0.1;
    height: 300px;
    background: linear-gradient(45deg, rgb(195,191,208,0.5), rgb(157,152,173,0.5));
    top: -5%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    content: "";
    width: 300px;
    animation: floatingShape 20s infinite alternate ease-in-out;
    right: -5%;
}.ui_operation_process::after {
    animation: floatingShape 15s infinite alternate-reverse ease-in-out;
    bottom: -8%;
    z-index: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    content: "";
    width: 250px;
    left: -5%;
    height: 250px;
    background: linear-gradient(225deg, rgb(157,152,173,0.5), rgb(195,191,208,0.5));
    opacity: 0.08;
    position: absolute;
}.ui_operation_process .ui_path_impact {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    padding: 0 20px;
    max-width: 1140px;
}.ui_operation_process h2 {
    font-size: 37px;
    opacity: 0;
    transform: translateX(-8px);
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    font-weight: 700;
    color: #000000;
    animation: slideIn 0.8s 0.2s forwards ease-out;
}.ui_operation_process h2::after {
    content: "";
    width: 0;
    position: absolute;
    background: linear-gradient(to right, rgb(195,191,208), rgb(157,152,173));
    animation: lineGrow 1.2s 0.8s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    left: 0;
    bottom: -8px;
    height: 3px;
}.ui_operation_process .ui_text_column {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    opacity: 0;
    background-color: #ffffff;
    position: relative;
    animation: fadeUp 1s 0.6s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    padding: 40px;
    transform: translateY(20px);
}.ui_operation_process .ui_text_column::before {
    animation: verticalLineGrow 1.2s 1.2s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    position: absolute;
    top: 0;
    height: 0%;
    background: linear-gradient(to bottom, rgb(195,191,208), rgb(157,152,173));
    width: 4px;
    content: "";
    left: 0;
}.ui_operation_process .ui_text_column p {
    line-height: 1.8;
    font-family: Arial, sans-serif;
    color: #000000;
    margin: 0;
    font-size: 15px;
}

@keyframes slideIn {
    0% {
        transform: translateX(-8px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

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

@keyframes lineGrow {
    0% {
        width: 0;
    }
    100% {
        width: 60px;
    }
}

@keyframes verticalLineGrow {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

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

@media (max-width: 991px) {.ui_operation_process {
    padding: 90px 0;
}.ui_operation_process::before {
    height: 200px;
    width: 200px;
}.ui_operation_process::after {
    width: 180px;
    height: 180px;
}.ui_operation_process .ui_text_column {
    padding: 30px;
}
}

@media (max-width: 767px) {.ui_operation_process {
    padding: 70px 0;
}.ui_operation_process h2 {
    margin-bottom: 30px;
    font-size: calc(37px * 0.85);
}.ui_operation_process .ui_text_column {
    padding: 25px 20px;
}.ui_operation_process .ui_text_column p {
    font-size: calc(15px * 0.95);
}
}

@media (max-width: 576px) {.ui_operation_process {
    padding: 50px 0;
}.ui_operation_process::before, 
    .ui_operation_process::after {
    width: 150px;
    height: 150px;
}.ui_operation_process h2 {
    font-size: calc(37px * 0.75);
    margin-bottom: 25px;
}.ui_operation_process .ui_text_column {
    padding: 20px 15px;
}.ui_operation_process .ui_text_column::before {
    width: 3px;
}.ui_operation_process .ui_text_column p {
    font-size: calc(15px * 0.9);
    line-height: 1.7;
}.ui_operation_process h2::after {
    height: 2px;
}}

.ui_operation_process:hover .ui_text_column {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}.ui_price_pack {
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.ui_price_pack::before {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    bottom: 0;
    content: "";
    top: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(195,191,208,0.5) 100%);
}.ui_price_pack .container {
    margin: 0 auto;
    z-index: 2;
    padding: 0 20px;
    position: relative;
    max-width: 1200px;
}.ui_price_pack .ui_cost_matrix {
    position: relative;
}.ui_price_pack h2 {
    transform: translateX(-10px);
    animation: slideInTitle 0.8s forwards 0.2s;
    opacity: 0;
    font-weight: 700;
    color: #ffffff;
    font-size: 35px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}.ui_price_pack .ui_plan_cost {
    line-height: 1.6;
    max-width: 800px;
    opacity: 0;
    color: #ffffff;
    transform: translateX(-10px);
    margin-bottom: 40px;
    font-size: 12px;
    animation: slideInDesc 0.8s forwards 0.4s;
}.ui_price_pack .ui_annual_fee {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 0;
    list-style: none;
    display: grid;
    padding: 0;
}.ui_price_pack .ui_annual_fee li {
    perspective: 1000px;
    animation: fadeIn 0.8s forwards;
    opacity: 0;
}.ui_price_pack .ui_annual_fee li:nth-child(1) {
    animation-delay: 0.5s;
}.ui_price_pack .ui_annual_fee li:nth-child(2) {
    animation-delay: 0.7s;
}.ui_price_pack .ui_annual_fee li:nth-child(3) {
    animation-delay: 0.9s;
}.ui_price_pack .ui_annual_fee li:nth-child(4) {
    animation-delay: 1.1s;
}.ui_price_pack .ui_fee_package {
    display: block;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    text-decoration: none;
}.ui_price_pack .ui_basic_cost {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-left: 4px solid rgb(195,191,208);
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    transition: all 0.4s ease;
    flex-direction: column;
    position: relative;
    height: 100%;
    background: linear-gradient(145deg, #ffffff 0%, rgb(228,225,233) 100%);
    overflow: hidden;
}.ui_price_pack .ui_basic_cost::before {
    top: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    content: "";
    background: rgb(157,152,173);
    position: absolute;
    width: 80px;
    height: 80px;
    right: 0;
    transform: translate(50%, -50%) rotate(45deg);
    opacity: 0.8;
}.ui_price_pack .ui_plan_table {
    position: relative;
    height: 100%;
    flex-direction: column;
    display: flex;
    z-index: 2;
}.ui_price_pack .ui_plan_table h4 {
    position: relative;
    font-size: calc(19px + 2px);
    margin: 0 0 20px;
    display: inline-block;
    font-weight: 700;
    color: #000000;
}.ui_price_pack .ui_plan_table h4::after {
    height: 3px;
    left: 0;
    bottom: -10px;
    transition: width 0.3s ease;
    width: 40px;
    background: rgb(195,191,208);
    content: "";
    position: absolute;
}.ui_price_pack .ui_plan_table p {
    color: #000000;
    white-space: normal;
    font-size: calc(12px - 1px);
    margin: 0 0 25px;
    line-height: 1.6;
    hyphens: auto;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}.ui_price_pack .ui_fee_pricing {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background-color 0.3s ease;
    position: relative;
    background: rgb(195,191,208);
    padding: 10px 20px;
    color: #ffffff;
    font-weight: 700;
    overflow: hidden;
    align-self: flex-start;
    font-size: 18px;
    transform: translateY(0);
    margin-top: auto;
    border-radius: 10px;
}.ui_price_pack .ui_fee_pricing::before {
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    height: 100%;
    transform: translateX(-100%);
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    width: 100%;
    left: 0;
    position: absolute;
    content: "";
    top: 0;
}.ui_price_pack .ui_fee_package:hover {
    transform: translateY(-8px);
}.ui_price_pack .ui_fee_package:hover .ui_basic_cost {
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-left-width: 8px;
}.ui_price_pack .ui_fee_package:hover .ui_basic_cost::before {
    transform: translate(40%, -40%) rotate(45deg);
}.ui_price_pack .ui_fee_package:hover .ui_plan_table h4::after {
    width: 70px;
}.ui_price_pack .ui_fee_package:hover .ui_fee_pricing {
    transform: translateY(-5px);
    background: rgb(157,152,173);
}.ui_price_pack .ui_fee_package:hover .ui_fee_pricing::before {
    transform: translateX(100%);
}.ui_price_pack .ui_fee_package:active {
    transform: translateY(-2px);
    transition: transform 0.2s;
}

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

@keyframes slideInDesc {
  to {
    transform: translateX(0);
    opacity: 0.9;
  }
}

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

@media (max-width: 1200px) {.ui_price_pack {
    padding: 80px 0;
}.ui_price_pack .ui_annual_fee {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

@media (max-width: 992px) {.ui_price_pack h2 {
    font-size: calc(35px - 4px);
}.ui_price_pack .ui_plan_cost {
    margin-bottom: 30px;
}.ui_price_pack .ui_annual_fee {
    gap: 20px;
}.ui_price_pack .ui_basic_cost {
    padding: 25px;
}
}

@media (max-width: 768px) {.ui_price_pack {
    padding: 60px 0;
}.ui_price_pack h2 {
    font-size: calc(35px - 6px);
}.ui_price_pack .ui_plan_cost {
    font-size: calc(12px - 1px);
}.ui_price_pack .ui_annual_fee {
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}.ui_price_pack .ui_plan_table h4 {
    font-size: 19px;
}.ui_price_pack .ui_plan_table p {
    margin-bottom: 20px;
    font-size: calc(12px - 2px);
}
}

@media (max-width: 576px) {.ui_price_pack {
    padding: 50px 0;
}.ui_price_pack .container {
    padding: 0 15px;
}.ui_price_pack h2 {
    font-size: calc(35px - 8px);
    margin-bottom: 15px;
}.ui_price_pack .ui_plan_cost {
    margin-bottom: 25px;
}.ui_price_pack .ui_annual_fee {
    grid-template-columns: 1fr;
    gap: 20px;
}.ui_price_pack .ui_basic_cost {
    padding: 20px;
}.ui_price_pack .ui_plan_table p {
    margin-bottom: 15px;
}.ui_price_pack .ui_fee_pricing {
    padding: 8px 16px;
    font-size: calc(18px - 1px);
}}.ui_title_intro {
    position: relative;
    align-items: center;
    display: flex;
    height: 100vh;
    min-height: 700px;
    justify-content: flex-start;
    overflow: hidden;
}.ui_title_intro::before {
    height: 100%;
    top: 0;
    position: absolute;
    width: 100%;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(195,191,208,0.5) 100%);
    content: "";
    z-index: 1;
    backdrop-filter: blur(2px);
}.ui_title_intro::after {
    position: absolute;
    animation: floatGradient 15s ease-in-out infinite alternate;
    transform: translateZ(0);
    background: radial-gradient(circle, rgb(157,152,173,0.5) 0%, transparent 70%);
    content: "";
    right: -10%;
    top: -10%;
    width: 70%;
    height: 70%;
    z-index: 2;
    opacity: 0.6;
}.ui_title_intro > div {
    z-index: 3;
    margin-left: 10%;
    width: 90%;
    transform: translateY(-5%);
    max-width: 1200px;
    position: relative;
}.ui_title_intro > div > div:first-child {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transform: translateX(-50px);
    opacity: 0;
}.ui_title_intro .title_style_header {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: inline-block;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 46px);
    line-height: 1.2;
    position: relative;
    font-weight: 700;
    letter-spacing: 0.02em;
}.ui_title_intro .title_style_header::after {
    width: 0;
    bottom: -10px;
    animation: lineGrow 1.2s 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
    left: 0;
    content: "";
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, rgb(195,191,208) 0%, rgb(157,152,173) 100%);
}.ui_title_intro .ui_course_intro {
    opacity: 0;
    max-width: 700px;
    animation: slideInLeft 0.8s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(-50px);
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(10px);
    border-left: 3px solid rgb(195,191,208);
    margin-top: 2rem;
}.ui_title_intro .ui_expert_team {
    margin-bottom: 2rem;
}.ui_title_intro .ui_expert_team h3 {
    letter-spacing: 0.01em;
    line-height: 1.5;
    font-weight: 600;
    display: inline-block;
    position: relative;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: #ffffff;
}.ui_title_intro .ui_expert_team h3::before {
    content: "";
    width: 6px;
    border-radius: 10px;
    background-color: rgb(157,152,173);
    animation: fadeIn 0.5s 1s ease-in forwards;
    left: -12px;
    transform: translateY(-50%);
    top: 50%;
    opacity: 0;
    position: absolute;
    height: 6px;
}.ui_title_intro p {
    opacity: 0;
    line-height: 1.6;
    max-width: 85%;
    font-size: clamp(1rem, 2vw, 16px);
    color: #ffffff;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.6s ease-out forwards;
    font-weight: 400;
}

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

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

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

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

@keyframes floatGradient {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-5%, 5%);
  }
  100% {
    transform: translate(5%, -5%);
  }
}

@media (max-width: 992px) {.ui_title_intro > div {
    width: 90%;
    margin-left: 5%;
}.ui_title_intro .ui_course_intro {
    padding: 2rem;
}
}

@media (max-width: 768px) {.ui_title_intro {
    height: auto;
    padding: 5rem 0;
    min-height: 600px;
}.ui_title_intro > div {
    margin-left: 5%;
    width: 90%;
    transform: translateY(0);
}.ui_title_intro .title_style_header {
    margin-bottom: 1.5rem;
}.ui_title_intro .ui_course_intro {
    padding: 1.75rem;
    margin-top: 1.5rem;
}.ui_title_intro p {
    max-width: 100%;
}
}

@media (max-width: 576px) {.ui_title_intro {
    padding: 4rem 0;
    min-height: 500px;
}.ui_title_intro > div {
    margin-left: 0;
    width: 92%;
    margin: 0 auto;
}.ui_title_intro .title_style_header {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
}.ui_title_intro .ui_course_intro {
    padding: 1.5rem;
    border-left-width: 2px;
}.ui_title_intro .ui_expert_team h3 {
    font-size: 1.1rem;
}.ui_title_intro p {
    font-size: 0.95rem;
}
}

@media (hover: hover) {.ui_title_intro:hover .title_style_header::after {
    transition: all 0.4s ease;
    background: linear-gradient(90deg, rgb(157,152,173) 0%, rgb(195,191,208) 100%);
}.ui_title_intro .ui_course_intro:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    transform: translateY(-5px);
}}.ui_cookie_warning_popup {
    padding: 15px 20px;
    background: rgb(157,152,173);
    z-index: 90;
    bottom: 0;
    width: 100%;
    border-top: 3px solid rgb(195,191,208);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
}.ui_cookies_consent {
    justify-content: space-between;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}.ui_visitor_settings {
    flex-shrink: 0;
    margin-right: 20px;
}.ui_visitor_settings svg {
    fill: rgb(195,191,208);
    width: 50px;
    height: 50px;
}.ui_cookie_eductrl {
    max-width: 600px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}.ui_cookie_warning_popup h5 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 23px;
    color: #ffffff;
}.ui_cookie_warning_popup p {
    color: #000000;
    font-size: 12px;
    line-height: 1.5;
}.ui_manage_cookies {
    border: 2px solid rgb(195,191,208);
    text-align: center;
    transition: none;
    border-radius: 10px;
    padding: 10px 20px;
    color: #ffffff;
    min-width: 150px;
    text-decoration: none;
    flex-shrink: 0;
    font-size: 20px;
    cursor: pointer;
    background: rgb(195,191,208);
    margin-left: 10px;
}.ui_manage_cookies:hover {
    background: rgb(195,191,208,0.5);
    border-color: rgb(195,191,208,0.5);
}.ui_cookie_warning_popup p a {
    color: rgb(195,191,208);
    text-decoration: none;
    border-bottom: 2px solid rgb(195,191,208);
}.ui_cookie_warning_popup p a:hover {
    color: rgb(157,152,173);
    border-bottom-color: rgb(157,152,173);
}
@media only screen and (max-width: 1200px) {.ui_cookie_warning_popup {
    padding: 15px;
}
}
@media only screen and (max-width: 800px) {.ui_visitor_settings {
    display: none;
}.ui_cookies_consent {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}.ui_cookie_warning_popup h5, .ui_cookie_warning_popup p {
    text-align: center;
}.ui_cookie_eductrl {
    margin-bottom: 15px;
}.ui_manage_cookies {
    margin-top: 10px;
    margin-left: 0;
}}
#ui_userAgreementPopup {
    display: none;
}#ui_userAgreementPopup:checked ~ .ui_cookie_warning_popup {
    visibility: hidden;
    opacity: 0;
}footer {
    width: 100%;
    position: relative;
}footer .ui_intern_opp {
    padding: 80px 0 30px;
    background-color: rgb(157,152,173);
    color: #ffffff;
    font-family: Arial, sans-serif;
    position: relative;
}footer .ui_intern_opp::before {
    background-size: 80px 140px;
    top: 0;
    background-image: 
        linear-gradient(30deg, rgb(157,152,173) 12%, transparent 12.5%, transparent 87%, rgb(157,152,173) 87.5%, rgb(157,152,173)),
        linear-gradient(150deg, rgb(157,152,173) 12%, transparent 12.5%, transparent 87%, rgb(157,152,173) 87.5%, rgb(157,152,173)),
        linear-gradient(30deg, rgb(157,152,173) 12%, transparent 12.5%, transparent 87%, rgb(157,152,173) 87.5%, rgb(157,152,173)),
        linear-gradient(150deg, rgb(157,152,173) 12%, transparent 12.5%, transparent 87%, rgb(157,152,173) 87.5%, rgb(157,152,173)),
        linear-gradient(60deg, rgb(195,191,208,0.5) 25%, transparent 25.5%, transparent 75%, rgb(195,191,208,0.5) 75%, rgb(195,191,208,0.5)),
        linear-gradient(60deg, rgb(195,191,208,0.5) 25%, transparent 25.5%, transparent 75%, rgb(195,191,208,0.5) 75%, rgb(195,191,208,0.5));
    width: 100%;
    position: absolute;
    pointer-events: none;
    content: "";
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    left: 0;
    height: 100%;
    opacity: 0.05;
}footer .ui_intern_opp::after {
    position: absolute;
    content: "";
    width: 100%;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(195,191,208), rgb(157,152,173));
    top: 0;
    pointer-events: none;
}footer .ui_forum_link {
    z-index: 1;
    position: relative;
}footer .ui_support_now {
    display: flex;
    margin-bottom: 60px;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}footer .info_item {
    position: relative;
    min-height: 60px;
    transition: all 0.4s ease;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    max-width: 300px;
    display: flex;
    min-width: 200px;
    flex: 0 1 auto;
    cursor: pointer;
    justify-content: center;
}footer .info_item::before {
    bottom: 3px;
    position: absolute;
    left: 3px;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    background-color: rgb(157,152,173);
    z-index: -1;
    top: 3px;
    content: "";
    pointer-events: none;
    right: 3px;
}footer .info_item:hover {
    transform: translateY(-5px);
    background-color: rgb(195,191,208);
}footer .info_item svg {
    fill: rgb(195,191,208);
    height: 20px;
    margin-right: 12px;
    width: 20px;
    flex-shrink: 0;
    transition: fill 0.3s ease;
}footer .info_item:hover svg {
    fill: #ffffff;
}footer .info_item p,
footer .info_item a {
    cursor: pointer;
    text-decoration: none;
    z-index: 1;
    height: 100%;
    align-items: center;
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    width: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ffffff;
}footer .text_main_holder {
    display: grid;
    padding-top: 40px;
    position: relative;
    gap: 50px;
    grid-template-columns: 1fr;
}footer .text_main_holder::before {
    left: 10%;
    pointer-events: none;
    position: absolute;
    content: "";
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    width: 80%;
    top: 0;
}footer .ui_header_learn {
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    flex-direction: column;
    max-width: 350px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}footer .ui_header_learn::before {
    bottom: 3px;
    background-color: rgb(157,152,173);
    content: "";
    pointer-events: none;
    right: 3px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: -1;
    position: absolute;
    top: 3px;
    left: 3px;
}footer .ui_header_learn svg {
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    height: 45px;
}footer .ui_rating_stars {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}footer .ui_header_pagewrap {
    position: relative;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
}footer .ui_header_pagewrap h5 {
    font-size: 22px;
    padding-bottom: 10px;
    color: #ffffff;
    display: inline-block;
    font-weight: 700;
    position: relative;
    margin-bottom: 25px;
}footer .ui_header_pagewrap h5::after {
    width: 50px;
    content: "";
    pointer-events: none;
    bottom: 0;
    position: absolute;
    height: 2px;
    left: 0;
    background-color: rgb(195,191,208);
}footer .ui_head_lead {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}footer .ui_head_lead a {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    font-size: 14px;
    align-items: center;
    border-radius: 10px;
    display: flex;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}footer .ui_head_lead a::before {
    content: "";
    transform: translateY(-50%);
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    top: 50%;
    border-top: 4px solid transparent;
    opacity: 0;
    left: 5px;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-left: 4px solid rgb(195,191,208);
}footer .ui_head_lead a:hover {
    color: #ffffff;
    padding-left: 25px;
    background-color: rgba(255, 255, 255, 0.05);
}footer .ui_head_lead a:hover::before {
    opacity: 1;
}footer .subscribe_holder {
    position: relative;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
}footer .subscribe_holder::before {
    background-size: 20px 20px;
    content: "";
    height: 100%;
    border-radius: 24px;
    pointer-events: none;
    position: absolute;
    width: 100%;
    top: 0;
    background-image: 
        linear-gradient(-45deg, transparent 48%, rgb(195,191,208,0.5) 49%, rgb(195,191,208,0.5) 51%, transparent 52%),
        linear-gradient(45deg, transparent 48%, rgb(195,191,208,0.5) 49%, rgb(195,191,208,0.5) 51%, transparent 52%);
    left: 0;
    opacity: 0.05;
}footer .subscribe_holder h5 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
    color: #ffffff;
}footer .subscribe_holder p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 25px;
}footer .input_holder {
    position: relative;
    z-index: 5;
    width: 100%;
    gap: 15px;
    display: flex;
    flex-direction: column;
}footer .input_holder input[type="email"] {
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 10px;
    cursor: text;
    appearance: none;
    padding: 14px 16px;
    z-index: 5;
    font-size: 14px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-appearance: none;
    width: 100%;
}footer .input_holder input[type="email"]:focus {
    border-color: rgb(195,191,208);
    background-color: rgba(255, 255, 255, 0.08);
    outline: none;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}footer .ui_study_online {
    font-size: 19px;
    border-radius: 10px;
    border: none;
    z-index: 5;
    transition: all 0.3s ease;
    background-color: rgb(195,191,208);
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    text-align: center;
    position: relative;
    color: #ffffff;
    padding: 14px 20px;
}footer .ui_study_online:hover {
    background-color: rgb(157,152,173);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}footer .ui_transcript {
    margin-top: 50px;
    text-align: center;
    position: relative;
}footer .ui_vr_labs {
    display: inline-block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    padding: 0 20px;
    position: relative;
}footer .ui_vr_labs::before,
footer .ui_vr_labs::after {
    position: absolute;
    width: 20px;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.2);
    height: 1px;
    top: 50%;
    content: "";
}footer .ui_vr_labs::before {
    transform: rotate(-45deg);
    left: -10px;
}footer .ui_vr_labs::after {
    right: -10px;
    transform: rotate(45deg);
}

@media (min-width: 768px) {footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .ui_study_online {
    flex-shrink: 0;
    min-width: 150px;
    width: auto;
}footer .input_holder input[type="email"] {
    min-width: 0;
    flex: 1;
}
}

@media (max-width: 991px) {footer .ui_head_lead {
    grid-template-columns: 1fr;
}
}

@media (max-width: 767px) {footer .ui_intern_opp {
    padding: 60px 0 30px;
}footer .ui_support_now {
    margin-bottom: 40px;
}footer .info_item {
    min-width: 150px;
    padding: 15px 20px;
}footer .ui_header_pagewrap, footer .subscribe_holder {
    padding: 25px 20px;
}footer .ui_header_learn {
    padding: 15px;
    margin-bottom: 20px;
}footer .ui_transcript {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .ui_intern_opp {
    padding: 50px 0 20px;
}footer .info_item {
    min-width: 100%;
}footer .ui_header_pagewrap h5, footer .subscribe_holder h5 {
    font-size: calc(22px - 2px);
    margin-bottom: 20px;
}footer .ui_header_pagewrap, footer .subscribe_holder {
    padding: 20px 15px;
}footer .input_holder input[type="email"],
    footer .ui_study_online {
    padding: 12px;
}}.ui_course_program_info {
    overflow: hidden;
    min-height: 100vh;
    background-color: #ffffff;
    position: relative;
    align-items: stretch;
    display: flex;
}.ui_course_program_info::before {
    width: 100%;
    position: absolute;
    z-index: 2;
    content: '';
    left: 0;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgb(228,225,233) 90%);
    top: 0;
    height: 100%;
}.ui_course_program_info .ui_skill_work {
    z-index: 1;
    position: absolute;
    height: 100%;
    width: 55%;
    right: 0;
    top: 0;
}.ui_course_program_info .ui_knowledge_flow {
    height: 500%;
    width: 100%;
    display: flex;
    flex-direction: column;
    animation: carousel-vertical 25s ease infinite;
}.ui_course_program_info .ui_skill_work:hover .ui_knowledge_flow {
    animation-play-state: paused;
}.ui_course_program_info .ui_program_plan {
    height: 20%;
    position: relative;
    width: 100%;
}.ui_course_program_info .ui_program_plan::before {
    left: 0;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    z-index: 2;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
}.ui_course_program_info .ui_program_plan img {
    object-fit: cover;
    filter: brightness(1.2) contrast(1.15) saturate(1.15) opacity(0.95);
    width: 100%;
    height: 100%;
    transform: scale(1.05);
    transition: transform 0.8s ease;
}.ui_course_program_info .ui_program_plan:hover img {
    transform: scale(1.1);
}.ui_course_program_info .container {
    width: 100%;
    align-items: center;
    display: flex;
    padding: 0;
    position: relative;
    z-index: 5;
}.ui_course_program_info .ui_path_impact {
    flex-direction: column;
    display: flex;
    width: 45%;
    padding-left: 8%;
    justify-content: center;
}.ui_course_program_info .ui_learn_path {
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, rgb(228,225,233) 100%);
    padding: 3.5rem;
    border-left: 5px solid rgb(195,191,208);
    border-radius: 0 16px 16px 0;
    position: relative;
    max-width: 550px;
}.ui_course_program_info .ui_learn_path::before {
    right: 20px;
    content: '';
    border: 1px solid rgb(157,152,173,0.5);
    border-left: none;
    pointer-events: none;
    position: absolute;
    left: 20px;
    bottom: 20px;
    border-radius: 0 10px 10px 0;
    top: 20px;
}.ui_course_program_info .ui_learn_path h3 {
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 1.5rem;
    color: rgb(195,191,208);
    font-size: 46px;
    position: relative;
}.ui_course_program_info .ui_learn_path h3::after {
    content: '';
    bottom: 0;
    left: 0;
    background: rgb(157,152,173);
    width: 80px;
    height: 3px;
    position: absolute;
}.ui_course_program_info .ui_learn_path p {
    color: #000000;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 2.5rem;
}.ui_course_program_info .ui_learn_path .ui_feedback_reach {
    padding: 1.2rem 2.5rem;
    position: relative;
    border-radius: 10px;
    font-size: 18px;
    background: linear-gradient(45deg, rgb(195,191,208) 0%, rgb(157,152,173) 100%);
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 1;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    display: inline-block;
    overflow: hidden;
}.ui_course_program_info .ui_learn_path .ui_feedback_reach::before {
    width: 100%;
    position: absolute;
    transition: opacity 0.3s ease;
    content: '';
    left: 0;
    background: linear-gradient(45deg, rgb(157,152,173) 0%, rgb(195,191,208) 100%);
    top: 0;
    opacity: 0;
    height: 100%;
    z-index: -1;
}.ui_course_program_info .ui_learn_path .ui_feedback_reach:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}.ui_course_program_info .ui_learn_path .ui_feedback_reach:hover::before {
    opacity: 1;
}

@keyframes carousel-vertical {
    0%, 16% {
        transform: translateY(0);
    }
    20%, 36% {
        transform: translateY(-20%);
    }
    40%, 56% {
        transform: translateY(-40%);
    }
    60%, 76% {
        transform: translateY(-60%);
    }
    80%, 96% {
        transform: translateY(-80%);
    }
    100% {
        transform: translateY(0);
    }
}

@media screen and (min-width: 1440px) {.ui_course_program_info .ui_path_impact {
    padding-left: 10%;
}.ui_course_program_info .ui_learn_path {
    max-width: 650px;
}
}

@media screen and (max-width: 1200px) {.ui_course_program_info .ui_skill_work {
    width: 50%;
}.ui_course_program_info .ui_path_impact {
    width: 50%;
    padding-left: 5%;
}.ui_course_program_info .ui_learn_path {
    padding: 2.5rem;
}
}

@media screen and (max-width: 992px) {.ui_course_program_info {
    flex-direction: column;
    min-height: auto;
}.ui_course_program_info .ui_skill_work {
    height: 400px;
    position: relative;
    width: 100%;
}.ui_course_program_info .ui_knowledge_flow {
    height: 100%;
    animation: carousel-horizontal 25s ease infinite;
    flex-direction: row;
    width: 500%;
}.ui_course_program_info .ui_program_plan {
    height: 100%;
    width: 20%;
}.ui_course_program_info .ui_program_plan::before {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
}.ui_course_program_info .container {
    padding: 3rem 1rem;
}.ui_course_program_info .ui_path_impact {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 0;
}.ui_course_program_info .ui_learn_path {
    border-top: 5px solid rgb(195,191,208);
    max-width: 100%;
    border-left: none;
    border-radius: 16px;
}.ui_course_program_info .ui_learn_path::before {
    left: 20px;
    border-top: none;
    bottom: 20px;
    border-radius: 10px;
    border: 1px solid rgb(157,152,173,0.5);
    right: 20px;
    top: 20px;
}
}

@media screen and (max-width: 768px) {.ui_course_program_info .ui_skill_work {
    height: 350px;
}.ui_course_program_info .container {
    padding: 2.5rem 1rem;
}.ui_course_program_info .ui_learn_path {
    padding: 2rem;
}.ui_course_program_info .ui_learn_path h3 {
    font-size: calc(46px * 0.8);
}

}

@media screen and (max-width: 576px) {.ui_course_program_info .ui_skill_work {
    height: 300px;
}.ui_course_program_info .container {
    padding: 2rem 1rem;
}.ui_course_program_info .ui_learn_path {
    padding: 1.5rem;
}.ui_course_program_info .ui_learn_path h3 {
    font-size: calc(46px * 0.7);
}.ui_course_program_info .ui_learn_path p {
    margin-bottom: 2rem;
    font-size: calc(18px * 0.9);
}.ui_course_program_info .ui_learn_path .ui_feedback_reach {
    text-align: center;
    padding: 1rem;
    width: 100%;
}.ui_course_program_info .ui_learn_path::before {
    display: none;
}}

@keyframes carousel-horizontal {
    0%, 16% {
        transform: translateX(0);
    }
    20%, 36% {
        transform: translateX(-20%);
    }
    40%, 56% {
        transform: translateX(-40%);
    }
    60%, 76% {
        transform: translateX(-60%);
    }
    80%, 96% {
        transform: translateX(-80%);
    }
    100% {
        transform: translateX(0);
    }
}.ui_company_overview {
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
}.ui_company_overview::before {
    top: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgb(195,191,208,0.5) 70%);
    z-index: 1;
    left: 0;
    height: 100%;
    position: absolute;
    content: "";
    width: 100%;
}.ui_company_overview::after {
    content: "";
    right: -50px;
    width: 250px;
    position: absolute;
    animation: float 10s ease-in-out infinite;
    border: 3px solid rgb(157,152,173,0.5);
    height: 250px;
    z-index: 1;
    bottom: -50px;
    transform: rotate(15deg);
}.ui_company_overview h4 {
    font-size: 30px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(20px);
    z-index: 2;
    animation: slideIn 0.8s forwards 0.2s ease-out;
    padding-left: 2rem;
    letter-spacing: 2px;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
}.ui_company_overview h4::before {
    width: 1.5rem;
    background: rgb(157,152,173);
    top: 50%;
    height: 3px;
    content: "";
    left: 0;
    position: absolute;
    transform: translateY(-50%);
}.ui_company_overview .container {
    max-width: 1200px;
    z-index: 2;
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
}.ui_company_overview .ui_text_column {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    clip-path: polygon(0 0, 100% 0, 100% 96%, 96% 100%, 0 100%);
    padding: 3rem;
    transform: translateY(20px);
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeUp 1s forwards 0.4s ease-out;
}.ui_company_overview .ui_text_column h6 {
    font-weight: 700;
    padding-bottom: 0.8rem;
    color: rgb(195,191,208);
    font-size: 20px;
    display: inline-block;
    position: relative;
    margin-bottom: 1.5rem;
}.ui_company_overview .ui_text_column h6::after {
    left: 0;
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
    content: "";
    background: linear-gradient(to right, rgb(157,152,173), transparent);
}.ui_company_overview .ui_text_column div {
    position: relative;
}.ui_company_overview .ui_text_column span {
    display: block;
    z-index: 2;
    font-size: 14px;
    position: relative;
    column-gap: 2rem;
    color: #000000;
    column-count: 1;
    line-height: 1.8;
}.ui_company_overview .ui_text_column::before {
    content: "";
    opacity: 0.5;
    z-index: 1;
    top: 3rem;
    right: 2rem;
    position: absolute;
    width: 40%;
    border: 1px dashed rgb(157,152,173,0.5);
    transform: rotate(-5deg);
    height: 40%;
}

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

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

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

@media (min-width: 768px) {.ui_company_overview {
    padding: 7rem 0;
}.ui_company_overview h4 {
    padding-left: 3rem;
    font-size: calc(30px * 1.2);
}.ui_company_overview h4::before {
    width: 2.5rem;
}.ui_company_overview .ui_text_column {
    padding: 4rem;
    margin-left: 3rem;
}.ui_company_overview .ui_text_column span {
    column-count: 2;
}.ui_company_overview .ui_text_column::before {
    width: 30%;
    height: 50%;
}
}

@media (min-width: 992px) {.ui_company_overview {
    padding: 9rem 0;
}.ui_company_overview h4 {
    margin-left: 3rem;
}.ui_company_overview .ui_text_column {
    margin-left: 6rem;
    padding: 5rem;
    width: 85%;
}.ui_company_overview .ui_text_column h6 {
    font-size: calc(20px * 1.2);
}.ui_company_overview .ui_text_column span {
    column-count: 2;
    column-gap: 3rem;
}.ui_company_overview::after {
    width: 350px;
    height: 350px;
}
}

@media (max-width: 767px) {.ui_company_overview {
    padding: 4rem 0;
}.ui_company_overview h4 {
    padding-left: 1.5rem;
    text-align: left;
}.ui_company_overview .ui_text_column {
    padding: 2rem;
}.ui_company_overview .ui_text_column::before {
    display: none;
}}.ui_connect_form {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.ui_connect_form::before {
    z-index: 1;
    backdrop-filter: blur(8px);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    content: '';
}.ui_connect_form::after {
    content: '';
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    background: radial-gradient(circle at 20% 50%, rgb(195,191,208,0.5) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgb(157,152,173,0.5) 0%, transparent 40%);
    animation: gradientShift 15s infinite alternate;
}@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.ui_connect_form .container {
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}.ui_connect_form .ui_support_form {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    display: flex;
    border-radius: 29px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}.ui_connect_form .ui_request_request {
    flex: 1;
    background: linear-gradient(135deg, rgb(195,191,208,0.5) 0%, rgb(157,152,173,0.5) 100%);
    position: relative;
    padding: 50px 40px;
}.ui_connect_form .ui_request_request::before {
    animation: patternMove 20s linear infinite;
    z-index: -1;
    width: 200%;
    content: '';
    left: -50%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    top: -50%;
    height: 200%;
    position: absolute;
}@keyframes patternMove {
    0% {
        transform: rotate(0) translate(0, 0);
    }
    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

.ui_connect_form .ui_request_request h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 30px;
    position: relative;
    padding-bottom: 15px;
}.ui_connect_form .ui_request_request h3::after {
    position: absolute;
    left: 0;
    background: #ffffff;
    border-radius: 10px;
    height: 3px;
    bottom: 0;
    content: '';
    width: 60px;
}.ui_connect_form .ui_request_request div {
    padding: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 3px solid rgb(157,152,173);
}.ui_connect_form .ui_request_request div:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}.ui_connect_form .ui_request_request svg {
    width: 24px;
    margin-right: 15px;
    height: 24px;
    flex-shrink: 0;
}.ui_connect_form .ui_request_request svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}.ui_connect_form .ui_request_request div:hover svg path {
    fill: rgb(157,152,173);
}.ui_connect_form .ui_request_request span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}.ui_connect_form .ui_request_request a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}.ui_connect_form .ui_request_request a:hover {
    color: rgb(157,152,173);
    text-decoration: underline;
}.ui_connect_form .ui_inquiry_grid {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    position: relative;
    flex: 1.2;
    overflow: hidden;
}.ui_connect_form .ui_inquiry_grid::before {
    background: rgb(195,191,208,0.5);
    position: absolute;
    height: 100px;
    content: '';
    border-radius: 0 0 0 100%;
    top: 0;
    width: 100px;
    right: 0;
}.ui_connect_form .ui_inquiry_grid::after {
    background: rgb(157,152,173,0.5);
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 0;
    content: '';
    left: 0;
    border-radius: 0 100% 0 0;
}.ui_connect_form form {
    position: relative;
    z-index: 1;
}.ui_connect_form form h3 {
    position: relative;
    color: #000000;
    font-weight: 700;
    text-align: center;
    font-size: 30px;
    padding-bottom: 15px;
    margin-bottom: 30px;
}.ui_connect_form form h3::after {
    transform: translateX(-50%);
    height: 3px;
    width: 60px;
    left: 50%;
    bottom: 0;
    content: '';
    border-radius: 10px;
    background: rgb(195,191,208);
    position: absolute;
}.ui_connect_form form input[type="text"],
.ui_connect_form form input[type="email"] {
    border-radius: 10px;
    color: #000000;
    margin-bottom: 20px;
    padding: 15px 20px;
    font-size: 16px;
    width: 100%;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    background: rgba(240, 240, 240, 0.8);
    border: none;
    transition: all 0.3s ease;
}.ui_connect_form form input[type="text"]:focus,
.ui_connect_form form input[type="email"]:focus {
    box-shadow: 0 0 0 2px rgb(195,191,208,0.5);
    transform: translateY(-2px);
    outline: none;
    background: #fff;
}.ui_connect_form form input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}.ui_connect_form .ui_message_reach {
    align-items: flex-start;
    position: relative;
    margin: 25px 0;
    display: flex;
}.ui_connect_form .ui_message_reach input[type="checkbox"] {
    margin-right: 10px;
    flex-shrink: 0;
    background: rgba(240, 240, 240, 0.8);
    cursor: pointer;
    height: 20px;
    appearance: none;
    border: 2px solid rgb(195,191,208);
    border-radius: 10px;
    position: relative;
    width: 20px;
    -webkit-appearance: none;
}.ui_connect_form .ui_message_reach input[type="checkbox"]:checked {
    background: rgb(195,191,208);
}.ui_connect_form .ui_message_reach input[type="checkbox"]:checked::after {
    border-width: 0 2px 2px 0;
    left: 6px;
    transform: rotate(45deg);
    width: 5px;
    content: '';
    top: 2px;
    border: solid #ffffff;
    height: 10px;
    position: absolute;
}.ui_connect_form .ui_message_reach label {
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
    color: #000000;
}.ui_connect_form .ui_message_reach a {
    color: rgb(195,191,208);
    transition: color 0.3s ease;
    font-weight: 600;
    text-decoration: none;
}.ui_connect_form .ui_message_reach a:hover {
    color: rgb(157,152,173);
    text-decoration: underline;
}.ui_connect_form .ui_feedback_reach {
    color: #ffffff;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgb(195,191,208) 0%, rgb(157,152,173) 100%);
    border-radius: 10px;
    width: 100%;
    font-weight: 600;
    z-index: 1;
    font-size: 19px;
    transition: all 0.3s ease;
}.ui_connect_form .ui_feedback_reach::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    height: 100%;
    top: 0;
    left: -100%;
    position: absolute;
    width: 100%;
    z-index: -1;
    content: '';
    transition: all 0.5s ease;
}.ui_connect_form .ui_feedback_reach:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}.ui_connect_form .ui_feedback_reach:hover::before {
    left: 100%;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 991px) {.ui_connect_form {
    padding: 80px 0;
}.ui_connect_form .ui_support_form {
    flex-direction: column;
}.ui_connect_form .ui_request_request,
    .ui_connect_form .ui_inquiry_grid {
    width: 100%;
}.ui_connect_form .ui_request_request {
    padding: 40px 30px;
}.ui_connect_form .ui_request_request h3,
    .ui_connect_form form h3 {
    margin-bottom: 30px;
    font-size: calc(30px * 0.9);
}
}

@media (max-width: 767px) {.ui_connect_form {
    padding: 60px 0;
}.ui_connect_form .ui_request_request,
    .ui_connect_form .ui_inquiry_grid {
    padding: 30px 20px;
}.ui_connect_form .ui_request_request h3,
    .ui_connect_form form h3 {
    margin-bottom: 25px;
    font-size: calc(30px * 0.8);
}.ui_connect_form .ui_request_request div {
    padding: 12px;
    margin-bottom: 15px;
}.ui_connect_form form input[type="text"],
    .ui_connect_form form input[type="email"] {
    padding: 12px 15px;
    margin-bottom: 15px;
}.ui_connect_form .ui_message_reach {
    margin: 20px 0;
}.ui_connect_form .ui_feedback_reach {
    padding: 12px 15px;
}
}

@media (max-width: 480px) {.ui_connect_form {
    padding: 40px 0;
}.ui_connect_form .ui_request_request,
    .ui_connect_form .ui_inquiry_grid {
    padding: 25px 15px;
}.ui_connect_form .ui_request_request h3,
    .ui_connect_form form h3 {
    font-size: calc(30px * 0.7);
    margin-bottom: 20px;
}.ui_connect_form .ui_request_request div {
    flex-direction: column;
    align-items: flex-start;
}.ui_connect_form .ui_request_request svg {
    margin-right: 0;
    margin-bottom: 10px;
}.ui_connect_form .ui_request_request div:hover {
    transform: translateX(0);
}.ui_connect_form .ui_message_reach {
    flex-direction: column;
}.ui_connect_form .ui_message_reach input[type="checkbox"] {
    margin-bottom: 10px;
}}.ui_privacy_preserve {
    position: relative;
    color: #000000;
    padding: 4rem 2rem;
    font-family: Arial, sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(228,225,233) 0%, rgba(240, 242, 245, 0.9) 100%);
}.ui_privacy_preserve::before {
    z-index: 0;
    right: 0;
    position: absolute;
    transform: translateY(-15%) translateX(15%);
    top: 0;
    height: 30vh;
    background: linear-gradient(225deg, rgb(157,152,173,0.5) 0%, transparent 70%);
    width: 30vw;
    opacity: 0.2;
    content: "";
}.ui_privacy_preserve::after {
    z-index: 0;
    width: 40vw;
    opacity: 0.15;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, rgb(195,191,208,0.5) 0%, transparent 70%);
    content: "";
    position: absolute;
    height: 40vh;
    transform: translateY(15%) translateX(-15%);
}.ui_privacy_preserve .container {
    position: relative;
    max-width: 1140px;
    z-index: 1;
    margin: 0 auto;
}.ui_privacy_preserve h1 {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: calc(48px * 1.1);
    margin-bottom: 2rem;
    font-weight: 700;
    transform-origin: left center;
    position: relative;
    color: #000000;
}.ui_privacy_preserve h1::after {
    transform-origin: left center;
    background: rgb(195,191,208);
    width: 4rem;
    left: 0;
    content: "";
    height: 3px;
    position: absolute;
    transform: scaleX(1);
    bottom: -0.6rem;
    transition: transform 0.5s ease-out;
}.ui_privacy_preserve h1:hover {
    transform: translateX(5px);
}.ui_privacy_preserve h1:hover::after {
    transform: scaleX(1.5);
}.ui_privacy_preserve h2 {
    color: #000000;
    font-weight: 600;
    transition: transform 0.3s ease;
    transform: translateX(0);
    font-size: 38px;
    padding-left: 1rem;
    border-left: 3px solid rgb(157,152,173);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    position: relative;
}.ui_privacy_preserve h2:hover {
    transform: translateX(5px);
}.ui_privacy_preserve h3 {
    margin: 2rem 0 1rem;
    padding-bottom: 0.3rem;
    color: #000000;
    font-size: calc(38px * 0.85);
    font-weight: 600;
    border-bottom: 1px solid rgba(rgba(0, 0, 0, 0.5), 0.1);
}.ui_privacy_preserve h4 {
    padding-left: 1rem;
    font-weight: 600;
    position: relative;
    margin: 1.5rem 0 1rem;
    font-size: calc(38px * 0.7);
    color: #000000;
}.ui_privacy_preserve h4::before {
    width: 5px;
    background: rgb(157,152,173);
    left: 0;
    transform: translateY(-50%);
    position: absolute;
    content: "";
    top: 50%;
    height: 5px;
}.ui_privacy_preserve p {
    max-width: 90ch;
    line-height: 1.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
    opacity: 0.9;
    color: #000000;
    font-size: 12px;
    margin-bottom: 1.5rem;
}.ui_privacy_preserve p:hover {
    transform: translateY(-2px);
    opacity: 1;
}.ui_privacy_preserve strong {
    position: relative;
    font-weight: 600;
    display: inline-block;
    color: #000000;
}.ui_privacy_preserve strong::after {
    bottom: -2px;
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    transform: scaleX(0.3);
    transform-origin: left;
    content: "";
    transition: transform 0.3s ease;
    background: rgb(195,191,208,0.5);
}.ui_privacy_preserve strong:hover::after {
    transform: scaleX(1);
}.ui_privacy_preserve ul {
    position: relative;
    list-style: none;
    padding-left: 1.5rem;
    margin: 1.5rem 0 2rem;
}.ui_privacy_preserve ul::before {
    width: 2px;
    top: 0;
    content: "";
    position: absolute;
    bottom: 0;
    background: linear-gradient(to bottom, rgb(157,152,173,0.5) 0%, transparent 100%);
    left: 0;
}.ui_privacy_preserve li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 12px;
    color: #000000;
    line-height: 1.6;
    position: relative;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}.ui_privacy_preserve li::before {
    position: absolute;
    height: 6px;
    content: "";
    left: 0;
    background: rgb(157,152,173);
    width: 6px;
    transition: transform 0.3s ease, background 0.3s ease;
    top: 1rem;
    border-radius: 10px;
}.ui_privacy_preserve li:hover {
    transform: translateX(5px);
}.ui_privacy_preserve li:hover::before {
    transform: scale(1.3);
    background: rgb(195,191,208);
}.ui_privacy_preserve span {
    border-left: 2px solid rgb(195,191,208,0.5);
    background: rgba(#ffffff, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    color: #000000;
    font-size: 12px;
    line-height: 1.7;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transform: perspective(1000px) rotateX(0);
    margin-bottom: 1.5rem;
    display: block;
}.ui_privacy_preserve span:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateX(2deg);
}

@media (min-width: 768px) {.ui_privacy_preserve {
    padding: 6rem 3rem;
}.ui_privacy_preserve .container {
    padding: 0 2rem;
}.ui_privacy_preserve h1 {
    font-size: calc(48px * 1.3);
    margin-bottom: 3rem;
}.ui_privacy_preserve h1::after {
    width: 6rem;
    height: 4px;
}.ui_privacy_preserve h2 {
    padding-left: 1.2rem;
    margin: 3.5rem 0 1.5rem;
    font-size: calc(38px * 1.1);
}.ui_privacy_preserve h3 {
    margin: 2.5rem 0 1.2rem;
    font-size: calc(38px * 0.9);
}.ui_privacy_preserve h4 {
    font-size: calc(38px * 0.75);
    padding-left: 1.2rem;
    margin: 2rem 0 1rem;
}.ui_privacy_preserve ul {
    padding-left: 2rem;
}.ui_privacy_preserve li {
    padding: 0.7rem 0 0.7rem 1.5rem;
}.ui_privacy_preserve span {
    margin-left: 1rem;
    padding: 1.5rem;
}
}

@media (min-width: 992px) {.ui_privacy_preserve {
    padding: 8rem 4rem;
}.ui_privacy_preserve::before {
    width: 40vw;
    height: 40vh;
}.ui_privacy_preserve::after {
    height: 50vh;
    width: 50vw;
}.ui_privacy_preserve h1 {
    margin-bottom: 4rem;
    font-size: calc(48px * 1.5);
    transform: translateZ(0);
}.ui_privacy_preserve h1::after {
    width: 8rem;
}.ui_privacy_preserve h2 {
    border-left-width: 4px;
    margin: 4rem 0 2rem;
    padding-left: 1.5rem;
    font-size: calc(38px * 1.2);
}.ui_privacy_preserve p {
    line-height: 1.8;
    margin-bottom: 2rem;
}.ui_privacy_preserve ul {
    margin: 2rem 0 2.5rem;
}.ui_privacy_preserve li {
    margin-bottom: 0.8rem;
    padding: 0.8rem 0 0.8rem 1.8rem;
}.ui_privacy_preserve span {
    line-height: 1.8;
    padding: 2rem;
    margin-left: 2rem;
}
}

@media (max-width: 767px) {.ui_privacy_preserve {
    padding: 3rem 1.5rem;
}.ui_privacy_preserve h1 {
    font-size: calc(48px * 1);
    margin-bottom: 1.5rem;
}.ui_privacy_preserve h1::after {
    width: 3rem;
    height: 2px;
}.ui_privacy_preserve h2 {
    font-size: 38px;
    margin: 2rem 0 1rem;
    padding-left: 0.8rem;
    border-left-width: 2px;
}.ui_privacy_preserve h3, 
    .ui_privacy_preserve h4 {
    margin: 1.5rem 0 0.8rem;
    font-size: calc(38px * 0.8);
}.ui_privacy_preserve p {
    font-size: calc(12px * 0.95);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}.ui_privacy_preserve ul {
    padding-left: 0.8rem;
    margin: 1rem 0 1.5rem;
}.ui_privacy_preserve li {
    margin-bottom: 0.4rem;
    padding: 0.4rem 0 0.4rem 1.2rem;
    font-size: calc(12px * 0.95);
    line-height: 1.5;
}.ui_privacy_preserve span {
    font-size: calc(12px * 0.95);
    margin-bottom: 1.2rem;
    margin-left: 0;
    line-height: 1.6;
    padding: 0.8rem;
}}.ui_sign_up {
    margin: 5rem 0 5rem;
    overflow: visible;
    position: relative;
    padding: 7rem 3rem 5rem;
    z-index: 1;
    background: rgb(228,225,233);
}.ui_sign_up::before {
    background: linear-gradient(135deg, rgb(195,191,208,0.5) 0%, rgb(157,152,173,0.5) 100%);
    left: 5%;
    z-index: -2;
    transform: skewY(-3deg);
    position: absolute;
    top: -30px;
    content: "";
    width: 90%;
    opacity: 0.1;
    height: calc(100% + 60px);
}.ui_sign_up::after {
    height: calc(100% + 40px);
    z-index: -1;
    top: 10px;
    width: 80%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    right: 0;
    content: "";
    transform: skewY(2deg) translateY(-20px);
    position: absolute;
}.ui_sign_up .container {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    z-index: 3;
}.ui_sign_up .ui_path_impact {
    position: relative;
    display: flex;
    flex-direction: column;
}.ui_sign_up .ui_path_impact::before {
    left: -20px;
    animation: floatElement 8s ease-in-out infinite;
    content: "";
    z-index: -1;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    position: absolute;
    transform: rotate(-15deg);
    opacity: 0.3;
    top: -40px;
    width: 120px;
    background: rgb(195,191,208,0.5);
}.ui_sign_up .ui_path_impact::after {
    background: rgb(157,152,173);
    animation: pulseElement 4s ease-in-out infinite alternate;
    bottom: -30px;
    content: "";
    opacity: 0.2;
    height: 40px;
    border-radius: 50%;
    width: 40px;
    position: absolute;
    filter: blur(5px);
    right: 10%;
}.ui_sign_up p {
    margin-bottom: 3rem;
    color: #000000;
    align-self: flex-start;
    position: relative;
    font-size: 37px;
    font-weight: 700;
    max-width: 60%;
    font-family: Arial, sans-serif;
    transform: translateX(40%);
    line-height: 1.3;
}.ui_sign_up p::before {
    position: absolute;
    content: "";
    left: -60px;
    height: 3px;
    width: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(195,191,208);
}.ui_sign_up .input_holder {
    border-radius: 21px;
    align-self: flex-end;
    transform: translateY(30px);
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    max-width: 70%;
    align-items: stretch;
}.ui_sign_up .input_holder::before {
    left: 0;
    content: "";
    height: 100%;
    z-index: -1;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    position: absolute;
    top: 0;
    width: 100%;
}.ui_sign_up .ui_sub_banners {
    background: transparent;
    flex: 1;
    outline: none;
    font-size: 13px;
    padding: 1.5rem;
    z-index: 1;
    border: none;
    color: #000000;
    font-family: Arial, sans-serif;
}.ui_sign_up .ui_feedback_reach {
    font-weight: 600;
    border: none;
    position: relative;
    z-index: 1;
    cursor: pointer;
    background: rgb(195,191,208);
    font-family: Arial, sans-serif;
    padding: 1.5rem 2.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
    font-size: 18px;
    color: #ffffff;
}.ui_sign_up .ui_feedback_reach::before {
    height: 100%;
    left: 0;
    width: 100%;
    position: absolute;
    content: "";
    transition: all 0.5s ease;
    transform: translateX(-100%) skewX(-15deg);
    z-index: -1;
    background: rgb(157,152,173);
    top: 0;
}.ui_sign_up .ui_feedback_reach:hover {
    color: #ffffff;
}.ui_sign_up .ui_feedback_reach:hover::before {
    transform: translateX(0) skewX(-15deg);
}

@keyframes floatElement {
    0%, 100% {
        transform: rotate(-15deg) translate(0, 0);
    }
    50% {
        transform: rotate(-10deg) translate(-10px, -15px);
    }
}

@keyframes pulseElement {
    0% {
        transform: scale(0.8);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

@media (max-width: 992px) {.ui_sign_up {
    margin: 6rem 0 8rem;
    padding: 6rem 2rem 4rem;
}.ui_sign_up p {
    font-size: calc(37px * 0.9);
    transform: translateX(30%);
    max-width: 70%;
}.ui_sign_up p::before {
    left: -40px;
    width: 30px;
}.ui_sign_up .input_holder {
    max-width: 80%;
}
}

@media (max-width: 768px) {.ui_sign_up {
    margin: 5rem 0 7rem;
    padding: 5rem 1.5rem 3rem;
}.ui_sign_up p {
    transform: translateX(5%);
    font-size: 22px;
    margin-bottom: 2rem;
    max-width: 90%;
}.ui_sign_up p::before {
    width: 15px;
    left: -20px;
}.ui_sign_up .input_holder {
    max-width: 95%;
    flex-direction: column;
    transform: translateY(20px);
}.ui_sign_up .ui_sub_banners {
    border-bottom: 1px solid rgb(195,191,208,0.5);
    padding: 1.2rem;
    width: 100%;
}.ui_sign_up .ui_feedback_reach {
    padding: 1.2rem;
    width: 100%;
}.ui_sign_up::before {
    top: -20px;
    height: calc(100% + 40px);
    left: 2.5%;
    width: 95%;
}.ui_sign_up::after {
    width: 90%;
}
}

@media (max-width: 576px) {.ui_sign_up {
    margin: 4rem 0 6rem;
    padding: 4rem 1rem 2rem;
}.ui_sign_up p {
    transform: none;
    max-width: 100%;
}.ui_sign_up p::before {
    display: none;
}.ui_sign_up .input_holder {
    max-width: 100%;
    transform: translateY(15px);
}.ui_sign_up .ui_sub_banners,
    .ui_sign_up .ui_feedback_reach {
    padding: 1rem;
}.ui_sign_up::before,
    .ui_sign_up::after {
    transform: none;
}.ui_sign_up .ui_path_impact::before {
    height: 80px;
    width: 80px;
}}.ui_thxArea {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(145deg, rgb(228,225,233) 0%, rgba(240, 242, 245, 0.9) 100%);
}.ui_thxArea::before {
    opacity: 0.07;
    content: "";
    right: -10%;
    position: absolute;
    animation: float 15s ease-in-out infinite alternate;
    height: 70%;
    top: -5%;
    background: linear-gradient(135deg, rgb(195,191,208,0.5) 0%, rgb(157,152,173,0.5) 100%);
    transform: rotate(15deg) skewX(-15deg);
    z-index: 0;
    width: 40%;
}.ui_thxArea::after {
    z-index: 0;
    height: 60%;
    transform: rotate(-10deg) skewX(10deg);
    background: linear-gradient(225deg, rgb(157,152,173,0.5) 0%, rgb(195,191,208,0.5) 100%);
    left: -5%;
    bottom: -5%;
    position: absolute;
    width: 30%;
    animation: float 18s ease-in-out infinite alternate-reverse;
    content: "";
    opacity: 0.05;
}.ui_thxArea .container {
    padding: 0 2rem;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1200px;
}.ui_thxArea h2 {
    font-weight: 700;
    line-height: 1.3;
    font-size: 35px;
    animation: slideUp 0.8s 0.2s ease-out forwards;
    margin-bottom: 3rem;
    transform: translateY(0);
    position: relative;
    opacity: 0;
    color: #000000;
}.ui_thxArea h2::after {
    content: "";
    left: 0;
    transform: scaleX(0);
    height: 3px;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(195,191,208) 0%, rgb(157,152,173) 100%);
    position: absolute;
    bottom: -15px;
    width: 80px;
    animation: expand 1s 0.8s ease-out forwards;
}.ui_thxArea .ui_path_impact {
    padding: 3rem;
    background: #ffffff;
    overflow: hidden;
    border-left: 4px solid rgb(195,191,208);
    opacity: 0;
    animation: fadeSlideUp 1s 0.4s ease-out forwards;
    transform: translateY(20px);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 
              0 5px 15px rgba(0, 0, 0, 0.03);
}.ui_thxArea .ui_path_impact::before {
    right: 0;
    content: "";
    height: 150px;
    opacity: 0.1;
    width: 150px;
    top: 0;
    background: linear-gradient(135deg, rgb(157,152,173,0.5) 0%, transparent 70%);
    position: absolute;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}.ui_thxArea ul {
    padding: 0;
    margin: 0;
    list-style: none;
}.ui_thxArea li {
    padding-left: 0;
    position: relative;
}.ui_thxArea li span {
    line-height: 1.8;
    font-family: Arial, sans-serif;
    opacity: 0;
    color: #000000;
    display: block;
    transform: translateY(10px);
    animation: fadeIn 1s 0.7s ease-out forwards;
    font-size: calc(12px + 0.05rem);
}

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

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

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

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

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

@media screen and (max-width: 992px) {.ui_thxArea {
    padding: 5rem 0;
}.ui_thxArea h2 {
    font-size: calc(35px - 0.2rem);
    margin-bottom: 2.5rem;
}.ui_thxArea .ui_path_impact {
    padding: 2.5rem;
}
}

@media screen and (max-width: 768px) {.ui_thxArea {
    padding: 4rem 0;
}.ui_thxArea h2 {
    margin-bottom: 2rem;
    font-size: calc(35px - 0.4rem);
}.ui_thxArea h2::after {
    width: 60px;
    bottom: -12px;
}.ui_thxArea .ui_path_impact {
    padding: 2rem;
}.ui_thxArea .ui_path_impact::before {
    width: 100px;
    height: 100px;
}
}

@media screen and (max-width: 576px) {.ui_thxArea {
    padding: 3rem 0;
}.ui_thxArea .container {
    padding: 0 1.5rem;
}.ui_thxArea h2 {
    margin-bottom: 1.8rem;
    line-height: 1.4;
    font-size: calc(35px - 0.6rem);
}.ui_thxArea h2::after {
    width: 50px;
    height: 2px;
    bottom: -10px;
}.ui_thxArea .ui_path_impact {
    border-left-width: 3px;
    padding: 1.5rem;
}.ui_thxArea li span {
    font-size: 12px;
    line-height: 1.7;
}}header .ui_nav_know {
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 1.5rem;
    left: 0;
    position: relative;
    width: 100%;
    background: linear-gradient(to right, rgb(157,152,173) 0%, rgb(195,191,208,0.5) 100%);
    z-index: 99;
    box-shadow: 0 0 20px 2px rgb(195,191,208,0.5);
    overflow: hidden;
    border-radius: 0;
}header .ui_nav_know::before {
    content: "";
    height: 200%;
    z-index: -1;
    top: -50%;
    left: -50%;
    width: 200%;
    background-size: 15px 15px;
    opacity: 0.3;
    background: radial-gradient(circle, rgb(157,152,173,0.5) 1%, transparent 10%);
    animation: backgroundShift 20s linear infinite;
    position: absolute;
}header .ui_nav_know::after {
    opacity: 0.1;
    background: linear-gradient(45deg, transparent 48%, rgb(157,152,173) 49%, rgb(157,152,173) 51%, transparent 52%);
    position: absolute;
    background-size: 200% 200%;
    z-index: -1;
    left: 0;
    content: "";
    animation: gradientSlide 5s ease infinite;
    height: 100%;
    top: 0;
    width: 100%;
}header .ui_nav_know .ui_header_learn {
    overflow: visible;
    position: relative;
}header .ui_nav_know .ui_header_learn::after {
    transform: scaleX(0);
    bottom: -8px;
    transform-origin: left;
    content: "";
    box-shadow: 0 0 8px 2px rgb(157,152,173);
    width: 100%;
    animation: neonPulse 3s infinite alternate;
    left: 0;
    height: 2px;
    position: absolute;
    background: rgb(157,152,173);
}header .ui_nav_know .ui_header_learn .ui_top_site {
    display: block;
    position: relative;
    transition: all 0.5s ease;
    transform: perspective(800px) rotateY(0deg);
}header .ui_nav_know .ui_header_learn .ui_top_site:hover {
    transform: perspective(800px) rotateY(15deg);
}header .ui_nav_know .ui_header_learn svg {
    width: 120px;
    filter: drop-shadow(0 0 5px rgb(157,152,173,0.5));
    height: auto;
}header .ui_nav_know .ui_header_pagewrap {
    display: flex;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    perspective: 800px;
}header .ui_nav_know .ui_header_pagewrap::before {
    height: 2px;
    width: 100%;
    top: 105%;
    animation: neonPulse 4s infinite alternate-reverse;
    transform: scaleX(0.5);
    position: absolute;
    box-shadow: 0 0 10px 2px rgb(195,191,208);
    background: rgb(195,191,208);
    left: 0;
    content: "";
}header .ui_nav_know .ui_nav_main {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    margin: 0 0.5rem;
    transform: translateZ(0);
}header .ui_nav_know .ui_nav_main:hover {
    transform: translateZ(20px);
}header .ui_nav_know .ui_nav_main a {
    border: 1px solid transparent;
    font-family: Arial, sans-serif;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 14px;
    position: relative;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: block;
    text-decoration: none;
}header .ui_nav_know .ui_nav_main a::before {
    position: absolute;
    width: 100%;
    border-radius: 10px;
    height: 100%;
    top: 0;
    content: "";
    background: rgb(195,191,208,0.5);
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease;
    left: 0;
    z-index: -1;
    opacity: 0;
}header .ui_nav_know .ui_nav_main a:hover {
    text-shadow: 0 0 5px rgb(157,152,173,0.5);
    border: 1px solid rgb(157,152,173,0.5);
    color: rgb(157,152,173);
}header .ui_nav_know .ui_nav_main a:hover::before {
    transform: scale(1);
    opacity: 0.2;
}

@keyframes neonPulse {
  0% {
    opacity: 0.6;
    transform: scaleX(0.5);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes backgroundShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50%, 50%);
  }
}

@keyframes gradientSlide {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@media (max-width: 992px) {header .ui_nav_know {
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 1rem;
    flex-direction: column;
}header .ui_nav_know .ui_header_learn {
    margin-bottom: 1.5rem;
}header .ui_nav_know .ui_header_pagewrap {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}header .ui_nav_know .ui_header_pagewrap::before {
    bottom: -10px;
    top: auto;
}header .ui_nav_know .ui_nav_main {
    margin: 0.25rem 0.5rem;
}
}

@media (max-width: 576px) {header .ui_nav_know {
    padding: 0.75rem;
}header .ui_nav_know .ui_header_pagewrap {
    flex-direction: column;
    align-items: center;
}header .ui_nav_know .ui_nav_main {
    text-align: center;
    margin: 0.25rem 0;
    width: 100%;
}header .ui_nav_know .ui_header_learn svg {
    width: 100px;
}header .ui_nav_know .ui_header_learn::after {
    left: 10%;
    width: 80%;
}}header .top_plank {
    color:  #ffffff;
    background: rgb(195,191,208);
}header .top_plank .ui_learn_toolbar div svg, header .top_plank .ui_learn_toolbar div svg path {
    fill: #ffffff;
}header .top_plank .ui_learn_toolbar div span {
    color: #ffffff;
}header .top_plank .ui_learn_toolbar {
    line-height: 21px;
    width: 100%;
    align-items: center;
    font-size: 13px;
    padding: 15px 0 10px 0;
    flex-wrap: wrap;
    display: flex;
    justify-content: flex-start;
}header .top_plank .ui_learn_toolbar div {
    align-items: center;
    justify-content: flex-start;
    margin-right: 24px;
    display: flex;
}header .top_plank .ui_learn_toolbar div img, header .top_plank .ui_learn_toolbar div svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}