* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}header,footer {
    width: 100%;
}.header_top_ui {
    flex: 1 0 auto;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1219px;
}.panel-container_ui {
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}.reg_remind_ui {
    flex: 0 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}svg {
    width: 30px;
    height: 30px;
}html,body {
    font-family: Arial, sans-serif;
    color: #000000;
    height: 100%;
    min-height: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.course_summary_ui {
    overflow: hidden;
    background-color: rgb(190,202,195);
    display: flex;
    min-height: 100vh;
    position: relative;
    align-items: center;
}.course_summary_ui .container {
    max-width: 1200px;
    position: relative;
    width: 100%;
    padding: 4rem 2rem;
    z-index: 10;
    margin: 0 auto;
}.course_summary_ui .pro_program_ui {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-direction: column;
}.course_summary_ui .program_plan_ui {
    position: relative;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}.course_summary_ui .program_plan_ui::before {
    background-color: rgb(145,177,158);
    top: -50px;
    left: -30px;
    position: absolute;
    border-radius: 50%;
    content: '';
    width: 150px;
    height: 150px;
    opacity: 0.1;
    z-index: -1;
}.course_summary_ui .program_plan_ui::after {
    content: '';
    right: -20px;
    position: absolute;
    width: 100px;
    opacity: 0.1;
    height: 100px;
    z-index: -1;
    border-radius: 50%;
    background-color: rgb(84,146,115);
    bottom: -30px;
}.course_summary_ui .program_plan_ui h3 {
    font-weight: 700;
    color: rgb(145,177,158);
    position: relative;
    font-size: 46px;
    margin-bottom: 1.5rem;
}.course_summary_ui .program_plan_ui h3::after {
    width: 80px;
    height: 4px;
    bottom: -15px;
    position: absolute;
    content: '';
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(145,177,158);
}.course_summary_ui .program_plan_ui p {
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: #000000;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.8;
    margin-right: auto;
}.course_summary_ui .program_plan_ui .feedback_reach_ui {
    background-color: rgb(145,177,158);
    position: relative;
    font-weight: 600;
    display: inline-block;
    font-size: 16px;
    padding: 1rem 2.5rem;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 1;
    text-decoration: none;
    overflow: hidden;
    border-radius: 50px;
}.course_summary_ui .program_plan_ui .feedback_reach_ui::before {
    transition: transform 0.4s ease;
    left: 0;
    z-index: -1;
    width: 100%;
    top: 0;
    background-color: rgb(84,146,115);
    position: absolute;
    border-radius: 50px;
    content: '';
    height: 100%;
    transform: translateY(100%);
}.course_summary_ui .program_plan_ui .feedback_reach_ui:hover {
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
}.course_summary_ui .program_plan_ui .feedback_reach_ui:hover::before {
    transform: translateY(0);
}.course_summary_ui .learn_code_ui {
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    height: 500px;
    margin-top: 3rem;
}.course_summary_ui .learn_code_ui::before {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 5;
    content: '';
    left: 0;
    pointer-events: none;
    background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.4) 0%,
                transparent 40%,
                transparent 60%,
                rgba(0, 0, 0, 0.4) 100%);
}.course_summary_ui .knowledge_flow_ui {
    animation: carousel-slide 25s ease-in-out infinite;
    height: 100%;
    width: 500%;
    display: flex;
}.course_summary_ui .learn_code_ui:hover .knowledge_flow_ui {
    animation-play-state: paused;
}.course_summary_ui .job_classes_ui {
    position: relative;
    width: 20%;
    height: 100%;
}.course_summary_ui .job_classes_ui img {
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
    height: 100%;
}.course_summary_ui .job_classes_ui:hover img {
    transform: scale(1.05);
}.course_summary_ui .feature-item {
    padding: 25px;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    width: calc(33.333% - 20px);
    text-align: center;
    min-width: 250px;
}.course_summary_ui .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@keyframes carousel-slide {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-20%);
    }
    45% {
        transform: translateX(-20%);
    }
    50% {
        transform: translateX(-40%);
    }
    70% {
        transform: translateX(-40%);
    }
    75% {
        transform: translateX(-60%);
    }
    95% {
        transform: translateX(-60%);
    }
    100% {
        transform: translateX(-80%);
    }
}

@media (max-width: 991px) {.course_summary_ui .learn_code_ui {
    height: 350px;
}.course_summary_ui .program_plan_ui h3 {
    font-size: calc(46px * 0.9);
}.course_summary_ui .feature-item {
    width: calc(50% - 15px);
}
}

@media (max-width: 767px) {.course_summary_ui .container {
    padding: 3rem 1.5rem;
}.course_summary_ui .learn_code_ui {
    margin-top: 2rem;
    height: 300px;
}.course_summary_ui .program_plan_ui h3 {
    font-size: calc(46px * 0.8);
}.course_summary_ui .feature-item {
    min-width: 100%;
    padding: 20px;
}.course_summary_ui .knowledge_flow_ui {
    animation-duration: 20s;
    width: 600%;
}.course_summary_ui .job_classes_ui {
    width: 16.6667%;
}
    
    @keyframes carousel-slide {
        0%, 12% {
            transform: translateX(0);
        }
        16%, 28% {
            transform: translateX(-16.6667%);
        }
        32%, 44% {
            transform: translateX(-33.3334%);
        }
        48%, 60% {
            transform: translateX(-50%);
        }
        64%, 76% {
            transform: translateX(-66.6667%);
        }
        80%, 92% {
            transform: translateX(-83.3334%);
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 480px) {.course_summary_ui .learn_code_ui {
    height: 250px;
}.course_summary_ui .program_plan_ui .feedback_reach_ui {
    padding: 0.8rem 2rem;
}}.reg_remind_ui {
    background-color: rgb(84,146,115);
    padding: 0;
    color: #ffffff;
    font-family: Arial, sans-serif;
    position: relative;
}.reg_remind_ui .container {
    z-index: 2;
    position: relative;
}.reg_remind_ui .access_cta_ui {
    flex-direction: column;
    display: flex;
}.reg_remind_ui .connect_now_ui {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    display: grid;
    background-color: rgb(145,177,158);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: 3;
    padding: 3rem 1.5rem 5rem;
    margin-bottom: -2rem;
}.reg_remind_ui .connect_now_ui::before {
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
    z-index: -1;
}.reg_remind_ui .info_item {
    transition: transform 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}.reg_remind_ui .info_item:hover {
    transform: translateX(10px);
}.reg_remind_ui .info_item p,
.reg_remind_ui .info_item a {
    align-items: center;
    color: #ffffff;
    gap: 0.75rem;
    text-decoration: none;
    display: flex;
    transition: all 0.3s ease;
    font-size: 18px;
}.reg_remind_ui .info_item svg {
    height: 20px;
    transition: transform 0.3s ease;
    width: 20px;
    fill: #ffffff;
}.reg_remind_ui .info_item:hover svg {
    transform: scale(1.2);
}.reg_remind_ui .text_main_holder {
    z-index: 2;
    gap: 0;
    grid-template-columns: 1fr 1.5fr 1fr;
    display: grid;
    position: relative;
}.reg_remind_ui .top_lesson_ui {
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
    flex-direction: column;
    padding: 4rem 2rem 3rem;
    gap: 1.5rem;
    display: flex;
    position: relative;
    z-index: 4;
    background-color: rgb(84,146,115);
}.reg_remind_ui .top_lesson_ui svg {
    max-width: 150px;
    transition: all 0.3s ease;
    height: auto;
    filter: brightness(0) invert(1);
}.reg_remind_ui .top_lesson_ui:hover svg {
    transform: scale(1.05);
}.reg_remind_ui .enroll_info_ui {
    line-height: 1.6;
    opacity: 0.9;
    font-size: 15px;
    color: #ffffff;
}.reg_remind_ui .head_primary_ui {
    gap: 2rem;
    position: relative;
    flex-direction: column;
    padding: 5rem 2rem 3rem;
    display: flex;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    background-color: #000000;
    z-index: 2;
}.reg_remind_ui .head_primary_ui::before {
    left: 0;
    top: 0;
    content: '';
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    z-index: -1;
    position: absolute;
    width: 100%;
}.reg_remind_ui .head_primary_ui h5 {
    display: inline-block;
    position: relative;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 1.5rem;
}.reg_remind_ui .head_primary_ui h5::after {
    height: 3px;
    left: 0;
    width: 40px;
    background-color: rgb(145,177,158);
    bottom: -0.5rem;
    position: absolute;
    content: '';
}.reg_remind_ui .main_bar_ui {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
}.reg_remind_ui .main_bar_ui:not(:last-child) {
    margin-bottom: 1rem;
}.reg_remind_ui .main_bar_ui a {
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.8;
    color: #ffffff;
    position: relative;
    text-decoration: none;
    padding: 0.5rem 0;
}.reg_remind_ui .main_bar_ui a::before {
    left: 0;
    background-color: rgb(145,177,158);
    width: 0;
    height: 2px;
    transition: width 0.3s ease;
    bottom: 0;
    position: absolute;
    content: '';
}.reg_remind_ui .main_bar_ui a:hover {
    padding-left: 10px;
    opacity: 1;
}.reg_remind_ui .main_bar_ui a:hover::before {
    width: 30px;
}.reg_remind_ui .subscribe_holder {
    background-color: rgb(84,146,115);
    position: relative;
    display: flex;
    gap: 1.5rem;
    padding: 4rem 2rem 3rem;
    z-index: 3;
    flex-direction: column;
}.reg_remind_ui .subscribe_holder::before {
    top: 0;
    width: 100%;
    position: absolute;
    content: '';
    left: 0;
    height: 100%;
    z-index: -1;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
}.reg_remind_ui .subscribe_holder h5 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 18px;
}.reg_remind_ui .subscribe_holder p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #ffffff;
}.reg_remind_ui .input_holder {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}.reg_remind_ui .input_holder input[type="email"] {
    background-color: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    color: #ffffff;
    padding: 1rem 1.25rem;
    font-size: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}.reg_remind_ui .input_holder input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
}.reg_remind_ui .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}.reg_remind_ui .subscribe_coupons_ui {
    position: relative;
    padding: 1rem 1.25rem;
    overflow: hidden;
    font-size: 17px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: rgb(145,177,158);
    border-radius: 10px;
    color: #ffffff;
}.reg_remind_ui .subscribe_coupons_ui::before {
    position: absolute;
    left: -100%;
    width: 100%;
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    content: '';
    height: 100%;
}.reg_remind_ui .subscribe_coupons_ui:hover {
    background-color: rgb(145,177,158,0.5);
}.reg_remind_ui .subscribe_coupons_ui:hover::before {
    left: 100%;
}.reg_remind_ui .terms_legal_ui {
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    padding: 6rem 0 2rem;
    z-index: 1;
    text-align: center;
    background-color: rgb(84,146,115);
    position: relative;
    margin-top: 0;
}.reg_remind_ui .terms_legal_ui::before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    z-index: -1;
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
}.reg_remind_ui .rating_stars_ui {
    font-size: 15px;
    color: #ffffff;
    opacity: 0.7;
}

@media (max-width: 1200px) {.reg_remind_ui .connect_now_ui {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}.reg_remind_ui .text_main_holder {
    grid-template-columns: 1fr 1.5fr;
}.reg_remind_ui .subscribe_holder {
    grid-column: 1 / -1;
}
}

@media (max-width: 991px) {.reg_remind_ui .text_main_holder {
    grid-template-columns: 1fr;
}.reg_remind_ui .top_lesson_ui,
    .reg_remind_ui .head_primary_ui,
    .reg_remind_ui .subscribe_holder {
    clip-path: none;
}.reg_remind_ui .head_primary_ui {
    padding: 3rem 2rem;
}.reg_remind_ui .top_lesson_ui {
    padding: 3rem 2rem;
    align-items: center;
    text-align: center;
}.reg_remind_ui .subscribe_holder {
    padding: 3rem 2rem;
}.reg_remind_ui .terms_legal_ui {
    padding: 3rem 0 2rem;
    clip-path: none;
}
}

@media (max-width: 768px) {.reg_remind_ui .connect_now_ui {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem 3rem;
    clip-path: none;
    margin-bottom: 0;
}.reg_remind_ui .main_bar_ui {
    grid-template-columns: 1fr;
}.reg_remind_ui .head_primary_ui h5,
    .reg_remind_ui .subscribe_holder h5 {
    text-align: center;
    display: block;
}.reg_remind_ui .head_primary_ui h5::after {
    transform: translateX(-50%);
    left: 50%;
}.reg_remind_ui .subscribe_holder p {
    text-align: center;
}
}

@media (max-width: 576px) {.reg_remind_ui .top_lesson_ui,
    .reg_remind_ui .head_primary_ui,
    .reg_remind_ui .subscribe_holder {
    padding: 2.5rem 1.5rem;
}.reg_remind_ui .terms_legal_ui {
    padding: 2.5rem 0 1.5rem;
}.reg_remind_ui .info_item {
    padding: 0.5rem 0;
}.reg_remind_ui .info_item p,
    .reg_remind_ui .info_item a {
    justify-content: center;
}}.program_assets_ui {
    overflow: hidden;
    position: relative;
    background: linear-gradient(to right, rgb(190,202,195) 0%, #ffffff 100%);
    perspective: 1000px;
    padding: 8rem 0;
}.program_assets_ui::before {
    z-index: 1;
    height: 120%;
    opacity: 0.5;
    transform: rotate(-15deg);
    right: -10%;
    position: absolute;
    width: 70%;
    top: -10%;
    content: '';
    background: linear-gradient(135deg, transparent 0%, rgb(145,177,158,0.5) 100%);
}.program_assets_ui .pro_program_ui {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
    display: flex;
    position: relative;
    z-index: 2;
}.program_assets_ui .pic_stack_ui {
    height: 600px;
    width: 50%;
    z-index: 2;
    position: relative;
    transform: rotateY(15deg) translateX(-5vw);
    transition: transform 0.5s ease;
    transform-origin: left center;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}.program_assets_ui .pic_stack_ui:hover {
    transform: rotateY(5deg) translateX(-3vw);
}.program_assets_ui .pic_stack_ui::after {
    inset: 0;
    background: linear-gradient(to right, rgb(145,177,158,0.5) 0%, transparent 100%);
    content: '';
    position: absolute;
    z-index: 1;
}.program_assets_ui .text_wrap_item_ui {
    transform: rotateY(-5deg);
    padding: 3rem 5vw;
    width: 50%;
    transition: transform 0.5s ease;
    transform-origin: right center;
}.program_assets_ui .text_wrap_item_ui:hover {
    transform: rotateY(0deg);
}.program_assets_ui h2 {
    position: relative;
    border-left: 5px solid rgb(145,177,158);
    color: #000000;
    font-weight: 700;
    padding-left: 2rem;
    margin-bottom: 3rem;
    font-size: 33px;
}.program_assets_ui .text_main_holder {
    gap: 2rem;
    position: relative;
    grid-template-columns: 1fr;
    display: grid;
}.program_assets_ui .text_main_holder > div {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    transition: all 0.4s ease;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    overflow: hidden;
    align-items: flex-start;
    z-index: 1;
}.program_assets_ui .text_main_holder > div::before {
    inset: 0;
    content: '';
    transition: opacity 0.4s ease;
    opacity: 0;
    position: absolute;
    background: linear-gradient(135deg, rgb(145,177,158,0.5) 0%, transparent 100%);
    z-index: -1;
}.program_assets_ui .text_main_holder > div:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: translateX(1rem) scale(1.03);
}.program_assets_ui .text_main_holder > div:hover::before {
    opacity: 1;
}.program_assets_ui .text_main_holder svg {
    transition: all 0.3s ease;
    width: 3rem;
    margin-right: 1.5rem;
    height: 3rem;
    flex-shrink: 0;
}.program_assets_ui .text_main_holder > div:hover svg {
    transform: rotate(10deg);
}.program_assets_ui .text_main_holder svg path {
    fill: rgb(145,177,158);
    transition: fill 0.3s ease;
}.program_assets_ui .text_main_holder > div:hover svg path {
    fill: rgb(84,146,115);
}.program_assets_ui .text_main_holder p {
    color: #000000;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 1200px) {.program_assets_ui .pic_stack_ui {
    height: 500px;
    width: 45%;
}.program_assets_ui .text_wrap_item_ui {
    width: 55%;
}
}

@media (max-width: 992px) {.program_assets_ui {
    padding: 6rem 0;
    perspective: none;
}.program_assets_ui .pro_program_ui {
    max-width: 90%;
    flex-direction: column;
}.program_assets_ui .pic_stack_ui {
    height: 400px;
    transform: none;
    width: 100%;
    margin-bottom: 3rem;
}.program_assets_ui .pic_stack_ui:hover {
    transform: none;
}.program_assets_ui .text_wrap_item_ui {
    padding: 0;
    width: 100%;
    transform: none;
}.program_assets_ui .text_wrap_item_ui:hover {
    transform: none;
}.program_assets_ui .text_main_holder > div:hover {
    transform: translateX(0) scale(1.03);
}
}

@media (max-width: 768px) {.program_assets_ui {
    padding: 5rem 0;
}.program_assets_ui .pic_stack_ui {
    height: 350px;
}.program_assets_ui h2 {
    font-size: calc(33px * 0.9);
    margin-bottom: 2.5rem;
}.program_assets_ui .text_main_holder > div {
    padding: 1.5rem;
}
}

@media (max-width: 576px) {.program_assets_ui .pro_program_ui {
    max-width: 95%;
}.program_assets_ui .pic_stack_ui {
    height: 250px;
}.program_assets_ui h2 {
    padding-left: 1.5rem;
}.program_assets_ui .text_main_holder > div {
    padding: 1.2rem;
}.program_assets_ui .text_main_holder svg {
    margin-right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
}}header .header_lead_ui {
    position: relative;
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 99;
    background: linear-gradient(120deg, rgb(145,177,158) 0%, rgb(84,146,115,0.5) 100%);
    overflow: visible;
    padding: 1.5rem 0;
    box-sizing: border-box;
}header .header_lead_ui::before {
    z-index: -1;
    top: 0;
    position: absolute;
    height: 100%;
    content: "";
    width: 100%;
    left: 0;
    background: radial-gradient(circle at 70% 30%, rgb(84,146,115,0.5) 0%, transparent 60%);
}header .header_lead_ui .top_lesson_ui {
    margin-left: calc((100vw - 100%) / 2);
    transition: all 0.4s ease;
    transform: translateY(-5px);
    z-index: 2;
    position: relative;
}header .header_lead_ui .top_lesson_ui:hover {
    transform: translateY(0) scale(1.05);
}header .header_lead_ui .top_lesson_ui .nav_core_ui {
    display: block;
    padding: 0.5rem 1rem;
    position: relative;
}header .header_lead_ui .top_lesson_ui .nav_core_ui::before {
    height: calc(100% + 20px);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    top: -10px;
    left: -20px;
    content: "";
    position: absolute;
    width: calc(100% + 40px);
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}header .header_lead_ui .top_lesson_ui .nav_core_ui svg {
    width: auto;
    height: 2.8rem;
    filter: drop-shadow(0 0 8px #ffffff);
}header .header_lead_ui .head_primary_ui {
    padding: 0;
    background: linear-gradient(90deg, transparent, rgb(145,177,158,0.5) 30%, rgba(0, 0, 0, 0.5) 100%);
    margin: 0;
    justify-content: flex-end;
    display: flex;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
    position: relative;
    list-style: none;
    width: 80vw;
    padding-right: calc((100vw - 100%) / 2);
}header .header_lead_ui .head_primary_ui::before {
    height: 100%;
    width: 100%;
    background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
    position: absolute;
    z-index: -1;
    top: 0;
    content: "";
    left: 0;
}header .header_lead_ui .head_primary_ui .nav_top_ui {
    margin: 0;
    transform-style: preserve-3d;
    position: relative;
    perspective: 1000px;
}header .header_lead_ui .head_primary_ui .nav_top_ui a {
    transition: all 0.3s ease;
    position: relative;
    color: #ffffff;
    font-weight: 600;
    display: block;
    padding: 1.2rem 1.5rem;
    text-decoration: none;
    transform-origin: center;
    font-size: 16px;
}header .header_lead_ui .head_primary_ui .nav_top_ui a::after {
    left: 1.5rem;
    transition: width 0.3s ease;
    position: absolute;
    width: 0;
    content: "";
    height: 2px;
    background: rgb(84,146,115);
    bottom: 0.8rem;
}header .header_lead_ui .head_primary_ui .nav_top_ui a:hover {
    transform: translateZ(10px);
    color: rgb(84,146,115);
}header .header_lead_ui .head_primary_ui .nav_top_ui a:hover::after {
    width: calc(100% - 3rem);
}

@media screen and (max-width: 991px) {header .header_lead_ui {
    padding: 1rem 0;
    flex-direction: column;
    align-items: center;
}header .header_lead_ui .top_lesson_ui {
    margin-bottom: 1rem;
    margin-left: 0;
}header .header_lead_ui .head_primary_ui {
    width: 100%;
    padding-right: 0;
    clip-path: none;
    background: rgb(145,177,158,0.5);
    flex-wrap: wrap;
    justify-content: center;
}header .header_lead_ui .head_primary_ui .nav_top_ui a {
    padding: 0.8rem 1rem;
}header .header_lead_ui .head_primary_ui .nav_top_ui a::after {
    left: 1rem;
    bottom: 0.4rem;
}header .header_lead_ui .head_primary_ui .nav_top_ui a:hover::after {
    width: calc(100% - 2rem);
}
}

@media screen and (max-width: 767px) {header .header_lead_ui .head_primary_ui {
    padding: 0.5rem 0;
}header .header_lead_ui .head_primary_ui .nav_top_ui {
    width: 50%;
}header .header_lead_ui .head_primary_ui .nav_top_ui a {
    text-align: center;
    padding: 0.6rem 0.8rem;
    font-size: calc(16px - 2px);
}header .header_lead_ui .head_primary_ui .nav_top_ui a::after {
    display: none;
}}.enroll_instantly_ui {
    z-index: 1;
    position: relative;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 100%;
    padding: 120px 0;
    background: linear-gradient(to right, rgb(145,177,158), rgb(84,146,115), rgb(145,177,158));
    overflow: hidden;
}.enroll_instantly_ui::before {
    position: absolute;
    z-index: -1;
    height: 100%;
    left: 0;
    width: 100%;
    top: 0;
    content: '';
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 10px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 10px
        );
}.enroll_instantly_ui::after {
    transform-origin: center;
    left: -50%;
    z-index: -1;
    top: -50%;
    content: '';
    width: 200%;
    height: 200%;
    position: absolute;
    opacity: 0.3;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
    animation: rotateLight 40s linear infinite;
}.enroll_instantly_ui .pro_program_ui {
    backdrop-filter: blur(10px);
    padding: 60px;
    justify-content: center;
    position: relative;
    max-width: 1100px;
    overflow: hidden;
    flex-direction: column;
    margin: 0 auto;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1);
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    align-items: center;
}.enroll_instantly_ui .pro_program_ui::before {
    animation: shimmerEffect 5s ease-in-out infinite;
    width: 100%;
    content: '';
    position: absolute;
    left: 0;
    transform: skewX(-45deg) translateX(-150%);
    height: 100%;
    background: 
        linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent
        );
    z-index: -1;
    top: 0;
}.enroll_instantly_ui .pro_program_ui::after {
    opacity: 0.1;
    left: -25%;
    top: -25%;
    z-index: -1;
    animation: rotatePrism 20s linear infinite;
    background: conic-gradient(
        from 0deg at 50% 50%,
        transparent 0deg,
        rgb(145,177,158,0.5) 90deg,
        transparent 180deg,
        rgb(84,146,115,0.5) 270deg,
        transparent 360deg
    );
    height: 150%;
    width: 150%;
    position: absolute;
    content: '';
}.enroll_instantly_ui h3 {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 37px;
    color: #ffffff;
    text-align: center;
    transform-style: preserve-3d;
    animation: floatText 6s ease-in-out infinite;
    transform: perspective(500px);
    font-family: Arial, sans-serif;
    margin-bottom: 60px;
    position: relative;
}.enroll_instantly_ui h3::before {
    background: linear-gradient(
        to right,
        transparent,
        #ffffff,
        transparent
    );
    box-shadow: 0 0 15px #ffffff;
    content: '';
    left: 30%;
    bottom: -20px;
    height: 2px;
    width: 40%;
    position: absolute;
}.enroll_instantly_ui h3::after {
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
    animation: reflectionSweep 8s linear infinite;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    content: '';
    width: 100%;
}.enroll_instantly_ui .learn_chat_ui {
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    z-index: 1;
    color: rgb(145,177,158);
    transition: all 0.4s ease;
    font-size: 20px;
    padding: 18px 50px;
    transform: translateZ(10px);
    display: inline-block;
    letter-spacing: 3px;
    font-family: Arial, sans-serif;
    border-radius: 50px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(255, 255, 255, 0.2);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
}.enroll_instantly_ui .learn_chat_ui::before {
    opacity: 0;
    top: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    left: 0;
    position: absolute;
    height: 100%;
    background: linear-gradient(
        to right,
        rgb(145,177,158),
        rgb(84,146,115)
    );
    width: 100%;
    content: '';
}.enroll_instantly_ui .learn_chat_ui::after {
    position: absolute;
    height: 300%;
    width: 30%;
    transition: left 0.7s ease;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.7),
        transparent
    );
    transform: rotate(30deg);
    top: -100%;
    left: -100%;
    z-index: 1;
    content: '';
}.enroll_instantly_ui .learn_chat_ui:hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-5px) translateZ(10px);
}.enroll_instantly_ui .learn_chat_ui:hover::before {
    opacity: 1;
}.enroll_instantly_ui .learn_chat_ui:hover::after {
    left: 200%;
}

@media screen and (max-width: 992px) {.enroll_instantly_ui {
    padding: 100px 0;
}.enroll_instantly_ui .pro_program_ui {
    padding: 50px 40px;
    max-width: 90%;
}.enroll_instantly_ui h3 {
    font-size: calc(37px * 0.9);
    margin-bottom: 50px;
}.enroll_instantly_ui .learn_chat_ui {
    padding: 16px 45px;
}
}

@media screen and (max-width: 768px) {.enroll_instantly_ui {
    padding: 80px 0;
}.enroll_instantly_ui .pro_program_ui {
    padding: 40px 30px;
}.enroll_instantly_ui h3 {
    font-size: calc(37px * 0.8);
    margin-bottom: 45px;
    letter-spacing: 3px;
}.enroll_instantly_ui h3::before {
    left: 35%;
    width: 30%;
}.enroll_instantly_ui .learn_chat_ui {
    padding: 15px 40px;
    font-size: calc(20px * 0.95);
    letter-spacing: 2px;
}
}

@media screen and (max-width: 576px) {.enroll_instantly_ui {
    padding: 60px 0;
}.enroll_instantly_ui .pro_program_ui {
    padding: 30px 20px;
}.enroll_instantly_ui h3 {
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-size: calc(37px * 0.7);
}.enroll_instantly_ui h3::before {
    width: 25%;
    bottom: -15px;
    left: 37.5%;
}.enroll_instantly_ui .learn_chat_ui {
    letter-spacing: 1px;
    font-size: calc(20px * 0.9);
    padding: 12px 35px;
}}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes rotateLight {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes shimmerEffect {
    0% {
        transform: skewX(-45deg) translateX(-150%);
    }
    50% {
        transform: skewX(-45deg) translateX(150%);
    }
    100% {
        transform: skewX(-45deg) translateX(-150%);
    }
}

@keyframes rotatePrism {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatText {
    0%, 100% {
        transform: perspective(500px) translateZ(0);
        text-shadow: 0 0 10px #ffffff;
    }
    50% {
        transform: perspective(500px) translateZ(20px);
        text-shadow: 0 0 25px #ffffff;
    }
}

@keyframes reflectionSweep {
    0% {
        transform: translateX(-100%) skewX(-45deg);
    }
    100% {
        transform: translateX(100%) skewX(-45deg);
    }
}.thanksNexus_ui {
    position: relative;
    perspective: 1000px;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(145,177,158,0.5), rgb(190,202,195), rgb(84,146,115,0.5));
}.thanksNexus_ui::before {
    right: 0;
    position: absolute;
    content: "";
    animation: pulse 10s infinite alternate ease-in-out;
    bottom: 0;
    top: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(145,177,158,0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgb(84,146,115,0.5) 0%, transparent 60%);
    left: 0;
    z-index: 0;
    opacity: 0.7;
}.thanksNexus_ui::after {
    top: -50%;
    left: -50%;
    width: 200%;
    z-index: 1;
    content: "";
    animation: patternMove 60s linear infinite;
    transform: rotate(15deg);
    height: 200%;
    position: absolute;
    pointer-events: none;
}.thanksNexus_ui .container {
    max-width: 1200px;
    z-index: 2;
    position: relative;
    transform-style: preserve-3d;
    padding: 0 20px;
    margin: 0 auto;
}.thanksNexus_ui h2 {
    color: #000000;
    margin-bottom: 40px;
    transform: translateZ(30px);
    transition: transform 0.5s ease;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
    line-height: 1.3;
    padding-left: 20px;
    font-size: 29px;
    font-family: Arial, sans-serif;
    position: relative;
    border-left: 4px solid rgb(145,177,158);
}.thanksNexus_ui h2::after {
    transform: scaleX(0);
    bottom: -12px;
    height: 3px;
    width: 60px;
    background: rgb(84,146,115);
    content: "";
    position: absolute;
    animation: lineGrow 1.2s 0.5s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    left: 20px;
    transform-origin: left;
}.thanksNexus_ui .pro_program_ui {
    background: #ffffff;
    box-shadow: 
        0 15px 30px -10px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.05),
        0 30px 60px -30px rgba(rgb(145,177,158), 0.3);
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    transform: translateZ(20px) rotateX(2deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}.thanksNexus_ui .pro_program_ui::before {
    background: linear-gradient(90deg, rgb(145,177,158), rgb(84,146,115));
    top: 0;
    z-index: 3;
    left: 0;
    height: 5px;
    content: "";
    position: absolute;
    width: 100%;
}.thanksNexus_ui .pro_program_ui:hover {
    box-shadow: 
        0 20px 40px -15px rgba(0,0,0,0.15),
        0 10px 20px rgba(0,0,0,0.08),
        0 40px 70px -40px rgba(rgb(145,177,158), 0.4);
    transform: translateZ(30px) rotateX(0deg);
}.thanksNexus_ui ul {
    padding: 0;
    list-style: none;
    margin: 0;
}.thanksNexus_ui li {
    background: #ffffff;
    transition: transform 0.3s ease;
    padding: 40px;
    position: relative;
}.thanksNexus_ui li::before {
    display: flex;
    position: absolute;
    box-shadow: 0 5px 15px rgba(rgb(145,177,158), 0.3);
    border-radius: 50%;
    color: #ffffff;
    left: 40px;
    align-items: center;
    justify-content: center;
    top: -15px;
    content: "✓";
    background: rgb(145,177,158);
    width: 30px;
    height: 30px;
    font-size: 16px;
}.thanksNexus_ui span {
    text-align: left;
    color: #000000;
    font-size: 15px;
    font-family: Arial, sans-serif;
    position: relative;
    display: block;
    line-height: 1.7;
    z-index: 2;
}

@keyframes lineGrow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

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

@keyframes patternMove {
    0% {
        transform: rotate(15deg) translateY(0);
    }
    100% {
        transform: rotate(15deg) translateY(-100px);
    }
}

@media (max-width: 991px) {.thanksNexus_ui {
    padding: 80px 0;
}.thanksNexus_ui h2 {
    font-size: calc(29px * 0.9);
    padding-left: 15px;
}.thanksNexus_ui li {
    padding: 30px;
}.thanksNexus_ui li::before {
    left: 30px;
}
}

@media (max-width: 767px) {.thanksNexus_ui {
    padding: 60px 0;
}.thanksNexus_ui h2 {
    margin-bottom: 30px;
    transform: translateZ(20px);
    font-size: calc(29px * 0.8);
}.thanksNexus_ui h2::after {
    width: 40px;
}.thanksNexus_ui .pro_program_ui {
    transform: translateZ(10px) rotateX(1deg);
}.thanksNexus_ui .pro_program_ui:hover {
    transform: translateZ(15px) rotateX(0deg);
}.thanksNexus_ui li {
    padding: 25px 20px;
}.thanksNexus_ui li::before {
    top: -12px;
    height: 24px;
    left: 20px;
    width: 24px;
    font-size: 14px;
}.thanksNexus_ui span {
    line-height: 1.6;
    font-size: calc(15px * 0.95);
}
}

@media (max-width: 480px) {.thanksNexus_ui {
    padding: 40px 0;
}.thanksNexus_ui h2 {
    border-left: 3px solid rgb(145,177,158);
    padding-left: 12px;
    font-size: calc(29px * 0.7);
}.thanksNexus_ui .container {
    padding: 0 15px;
}.thanksNexus_ui .pro_program_ui {
    transform: translateZ(5px) rotateX(0.5deg);
}.thanksNexus_ui .pro_program_ui:hover {
    transform: translateZ(10px) rotateX(0deg);
}.thanksNexus_ui li {
    padding: 20px 15px;
}.thanksNexus_ui li::before {
    left: 15px;
    width: 20px;
    font-size: 12px;
    height: 20px;
}.thanksNexus_ui span {
    line-height: 1.5;
    font-size: calc(15px * 0.9);
}}.title_opener_ui {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgb(190,202,195) 0%, rgb(145,177,158,0.5) 100%);
}.title_opener_ui::before {
    top: 0;
    width: 100%;
    content: "";
    left: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 8%),
                    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 6%);
    z-index: 0;
    background-size: 60px 60px;
    opacity: 0.5;
    height: 100%;
    position: absolute;
}.title_opener_ui > div {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    z-index: 1;
    position: relative;
    margin: 0 auto;
    display: grid;
    padding: 0 20px;
    max-width: 1200px;
    gap: 40px;
}.title_opener_ui .skill_quick_ui {
    color: #000000;
    line-height: 1.2;
    font-weight: 700;
    transform: translateY(0);
    font-size: 44px;
    transition: transform 0.5s ease-out;
    margin-bottom: 20px;
    position: relative;
}.title_opener_ui .skill_quick_ui::after {
    background: rgb(145,177,158);
    position: absolute;
    width: 80px;
    bottom: -10px;
    transition: transform 0.6s ease-out;
    content: "";
    transform: scaleX(0);
    left: 0;
    height: 4px;
    transform-origin: left;
}.title_opener_ui:hover .skill_quick_ui::after {
    transform: scaleX(1);
}.title_opener_ui p {
    max-width: 90%;
    opacity: 0;
    color: #000000;
    animation: fade-in-up 0.7s ease-out forwards 0.3s;
    line-height: 1.6;
    transform: translateY(20px);
    margin-bottom: 30px;
    font-size: calc(17px * 1.2);
}.title_opener_ui .page_lead_ui {
    perspective: 1000px;
    height: 100%;
    position: relative;
}.title_opener_ui .smart_study_ui {
    transition: transform 0.5s ease;
    position: relative;
    height: 400px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: rotateY(-5deg) translateZ(0);
}.title_opener_ui .smart_study_ui:hover {
    transform: rotateY(0) translateZ(20px);
}.title_opener_ui .smart_study_ui::before {
    left: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
}.title_opener_ui .smart_study_ui span {
    z-index: 2;
    position: absolute;
    transform: translateY(10px);
    transition: transform 0.4s ease;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
}.title_opener_ui .smart_study_ui:hover span {
    transform: translateY(0);
}.title_opener_ui .smart_study_ui h3 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
    font-size: 19px;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {.title_opener_ui {
    padding: 100px 0 60px;
}.title_opener_ui > div {
    grid-template-columns: 1fr;
    gap: 30px;
}.title_opener_ui .skill_quick_ui {
    font-size: calc(44px * 0.9);
}.title_opener_ui p {
    font-size: 17px;
    max-width: 100%;
}.title_opener_ui .smart_study_ui {
    transform: rotateY(0) translateZ(0);
    height: 350px;
}
}

@media (max-width: 768px) {.title_opener_ui {
    padding: 80px 0 50px;
}.title_opener_ui > div {
    padding: 0 15px;
}.title_opener_ui .skill_quick_ui {
    font-size: calc(44px * 0.8);
}.title_opener_ui .smart_study_ui {
    height: 300px;
}.title_opener_ui .smart_study_ui h3 {
    font-size: calc(19px * 0.9);
}
}

@media (max-width: 576px) {.title_opener_ui {
    padding: 60px 0 40px;
}.title_opener_ui .skill_quick_ui {
    font-size: calc(44px * 0.7);
}.title_opener_ui p {
    font-size: calc(17px * 0.95);
    margin-bottom: 20px;
}.title_opener_ui .smart_study_ui {
    height: 250px;
}.title_opener_ui .smart_study_ui span {
    padding: 20px 15px;
}.title_opener_ui .smart_study_ui h3 {
    font-size: calc(19px * 0.8);
}}.join_our_mailing_list_ui {
    font-family: Arial, sans-serif;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgb(145,177,158,0.5) 0%, rgb(190,202,195) 50%, rgba(0, 0, 0, 0.5) 100%);
}.join_our_mailing_list_ui::before {
    filter: blur(40px);
    content: "";
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: 
        radial-gradient(circle at 70% 20%, rgb(84,146,115,0.5) 0%, transparent 30%),
        radial-gradient(circle at 30% 70%, rgb(145,177,158,0.5) 0%, transparent 25%);
    height: 100%;
}.join_our_mailing_list_ui .pro_program_ui {
    max-width: 1200px;
    position: relative;
    z-index: 1;
    perspective: 1500px;
    margin: 0 auto;
}.join_our_mailing_list_ui .connect_widget_ui {
    transform-style: preserve-3d;
    position: relative;
    padding: 3rem;
    border-radius: 25px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    transform: rotateX(10deg) rotateY(-5deg);
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    width: 90%;
}.join_our_mailing_list_ui .connect_widget_ui:hover {
    transform: rotateX(0deg) rotateY(0deg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}.join_our_mailing_list_ui h3 {
    font-weight: 700;
    width: fit-content;
    margin-bottom: 2rem;
    transform: translateZ(30px);
    font-size: 28px;
    color: #ffffff;
    position: relative;
}.join_our_mailing_list_ui h3::before {
    transform: translateZ(35px);
    bottom: -10px;
    background: linear-gradient(90deg, rgb(145,177,158), transparent);
    content: "";
    position: absolute;
    height: 3px;
    width: 50%;
    left: 0;
}.join_our_mailing_list_ui .input_holder {
    transform: translateZ(20px);
    width: 100%;
    flex-direction: column;
    display: flex;
    position: relative;
}.join_our_mailing_list_ui input[type="email"] {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    font-size: 16px;
    color: #ffffff;
    border-radius: 10px;
    width: 100%;
}.join_our_mailing_list_ui input[type="email"]:focus {
    border-color: rgb(145,177,158);
    box-shadow: 0 5px 20px rgb(145,177,158,0.5);
    transform: translateZ(40px) scale(1.02);
    outline: none;
}.join_our_mailing_list_ui input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}.join_our_mailing_list_ui .subscribe_coupons_ui {
    transform: translateZ(20px) translateX(0);
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    background: rgb(145,177,158);
    overflow: hidden;
    color: #ffffff;
    border: none;
    cursor: pointer;
    position: relative;
    font-size: 20px;
    border-radius: 10px;
    align-self: flex-start;
    transition: all 0.3s ease;
}.join_our_mailing_list_ui .subscribe_coupons_ui::before {
    top: -10%;
    transform: rotate(45deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    left: -150%;
    height: 120%;
    position: absolute;
    transition: all 0.5s ease;
    width: 120%;
    content: "";
}.join_our_mailing_list_ui .subscribe_coupons_ui:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, rgb(145,177,158), rgb(84,146,115));
    transform: translateZ(40px) translateX(10px);
}.join_our_mailing_list_ui .subscribe_coupons_ui:hover::before {
    left: 150%;
}

@media (min-width: 768px) {.join_our_mailing_list_ui {
    padding: 7rem 3rem;
}.join_our_mailing_list_ui .connect_widget_ui {
    padding: 4rem;
}.join_our_mailing_list_ui .input_holder {
    gap: 1.5rem;
    align-items: center;
    flex-direction: row;
}.join_our_mailing_list_ui input[type="email"] {
    margin-bottom: 0;
    flex: 1;
}.join_our_mailing_list_ui .subscribe_coupons_ui {
    align-self: center;
}
}

@media (max-width: 767px) {.join_our_mailing_list_ui {
    padding: 4rem 1.5rem;
}.join_our_mailing_list_ui h3 {
    font-size: 22px;
    transform: translateZ(20px);
}.join_our_mailing_list_ui .connect_widget_ui {
    padding: 2rem;
    width: 100%;
    transform: rotateX(5deg) rotateY(-3deg);
}.join_our_mailing_list_ui .subscribe_coupons_ui {
    width: 100%;
}}.contact_box_ui {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.contact_box_ui::before {
    left: 0;
    backdrop-filter: blur(8px);
    width: 100%;
    z-index: 1;
    position: absolute;
    content: '';
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
}.contact_box_ui::after {
    left: 0;
    animation: gradientShift 15s infinite alternate;
    position: absolute;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgb(145,177,158,0.5) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgb(84,146,115,0.5) 0%, transparent 40%);
    content: '';
}@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.contact_box_ui .container {
    max-width: 1200px;
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
    z-index: 3;
}.contact_box_ui .connect_widget_ui {
    backdrop-filter: blur(10px);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    display: flex;
    border-radius: 12px;
}.contact_box_ui .feedback_feedback_ui {
    position: relative;
    flex: 1;
    background: linear-gradient(135deg, rgb(145,177,158,0.5) 0%, rgb(84,146,115,0.5) 100%);
    padding: 50px 40px;
}.contact_box_ui .feedback_feedback_ui::before {
    left: -50%;
    top: -50%;
    width: 200%;
    position: absolute;
    animation: patternMove 20s linear infinite;
    height: 200%;
    z-index: -1;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
    content: '';
}@keyframes patternMove {
    0% {
        transform: rotate(0) translate(0, 0);
    }
    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

.contact_box_ui .feedback_feedback_ui h3 {
    position: relative;
    margin-bottom: 40px;
    color: #ffffff;
    font-weight: 700;
    padding-bottom: 15px;
    font-size: 34px;
}.contact_box_ui .feedback_feedback_ui h3::after {
    bottom: 0;
    background: #ffffff;
    position: absolute;
    content: '';
    height: 3px;
    border-radius: 10px;
    left: 0;
    width: 60px;
}.contact_box_ui .feedback_feedback_ui div {
    margin-bottom: 25px;
    align-items: center;
    border-left: 3px solid rgb(84,146,115);
    display: flex;
    border-radius: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}.contact_box_ui .feedback_feedback_ui div:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}.contact_box_ui .feedback_feedback_ui svg {
    margin-right: 15px;
    height: 24px;
    flex-shrink: 0;
    width: 24px;
}.contact_box_ui .feedback_feedback_ui svg path {
    transition: fill 0.3s ease;
    fill: #ffffff;
}.contact_box_ui .feedback_feedback_ui div:hover svg path {
    fill: rgb(84,146,115);
}.contact_box_ui .feedback_feedback_ui span {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
}.contact_box_ui .feedback_feedback_ui a {
    transition: color 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}.contact_box_ui .feedback_feedback_ui a:hover {
    text-decoration: underline;
    color: rgb(84,146,115);
}.contact_box_ui .query_info_ui {
    flex: 1.2;
    overflow: hidden;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}.contact_box_ui .query_info_ui::before {
    border-radius: 0 0 0 100%;
    background: rgb(145,177,158,0.5);
    top: 0;
    right: 0;
    height: 100px;
    position: absolute;
    content: '';
    width: 100px;
}.contact_box_ui .query_info_ui::after {
    border-radius: 0 100% 0 0;
    width: 100px;
    bottom: 0;
    position: absolute;
    content: '';
    background: rgb(84,146,115,0.5);
    height: 100px;
    left: 0;
}.contact_box_ui form {
    z-index: 1;
    position: relative;
}.contact_box_ui form h3 {
    color: #000000;
    margin-bottom: 30px;
    position: relative;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
}.contact_box_ui form h3::after {
    position: absolute;
    border-radius: 10px;
    bottom: 0;
    content: '';
    height: 3px;
    width: 60px;
    transform: translateX(-50%);
    background: rgb(145,177,158);
    left: 50%;
}.contact_box_ui form input[type="text"],
.contact_box_ui form input[type="email"] {
    border: none;
    margin-bottom: 20px;
    background: rgba(240, 240, 240, 0.8);
    color: #000000;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
}.contact_box_ui form input[type="text"]:focus,
.contact_box_ui form input[type="email"]:focus {
    background: #fff;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 0 0 2px rgb(145,177,158,0.5);
}.contact_box_ui form input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}.contact_box_ui .connect_support_ui {
    display: flex;
    margin: 25px 0;
    align-items: flex-start;
    position: relative;
}.contact_box_ui .connect_support_ui input[type="checkbox"] {
    flex-shrink: 0;
    border: 2px solid rgb(145,177,158);
    width: 20px;
    position: relative;
    appearance: none;
    height: 20px;
    background: rgba(240, 240, 240, 0.8);
    border-radius: 10px;
    margin-right: 10px;
    cursor: pointer;
    -webkit-appearance: none;
}.contact_box_ui .connect_support_ui input[type="checkbox"]:checked {
    background: rgb(145,177,158);
}.contact_box_ui .connect_support_ui input[type="checkbox"]:checked::after {
    position: absolute;
    height: 10px;
    transform: rotate(45deg);
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    content: '';
    top: 2px;
    left: 6px;
    width: 5px;
}.contact_box_ui .connect_support_ui label {
    cursor: pointer;
    color: #000000;
    font-size: 13px;
    line-height: 1.4;
}.contact_box_ui .connect_support_ui a {
    font-weight: 600;
    text-decoration: none;
    color: rgb(145,177,158);
    transition: color 0.3s ease;
}.contact_box_ui .connect_support_ui a:hover {
    text-decoration: underline;
    color: rgb(84,146,115);
}.contact_box_ui .feedback_reach_ui {
    color: #ffffff;
    overflow: hidden;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    cursor: pointer;
    position: relative;
    border: none;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgb(145,177,158) 0%, rgb(84,146,115) 100%);
    z-index: 1;
    border-radius: 10px;
}.contact_box_ui .feedback_reach_ui::before {
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    z-index: -1;
    width: 100%;
    content: '';
    transition: all 0.5s ease;
    top: 0;
    position: absolute;
    left: -100%;
}.contact_box_ui .feedback_reach_ui:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}.contact_box_ui .feedback_reach_ui:hover::before {
    left: 100%;
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 991px) {.contact_box_ui {
    padding: 80px 0;
}.contact_box_ui .connect_widget_ui {
    flex-direction: column;
}.contact_box_ui .feedback_feedback_ui,
    .contact_box_ui .query_info_ui {
    width: 100%;
}.contact_box_ui .feedback_feedback_ui {
    padding: 40px 30px;
}.contact_box_ui .feedback_feedback_ui h3,
    .contact_box_ui form h3 {
    font-size: calc(34px * 0.9);
    margin-bottom: 30px;
}
}

@media (max-width: 767px) {.contact_box_ui {
    padding: 60px 0;
}.contact_box_ui .feedback_feedback_ui,
    .contact_box_ui .query_info_ui {
    padding: 30px 20px;
}.contact_box_ui .feedback_feedback_ui h3,
    .contact_box_ui form h3 {
    margin-bottom: 25px;
    font-size: calc(34px * 0.8);
}.contact_box_ui .feedback_feedback_ui div {
    padding: 12px;
    margin-bottom: 15px;
}.contact_box_ui form input[type="text"],
    .contact_box_ui form input[type="email"] {
    padding: 12px 15px;
    margin-bottom: 15px;
}.contact_box_ui .connect_support_ui {
    margin: 20px 0;
}.contact_box_ui .feedback_reach_ui {
    padding: 12px 15px;
}
}

@media (max-width: 480px) {.contact_box_ui {
    padding: 40px 0;
}.contact_box_ui .feedback_feedback_ui,
    .contact_box_ui .query_info_ui {
    padding: 25px 15px;
}.contact_box_ui .feedback_feedback_ui h3,
    .contact_box_ui form h3 {
    font-size: calc(34px * 0.7);
    margin-bottom: 20px;
}.contact_box_ui .feedback_feedback_ui div {
    flex-direction: column;
    align-items: flex-start;
}.contact_box_ui .feedback_feedback_ui svg {
    margin-bottom: 10px;
    margin-right: 0;
}.contact_box_ui .feedback_feedback_ui div:hover {
    transform: translateX(0);
}.contact_box_ui .connect_support_ui {
    flex-direction: column;
}.contact_box_ui .connect_support_ui input[type="checkbox"] {
    margin-bottom: 10px;
}}.cookieNotificationBanner_ui {
    text-align: center;
    align-items: center;
    border-radius: 27px;
    flex-direction: column;
    width: 90%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    background: rgb(190,202,195);
    z-index: 1050;
    max-width: 600px;
    position: fixed;
    bottom: 20px;
    font-family: Arial, sans-serif;
    left: 50%;
    display: flex;
    padding: 20px;
    transform: translateX(-50%);
}.cookie_layer_ui {
    z-index: 1;
    flex-direction: column;
    align-items: center;
    display: flex;
}.data_settings_ui {
    animation: bounce 2s infinite;
    margin-bottom: 20px;
}.data_settings_ui svg, .data_settings_ui svg path, .data_settings_ui img {
    height: 80px;
    fill: rgb(145,177,158);
    width: 80px;
}@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}
.cookieNotificationBanner_ui h5 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    color: rgb(145,177,158);
}.cookieNotificationBanner_ui p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #000000;
}.cookie_updates_ui {
    width: calc(50% - 10px);
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    margin: 5px;
    padding: 10px 20px;
    background: rgb(145,177,158);
    display: inline-block;
    border-radius: 10px;
}.cookie_updates_ui:hover {
    transform: translateY(-3px);
    background: rgb(84,146,115);
}.cookie_button.visitor_settings_ui {
    background: rgba(0, 0, 0, 0.5);
}.cookie_button.visitor_settings_ui:hover {
    background: rgb(84,146,115,0.5);
}.cookieNotificationBanner_ui p a {
    text-decoration: underline;
    color: rgb(145,177,158);
    transition: color 0.3s ease-in-out;
}.cookieNotificationBanner_ui p a:hover {
    color: rgb(84,146,115);
}
@media only screen and (max-width: 600px) {.cookieNotificationBanner_ui {
    left: 0;
    border-radius: 0;
    width: 100%;
    bottom: 0;
    transform: none;
}.cookie_layer_ui {
    padding: 15px;
}.data_settings_ui svg {
    height: 50px;
    width: 50px;
}.cookieNotificationBanner_ui h5 {
    font-size: calc(22px - 2px);
}.cookieNotificationBanner_ui p {
    font-size: calc(15px - 2px);
}.cookie_updates_ui {
    font-size: calc(14px - 2px);
    width: calc(100% - 10px);
    padding: 8px 16px;
}}
#cookieAlertNotice_ui {
    display: none;
}#cookieAlertNotice_ui:checked ~ .cookieNotificationBanner_ui {
    opacity: 0;
    visibility: hidden;
}.privacy_defense_ui {
    background-color: rgb(84,146,115);
    color: #ffffff;
    width: 100%;
    overflow: hidden;
    padding: 30px;
    height: 100%;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}.privacy_defense_ui h1 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-weight: 700;
    margin-top: 30px;
    text-shadow: 0 0 8px rgb(145,177,158);
    font-size: 46px;
    border-bottom: 2px solid rgb(84,146,115);
    color: #ffffff;
}.privacy_defense_ui h2 {
    color: #ffffff;
    text-shadow: 0 0 5px rgb(84,146,115);
    margin-top: 25px;
    letter-spacing: 2px;
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}.privacy_defense_ui h3, .privacy_defense_ui h4, .privacy_defense_ui h5, .privacy_defense_ui h6 {
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgb(145,177,158,0.5);
    font-size: 20px;
    margin-top: 20px;
}.privacy_defense_ui ul, .privacy_defense_ui ol {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding-left: 0;
    border-radius: 10px;
    padding: 10px 0;
    list-style-position: inside;
    background-color: rgba(0, 0, 0, 0.5);
}.privacy_defense_ui li {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    font-size: 16px;
}.privacy_defense_ui section {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 30px;
}.privacy_defense_ui p, .privacy_defense_ui span, .privacy_defense_ui div {
    margin-bottom: 10px;
    box-shadow: 0 0 8px rgb(145,177,158,0.5);
    font-size: 16px;
    color: #ffffff;
    background-color: rgb(145,177,158,0.5);
    padding: 5px 10px;
    border-left: 3px solid rgb(145,177,158);
    line-height: 1.8;
    font-weight: 300;
    border-radius: 10px;
}

@media only screen and (max-width: 800px) {.privacy_defense_ui {
    padding: 20px;
}.privacy_defense_ui h1 {
    font-size: calc(20px - 10%);
}.privacy_defense_ui h2 {
    font-size: calc(20px - 10%);
}.privacy_defense_ui h3, .privacy_defense_ui h4, .privacy_defense_ui h5, .privacy_defense_ui h6 {
    font-size: calc(20px - 10%);
}.privacy_defense_ui li {
    font-size: calc(16px - 10%);
}}.about_this_ui {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    color: #ffffff;
}.about_this_ui::before {
    width: 100%;
    position: absolute;
    background: linear-gradient(135deg, rgb(145,177,158,0.5), rgba(0, 0, 0, 0.5) 80%);
    top: 0;
    left: 0;
    height: 100%;
    z-index: 1;
    content: "";
}.about_this_ui .container {
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}.about_this_ui .text_wrap_item_ui {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    grid-template-columns: 1fr;
    position: relative;
    display: grid;
    gap: 30px;
}.about_this_ui .text_wrap_item_ui > div:first-child {
    position: relative;
    display: inline-block;
}.about_this_ui .text_wrap_item_ui > div:first-child::after {
    transform: scaleX(0);
    animation: lineGrow 0.6s 0.8s ease-out forwards;
    left: 0;
    width: 60px;
    bottom: -10px;
    position: absolute;
    height: 3px;
    transform-origin: left;
    content: "";
    background: rgb(84,146,115);
}.about_this_ui h5 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    color: rgb(84,146,115);
}.about_this_ui div p {
    font-size: calc(37px * 0.9);
    font-weight: 700;
    position: relative;
    margin: 0 0 15px;
    line-height: 1.2;
    display: inline-block;
}.about_this_ui div p b {
    position: relative;
    z-index: 1;
    font-weight: 700;
    display: inline-block;
}.about_this_ui div p b::before {
    bottom: 0;
    transform: skewX(-15deg);
    position: absolute;
    left: -5px;
    z-index: -1;
    width: calc(100% + 10px);
    height: 8px;
    background: rgb(145,177,158,0.5);
    content: "";
}.about_this_ui ol {
    list-style: none;
    margin: 0;
    counter-reset: section;
    padding: 0;
    position: relative;
}.about_this_ui ol li {
    transition: transform 0.3s ease-out;
    line-height: 1.8;
    backdrop-filter: blur(10px);
    font-size: 14px;
    padding: 30px;
    border-left: 4px solid rgb(84,146,115);
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.1);
}.about_this_ui ol li:hover {
    transform: translateX(0);
}.about_this_ui ol li::before {
    position: absolute;
    z-index: -1;
    opacity: 0;
    top: 0;
    background: linear-gradient(90deg, rgb(145,177,158,0.5) 0%, transparent 100%);
    left: 0;
    content: "";
    height: 100%;
    transition: opacity 0.3s ease;
    width: 100%;
}.about_this_ui ol li:hover::before {
    opacity: 0.3;
}

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

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


@media screen and (min-width: 768px) {.about_this_ui {
    padding: 150px 0;
}.about_this_ui .text_wrap_item_ui {
    align-items: start;
    grid-template-columns: 1fr 2fr;
}.about_this_ui .text_wrap_item_ui > div:first-child,
    .about_this_ui .text_wrap_item_ui > div:nth-child(2) {
    grid-column: 1;
}.about_this_ui .text_wrap_item_ui > ol {
    margin-top: 20px;
    grid-column: 1 / -1;
}.about_this_ui ol li {
    column-count: 2;
    column-gap: 40px;
    padding: 40px;
}
}

@media screen and (min-width: 992px) {.about_this_ui {
    padding: 180px 0;
}.about_this_ui::after {
    height: 300px;
    opacity: 0.6;
    border: 2px solid rgb(84,146,115,0.5);
    width: 300px;
    right: -50px;
    position: absolute;
    content: "";
    transform: rotate(15deg);
    top: -50px;
    border-radius: 10px;
    z-index: 1;
}.about_this_ui .text_wrap_item_ui {
    gap: 60px;
    grid-template-columns: 1fr 3fr;
}.about_this_ui ol li {
    column-count: 3;
    padding: 50px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    font-size: calc(14px * 1.05);
    column-gap: 50px;
}
}

@media screen and (max-width: 767px) {.about_this_ui {
    padding: 80px 0;
}.about_this_ui h5 {
    font-size: calc(20px * 0.9);
}.about_this_ui div p {
    font-size: calc(37px * 0.7);
}.about_this_ui ol li {
    line-height: 1.6;
    padding: 25px 20px;
    font-size: calc(14px * 0.9);
}}.price_plan_grid_ui {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(190,202,195) 0%, rgba(245, 247, 252, 1) 100%);
    padding: 100px 0;
}.price_plan_grid_ui::before {
    width: 100%;
    background-image: repeating-linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.02) 0px,
    rgba(0, 0, 0, 0.02) 1px,
    transparent 1px,
    transparent 11px
  );
    left: 0;
    position: absolute;
    height: 100%;
    pointer-events: none;
    content: "";
    top: 0;
    z-index: 1;
}.price_plan_grid_ui .container {
    position: relative;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
}.price_plan_grid_ui .basic_cost_ui {
    display: flex;
    flex-direction: column-reverse;
}.price_plan_grid_ui .payment_deals_ui {
    margin-bottom: 50px;
    text-align: center;
    transition: transform 0.5s ease-out;
}.price_plan_grid_ui .payment_deals_ui h2 {
    margin-bottom: 15px;
    color: #000000;
    font-weight: 700;
    display: inline-block;
    position: relative;
    font-size: 37px;
}.price_plan_grid_ui .payment_deals_ui h2::after {
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    background: rgb(145,177,158);
    bottom: -10px;
    content: "";
    width: 80px;
}.price_plan_grid_ui .premium_cost_ui {
    margin: 0 auto;
    max-width: 700px;
    color: #000000;
    word-break: break-word;
    line-height: 1.6;
    overflow-wrap: break-word;
    font-size: 12px;
    white-space: normal;
}.price_plan_grid_ui .rate_panel_ui {
    grid-template-columns: 1fr;
    gap: 30px;
    display: grid;
}.price_plan_grid_ui .learning_deals_ui {
    position: relative;
    color: #000000;
    border-radius: 8px;
    display: block;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}.price_plan_grid_ui .learning_deals_ui:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}.price_plan_grid_ui .study_offers_ui {
    min-height: 450px;
    overflow: hidden;
    background-color: #ffffff;
    position: relative;
    flex-direction: column;
    display: flex;
}.price_plan_grid_ui .fee_pricing_ui {
    flex-direction: column;
    overflow-wrap: break-word;
    z-index: 2;
    display: flex;
    flex: 1;
    word-break: break-word;
    position: relative;
    padding: 30px;
    white-space: normal;
}.price_plan_grid_ui .fee_pricing_ui h3 {
    transition: transform 0.3s ease;
    font-weight: 600;
    transform: translateX(0);
    position: relative;
    font-size: calc(24px + 2px);
    color: #000000;
    margin-bottom: 8px;
}.price_plan_grid_ui .learning_deals_ui:hover .fee_pricing_ui h3 {
    transform: translateX(5px);
}.price_plan_grid_ui .learn_fees_ui {
    font-size: calc(24px + 4px);
    position: relative;
    font-weight: 700;
    display: inline-block;
    color: rgb(145,177,158);
    margin: 15px 0;
}.price_plan_grid_ui .learn_fees_ui::before {
    background: rgb(145,177,158);
    left: -20px;
    top: 50%;
    transform: translateX(-10px);
    height: 2px;
    opacity: 0;
    width: 10px;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
}.price_plan_grid_ui .learning_deals_ui:hover .learn_fees_ui::before {
    transform: translateX(0);
    opacity: 1;
}.price_plan_grid_ui .fee_pricing_ui p {
    flex: 1;
    overflow-wrap: break-word;
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.6;
    white-space: normal;
    color: #000000;
    word-break: break-word;
}.price_plan_grid_ui .pic_stack_ui {
    transition: transform 0.6s ease;
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}.price_plan_grid_ui .pic_stack_ui::after {
    background: linear-gradient(0deg, rgba(rgb(145,177,158,0.5), 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    z-index: 1;
    top: 0;
    width: 100%;
}.price_plan_grid_ui .learning_deals_ui:hover .pic_stack_ui {
    transform: scale(1.05);
}.price_plan_grid_ui .learning_deals_ui:nth-child(odd) .study_offers_ui {
    background: linear-gradient(135deg, #ffffff 0%, rgba(245, 247, 252, 1) 100%);
}.price_plan_grid_ui .learning_deals_ui:nth-child(even) .study_offers_ui {
    background: linear-gradient(135deg, rgba(245, 247, 252, 1) 0%, #ffffff 100%);
}.price_plan_grid_ui .learning_deals_ui:nth-child(1) {
    animation: fadeInUp 0.6s 0.1s both;
}.price_plan_grid_ui .learning_deals_ui:nth-child(2) {
    animation: fadeInUp 0.6s 0.2s both;
}.price_plan_grid_ui .learning_deals_ui:nth-child(3) {
    animation: fadeInUp 0.6s 0.3s both;
}.price_plan_grid_ui .learning_deals_ui:nth-child(4) {
    animation: fadeInUp 0.6s 0.4s both;
}

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

@media (min-width: 768px) {.price_plan_grid_ui .rate_panel_ui {
    grid-template-columns: repeat(2, 1fr);
}.price_plan_grid_ui .payment_deals_ui {
    margin-bottom: 60px;
}.price_plan_grid_ui .fee_pricing_ui h3 {
    font-size: 24px;
}.price_plan_grid_ui .learn_fees_ui {
    font-size: calc(24px + 2px);
}.price_plan_grid_ui .fee_pricing_ui p {
    font-size: calc(12px - 1px);
}
}

@media (min-width: 992px) {.price_plan_grid_ui .basic_cost_ui {
    align-items: center;
    gap: 50px;
    flex-direction: row;
}.price_plan_grid_ui .payment_deals_ui {
    text-align: left;
    flex: 0 0 30%;
    margin-bottom: 0;
}.price_plan_grid_ui .payment_deals_ui h2::after {
    transform: none;
    left: 0;
}.price_plan_grid_ui .rate_panel_ui {
    grid-template-columns: repeat(2, 1fr);
    flex: 0 0 70%;
}.price_plan_grid_ui .fee_pricing_ui {
    padding: 35px;
}
}

@media (min-width: 1200px) {.price_plan_grid_ui .rate_panel_ui {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}.price_plan_grid_ui .study_offers_ui {
    min-height: 500px;
}.price_plan_grid_ui .pic_stack_ui {
    height: 220px;
}.price_plan_grid_ui .fee_pricing_ui h3 {
    font-size: calc(24px + 2px);
}.price_plan_grid_ui .learn_fees_ui {
    font-size: calc(24px + 6px);
}}.developer_experience_ui {
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgb(190,202,195) 0%, rgb(145,177,158,0.5) 35%, rgb(84,146,115,0.5) 100%);
}.developer_experience_ui::before {
    position: absolute;
    z-index: 0;
    content: "";
    opacity: 0.2;
    width: 200%;
    left: -10%;
    animation: rotate 20s linear infinite;
    height: 200%;
    top: -50%;
    background: conic-gradient(from 225deg at 50% 50%, transparent 0deg, rgb(145,177,158,0.5) 120deg, transparent 180deg, rgb(84,146,115,0.5) 260deg, transparent 360deg);
}@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.developer_experience_ui .container {
    max-width: 1200px;
    perspective: 1000px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}.developer_experience_ui .user_ratings_ui {
    padding: 2.5rem;
    background: #ffffff;
    gap: 1.5rem;
    grid-template-rows: auto auto;
    transform: rotateX(5deg) rotateY(-2deg);
    border-radius: 16px;
    transform-style: preserve-3d;
    grid-template-columns: minmax(220px, 1fr) 2fr;
    transition: transform 0.5s ease;
    box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.5),
    0 5px 15px rgb(145,177,158,0.5);
    backdrop-filter: blur(10px);
    grid-template-areas:
    "photo quote"
    "name quote";
    display: grid;
}.developer_experience_ui .user_ratings_ui:hover {
    transform: rotateX(0) rotateY(0);
}.developer_experience_ui .pic_stack_ui {
    transform: translateZ(20px);
    width: 100%;
    transition: transform 0.3s ease;
    border-radius: 16px;
    aspect-ratio: 1/1;
    grid-area: photo;
    box-shadow: 
    -5px 5px 0 rgb(84,146,115),
    -10px 10px 20px rgba(0, 0, 0, 0.5);
}.developer_experience_ui .user_ratings_ui:hover .pic_stack_ui {
    transform: translateZ(30px) scale(1.05);
}.developer_experience_ui .name {
    grid-area: name;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateZ(10px);
    display: block;
    padding-left: 1rem;
    font-size: 18px;
    position: relative;
    color: rgb(145,177,158);
}.developer_experience_ui .name + span {
    align-self: end;
    font-weight: 600;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    transform: translateZ(5px);
    font-size: 14px;
    padding-left: 1rem;
    grid-area: name;
    margin-top: 2rem;
}.developer_experience_ui .experience_path_ui {
    color: #000000;
    font-size: calc(14px * 1.1);
    background: linear-gradient(to right, #ffffff, rgb(190,202,195));
    border-radius: 16px;
    grid-area: quote;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.7;
    position: relative;
    transform: translateZ(15px);
    transition: transform 0.3s ease;
    padding: 2rem;
}.developer_experience_ui .experience_path_ui::before {
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0.3;
    border-radius: 16px;
    position: absolute;
    left: 0;
    mix-blend-mode: overlay;
    content: "";
    background: linear-gradient(45deg, rgb(145,177,158,0.5) 0%, transparent 40%, transparent 60%, rgb(84,146,115,0.5) 100%);
}.developer_experience_ui .user_ratings_ui:hover .experience_path_ui {
    transform: translateZ(25px);
}

@media (max-width: 992px) {.developer_experience_ui .user_ratings_ui {
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "pic_stack_ui"
      "name"
      "experience_path_ui";
    transform: none;
    grid-template-columns: 1fr;
}.developer_experience_ui .pic_stack_ui {
    margin: 0 auto;
    max-width: 200px;
}.developer_experience_ui .name,
  .developer_experience_ui .name + span {
    text-align: center;
    padding-left: 0;
}.developer_experience_ui .name + span {
    margin-top: 0.5rem;
}
}

@media (max-width: 576px) {.developer_experience_ui {
    padding: 4rem 1rem;
}.developer_experience_ui .user_ratings_ui {
    padding: 1.5rem;
}.developer_experience_ui .experience_path_ui {
    padding: 1.5rem;
}}.statistical_summary_ui {
    background: linear-gradient(135deg, rgb(84,146,115,0.5) 0%, rgb(145,177,158,0.5) 100%);
    overflow: hidden;
    padding: 80px 0;
    position: relative;
}.statistical_summary_ui::before {
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(84,146,115) 0%, transparent 5%),
        radial-gradient(circle at 80% 70%, rgb(145,177,158) 0%, transparent 4%),
        radial-gradient(circle at 40% 80%, rgb(84,146,115) 0%, transparent 6%);
    left: 0;
    content: "";
    opacity: 0.08;
    top: 0;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 0;
}.statistical_summary_ui::after {
    height: 45%;
    transform: rotate(-15deg);
    filter: blur(30px);
    z-index: 0;
    opacity: 0.2;
    content: "";
    background: linear-gradient(45deg, rgb(145,177,158,0.5) 0%, transparent 70%);
    width: 45%;
    top: -10%;
    position: absolute;
    right: -10%;
}.statistical_summary_ui h3 {
    text-align: center;
    opacity: 0;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s 0.2s forwards;
    color: #000000;
    position: relative;
    font-size: 33px;
    font-weight: 600;
    z-index: 2;
    transform: translateY(10px);
}.statistical_summary_ui h3::after {
    height: 3px;
    transform: translateX(-50%) scaleX(0);
    width: 80px;
    background: linear-gradient(90deg, rgb(84,146,115) 0%, rgb(145,177,158) 100%);
    left: 50%;
    animation: expandLine 1s 0.6s forwards cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    bottom: -12px;
    content: "";
}.statistical_summary_ui .container {
    z-index: 2;
    position: relative;
}.statistical_summary_ui ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 0;
    list-style-type: none;
    margin: 0;
}.statistical_summary_ui .statistics_extras_ui {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease;
    backdrop-filter: blur(10px);
    padding: 1.8rem;
    height: 100%;
    border-left: 3px solid rgb(84,146,115);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05), 
                0 3px 6px rgba(0, 0, 0, 0.02);
    animation: fadeInUp 0.8s forwards;
    transform: translateY(20px);
    background: rgba(255, 255, 255, 0.85);
    animation-delay: calc(0.15s * var(--i, 0));
    position: relative;
    opacity: 0;
}.statistical_summary_ui li:nth-child(1) {
    --i: 1;
}.statistical_summary_ui li:nth-child(2) {
    --i: 2;
}.statistical_summary_ui li:nth-child(3) {
    --i: 3;
}.statistical_summary_ui li:nth-child(4) {
    --i: 4;
}.statistical_summary_ui li:nth-child(5) {
    --i: 5;
}.statistical_summary_ui li:nth-child(6) {
    --i: 6;
}.statistical_summary_ui li:nth-child(7) {
    --i: 7;
}.statistical_summary_ui .statistics_extras_ui::before {
    z-index: -1;
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    content: "";
    top: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(rgb(145,177,158,0.5), 0.05) 100%);
}.statistical_summary_ui .statistics_extras_ui:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 
                0 5px 15px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px) scale(1.02);
}.statistical_summary_ui .statistics_extras_ui:hover::after {
    transform: scaleX(1);
    opacity: 1;
}.statistical_summary_ui .statistics_extras_ui::after {
    transform: scaleX(0.6);
    width: 100%;
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: absolute;
    background: linear-gradient(90deg, rgb(84,146,115) 0%, rgb(145,177,158) 100%);
    bottom: 0;
    transform-origin: left;
    height: 3px;
    left: 0;
    content: "";
    opacity: 0;
}.statistical_summary_ui .statistics_extras_ui span {
    margin-bottom: 1rem;
    padding-left: 1.2rem;
    transition: transform 0.3s ease;
    color: rgb(84,146,115);
    display: block;
    font-weight: 600;
    transform: translateX(0);
    font-size: calc(18px * 1.1);
    position: relative;
}.statistical_summary_ui .statistics_extras_ui:hover span {
    transform: translateX(5px);
}.statistical_summary_ui .statistics_extras_ui span::before {
    left: 0;
    border-radius: 50%;
    background: rgb(145,177,158);
    height: 6px;
    width: 6px;
    top: 50%;
    transition: all 0.3s ease;
    content: "";
    transform: translateY(-50%);
    position: absolute;
}.statistical_summary_ui .statistics_extras_ui:hover span::before {
    background: rgb(84,146,115);
    transform: translateY(-50%) scale(1.3);
}.statistical_summary_ui .statistics_extras_ui p {
    position: relative;
    color: rgb(145,177,158);
    margin: 0;
    font-weight: 700;
    display: inline-block;
    font-size: calc(41px * 1.2);
    overflow: hidden;
}.statistical_summary_ui .statistics_extras_ui p::after {
    position: absolute;
    background: linear-gradient(90deg, rgb(84,146,115,0.5) 0%, transparent 100%);
    bottom: 5px;
    transform: scaleX(0);
    height: 4px;
    transform-origin: left;
    content: "";
    width: 100%;
    opacity: 0.3;
    transition: transform 0.5s ease;
    left: 0;
}.statistical_summary_ui .statistics_extras_ui:hover p::after {
    transform: scaleX(1);
}

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

@keyframes expandLine {
    from {
        transform: translateX(-50%) scaleX(0);
    }
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

@media screen and (max-width: 992px) {.statistical_summary_ui {
    padding: 60px 0;
}.statistical_summary_ui h3 {
    font-size: calc(33px * 0.9);
    margin-bottom: 2.5rem;
}.statistical_summary_ui ul {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}.statistical_summary_ui .statistics_extras_ui {
    padding: 1.5rem;
}.statistical_summary_ui .statistics_extras_ui p {
    font-size: calc(41px * 1);
}
}

@media screen and (max-width: 768px) {.statistical_summary_ui {
    padding: 50px 0;
}.statistical_summary_ui h3 {
    font-size: calc(33px * 0.85);
    margin-bottom: 2rem;
}.statistical_summary_ui ul {
    gap: 15px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}.statistical_summary_ui .statistics_extras_ui span {
    font-size: 18px;
}.statistical_summary_ui .statistics_extras_ui p {
    font-size: calc(33px * 1.2);
}
}

@media screen and (max-width: 576px) {.statistical_summary_ui {
    padding: 40px 0;
}.statistical_summary_ui h3 {
    font-size: calc(33px * 0.8);
}.statistical_summary_ui ul {
    gap: 15px;
    grid-template-columns: 1fr;
}.statistical_summary_ui .statistics_extras_ui {
    padding: 1.2rem;
}.statistical_summary_ui .statistics_extras_ui p {
    font-size: calc(33px * 1.1);
}.statistical_summary_ui h3::after {
    width: 60px;
}
}