* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}

.nav-train {
    flex: 1 0 auto;
}

svg {
    height: 30px;
    width: 30px;
}

.zoom-meet {
    flex: 0 0 auto;
}

.zoom-meet {
    padding: 80px 0 30px;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    background-color: #000000;
    color: #ffffff;
}

.container {
    width: 1110px;
    margin: auto;
    max-width: 100%;
}

.framework-wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}


.contact-form-box {
    isolation: isolate;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(
        135deg, 
        rgb(120,135,181,0.5) 0%, 
        rgb(176,159,193,0.5) 100%
    );
    position: relative;
}

.contact-form-box::after {
    height: 150%;
    background: radial-gradient(
        circle at center, 
        rgba(255,255,255,0.03) 0%, 
        transparent 60%
    );
    z-index: 1;
    animation: subtle-wave 15s infinite alternate-reverse;
    bottom: -30%;
    right: -30%;
    content: '';
    position: absolute;
    width: 150%;
}

.contact-form-box h2::after {
    background: linear-gradient(
        to right, 
        transparent, 
        rgb(176,159,193), 
        transparent
    );
    content: '';
    height: 3px;
    width: 80px;
    bottom: -0.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.contact-form-box .photo-show {
    min-height: 500px;
    flex: 0 0 40%;
    position: relative;
}

.contact-form-box .photo-show::before {
    height: 100%;
    opacity: 0.6;
    mix-blend-mode: color-dodge;
    left: 0;
    background: linear-gradient(
        45deg, 
        rgb(120,135,181,0.5) 0%, 
        rgb(176,159,193,0.5) 100%
    );
    top: 0;
    position: absolute;
    content: '';
    width: 100%;
}

.contact-form-box .support-message input:not([type="checkbox"]):not([type="submit"]) {
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    width: 100%;
    outline: none;
    border-radius: 10px;
}

.contact-form-box .support-message .request-inquiry input[type="checkbox"] {
    height: 22px;
    cursor: pointer;
    position: relative;
    appearance: none;
    margin-right: 1rem;
    border-radius: 10px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    width: 22px;
}

.contact-form-box .support-message .request-inquiry label {
    align-items: center;
    font-size: 14px;
    color: #ffffff;
    display: flex;
}

.contact-form-box .support-message .request-inquiry a {
    color: rgb(176,159,193);
    transition: color 0.3s ease;
    margin-left: 0.3rem;
    text-decoration: none;
}

.contact-form-box .support-message .request-support::before {
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    left: -100%;
    transition: all 0.3s ease;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent
    );
    top: 0;
}

.contact-form-box .support-message .request-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.zoom-meet::after {
    position: absolute;
    content: "";
    height: 300px;
    opacity: 0.2;
    width: 300px;
    left: -50px;
    bottom: -50px;
    transform: rotate(30deg);
    background: repeating-linear-gradient(
        -45deg,
        #000000,
        #000000 15px,
        rgb(120,135,181,0.5) 15px,
        rgb(120,135,181,0.5) 30px
    );
}

footer .contact-form {
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-left: 4px solid rgb(176,159,193);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    border-radius: 0 17px 17px 0;
    display: grid;
    gap: 20px;
}

footer .info_item a:hover {
    color: rgb(176,159,193);
}

footer .text_main_holder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

footer .top-know svg {
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
    width: auto;
    height: 45px;
}

footer .facebook-cta {
    font-size: 16px;
    line-height: 1.6;
    max-width: 330px;
    color: rgba(255, 255, 255, 0.7);
}

footer .head-section h5::after {
    content: "";
    bottom: -10px;
    background-color: rgb(176,159,193);
    left: 0;
    height: 3px;
    width: 40px;
    position: absolute;
}

footer .top-head {
    margin-bottom: 30px;
}

footer .top-head a:hover {
    border-bottom-color: rgb(176,159,193,0.5);
    padding-left: 10px;
    color: #ffffff;
}

footer .subscribe_holder {
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 35px;
    border-radius: 17px;
}

footer .subscribe_holder h5 {
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 23px;
    font-weight: 700;
}

footer .subscribe_holder p {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.7;
}

footer .input_holder input[type="email"] {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    padding: 15px;
    font-size: 18px;
}

footer .mail-join {
    border-radius: 10px;
    color: #ffffff;
    border: none;
    letter-spacing: 1px;
    background-color: rgb(176,159,193);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    padding: 15px 20px;
    display: inline-block;
    font-weight: 600;
}

footer .proposal-cta {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
}

.pricing-plan-card {
    position: relative;
    background: rgb(231,218,229);
    overflow: hidden;
    padding: 120px 0;
}

.pricing-plan-card .container {
    position: relative;
    padding: 0 15px;
    max-width: 1320px;
    z-index: 2;
    margin: 0 auto;
}

.pricing-plan-card .group-rates {
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out forwards;
    text-align: center;
    transform: translateY(-10px);
    max-width: 800px;
}

.pricing-plan-card .group-rates h2::after {
    background: rgb(176,159,193);
    height: 3px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    bottom: -10px;
    position: absolute;
    width: 80px;
}

.pricing-plan-card .study-rates {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 30px;
    display: grid;
}

.pricing-plan-card .price-panel:nth-child(1) {
    --index: 1;
}

.pricing-plan-card .price-panel:nth-child(2) {
    --index: 2;
}

.pricing-plan-card .price-panel:nth-child(3) {
    --index: 3;
}

.pricing-plan-card .price-panel:nth-child(4) {
    --index: 4;
}

.pricing-plan-card .price-panel:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-plan-card .plan-fee {
    flex-direction: column;
    background: linear-gradient(145deg, #ffffff, #f5f8ff);
    position: relative;
    height: 100%;
    display: flex;
    overflow: hidden;
    box-sizing: border-box;
}

.pricing-plan-card .tuition-plans h3 {
    font-weight: 700;
    color: #000000;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 15px;
    font-size: 23px;
    position: relative;
    margin-top: 0;
}

.pricing-plan-card .price-panel:hover .tuition-plans h3::after {
    width: 70px;
}

.pricing-plan-card .learning-fee {
    overflow-wrap: break-word;
    border-radius: 10px;
    word-break: break-word;
    margin: 10px 0 20px;
    padding: 8px 16px;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, rgba(var(--primary-color-rgb), 0.1), rgba(var(--primary-color-rgb), 0.05));
    font-weight: 700;
    color: rgb(176,159,193);
    font-size: calc(23px * 1.2);
}

.pricing-plan-card .price-panel:hover .photo-show {
    filter: brightness(1.05);
    transform: scale(1.05);
}

.check-it-out-now::before {
    background: radial-gradient(circle at 70% 30%, rgb(120,135,181,0.5) 0%, transparent 60%);
    z-index: 1;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    left: 0;
}

.check-it-out-now .container {
    display: flex;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
    align-items: center;
    flex-direction: column;
    z-index: 2;
    margin: 0 auto;
}

.check-it-out-now h2::before {
    content: "";
    opacity: 0.7;
    border-left: 3px solid rgb(176,159,193);
    left: -10px;
    border-top: 3px solid rgb(176,159,193);
    position: absolute;
    height: 40px;
    width: 40px;
    top: -10px;
}

.check-it-out-now .creds-block {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.05);
    flex-direction: column;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
    position: relative;
    display: flex;
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    align-items: center;
    justify-content: center;
    z-index: 3;
    transform: translateY(0);
    padding: 2.5rem 3rem;
    gap: 1.5rem;
}

.check-it-out-now svg:hover {
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.15));
    transform: rotate(0) scale(1.1);
}

.check-it-out-now svg:hover path {
    fill: rgb(120,135,181);
}

.check-it-out-now .creds-block div {
    justify-content: center;
    display: flex;
    width: 100%;
}

.check-it-out-now .request-support::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s ease;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    content: "";
    left: -100%;
}

.check-it-out-now .request-support:hover {
    box-shadow: 0 8px 25px rgba(rgb(176,159,193,0.5), 0.4);
    transform: translateY(-3px) scale(1.03);
}

.check-it-out-now .request-support:hover::before {
    left: 100%;
}

.check-it-out-now .container:hover h2 {
    transform: perspective(1000px) rotateX(0deg);
}

.program-results::before {
    animation: rotateBackground 30s infinite linear;
    position: absolute;
    left: -50%;
    height: 200%;
    z-index: 0;
    width: 200%;
    content: "";
    background: radial-gradient(
        ellipse at center,
        rgb(120,135,181,0.5) 0%,
        transparent 70%
    );
    opacity: 0.4;
    top: -50%;
}

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

.program-results .creds-block {
    position: relative;
    display: grid;
    gap: 50px;
    border-radius: 20px;
    position: relative;
    grid-template-columns: 1.2fr 1fr;
}



.program-results .creds-block::after {
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(245, 245, 250, 0.9) 100%
    );
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
    position: absolute;
    border-radius: 20px;
    inset: 0;
    backdrop-filter: blur(15px);
    content: "";
    z-index: -1;
}

.program-results .photo-show:hover {
    transform: scale(1.08) translateX(-3%);
}

.program-results h3 {
    color: #000000;
    margin-bottom: 30px;
    position: relative;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 29px;
}

.program-results h3::before {
    transform: translateY(-50%);
    position: absolute;
    height: 2px;
    top: 50%;
    left: -40px;
    background: rgb(176,159,193);
    content: "";
    width: 30px;
}

.program-results ul {
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: column;
    display: flex;
}

.program-results li {
    background: rgb(231,218,229);
    border-radius: 12px;
    position: relative;
    padding: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.program-results li::after {
    background: linear-gradient(
        to right,
        rgb(176,159,193,0.5) 0%,
        transparent 30%
    );
    content: "";
    opacity: 0;
    height: 100%;
    z-index: -1;
    left: 0;
    width: 100%;
    top: 0;
    position: absolute;
    transition: all 0.4s ease;
}

.program-results li:hover::before {
    width: 6px;
}

.program-results li:hover::after {
    opacity: 0.3;
}

.program-results svg {
    border-radius: 50%;
    position: relative;
    background: #ffffff;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: all 0.5s ease;
    padding: 4px;
    height: 24px;
    width: 24px;
}

.program-results li:hover svg {
    transform: scale(1.15);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}

.ty-div::before {
    width: 100%;
    position: absolute;
    background-image: radial-gradient(circle at 20% 30%, rgb(176,159,193,0.5) 0%, transparent 40%),
                      radial-gradient(circle at 80% 70%, rgb(120,135,181,0.5) 0%, transparent 40%);
    height: 100%;
    content: "";
    opacity: 0.07;
    top: 0;
    z-index: 0;
    left: 0;
}

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

.ty-div .creds-block::before {
    position: absolute;
    height: 0%;
    left: 0;
    top: 0;
    width: 3px;
    background: linear-gradient(to bottom, rgb(176,159,193), rgb(120,135,181));
    animation-delay: 0.5s;
    content: "";
    animation: borderGrow 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.ty-div .creds-block::after {
    z-index: -1;
    width: 80px;
    opacity: 0.1;
    top: -10px;
    content: "";
    height: 80px;
    transform: rotate(5deg);
    background: linear-gradient(135deg, rgb(176,159,193) 0%, rgb(120,135,181) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    right: -10px;
    position: absolute;
}

.ty-div .creds-block > div:last-child {
    transition: transform 0.5s ease;
    position: relative;
    transform: translateZ(10px);
}

.ty-div h5 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #000000;
    transform: translateY(20px);
    font-weight: 700;
    display: inline-block;
    line-height: 1.4;
    opacity: 0;
    animation: slideUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    position: relative;
}

.ty-div a {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-decoration: none;
    display: block;
}

.ty-div a:hover {
    transform: translateY(-5px);
}

.ty-div a:hover p {
    background: rgba(245, 245, 250, 0.9);
    border-left: 3px solid rgb(176,159,193);
}

.ty-div p::before {
    left: 10px;
    opacity: 0.2;
    line-height: 1;
    color: rgb(176,159,193,0.5);
    position: absolute;
    content: "";
    font-size: 60px;
    top: 10px;
    font-family: serif;
}

.ty-div p::after {
    right: 10px;
    opacity: 0.2;
    font-family: serif;
    font-size: 60px;
    line-height: 1;
    position: absolute;
    content: "";
    color: rgb(120,135,181,0.5);
    bottom: -20px;
}

.course-summary::before {
    animation: backgroundShift 15s infinite alternate;
    position: absolute;
    height: 100%;
    opacity: 0.7;
    left: 0;
    width: 100%;
    content: "";
    top: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgb(176,159,193,0.5) 0%, transparent 50%, rgb(120,135,181,0.5) 100%);
}

.course-summary::after {
    content: "";
    z-index: 2;
    height: 100%;
    position: absolute;
    animation: pulse 8s infinite alternate;
    top: 0;
    background: 
        repeating-conic-gradient(rgba(255, 255, 255, 0.03) 0%, transparent 0.5%, transparent 1%, rgba(255, 255, 255, 0.03) 1.5%) 50% 50% / 30px 30px,
        radial-gradient(circle at 70% 30%, rgb(176,159,193,0.5) 0%, transparent 70%);
    width: 100%;
    left: 0;
}

.course-summary .skill-master::before {
    left: -30px;
    height: calc(100% + 60px);
    z-index: -1;
    content: "";
    border-radius: 11px;
    animation: borderPulse 4s infinite alternate;
    transform-style: preserve-3d;
    border: 1px solid rgb(176,159,193,0.5);
    width: calc(100% + 60px);
    position: absolute;
    transform: rotateY(5deg) rotateX(2deg);
    top: -30px;
}

.course-summary .section-content h2 {
    font-size: 32px;
    padding: 15px 20px;
    position: relative;
    background: linear-gradient(to right, rgb(176,159,193) 0%, rgb(120,135,181) 100%);
    border-radius: 10px;
    display: inline-block;
    transform: translateY(-10px);
    font-weight: 700;
    border-radius: 8px 0 8px 0;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgb(176,159,193,0.5);
    background-clip: text !important;
    margin-bottom: 25px;
    -webkit-background-clip: text !important;
    max-width: fit-content;
    color: #ffffff;
    border-bottom: 2px solid rgb(176,159,193);
    border-left: 2px solid rgb(120,135,181);
    letter-spacing: 1.5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.course-summary .section-content .description:last-of-type {
    border-left-color: rgb(120,135,181);
    margin-bottom: 0;
}

.course-summary .section-content .description:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

.our-story::after {
    z-index: 2;
    background: linear-gradient(135deg, rgb(176,159,193,0.5) 0%, transparent 65%);
    transform: rotate(15deg);
    width: 70%;
    height: 200%;
    position: absolute;
    right: -25%;
    top: -50%;
    content: "";
}

.our-story .section-content:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.our-story h1 {
    color: #ffffff;
    transition: transform 0.5s ease;
    margin-bottom: 2rem;
    position: relative;
    transform: translateX(-5px);
    font-family: Arial, sans-serif;
    letter-spacing: 0.05em;
    font-size: 39px;
    font-weight: 700;
}

.our-story .section-content:hover h1 {
    transform: translateX(0);
}

.our-story .section-content:hover h1::after {
    transform: scaleX(1);
}

.our-story ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.our-story li {
    margin-bottom: 1.5rem;
}

.our-story h4 {
    font-family: Arial, sans-serif;
    position: relative;
    padding-left: 2rem;
    color: rgb(120,135,181);
    font-size: calc(24px * 1.1);
    display: inline-block;
    font-weight: 600;
    margin-bottom: 1rem;
}

.our-story li:hover h4::before {
    transform: translateY(-50%) rotate(225deg);
}

.our-story span::first-letter {
    color: rgb(176,159,193);
    font-size: 200%;
    font-weight: 700;
    margin-right: 2px;
}

.our-story li:hover span {
    opacity: 1;
}

.our-story span::before {
    left: 0;
    background: linear-gradient(to bottom, rgb(176,159,193,0.5), transparent);
    height: calc(100% - 1.4em);
    top: 0.7em;
    content: "";
    position: absolute;
    width: 1px;
}

.cookie-hide {
    align-items: center;
    padding: 20px;
    flex-direction: column;
    display: flex;
}

.cookie-view {
    margin-bottom: 20px;
}

.cookie-view svg, .cookie-view svg path, .cookie-view img {
    height: 60px;
    width: 60px;
    fill: rgb(176,159,193);
}

.cookieWarningMessage p {
    text-align: center;
    font-size: 12px;
    margin-bottom: 20px;
    color: #000000;
}

.cookie-updates:hover {
    background: rgb(120,135,181);
}

.cookie_button.cookie-alerts {
    background: rgb(120,135,181);
}

.cookie_button.cookie-alerts:hover {
    background: rgb(120,135,181,0.5);
}

.cookieWarningMessage p a {
    color: rgb(176,159,193);
    transition: color 0.3s ease-in-out;
    text-decoration: none;
}

#dataProtectionBox {
    display: none;
}

#dataProtectionBox:checked ~ .cookieWarningMessage {
    opacity: 0;
    visibility: hidden;
}

.data-analysis::before {
    width: 100%;
    left: 0;
    animation: rotateBg 60s linear infinite;
    position: absolute;
    z-index: 1;
    background: repeating-conic-gradient(
        rgb(231,218,229) 0%,
        rgba(240, 240, 240, 0.7) 0.5%,
        rgb(231,218,229) 1%
    );
    opacity: 0.3;
    top: 0;
    content: '';
    height: 100%;
}

.data-analysis .container {
    position: relative;
    grid-template-columns: 1fr 1fr;
    display: grid;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
    gap: 50px;
    z-index: 10;
}

.data-analysis .smart-statistics::before {
    content: '';
    background: linear-gradient(
        to bottom,
        rgb(176,159,193),
        rgb(120,135,181),
        transparent
    );
    border-radius: 10px;
    top: 0;
    height: 60%;
    left: 0;
    width: 3px;
    position: absolute;
}

.data-analysis .statistics-pros {
    font-size: 14px;
    line-height: 1.8;
    padding-left: 20px;
    margin-bottom: 0;
    color: #000000;
    opacity: 0.9;
}

.data-analysis .statistics-edges:nth-child(even) {
    border-left: 3px solid rgb(120,135,181);
}

.data-analysis .statistics-edges::before {
    left: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 100%
    );
    content: '';
    z-index: -1;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-analysis .statistics-edges:nth-child(even)::after {
    background: rgb(120,135,181);
}

.data-analysis .statistics-edges:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.data-analysis .statistics-edges:nth-child(odd) h4 {
    color: rgb(176,159,193);
}

.data-analysis .statistics-edges:nth-child(even) h4 {
    color: rgb(120,135,181);
}

.data-analysis svg {
    fill: #000000;
    bottom: 20px;
    width: 20px;
    opacity: 0.3;
    position: absolute;
    height: 20px;
    right: 20px;
    transition: all 0.3s ease;
}

.data-analysis .statistics-edges:nth-child(even) svg path {
    fill: rgb(120,135,181);
}

header::before {
    z-index: -1;
    width: 100%;
    left: 0;
    opacity: 0.3;
    top: 0;
    content: "";
    position: absolute;
    animation: pulse 15s infinite alternate;
    background: 
        radial-gradient(circle at 10% 20%, rgb(176,159,193,0.5) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgb(120,135,181,0.5) 0%, transparent 20%);
    height: 100%;
}

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

header .header-tutor::before {
    height: 2px;
    background: linear-gradient(to right, rgb(176,159,193), rgb(120,135,181));
    content: "";
    left: 0;
    transition: width 0.3s ease;
    width: 0;
    bottom: 0;
    position: absolute;
}

header .main-head svg {
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    width: auto;
    transition: all 0.3s ease;
}

.education-history {
    background: linear-gradient(135deg, rgb(231,218,229) 0%, #ffffff 100%);
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
}

.education-history .container {
    z-index: 1;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.education-history .learning-feedback {
    padding: 3rem;
    grid-gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(0, 0, 0, 0.02);
    grid-template-columns: 1fr;
    position: relative;
    display: grid;
    background: #ffffff;
    transform: perspective(1000px) rotateY(-2deg);
}

.education-history .learning-feedback:hover::before {
    opacity: 0.7;
}

.education-history .learning-feedback > div:nth-child(1) {
    grid-area: photo;
}

.education-history .learning-feedback > div:nth-child(2) {
    grid-area: info;
}

.education-history .photo-show {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: translateZ(30px);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 240px;
    height: 240px;
    clip-path: polygon(0% 15%, 15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%);
}

.education-history .learning-feedback:hover .photo-show::after {
    opacity: 0.5;
}

.education-history .name {
    margin: 0 0 0.5rem;
    transform: translateZ(15px);
    transition: transform 0.3s ease;
    font-size: calc(24px * 1.2);
    color: rgb(176,159,193);
    font-weight: 700;
    position: relative;
}

.education-history .learning-feedback:hover .name::after {
    transform: scaleX(1);
}

.education-history .job-tasks {
    font-family: Arial, sans-serif;
    font-size: 17px;
    color: #000000;
    position: relative;
    transform: translateZ(5px);
    text-align: justify;
    line-height: 1.8;
}

.education-history .job-tasks::before {
    content: "";
    left: -1.5rem;
    position: absolute;
    transform: translateZ(5px);
    font-family: Georgia, serif;
    transition: all 0.4s ease;
    font-size: 6rem;
    color: rgb(176,159,193,0.5);
    top: -3.5rem;
    opacity: 0.2;
}

.secure-wrap::before {
    width: 100%;
    position: absolute;
    background-size: 60px 60px;
    background-image: linear-gradient(45deg, rgb(176,159,193,0.5) 25%, transparent 25%), 
                      linear-gradient(-45deg, rgb(176,159,193,0.5) 25%, transparent 25%);
    opacity: 0.04;
    height: 100%;
    left: 0;
    content: "";
    top: 0;
    z-index: 0;
}

.secure-wrap h1 {
    margin-bottom: 2.5rem;
    font-size: 43px;
    position: relative;
    line-height: 1.2;
    transform: translateX(-0.5rem);
    padding-bottom: 1.2rem;
    font-weight: 700;
    color: #000000;
}

.secure-wrap h1::after {
    bottom: 0;
    transform-origin: left;
    left: 0;
    animation: expandWidth 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    content: "";
    height: 4px;
    background: linear-gradient(90deg, rgb(176,159,193) 0%, rgb(120,135,181) 100%);
    width: 8rem;
    position: absolute;
}

.secure-wrap h3 {
    padding-left: 1rem;
    font-size: calc(32px * 0.85);
    font-weight: 600;
    position: relative;
    color: #000000;
    transform: translateX(-1rem);
    margin: 2.5rem 0 1.2rem;
}

.secure-wrap h4 {
    position: relative;
    transform: translateX(-0.8rem);
    margin: 2rem 0 1rem;
    font-size: calc(32px * 0.7);
    font-weight: 600;
    padding-left: 0.8rem;
    color: #000000;
}

.secure-wrap p {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 17px;
    max-width: 95%;
    position: relative;
}

.secure-wrap strong::after {
    position: absolute;
    content: "";
    left: 0;
    height: 1px;
    background-color: rgb(120,135,181,0.5);
    bottom: -2px;
    width: 100%;
}

.secure-wrap li::before {
    content: "";
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: absolute;
    border: 1px solid rgb(176,159,193);
    top: 0.7rem;
    transform: rotate(45deg);
    left: 0;
    width: 0.6rem;
    height: 0.6rem;
    background-color: rgb(176,159,193,0.5);
}

.secure-wrap span::after {
    position: absolute;
    bottom: 0;
    height: 1px;
    content: "";
    width: 100%;
    background: linear-gradient(90deg, rgb(176,159,193,0.5) 0%, transparent 100%);
    left: 0;
    transform-origin: left;
}

.education-framework::before {
    position: absolute;
    opacity: 0.7;
    background: linear-gradient(225deg, rgb(176,159,193,0.5) 0%, transparent 90%);
    transform: translateX(20%) skewX(-15deg);
    width: 35%;
    height: 100%;
    content: "";
    z-index: 1;
    right: 0;
    animation: gradientShift 8s ease-in-out infinite alternate;
    top: 0;
}

.education-framework .creds-block {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 3rem;
    position: relative;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.05);
    grid-template-columns: 1fr;
    transform: perspective(1000px) rotateY(2deg);
    background: rgba(255, 255, 255, 0.85);
    display: grid;
}

.education-framework h3 {
    margin-bottom: 1.5rem;
    color: #000000;
    display: inline-block;
    font-weight: 700;
    position: relative;
    animation: fadeInUp 0.8s ease-out forwards;
    font-size: calc(38px * 0.85);
    transform-origin: left center;
}

.education-framework .creds-block:hover h3::after {
    transform: scaleX(1);
}

.education-framework p {
    color: #000000;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    font-family: Arial, sans-serif;
    opacity: 0;
    line-height: 1.8;
    font-size: 13px;
    margin-bottom: 0;
}

.homepage {
    height: 100vh;
    position: relative;
    min-height: 600px;
    background-color: #000000;
    width: 100%;
    overflow: hidden;
}

.homepage::before {
    width: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(176,159,193,0.5) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgb(120,135,181,0.5) 0%, transparent 25%),
        linear-gradient(45deg, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
    top: 0;
    content: "";
    animation: backgroundPulse 15s infinite alternate ease-in-out;
    position: absolute;
    z-index: 1;
    left: 0;
    height: 100%;
}

.homepage .fast-school {
    height: 100%;
    position: relative;
    overflow: hidden;
    width: 100vw;
}

.homepage .fast-school::before {
    content: "";
    background: linear-gradient(
        135deg,
        #000000 0%,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.6) 60%,
        #000000 100%
    );
    left: 0;
    z-index: 2;
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
}

.homepage .section-content::before {
    bottom: -2px;
    background: linear-gradient(45deg, rgb(176,159,193), rgb(120,135,181));
    position: absolute;
    content: "";
    right: -2px;
    z-index: -1;
    left: -2px;
    top: -2px;
    animation: borderGlow 4s infinite alternate;
    opacity: 0.3;
    border-radius: calc(20px + 2px);
}

.homepage .section-content h1 {
    color: #ffffff;
    font-size: 43px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    position: relative;
    font-weight: 700;
}

.homepage .section-content h1::after {
    height: 3px;
    background: linear-gradient(to right, rgb(176,159,193), transparent);
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
}

.homepage .section-content .request-support {
    padding: 1rem 2.5rem;
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 0.5px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(
        90deg,
        rgb(176,159,193) 0%,
        rgb(120,135,181) 100%
    );
    color: #ffffff;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    font-weight: 600;
    overflow: hidden;
}


@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}


@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}



@media screen and (max-width: 1024px) {.contact-form-box .inquiry-section {
    flex-direction: column;
}.contact-form-box .photo-show {
    min-height: 300px;
    flex: 0 0 100%;
}.contact-form-box .support-message {
    padding: 3rem 2rem;
    flex: 0 0 100%;
}
}



@media screen and (max-width: 480px) {.contact-form-box .inquiry-section {
    border-radius: 0;
}.contact-form-box .photo-show {
    min-height: 250px;
}.contact-form-box .support-message {
    padding: 2rem 1.5rem;
}}



@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .input_holder {
    align-items: stretch;
    flex-direction: row;
}footer .mail-join {
    white-space: nowrap;
}
}



@media (max-width: 576px) {footer .zoom-meet {
    padding: 50px 0 20px;
}footer .contact-form {
    padding: 15px;
    margin-bottom: 30px;
}footer .top-know::after {
    width: 50px;
}footer .head-section h5, footer .subscribe_holder h5 {
    font-size: calc(23px - 2px);
}footer .subscribe_holder p, footer .top-head a, footer .info_item p, footer .info_item a {
    font-size: calc(18px - 1px);
}footer .subscribe_holder {
    padding: 20px 15px;
}footer .input_holder input[type="email"],
    footer .mail-join {
    padding: 12px 15px;
}}



@media (min-width: 1200px) {.pricing-plan-card .study-rates {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}.pricing-plan-card .tuition-plans h3 {
    font-size: calc(23px * 1.1);
}.pricing-plan-card .learning-fee {
    font-size: calc(23px * 1.3);
}.pricing-plan-card .photo-show {
    height: 240px;
}
}



@media (max-width: 767px) {.pricing-plan-card {
    padding: 80px 0;
}.pricing-plan-card .tuition-plans {
    padding: 30px 20px;
}.pricing-plan-card .learning-fee {
    padding: 6px 12px;
    font-size: 23px;
}.pricing-plan-card .photo-show {
    height: 180px;
}
}



@media (min-width: 768px) {.check-it-out-now .creds-block {
    padding: 3rem 4rem;
    gap: 2.5rem;
    flex-direction: row;
}.check-it-out-now h2 {
    font-size: calc(33px * 1.1);
    margin-bottom: 4rem;
}.check-it-out-now .request-support {
    padding: 1.2rem 3rem;
    font-size: calc(14px * 1.1);
}.check-it-out-now svg {
    width: 60px;
    height: 60px;
}
}



@media (max-width: 480px) {.check-it-out-now {
    padding: 3rem 0;
}.check-it-out-now h2 {
    margin-bottom: 2rem;
    font-size: calc(33px * 0.7);
}.check-it-out-now .creds-block {
    padding: 1.5rem;
}.check-it-out-now svg {
    width: 40px;
    height: 40px;
}.check-it-out-now h2::before,
    .check-it-out-now h2::after {
    display: none;
}}



@media (max-width: 576px) {.program-results {
    padding: 60px 0;
}.program-results .creds-block {
    gap: 30px;
}.program-results .photo-show {
    max-height: 250px;
}.program-results .section-content {
    padding: 25px 20px;
}.program-results h3 {
    margin-bottom: 25px;
    font-size: 24px;
}.program-results h3::before {
    display: none;
}.program-results li {
    padding: 15px;
}.program-results li p {
    font-size: 13px;
    gap: 12px;
}.program-results svg {
    height: 22px;
    padding: 3px;
    width: 22px;
}}



@media (min-width: 992px) {.ty-div .creds-block {
    padding: 100px 80px;
    gap: 60px;
}.ty-div .creds-block:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.07), 
                    0 12px 25px rgba(0,0,0,0.05),
                    0 0 0 1px rgba(0,0,0,0.02);
}.ty-div .creds-block:hover > div:first-child {
    transform: translateZ(35px);
}.ty-div .creds-block:hover > div:last-child {
    transform: translateZ(25px);
}.ty-div h5 {
    font-size: calc(23px * 1.3);
}.ty-div p {
    font-size: calc(14px * 1.1);
    line-height: 1.9;
}
}



@media screen and (max-width: 1200px) {.course-summary {
    padding: 100px 0;
}.course-summary .skill-master {
    gap: 30px;
}.course-summary .section-content {
    padding: 30px;
}.course-summary .section-content h2 {
    padding: 12px 18px;
    font-size: calc(32px * 0.9);
}.course-summary .section-content .description {
    padding: 15px;
}
}



@media screen and (max-width: 767px) {.course-summary {
    padding: 60px 0;
}.course-summary .skill-master {
    gap: 30px;
}.course-summary .section-content {
    padding: 25px;
    gap: 20px;
}.course-summary .section-content h2 {
    padding: 10px 15px;
    margin-bottom: 15px;
    font-size: calc(32px * 0.8);
}.course-summary .section-content .description {
    font-size: calc(13px * 0.95);
    margin-bottom: 15px;
    line-height: 1.7;
    padding: 12px;
}.course-summary .photo-show {
    min-height: 350px;
}.course-summary .skill-master::before {
    display: none;
}
}



@media (min-width: 992px) {.our-story {
    padding: 8rem 0;
}.our-story .section-content {
    padding: 4rem;
    width: 90%;
    margin-left: 5%;
}.our-story h1 {
    font-size: calc(39px * 1.2);
    margin-bottom: 3rem;
}.our-story h1::after {
    width: 120px;
    height: 4px;
}.our-story span {
    line-height: 1.9;
    max-width: 85%;
    padding-left: 3rem;
    font-size: calc(15px * 1.05);
}.our-story h4 {
    padding-left: 3rem;
    font-size: calc(24px * 1.2);
}.our-story h4::before {
    width: 15px;
    height: 15px;
}
}



@media (max-width: 768px) {.our-story {
    padding: 4rem 0;
}.our-story .section-content {
    transform: none;
    padding: 2rem;
}.our-story h1 {
    font-size: calc(39px * 0.9);
    margin-bottom: 2rem;
}.our-story span {
    line-height: 1.7;
    font-size: calc(15px * 0.95);
    max-width: 100%;
    padding-left: 1.5rem;
}.our-story h4 {
    padding-left: 1.5rem;
}.our-story h1::after {
    width: 60px;
    height: 3px;
}
}



@media (hover: none) {.our-story .section-content {
    transform: none !important;
}.our-story h1 {
    transform: none;
}.our-story h1::after {
    transform: scaleX(1);
}}



@media screen and (max-width: 768px) {.data-analysis {
    padding: 80px 0;
}.data-analysis .statistics-growth {
    grid-template-columns: 1fr;
    gap: 20px;
}.data-analysis .statistics-edges {
    padding: 25px;
}.data-analysis .statistics-edges h4 {
    font-size: 38px;
}
}



@media screen and (max-width: 480px) {.data-analysis {
    padding: 60px 0;
}.data-analysis .statistics-edges {
    padding: 20px;
}.data-analysis .statistics-edges h4 {
    font-size: calc(38px * 0.9);
}.data-analysis .statistics-edges span {
    font-size: calc(14px * 0.9);
}.data-analysis .statistics-gain {
    margin-bottom: 20px;
    font-size: calc(38px * 0.9);
}.data-analysis .statistics-pros {
    line-height: 1.6;
    font-size: calc(14px * 0.9);
}}



@media (max-width: 767px) {header {
    position: relative;
}header .main-know {
    flex-direction: column-reverse;
    padding: 1rem 0;
    gap: 1rem;
}header .main-head {
    margin-bottom: 0.5rem;
}header .head-section {
    overflow-x: auto;
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    padding: 0.5rem 0;
    width: 100%;
    justify-content: flex-start;
}header .head-section::before {
    display: none;
}header .header-tutor {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.05);
}header .header-tutor::before {
    display: none;
}}



@media (max-width: 767px) {.education-history .learning-feedback {
    transform: perspective(1000px) rotateY(0deg);
    padding: 2rem;
    grid-template-areas:
            "photo-show"
            "request-message"
            "job-tasks";
}.education-history .photo-show {
    margin: 0 auto;
    height: 180px;
    width: 180px;
}.education-history .name {
    margin-top: 1.5rem;
    text-align: center;
}.education-history .name::after {
    left: 50%;
    transform: translateX(-50%) scaleX(0.7);
}.education-history .learning-feedback:hover .name::after {
    transform: translateX(-50%) scaleX(1);
}.education-history .learning-feedback > div:nth-child(2) > div {
    margin-top: 1rem;
    text-align: center;
}.education-history .job-tasks {
    text-align: left;
    margin-top: 1.5rem;
}}



@media (max-width: 479px) {.secure-wrap {
    padding: 2rem 0.5rem;
}.secure-wrap .container {
    padding: 1.5rem 1.2rem;
}.secure-wrap h1 {
    font-size: calc(43px * 0.7);
    margin-bottom: 1.5rem;
}.secure-wrap h1::after {
    height: 3px;
    width: 5rem;
}.secure-wrap h2 {
    font-size: calc(32px * 0.7);
    padding-left: 0.8rem;
    margin: 1.8rem 0 0.8rem;
    transform: translateX(-0.8rem);
}.secure-wrap h2::before {
    width: 3px;
}.secure-wrap h3, .secure-wrap h4 {
    transform: translateX(-0.7rem);
    font-size: calc(32px * 0.6);
    margin: 1.5rem 0 0.8rem;
    padding-left: 0.7rem;
}.secure-wrap p, 
    .secure-wrap span, 
    .secure-wrap li {
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 100%;
    font-size: calc(17px * 0.9);
}.secure-wrap ul {
    padding-left: 0.5rem;
}.secure-wrap li {
    padding-left: 1.3rem;
}.secure-wrap li::before {
    width: 0.5rem;
    height: 0.5rem;
}}



@media screen and (max-width: 767px) {.education-framework {
    padding: 4rem 0;
}.education-framework .creds-block {
    padding: 2.5rem 1.5rem;
    transform: perspective(800px) rotateY(1deg);
}.education-framework h3 {
    margin-bottom: 1.25rem;
    font-size: calc(38px * 0.75);
}.education-framework p {
    line-height: 1.7;
    font-size: calc(13px * 0.95);
}.education-framework::before {
    transform: translateX(20%) skewX(-10deg);
    width: 25%;
}
}



@media screen and (max-width: 1200px) {.homepage .section-content {
    margin-left: 8%;
    padding: 2.5rem;
    max-width: 500px;
}
}



@media screen and (max-width: 992px) {.homepage {
    height: 90vh;
}.homepage .section-content {
    padding: 2rem;
    margin-left: 5%;
    max-width: 450px;
}.homepage .section-content h1 {
    font-size: calc(43px * 0.9);
}
}



@media screen and (max-width: 576px) {.homepage .section-content {
    padding: 1.5rem;
}.homepage .section-content h1 {
    font-size: calc(43px * 0.7);
    margin-bottom: 1rem;
}.homepage .section-content p {
    margin-bottom: 1.5rem;
    font-size: calc(15px * 0.9);
}.homepage .section-content .request-support {
    padding: 0.8rem 2rem;
    font-size: calc(18px * 0.9);
}
}



@keyframes subtle-wave {
    0% {
        transform: rotate(0deg) scale(1);
    }
    100% {
        transform: rotate(5deg) scale(1.02);
    }
}



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

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



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



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



@keyframes borderPulse {
    0% {
        border-color: rgb(176,159,193,0.5);
        transform: rotateY(5deg) rotateX(2deg);
    }
    100% {
        border-color: rgb(120,135,181,0.5);
        transform: rotateY(3deg) rotateX(0deg);
    }
}



@keyframes floatPanel {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}



@keyframes shine {
    0% {
        left: -100px;
    }
    20%, 100% {
        left: 120%;
    }
}



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



@keyframes backgroundShift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}



@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}



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



@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}



@keyframes zoomEffect {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.15);
    }
}



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



@keyframes borderGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.6;
    }
}



@keyframes backgroundPulse {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

