﻿* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}header,footer {
    width: 100%;
}.footer_social0514 {
    flex: 0 0 auto;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1114px;
}html,body {
    scroll-behavior: smooth;
    color: #000000;
    height: 100%;
    font-family: Arial, sans-serif;
    min-height: 100%;
}.main_core3108 {
    flex: 1 0 auto;
}svg {
    width: 30px;
    height: 30px;
}a {
    text-decoration: none;
    color: inherit;
}.wrapper-skeleton4591 {
    height: 100%;
    flex-direction: column;
    min-height: 100%;
    display: flex;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.potential_learners1693 {
    background: linear-gradient(135deg, rgb(239,234,238), rgb(212,198,210,0.5));
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 5rem 0;
}.potential_learners1693::before {
    animation: rotateRings 30s linear infinite;
    content: '';
    top: 0;
    position: absolute;
    left: 0;
    opacity: 0.3;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: 
        radial-gradient(circle at center, transparent 30%, rgb(179,161,175,0.5) 31%, transparent 32%) 0 0 / 80px 80px,
        radial-gradient(circle at center, transparent 20%, rgb(212,198,210,0.5) 21%, transparent 22%) 40px 40px / 80px 80px;
}.potential_learners1693::after {
    position: absolute;
    animation: pulsateRing 10s ease-in-out infinite alternate;
    top: 50%;
    z-index: -2;
    height: 500px;
    content: '';
    transform: translate(-50%, -50%);
    box-shadow: 0 0 80px 20px rgb(212,198,210,0.5);
    left: 50%;
    width: 500px;
    border-radius: 50%;
    border: 2px solid rgb(179,161,175,0.5);
    opacity: 0.2;
}.potential_learners1693 .learning_classes0189 {
    max-width: 1200px;
    position: relative;
    padding: 0 2rem;
    margin: 0 auto;
    z-index: 3;
}.potential_learners1693 h3 {
    text-align: center;
    font-size: 29px;
    margin-bottom: 3.5rem;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
}.potential_learners1693 h3::before {
    border-radius: 50px;
    box-shadow: 0 0 10px rgb(212,198,210), 0 0 20px rgb(212,198,210,0.5);
    position: absolute;
    content: '';
    transform: translateX(-50%);
    background: rgb(212,198,210);
    width: 200px;
    bottom: -12px;
    left: 50%;
    height: 3px;
}.potential_learners1693 h3::after {
    opacity: 0.6;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    content: '';
    bottom: -38px;
    animation: orbitRotate 8s infinite linear;
    border: 2px solid rgb(212,198,210,0.5);
    position: absolute;
}.potential_learners1693 ul {
    padding: 0;
    margin: 0;
    display: grid;
    list-style: none;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}.potential_learners1693 ul li {
    padding: 1.5rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 50px;
    align-items: center;
    font-size: 18px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    font-weight: 400;
    overflow: hidden;
}.potential_learners1693 ul li:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}.potential_learners1693 ul li::before {
    border-radius: 50%;
    opacity: 0.5;
    background: radial-gradient(circle, rgb(179,161,175,0.5) 0%, transparent 70%);
    top: -50%;
    width: 100px;
    height: 100px;
    content: '';
    z-index: -1;
    animation: floatBubble 15s infinite ease-in-out alternate;
    position: absolute;
    left: -50%;
}.potential_learners1693 ul li::after {
    height: 80px;
    position: absolute;
    right: -30px;
    border: 2px solid rgb(212,198,210,0.5);
    border-radius: 50%;
    bottom: -30px;
    animation: pulsateBubble 5s infinite alternate;
    content: '';
    width: 80px;
    opacity: 0.3;
}.potential_learners1693 ul li svg {
    width: 38px;
    flex-shrink: 0;
    height: 38px;
    margin-right: 1.5rem;
    transition: transform 0.4s ease;
    transform: rotate(0deg);
}.potential_learners1693 ul li:hover svg {
    transform: rotate(15deg);
}.potential_learners1693 ul li svg path {
    transition: fill 0.4s ease;
    fill: rgb(179,161,175);
}.potential_learners1693 ul li:hover svg path {
    fill: rgb(212,198,210);
}

@keyframes rotateRings {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulsateRing {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

@keyframes orbitRotate {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes floatBubble {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes pulsateBubble {
    0% {
        transform: scale(0.8);
        opacity: 0.2;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.4;
    }
}

@media (max-width: 992px) {.potential_learners1693 {
    padding: 4rem 0;
}.potential_learners1693 h3 {
    font-size: calc(29px * 0.9);
}.potential_learners1693 ul {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
}.potential_learners1693 ul li {
    border-radius: 40px;
    padding: 1.2rem 1.8rem;
}
}

@media (max-width: 576px) {.potential_learners1693 {
    padding: 3rem 0;
}.potential_learners1693 h3 {
    font-size: calc(29px * 0.8);
    margin-bottom: 3rem;
}.potential_learners1693 ul {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}.potential_learners1693 ul li {
    padding: 1rem 1.5rem;
    border-radius: 30px;
}.potential_learners1693 ul li svg {
    width: 32px;
    height: 32px;
    margin-right: 1rem;
}}.study_process5207 {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(239,234,238) 0%, rgba(245, 247, 250, 0.92) 100%);
    position: relative;
    overflow: hidden;
}.study_process5207::before {
    transform: rotate(15deg);
    z-index: 1;
    background: linear-gradient(225deg, rgb(212,198,210,0.5) 10%, transparent 70%);
    filter: blur(30px);
    content: "";
    height: 70%;
    top: -10%;
    right: -5%;
    width: 35%;
    position: absolute;
}.study_process5207::after {
    position: absolute;
    left: -10%;
    filter: blur(40px);
    z-index: 1;
    transform: rotate(-10deg);
    bottom: -5%;
    content: "";
    width: 40%;
    height: 60%;
    background: linear-gradient(45deg, rgb(179,161,175,0.5) 10%, transparent 70%);
}.study_process5207 .container {
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}.study_process5207 .learning_classes0189 {
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    backdrop-filter: blur(5px);
    padding: 3.5rem;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.05),
                -15px -15px 30px rgba(255, 255, 255, 0.9),
                inset 3px 3px 6px rgba(255, 255, 255, 0.8),
                inset -3px -3px 6px rgba(0, 0, 0, 0.03);
}.study_process5207 .learning_classes0189:hover {
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07),
                -20px -20px 40px rgba(255, 255, 255, 0.95),
                inset 3px 3px 6px rgba(255, 255, 255, 0.8),
                inset -3px -3px 6px rgba(0, 0, 0, 0.03);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.study_process5207 .learning_classes0189 > div {
    background: linear-gradient(
        to right bottom,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.5)
    );
    position: relative;
    padding: 2.5rem;
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 85%, 
        95% 100%, 
        0% 100%
    );
}.study_process5207 .learning_classes0189 > div::before {
    z-index: -1;
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    top: 0;
}.study_process5207 h3 {
    transform: translateZ(10px);
    letter-spacing: -0.02em;
    font-size: 32px;
    position: relative;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000000;
    font-family: Arial, sans-serif;
    padding-bottom: 1rem;
}.study_process5207 h3::after {
    bottom: 0;
    position: absolute;
    width: 80px;
    height: 3px;
    transition: width 0.4s ease;
    left: 0;
    background: linear-gradient(to right, rgb(212,198,210), rgb(179,161,175));
    content: "";
}.study_process5207 .learning_classes0189:hover h3::after {
    width: 120px;
}.study_process5207 p {
    position: relative;
    font-size: 14px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 0;
    font-family: Arial, sans-serif;
}.study_process5207 p span {
    transition: transform 0.3s ease;
    position: relative;
    transform: translateZ(5px);
    display: block;
}.study_process5207 .learning_classes0189:hover p span {
    transform: translateZ(10px);
}

@media (max-width: 991px) {.study_process5207 {
    padding: 4rem 0;
}.study_process5207 .learning_classes0189 {
    transform: perspective(1000px) rotateX(1deg);
    padding: 2.5rem;
}.study_process5207 .learning_classes0189 > div {
    padding: 2rem;
}.study_process5207 h3 {
    font-size: calc(32px * 0.9);
}
}

@media (max-width: 767px) {.study_process5207 {
    padding: 3rem 0;
}.study_process5207 .learning_classes0189 {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05),
                    -10px -10px 20px rgba(255, 255, 255, 0.9),
                    inset 2px 2px 4px rgba(255, 255, 255, 0.8),
                    inset -2px -2px 4px rgba(0, 0, 0, 0.03);
    padding: 2rem 1.5rem;
}.study_process5207 .learning_classes0189 > div {
    padding: 1.5rem;
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 90%, 
            95% 100%, 
            0% 100%
        );
}.study_process5207 h3 {
    margin-bottom: 1rem;
    font-size: calc(32px * 0.8);
}.study_process5207 p {
    font-size: calc(14px * 0.95);
}
}

@media (max-width: 575px) {.study_process5207 {
    padding: 2.5rem 0;
}.study_process5207 .learning_classes0189 {
    padding: 1.5rem 1rem;
    transform: none;
}.study_process5207 .learning_classes0189 > div {
    padding: 1.25rem;
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 95%, 
            90% 100%, 
            0% 100%
        );
}.study_process5207 h3 {
    padding-bottom: 0.75rem;
    font-size: calc(32px * 0.7);
}.study_process5207 h3::after {
    height: 2px;
    width: 60px;
}.study_process5207 .learning_classes0189:hover h3::after {
    width: 80px;
}.study_process5207 p {
    font-size: calc(14px * 0.9);
    line-height: 1.6;
}}.reach_us4762 {
    overflow: hidden;
    padding: 80px 0;
    z-index: 1;
    position: relative;
    background: rgb(239,234,238);
}.reach_us4762::before {
    z-index: -1;
    left: 0;
    background: linear-gradient(45deg, 
        transparent 25%, 
        rgb(212,198,210,0.5) 25%, 
        rgb(212,198,210,0.5) 30%, 
        transparent 30%,
        transparent 45%, 
        rgb(179,161,175,0.5) 45%, 
        rgb(179,161,175,0.5) 50%, 
        transparent 50%);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    content: '';
    background-size: 200px 200px;
    top: 0;
}.reach_us4762 .container {
    z-index: 2;
    position: relative;
}.reach_us4762 .message_info5802 {
    border-radius: 18px;
    background: linear-gradient(135deg, rgb(239,234,238) 0%, rgba(255, 255, 255, 0.02) 100%);
    overflow: hidden;
    position: relative;
    border-top: 3px solid rgb(212,198,210);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
}.reach_us4762 .message_info5802::after {
    position: absolute;
    opacity: 0.1;
    right: 0;
    top: 0;
    height: 300px;
    content: '';
    z-index: -1;
    width: 300px;
    background: radial-gradient(circle, rgb(212,198,210,0.5) 0%, transparent 70%);
}.reach_us4762 .message_info5802 h2 {
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    color: rgb(212,198,210);
    font-size: 28px;
}.reach_us4762 .message_info5802 p {
    color: #000000;
    font-size: 12px;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 25px;
}.reach_us4762 .message_info5802 p:last-of-type {
    margin-bottom: 40px;
    position: relative;
    padding-left: 35px;
}.reach_us4762 .message_info5802 p:last-of-type svg {
    height: 24px;
    fill: none;
    stroke: rgb(212,198,210);
    position: absolute;
    width: 24px;
    stroke-width: 2;
    left: 0;
    top: 3px;
}.reach_us4762 .get_answers3024 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 10px;
}.reach_us4762 .form_edu2847 {
    font-weight: 600;
    position: relative;
    font-size: 12px;
    flex-direction: column;
    border-radius: 18px;
    height: 120px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: rgb(239,234,238);
    align-items: center;
    color: #000000;
    display: flex;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    justify-content: center;
    z-index: 1;
}.reach_us4762 .form_edu2847::before {
    left: 0;
    transition: opacity 0.4s ease;
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(135deg, transparent 0%, rgb(212,198,210,0.5) 100%);
    z-index: -1;
    top: 0;
    content: '';
    opacity: 0;
}.reach_us4762 .form_edu2847:hover {
    color: rgb(212,198,210);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}.reach_us4762 .form_edu2847:hover::before {
    opacity: 0.2;
}.reach_us4762 .form_edu2847 svg {
    margin-bottom: 15px;
    width: 40px;
    stroke-width: 1.5;
    height: 40px;
    fill: rgb(212,198,210);
    stroke: rgb(212,198,210);
    transition: all 0.3s ease;
}.reach_us4762 .form_edu2847:hover svg {
    stroke-width: 2;
    transform: scale(1.1);
}.reach_us4762 .form_edu2847 svg path {
    transition: all 0.3s ease;
}

@keyframes floatCircle {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@media screen and (max-width: 991px) {.reach_us4762 {
    padding: 60px 0;
}.reach_us4762 .message_info5802 {
    padding: 40px 30px;
}.reach_us4762 .get_answers3024 {
    grid-template-columns: repeat(3, 1fr);
}
}

@media screen and (max-width: 767px) {.reach_us4762 {
    padding: 50px 0;
}.reach_us4762 .message_info5802 {
    padding: 35px 25px;
}.reach_us4762 .message_info5802 h2 {
    font-size: calc(28px * 0.9);
}.reach_us4762 .get_answers3024 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}.reach_us4762 .form_edu2847 {
    height: 110px;
}
}

@media screen and (max-width: 480px) {.reach_us4762 {
    padding: 40px 0;
}.reach_us4762 .message_info5802 {
    padding: 30px 20px;
}.reach_us4762 .message_info5802 h2 {
    font-size: calc(28px * 0.8);
}.reach_us4762 .get_answers3024 {
    grid-template-columns: repeat(1, 1fr);
}.reach_us4762 .form_edu2847 {
    height: 100px;
}.reach_us4762 .form_edu2847 svg {
    margin-bottom: 10px;
    height: 35px;
    width: 35px;
}}.reach_out2347 {
    overflow: hidden;
    position: relative;
    background: linear-gradient(120deg, rgb(239,234,238) 0%, #1a1e2e 100%);
    padding: 90px 0;
}.reach_out2347::before {
    left: 0;
    height: 100%;
    z-index: 0;
    top: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.4) 0%, transparent 40%),
        linear-gradient(0deg, transparent 80%, rgba(rgb(212,198,210), 0.05) 100%);
    width: 100%;
    content: "";
    position: absolute;
}.reach_out2347::after {
    position: absolute;
    width: 100%;
    z-index: 1;
    content: "";
    left: 0;
    background: 
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 20px);
    bottom: 0;
    height: 100px;
}.reach_out2347 .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}.reach_out2347 h2 {
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 70px;
}.reach_out2347 h2::before {
    background: rgb(212,198,210);
    bottom: -20px;
    position: absolute;
    left: calc(50% - 50px);
    height: 2px;
    width: 30px;
    content: "";
}.reach_out2347 h2::after {
    bottom: -20px;
    height: 2px;
    position: absolute;
    content: "";
    background: rgb(212,198,210);
    left: calc(50% - 10px);
    width: 70px;
}.reach_out2347 .request_help4057 {
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    grid-template-columns: 6fr 4fr;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}.reach_out2347 .pic_img_wrap5417 {
    position: relative;
    min-height: 100%;
}.reach_out2347 .pic_img_wrap5417::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    left: 0;
    z-index: 1;
    content: "";
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
}.reach_out2347 .pic_img_wrap5417::after {
    width: 100%;
    z-index: 2;
    left: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(rgb(212,198,210), 0.1) 10px, rgba(rgb(212,198,210), 0.1) 11px);
    animation: scanLines 5s linear infinite;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
}@keyframes scanLines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.reach_out2347 .feedback_block9603 {
    padding: 50px;
    position: relative;
}.reach_out2347 .feedback_block9603::before {
    height: 100%;
    top: 0;
    background: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
    content: "";
    z-index: -1;
    width: 100%;
    left: 0;
    position: absolute;
}.reach_out2347 #contact {
    display: flex;
    gap: 25px;
    flex-direction: column;
}.reach_out2347 h3 {
    display: inline-block;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 1px;
}.reach_out2347 h3::after {
    background: rgb(212,198,210);
    height: 2px;
    position: absolute;
    width: 50px;
    bottom: -10px;
    content: "";
    left: 0;
}.reach_out2347 input[type="text"] {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    padding: 16px 20px;
    position: relative;
}.reach_out2347 input[type="text"]:focus {
    box-shadow: 0 0 15px rgba(rgb(212,198,210), 0.2);
    background: rgba(0, 0, 0, 0.3);
    border-color: rgb(212,198,210);
    outline: none;
}.reach_out2347 input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}.reach_out2347 .contact_reach6731 {
    align-items: flex-start;
    gap: 12px;
    margin-top: 5px;
    display: flex;
}.reach_out2347 .contact_reach6731 input[type="checkbox"] {
    appearance: none;
    margin-top: 2px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 24px;
    cursor: pointer;
    border-radius: 3px;
}.reach_out2347 .contact_reach6731 input[type="checkbox"]:checked {
    border-color: rgb(212,198,210);
    background: rgb(212,198,210);
}.reach_out2347 .contact_reach6731 input[type="checkbox"]:checked::after {
    height: 10px;
    content: "";
    left: 9px;
    top: 6px;
    position: absolute;
    width: 6px;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    border: solid #ffffff;
}.reach_out2347 .contact_reach6731 label {
    font-size: calc(16px - 2px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}.reach_out2347 .contact_reach6731 a {
    text-decoration: none;
    color: rgb(212,198,210);
    position: relative;
    transition: all 0.3s ease;
}.reach_out2347 .contact_reach6731 a:hover {
    color: #ffffff;
}.reach_out2347 .contact_reach6731 a::after {
    bottom: -2px;
    background: rgb(212,198,210);
    left: 0;
    content: "";
    height: 1px;
    width: 100%;
    position: absolute;
    transition: all 0.3s ease;
}.reach_out2347 .contact_reach6731 a:hover::after {
    background: #ffffff;
}.reach_out2347 .request_query0349 {
    background: rgb(212,198,210);
    border-radius: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    position: relative;
    padding: 16px 35px;
    letter-spacing: 1px;
    margin-top: 10px;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}.reach_out2347 .request_query0349::before {
    transition: all 0.5s ease;
    top: 0;
    height: 100%;
    content: "";
    width: 100%;
    position: absolute;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}.reach_out2347 .request_query0349:hover {
    transform: translateY(-3px);
    background: rgb(179,161,175);
}.reach_out2347 .request_query0349:hover::before {
    left: 100%;
}.reach_out2347 svg {
    width: 22px;
    fill: rgb(212,198,210);
    height: 22px;
    filter: drop-shadow(0 0 5px rgba(rgb(212,198,210), 0.5));
    transition: all 0.3s ease;
}.reach_out2347 svg path {
    fill: rgb(212,198,210);
    transition: all 0.3s ease;
}.reach_out2347 svg:hover {
    transform: scale(1.1);
    fill: #ffffff;
}.reach_out2347 svg:hover path {
    fill: #ffffff;
}

@media (max-width: 992px) {.reach_out2347 {
    padding: 70px 0;
}.reach_out2347 .request_help4057 {
    grid-template-columns: 1fr;
}.reach_out2347 .pic_img_wrap5417 {
    min-height: 300px;
}.reach_out2347 .feedback_block9603 {
    padding: 40px 30px 50px;
}
}

@media (max-width: 768px) {.reach_out2347 {
    padding: 50px 0;
}.reach_out2347 h2 {
    font-size: calc(36px - 4px);
    margin-bottom: 50px;
}.reach_out2347 .pic_img_wrap5417 {
    min-height: 250px;
}
}

@media (max-width: 576px) {.reach_out2347 {
    padding: 40px 0;
}.reach_out2347 .container {
    padding: 0 15px;
}.reach_out2347 h2 {
    margin-bottom: 40px;
    font-size: calc(36px - 6px);
}.reach_out2347 h2::before {
    left: calc(50% - 35px);
    width: 20px;
}.reach_out2347 h2::after {
    width: 50px;
}.reach_out2347 .feedback_block9603 {
    padding: 30px 20px 40px;
}.reach_out2347 #contact {
    gap: 20px;
}.reach_out2347 .request_query0349 {
    width: 100%;
}.reach_out2347 .pic_img_wrap5417 {
    min-height: 200px;
}}.offer_card2518 {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background-color: rgb(239,234,238);
}.offer_card2518::before {
    height: 100%;
    pointer-events: none;
    top: 0;
    content: "";
    z-index: 1;
    width: 100%;
    background: linear-gradient(135deg, rgb(212,198,210,0.5) 0%, transparent 70%);
    left: 0;
    position: absolute;
}.offer_card2518::after {
    z-index: 1;
    background: linear-gradient(225deg, rgb(179,161,175) 0%, transparent 80%);
    width: 20rem;
    right: -5rem;
    transform: rotate(-15deg);
    height: 20rem;
    content: "";
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
    bottom: -5rem;
}.offer_card2518 .container {
    padding: 0 2rem;
    position: relative;
    max-width: 1400px;
    z-index: 2;
    margin: 0 auto;
}.offer_card2518 .plan_fees3487 {
    gap: 3rem;
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
}.offer_card2518 .study_sub6521 {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-left: 4px solid rgb(212,198,210);
    transform: translateZ(0);
}.offer_card2518 .study_sub6521::before {
    left: -20px;
    background-color: rgb(212,198,210);
    z-index: -1;
    position: absolute;
    content: "";
    transform: rotate(45deg);
    height: 40px;
    width: 40px;
    top: 20px;
}.offer_card2518 .study_sub6521 h2 {
    color: #000000;
    transform: perspective(800px) translateZ(30px);
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
    font-size: 37px;
}.offer_card2518 .study_sub6521 h2::after {
    position: absolute;
    background: linear-gradient(90deg, rgb(212,198,210), rgb(179,161,175));
    content: "";
    width: 80px;
    height: 3px;
    left: 0;
    bottom: -10px;
}.offer_card2518 .study_sub6521 .price_grid4071 {
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
    max-width: 80%;
}.offer_card2518 .program_rate7984 {
    display: grid;
    perspective: 1000px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}.offer_card2518 .premium_grid8042 {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    display: block;
}.offer_card2518 .premium_grid8042:hover {
    transform: translateY(-10px);
}.offer_card2518 .basic_cost2973 {
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    display: flex;
    border-radius: 10px;
    transform: translateZ(0);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    position: relative;
}.offer_card2518 .premium_grid8042:hover .basic_cost2973 {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgb(212,198,210,0.5);
    transform: translateZ(20px);
}.offer_card2518 .premium_grid8042:nth-child(odd) .basic_cost2973 {
    transform: rotate(-1deg);
}.offer_card2518 .premium_grid8042:nth-child(even) .basic_cost2973 {
    transform: rotate(1deg);
}.offer_card2518 .premium_grid8042:hover .basic_cost2973 {
    transform: rotate(0) translateZ(20px);
}.offer_card2518 .pro_rates8971 {
    flex-direction: column;
    display: flex;
    overflow-wrap: break-word;
    position: relative;
    padding: 2rem;
    flex: 1;
    z-index: 2;
    word-break: break-word;
}.offer_card2518 .pro_rates8971::before {
    left: 0;
    z-index: -1;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    content: "";
    top: 0;
    position: absolute;
    width: 100%;
}.offer_card2518 .pro_rates8971 h3 {
    color: #000000;
    font-weight: 600;
    transition: transform 0.3s ease;
    font-size: calc(19px * 1.2);
    position: relative;
    transform: translateZ(10px);
    margin-bottom: 1rem;
}.offer_card2518 .premium_grid8042:hover .pro_rates8971 h3 {
    transform: translateZ(25px);
}.offer_card2518 .pro_rates8971 h3::after {
    bottom: -8px;
    position: absolute;
    left: 0;
    height: 3px;
    background: rgb(212,198,210);
    content: "";
    width: 40px;
    transition: width 0.3s ease;
}.offer_card2518 .premium_grid8042:hover .pro_rates8971 h3::after {
    width: 60px;
}.offer_card2518 .deal_board1879 {
    display: block;
    margin: 0.5rem 0 1.5rem;
    font-size: calc(19px * 1.8);
    color: rgb(212,198,210);
    position: relative;
    font-weight: 700;
    transform: translateZ(15px);
}.offer_card2518 .deal_board1879::before {
    bottom: -8px;
    left: 0;
    content: "";
    height: 2px;
    width: 80px;
    position: absolute;
    background: linear-gradient(90deg, rgb(212,198,210,0.5), transparent);
}.offer_card2518 .pro_rates8971 p {
    overflow-wrap: break-word;
    line-height: 1.6;
    flex: 1;
    word-break: break-word;
    color: #000000;
    margin-top: 1rem;
    font-size: 13px;
}.offer_card2518 .pic_img_wrap5417 {
    position: relative;
    height: 200px;
    width: 100%;
    transform: translateZ(0);
    transition: transform 0.5s ease;
    overflow: hidden;
}.offer_card2518 .premium_grid8042:hover .pic_img_wrap5417 {
    transform: scale(1.05) translateZ(0);
}.offer_card2518 .pic_img_wrap5417::after {
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    content: "";
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}.offer_card2518 .pic_img_wrap5417::before {
    opacity: 0.15;
    content: "";
    top: 0;
    z-index: 1;
    background: rgb(212,198,210);
    left: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    width: 100%;
    height: 100%;
}.offer_card2518 .premium_grid8042:hover .pic_img_wrap5417::before {
    opacity: 0.05;
}

@media (min-width: 992px) {.offer_card2518 .plan_fees3487 {
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}.offer_card2518 .study_sub6521 {
    padding: 3rem;
}.offer_card2518 .program_rate7984 {
    grid-column: 1;
    grid-row: 1;
}.offer_card2518 .study_sub6521 {
    grid-row: 1;
    transform: perspective(1000px) rotateY(-5deg) translateZ(0);
    grid-column: 2;
    top: 2rem;
    align-self: start;
    position: sticky;
}.offer_card2518 .study_sub6521:hover {
    transform: perspective(1000px) rotateY(0) translateZ(30px);
}
}

@media (min-width: 1200px) {.offer_card2518 .program_rate7984 {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}.offer_card2518 .pro_rates8971 {
    min-height: 300px;
}
}

@media (max-width: 991px) {.offer_card2518 {
    padding: 4rem 0;
}.offer_card2518 .study_sub6521 {
    order: -1;
}.offer_card2518 .study_sub6521 h2 {
    font-size: calc(37px * 0.9);
}.offer_card2518 .study_sub6521 .price_grid4071 {
    max-width: 100%;
}
}

@media (max-width: 767px) {.offer_card2518 {
    padding: 3rem 0;
}.offer_card2518 .container {
    padding: 0 1.5rem;
}.offer_card2518 .program_rate7984 {
    grid-template-columns: 1fr;
}.offer_card2518 .study_sub6521 h2 {
    font-size: calc(37px * 0.8);
}.offer_card2518 .pro_rates8971 {
    padding: 1.5rem;
}.offer_card2518 .deal_board1879 {
    font-size: calc(19px * 1.5);
}.offer_card2518 .pic_img_wrap5417 {
    height: 180px;
}
}

@media (max-width: 480px) {.offer_card2518 .pro_rates8971 p {
    font-size: calc(13px * 0.9);
}.offer_card2518 .pro_rates8971 h3 {
    font-size: 19px;
}.offer_card2518 .deal_board1879 {
    font-size: calc(19px * 1.3);
}.offer_card2518 .pic_img_wrap5417 {
    height: 160px;
}}header {
    background: linear-gradient(to bottom, rgb(239,234,238), rgba(0, 0, 0, 0.5));
    position: relative;
    width: 100%;
    z-index: 99;
    overflow: visible;
}header::before {
    content: "";
    opacity: 0.1;
    height: 100%;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 6px
    );
    left: 0;
    width: 100%;
    top: 0;
    position: absolute;
}header .main_edu8325 {
    align-items: center;
    display: flex;
    padding: 20px 30px;
    justify-content: space-between;
    position: relative;
}header .main_edu8325::before {
    width: 80%;
    bottom: 0;
    height: 1px;
    left: 10%;
    position: absolute;
    background: linear-gradient(to right, transparent, rgb(212,198,210), transparent);
    content: "";
}header .main_edu8325 .nav_mainwrap9216 {
    z-index: 2;
    position: relative;
    margin-right: 40px;
}header .main_edu8325 .nav_mainwrap9216 .site_navbar7194 {
    padding: 5px;
    position: relative;
    display: block;
}header .main_edu8325 .nav_mainwrap9216 .site_navbar7194::before {
    transform: scale(0.9);
    left: -5px;
    top: -5px;
    opacity: 0;
    bottom: -5px;
    content: "";
    position: absolute;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    right: -5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}header .main_edu8325 .nav_mainwrap9216 .site_navbar7194:hover::before {
    opacity: 0.1;
    transform: scale(1);
}header .main_edu8325 .nav_mainwrap9216 .site_navbar7194 svg {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}header .main_edu8325 .header_bar3259 {
    margin: 0;
    perspective: 1000px;
    list-style: none;
    display: flex;
    padding: 0;
}header .main_edu8325 .header_bar3259 .top_know7980 {
    margin: 0;
    position: relative;
    transform-style: preserve-3d;
}header .main_edu8325 .header_bar3259 .top_know7980 a {
    text-transform: uppercase;
    position: relative;
    color: #000000;
    font-size: 13px;
    transform-style: preserve-3d;
    background: linear-gradient(to bottom, transparent, transparent);
    font-family: Arial, sans-serif;
    display: block;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 12px 20px;
    text-decoration: none;
}header .main_edu8325 .header_bar3259 .top_know7980 a::before,
header .main_edu8325 .header_bar3259 .top_know7980 a::after {
    left: 0;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.3s ease;
    content: "";
    pointer-events: none;
}header .main_edu8325 .header_bar3259 .top_know7980 a::before {
    transform-origin: top center;
    transform: translateZ(-1px) rotateX(10deg);
    background: linear-gradient(to bottom, rgb(212,198,210,0.5), transparent);
    opacity: 0;
}header .main_edu8325 .header_bar3259 .top_know7980 a::after {
    background: linear-gradient(to top, rgb(179,161,175,0.5), transparent);
    transform: translateZ(-2px) rotateX(-10deg);
    opacity: 0;
    transform-origin: bottom center;
}header .main_edu8325 .header_bar3259 .top_know7980:hover a {
    color: rgb(212,198,210);
    transform: translateZ(10px);
}header .main_edu8325 .header_bar3259 .top_know7980:hover a::before,
header .main_edu8325 .header_bar3259 .top_know7980:hover a::after {
    opacity: 0.1;
}header .main_edu8325 .header_bar3259 .top_know7980:hover a::before {
    transform: translateZ(-5px) rotateX(15deg);
}header .main_edu8325 .header_bar3259 .top_know7980:hover a::after {
    transform: translateZ(-10px) rotateX(-15deg);
}

@media (max-width: 992px) {header .main_edu8325 {
    flex-direction: column;
    padding: 15px;
}header .main_edu8325 .nav_mainwrap9216 {
    margin: 0 0 15px 0;
}header .main_edu8325 .header_bar3259 {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    perspective: none;
}header .main_edu8325 .header_bar3259 .top_know7980 a {
    font-size: calc(13px - 1px);
    transform-style: flat;
    padding: 10px 15px;
}header .main_edu8325 .header_bar3259 .top_know7980:hover a {
    transform: none;
}header .main_edu8325 .header_bar3259 .top_know7980 a::before,
    header .main_edu8325 .header_bar3259 .top_know7980 a::after {
    display: none;
}
}

@media (max-width: 767px) {header .main_edu8325 .header_bar3259 .top_know7980 a {
    padding: 8px 12px;
    font-size: calc(13px - 2px);
}}.join_now1429 {
    overflow: hidden;
    background: rgb(239,234,238);
    position: relative;
    padding: 100px 0;
}.join_now1429::before {
    content: '';
    z-index: 1;
    left: 0;
    top: 0;
    background: 
        linear-gradient(90deg, #000000 1px, transparent 1px) 0 0 / 40px 100%,
        linear-gradient(0deg, #000000 1px, transparent 1px) 0 0 / 100% 40px;
    opacity: 0.04;
    position: absolute;
    height: 100%;
    width: 100%;
}.join_now1429 .learning_classes0189 {
    display: grid;
    padding-left: 50px;
    grid-template-columns: 1fr 1fr;
    z-index: 10;
    gap: 50px;
    border-left: 4px solid rgb(212,198,210);
    position: relative;
}.join_now1429 .container p {
    z-index: 5;
    line-height: 1.4;
    position: relative;
    grid-column: 1 / -1;
    margin: 0;
    font-size: 35px;
    color: #000000;
    font-weight: 700;
}.join_now1429 .request_query0349 {
    overflow: hidden;
    padding: 20px 40px;
    z-index: 5;
    font-weight: 600;
    transition: all 0.3s ease;
    grid-column: 1 / 2;
    box-shadow: 5px 5px 0 rgb(212,198,210);
    text-decoration: none;
    border-radius: 20px;
    background: rgb(239,234,238);
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    position: relative;
    text-transform: uppercase;
}.join_now1429 .request_query0349::before {
    content: '';
    top: 0;
    height: 100%;
    position: absolute;
    width: 100%;
    left: -100%;
    transition: 0.5s;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2),
        transparent
    );
}.join_now1429 .request_query0349:hover {
    transform: translate(5px, 5px);
    box-shadow: 0 0 0 rgb(212,198,210);
}.join_now1429 .request_query0349:hover::before {
    left: 100%;
}.join_now1429 .learning_classes0189::before {
    border: 2px solid rgb(212,198,210,0.5);
    right: -175px;
    height: 350px;
    top: -175px;
    position: absolute;
    width: 350px;
    border-radius: 50%;
    z-index: -1;
    content: '';
    opacity: 0.3;
}.join_now1429 .learning_classes0189::after {
    z-index: -1;
    border: 2px solid rgb(179,161,175,0.5);
    content: '';
    bottom: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    opacity: 0.3;
    right: -50px;
}.join_now1429::after {
    left: 0;
    opacity: 0.05;
    content: '';
    top: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(135deg, transparent 0%, rgb(212,198,210,0.5) 100%);
    z-index: 1;
    width: 100%;
}

@media (max-width: 991px) {.join_now1429 {
    padding: 80px 0;
}.join_now1429 .learning_classes0189 {
    padding-left: 30px;
    gap: 40px;
}.join_now1429 .container p {
    font-size: calc(24px * 1.2);
}.join_now1429 .request_query0349 {
    padding: 18px 36px;
}
}

@media (max-width: 767px) {.join_now1429 {
    padding: 60px 0;
}.join_now1429 .learning_classes0189 {
    padding-left: 20px;
    grid-template-columns: 1fr;
    gap: 30px;
}.join_now1429 .container p {
    font-size: 24px;
}.join_now1429 .request_query0349 {
    padding: 15px 30px;
    grid-column: 1;
}
}

@media (max-width: 480px) {.join_now1429 {
    padding: 40px 0;
}.join_now1429 .learning_classes0189 {
    padding-left: 15px;
    gap: 20px;
    border-left-width: 3px;
}.join_now1429 .container p {
    font-size: calc(13px * 1.2);
}.join_now1429 .request_query0349 {
    font-size: calc(14px * 0.9);
    padding: 12px 25px;
}}.modalCookieAgreement9638 {
    position: fixed;
    bottom: 0;
    width: 100%;
    transform: translateY(100%);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
    padding: 20px 0;
    border-top: 3px solid rgb(179,161,175);
    animation: slideUp 0.5s forwards;
    z-index: 90;
    background: rgb(179,161,175);
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
#privacyModalWindow4083 {
    display: none;
}#privacyModalWindow4083:checked ~ .modalCookieAgreement9638 {
    opacity: 0;
    visibility: hidden;
}.tracking_policy4538 {
    align-items: center;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}.modalCookieAgreement9638 h5 {
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 23px;
    color: #ffffff;
}.modalCookieAgreement9638 p {
    font-family: Arial, sans-serif;
    line-height: 1.5;
    color: #ffffff;
    font-size: 18px;
}.consent_box2468 {
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
    display: flex;
    filter: drop-shadow(0 0 10px rgb(212,198,210));
}.consent_box2468 svg {
    width: 80px;
    height: 80px;
    transition: transform 0.3s ease-in-out;
    fill: rgb(212,198,210);
}.consent_box2468:hover svg {
    transform: scale(1.1);
}.visitor_acceptance1023 {
    text-decoration: none;
    border-radius: 30px;
    min-width: 140px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
    color: #000000;
    box-shadow: 0 0 15px rgb(212,198,210);
    text-align: center;
    margin-left: 10px;
    background: linear-gradient(90deg, rgb(212,198,210), rgb(179,161,175));
    cursor: pointer;
    line-height: 40px;
    padding: 10px 20px;
    flex-shrink: 0;
}.visitor_acceptance1023:hover {
    box-shadow: 0 0 20px rgb(179,161,175);
}.cookie_button.track_accept9735 {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    border: 2px solid rgb(179,161,175);
}.cookie_button.track_accept9735:hover {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgb(179,161,175);
}.modalCookieAgreement9638 p a {
    color: rgb(212,198,210);
    text-decoration: none;
    transition: color 0.3s ease;
}.modalCookieAgreement9638 p a:hover {
    color: rgb(179,161,175);
}
@media only screen and (max-width: 1200px) {.modalCookieAgreement9638 {
    padding: 15px 0;
}.tracking_policy4538 {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.consent_box2468 {
    display: none;
}.tracking_policy4538 {
    align-items: center;
    text-align: center;
    flex-direction: column;
}.modalCookieAgreement9638 h5 {
    margin-bottom: 5px;
    font-size: 22px;
}.visitor_confirm7493 {
    margin-bottom: 15px;
}.visitor_acceptance1023 {
    margin: 10px 0;
    min-width: 100%;
}}
.company_overview5376 {
    z-index: 1;
    position: relative;
    padding: 80px 0;
    background: rgb(239,234,238);
    overflow: hidden;
}.company_overview5376::before {
    height: 500px;
    width: 500px;
    border-radius: 50%;
    z-index: -1;
    content: '';
    background: linear-gradient(135deg, rgb(212,198,210,0.5) 0%, transparent 70%);
    animation: pulse 15s infinite alternate;
    top: -100px;
    position: absolute;
    right: -100px;
}.company_overview5376::after {
    left: -100px;
    background: linear-gradient(225deg, rgb(179,161,175,0.5) 0%, transparent 70%);
    z-index: -1;
    position: absolute;
    content: '';
    border-radius: 50%;
    bottom: -100px;
    height: 400px;
    width: 400px;
    animation: pulse 12s infinite alternate-reverse;
}@keyframes pulse {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1) rotate(15deg);
        opacity: 0.7;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
}

.company_overview5376 .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 0 15px;
}.company_overview5376 .learning_classes0189 {
    gap: 60px;
    display: flex;
    position: relative;
    flex-direction: column;
}.company_overview5376 h3 {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    position: relative;
}.company_overview5376 h3::after {
    transform: translateX(-50%);
    background: linear-gradient(to right, rgb(212,198,210), rgb(179,161,175));
    height: 4px;
    border-radius: 10px;
    left: 50%;
    position: absolute;
    width: 80px;
    content: '';
    bottom: 0;
}.company_overview5376 .study_growth6352 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 23px;
    padding: 30px;
    background: #ffffff;
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1fr;
}.company_overview5376 .study_growth6352:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}.company_overview5376 .study_growth6352 span {
    grid-column: 1 / 2;
    font-weight: 600;
    font-size: 20px;
    color: rgb(212,198,210);
    display: block;
    margin-bottom: 15px;
}.company_overview5376 .study_growth6352 p {
    grid-column: 1 / 2;
    border-left: 3px solid rgb(179,161,175);
    padding-left: 20px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
    color: #000000;
}.company_overview5376 .study_growth6352 .pic_img_wrap5417 {
    transition: transform 0.5s ease;
    height: 100%;
    transform: perspective(1000px) rotateY(-5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    grid-column: 2 / 3;
    border-radius: 23px;
    min-height: 300px;
    overflow: hidden;
    grid-row: 1 / 3;
    position: relative;
}.company_overview5376 .study_growth6352 .pic_img_wrap5417::before {
    width: 100%;
    content: '';
    top: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5));
    z-index: 1;
    left: 0;
}.company_overview5376 .study_growth6352 .pic_img_wrap5417:hover {
    transform: perspective(1000px) rotateY(0deg);
}.company_overview5376 .knowledge_lab5218 {
    padding: 30px;
    display: grid;
    border-radius: 23px;
    background: #ffffff;
    position: relative;
    gap: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    grid-template-columns: 1fr 1fr;
}.company_overview5376 .knowledge_lab5218:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}.company_overview5376 .knowledge_lab5218 p {
    margin-bottom: 0;
    color: #000000;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    padding-left: 20px;
    border-left: 3px solid rgb(212,198,210);
    grid-column: 1 / 2;
}.company_overview5376 .knowledge_lab5218 .learn_training6741 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    transform: perspective(1000px) rotateY(-5deg);
    grid-column: 2 / 3;
    min-height: 300px;
    border-radius: 23px;
    transition: transform 0.5s ease;
    position: relative;
}.company_overview5376 .knowledge_lab5218 .learn_training6741::before {
    top: 0;
    content: '';
    position: absolute;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.5));
    z-index: 1;
    left: 0;
    width: 100%;
    height: 100%;
}.company_overview5376 .knowledge_lab5218 .learn_training6741::after {
    top: 0;
    z-index: 1;
    content: '';
    background: radial-gradient(circle at top right, rgb(212,198,210,0.5) 0%, transparent 70%);
    height: 100%;
    position: absolute;
    width: 100%;
    left: 0;
}.company_overview5376 .knowledge_lab5218 .learn_training6741:hover {
    transform: perspective(1000px) rotateY(0deg);
}.company_overview5376 .pic_img_wrap5417::after {
    width: 60px;
    position: absolute;
    z-index: 2;
    top: -10px;
    border-radius: 50%;
    height: 60px;
    content: '';
    background: rgb(179,161,175);
    right: -10px;
    animation: float 3s infinite alternate;
    opacity: 0.7;
}@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    100% {
        transform: translateY(-20px) scale(1.1);
    }
}

.company_overview5376 .learning_classes0189::before {
    content: '';
    left: 50%;
    top: 0;
    width: 2px;
    position: absolute;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, rgb(212,198,210,0.5), transparent);
    transform: translateX(-50%);
}.company_overview5376 .study_growth6352::after,
.company_overview5376 .knowledge_lab5218::after {
    transform: translateX(-50%);
    content: '';
    background: #ffffff;
    z-index: 3;
    height: 20px;
    border: 3px solid rgb(212,198,210);
    left: 50%;
    position: absolute;
    width: 20px;
    border-radius: 50%;
}.company_overview5376 .study_growth6352::after {
    bottom: -40px;
}.company_overview5376 .knowledge_lab5218::after {
    top: -40px;
}

@media (max-width: 991px) {.company_overview5376 {
    padding: 60px 0;
}.company_overview5376 .study_growth6352,
    .company_overview5376 .knowledge_lab5218 {
    gap: 30px;
    grid-template-columns: 1fr;
}.company_overview5376 .study_growth6352 span,
    .company_overview5376 .study_growth6352 p,
    .company_overview5376 .knowledge_lab5218 p {
    grid-column: 1 / 2;
}.company_overview5376 .study_growth6352 .pic_img_wrap5417,
    .company_overview5376 .knowledge_lab5218 .learn_training6741 {
    min-height: 250px;
    grid-column: 1 / 2;
    grid-row: auto;
}.company_overview5376 .learning_classes0189::before {
    left: 20px;
}.company_overview5376 .study_growth6352::after,
    .company_overview5376 .knowledge_lab5218::after {
    left: 20px;
    transform: none;
}
}

@media (max-width: 767px) {.company_overview5376 {
    padding: 40px 0;
}.company_overview5376 h3 {
    font-size: calc(28px * 0.9);
    margin-bottom: 30px;
}.company_overview5376 .learning_classes0189 {
    gap: 40px;
}.company_overview5376 .study_growth6352,
    .company_overview5376 .knowledge_lab5218 {
    padding: 20px;
}.company_overview5376 .study_growth6352 .pic_img_wrap5417,
    .company_overview5376 .knowledge_lab5218 .learn_training6741 {
    min-height: 200px;
}.company_overview5376 .study_growth6352 span {
    font-size: calc(20px * 0.9);
}.company_overview5376 .study_growth6352 p,
    .company_overview5376 .knowledge_lab5218 p {
    padding-left: 15px;
    font-size: calc(17px * 0.95);
}.company_overview5376::before,
    .company_overview5376::after {
    height: 200px;
    width: 200px;
}
}

@media (max-width: 480px) {.company_overview5376 {
    padding: 30px 0;
}.company_overview5376 h3 {
    font-size: calc(28px * 0.8);
    padding-bottom: 15px;
    margin-bottom: 25px;
}.company_overview5376 h3::after {
    width: 60px;
    height: 3px;
}.company_overview5376 .learning_classes0189 {
    gap: 30px;
}.company_overview5376 .study_growth6352,
    .company_overview5376 .knowledge_lab5218 {
    padding: 15px;
    gap: 20px;
}.company_overview5376 .study_growth6352 .pic_img_wrap5417,
    .company_overview5376 .knowledge_lab5218 .learn_training6741 {
    min-height: 180px;
}.company_overview5376 .study_growth6352 span {
    margin-bottom: 10px;
}.company_overview5376 .study_growth6352 p,
    .company_overview5376 .knowledge_lab5218 p {
    padding-left: 10px;
}.company_overview5376 .study_growth6352::after,
    .company_overview5376 .knowledge_lab5218::after {
    width: 15px;
    height: 15px;
}.company_overview5376::before,
    .company_overview5376::after {
    height: 150px;
    width: 150px;
}}.program_information4915 {
    position: relative;
    background: linear-gradient(135deg, rgb(239,234,238) 0%, rgba(0, 0, 0, 0.5) 100%);
    overflow: hidden;
    padding: 120px 0;
}.program_information4915::before {
    content: "";
    position: absolute;
    top: 0;
    background: radial-gradient(circle at 70% 30%, rgb(212,198,210,0.5) 0%, transparent 70%);
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 0.15;
}.program_information4915::after {
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 30s linear infinite;
    border: 1px solid rgb(179,161,175,0.5);
    position: absolute;
    z-index: 1;
    right: -50px;
    width: 200px;
    height: 200px;
    content: "";
    bottom: -50px;
}.program_information4915 .container {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
}.program_information4915 h2 {
    display: inline-block;
    position: relative;
    color: #000000;
    transform: perspective(1000px) rotateX(0deg);
    font-size: 28px;
    margin-bottom: 50px;
    transition: transform 0.5s ease-out;
    font-weight: 700;
}.program_information4915 h2::after {
    background: linear-gradient(90deg, rgb(212,198,210) 0%, transparent 100%);
    position: absolute;
    transform: scaleX(0.8);
    bottom: -15px;
    transform-origin: left center;
    left: 0;
    height: 3px;
    width: 60%;
    content: "";
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.program_information4915 h2:hover::after {
    transform: scaleX(1);
}.program_information4915 .skill_explorer9264 {
    display: flex;
    gap: 40px;
    transform-style: preserve-3d;
    position: relative;
}.program_information4915 .pic_img_wrap5417 {
    overflow: hidden;
    transform: perspective(1000px) rotateY(-2deg) translateZ(20px);
    position: relative;
    flex: 0 0 45%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    height: 500px;
}.program_information4915 .pic_img_wrap5417::before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(225deg, rgb(212,198,210,0.5) 0%, transparent 70%);
    opacity: 0.3;
    transition: opacity 0.5s ease;
    z-index: 1;
    width: 100%;
    height: 100%;
}.program_information4915 .pic_img_wrap5417:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(30px);
}.program_information4915 .pic_img_wrap5417:hover::before {
    opacity: 0.5;
}.program_information4915 .text_overlay3491 {
    max-height: 500px;
    scrollbar-width: thin;
    scrollbar-color: rgb(179,161,175,0.5) transparent;
    padding-right: 20px;
    transform: translateZ(10px);
    flex: 0 0 50%;
    overflow-y: auto;
}.program_information4915 .text_overlay3491::-webkit-scrollbar {
    width: 5px;
}.program_information4915 .text_overlay3491::-webkit-scrollbar-track {
    background: transparent;
}.program_information4915 .text_overlay3491::-webkit-scrollbar-thumb {
    background-color: rgb(179,161,175,0.5);
    border-radius: 10px;
}.program_information4915 .description {
    transition: transform 0.4s ease-out;
    font-size: 14px;
    position: relative;
    transform: translateY(0);
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}.program_information4915 .description:first-of-type {
    position: relative;
}.program_information4915 .description:first-of-type::first-letter {
    margin-right: 2px;
    font-size: 1.6em;
    font-weight: 600;
    color: rgb(212,198,210);
}.program_information4915 .description:last-of-type {
    margin-top: 30px;
    border-top: 1px solid rgb(179,161,175,0.5);
    padding-top: 20px;
}

@media (max-width: 992px) {.program_information4915 {
    padding: 80px 0;
}.program_information4915 h2 {
    font-size: calc(28px * 0.9);
    margin-bottom: 35px;
}.program_information4915 .skill_explorer9264 {
    gap: 30px;
    flex-direction: column;
}.program_information4915 .pic_img_wrap5417 {
    flex: 0 0 auto;
    height: 350px;
    width: 100%;
}.program_information4915 .text_overlay3491 {
    padding-right: 10px;
    flex: 0 0 auto;
    max-height: 400px;
    width: 100%;
}
}

@media (max-width: 768px) {.program_information4915 {
    padding: 60px 0;
}.program_information4915 h2 {
    font-size: calc(28px * 0.8);
    margin-bottom: 25px;
}.program_information4915 .pic_img_wrap5417 {
    height: 280px;
}.program_information4915 .text_overlay3491 {
    max-height: 350px;
}.program_information4915 .description {
    font-size: calc(14px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 576px) {.program_information4915 {
    padding: 50px 0;
}.program_information4915 h2 {
    font-size: calc(28px * 0.7);
    margin-bottom: 20px;
}.program_information4915 .pic_img_wrap5417 {
    height: 220px;
}.program_information4915 .text_overlay3491 {
    max-height: 300px;
}.program_information4915 .description {
    line-height: 1.6;
    font-size: calc(14px * 0.9);
}}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}.tyDiv3812 {
    perspective: 1000px;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(239,234,238) 0%, rgba(245, 245, 245, 0.9) 100%);
    position: relative;
}.tyDiv3812::before {
    background: repeating-linear-gradient(
        45deg,
        rgb(179,161,175,0.5) 0px,
        transparent 1px,
        transparent 10px,
        rgb(179,161,175,0.5) 11px
    );
    transform: translateZ(-20px);
    animation: patternMove 30s linear infinite;
    width: 100%;
    height: 100%;
    pointer-events: none;
    left: 0;
    position: absolute;
    opacity: 0.1;
    z-index: 1;
    top: 0;
    content: "";
}.tyDiv3812::after {
    top: -50%;
    transform: rotate(-15deg) scale(2);
    background: radial-gradient(
        circle at center,
        rgb(212,198,210,0.5) 0%,
        transparent 70%
    );
    z-index: 0;
    position: absolute;
    height: 100%;
    animation: gradientPulse 15s ease-in-out infinite alternate;
    right: -50%;
    content: "";
    width: 100%;
    opacity: 0.15;
}.tyDiv3812 .container {
    padding: 0 20px;
    transform-style: preserve-3d;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}.tyDiv3812 h2 {
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    color: #000000;
    text-align: center;
    animation: titleEntrance 1.2s cubic-bezier(0.17, 0.84, 0.44, 1) forwards;
    position: relative;
    line-height: 1.4;
    font-size: 35px;
    font-weight: 700;
    transform: translateZ(30px);
    opacity: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}.tyDiv3812 h2::after {
    bottom: -15px;
    transform-origin: center;
    position: absolute;
    height: 3px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgb(179,161,175), transparent);
    content: "";
    width: 150px;
    left: 50%;
    opacity: 0;
    animation: underlineExpand 1.5s ease-out forwards 0.5s;
}.tyDiv3812 .learning_classes0189 {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 3px 5px rgba(0, 0, 0, 0.03);
    opacity: 0;
    margin-top: 20px;
    border-radius: 10px;
    padding: 40px;
    position: relative;
    background: #ffffff;
    transform: translateZ(15px) rotateX(2deg);
    overflow: hidden;
    animation: holderEntrance 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.3s;
}.tyDiv3812 .learning_classes0189::before {
    height: 100%;
    content: "";
    top: 0;
    width: 100%;
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    background: linear-gradient(45deg, rgb(179,161,175,0.5) 0%, transparent 70%);
    left: 0;
}.tyDiv3812 .learning_classes0189::after {
    width: 180px;
    position: absolute;
    background: radial-gradient(circle at center, rgb(212,198,210,0.5), transparent 70%);
    opacity: 0.2;
    height: 180px;
    z-index: -1;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite alternate;
    content: "";
    transform: translate(40%, 40%);
}.tyDiv3812 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}.tyDiv3812 li {
    padding: 20px 15px 20px 35px;
    opacity: 0;
    position: relative;
    transform: translateX(-20px);
    margin-bottom: 15px;
    border-left: 3px solid rgb(179,161,175);
    animation: itemSlideIn 0.8s ease-out forwards 0.6s;
    border-radius: 0 10px 10px 0;
    background: linear-gradient(to right, rgba(245, 245, 245, 0.5) 0%, transparent 100%);
}.tyDiv3812 li::before {
    left: -9px;
    border: 3px solid rgb(179,161,175);
    animation: pulseDot 3s infinite;
    height: 15px;
    top: 50%;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(var(--secondary-color-rgb, 0, 120, 200), 0.1);
    width: 15px;
    position: absolute;
    content: "";
    transform: translateY(-50%);
}.tyDiv3812 span {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    transform: translateY(15px);
    opacity: 0;
    display: block;
    color: #000000;
    font-size: calc(14px * 1.05);
    animation: textFadeIn 1s ease-out forwards 0.8s;
}

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

@keyframes gradientPulse {
    0% {
        opacity: 0.1;
        transform: rotate(-15deg) scale(2);
    }
    50% {
        opacity: 0.2;
        transform: rotate(-14deg) scale(2.1);
    }
    100% {
        opacity: 0.1;
        transform: rotate(-15deg) scale(2);
    }
}

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

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 150px;
        opacity: 1;
    }
}

@keyframes holderEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px) translateZ(15px) rotateX(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(15px) rotateX(2deg);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.1;
        transform: translate(40%, 40%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(40%, 40%) scale(1.2);
    }
    100% {
        opacity: 0.1;
        transform: translate(40%, 40%) scale(1);
    }
}

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

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

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--secondary-color-rgb, 0, 120, 200), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--secondary-color-rgb, 0, 120, 200), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--secondary-color-rgb, 0, 120, 200), 0);
    }
}

@media (max-width: 992px) {.tyDiv3812 {
    padding: 60px 0;
}.tyDiv3812 h2 {
    margin-bottom: 30px;
    font-size: calc(35px * 0.9);
}.tyDiv3812 .learning_classes0189 {
    padding: 30px;
}
}

@media (max-width: 768px) {.tyDiv3812 {
    padding: 50px 0;
}.tyDiv3812 h2 {
    margin-bottom: 25px;
    font-size: calc(35px * 0.8);
}.tyDiv3812 .learning_classes0189 {
    transform: translateZ(10px) rotateX(1deg);
    padding: 25px;
}.tyDiv3812 span {
    font-size: 14px;
}.tyDiv3812 li {
    padding: 15px 10px 15px 25px;
}
}

@media (max-width: 576px) {.tyDiv3812 {
    padding: 40px 0;
}.tyDiv3812 h2 {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: calc(35px * 0.7);
}.tyDiv3812 h2::after {
    width: 100px;
    bottom: -10px;
}.tyDiv3812 .learning_classes0189 {
    margin-top: 15px;
    padding: 20px;
    transform: translateZ(5px) rotateX(0.5deg);
}.tyDiv3812 li {
    margin-bottom: 10px;
    padding: 12px 10px 12px 20px;
}.tyDiv3812 li::before {
    left: -7px;
    height: 12px;
    width: 12px;
}.tyDiv3812 span {
    line-height: 1.6;
    font-size: calc(14px * 0.95);
}}.title_screen6549 {
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
}.title_screen6549::before {
    right: 0;
    backdrop-filter: blur(2px) saturate(120%);
    top: 0;
    left: 0;
    background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.85) 0%, 
    rgba(0, 0, 0, 0.65) 50%, 
    rgba(0, 0, 0, 0.75) 100%);
    bottom: 0;
    position: absolute;
    content: "";
    z-index: -1;
}.title_screen6549::after {
    left: -10%;
    height: 120%;
    background: repeating-linear-gradient(
    45deg,
    rgb(212,198,210,0.5) 0px,
    transparent 2px,
    transparent 10px,
    rgb(212,198,210,0.5) 12px
  );
    content: "";
    animation: backgroundShift 120s linear infinite;
    top: -10%;
    position: absolute;
    z-index: -1;
    width: 120%;
    opacity: 0.05;
}.title_screen6549 > div {
    position: relative;
    max-width: 1200px;
    transform: translateY(-2vh);
    padding: 2rem;
    z-index: 2;
    width: 100%;
}.title_screen6549 > div > div:first-child {
    overflow: hidden;
    position: relative;
    margin-bottom: 3rem;
}.title_style_header {
    animation: slideInUp 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    position: relative;
    transform: translateY(0);
    letter-spacing: -0.02em;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}.title_style_header::after {
    width: 8rem;
    left: 0;
    position: absolute;
    content: "";
    transform-origin: left;
    animation: expandWidth 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
    height: 0.35rem;
    background: linear-gradient(90deg, rgb(212,198,210), transparent);
    bottom: -0.5rem;
}.learn_begin6182 {
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    transform: translateY(30px);
    grid-template-columns: 1fr;
    opacity: 0;
    display: grid;
}.title_screen6549 .skill_program2439 {
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.09) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
    padding: 2rem;
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}.title_screen6549 .skill_program2439:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}.title_screen6549 .skill_program2439 h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin: 0;
    position: relative;
    line-height: 1.4;
    color: #ffffff;
}.learn_begin6182 > div:last-child {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgb(212,198,210);
    transform: perspective(1000px) rotateX(-2deg);
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}.learn_begin6182 > div:last-child::before {
    animation: shimmer 3s infinite;
    content: "";
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 45%, transparent 50%);
    transform: translateX(-100%);
    top: 0;
}.learn_begin6182 > div:last-child:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}.learn_begin6182 > div:last-child span {
    display: block;
    position: relative;
}.learn_begin6182 > div:last-child p {
    position: relative;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    color: #ffffff;
}

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

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

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

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes backgroundShift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-5%, 5%) rotate(1deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@media (min-width: 768px) {.title_screen6549 {
    padding: 3rem;
}.title_screen6549 > div {
    padding: 3rem;
}.learn_begin6182 {
    gap: 3rem;
    grid-template-columns: 2fr 1fr;
}.title_screen6549 .skill_program2439 {
    transform: perspective(1000px) rotateX(3deg) rotateY(-2deg);
}.title_screen6549 .skill_program2439:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-15px);
}.learn_begin6182 > div:last-child {
    transform: perspective(1000px) rotateX(-3deg) rotateY(2deg);
}.learn_begin6182 > div:last-child:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-15px);
}
}

@media (max-width: 767px) {.title_screen6549 {
    padding: 1.5rem;
}.title_screen6549 > div {
    padding: 1.5rem;
}.title_style_header {
    font-size: clamp(2rem, 7vw, 2.5rem);
}.title_style_header::after {
    width: 6rem;
    height: 0.25rem;
}.title_screen6549 .skill_program2439 {
    padding: 1.5rem;
}.learn_begin6182 > div:last-child {
    padding: 1.25rem 1.5rem;
}
}

@media (max-width: 480px) {.title_screen6549 > div {
    padding: 1rem;
}.title_style_header {
    font-size: clamp(1.75rem, 8vw, 2rem);
}.title_style_header::after {
    width: 5rem;
    height: 0.2rem;
}.title_screen6549 .skill_program2439 {
    padding: 1.25rem;
}.title_screen6549 .skill_program2439 h3 {
    font-size: clamp(1rem, 5vw, 1.25rem);
}.learn_begin6182 > div:last-child {
    padding: 1rem 1.25rem;
}.learn_begin6182 > div:last-child p {
    font-size: clamp(0.875rem, 4vw, 1rem);
}}.data_insights1467 {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 120px 0;
}.data_insights1467::before {
    z-index: 1;
    background-color: #000000;
    position: absolute;
    top: 0;
    height: 100%;
    content: "";
    left: 0;
    opacity: 0.85;
    width: 100%;
}.data_insights1467::after {
    opacity: 0.1;
    height: 100%;
    top: 0;
    content: "";
    background: repeating-linear-gradient(
        45deg,
        rgb(212,198,210,0.5) 0,
        rgb(212,198,210,0.5) 2px,
        transparent 2px,
        transparent 8px
    );
    z-index: 2;
    left: 0;
    width: 100%;
    position: absolute;
}.data_insights1467 .container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 5;
}.data_insights1467 .study_elevation7098 {
    flex-direction: column;
    position: relative;
    display: flex;
}.data_insights1467 .fast_gain8943 {
    border: 5px solid rgba(255, 255, 255, 0.15);
    display: flex;
    top: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(212,198,210) 0%, rgb(179,161,175) 100%);
    z-index: 10;
    height: 90px;
    align-items: center;
    animation: glowCircle 3s infinite alternate ease-in-out;
    justify-content: center;
    width: 90px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    left: 50%;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
}@keyframes glowCircle {
    0% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 8px 25px rgb(212,198,210,0.5);
    }
}

.data_insights1467 .fast_gain8943 svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
}.data_insights1467 .fast_gain8943 svg path {
    fill: #ffffff;
}.data_insights1467 .gain_study3109 {
    text-align: center;
    font-size: 37px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding-top: 50px;
    text-transform: uppercase;
    position: relative;
}.data_insights1467 .gain_study3109::after {
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    background: rgb(212,198,210);
    height: 3px;
    content: "";
    position: absolute;
    width: 80px;
}.data_insights1467 .edge_statistics7802 {
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
    margin: 30px auto;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
}.data_insights1467 .statistics_benefits5910 {
    position: relative;
    justify-content: center;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
}.data_insights1467 .statistics_benefits5910::before {
    left: 0;
    top: 50%;
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
    position: absolute;
    z-index: 1;
}.data_insights1467 .statistics_benefits5910::after {
    width: 1px;
    z-index: 1;
    left: 50%;
    content: "";
    top: 0;
    background: rgba(255, 255, 255, 0.1);
    height: 100%;
    position: absolute;
}.data_insights1467 .key_statistics0729 {
    width: 50%;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
    display: flex;
    transition: all 0.3s ease;
    justify-content: center;
    position: relative;
    align-items: center;
    padding: 30px;
    height: 200px;
}.data_insights1467 .key_statistics0729::before {
    z-index: -1;
    width: 0;
    left: 0;
    content: "";
    height: 100%;
    opacity: 0.1;
    position: absolute;
    transition: all 0.5s ease;
    background: rgb(212,198,210,0.5);
    top: 0;
}.data_insights1467 .key_statistics0729:hover::before {
    width: 100%;
}.data_insights1467 .statistics_experts8471 {
    width: 55px;
    transform: translateY(0);
    margin-bottom: 20px;
    align-items: center;
    height: 55px;
    display: flex;
    transition: transform 0.3s ease;
    justify-content: center;
}.data_insights1467 .key_statistics0729:hover .statistics_experts8471 {
    transform: translateY(-5px);
}.data_insights1467 .statistics_experts8471 svg {
    height: 100%;
    fill: rgb(179,161,175);
    width: 100%;
}.data_insights1467 .statistics_experts8471 svg path {
    fill: rgb(179,161,175);
}.data_insights1467 .key_statistics0729 span {
    line-height: 1;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    display: block;
    position: relative;
    font-size: calc(46px * 1.2);
}.data_insights1467 .key_statistics0729 span::after {
    bottom: -5px;
    content: "";
    transition: width 0.3s ease;
    width: 30px;
    transform: translateX(-50%);
    left: 50%;
    height: 2px;
    position: absolute;
    background: rgb(179,161,175);
}.data_insights1467 .key_statistics0729:hover span::after {
    width: 50px;
}.data_insights1467 .key_statistics0729 p {
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
    max-width: 200px;
}.data_insights1467 .key_statistics0729:nth-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease forwards;
}.data_insights1467 .key_statistics0729:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease forwards 0.2s;
}.data_insights1467 .key_statistics0729:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease forwards 0.4s;
}.data_insights1467 .key_statistics0729:nth-child(4) {
    animation: fadeIn 0.5s ease forwards 0.6s;
}@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.data_insights1467 .study_elevation7098::before {
    transform: translate(-50%, -50%);
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    width: 200px;
    left: 50%;
    height: 200px;
    top: 50%;
    animation: pulseCircle 4s infinite;
    border: 1px solid rgb(212,198,210);
}.data_insights1467 .study_elevation7098::after {
    border: 1px dashed rgb(179,161,175);
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    opacity: 0.15;
    content: "";
    width: 300px;
    animation: pulseCircle 4s infinite 1s;
    position: absolute;
    height: 300px;
    border-radius: 50%;
}

@keyframes pulseCircle {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.25;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.15;
    }
}

@media screen and (max-width: 991px) {.data_insights1467 {
    padding: 100px 0;
}.data_insights1467 .edge_statistics7802 {
    max-width: 600px;
}.data_insights1467 .key_statistics0729 {
    padding: 20px;
    height: 180px;
}.data_insights1467 .key_statistics0729 span {
    font-size: 46px;
}.data_insights1467 .fast_gain8943 {
    padding: 18px;
    height: 80px;
    width: 80px;
}
}

@media screen and (max-width: 767px) {.data_insights1467 {
    padding: 80px 0;
}.data_insights1467 .study_elevation7098::before,
    .data_insights1467 .study_elevation7098::after {
    display: none;
}.data_insights1467 .statistics_benefits5910::before,
    .data_insights1467 .statistics_benefits5910::after {
    display: none;
}.data_insights1467 .key_statistics0729 {
    padding: 25px 15px;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    height: auto;
    width: 100%;
}.data_insights1467 .key_statistics0729:last-child {
    border-bottom: none !important;
}.data_insights1467 .fast_gain8943 {
    width: 70px;
    padding: 15px;
    height: 70px;
}.data_insights1467 .gain_study3109 {
    font-size: calc(37px - 2px);
}.data_insights1467 .statistics_experts8471 {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
}.data_insights1467 .key_statistics0729 span {
    font-size: calc(37px - 4px);
}.data_insights1467 .key_statistics0729 p {
    font-size: calc(13px - 1px);
}
}

@media screen and (max-width: 576px) {.data_insights1467 {
    padding: 60px 0;
}.data_insights1467 .container {
    padding: 0 15px;
}.data_insights1467 .fast_gain8943 {
    width: 60px;
    height: 60px;
    padding: 12px;
}.data_insights1467 .gain_study3109 {
    padding-top: 40px;
    font-size: calc(37px - 4px);
    letter-spacing: 1px;
}.data_insights1467 .gain_study3109::after {
    width: 60px;
}.data_insights1467 .edge_statistics7802 {
    font-size: calc(13px - 1px);
    margin: 25px auto;
}.data_insights1467 .key_statistics0729 {
    padding: 20px 10px;
}.data_insights1467 .statistics_experts8471 {
    margin-bottom: 12px;
    width: 40px;
    height: 40px;
}.data_insights1467 .key_statistics0729 span {
    font-size: calc(37px - 6px);
}.data_insights1467 .key_statistics0729 p {
    font-size: calc(13px - 2px);
}}.privacy_compartment7421 {
    padding: 50px;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    background: #ffffff;
    flex-direction: column;
    border: 2px solid rgb(212,198,210);
    height: 100%;
    align-items: center;
}.privacy_compartment7421 h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    color: rgb(212,198,210);
    font-weight: 700;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 3px solid rgb(179,161,175);
    text-align: center;
    font-size: 39px;
}.privacy_compartment7421 h2 {
    color: rgb(179,161,175);
    margin-bottom: 20px;
    margin-top: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    border-bottom: 2px solid rgb(212,198,210);
}.privacy_compartment7421 ul, .privacy_compartment7421 ol {
    width: 100%;
    margin: 20px 0;
    border-top: 2px solid #000000;
    list-style: none;
    border-bottom: 2px solid #000000;
    text-align: left;
    font-size: 13px;
    color: #000000;
    font-family: Arial, sans-serif;
    padding: 0;
}.privacy_compartment7421 li {
    border-bottom: 1px solid rgb(179,161,175,0.5);
    padding: 10px 0;
}.privacy_compartment7421 section {
    background: none;
}.privacy_compartment7421 p, .privacy_compartment7421 span, .privacy_compartment7421 div {
    width: 100%;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    text-align: left;
    font-size: 13px;
    color: #000000;
}

@media only screen and (max-width: 800px) {.privacy_compartment7421 {
    border-radius: 10px;
    padding: 30px;
}.privacy_compartment7421 h1 {
    font-size: calc(20px - 5px);
}.privacy_compartment7421 h2 {
    font-size: calc(20px - 3px);
}.privacy_compartment7421 ul, .privacy_compartment7421 ol {
    margin: 15px 0;
}.privacy_compartment7421 li {
    padding: 8px 0;
}.privacy_compartment7421 p, .privacy_compartment7421 span, .privacy_compartment7421 div {
    margin-bottom: 15px;
}}.academic_expertise7046 {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
    background-color: rgb(239,234,238);
}.academic_expertise7046::before {
    width: 100%;
    left: 0;
    content: "";
    top: 0;
    background: 
        linear-gradient(135deg, rgb(212,198,210,0.5) 0%, transparent 40%),
        repeating-linear-gradient(45deg, rgb(179,161,175,0.5) 0px, rgb(179,161,175,0.5) 1px, transparent 1px, transparent 10px);
    position: absolute;
    z-index: 1;
    opacity: 0.12;
    height: 100%;
}.academic_expertise7046 .container {
    max-width: 1140px;
    z-index: 2;
    transform: perspective(1000px) rotateY(2deg);
    margin: 0 auto;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0 1.5rem;
    position: relative;
}.academic_expertise7046 .container:hover {
    transform: perspective(1000px) rotateY(0deg);
}.academic_expertise7046 .rating_spot1269 {
    border-left: 5px solid rgb(212,198,210);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.05),
        0 5px 15px rgba(0,0,0,0.03),
        0 1px 5px rgba(0,0,0,0.02);
    background: linear-gradient(160deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.98) 100%);
    grid-template-columns: 1fr;
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: grid;
    gap: 2rem;
}.academic_expertise7046 .rating_spot1269:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.05),
        0 2px 8px rgba(0,0,0,0.03);
}.academic_expertise7046 .rating_spot1269::after {
    top: 25px;
    transform: rotate(15deg);
    opacity: 0.1;
    right: 25px;
    width: 80px;
    height: 80px;
    transition: all 0.5s ease;
    content: "";
    position: absolute;
    background: 
        linear-gradient(45deg, transparent 48%, rgb(212,198,210) 48%, rgb(212,198,210) 52%, transparent 52%);
}.academic_expertise7046 .rating_spot1269:hover::after {
    transform: rotate(30deg) scale(1.2);
    opacity: 0.15;
}.academic_expertise7046 .pic_img_wrap5417 {
    height: 120px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    z-index: 2;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.1),
        0 5px 10px rgba(0,0,0,0.05);
    width: 120px;
    position: relative;
    border-radius: 10% 30% 50% 70%;
}.academic_expertise7046 .pic_img_wrap5417::before {
    transition: opacity 0.4s ease;
    inset: 0;
    background: linear-gradient(to top right, rgb(212,198,210,0.5), transparent 70%);
    z-index: 1;
    position: absolute;
    content: "";
    opacity: 0.5;
}.academic_expertise7046 .rating_spot1269:hover .pic_img_wrap5417 {
    border-radius: 30% 50% 70% 90%;
    transform: scale(1.05) rotate(-2deg);
}.academic_expertise7046 .rating_spot1269:hover .pic_img_wrap5417::before {
    opacity: 0.7;
}.academic_expertise7046 .name {
    position: relative;
    color: #000000;
    margin: 0 0 0.5rem;
    font-size: calc(18px * 1.1);
    font-weight: 700;
    transition: transform 0.4s ease;
    display: inline-block;
}.academic_expertise7046 .name::after {
    left: 0;
    width: 0;
    transition: width 0.4s ease;
    content: "";
    position: absolute;
    bottom: -5px;
    background: rgb(212,198,210);
    height: 2px;
}.academic_expertise7046 .rating_spot1269:hover .name::after {
    width: 100%;
}.academic_expertise7046 .rating_spot1269 > div:nth-child(2) div {
    position: relative;
    transform: translateX(0);
    color: rgb(179,161,175);
    font-size: calc(12px * 0.95);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    transition: transform 0.4s ease;
    font-weight: 600;
}.academic_expertise7046 .rating_spot1269:hover > div:nth-child(2) div {
    transform: translateX(5px);
}.academic_expertise7046 .emp_exp9125 {
    line-height: 1.75;
    transition: all 0.4s ease;
    position: relative;
    padding-left: 1.5rem;
    margin: 0;
    font-size: 12px;
    color: #000000;
    border-left: 1px solid rgb(179,161,175,0.5);
}.academic_expertise7046 .emp_exp9125::before {
    transition: transform 0.5s ease;
    opacity: 0.3;
    top: -0.5rem;
    left: 0.3rem;
    color: rgb(212,198,210);
    font-size: 2.5rem;
    position: absolute;
    content: "";
}.academic_expertise7046 .rating_spot1269:hover .emp_exp9125::before {
    transform: translateY(-5px) rotate(-10deg);
    opacity: 0.5;
}

@media (min-width: 768px) {.academic_expertise7046 {
    padding: 7rem 0;
}.academic_expertise7046 .rating_spot1269 {
    column-gap: 2.5rem;
    row-gap: 1.5rem;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    padding: 3rem;
}.academic_expertise7046 .rating_spot1269 > div:first-child {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    grid-row: 1 / 3;
}.academic_expertise7046 .rating_spot1269 > div:nth-child(2) {
    align-self: end;
}.academic_expertise7046 .pic_img_wrap5417 {
    height: 180px;
    width: 180px;
}.academic_expertise7046 .name {
    margin-bottom: 0.8rem;
    font-size: calc(18px * 1.3);
}.academic_expertise7046 .emp_exp9125 {
    font-size: calc(12px * 1.05);
    line-height: 1.8;
    padding-left: 2rem;
}
}

@media (min-width: 992px) {.academic_expertise7046 .container {
    transform: perspective(1500px) rotateY(3deg);
}.academic_expertise7046 .rating_spot1269 {
    gap: 3rem;
    padding: 4rem;
}.academic_expertise7046 .pic_img_wrap5417 {
    width: 220px;
    height: 220px;
}.academic_expertise7046 .emp_exp9125 {
    border-left: none;
    column-gap: 2.5rem;
    column-count: 2;
    padding-left: 0;
}.academic_expertise7046 .emp_exp9125::before {
    left: -1rem;
    font-size: 4rem;
}
}

@media (max-width: 767px) {.academic_expertise7046 {
    padding: 4rem 0;
}.academic_expertise7046 .container {
    transform: none;
}.academic_expertise7046 .rating_spot1269 {
    padding: 2rem;
}.academic_expertise7046 .rating_spot1269 > div:first-child {
    display: flex;
    margin-bottom: 1rem;
    justify-content: center;
}.academic_expertise7046 .rating_spot1269 > div:nth-child(2) {
    text-align: center;
}.academic_expertise7046 .name::after {
    transform: translateX(-50%);
    left: 50%;
}.academic_expertise7046 .emp_exp9125 {
    text-align: left;
    padding-left: 1rem;
}}.learning_profits6513 {
    padding: 7rem 0;
    position: relative;
    background: linear-gradient(145deg, rgb(239,234,238) 50%, rgba(rgb(212,198,210,0.5), 0.05) 100%);
    overflow: hidden;
}.learning_profits6513::before {
    background: radial-gradient(circle, rgb(179,161,175) 0%, transparent 70%);
    z-index: 0;
    opacity: 0.1;
    right: -5%;
    width: 40%;
    height: 40%;
    content: '';
    filter: blur(50px);
    position: absolute;
    top: -5%;
}.learning_profits6513::after {
    width: 30%;
    bottom: -5%;
    opacity: 0.1;
    background: radial-gradient(circle, rgb(212,198,210) 0%, transparent 70%);
    content: '';
    filter: blur(40px);
    z-index: 0;
    height: 30%;
    left: -5%;
    position: absolute;
}.learning_profits6513 .container {
    display: grid;
    gap: 3rem;
    position: relative;
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1.5rem;
    z-index: 1;
}.learning_profits6513 .pic_img_wrap5417 {
    transition: transform 0.7s cubic-bezier(0.17, 0.67, 0.3, 1.33);
    clip-path: polygon(0 5%, 95% 0, 100% 95%, 5% 100%);
    transform: perspective(1000px) rotateY(-5deg);
    width: 100%;
    filter: brightness(1.03) contrast(1.05);
    object-fit: cover;
    height: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}.learning_profits6513 .pic_img_wrap5417:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}.learning_profits6513 .learning_classes0189 {
    flex-direction: column;
    justify-content: center;
    display: flex;
}.learning_profits6513 .text_overlay3491 {
    transition: transform 0.5s ease-out;
    background: linear-gradient(140deg, rgba(rgb(255, 255, 255, 0.5), 0.97), rgba(rgb(255, 255, 255, 0.5), 0.85));
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    transform: translateX(0);
    border-left: 4px solid rgb(212,198,210);
}.learning_profits6513 .text_overlay3491:hover {
    transform: translateX(10px);
}.learning_profits6513 h1 {
    position: relative;
    margin-bottom: 2rem;
    color: #000000;
    font-size: 37px;
    font-weight: 700;
    line-height: 1.3;
}.learning_profits6513 h1::after {
    background: rgb(212,198,210);
    transform-origin: left;
    content: '';
    bottom: -0.8rem;
    width: 60px;
    transform: scaleX(1);
    height: 3px;
    transition: transform 0.4s ease;
    left: 0;
    position: absolute;
}.learning_profits6513 .text_overlay3491:hover h1::after {
    transform: scaleX(1.5);
}.learning_profits6513 ul {
    padding: 0;
    list-style: none;
    gap: 1.2rem;
    grid-template-columns: 1fr;
    margin: 0;
    display: grid;
}.learning_profits6513 li {
    position: relative;
    align-items: flex-start;
    transition: transform 0.3s ease;
    display: flex;
}.learning_profits6513 li:hover {
    transform: translateX(5px);
}.learning_profits6513 li p {
    margin: 0;
    align-items: flex-start;
    line-height: 1.5;
    color: #000000;
    padding-left: 0.5rem;
    display: flex;
    font-size: calc(13px * 0.95);
}.learning_profits6513 svg {
    margin-top: 0.2rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 24px;
    margin-right: 0.8rem;
    flex-shrink: 0;
    height: 24px;
}.learning_profits6513 li:hover svg {
    transform: scale(1.15);
}.learning_profits6513 svg path {
    fill: rgb(212,198,210);
    transition: fill 0.3s ease;
}.learning_profits6513 li:hover svg path {
    fill: rgb(179,161,175);
}.learning_profits6513 .text_overlay3491, 
.learning_profits6513 .pic_img_wrap5417,
.learning_profits6513 li {
    cursor: pointer;
}

@media (min-width: 768px) {.learning_profits6513 .container {
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}.learning_profits6513 h1 {
    font-size: 43px;
}.learning_profits6513 ul {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}.learning_profits6513 .pic_img_wrap5417 {
    max-height: 600px;
    height: 100%;
}
}

@media (min-width: 992px) {.learning_profits6513 {
    padding: 9rem 0;
}.learning_profits6513 .container {
    gap: 5rem;
}.learning_profits6513 .text_overlay3491 {
    padding: 3.5rem;
}.learning_profits6513 ul {
    gap: 1.5rem;
}
}

@media (max-width: 767px) {.learning_profits6513 {
    padding: 5rem 0;
}.learning_profits6513 .pic_img_wrap5417 {
    max-height: 350px;
    object-position: center;
}.learning_profits6513 .text_overlay3491 {
    padding: 1.8rem;
}.learning_profits6513 h1 {
    margin-bottom: 1.5rem;
    font-size: calc(37px * 0.85);
}.learning_profits6513 li p {
    font-size: calc(13px * 0.9);
}
}

@media (max-width: 480px) {.learning_profits6513 .pic_img_wrap5417 {
    clip-path: polygon(0 3%, 97% 0, 100% 97%, 3% 100%);
    max-height: 280px;
}.learning_profits6513 h1 {
    font-size: calc(37px * 0.75);
}.learning_profits6513 .text_overlay3491 {
    padding: 1.5rem;
}.learning_profits6513 ul {
    gap: 1rem;
}}footer {
    position: relative;
    width: 100%;
}footer .footer_social0514 {
    position: relative;
    font-family: Arial, sans-serif;
    padding: 120px 0 30px;
    background: linear-gradient(135deg, rgb(212,198,210), rgb(179,161,175));
    color: #ffffff;
}footer .footer_social0514::before {
    content: "";
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    background: #ffffff;
    transform: rotateX(180deg);
    opacity: 0.25;
    top: 0;
    height: 100px;
    width: 100%;
    position: absolute;
    left: 0;
}footer .footer_social0514::after {
    height: 50px;
    opacity: 0.15;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    width: 100%;
    left: 0;
    position: absolute;
    background: #ffffff;
    bottom: 0;
    content: "";
}footer .cert_block1402 {
    position: relative;
    z-index: 1;
}footer .learn_faq4801 {
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
    display: flex;
    justify-content: center;
}footer .info_item {
    backdrop-filter: blur(5px);
    align-items: center;
    display: flex;
    transition: all 0.3s ease;
    height: 80px;
    max-width: 300px;
    flex: 1 1 200px;
    overflow: hidden;
    border-radius: 40px;
    position: relative;
    padding: 0 25px;
    background-color: rgba(0, 0, 0, 0.5);
}footer .info_item::before {
    content: "";
    opacity: 0.1;
    width: 100%;
    z-index: -1;
    background: #ffffff;
    animation: waveAnimation 15s linear infinite;
    left: -100%;
    position: absolute;
    height: 100%;
}@keyframes waveAnimation {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

footer .info_item:hover {
    background-color: rgb(179,161,175,0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}footer .info_item svg {
    margin-right: 15px;
    flex-shrink: 0;
    height: 20px;
    fill: #ffffff;
    width: 20px;
}footer .info_item p,
footer .info_item a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 15px;
}footer .info_item a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}footer .text_main_holder {
    position: relative;
    flex-wrap: wrap;
    gap: 25px;
    display: flex;
}footer .nav_mainwrap9216 {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
    flex: 1 1 100%;
}footer .nav_mainwrap9216 svg {
    width: auto;
    margin: 0 auto 20px;
    filter: brightness(0) invert(1);
    height: 50px;
}footer .calc_foot4130 {
    max-width: 500px;
    margin: 0 auto;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}footer .header_bar3259,footer .subscribe_holder {
    padding: 30px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    flex: 1 1 300px;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.5);
}footer .header_bar3259::before,footer .subscribe_holder::before {
    left: -100%;
    background: #ffffff;
    position: absolute;
    content: "";
    z-index: -1;
    height: 100%;
    animation: waveAnimation 20s linear infinite;
    top: 0;
    width: 300%;
    opacity: 0.1;
}footer .header_bar3259 h5, footer .subscribe_holder h5 {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    color: #ffffff;
    display: inline-block;
}footer .header_bar3259 h5::after, footer .subscribe_holder h5::after {
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, #ffffff, transparent);
    width: 100%;
    position: absolute;
    content: "";
    height: 2px;
}footer .header_guide5023 {
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    display: flex;
}footer .header_guide5023 a {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 20px;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: rgb(212,198,210,0.5);
    flex: 1 1 calc(50% - 10px);
    padding: 8px 15px;
    color: rgba(255, 255, 255, 0.8);
}footer .header_guide5023 a::before {
    bottom: 0;
    width: 100%;
    transition: left 0.3s ease;
    content: "";
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    left: -100%;
    position: absolute;
    height: 2px;
}footer .header_guide5023 a:hover {
    background-color: rgb(179,161,175,0.5);
    transform: translateY(-3px);
}footer .header_guide5023 a:hover::before {
    left: 0;
}footer .subscribe_holder p {
    margin-bottom: 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}footer .input_holder {
    flex-direction: column;
    position: relative;
    display: flex;
    gap: 15px;
}footer .input_holder input[type="email"] {
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-size: 15px;
    padding: 15px 20px;
}footer .input_holder input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    background-color: rgb(212,198,210,0.5);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .online_training6419 {
    border: none;
    font-size: 15px;
    cursor: pointer;
    overflow: hidden;
    font-weight: 600;
    padding: 15px 20px;
    color: rgb(212,198,210);
    border-radius: 25px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}footer .online_training6419::after {
    position: absolute;
    transition: left 0.7s ease;
    top: 0;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    width: 100%;
    left: -100%;
    height: 100%;
}footer .online_training6419:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    background-color: rgb(239,234,238);
}footer .online_training6419:hover::after {
    left: 100%;
}footer .footer_edu2539 {
    position: relative;
    text-align: center;
    margin-top: 60px;
}footer .pitch_comp6358 {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 0 30px;
    position: relative;
}footer .pitch_comp6358::before,
footer .pitch_comp6358::after {
    width: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    top: 50%;
    position: absolute;
    content: "";
    height: 1px;
}footer .pitch_comp6358::before {
    left: 0;
}footer .pitch_comp6358::after {
    right: 0;
}

@media (min-width: 768px) {footer .nav_mainwrap9216 {
    flex: 1 1 100%;
}footer .header_bar3259, footer .subscribe_holder {
    flex: 1 1 300px;
}footer .input_holder {
    flex-direction: row;
}footer .online_training6419 {
    white-space: nowrap;
}
}

@media (max-width: 991px) {footer .footer_social0514 {
    padding: 100px 0 30px;
}footer .text_main_holder {
    gap: 20px;
}
}

@media (max-width: 767px) {footer .footer_social0514 {
    padding: 80px 0 30px;
}footer .footer_social0514::before {
    height: 60px;
    background-size: 100% 60px;
}footer .learn_faq4801 {
    margin-bottom: 40px;
}footer .info_item {
    padding: 15px 20px;
    height: auto;
}footer .header_bar3259, footer .subscribe_holder {
    padding: 25px 20px;
}footer .footer_edu2539 {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .footer_social0514 {
    padding: 60px 0 20px;
}footer .footer_social0514::before {
    height: 40px;
    background-size: 100% 40px;
}footer .header_bar3259 h5, footer .subscribe_holder h5 {
    font-size: calc(22px - 2px);
    margin-bottom: 15px;
}footer .header_guide5023 a {
    flex: 1 1 100%;
}footer .input_holder input[type="email"],
    footer .online_training6419 {
    padding: 12px 15px;
}
}