html,body {
    min-height: 100%;
    color: #000000;
    auto
contain;
    height: 100%;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

header,footer {
    width: 100%;
}

header {
    width: 100%;
    backdrop-filter: blur(10px);
    position: fixed;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    top: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
    transition: all 0.5s ease;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    left: 0;
}

.contact-form-box::before {
    content: '';
    animation: subtle-pulse 12s infinite alternate;
    top: -50%;
    left: -50%;
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center, 
        rgba(255,255,255,0.05) 0%, 
        transparent 70%
    );
    z-index: 1;
}

.contact-form-box .container {
    padding: 0 1rem;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}

.contact-form-box h2 {
    margin-bottom: 3rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 39px;
    letter-spacing: -0.02em;
}

.contact-form-box .inquiry-section {
    backdrop-filter: blur(10px);
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
}

.contact-form-box .support-message {
    flex: 0 0 60%;
    flex-direction: column;
    padding: 4rem 3rem;
    justify-content: center;
    display: flex;
}

.contact-form-box .support-message form {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.contact-form-box .support-message h3 {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
}

.contact-form-box .support-message input:not([type="checkbox"]):not([type="submit"]):focus {
    border-color: rgb(176,159,193);
    box-shadow: 0 0 15px rgba(rgb(176,159,193), 0.3);
}

.contact-form-box .support-message .request-inquiry {
    align-items: center;
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-form-box .support-message .request-inquiry input[type="checkbox"]:checked {
    background: rgb(176,159,193);
    border-color: rgb(176,159,193);
}

.contact-form-box .support-message .request-inquiry input[type="checkbox"]:checked::after {
    font-size: 0.8rem;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    content: '✔';
    color: #ffffff;
    left: 50%;
}

.contact-form-box .support-message .request-inquiry a:hover {
    text-decoration: underline;
}

.contact-form-box .support-message .request-support {
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    background: rgb(176,159,193);
    position: relative;
    padding: 1rem;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    font-size: 18px;
}

.contact-form-box .support-message .request-support:hover::before {
    left: 100%;
}

footer {
    position: relative;
    width: 100%;
}

.zoom-meet::before {
    position: absolute;
    content: "";
    background: repeating-linear-gradient(
        45deg,
        #000000,
        #000000 10px,
        rgba(0, 0, 0, 0.5) 10px,
        rgba(0, 0, 0, 0.5) 20px
    );
    width: 500px;
    opacity: 0.4;
    right: -100px;
    transform: rotate(45deg);
    height: 500px;
    top: -100px;
}

footer .inclusion {
    z-index: 1;
    position: relative;
}

footer .info_item {
    display: flex;
    align-items: center;
}

footer .info_item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: rgb(176,159,193);
    margin-right: 15px;
}

footer .info_item p,
footer .info_item a {
    font-weight: 300;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
    color: #ffffff;
}

footer .top-know {
    position: relative;
}

footer .top-know::after {
    width: 30%;
    background-color: rgb(176,159,193);
    height: 3px;
    left: 0;
    content: "";
    bottom: -30px;
    position: absolute;
}

footer .head-section {
    position: relative;
}

footer .head-section h5 {
    letter-spacing: 1px;
    position: relative;
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 23px;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 700;
}

footer .top-head a {
    font-size: 18px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    position: relative;
    margin-bottom: 12px;
    padding: 8px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

footer .subscribe_holder::before {
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, rgb(176,159,193,0.5), transparent);
    content: "";
    position: absolute;
    border-radius: 17px;
    left: 0;
    opacity: 0.1;
    top: 0;
}

footer .input_holder {
    position: relative;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

footer .input_holder input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgb(176,159,193);
}

footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

footer .mail-join::after {
    left: -100px;
    width: 30px;
    position: absolute;
    top: -100px;
    transform: rotate(45deg);
    transition: all 0.7s ease;
    content: "";
    height: 300px;
    background-color: rgba(255, 255, 255, 0.2);
}

footer .mail-join:hover {
    background-color: rgb(120,135,181);
}

footer .mail-join:hover::after {
    left: 120%;
}

footer .webinar-live {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 16px;
}

.pricing-plan-card::before {
    top: 0;
    background: linear-gradient(135deg, rgb(176,159,193,0.5) 0%, transparent 70%);
    z-index: 1;
    left: 0;
    width: 100%;
    content: "";
    height: 100%;
    position: absolute;
}

.pricing-plan-card .pricing-rates {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
}

.pricing-plan-card .group-rates h2 {
    color: #000000;
    display: inline-block;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
}

.pricing-plan-card .value-deals {
    margin-bottom: 0;
    font-size: 16px;
    overflow-wrap: break-word;
    word-break: break-word;
    line-height: 1.7;
    color: #000000;
    margin: 0 auto;
    max-width: 600px;
}

.pricing-plan-card .price-panel {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    animation: fadeInUp 0.8s ease-out forwards;
    display: block;
    opacity: 0;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    border-radius: 10px;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

.pricing-plan-card .plan-fee::before {
    left: 0;
    background: linear-gradient(90deg, rgb(176,159,193), rgb(120,135,181));
    width: 100%;
    position: absolute;
    content: "";
    top: 0;
    height: 5px;
}

.pricing-plan-card .tuition-plans {
    padding: 40px 30px;
    flex: 1;
    flex-direction: column;
    box-sizing: border-box;
    display: flex;
}

.pricing-plan-card .tuition-plans h3::after {
    width: 40px;
    background-color: rgb(176,159,193);
    bottom: -8px;
    content: "";
    transition: width 0.3s ease;
    left: 0;
    height: 2px;
    position: absolute;
}

.pricing-plan-card .tuition-plans p {
    line-height: 1.7;
    color: #000000;
    white-space: normal;
    font-size: 16px;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 0;
    flex-grow: 1;
}

.pricing-plan-card .photo-show {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    height: 200px;
    width: 100%;
}

.check-it-out-now {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(231,218,229) 0%, rgb(176,159,193,0.5) 100%);
}

.check-it-out-now::after {
    filter: blur(40px);
    right: -50px;
    position: absolute;
    border-radius: 50%;
    content: "";
    bottom: -50px;
    height: 200px;
    opacity: 0.5;
    z-index: 1;
    width: 200px;
    background: rgb(176,159,193,0.5);
}

.check-it-out-now h2 {
    font-weight: 700;
    font-size: 33px;
    position: relative;
    margin-bottom: 3rem;
    transition: transform 0.5s ease-out;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    text-align: center;
    color: #000000;
    max-width: 800px;
    transform: perspective(1000px) rotateX(2deg);
}

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

.check-it-out-now .creds-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.1);
}

.check-it-out-now svg {
    filter: drop-shadow(0 3px 5px rgba(0,0,0,0.1));
    transition: transform 0.4s ease, filter 0.4s ease;
    height: 48px;
    width: 48px;
    transform: rotate(-5deg);
}



.check-it-out-now svg {
    animation: float 4s ease-in-out infinite;
}

.check-it-out-now svg path {
    fill: rgb(176,159,193);
    transition: fill 0.3s ease;
}

.check-it-out-now .request-support {
    padding: 1rem 2.5rem;
    transform: translateZ(0);
    border-radius: 10px;
    font-family: Arial, sans-serif;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(rgb(176,159,193,0.5), 0.3);
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #ffffff;
    background: linear-gradient(45deg, rgb(176,159,193) 0%, rgb(120,135,181) 100%);
}

.check-it-out-now .request-support:active {
    transform: translateY(1px) scale(0.98);
}

.program-results {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(120deg, rgb(231,218,229) 0%, rgb(176,159,193,0.5) 100%);
    font-family: Arial, sans-serif;
}



.program-results::after {
    background: 
        linear-gradient(135deg, transparent 0%, rgb(120,135,181,0.5) 100%),
        linear-gradient(45deg, rgb(176,159,193,0.5) 0%, transparent 60%);
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 0;
    position: absolute;
    opacity: 0.2;
    content: "";
    top: 0;
}

.program-results .creds-block::before {
    opacity: 0.6;
    animation: borderGlow 8s infinite alternate;
    border-radius: 22px;
    inset: -2px;
    content: "";
    z-index: -1;
    position: absolute;
    background: linear-gradient(
        -45deg,
        rgb(176,159,193) 0%,
        transparent 40%,
        transparent 60%,
        rgb(120,135,181) 100%
    );
}

.program-results .section-content {
    display: flex;
    order: 1;
    padding: 40px;
    justify-content: center;
    flex-direction: column;
}

.program-results .photo-show {
    border-radius: 0 20px 20px 0;
    box-shadow: 
        20px 0 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.08);
    order: 2;
    object-fit: cover;
    z-index: 1;
    height: 100%;
    position: relative;
    width: 100%;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.05) translateX(-5%);
}

.program-results h3::after {
    position: absolute;
    content: "";
    background: linear-gradient(
        to right, 
        rgb(120,135,181) 0%, 
        rgb(176,159,193) 50%,
        transparent 100%
    );
    left: 0;
    border-radius: 10px;
    height: 3px;
    width: 80px;
    bottom: -10px;
}

.program-results li::before {
    left: 0;
    transition: all 0.4s ease;
    width: 4px;
    content: "";
    top: 0;
    height: 100%;
    opacity: 0.7;
    background: linear-gradient(
        to bottom,
        rgb(176,159,193) 0%,
        rgb(120,135,181) 100%
    );
    position: absolute;
}

.program-results li:hover {
    background: linear-gradient(
        to right,
        rgb(231,218,229) 0%,
        #ffffff 100%
    );
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.program-results li p {
    font-size: 13px;
    margin: 0;
    position: relative;
    z-index: 2;
    gap: 15px;
    display: flex;
    color: #000000;
    align-items: center;
}

.program-results svg path {
    transition: all 0.5s ease;
    fill: rgb(176,159,193);
}

.program-results li:hover svg path {
    fill: rgb(120,135,181);
}

.ty-div {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(231,218,229) 0%, rgba(255,255,255,0.95) 100%);
}

.ty-div::after {
    z-index: 0;
    right: -5%;
    transform: rotate(15deg);
    content: "";
    height: 300px;
    opacity: 0.1;
    filter: blur(80px);
    position: absolute;
    background: linear-gradient(225deg, rgb(176,159,193,0.5) 0%, transparent 70%);
    width: 300px;
    top: -10%;
}

.ty-div .creds-block {
    transform-style: preserve-3d;
    display: grid;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04), 
                0 5px 15px rgba(0,0,0,0.03),
                0 0 0 1px rgba(0,0,0,0.02);
    position: relative;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 40px;
    background: #ffffff;
    perspective: 1000px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), 
                box-shadow 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.ty-div .creds-block > div:first-child {
    transition: transform 0.5s ease;
    padding-left: 20px;
    position: relative;
    transform: translateZ(20px);
}

.ty-div .creds-block > div:first-child::before {
    transform: translateY(-50%);
    left: 0;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    height: 8px;
    background: rgb(176,159,193);
    content: "";
    width: 8px;
    top: 50%;
    position: absolute;
}

.ty-div h5::after {
    bottom: -8px;
    position: absolute;
    width: 60px;
    animation-delay: 0.8s;
    transform: scaleX(0);
    background: linear-gradient(to right, rgb(176,159,193), transparent);
    height: 2px;
    transform-origin: left;
    left: 0;
    content: "";
    animation: lineGrow 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.ty-div p {
    margin: 0;
    opacity: 0;
    color: #000000;
    padding: 25px 30px;
    font-size: 14px;
    line-height: 1.8;
    background: rgba(245, 245, 250, 0.7);
    transform: translateY(20px);
    position: relative;
    animation-delay: 0.3s;
    animation: slideUp 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    transition: border-left 0.3s ease, background 0.3s ease;
    border-left: 1px solid rgba(rgb(176,159,193,0.5), 0.2);
}

.course-summary {
    position: relative;
    background: rgb(231,218,229);
    padding: 120px 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px);
    overflow: hidden;
}

.course-summary .container {
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
    z-index: 5;
    margin: 0 auto;
}

.course-summary .skill-master {
    display: grid;
    position: relative;
    perspective: 1000px;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.course-summary .section-content {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-radius: 11px;
    display: flex;
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    width: 100%;
    position: relative;
    transform: translateZ(0);
    flex-direction: column;
    gap: 30px;
    animation: floatPanel 8s ease-in-out infinite;
}

.course-summary .section-content .description {
    transform: translateZ(0);
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #000000;
    transition: all 0.5s ease;
    background: rgba(255, 255, 255, 0.07);
    z-index: 2;
    backdrop-filter: blur(4px);
    position: relative;
    line-height: 1.9;
    text-align: justify;
    border-radius: 10px;
    margin-bottom: 25px;
    font-weight: 400;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    border-left: 3px solid rgb(176,159,193,0.5);
    padding: 18px;
}

.course-summary .section-content .description:first-of-type {
    border-left-color: rgb(176,159,193);
}

.course-summary .section-content .description::before {
    height: 100%;
    width: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 10px;
    top: 0;
    position: absolute;
    left: 0;
    content: "";
}

.course-summary .photo-show:hover {
    transform: scale(1.02) translateY(-5px) rotateY(0deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 2px rgb(176,159,193,0.5);
}

.our-story {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}

.our-story::before {
    left: 0;
    height: 100%;
    top: 0;
    background-color: rgba(21, 25, 40, 0.85);
    content: "";
    position: absolute;
    width: 100%;
    z-index: 1;
}

.our-story .container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.our-story .section-content {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transform: perspective(1000px) rotateY(-2deg);
    backdrop-filter: blur(10px);
    position: relative;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.our-story h1::after {
    transform: scaleX(0.8);
    position: absolute;
    left: 0;
    background: linear-gradient(to right, rgb(176,159,193), rgb(120,135,181));
    width: 80px;
    bottom: -15px;
    content: "";
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 3px;
    transform-origin: left center;
}

.our-story h4::before {
    background: rgb(176,159,193);
    content: "";
    position: absolute;
    width: 12px;
    top: 50%;
    left: 0;
    transition: transform 0.3s ease;
    height: 12px;
    transform: translateY(-50%) rotate(45deg);
}

.our-story span {
    hyphens: auto;
    font-size: 15px;
    color: #ffffff;
    max-width: 90%;
    position: relative;
    text-align: justify;
    display: block;
    font-family: Arial, sans-serif;
    padding-left: 2rem;
    transition: opacity 0.3s ease;
    opacity: 0.9;
    line-height: 1.8;
}

.cookieWarningMessage {
    left: 50%;
    position: fixed;
    border-radius: 15px;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    width: 90%;
    background: #ffffff;
    bottom: 20px;
    overflow: hidden;
    font-family: Arial, sans-serif;
    max-width: 500px;
}

.cookieWarningMessage h5 {
    margin-bottom: 10px;
    font-size: 23px;
    color: rgb(176,159,193);
    font-weight: 700;
    text-align: center;
}

.cookie-updates {
    text-decoration: none;
    background: rgb(176,159,193);
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 14px;
    margin: 5px;
    transition: background 0.3s ease-in-out;
    border-radius: 10px;
    text-align: center;
    width: calc(50% - 10px);
    color: #ffffff;
    padding: 10px 20px;
}

.cookieWarningMessage p a:hover {
    color: rgb(120,135,181);
}

.data-analysis {
    padding: 100px 0;
    background: rgb(231,218,229);
    position: relative;
    background-image: linear-gradient(135deg, rgb(231,218,229) 0%, #ffffff 100%);
    margin: 60px 0;
    overflow: hidden;
}

.data-analysis::after {
    bottom: 0;
    content: '';
    background: radial-gradient(circle at center, transparent 50%, rgb(231,218,229) 100%);
    top: 0;
    right: 0;
    left: 0;
    position: absolute;
    z-index: 2;
}

.data-analysis .statistics-growth {
    display: grid;
    position: relative;
    gap: 25px;
    order: 2;
    grid-template-columns: 1fr 1fr;
}

.data-analysis .smart-statistics {
    position: relative;
    padding-right: 30px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    order: 1;
}

.data-analysis .statistics-gain {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
    line-height: 1.3;
    color: #000000;
    font-size: 38px;
    font-weight: 700;
}

.data-analysis .statistics-edges {
    justify-content: center;
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
    border-radius: 13px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    transition: all 0.4s ease;
    padding: 30px;
    display: flex;
    border-left: 3px solid rgb(176,159,193);
}

.data-analysis .statistics-edges::after {
    position: absolute;
    border-radius: 50%;
    content: '';
    height: 80px;
    transition: all 0.5s ease;
    top: -40px;
    width: 80px;
    background: rgb(176,159,193);
    right: -40px;
    opacity: 0.1;
}

.data-analysis .statistics-edges:hover::after {
    transform: scale(1.2);
}

.data-analysis .statistics-edges h4 {
    font-weight: 700;
    font-size: calc(38px * 1.2);
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.data-analysis .statistics-edges span {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    opacity: 0.9;
}

.data-analysis svg path {
    fill: rgb(176,159,193);
}

.data-analysis .statistics-edges:hover svg {
    opacity: 0.8;
    transform: translateX(5px);
}

header .container {
    position: relative;
    padding: 1rem 2rem;
}

header .main-know {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

header .head-section {
    gap: 2rem;
    display: flex;
    position: relative;
    align-items: center;
}

header .head-section::before {
    height: calc(100% + 30px);
    top: -15px;
    border-radius: 18px;
    position: absolute;
    opacity: 0.1;
    left: -30px;
    width: calc(100% + 60px);
    z-index: -1;
    transform: skewX(-15deg);
    background: linear-gradient(90deg, transparent 0%, rgb(176,159,193,0.5) 50%, transparent 100%);
    content: "";
}

header .header-tutor:hover {
    transform: translateY(-2px);
    color: rgb(176,159,193);
}

header .header-tutor:hover::before {
    width: 100%;
}

header .main-head {
    text-decoration: none;
    position: relative;
    z-index: 2;
    align-items: center;
    display: flex;
}

header .main-head:hover svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgb(176,159,193,0.5));
}

.education-history::before {
    position: absolute;
    content: "";
    background-size: 120px 120px;
    left: 0;
    z-index: 0;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 49.5%, rgb(176,159,193,0.5) 49.5%, rgb(176,159,193,0.5) 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgb(120,135,181,0.5) 49.5%, rgb(120,135,181,0.5) 50.5%, transparent 50.5%);
    transform: perspective(1000px) rotateX(5deg);
    top: 0;
    width: 100%;
    opacity: 0.1;
}

.education-history .learning-feedback:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.education-history .learning-feedback::before {
    right: -10px;
    top: -10px;
    content: "";
    transition: opacity 0.5s ease;
    position: absolute;
    background: linear-gradient(135deg, rgb(176,159,193,0.5) 0%, rgb(120,135,181,0.5) 100%);
    bottom: -10px;
    left: -10px;
    filter: blur(8px);
    opacity: 0;
    z-index: -1;
}

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

.education-history .learning-feedback:hover .photo-show {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateZ(50px) scale(1.05);
}

.education-history .photo-show::after {
    background: linear-gradient(135deg, rgb(176,159,193,0.5) 0%, transparent 100%);
    height: 100%;
    transition: opacity 0.4s ease;
    top: 0;
    content: "";
    width: 100%;
    opacity: 0.3;
    position: absolute;
    left: 0;
}

.education-history .name::after {
    position: absolute;
    content: "";
    bottom: -10px;
    width: 60px;
    transform-origin: left;
    background: rgb(120,135,181);
    transition: transform 0.4s ease-out;
    height: 3px;
    transform: scaleX(0.7);
    left: 0;
}

.education-history .learning-feedback > div:nth-child(2) > div {
    transform: translateZ(10px);
    color: rgb(120,135,181);
    font-weight: 600;
    position: relative;
    font-size: calc(17px * 1.1);
    margin-top: 1.5rem;
    font-family: Arial, sans-serif;
}

.education-history .learning-feedback:hover .job-tasks::before {
    opacity: 0.4;
    transform: translateZ(15px) translateY(-10px);
}

.secure-wrap {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(231,218,229) 0%, rgba(245, 247, 250, 0.95) 100%);
    padding: 5rem 1.5rem;
}

.secure-wrap::after {
    height: 40%;
    content: "";
    z-index: 0;
    opacity: 0.2;
    right: -10%;
    transform: rotate(-15deg);
    position: absolute;
    top: -10%;
    background: linear-gradient(120deg, rgb(120,135,181,0.5) 0%, transparent 70%);
    width: 40%;
}

.secure-wrap .container {
    transform: translateZ(0);
    max-width: 1140px;
    background-color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 3.5rem 4rem;
}

.secure-wrap h2 {
    margin: 3rem 0 1.5rem;
    line-height: 1.3;
    color: #000000;
    position: relative;
    font-size: 32px;
    padding-left: 1.2rem;
    font-weight: 600;
    transform: translateX(-1.2rem);
}

.secure-wrap h2::before {
    top: 0.5rem;
    width: 4px;
    content: "";
    position: absolute;
    border-radius: 2px;
    bottom: 0.5rem;
    left: 0;
    background: rgb(176,159,193);
}

.secure-wrap h3::before {
    background: rgb(120,135,181);
    border-radius: 1.5px;
    position: absolute;
    left: 0;
    top: 0.4rem;
    content: "";
    width: 3px;
    bottom: 0.4rem;
}

.secure-wrap h4::before {
    top: 0.3rem;
    width: 2px;
    bottom: 0.3rem;
    border-radius: 1px;
    content: "";
    left: 0;
    position: absolute;
    background: rgb(120,135,181,0.5);
}

.secure-wrap strong {
    display: inline-block;
    color: #000000;
    position: relative;
    font-weight: 600;
}

.secure-wrap ul {
    position: relative;
    list-style: none;
    padding-left: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.secure-wrap li {
    padding-left: 1.8rem;
    font-size: 17px;
    position: relative;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.6;
}

.secure-wrap li:hover::before {
    transform: rotate(135deg);
    background-color: rgb(176,159,193);
}

.secure-wrap span {
    font-size: 17px;
    line-height: 1.7;
    padding: 0.5rem 0;
    position: relative;
    margin-bottom: 1.5rem;
    color: #000000;
    display: block;
}

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

.education-framework::after {
    bottom: 0;
    background: linear-gradient(90deg, rgb(120,135,181) 0%, rgb(176,159,193) 50%, rgb(120,135,181) 100%);
    content: "";
    animation: gradientMove 12s linear infinite;
    width: 100%;
    left: 0;
    position: absolute;
    height: 6px;
    z-index: 2;
}

.education-framework .container {
    position: relative;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 3;
    max-width: 1200px;
}

.education-framework .creds-block:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.education-framework .creds-block::before {
    filter: blur(5px);
    top: -10px;
    content: "";
    background: linear-gradient(45deg, rgb(176,159,193) 0%, transparent 40%, transparent 60%, rgb(120,135,181) 100%);
    position: absolute;
    left: -10px;
    transform: translate3d(0, 0, -50px);
    opacity: 0.6;
    right: -10px;
    z-index: -1;
    bottom: -10px;
}

.education-framework h3::after {
    left: 0;
    bottom: -8px;
    height: 3px;
    position: absolute;
    transform-origin: left;
    width: 60%;
    content: "";
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background: rgb(176,159,193);
}

.education-framework p span {
    position: relative;
    z-index: 2;
    display: block;
}

.education-framework p::before {
    content: "";
    background: rgb(120,135,181,0.5);
    transform: rotate(45deg);
    width: 40px;
    border-radius: 10px;
    position: absolute;
    left: -20px;
    height: 40px;
    top: -10px;
    opacity: 0.3;
    z-index: 1;
}

.homepage .creds-block {
    height: 100%;
    width: 100%;
    justify-content: flex-start;
    z-index: 2;
    display: flex;
    align-items: center;
    position: relative;
}

.homepage .master-studyfast {
    width: 100%;
    position: absolute;
    height: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
}

.homepage .online-tech {
    width: fit-content;
    animation: carouselSlide 30s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    display: flex;
    height: 100%;
}

.homepage .fast-school img {
    object-fit: cover;
    transform: scale(1.05);
    animation: zoomEffect 10s infinite alternate;
    transition: transform 8s ease-in-out;
    width: 100%;
    height: 100%;
    filter: brightness(0.8) contrast(1.1) saturate(1.2);
}

.homepage .section-content {
    max-width: 600px;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    margin-left: 10%;
    animation: textAppear 1s ease-out forwards;
    z-index: 3;
    opacity: 1;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    border-left: 4px solid rgb(176,159,193);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.05),
                0 0 20px rgba(rgb(176,159,193), 0.2);
    backdrop-filter: blur(8px);
    transform: translateY(0);
}

.homepage .section-content p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 0.3px;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.homepage .section-content .request-support::before {
    top: 0;
    animation: buttonShine 3s infinite;
    height: 100%;
    transition: all 0.6s ease;
    width: 100%;
    content: "";
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 100%
    );
    left: -100%;
    position: absolute;
}

.homepage .section-content .request-support:hover {
    transform: translateY(-3px);
    background: linear-gradient(
        90deg,
        rgb(120,135,181) 0%,
        rgb(176,159,193) 100%
    );
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}



@media screen and (max-width: 768px) {.contact-form-box {
    padding: 3rem 0;
}.contact-form-box h2 {
    font-size: calc(39px * 0.8);
    margin-bottom: 2rem;
}.contact-form-box .support-message h3 {
    font-size: calc(36px * 0.9);
}.contact-form-box .support-message input:not([type="checkbox"]):not([type="submit"]) {
    margin-bottom: 1rem;
    padding: 0.8rem 1.2rem;
}.contact-form-box .support-message .request-inquiry {
    align-items: flex-start;
}.contact-form-box .support-message .request-inquiry input[type="checkbox"] {
    margin-top: 0.2rem;
}
}



@media (max-width: 767px) {footer .zoom-meet {
    padding: 60px 0 30px;
}footer .contact-form {
    padding: 20px;
    grid-template-columns: 1fr;
    margin-bottom: 40px;
}footer .head-section h5, footer .subscribe_holder h5 {
    margin-bottom: 20px;
}footer .head-section h5::after {
    bottom: -8px;
}footer .subscribe_holder {
    padding: 25px 20px;
}footer .proposal-cta {
    margin-top: 40px;
}
}



@media (min-width: 768px) {.pricing-plan-card .study-rates {
    grid-template-columns: repeat(2, 1fr);
}.pricing-plan-card .tuition-plans {
    padding: 40px;
}.pricing-plan-card .photo-show {
    height: 220px;
}
}



@media (min-width: 992px) {.pricing-plan-card .pricing-rates {
    align-items: center;
    gap: 50px;
    flex-direction: row;
}.pricing-plan-card .study-rates {
    grid-template-columns: repeat(2, 1fr);
    width: 65%;
}.pricing-plan-card .group-rates {
    width: 35%;
    text-align: left;
    margin: 0;
}.pricing-plan-card .group-rates h2::after {
    transform: none;
    left: 0;
}.pricing-plan-card .value-deals {
    margin: 0;
}
}



@media (max-width: 480px) {.pricing-plan-card {
    padding: 60px 0;
}.pricing-plan-card .group-rates h2 {
    font-size: calc(32px * 0.85);
}.pricing-plan-card .tuition-plans h3 {
    font-size: calc(23px * 0.95);
}.pricing-plan-card .photo-show {
    height: 160px;
}}



@media (max-width: 767px) {.check-it-out-now {
    padding: 4rem 0;
}.check-it-out-now h2 {
    margin-bottom: 2.5rem;
    font-size: calc(33px * 0.85);
}.check-it-out-now .creds-block {
    padding: 2rem;
}.check-it-out-now .request-support {
    padding: 0.9rem 1.8rem;
    width: 100%;
}.check-it-out-now h2::before,
    .check-it-out-now h2::after {
    width: 30px;
    height: 30px;
}
}



@media (max-width: 992px) {.program-results {
    padding: 80px 0;
}.program-results .creds-block {
    gap: 30px;
}.program-results .section-content {
    padding: 30px;
}
}



@media (max-width: 768px) {.program-results .creds-block {
    gap: 40px;
    grid-template-columns: 1fr;
}.program-results .photo-show {
    order: 1;
    max-height: 350px;
    transform: scale(1);
    border-radius: 20px 20px 0 0;
    width: 100%;
}.program-results .section-content {
    order: 2;
    padding: 30px;
}.program-results h3::before {
    left: -30px;
    width: 20px;
}
}



@media (min-width: 768px) {.ty-div {
    padding: 150px 0;
}.ty-div .creds-block {
    padding: 80px 60px;
    grid-template-columns: 1fr 1fr;
}.ty-div .creds-block > div:first-child {
    align-items: center;
    display: flex;
}.ty-div h5 {
    font-size: calc(23px * 1.2);
    margin-bottom: 0;
}.ty-div p {
    font-size: calc(14px * 1.05);
}
}



@media (max-width: 767px) {.ty-div {
    padding: 80px 0;
}.ty-div .creds-block {
    padding: 40px 30px;
}.ty-div h5 {
    font-size: calc(23px * 0.9);
}.ty-div p {
    padding: 20px 25px;
    line-height: 1.7;
    font-size: calc(14px * 0.95);
}
}



@media (max-width: 480px) {.ty-div {
    padding: 60px 0;
}.ty-div .creds-block {
    padding: 30px 20px;
}.ty-div h5 {
    font-size: calc(23px * 0.85);
}.ty-div p {
    padding: 15px 20px;
    font-size: calc(14px * 0.9);
}}



@media screen and (max-width: 991px) {.course-summary {
    padding: 80px 0;
}.course-summary .skill-master {
    grid-template-columns: 1fr;
    gap: 40px;
}.course-summary .skill-master::before {
    top: -20px;
    transform: none;
    width: calc(100% + 40px);
    left: -20px;
    height: calc(100% + 40px);
}.course-summary .section-content {
    transform: none;
    order: 2;
    animation: none;
}.course-summary .photo-show {
    order: 1;
    min-height: 400px;
    animation: pulse 8s infinite alternate;
    transform: none;
}.course-summary .photo-show:hover {
    transform: scale(1.02) translateY(-5px);
}.course-summary .section-content h2 {
    margin-right: auto;
    text-align: center;
    display: block;
    margin-left: auto;
    max-width: 100%;
}.course-summary .section-content .description {
    text-align: left;
}
}



@media screen and (max-width: 480px) {.course-summary {
    padding: 40px 0;
}.course-summary .section-content {
    gap: 15px;
    padding: 20px;
}.course-summary .section-content h2 {
    font-size: calc(32px * 0.7);
    padding: 8px 12px;
    letter-spacing: 1px;
}.course-summary .section-content .description {
    line-height: 1.6;
    font-size: calc(13px * 0.9);
    padding: 10px;
}.course-summary .photo-show {
    min-height: 280px;
}}



@media (max-width: 991px) {.our-story::after {
    right: -50%;
    width: 100%;
}.our-story .section-content {
    transform: perspective(1000px) rotateY(-1deg);
}
}



@media (max-width: 576px) {.our-story {
    padding: 3rem 0;
}.our-story .container {
    padding: 0 1rem;
}.our-story .section-content {
    padding: 1.5rem;
}.our-story h1 {
    margin-bottom: 1.5rem;
    font-size: calc(39px * 0.8);
}.our-story span {
    line-height: 1.6;
    font-size: calc(15px * 0.9);
    padding-left: 1rem;
}.our-story h4 {
    padding-left: 1rem;
    font-size: calc(24px * 0.9);
}.our-story h4::before {
    width: 8px;
    height: 8px;
}.our-story h1::after {
    height: 2px;
    width: 50px;
}
}



@media screen and (max-width: 992px) {.data-analysis .container {
    gap: 40px;
    grid-template-columns: 1fr;
}.data-analysis .statistics-growth {
    order: 2;
}.data-analysis .smart-statistics {
    order: 1;
    padding-right: 0;
    text-align: center;
    align-items: center;
}.data-analysis .smart-statistics::before {
    height: 3px;
    background: linear-gradient(
            to right,
            transparent,
            rgb(176,159,193),
            rgb(120,135,181),
            transparent
        );
    width: 60%;
    top: auto;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
}.data-analysis .statistics-gain,
    .data-analysis .statistics-pros {
    padding-left: 0;
}
}



@media (max-width: 991px) {header .container {
    padding: 0.8rem 1.5rem;
}header .head-section {
    gap: 1.5rem;
}header .header-tutor {
    font-size: calc(13px - 1px);
}
}



@media (min-width: 768px) {.education-history .learning-feedback {
    grid-template-areas:
            "photo info"
            "quote quote";
    padding: 4rem;
    align-items: center;
    grid-template-columns: auto 1fr;
}.education-history .learning-feedback > div:nth-child(2) {
    padding-left: 2rem;
}.education-history .job-tasks {
    margin-top: 2rem;
}
}



@media (min-width: 992px) {.education-history {
    padding: 8rem 0;
}.education-history .learning-feedback {
    grid-template-areas:
            "photo info"
            "photo quote";
    padding: 5rem;
    grid-template-rows: auto 1fr;
    grid-template-columns: auto 1fr;
}.education-history .job-tasks {
    padding-left: 2rem;
    margin-top: 0;
}.education-history .photo-show {
    width: 280px;
    height: 280px;
}
}



@media (max-width: 991px) {.secure-wrap {
    padding: 4rem 1rem;
}.secure-wrap .container {
    padding: 2.5rem 3rem;
}.secure-wrap h1 {
    margin-bottom: 2rem;
    font-size: calc(43px * 0.9);
}.secure-wrap h2 {
    margin: 2.5rem 0 1.2rem;
    font-size: calc(32px * 0.9);
}
}



@media (max-width: 767px) {.secure-wrap {
    padding: 3rem 0.8rem;
}.secure-wrap .container {
    padding: 2rem 1.5rem;
}.secure-wrap h1 {
    margin-bottom: 1.8rem;
    padding-bottom: 1rem;
    font-size: calc(43px * 0.8);
}.secure-wrap h1::after {
    width: 6rem;
}.secure-wrap h2 {
    padding-left: 1rem;
    margin: 2rem 0 1rem;
    font-size: calc(32px * 0.8);
    transform: translateX(-1rem);
}.secure-wrap h3 {
    font-size: calc(32px * 0.7);
    padding-left: 0.8rem;
    transform: translateX(-0.8rem);
    margin: 1.8rem 0 1rem;
}.secure-wrap h4 {
    margin: 1.5rem 0 0.8rem;
    font-size: calc(32px * 0.6);
}.secure-wrap p, 
    .secure-wrap span, 
    .secure-wrap li {
    font-size: calc(17px * 0.95);
    margin-bottom: 1.2rem;
}.secure-wrap ul {
    padding-left: 0.8rem;
    margin: 1.2rem 0 1.8rem;
}.secure-wrap li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
}
}



@media screen and (min-width: 768px) {.education-framework {
    padding: 8rem 0;
}.education-framework .creds-block {
    gap: 2rem;
    grid-template-columns: 1fr;
    padding: 4rem;
}.education-framework h3 {
    margin-bottom: 2rem;
    font-size: 38px;
}.education-framework::before {
    width: 45%;
}
}



@media screen and (min-width: 992px) {.education-framework .creds-block {
    transform: perspective(1500px) rotateY(3deg);
}.education-framework h3 {
    font-size: calc(38px * 1.1);
}.education-framework p {
    line-height: 1.9;
    font-size: calc(13px * 1.05);
}
}



@media (prefers-reduced-motion: reduce) {.education-framework .creds-block,
    .education-framework .creds-block:hover,
    .education-framework::before,
    .education-framework h3::after {
    transition: none;
    animation: none;
    transform: none;
}.education-framework h3,
    .education-framework p {
    animation: none;
    opacity: 1;
}}



@media screen and (max-width: 768px) {.homepage {
    height: auto;
    min-height: unset;
}.homepage .creds-block {
    flex-direction: column;
    padding: 4rem 0;
    justify-content: center;
}.homepage .fast-school {
    height: 100vh;
}.homepage .section-content {
    margin: 0 auto;
    padding: 2rem;
    max-width: 90%;
    backdrop-filter: blur(10px);
}.homepage .section-content h1 {
    font-size: calc(43px * 0.8);
}.homepage .section-content p {
    font-size: calc(15px * 0.95);
}
}



@keyframes subtle-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}



@keyframes pulseLight {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.1;
    }
}

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

@keyframes borderGlow {
    0% {
        opacity: 0.3;
        filter: blur(3px);
    }
    100% {
        opacity: 0.6;
        filter: blur(1px);
    }
}



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



@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.98);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}



@keyframes glowPulse {
    0% {
        opacity: 0.7;
        box-shadow: 0 0 10px rgb(176,159,193,0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgb(176,159,193);
    }
}



@keyframes floatImage {
    0%, 100% {
        transform: translateZ(0) rotateY(-5deg) translateY(0);
    }
    50% {
        transform: translateZ(50px) rotateY(-3deg) translateY(-10px);
    }
}



@keyframes glow {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgb(176,159,193,0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgb(176,159,193);
    }
}



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



@keyframes expandWidth {
    from { width: 0; }
    to { width: 8rem; }
}



@keyframes gradientShift {
    0% {
        opacity: 0.5;
        transform: translateX(20%) skewX(-15deg);
    }
    100% {
        opacity: 0.8;
        transform: translateX(25%) skewX(-18deg);
    }
}



@keyframes carouselSlide {
    0%, 16% {
        transform: translateX(0);
    }
    20%, 36% {
        transform: translateX(-100vw);
    }
    40%, 56% {
        transform: translateX(-200vw);
    }
    60%, 76% {
        transform: translateX(-300vw);
    }
    80%, 96% {
        transform: translateX(-400vw);
    }
    100% {
        transform: translateX(0);
    }
}



@keyframes buttonShine {
    0% {
        left: -100%;
    }
    40% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

