﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
header,footer {
    width: 100%;
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Ubuntu, sans-serif;
    color: #000000;
}
.itKwrapper-template {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
svg {
    width: 30px;
    height: 30px;
}
.IzHhead_guide {
    flex: 1 0 auto;
}
section {
    background-color: rgb(194,193,182);
}
.container {
    margin: auto;
    width: 1176px;
    max-width: 100%;
}

.footer {
    flex: 0 0 auto;
}
a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {
        .container {
            width: 100%;
            padding: 0 20px;
    }
}
@media only screen and (max-width: 800px)  {
        .container {
            padding: 0 12px;
    }
}.Pzfwho_we_are {
    position: relative;
    padding: 120px 0;
    background: rgb(194,193,182);
    overflow: hidden;
    z-index: 1;
}

.Pzfwho_we_are::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgb(165,160,164,0.5) 10px,
            rgb(165,160,164,0.5) 11px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgb(122,115,125,0.5) 10px,
            rgb(122,115,125,0.5) 11px
        );
    opacity: 0.05;
    z-index: -1;
}

.Pzfwho_we_are .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.Pzfwho_we_are h2 {
    font-size: 31px;
    color: #000000;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 20px;
}

.Pzfwho_we_are h2::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 5px;
    background: rgb(165,160,164);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.Pzfwho_we_are h2::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgb(122,115,125);
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%) rotate(45deg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) rotate(45deg) translateY(0);
    }
    50% {
        transform: translateX(-50%) rotate(45deg) translateY(-5px);
    }
}

.Pzfwho_we_are .wbFfast_learning {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.Pzfwho_we_are .qaHskill_boost {
    position: relative;
    background: #ffffff;
    padding: 40px;
    border-radius: 27px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid transparent;
    overflow: hidden;
}

.Pzfwho_we_are .qaHskill_boost:nth-child(1) {
    border-top-color: rgb(165,160,164);
}

.Pzfwho_we_are .qaHskill_boost:nth-child(2) {
    border-top-color: rgb(122,115,125);
}

.Pzfwho_we_are .qaHskill_boost::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgb(165,160,164,0.5), transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.1;
    transition: all 0.5s ease;
}

.Pzfwho_we_are .qaHskill_boost:nth-child(2)::before {
    background: linear-gradient(45deg, rgb(122,115,125,0.5), transparent);
    top: -100px;
    left: -100px;
}

.Pzfwho_we_are .qaHskill_boost:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.Pzfwho_we_are .qaHskill_boost:hover::before {
    transform: scale(1.5);
}

.Pzfwho_we_are .qaHskill_boost::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
    bottom: 0;
    left: 0;
    opacity: 0.1;
}

.Pzfwho_we_are .qaHskill_boost h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.Pzfwho_we_are .qaHskill_boost:nth-child(1) h3 {
    color: rgb(165,160,164);
}

.Pzfwho_we_are .qaHskill_boost:nth-child(2) h3 {
    color: rgb(122,115,125);
}

.Pzfwho_we_are .qaHskill_boost h3::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: -5px;
    left: 0;
    background: currentColor;
    transition: width 0.4s ease;
}

.Pzfwho_we_are .qaHskill_boost:hover h3::after {
    width: 100%;
}

.Pzfwho_we_are .qaHskill_boost p {
    font-size: 15px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.Pzfwho_we_are::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(165,160,164,0.5) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgb(122,115,125,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
    z-index: -1;
    animation: moveDots 100s linear infinite;
}

@keyframes moveDots {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 500px;
    }
}

.Pzfwho_we_are .container::before,
.Pzfwho_we_are .container::after {
    content: "";
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, rgb(165,160,164,0.5), transparent);
    top: 0;
    bottom: 0;
    z-index: -1;
    animation: scanline 3s linear infinite;
}

.Pzfwho_we_are .container::before {
    left: 10%;
    height: 50%;
    animation-delay: 1s;
}

.Pzfwho_we_are .container::after {
    right: 10%;
    height: 70%;
    background: linear-gradient(to bottom, rgb(122,115,125,0.5), transparent);
}

@keyframes scanline {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

.Pzfwho_we_are .qaHskill_boost:nth-child(1) {
    animation: fadeInUp 0.7s ease-out forwards;
}

.Pzfwho_we_are .qaHskill_boost:nth-child(2) {
    animation: fadeInUp 0.7s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .Pzfwho_we_are {
        padding: 90px 0;
    }
    
    .Pzfwho_we_are h2 {
        margin-bottom: 50px;
    }
    
    .Pzfwho_we_are .qaHskill_boost {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .Pzfwho_we_are {
        padding: 70px 0;
    }
    
    .Pzfwho_we_are h2 {
        font-size: calc(31px * 0.9);
        margin-bottom: 40px;
    }
    
    .Pzfwho_we_are .qaHskill_boost {
        padding: 25px;
    }
    
    .Pzfwho_we_are .qaHskill_boost h3 {
        font-size: calc(24px * 0.9);
    }
}

@media (max-width: 576px) {
    .Pzfwho_we_are {
        padding: 50px 0;
    }
    
    .Pzfwho_we_are h2 {
        font-size: calc(31px * 0.8);
        margin-bottom: 35px;
        letter-spacing: 1px;
    }
    
    .Pzfwho_we_are h2::before {
        width: 40px;
        height: 4px;
    }
    
    .Pzfwho_we_are .qaHskill_boost {
        padding: 20px;
    }
    
    .Pzfwho_we_are .qaHskill_boost p {
        font-size: calc(15px * 0.95);
        line-height: 1.6;
    }

    .Pzfwho_we_are .container::before,
    .Pzfwho_we_are .container::after {
        display: none;
    }
}.xjJtySection {
    background: linear-gradient(135deg, rgb(165,160,164), rgb(122,115,125));
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #ffffff;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.5);
}
.xjJtySection .container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    width: 100%;
    text-align: center;
    color: #000000;
}
.xjJtySection h2 {
    font-family: Ubuntu, sans-serif;
    font-size: 31px;
    margin-bottom: 20px;
    font-weight: 700;
    color: rgb(165,160,164);
}
.xjJtySection p {
    font-family: Ubuntu, sans-serif;
    font-size: 13px;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
}
.xjJtySection .UGArequest_panel {
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgb(165,160,164);
    border: 2px solid rgb(165,160,164);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: inset 0 0 0 0 rgb(122,115,125);
    transition: box-shadow 0.2s ease-in-out;
}
.xjJtySection .UGArequest_panel:hover {
    box-shadow: inset 0 -4px 0 0 rgb(122,115,125);
}
@media only screen and (max-width: 800px) {
    .xjJtySection {
        padding: 40px 10px;
    }
    .xjJtySection .container {
        padding: 20px;
    }
    .xjJtySection h2 {
        font-size: 19px;
    }
    .xjJtySection p {
        font-size: 13px;
    }
}.TDHuser_feedback {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgb(165,160,164), rgb(122,115,125));
    position: relative;
    overflow: hidden;
}

.TDHuser_feedback::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(122,115,125,0.5), rgb(165,160,164,0.5));
    transform: translateX(-50%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.TDHuser_feedback h2 {
    color: rgb(165,160,164);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.TDHuser_feedback .eIcquick_mastery {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.TDHuser_feedback .XLnreview_testimonials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.TDHuser_feedback .FEoclient_story {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.TDHuser_feedback .FEoclient_story::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(255, 0, 255, 0.2));
    transform: translate(-50%, -50%);
    z-index: 0;
    mix-blend-mode: overlay;
}

.TDHuser_feedback .FEoclient_story:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.TDHuser_feedback .LBYheader_image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgb(165,160,164);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 15px rgb(165,160,164);
    transition: box-shadow 0.3s ease;
}

.TDHuser_feedback .LBYheader_image:hover {
    box-shadow: 0 0 25px rgb(165,160,164);
}

.TDHuser_feedback .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.TDHuser_feedback .FEoclient_story span {
    font-size: 18px;
    font-weight: 600;
    color: rgb(122,115,125);
    text-transform: uppercase;
}

.TDHuser_feedback .FEoclient_story p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #ffffff;
}
@media only screen and (max-width: 1200px) {
    .TDHuser_feedback .XLnreview_testimonials {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 800px) {
    .TDHuser_feedback {
        padding: 50px 10px;
    }

    .TDHuser_feedback h2 {
        font-size: 38px;
    }

    .TDHuser_feedback .XLnreview_testimonials {
        grid-template-columns: 1fr;
    }

    .TDHuser_feedback .FEoclient_story {
        padding: 30px 15px;
    }

    .TDHuser_feedback .LBYheader_image {
        width: 100px;
        height: 100px;
        border-width: 4px;
    }
}

.itKwrapper-template .TDHuser_feedback .FEoclient_story {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 18px;
    padding: 40px 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.itKwrapper-template .TDHuser_feedback .LBYheader_image {
    width: 130px;
    height: 130px;
    margin-bottom: 30px;
    border: 6px solid rgb(122,115,125);
    box-shadow: 0 0 20px rgb(122,115,125);
}

.itKwrapper-template .TDHuser_feedback .LBYheader_image::before {
    content: "";
    position: absolute;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    top: -20px;
    left: -20px;
    border: 8px solid rgb(165,160,164);
    border-radius: 50%;
    z-index: 1;
}

.itKwrapper-template .TDHuser_feedback .FEoclient_story span {
    font-size: 18px;
    font-weight: 700;
    color: rgb(165,160,164);
    margin-top: 15px;
}

.itKwrapper-template .TDHuser_feedback .FEoclient_story p {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
}

.itKwrapper-template .TDHuser_feedback .eIcquick_mastery h2 {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}.uGgtest_drive {
    padding-bottom: 80px;
    padding-top: 80px;
}

.uGgtest_drive h2 {
    color: rgb(122,115,125);
}

.uGgtest_drive .UGArequest_panel {
    background: rgb(122,115,125);
    color: #ffffff;
    white-space: normal;
    text-align: center;
}

.uGgtest_drive .UGArequest_panel:hover {
    background: rgb(165,160,164);
}

.uGgtest_drive .eIcquick_mastery {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.uGgtest_drive h2 {
    font-size: 38px;
    font-weight: 600;
    margin-right: 24px;
    width: 66%;
    text-align: center;
}

.uGgtest_drive .UGArequest_panel {
    padding: 15px 25px;
    border-radius: 100px;
    font-size: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media only screen and (max-width: 600px) {
    .uGgtest_drive .eIcquick_mastery {
        flex-direction: column;
    }

    .itKwrapper-template section.uGgtest_drive h2 {
        font-size: 26px;
    }

    .uGgtest_drive h2 {
        margin: 0;
        margin-bottom: 24px;
        width: 90%;
    }

    .uGgtest_drive .UGArequest_panel {
        font-size: 24px;
    }

    .uGgtest_drive {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.itKwrapper-template .uGgtest_drive {
    padding: 100px 0;
}

.itKwrapper-template .uGgtest_drive .eIcquick_mastery {
    flex-direction: column;
    position: relative;
}

.itKwrapper-template .uGgtest_drive .eIcquick_mastery::before {
    content: "";
    height: 4px;
    width: 100px;
    border: none;
    margin: 0 auto 60px;
    background: rgb(165,160,164);
}

.itKwrapper-template .uGgtest_drive h2 {
    margin: 0;
    margin-bottom: 40px;
    font-size: 42px;
    width: 100%;
}

.itKwrapper-template .uGgtest_drive .UGArequest_panel {
    padding: 15px 25px;
    border-radius: 0;
    background: rgb(122,115,125);
    font-size: 16px;
}

@media only screen and (max-width: 800px) {
    .itKwrapper-template .uGgtest_drive {
        padding: 60px 0;
    }

    .itKwrapper-template .uGgtest_drive h2 {
        font-size: 30px;
    }
}header {
    padding-bottom: 10px;
    background: linear-gradient(135deg, rgb(165,160,164), rgb(122,115,125));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.uIKhead_skill {
    border-top: 20px solid rgb(165,160,164);
    border-bottom: 2px solid rgb(165,160,164);
    background: #ffffff;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}
.uIKhead_skill .wMzheader_lead {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.uIKhead_skill .wMzheader_lead .ZfEtop_sitewrap {
    margin: 10px 0;
    position: relative;
    z-index: 1;
}
.uIKhead_skill .wMzheader_lead .ZfEtop_sitewrap svg, .uIKhead_skill .wMzheader_lead .ZfEtop_sitewrap img {
    width: 100px;
    height: 100px;
    fill: rgb(165,160,164);
    transition: transform 0.3s ease;
}
.uIKhead_skill .wMzheader_lead .ZfEtop_sitewrap:hover svg, .uIKhead_skill .wMzheader_lead .ZfEtop_sitewrap:hover img {
    transform: scale(1.1);
}
.uIKhead_skill .hUjhead_sitebar {
    width: 50%;
    font-size: 20px;
    text-align: center;
    color: rgb(122,115,125);
    font-weight: 600;
    margin-bottom: 20px;
}
.uIKhead_skill .eLbmain_header {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-bottom: -2px;
    margin-top: 20px;
    position: relative;
    z-index: 11;
}
.uIKhead_skill .eLbmain_header a {
    border: 2px solid transparent;
    border-bottom: 2px solid rgb(165,160,164);
    padding: 10px 16px;
    color: rgb(122,115,125);
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}
.uIKhead_skill .eLbmain_header a:hover {
    background: rgb(165,160,164,0.5);
    color: #ffffff;
    border-radius: 10px;
}
@media only screen and (max-width: 800px) {
    .uIKhead_skill .hUjhead_sitebar {
        width: 100%;
    }
    .uIKhead_skill .eLbmain_header {
        flex-direction: column;
    }
    .uIKhead_skill .eLbmain_header a:first-child:after {
        display: none;
    }
    .uIKhead_skill .eLbmain_header a:first-child {
        border: 2px solid transparent;
        border-bottom: 2px solid rgb(165,160,164);
    }
}.sUxprivacy_frame {
    background: linear-gradient(to bottom right, rgb(165,160,164,0.5), rgb(122,115,125,0.5));
    background-size: cover;
    background-position: center;
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    padding: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.sUxprivacy_frame h1,
.sUxprivacy_frame h2 {
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 15px;
}
.sUxprivacy_frame h1 {
    font-size: 41px;
    font-weight: 700;
    color: #ffffff;
}
.sUxprivacy_frame h2 {
    font-size: 37px;
    font-weight: 600;
    color: #ffffff;
}
.sUxprivacy_frame ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}
.sUxprivacy_frame ul li {
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    position: relative;
    padding-left: 30px;
}
.sUxprivacy_frame ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 21px;
    color: rgb(122,115,125);
}
.sUxprivacy_frame p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: #ffffff;
    margin: 20px 0;
}
.sUxprivacy_frame div {
    margin: 20px 0;
}
@media only screen and (max-width: 800px) {
    .sUxprivacy_frame {
        padding: 30px;
    }
    .sUxprivacy_frame h1 {
        font-size: calc(21px - 8px);
    }
    .sUxprivacy_frame h2 {
        font-size: calc(21px - 8px);
    }
    .sUxprivacy_frame ul li {
        font-size: calc(13px - 2px);
    }
    .sUxprivacy_frame p {
        font-size: calc(13px - 2px);
    }
}.tlGcourse_overview {
    position: relative;
    overflow: hidden;
    background: rgb(194,193,182);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.tlGcourse_overview .HLopro_skills {
    position: absolute;
    top: 50%;
    right: 0;
    width: 45%;
    height: 70vh;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 1;
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.08);
}

.tlGcourse_overview .HLopro_skills::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, rgb(194,193,182), transparent);
    z-index: 2;
    pointer-events: none;
}

.tlGcourse_overview .awelesson_plan {
    width: 100%;
    height: 500%;
    display: flex;
    flex-direction: column;
    animation: carousel-vertical 25s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.tlGcourse_overview .HLopro_skills:hover .awelesson_plan {
    animation-play-state: paused;
}

.tlGcourse_overview .hwbeducation_plan {
    width: 100%;
    height: 20%;
    flex-shrink: 0;
    position: relative;
}

.tlGcourse_overview .hwbeducation_plan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.05) contrast(1.08);
    transition: transform 0.7s ease;
}

.tlGcourse_overview .hwbeducation_plan:hover img {
    transform: scale(1.05);
}

.tlGcourse_overview .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.tlGcourse_overview .eIcquick_mastery {
    width: 60%;
    padding-right: 10%;
}

.tlGcourse_overview .VkClearn_now {
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 29px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    position: relative;
}

.tlGcourse_overview .VkClearn_now::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    border: 1px solid rgb(165,160,164,0.5);
    border-radius: 10px;
    opacity: 0.3;
    pointer-events: none;
}

.tlGcourse_overview .VkClearn_now h3 {
    color: rgb(165,160,164);
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.tlGcourse_overview .VkClearn_now p {
    color: #000000;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.tlGcourse_overview .VkClearn_now .UGArequest_panel {
    display: inline-block;
    background: rgb(165,160,164);
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    padding: 0.9rem 2.25rem;
    border-radius: 29px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tlGcourse_overview .VkClearn_now .UGArequest_panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.tlGcourse_overview .VkClearn_now .UGArequest_panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tlGcourse_overview .VkClearn_now .UGArequest_panel:hover::before {
    transform: translateX(100%);
}

@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 (min-width: 768px) and (max-width: 991px) {
    .tlGcourse_overview {
        padding: 3rem 2rem;
    }
    
    .tlGcourse_overview .HLopro_skills {
        width: 40%;
        height: 60vh;
        border-top-left-radius: 100px;
        border-bottom-left-radius: 100px;
    }
    
    .tlGcourse_overview .eIcquick_mastery {
        width: 65%;
        padding-right: 5%;
    }
    
    .tlGcourse_overview .VkClearn_now {
        padding: 2.5rem;
    }
    
    .tlGcourse_overview .VkClearn_now::before {
        top: 1rem;
        left: 1rem;
        width: calc(100% - 2rem);
        height: calc(100% - 2rem);
    }
    
    .tlGcourse_overview .VkClearn_now h3 {
        font-size: calc(29px * 0.9);
    }

}

@media (max-width: 767px) {
    .tlGcourse_overview {
        min-height: auto;
        padding: 3rem 1.5rem;
        display: block;
    }
    
    .tlGcourse_overview .HLopro_skills {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 40vh;
        transform: none;
        margin-bottom: 2rem;
        border-radius: 0;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }
    
    .tlGcourse_overview .HLopro_skills::before {
        width: 100%;
        height: 100px;
        top: auto;
        bottom: 0;
        background: linear-gradient(0deg, rgb(194,193,182), transparent);
    }
    
    .tlGcourse_overview .awelesson_plan {
        flex-direction: row;
        width: 500%;
        height: 100%;
        animation: carousel-horizontal-mobile 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }
    
    .tlGcourse_overview .hwbeducation_plan {
        width: 20%;
        height: 100%;
    }
    
    .tlGcourse_overview .container {
        width: 100%;
        justify-content: center;
    }
    
    .tlGcourse_overview .eIcquick_mastery {
        width: 100%;
        max-width: 500px;
        padding-right: 0;
    }
    
    .tlGcourse_overview .VkClearn_now {
        padding: 2rem 1.5rem;
    }
    
    .tlGcourse_overview .VkClearn_now::before {
        top: 0.75rem;
        left: 0.75rem;
        width: calc(100% - 1.5rem);
        height: calc(100% - 1.5rem);
    }
    
    .tlGcourse_overview .VkClearn_now h3 {
        font-size: 21px;
    }

    .tlGcourse_overview .VkClearn_now p {
        font-size: calc(14px * 0.9);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .tlGcourse_overview .VkClearn_now .UGArequest_panel {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
    }
    
    @keyframes carousel-horizontal-mobile {
        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);
        }
    }
}footer {
    background: rgb(122,115,125);
    color: #ffffff;
}

footer .HqEmodule_end {
    background: rgb(165,160,164);
}

footer .ZfEtop_sitewrap svg, footer .ZfEtop_sitewrap svg path {
    fill: rgb(165,160,164);
}

footer h5 {
    color: rgb(165,160,164);
}

footer .rdqsite_header a {
    color: #ffffff;
}

footer .ypaconduct_code {
    color: #ffffff;
}

footer .ypaconduct_code a {
    color: #ffffff;
    text-decoration: underline;
}

footer .Kfthelp_grid div svg, footer .Kfthelp_grid div svg path {
    fill: #ffffff;
}

footer .Kfthelp_grid div span {
    color: #ffffff;
}

footer .footer {
    padding-top: 70px;
    padding-bottom: 70px;
}

footer .HqEmodule_end {
    padding-top: 25px;
    padding-bottom: 25px;
}

footer .uATcampus_links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer .ZfEtop_sitewrap svg, footer .ZfEtop_sitewrap img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
}

footer h5 {
    font-size: 23px;
    margin-bottom: 16px;

}

footer .Kfthelp_grid {
    display: flex;
    flex-direction: column;
}

footer .Kfthelp_grid div {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    justify-content: flex-start;
}

footer .Kfthelp_grid div img, footer .Kfthelp_grid div svg {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

footer .tdCmain_page {
    display: flex;
    flex-direction: column;
}

footer .rdqsite_header a {
    text-decoration: none;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 5px;
}

footer .HqEmodule_end {
    font-size: 15px;
}

@media only screen and (max-width: 1200px) {
    footer .uATcampus_links {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 800px) {
    footer .rdqsite_header, footer .tdCmain_page, footer .uATcampus_links {
        flex-direction: column;
    }

    footer .Kfthelp_grid {
        margin-top: 10px;
    }

    footer h5 {
        margin-top: 5px;
    }

}

.itKwrapper-template footer .footer {
    padding: 0;
}

.itKwrapper-template footer .uATcampus_links {
    flex-direction: row-reverse;
    align-items: center;
    min-height: 100px;
}

.itKwrapper-template footer .tdCmain_page {
    flex-direction: column;
}

.itKwrapper-template footer .rdqsite_header a {
    margin: 0;
    padding: 5px 10px;
    font-size: 20px;
    color: #ffffff;
}

.itKwrapper-template footer .HqEmodule_end {
    background: rgb(165,160,164,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}

.itKwrapper-template footer .ypaconduct_code {
    text-align: center;
}

.itKwrapper-template footer .ZfEtop_sitewrap {
    width: calc(50% + 45px);
}

@media only screen and (max-width: 1200px) {
    .itKwrapper-template footer .ZfEtop_sitewrap {
        width: auto;
    }
}

@media only screen and (max-width: 800px) {
    .itKwrapper-template footer .tdCmain_page {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .itKwrapper-template footer .rdqsite_header a {
        padding-left: 0;
        margin-bottom: 5px;
        font-size: 18px
    }

    .itKwrapper-template footer .uATcampus_links {
        padding: 20px 10px;
    }

    .itKwrapper-template footer .ypaconduct_code {
        text-align: center;
    }

    .itKwrapper-template footer .ypaconduct_code a {
        display: block;
        margin-top: 5px;
    }
}
.PyXget_in_touch {
  background: rgb(122,115,125);
  color: #ffffff;
  padding: 4rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  font-family: Ubuntu, sans-serif;
  position: relative;
  overflow: hidden;
}

.PyXget_in_touch::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgb(165,160,164), transparent);
  transform: rotate(45deg);
  opacity: 0.1;
  pointer-events: none;
}

.PyXget_in_touch h3 {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: rgb(165,160,164);
}

.PyXget_in_touch .etAsupport_card {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.PyXget_in_touch .dKMhelp_card {
  font-size: 15px;
  margin-bottom: 2rem;
  text-align: center;
}

.PyXget_in_touch form input,
.PyXget_in_touch form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgb(165,160,164,0.5);
  border-radius: 10px;
  background-color: transparent;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.PyXget_in_touch form input:focus,
.PyXget_in_touch form textarea:focus {
  border-color: rgb(165,160,164);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgb(165,160,164,0.5);
}

.PyXget_in_touch form .UGArequest_panel {
  background-color: rgb(165,160,164);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.PyXget_in_touch form .UGArequest_panel:hover {
  background-color: rgb(122,115,125);
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgb(122,115,125,0.5);
}

.PyXget_in_touch .tgorequest_query {
  display: flex;
  gap: 1rem;
}
.itKwrapper-template .PyXget_in_touch form input::placeholder,
.itKwrapper-template .PyXget_in_touch form textarea::placeholder {
  color: #ffffff;
  opacity: 0.8;
}
.PyXget_in_touch .xdXinquiry_feedback {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 15px;
  color: #ffffff;
}

.PyXget_in_touch .xdXinquiry_feedback input[type=checkbox] {
  margin-right: 0.5rem;
  cursor: pointer;
  width: auto;
  margin-bottom: 0;
}

.PyXget_in_touch .xdXinquiry_feedback label {
  display: flex;
  align-items: center;
}

.PyXget_in_touch .xdXinquiry_feedback a {
  color: rgb(165,160,164);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.PyXget_in_touch .xdXinquiry_feedback a:hover {
  color: rgb(122,115,125);
}

@media only screen and (max-width: 600px) {
  .PyXget_in_touch {
    padding: 3rem 1rem;
  }

  .PyXget_in_touch h3 {
    font-size: 31px;
  }

  .PyXget_in_touch .etAsupport_card {
    padding: 2rem;
  }

  .PyXget_in_touch form input,
  .PyXget_in_touch form textarea {
    padding: 0.75rem;
    font-size: 15px;
  }

  .PyXget_in_touch form .UGArequest_panel {
    padding: 0.75rem 1.5rem;
    font-size: 18px;
  }
}

@media only screen and (max-width: 800px) {
  .PyXget_in_touch .etAsupport_card {
    padding: 2.5rem;
  }

  .PyXget_in_touch h3 {
    font-size: 31px;
  }

  .PyXget_in_touch .dKMhelp_card {
    font-size: 15px;
  }
}.eOTtitle_greeting {
  position: relative;
  overflow: hidden;
}

.eOTtitle_greeting .eIcquick_mastery {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.eOTtitle_greeting .LBYheader_image {
  position: relative;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  transition: clip-path 0.5s ease;
}

.eOTtitle_greeting .LBYheader_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(165,160,164,0.5), rgb(122,115,125,0.5));
  mix-blend-mode: overlay;
}

.eOTtitle_greeting .ACltext_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  background: rgb(194,193,182);
  position: relative;
}

.eOTtitle_greeting .ACltext_area::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgb(122,115,125,0.5) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 0;
}

.eOTtitle_greeting .vMCedu_title {
  position: relative;
  z-index: 1;
}

.eOTtitle_greeting .vMCedu_title svg {
  width: 100px;
  height: 100px;
  fill: rgb(165,160,164);
  filter: drop-shadow(0 0 10px rgb(165,160,164,0.5));
}

.eOTtitle_greeting .vMCedu_title h2 {
  font-size: 38px;
  font-weight: 700;
  background: linear-gradient(45deg, rgb(165,160,164), rgb(122,115,125));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 1rem 0;
}

.eOTtitle_greeting .vMCedu_title span {
  font-size: 24px;
  color: #000000;
  line-height: 1.6;
  max-width: 80%;
  display: block;
}

.eOTtitle_greeting .ACltext_area .UGArequest_panel {
  margin-top: 2rem;
  padding: 1rem 2rem;
  width: fit-content;
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  background: rgb(165,160,164);
  border: none;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

.eOTtitle_greeting .ACltext_area .UGArequest_panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.4s ease;
}

.eOTtitle_greeting .ACltext_area .UGArequest_panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.eOTtitle_greeting .ACltext_area .UGArequest_panel:hover::before {
  left: 100%;
}

@media only screen and (max-width: 1200px) {
  .eOTtitle_greeting .eIcquick_mastery {
    grid-template-columns: 1fr;
  }
  
  .eOTtitle_greeting .LBYheader_image {
    height: 50vh;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
  }
  
  .eOTtitle_greeting .ACltext_area {
    padding: 3rem;
  }
}

@media only screen and (max-width: 800px) {
  .eOTtitle_greeting .vMCedu_title h2 {
    font-size: 29px;
  }
  
  .eOTtitle_greeting .vMCedu_title span {
    font-size: 16px;
    max-width: 100%;
  }
  
  .eOTtitle_greeting .ACltext_area .UGArequest_panel {
    align-self: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .eOTtitle_greeting .vMCedu_title svg,
  .eOTtitle_greeting .ACltext_area .UGArequest_panel::before {
    animation: none;
    transition: none;
  }
}.Paxadvantages_outline {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(165,160,164), rgb(122,115,125));
    color: #ffffff;
    font-family: Ubuntu, sans-serif;
    overflow: hidden;
}
.Paxadvantages_outline .DLtstudy_edges {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgb(194,193,182);
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.Paxadvantages_outline .DLtstudy_edges h2 {
    font-size: 35px;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(45deg, rgb(165,160,164), rgb(122,115,125));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 10px 20px;
}
.Paxadvantages_outline .JKDknowledge_upgrade {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.Paxadvantages_outline .JKDknowledge_upgrade .LBYheader_image {
    width: 100%;
    height: 300px;
    max-width: 600px;
    background: rgb(194,193,182);
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 2px solid rgb(165,160,164);
    border-radius: 15px;
}
.Paxadvantages_outline .PmJfast_edge {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    background: rgb(194,193,182);
    border: 2px solid rgb(122,115,125);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
}
.Paxadvantages_outline .PmJfast_edge .AkVfast_upgrade {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    width: calc(100% / 3);
    cursor: pointer;
    transition: background 0.3s ease;
    border-right: 1px solid rgb(165,160,164);
}
.Paxadvantages_outline .PmJfast_edge .AkVfast_upgrade:last-child {
    border-right: none;
}
.Paxadvantages_outline .PmJfast_edge .AkVfast_upgrade:hover {
    background: rgb(165,160,164,0.5);
}
.Paxadvantages_outline .PmJfast_edge .AkVfast_upgrade svg,
.Paxadvantages_outline .PmJfast_edge .AkVfast_upgrade svg path {
    width: 40px;
    height: 40px;
    fill: rgb(165,160,164);
    margin-bottom: 10px;
}
.Paxadvantages_outline .PmJfast_edge .AkVfast_upgrade h4 {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-align: center;
}
@media only screen and (max-width: 1024px) {
    .Paxadvantages_outline {
        padding: 40px 10px;
    }
    .Paxadvantages_outline .DLtstudy_edges h2 {
        font-size: 19px;
    }
    .Paxadvantages_outline .JKDknowledge_upgrade .LBYheader_image {
        width: 100%;
        height: 200px;
    }
    .Paxadvantages_outline .PmJfast_edge {
        flex-direction: column;
    }
    .Paxadvantages_outline .PmJfast_edge .AkVfast_upgrade {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgb(165,160,164);
    }
    .Paxadvantages_outline .PmJfast_edge .AkVfast_upgrade:last-child {
        border-bottom: none;
    }
}
.wQXstudy_process {
    position: relative;
    background: linear-gradient(
        135deg,
        rgb(165,160,164,0.5) 0%,
        rgb(194,193,182) 50%,
        rgb(122,115,125,0.5) 100%
    );
    padding: 180px 0;
    overflow: hidden;
}

.wQXstudy_process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(
            circle at 20% 20%,
            rgb(165,160,164,0.5) 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgb(122,115,125,0.5) 0%,
            transparent 30%
        );
    filter: blur(60px);
    opacity: 0.6;
}

.wQXstudy_process::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(0deg, transparent 95%, rgb(122,115,125,0.5) 100%),
        linear-gradient(90deg, transparent 95%, rgb(165,160,164,0.5) 100%);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: hologramGrid 15s linear infinite;
}

@keyframes hologramGrid {
    0% {
        background-position: 0 0;
        opacity: 0.1;
    }
    50% {
        background-position: 10px 10px;
        opacity: 0.3;
    }
    100% {
        background-position: 20px 20px;
        opacity: 0.1;
    }
}

.wQXstudy_process .Tvrstep_forward {
    position: relative;
    z-index: 2;
}

.wQXstudy_process .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.wQXstudy_process .LBYheader_image {
    width: 90%;
    height: 500px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transform: perspective(1000px) rotateX(10deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.wQXstudy_process .LBYheader_image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgb(165,160,164,0.5) 100%
    );
    mix-blend-mode: screen;
}

.wQXstudy_process .LBYheader_image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgb(165,160,164,0.5);
    backdrop-filter: blur(5px);
    animation: borderPulse 4s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        border-color: rgb(165,160,164,0.5);
    }
    50% {
        border-color: rgb(122,115,125,0.5);
    }
}

.wQXstudy_process .eIcquick_mastery {
    width: 80%;
    margin-top: -100px;
    position: relative;
    z-index: 3;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 2px;
}

.wQXstudy_process .eIcquick_mastery::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        45deg,
        rgb(165,160,164),
        rgb(122,115,125)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.wQXstudy_process .eIcquick_mastery h3 {
    color: #000000;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    padding: 30px 40px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgb(122,115,125,0.5);
}

.wQXstudy_process .eIcquick_mastery h3::before {
    content: '';
    width: 8px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        rgb(165,160,164),
        rgb(122,115,125)
    );
    border-radius: 10px;
}

.wQXstudy_process .eIcquick_mastery span {
    color: #000000;
    font-size: 13px;
    line-height: 1.8;
    padding: 40px;
    position: relative;
    display: block;
}

.wQXstudy_process .eIcquick_mastery span::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 40px;
    width: 60px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgb(122,115,125)
    );
}

.wQXstudy_process .eIcquick_mastery span::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 40px;
    width: 60px;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgb(165,160,164),
        transparent
    );
}

@media (max-width: 1200px) {
    .wQXstudy_process {
        padding: 140px 0;
    }

    .wQXstudy_process .LBYheader_image {
        width: 95%;
        height: 450px;
    }

    .wQXstudy_process .eIcquick_mastery {
        width: 85%;
    }
}

@media (max-width: 768px) {
    .wQXstudy_process {
        padding: 100px 0;
    }

    .wQXstudy_process .LBYheader_image {
        height: 400px;
        transform: perspective(1000px) rotateX(5deg);
    }

    .wQXstudy_process .eIcquick_mastery {
        width: 90%;
        margin-top: -70px;
    }

    .wQXstudy_process .eIcquick_mastery h3 {
        font-size: calc(32px * 0.9);
        padding: 25px 30px;
    }

    .wQXstudy_process .eIcquick_mastery span {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .wQXstudy_process {
        padding: 80px 0;
    }

    .wQXstudy_process .LBYheader_image {
        width: 100%;
        height: 300px;
        transform: none;
    }

    .wQXstudy_process .eIcquick_mastery {
        width: 95%;
        margin-top: -50px;
    }

    .wQXstudy_process .eIcquick_mastery h3 {
        font-size: calc(32px * 0.8);
        padding: 20px 25px;
    }

    .wQXstudy_process .eIcquick_mastery h3::before {
        width: 6px;
        height: 30px;
    }

    .wQXstudy_process .eIcquick_mastery span {
        padding: 25px;
    }
}.jnKinterested_learners {
    position: relative;
    background-color: rgb(194,193,182);
    padding: 180px 0 120px;
}

.jnKinterested_learners::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgb(165,160,164,0.5) 0%,
        rgb(122,115,125,0.5) 100%
    );
    clip-path: polygon(100px 0, 100% 0, 100% 100%, 0 100%);
}

.jnKinterested_learners .container {
    position: relative;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
}

.jnKinterested_learners .zFJlearning_beneficiaries {
    position: relative;
    width: 400px;
    aspect-ratio: 1;
    border-radius: 0;
    transform: rotate(-4deg);
}

.jnKinterested_learners .zFJlearning_beneficiaries::before,
.jnKinterested_learners .zFJlearning_beneficiaries::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgb(165,160,164,0.5);
    transform: rotate(8deg);
}

.jnKinterested_learners .zFJlearning_beneficiaries::after {
    transform: rotate(4deg);
}

.jnKinterested_learners .iJslearning_whom {
    padding: 40px 20px;
}

.jnKinterested_learners .iJslearning_whom h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 80px;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.jnKinterested_learners .iJslearning_whom h2::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 140%;
    height: 8px;
    background: rgb(165,160,164,0.5);
    z-index: -1;
}

.jnKinterested_learners .qnplearners_group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
}

.jnKinterested_learners .qnplearners_group div {
    position: relative;
    padding: 40px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.jnKinterested_learners .qnplearners_group div:nth-child(odd) {
    transform: translateY(-30px);
}

.jnKinterested_learners .qnplearners_group div:nth-child(even) {
    transform: translateY(30px);
}

.jnKinterested_learners .qnplearners_group div svg {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgb(165,160,164);
    fill: #ffffff;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.jnKinterested_learners .qnplearners_group div:hover {
    transform: translateY(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.jnKinterested_learners .qnplearners_group div:hover svg {
    transform: rotate(90deg);
}

@media (max-width: 1400px) {
    .jnKinterested_learners .container {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }

    .jnKinterested_learners .zFJlearning_beneficiaries {
        width: 350px;
    }
}

@media (max-width: 1200px) {
    .jnKinterested_learners {
        padding: 120px 0 80px;
    }

    .jnKinterested_learners::before {
        width: 55%;
    }

    .jnKinterested_learners .qnplearners_group div {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .jnKinterested_learners {
        padding: 100px 0 60px;
    }

    .jnKinterested_learners::before {
        display: none;
    }

    .jnKinterested_learners .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .jnKinterested_learners .zFJlearning_beneficiaries {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        transform: none;
    }

    .jnKinterested_learners .zFJlearning_beneficiaries::before,
    .jnKinterested_learners .zFJlearning_beneficiaries::after {
        transform: none;
        inset: -10px;
    }

    .jnKinterested_learners .iJslearning_whom h2 {
        display: block;
        text-align: center;
        margin-bottom: 60px;
    }

    .jnKinterested_learners .iJslearning_whom h2::before {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .jnKinterested_learners {
        padding: 80px 0 40px;
    }

    .jnKinterested_learners .iJslearning_whom h2 {
        font-size: calc(42px * 0.8);
    }

    .jnKinterested_learners .qnplearners_group {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .jnKinterested_learners .qnplearners_group div {
        padding: 25px;
        transform: none !important;
    }

    .jnKinterested_learners .qnplearners_group div svg {
        top: -12px;
        right: -12px;
        width: 32px;
        height: 32px;
        padding: 6px;
    }
}

@media (max-width: 576px) {
    .jnKinterested_learners {
        padding: 60px 0 30px;
    }

    .jnKinterested_learners .zFJlearning_beneficiaries {
        max-width: 280px;
    }

    .jnKinterested_learners .iJslearning_whom h2 {
        font-size: calc(42px * 0.7);
        margin-bottom: 40px;
    }

    .jnKinterested_learners .qnplearners_group div {
        padding: 20px;
    }
}.eFPlocation_details {
    position: relative;
    background: rgb(194,193,182);
    padding: 120px 0;
    overflow: hidden;
}

.eFPlocation_details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(90deg, rgb(165,160,164,0.5) 0%, transparent 100%);
    opacity: 0.05;
    z-index: 0;
}

.eFPlocation_details::after {
    content: "";
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgb(165,160,164);
    opacity: 0.05;
    z-index: 0;
}

.eFPlocation_details .container {
    position: relative;
    z-index: 1;
}

.eFPlocation_details .Iyhmsg_team {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.eFPlocation_details .Qiwget_contactwidget {
    flex: 1 1 30%;
    min-width: 300px;
    border-radius: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.eFPlocation_details .Qiwget_contactwidget:first-child {
    flex: 0 1 calc(50% - 15px);
    border-left: 4px solid rgb(165,160,164);
    padding-left: 40px;
}

.eFPlocation_details .Qiwget_contactwidget:nth-child(2) {
    flex: 0 1 calc(50% - 15px);
    max-height: 400px;
    overflow: hidden;
}

.eFPlocation_details .Qiwget_contactwidget:nth-child(3) {
    flex: 0 1 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    background: rgb(165,160,164);
    padding: 30px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.eFPlocation_details .Qiwget_contactwidget h2 {
    font-size: 42px;
    margin-bottom: 35px;
    color: rgb(165,160,164);
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
}

.eFPlocation_details .Qiwget_contactwidget h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 70px;
    height: 4px;
    background: rgb(122,115,125);
}

.eFPlocation_details .KiHedu_askus {
    font-size: calc(24px * 1.1);
    color: rgb(122,115,125);
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.eFPlocation_details .nrLrequest_team {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 30px;
    max-width: 90%;
}

.eFPlocation_details .Qiwget_contactwidget > p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: #000000;
    position: relative;
    padding-left: 30px;
}

.eFPlocation_details .Qiwget_contactwidget > p svg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.eFPlocation_details .Qiwget_contactwidget > p svg path {
    fill: rgb(165,160,164);
}

.eFPlocation_details .Qiwget_contactwidget > p span {
    font-weight: 600;
    margin-left: 5px;
}

.eFPlocation_details .Lkoget_assist {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.eFPlocation_details .Lkoget_assist h3 {
    font-size: 24px;
    color: rgb(165,160,164);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.eFPlocation_details .Lkoget_assist h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: rgb(122,115,125);
}

.eFPlocation_details .cioask_feedback {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.eFPlocation_details .cioask_feedback span {
    padding: 10px 15px;
    background: rgb(194,193,182);
    border-radius: 10px;
    font-size: calc(18px * 0.9);
    color: #000000;
    transition: all 0.3s ease;
}

.eFPlocation_details .cioask_feedback span:hover {
    background: rgb(165,160,164,0.5);
    transform: translateY(-3px);
}

.eFPlocation_details .Qiwget_contactwidget .LBYheader_image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.eFPlocation_details .Qiwget_contactwidget .LBYheader_image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.eFPlocation_details .aXFedu_guide {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.eFPlocation_details .aXFedu_guide a {
    flex: 1 1 30%;
    min-width: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.eFPlocation_details .aXFedu_guide a:hover {
    transform: translateY(-5px);
}

.eFPlocation_details .aXFedu_guide svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.eFPlocation_details .aXFedu_guide svg path {
    fill: #ffffff;
}

.eFPlocation_details .aXFedu_guide a .Kfthelp_grid {
    display: flex;
    flex-direction: column;
}

.eFPlocation_details .aXFedu_guide a span {
    font-size: calc(18px * 0.8);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.eFPlocation_details .aXFedu_guide a p {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 1200px) {
    .eFPlocation_details {
        padding: 80px 0;
    }
    
    .eFPlocation_details .Qiwget_contactwidget:first-child {
        flex: 0 1 calc(50% - 15px);
    }
    
    .eFPlocation_details .Qiwget_contactwidget:nth-child(2) {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 991px) {
    .eFPlocation_details .Qiwget_contactwidget:first-child,
    .eFPlocation_details .Qiwget_contactwidget:nth-child(2) {
        flex: 0 1 100%;
    }
    
    .eFPlocation_details .Qiwget_contactwidget:nth-child(2) {
        max-height: 300px;
        height: 300px;
        order: -1;
    }
    
    .eFPlocation_details .Qiwget_contactwidget:first-child {
        margin-top: 30px;
    }
    
    .eFPlocation_details .nrLrequest_team {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .eFPlocation_details {
        padding: 60px 0;
    }
    
    .eFPlocation_details .Qiwget_contactwidget h2 {
        font-size: calc(42px * 0.9);
    }
    
    .eFPlocation_details .Qiwget_contactwidget:first-child {
        padding-left: 25px;
    }
    
    .eFPlocation_details .Qiwget_contactwidget:nth-child(3) {
        padding: 25px;
    }
    
    .eFPlocation_details .aXFedu_guide a {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .eFPlocation_details {
        padding: 40px 0;
    }
    
    .eFPlocation_details .Qiwget_contactwidget h2 {
        font-size: calc(42px * 0.8);
    }
    
    .eFPlocation_details .Lkoget_assist {
        padding: 20px;
    }
    
    .eFPlocation_details .cioask_feedback {
        flex-direction: column;
    }
    
    .eFPlocation_details .cioask_feedback span {
        width: 100%;
    }
    
    .eFPlocation_details .Qiwget_contactwidget:nth-child(2) {
        max-height: 200px;
    }
}