* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}a {
    color: inherit;
    text-decoration: none;
}svg {
    width: 30px;
    height: 30px;
}html,body {
    scroll-behavior: smooth;
    min-height: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
}.wrapper-section {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    height: 100%;
}.study-bottom {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}.top-sitebar {
    flex: 1 0 auto;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1271px;
}

@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.mentorship-profile {
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
    background: rgb(231,242,241);
    min-height: 450px;
}.mentorship-profile::before {
    content: "";
    top: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgb(200,217,216,0.5) 30px,
        rgb(200,217,216,0.5) 32px
    );
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0.05;
    left: 0;
}.mentorship-profile .client-review {
    position: relative;
    flex-direction: column;
    display: flex;
    margin: 0 auto;
    transform-style: preserve-3d;
    perspective: 1000px;
    max-width: 1000px;
}.mentorship-profile .photo-show {
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    z-index: 5;
    border: 4px solid #ffffff;
    width: 140px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    height: 140px;
    position: relative;
    margin-left: 60px;
}.mentorship-profile .client-review:hover .photo-show {
    border-color: rgb(200,217,216);
    transform: translateY(-15px) scale(1.1);
}.mentorship-profile .professional-exp {
    border-radius: 17px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    transform: translateZ(0);
    padding: 60px 40px 40px;
    margin-top: -40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    background: #ffffff;
}.mentorship-profile .client-review:hover .professional-exp {
    transform: translateZ(30px);
}.mentorship-profile .professional-exp::before {
    transition: height 0.5s ease;
    left: 0;
    position: absolute;
    background: linear-gradient(to bottom, rgb(200,217,216), rgb(164,185,184));
    width: 4px;
    top: 0;
    height: 0;
    content: "";
}.mentorship-profile .client-review:hover .professional-exp::before {
    animation: pulseGlow 2s infinite;
    height: 100%;
}.mentorship-profile .name {
    transition: all 0.4s ease;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateX(0);
    letter-spacing: 1px;
    color: #000000;
    font-size: 31px;
}.mentorship-profile .client-review:hover .name {
    transform: translateX(15px);
    color: rgb(200,217,216);
}.mentorship-profile .professional-exp > div:nth-child(2) {
    letter-spacing: 0.5px;
    transform: translateX(0);
    text-transform: uppercase;
    margin-bottom: 25px;
    transition: all 0.4s ease 0.1s;
    opacity: 0.8;
    font-weight: 600;
    color: rgb(164,185,184);
    font-size: 18px;
}.mentorship-profile .client-review:hover .professional-exp > div:nth-child(2) {
    transform: translateX(15px);
}.mentorship-profile .employee-summary {
    transform: translateY(0);
    position: relative;
    line-height: 1.8;
    color: #000000;
    font-size: 18px;
    transition: all 0.4s ease 0.2s;
    opacity: 0.9;
    padding: 20px 0;
}.mentorship-profile .client-review:hover .employee-summary {
    transform: translateY(-5px);
}.mentorship-profile .employee-summary::before,
.mentorship-profile .employee-summary::after {
    height: 1px;
    width: 35px;
    position: absolute;
    background: rgb(164,185,184,0.5);
    content: "";
    transition: all 0.4s ease;
}.mentorship-profile .employee-summary::before {
    left: 0;
    top: 0;
}.mentorship-profile .employee-summary::after {
    bottom: 0;
    right: 0;
}.mentorship-profile .client-review:hover .employee-summary::before,
.mentorship-profile .client-review:hover .employee-summary::after {
    width: 100px;
    height: 2px;
    background: rgb(164,185,184);
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 8px 2px rgb(200,217,216,0.5);
    }
    50% {
        box-shadow: 0 0 15px 2px rgb(200,217,216);
    }
}

@media (min-width: 768px) {.mentorship-profile .client-review {
    flex-direction: row;
    align-items: center;
}.mentorship-profile .photo-show {
    margin-left: 0;
    height: 180px;
    z-index: 5;
    margin-right: -80px;
    width: 180px;
}.mentorship-profile .professional-exp {
    margin-top: 0;
    padding-left: 100px;
    flex: 1;
}
}

@media (max-width: 767px) {.mentorship-profile {
    padding: 60px 20px;
}.mentorship-profile .professional-exp {
    padding: 60px 25px 35px;
}.mentorship-profile .name {
    font-size: calc(31px - 4px);
}.mentorship-profile .professional-exp > div:nth-child(2) {
    font-size: calc(18px - 1px);
}.mentorship-profile .employee-summary {
    font-size: calc(18px - 1px);
}}.sign-up-now {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
    background: linear-gradient(140deg, rgb(231,242,241) 0%, #ffffff 100%);
}.sign-up-now::before {
    opacity: 0.08;
    background-size: 20px 20px;
    width: 100%;
    content: '';
    background-image: 
        linear-gradient(to right, rgb(200,217,216,0.5) 1px, transparent 1px),
        linear-gradient(to bottom, rgb(200,217,216,0.5) 1px, transparent 1px);
    z-index: 1;
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
}.sign-up-now .fast-guide {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.07);
    justify-content: space-between;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    position: relative;
    z-index: 10;
    flex-direction: row;
    align-items: center;
    padding: 60px;
}.sign-up-now .fast-guide::before {
    background: linear-gradient(45deg, transparent 96%, rgb(200,217,216) 96%, rgb(200,217,216) 100%);
    content: '';
    z-index: -1;
    height: 100%;
    left: 0;
    position: absolute;
    border-radius: 15px;
    width: 100%;
    top: 0;
}.sign-up-now .container p {
    font-weight: 700;
    z-index: 5;
    margin: 0;
    line-height: 1.4;
    flex: 0 0 65%;
    font-size: 36px;
    position: relative;
    color: #000000;
}.sign-up-now .reach-message {
    flex: 0 0 30%;
    align-items: center;
    z-index: 5;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    justify-content: center;
    border: 2px solid rgb(200,217,216);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 80px;
    display: flex;
    color: rgb(200,217,216);
    background: linear-gradient(135deg, rgb(200,217,216,0.5) 0%, transparent 100%);
    position: relative;
}.sign-up-now .reach-message::before {
    top: -2px;
    position: absolute;
    left: -2px;
    z-index: -1;
    background: rgb(200,217,216);
    content: '';
    transform: translateX(-100%);
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    transition: transform 0.4s ease;
}.sign-up-now .reach-message:hover {
    box-shadow: 0 10px 30px rgb(200,217,216,0.5);
    color: #ffffff;
}.sign-up-now .reach-message:hover::before {
    transform: translateX(0);
}.sign-up-now::after {
    background: radial-gradient(circle, rgb(200,217,216,0.5) 0%, transparent 70%);
    right: -200px;
    z-index: 1;
    height: 400px;
    content: '';
    width: 400px;
    position: absolute;
    opacity: 0.4;
    top: -200px;
}.sign-up-now .fast-guide::after {
    background: #ffffff;
    width: 30px;
    left: 60px;
    position: absolute;
    content: '';
    z-index: 2;
    border: 2px solid rgb(200,217,216);
    border-radius: 50%;
    height: 30px;
    bottom: -15px;
}

@media (max-width: 991px) {.sign-up-now {
    padding: 100px 0;
}.sign-up-now .fast-guide {
    padding: 40px;
}.sign-up-now .container p {
    font-size: calc(23px * 1.2);
}.sign-up-now .reach-message {
    height: 70px;
}.sign-up-now .fast-guide::after {
    width: 25px;
    bottom: -12px;
    height: 25px;
    left: 40px;
}
}

@media (max-width: 767px) {.sign-up-now {
    padding: 80px 0;
}.sign-up-now .fast-guide {
    flex-direction: column;
    padding: 30px;
    gap: 40px;
}.sign-up-now .container p {
    font-size: 23px;
    width: 100%;
    flex: none;
}.sign-up-now .reach-message {
    width: 100%;
    height: 60px;
    flex: none;
}.sign-up-now .fast-guide::after {
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
}
}

@media (max-width: 480px) {.sign-up-now {
    padding: 60px 0;
}.sign-up-now .fast-guide {
    gap: 30px;
    padding: 25px;
}.sign-up-now .container p {
    font-size: calc(18px * 1.2);
}.sign-up-now .reach-message {
    font-size: calc(15px * 0.9);
    height: 50px;
}}.tyBlock {
    background: linear-gradient(135deg, rgb(231,242,241) 0%, rgb(164,185,184,0.5) 100%);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
    perspective: 1000px;
}.tyBlock::before {
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
    background: 
        radial-gradient(circle at 20% 30%, rgb(200,217,216,0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgb(164,185,184,0.5) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    animation: backgroundPulse 15s infinite alternate ease-in-out;
    content: "";
    width: 100%;
}.tyBlock::after {
    width: 50%;
    top: -10%;
    transform: rotate(-15deg) translateZ(-10px);
    background: rgb(200,217,216,0.5);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    filter: blur(30px);
    animation: floatElement 20s infinite alternate ease-in-out;
    content: "";
    opacity: 0.05;
    position: absolute;
    height: 50%;
    right: -10%;
    z-index: 0;
}.tyBlock .container {
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
    transform-style: preserve-3d;
}.tyBlock h2 {
    line-height: 1.3;
    font-weight: 700;
    font-size: 30px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    color: #000000;
    transform: translateZ(30px);
    animation: slideInFromTop 0.8s ease-out forwards;
    margin-bottom: 40px;
}.tyBlock h2::after {
    position: absolute;
    width: 80px;
    transform: scaleX(0);
    height: 3px;
    animation: lineExpand 1.2s 0.6s forwards cubic-bezier(0.19, 1, 0.22, 1);
    bottom: -15px;
    transform-origin: left;
    background: rgb(200,217,216);
    left: 0;
    content: "";
}.tyBlock .fast-guide {
    background: #ffffff;
    transform: translateZ(10px) rotateX(2deg);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.05),
        0 5px 15px rgba(0, 0, 0, 0.03);
    padding: 45px;
    animation: fadeInUp 1s 0.3s backwards;
}.tyBlock .fast-guide::before {
    content: "";
    animation: heightGrow 1.2s 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(to bottom, rgb(200,217,216), rgb(164,185,184));
    width: 6px;
    left: 0;
    height: 0;
    top: 0;
    position: absolute;
}.tyBlock .fast-guide:hover {
    transform: translateZ(15px) rotateX(0deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.05);
}.tyBlock ul {
    list-style: none;
    padding: 0;
    margin: 0;
}.tyBlock li {
    position: relative;
    display: flex;
    align-items: flex-start;
}.tyBlock li::before {
    width: 12px;
    border-radius: 50%;
    opacity: 0;
    top: 8px;
    animation: dotAppear 0.5s 1.2s forwards;
    transform: scale(0);
    background: rgb(200,217,216);
    content: "";
    height: 12px;
    left: -30px;
    position: absolute;
}.tyBlock li span {
    line-height: 1.8;
    font-size: 18px;
    transform: translateX(0);
    font-family: Arial, sans-serif;
    color: #000000;
    opacity: 0;
    position: relative;
    display: block;
    animation: textFadeIn 0.8s 1s forwards ease-out;
}.tyBlock li span::first-letter {
    font-size: 1.5em;
    font-weight: 700;
    color: rgb(200,217,216);
}

@keyframes backgroundPulse {
    0%, 100% { 
        opacity: 0.15;
        transform: scale(1);
    }
    50% { 
        opacity: 0.25;
        transform: scale(1.05);
    }
}

@keyframes floatElement {
    0% { transform: rotate(-15deg) translateZ(-10px) translate(0, 0); }
    50% { transform: rotate(-10deg) translateZ(-10px) translate(20px, -10px); }
    100% { transform: rotate(-15deg) translateZ(-10px) translate(0, 0); }
}

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

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

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

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

@keyframes dotAppear {
    0% { opacity: 0; transform: scale(0); }
    70% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

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

@media (max-width: 991px) {.tyBlock {
    padding: 80px 0;
}.tyBlock h2 {
    margin-bottom: 30px;
    font-size: calc(30px * 0.9);
}.tyBlock .fast-guide {
    padding: 35px;
}
}

@media (max-width: 767px) {.tyBlock {
    padding: 60px 0;
    perspective: 800px;
}.tyBlock h2 {
    margin-bottom: 25px;
    font-size: calc(30px * 0.8);
    transform: translateZ(20px);
}.tyBlock .fast-guide {
    padding: 30px 25px;
    transform: translateZ(5px) rotateX(1deg);
}.tyBlock li::before {
    width: 10px;
    height: 10px;
    left: -20px;
}.tyBlock li span {
    font-size: calc(18px * 0.95);
    line-height: 1.6;
}
}

@media (max-width: 480px) {.tyBlock {
    padding: 40px 0;
}.tyBlock h2 {
    margin-bottom: 20px;
    font-size: calc(30px * 0.7);
}.tyBlock .fast-guide {
    padding: 25px 20px;
}.tyBlock h2::after {
    width: 60px;
    height: 2px;
}.tyBlock li span {
    line-height: 1.5;
    font-size: calc(18px * 0.9);
}}.privacy-silo {
    font-family: Arial, sans-serif;
    overflow: hidden;
    color: #000000;
    padding: 4rem 2rem;
    position: relative;
    background: linear-gradient(145deg, rgb(231,242,241), rgba(245, 245, 250, 0.9));
}.privacy-silo::before {
    top: -10%;
    transform: rotate(-15deg);
    right: -5%;
    width: 250px;
    position: absolute;
    content: "";
    height: 250px;
    filter: blur(60px);
    background: linear-gradient(120deg, rgb(200,217,216,0.5), rgb(164,185,184,0.5));
    opacity: 0.3;
    z-index: 0;
}.privacy-silo::after {
    filter: blur(50px);
    opacity: 0.2;
    z-index: 0;
    content: "";
    width: 200px;
    background: linear-gradient(230deg, rgb(164,185,184,0.5), rgb(200,217,216,0.5));
    transform: rotate(15deg);
    height: 200px;
    bottom: -10%;
    position: absolute;
    left: -5%;
}.privacy-silo .container {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 1140px;
    position: relative;
    transform: translateZ(0);
    backdrop-filter: blur(10px) saturate(120%);
    z-index: 1;
    background: rgba(255, 255, 255, 0.85);
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 15px),
        calc(100% - 15px) 100%,
        0 100%
    );
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 
                0 1px 5px rgba(0, 0, 0, 0.02),
                0 20px 50px rgba(50, 50, 93, 0.05);
    margin: 0 auto;
}.privacy-silo .container:hover {
    transform: translateY(-5px) translateZ(0);
}.privacy-silo h1 {
    letter-spacing: -0.02em;
    transform: translateZ(0);
    position: relative;
    font-size: 39px;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    color: #000000;
}.privacy-silo h1::after {
    background: linear-gradient(90deg, rgb(200,217,216), rgb(164,185,184));
    transform-origin: left center;
    width: 80px;
    content: "";
    left: 0;
    position: absolute;
    transition: width 0.3s ease-out;
    height: 4px;
    bottom: 0;
}.privacy-silo .container:hover h1::after {
    width: 120px;
}.privacy-silo h2 {
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
    margin: 2.5rem 0 1.25rem;
    font-weight: 600;
    color: #000000;
    font-size: 28px;
}.privacy-silo h2::before {
    height: 12px;
    z-index: -1;
    position: absolute;
    opacity: 0.25;
    left: 0;
    transform: skewX(-15deg);
    transition: height 0.3s, opacity 0.3s;
    width: 100%;
    background-color: rgb(200,217,216,0.5);
    bottom: 5px;
    content: "";
}.privacy-silo h2:hover::before {
    height: 8px;
    opacity: 0.4;
}.privacy-silo h3 {
    position: relative;
    font-weight: 600;
    font-size: calc(28px * 0.8);
    padding-left: 15px;
    color: #000000;
    margin: 2rem 0 1rem;
}.privacy-silo h3::before {
    content: "";
    position: absolute;
    background: linear-gradient(to bottom, rgb(200,217,216), rgb(164,185,184));
    width: 4px;
    height: 70%;
    left: 0;
    border-radius: 1px;
    top: 0.25em;
}.privacy-silo h4 {
    letter-spacing: 0.05em;
    color: #000000;
    opacity: 0.85;
    text-transform: uppercase;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
    font-size: calc(28px * 0.7);
}.privacy-silo p {
    color: #000000;
    position: relative;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    z-index: 1;
    font-size: 17px;
}.privacy-silo strong {
    display: inline-block;
    position: relative;
    font-weight: 600;
    padding-bottom: 2px;
    color: #000000;
}.privacy-silo strong::after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(200,217,216,0.5);
    position: absolute;
    content: "";
}.privacy-silo ul {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}.privacy-silo ul::before {
    position: absolute;
    height: 100%;
    left: 0;
    content: "";
    background: linear-gradient(to bottom, 
        rgb(200,217,216,0.5),
        rgb(164,185,184,0.5),
        transparent);
    top: 0;
    width: 1px;
}.privacy-silo li {
    font-size: 17px;
    padding-left: 0.5rem;
    color: #000000;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.7;
}.privacy-silo li::before {
    border: 1px solid rgb(200,217,216);
    width: 8px;
    left: -1.5rem;
    top: 0.7em;
    transform: rotate(45deg);
    height: 8px;
    background-color: #ffffff;
    content: "";
    transition: transform 0.3s, background-color 0.3s;
    position: absolute;
}.privacy-silo li:hover::before {
    transform: rotate(135deg);
    background-color: rgb(200,217,216,0.5);
}.privacy-silo span {
    display: block;
    padding-left: 1rem;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.75;
    font-size: 17px;
    border-left: 1px dashed rgb(164,185,184,0.5);
}

@media (max-width: 992px) {.privacy-silo {
    padding: 3rem 1.5rem;
}.privacy-silo .container {
    padding: 2.5rem;
}.privacy-silo h1 {
    font-size: calc(39px * 0.9);
}.privacy-silo h2 {
    font-size: calc(28px * 0.9);
}
}

@media (max-width: 768px) {.privacy-silo {
    padding: 2.5rem 1rem;
}.privacy-silo .container {
    clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 10px),
            calc(100% - 10px) 100%,
            0 100%
        );
    padding: 2rem;
}.privacy-silo h1 {
    margin-bottom: 1.5rem;
    font-size: calc(39px * 0.8);
}.privacy-silo h2 {
    margin: 2rem 0 1rem;
    font-size: calc(28px * 0.8);
}.privacy-silo h3 {
    font-size: calc(28px * 0.7);
}.privacy-silo h4 {
    font-size: calc(28px * 0.6);
}.privacy-silo p, 
    .privacy-silo li,
    .privacy-silo span {
    font-size: calc(17px * 0.95);
}
}

@media (max-width: 576px) {.privacy-silo {
    padding: 2rem 0.75rem;
}.privacy-silo .container {
    clip-path: polygon(
            0 0,
            100% 0,
            100% calc(100% - 8px),
            calc(100% - 8px) 100%,
            0 100%
        );
    padding: 1.5rem;
}.privacy-silo h1 {
    padding-bottom: 0.75rem;
    font-size: calc(39px * 0.7);
}.privacy-silo h1::after {
    width: 60px;
    height: 3px;
}.privacy-silo h2 {
    font-size: calc(28px * 0.7);
}.privacy-silo h2::before {
    height: 8px;
}.privacy-silo h3 {
    padding-left: 12px;
    font-size: calc(28px * 0.6);
}.privacy-silo h3::before {
    width: 3px;
}.privacy-silo h4 {
    font-size: calc(28px * 0.55);
}.privacy-silo p, 
    .privacy-silo li,
    .privacy-silo span {
    line-height: 1.6;
    font-size: calc(17px * 0.9);
}.privacy-silo ul {
    padding-left: 1.25rem;
}.privacy-silo span {
    padding-left: 0.75rem;
}}.user-reviews {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(231,242,241) 0%, rgb(164,185,184,0.5) 100%);
    padding: 6rem 0;
}.user-reviews::before {
    height: 70%;
    z-index: 1;
    background: linear-gradient(225deg, rgb(200,217,216,0.5) 10%, transparent 70%);
    width: 40%;
    right: -5%;
    pointer-events: none;
    content: "";
    transform: rotate(-15deg) skewX(15deg);
    top: -10%;
    position: absolute;
    opacity: 0.7;
}.user-reviews::after {
    background: linear-gradient(45deg, rgb(164,185,184,0.5) 20%, transparent 80%);
    width: 35%;
    opacity: 0.5;
    transform: rotate(10deg) skewX(-10deg);
    content: "";
    position: absolute;
    bottom: -10%;
    z-index: 1;
    left: -5%;
    pointer-events: none;
    height: 60%;
}.user-reviews .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 2;
    perspective: 1000px;
    position: relative;
}.user-reviews h2 {
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 0.5px;
    position: relative;
    color: #000000;
    text-align: center;
    transform: translateZ(30px);
    margin-bottom: 3.5rem;
}.user-reviews h2::after {
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    content: "";
    background: linear-gradient(90deg, rgb(200,217,216) 0%, rgb(164,185,184) 100%);
    bottom: -15px;
    position: absolute;
    width: 80px;
}.user-reviews .client-feedback {
    perspective: 1000px;
    list-style: none;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin: 0;
    display: grid;
    padding: 0;
}.user-reviews .client-review {
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    z-index: 1;
    background: #ffffff;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    border-radius: 8px;
    padding: 2rem;
    transform: translateZ(0);
}.user-reviews .client-review::before {
    height: 5px;
    content: "";
    transform: scaleX(0);
    z-index: 2;
    transform-origin: left;
    top: 0;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: absolute;
    background: linear-gradient(90deg, rgb(200,217,216) 0%, rgb(164,185,184) 100%);
    width: 100%;
}.user-reviews .client-review:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px) translateZ(30px);
}.user-reviews .client-review:hover::before {
    transform: scaleX(1);
}.user-reviews .client-review > div {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}.user-reviews .client-review img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid #ffffff;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 1rem;
}.user-reviews .client-review:hover img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}.user-reviews .client-review h4 {
    font-weight: 600;
    color: #000000;
    transition: transform 0.3s ease, color 0.3s ease;
    font-size: 22px;
    margin: 0;
}.user-reviews .client-review:hover h4 {
    transform: translateX(5px);
    color: rgb(200,217,216);
}.user-reviews .description {
    font-size: 13px;
    margin: 0;
    position: relative;
    line-height: 1.6;
    color: #000000;
    z-index: 2;
}.user-reviews .description::before {
    opacity: 0.3;
    font-size: 80px;
    top: -35px;
    line-height: 1;
    z-index: -1;
    color: rgb(164,185,184,0.5);
    transition: transform 0.4s ease, opacity 0.4s ease;
    content: "";
    position: absolute;
    left: -10px;
}.user-reviews .client-review:hover .description::before {
    opacity: 0.5;
    transform: scale(1.2) rotate(5deg);
}.user-reviews a {
    border-radius: 4px;
    color: #ffffff;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    margin-left: auto;
    position: relative;
    margin-right: auto;
    font-weight: 600;
    margin-top: 2.5rem;
    text-align: center;
    z-index: 2;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgb(200,217,216) 0%, rgb(164,185,184) 100%);
    display: table;
    font-size: 20px;
    text-decoration: none;
}.user-reviews a::before {
    left: -100%;
    top: 0;
    transition: left 0.6s ease;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    width: 100%;
    position: absolute;
    content: "";
    height: 100%;
    z-index: -1;
}.user-reviews a:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}.user-reviews a:hover::before {
    left: 100%;
}

@media (max-width: 1024px) {.user-reviews {
    padding: 5rem 0;
}.user-reviews .client-feedback {
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}.user-reviews h2 {
    font-size: calc(30px * 0.9);
    margin-bottom: 3rem;
}
}

@media (max-width: 768px) {.user-reviews {
    padding: 4rem 0;
}.user-reviews .container {
    padding: 0 1.5rem;
}.user-reviews .client-feedback {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.8rem;
}.user-reviews h2 {
    font-size: calc(30px * 0.85);
    margin-bottom: 2.5rem;
}.user-reviews .client-review {
    padding: 1.8rem;
}
}

@media (max-width: 576px) {.user-reviews {
    padding: 3.5rem 0;
}.user-reviews .container {
    padding: 0 1rem;
}.user-reviews .client-feedback {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}.user-reviews h2 {
    font-size: calc(30px * 0.8);
    margin-bottom: 2rem;
}.user-reviews .client-review img {
    width: 50px;
    height: 50px;
}.user-reviews .client-review {
    padding: 1.5rem;
}.user-reviews .description::before {
    top: -25px;
    font-size: 60px;
}
}

@media (prefers-reduced-motion: reduce) {.user-reviews .client-review,
    .user-reviews .client-review::before,
    .user-reviews .client-review img,
    .user-reviews .client-review h4,
    .user-reviews .description::before,
    .user-reviews a,
    .user-reviews a::before {
    transition: none;
}}.windowPrivacySettings {
    animation: fadeInUp 0.5s ease-out;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    background-color: rgb(231,242,241);
    bottom: 0;
    z-index: 1000;
    width: 100%;
    border-top: 1px solid rgb(200,217,216);
    position: fixed;
}.windowPrivacySettings .cookie-apply {
    flex-shrink: 0;
    margin-right: 20px;
    animation: logoScale 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    transform-origin: center;
}.windowPrivacySettings .cookie-apply svg {
    height: 60px;
    fill: rgb(200,217,216);
    width: 60px;
}@keyframes logoScale {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.windowPrivacySettings .edu-cookie {
    flex-grow: 1;
}.windowPrivacySettings .edu-cookie h5 {
    font-size: 24px;
    color: rgb(200,217,216);
    margin-bottom: 6px;
}.windowPrivacySettings .edu-cookie p {
    font-size: 14px;
    color: #000000;
    margin: 0;
    line-height: 1.5;
}.windowPrivacySettings .cookie-tab {
    display: inline-block;
    background-color: rgb(200,217,216);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 14px;
    color: #ffffff;
    margin-top: 20px;
    border-radius: 5px;
    margin-right: 15px;
    padding: 10px 20px;
    text-decoration: none;
}.windowPrivacySettings .cookie-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}.windowPrivacySettings .cookie-tab:active {
    transform: translateY(1px);
    box-shadow: none;
}
@media (max-width: 768px) {.windowPrivacySettings .cookie-apply {
    margin-right: 0;
    margin-bottom: 15px;
}.windowPrivacySettings .cookie-tab {
    margin-left: 0;
    text-align: center;
    width: 48%;
}}
#cookie-banner-box {
    display: none;
}#cookie-banner-box:checked ~ .windowPrivacySettings {
    visibility: hidden;
    opacity: 0;
}.opening-board {
    overflow: hidden;
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, rgb(231,242,241) 0%, rgb(200,217,216,0.5) 100%);
}.opening-board::before {
    position: absolute;
    content: "";
    z-index: 1;
    opacity: 0.6;
    width: 100%;
    height: 100%;
    background: 
    radial-gradient(circle at 20% 30%, rgb(200,217,216,0.5) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgb(164,185,184,0.5) 0%, transparent 30%);
    top: 0;
    left: 0;
}.opening-board::after {
    content: "";
    left: 0;
    width: 100%;
    animation: shimmer 4s infinite linear;
    position: absolute;
    z-index: 2;
    background: linear-gradient(90deg, 
    rgb(200,217,216) 0%, 
    rgb(164,185,184) 50%, 
    rgb(200,217,216) 100%);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    height: 10px;
    bottom: -5px;
}.opening-board .edu-hero {
    position: relative;
    align-items: center;
    padding: 6rem 0;
    max-width: 1280px;
    margin: 0 auto;
    width: 90%;
    min-height: 100vh;
    z-index: 3;
    display: flex;
    justify-content: center;
}.opening-board .edu-hero > div {
    transform: perspective(1000px) rotateX(2deg);
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}.opening-board .edu-hero > div:hover {
    transform: perspective(1000px) rotateX(0deg);
}.opening-board .edu-hero > div > div:first-child {
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.2s ease-out;
    transform: translateY(20px);
    margin-bottom: 2.5rem;
}.opening-board h3 {
    margin: 0 auto;
    position: relative;
    color: #000000;
    max-width: 90%;
    border-left: 4px solid rgb(200,217,216);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    font-weight: 600;
    font-size: calc(22px * 1.05);
    letter-spacing: 0.01em;
    padding: 1.5rem 2rem;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    text-align: center;
    font-family: Arial, sans-serif;
    backdrop-filter: blur(5px);
    line-height: 1.5;
}.opening-board h3::before {
    z-index: -1;
    position: absolute;
    transform: skewX(-3deg);
    left: 0;
    background: rgb(200,217,216,0.5);
    height: 100%;
    opacity: 0.05;
    content: "";
    top: 0;
    width: 100%;
}.opening-board .class-sessions {
    isolation: isolate;
    transform: translateY(20px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    opacity: 0;
    overflow: hidden;
    border-radius: 17px;
    animation: fadeUp 0.8s forwards 0.4s ease-out;
    position: relative;
}.opening-board .class-sessions::before {
    z-index: 1;
    position: absolute;
    mix-blend-mode: color-burn;
    left: 0;
    content: "";
    height: 100%;
    top: 0;
    width: 100%;
    background: linear-gradient(
    135deg, 
    rgb(200,217,216,0.5) 0%,
    transparent 50%,
    rgb(164,185,184,0.5) 100%
  );
}.opening-board .class-sessions::after {
    top: 0;
    position: absolute;
    content: "";
    z-index: 2;
    background-image: 
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(255,255,255,0.03) 10px,
      rgba(255,255,255,0.03) 20px
    );
    width: 100%;
    left: 0;
    height: 100%;
}.opening-board .class-sessions > div {
    position: relative;
    z-index: 3;
    padding: 5rem 2rem;
    min-height: 50vh;
    align-items: center;
    flex-direction: column;
    display: flex;
    justify-content: center;
    background: linear-gradient(to bottom, 
    rgba(0,0,0,0.4) 0%, 
    rgba(0,0,0,0.7) 100%);
}.opening-board .class-sessions p {
    max-width: 80%;
    animation: fadeUp 0.6s forwards 0.7s ease-out;
    opacity: 0;
    font-size: calc(18px * 1.1);
    margin-bottom: 1.5rem;
    padding: 0.8rem 0;
    text-align: center;
    transform: translateY(15px);
    line-height: 1.6;
    letter-spacing: 0.02em;
    position: relative;
    color: #ffffff;
}.opening-board .class-sessions p::after {
    transform: translateX(-50%);
    bottom: 0;
    background: rgb(164,185,184);
    height: 2px;
    content: "";
    left: 50%;
    position: absolute;
    width: 80px;
}.opening-board .title_style_header {
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    margin: 1.5rem 0 0;
    transform: translateY(15px);
    animation: fadeUp 0.6s forwards 0.9s ease-out;
    line-height: 1.2;
    color: #ffffff;
    opacity: 0;
    letter-spacing: 0.03em;
    text-align: center;
    position: relative;
    font-size: 45px;
}.opening-board .title_style_header::before,
.opening-board .title_style_header::after {
    border-radius: 2px;
    position: absolute;
    height: 3px;
    width: 80px;
    content: "";
    background: rgb(164,185,184);
}.opening-board .title_style_header::before {
    left: -100px;
    top: 50%;
    animation: scaleIn 0.5s forwards 1.2s ease-out;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right;
}.opening-board .title_style_header::after {
    top: 50%;
    right: -100px;
    transform-origin: left;
    animation: scaleIn 0.5s forwards 1.2s ease-out;
    transform: translateY(-50%) scaleX(0);
}

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

@keyframes scaleIn {
  0% {
    transform: translateY(-50%) scaleX(0);
  }
  100% {
    transform: translateY(-50%) scaleX(1);
  }
}

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

@media (max-width: 992px) {.opening-board .edu-hero {
    padding: 4rem 0;
}.opening-board h3 {
    padding: 1.2rem 1.5rem;
    font-size: calc(22px * 1.1);
}.opening-board .title_style_header {
    font-size: calc(35px * 1.05);
}.opening-board .title_style_header::before {
    width: 60px;
    left: -60px;
}.opening-board .title_style_header::after {
    width: 60px;
    right: -60px;
}
}

@media (max-width: 768px) {.opening-board .edu-hero {
    padding: 3.5rem 0;
    width: 95%;
}.opening-board h3 {
    max-width: 100%;
    padding: 1rem;
    font-size: 22px;
}.opening-board .class-sessions > div {
    min-height: 40vh;
    padding: 4rem 1rem;
}.opening-board .class-sessions p {
    max-width: 100%;
    font-size: 18px;
}.opening-board .title_style_header {
    font-size: 35px;
}.opening-board .title_style_header::before,
  .opening-board .title_style_header::after {
    display: none;
}
}

@media (max-width: 576px) {.opening-board {
    min-height: 80vh;
}.opening-board .edu-hero {
    min-height: 80vh;
    padding: 2rem 0;
}.opening-board .edu-hero > div > div:first-child {
    margin-bottom: 1.5rem;
}.opening-board h3 {
    border-left-width: 3px;
    font-size: calc(18px * 1.1);
    padding: 0.8rem;
}.opening-board .class-sessions > div {
    min-height: 30vh;
    padding: 3rem 1rem;
}.opening-board .class-sessions p {
    font-size: calc(18px * 0.95);
    margin-bottom: 1rem;
}.opening-board .class-sessions p::after {
    height: 1px;
    width: 50px;
}.opening-board .title_style_header {
    margin-top: 0.8rem;
    font-size: calc(35px * 0.85);
}}.get-in-touch {
    padding: 120px 0;
    background: rgb(231,242,241);
    overflow: hidden;
    position: relative;
}.get-in-touch::before {
    background: linear-gradient(90deg, rgb(200,217,216), rgb(164,185,184));
    position: absolute;
    content: "";
    height: 5px;
    top: 0;
    left: 0;
    width: 100%;
}.get-in-touch .container {
    padding: 0 20px;
    margin: 0 auto;
    z-index: 1;
    max-width: 1200px;
    position: relative;
}.get-in-touch h2 {
    font-size: 38px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    color: #000000;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    padding-left: 20px;
    text-align: left;
}.get-in-touch h2::before {
    border-radius: 10px;
    width: 5px;
    left: 0;
    content: "";
    height: 100%;
    position: absolute;
    background: rgb(200,217,216);
    top: 0;
}.get-in-touch .connect-feedback {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    display: grid;
    align-items: center;
}.get-in-touch .photo-show {
    min-height: 500px;
    position: relative;
    box-shadow: -15px 15px 0 rgb(200,217,216,0.5);
    order: 2;
    overflow: hidden;
    border-radius: 22px;
}.get-in-touch .help-block {
    order: 1;
}.get-in-touch form {
    width: 100%;
    border-radius: 22px;
    padding: 50px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}.get-in-touch form h3 {
    text-transform: uppercase;
    margin-bottom: 35px;
    font-weight: 700;
    color: #000000;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
}.get-in-touch form input[type="text"] {
    transition: all 0.3s ease;
    padding: 18px 25px;
    font-family: Arial, sans-serif;
    margin-bottom: 25px;
    font-size: 15px;
    color: #000000;
    border-radius: 10px;
    background: rgb(231,242,241);
    border: none;
    width: 100%;
}.get-in-touch form input[type="text"]:focus {
    box-shadow: 0 0 0 2px rgb(200,217,216,0.5);
    outline: none;
    background: #ffffff;
}.get-in-touch form input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.5;
}.get-in-touch .help-list {
    align-items: flex-start;
    margin-bottom: 30px;
    display: flex;
}.get-in-touch .help-list input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.get-in-touch .help-list label {
    line-height: 1.5;
    padding-left: 35px;
    font-size: 14px;
    cursor: pointer;
    color: #000000;
    position: relative;
}.get-in-touch .help-list label::before {
    height: 22px;
    left: 0;
    border-radius: 10px;
    transition: all 0.2s ease;
    top: 2px;
    position: absolute;
    width: 22px;
    background: rgb(231,242,241);
    content: "";
}.get-in-touch .help-list input[type="checkbox"]:checked + label::before {
    background: rgb(200,217,216);
}.get-in-touch .help-list input[type="checkbox"]:checked + label::after {
    top: 6px;
    position: absolute;
    border-bottom: 2px solid #ffffff;
    content: "";
    height: 10px;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    width: 6px;
    left: 8px;
}.get-in-touch .help-list label a {
    text-decoration: none;
    font-weight: 600;
    color: rgb(200,217,216);
    transition: all 0.3s ease;
}.get-in-touch .help-list label a:hover {
    color: rgb(164,185,184);
}.get-in-touch form .reach-message {
    position: relative;
    font-size: 14px;
    background: #000000;
    font-family: Arial, sans-serif;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    padding: 18px 40px;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}.get-in-touch form .reach-message:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background: rgb(200,217,216);
    transform: translateY(-3px);
}.get-in-touch svg {
    width: 20px;
    height: 20px;
    fill: rgb(200,217,216);
}.get-in-touch svg path {
    fill: rgb(200,217,216);
    transition: fill 0.3s ease;
}

@media screen and (max-width: 991px) {.get-in-touch {
    padding: 90px 0;
}.get-in-touch .connect-feedback {
    gap: 40px;
    grid-template-columns: 1fr;
}.get-in-touch .photo-show {
    max-width: 600px;
    min-height: 400px;
    order: 1;
    margin: 0 auto;
}.get-in-touch .help-block {
    order: 2;
}.get-in-touch form {
    margin: 0 auto;
    max-width: 600px;
}
}

@media screen and (max-width: 767px) {.get-in-touch {
    padding: 70px 0;
}.get-in-touch h2 {
    margin-bottom: 40px;
    font-size: calc(38px * 0.9);
}.get-in-touch .photo-show {
    box-shadow: -10px 10px 0 rgb(200,217,216,0.5);
    width: 100%;
    min-height: 300px;
}.get-in-touch form {
    padding: 40px 30px;
}
}

@media screen and (max-width: 576px) {.get-in-touch {
    padding: 50px 0;
}.get-in-touch h2 {
    font-size: calc(38px * 0.8);
    margin-bottom: 30px;
}.get-in-touch .photo-show {
    box-shadow: -8px 8px 0 rgb(200,217,216,0.5);
    min-height: 250px;
}.get-in-touch form {
    padding: 30px 20px;
}.get-in-touch form h3 {
    margin-bottom: 25px;
    font-size: calc(20px * 0.9);
}.get-in-touch form input[type="text"] {
    margin-bottom: 20px;
    padding: 15px 20px;
}.get-in-touch form .reach-message {
    padding: 15px 20px;
    width: 100%;
}}.company-info {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    background: rgb(231,242,241);
    overflow: hidden;
}.company-info::before {
    opacity: 0.2;
    width: 100%;
    content: "";
    background: radial-gradient(ellipse at bottom right, rgb(200,217,216,0.5) 0%, transparent 70%);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    z-index: -1;
}.company-info::after {
    opacity: 0.03;
    z-index: -2;
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 25%, transparent 25%, transparent 50%, 
                        rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 75%, transparent 75%, transparent);
    animation: backgroundMove 15s linear infinite;
    background-size: 60px 60px;
    width: 100%;
}@keyframes backgroundMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 60px;
    }
}

.company-info .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 15px;
}.company-info .fast-guide {
    display: grid;
    grid-template-areas: 
        "logo"
        "top-sitebar"
        "director";
    grid-template-rows: auto auto auto;
    gap: 40px;
    position: relative;
    grid-template-columns: 1fr;
}.company-info .quick-classes {
    font-size: calc(24px * 1.3);
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
    display: flex;
    font-weight: 700;
    grid-area: logo;
    color: rgb(200,217,216);
    position: relative;
    justify-content: center;
}.company-info .quick-classes svg {
    fill: rgb(200,217,216);
    height: 60px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 60px;
}.company-info .quick-classes svg path {
    fill: rgb(200,217,216);
}.company-info .words-container {
    position: relative;
    text-align: center;
    padding: 0 10%;
    grid-area: content;
}.company-info .words-container h2 {
    font-size: 38px;
    margin-bottom: 30px;
    display: inline-block;
    font-weight: 700;
    position: relative;
    color: #000000;
}.company-info .words-container h2::before,
.company-info .words-container h2::after {
    height: 2px;
    position: absolute;
    width: 40px;
    top: 50%;
    background: rgb(164,185,184);
    content: "";
}.company-info .words-container h2::before {
    right: calc(100% + 20px);
}.company-info .words-container h2::after {
    left: calc(100% + 20px);
}.company-info .words-container p {
    line-height: 1.8;
    font-size: 16px;
    color: #000000;
    position: relative;
    margin-bottom: 0;
}.company-info .learn-learnings {
    grid-row:1;
    justify-content: center;
    padding-top: 40px;
    margin-top: 20px;
    grid-area: director;
    display: flex;
    position: relative;
}.company-info .photo-show {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    height: 180px;
    width: 180px;
    border-radius: 10px;
    box-shadow: 15px 15px 0 rgb(200,217,216,0.5);
}.company-info .photo-show:hover {
    box-shadow: 20px 20px 0 rgb(200,217,216,0.5);
    transform: translate(-5px, -5px);
}.company-info .academy-track {
    padding-left: 30px;
    flex-direction: column;
    justify-content: center;
    position: relative;
    display: flex;
}.company-info .academy-track::before {
    position: absolute;
    width: 30px;
    top: 50%;
    content: "";
    transform: translateY(-50%);
    left: 0;
    height: 1px;
    background: rgb(200,217,216);
}.company-info .expert-learnings {
    font-size: 24px;
    color: #000000;
    font-weight: 700;
    margin-bottom: 5px;
}.company-info .why-trust {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 600;
    color: rgb(200,217,216);
}

@media (min-width: 768px) {.company-info .fast-guide {
    grid-template-areas:
            "logo logo"
            "content content"
            "director director";
    grid-template-columns: 1fr 1fr;
}
}

@media (min-width: 992px) {.company-info .fast-guide {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
            "logo content content"
            "director content content";
    gap: 30px;
}.company-info .quick-classes {
    justify-content: flex-start;
}.company-info .words-container {
    padding: 0 0 0 30px;
    text-align: left;
}.company-info .words-container h2::before,
    .company-info .words-container h2::after {
    display: none;
}.company-info .learn-learnings {
    padding-top: 0;
    margin-top: 50px;
}

}

@media (min-width: 1200px) {.company-info .fast-guide {
    grid-template-areas:
            "logo . content"
            "director . content";
    gap: 40px;
    grid-template-columns: 0.8fr 2fr;
}.company-info .words-container {
    padding: 0 0 0 50px;
    position: relative;
}.company-info .words-container::before {
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, rgb(200,217,216), transparent);
    content: "";
    left: 0;
    position: absolute;
    top: 10%;
}
}

@media (max-width: 767px) {.company-info {
    padding: 80px 0;
}.company-info .words-container h2::before,
    .company-info .words-container h2::after {
    width: 25px;
}.company-info .photo-show {
    width: 140px;
    box-shadow: 10px 10px 0 rgb(200,217,216,0.5);
    height: 140px;
}.company-info .academy-track {
    padding-left: 20px;
}.company-info .academy-track::before {
    width: 20px;
}
}

@media (max-width: 575px) {.company-info {
    padding: 60px 0;
}.company-info .quick-classes {
    font-size: 24px;
}.company-info .quick-classes svg {
    height: 50px;
    width: 50px;
}.company-info .words-container h2 {
    font-size: calc(38px * 0.9);
}.company-info .words-container h2::before,
    .company-info .words-container h2::after {
    width: 20px;
}.company-info .learn-learnings {
    flex-direction: column;
    align-items: center;
}.company-info .academy-track {
    text-align: center;
    padding-left: 0;
    padding-top: 20px;
}.company-info .academy-track::before {
    transform: translateX(-50%);
    top: 10px;
    height: 1px;
    width: 30px;
    left: 50%;
}}.find-us {
    padding: 120px 0 80px;
    perspective: 1000px;
    background: linear-gradient(135deg, rgb(231,242,241) 0%, rgba(245, 245, 255, 0.9) 100%);
    overflow: hidden;
    position: relative;
}.find-us::before {
    z-index: 0;
    left: -10%;
    height: 200%;
    background: linear-gradient(120deg, rgb(200,217,216,0.5) 0%, transparent 70%);
    width: 120%;
    opacity: 0.05;
    position: absolute;
    top: -50%;
    content: "";
    pointer-events: none;
    transform: rotate(-15deg) translateZ(-10px);
}.find-us::after {
    right: 0;
    pointer-events: none;
    bottom: 0;
    position: absolute;
    width: 60%;
    height: 40%;
    content: "";
    background: radial-gradient(circle at bottom right, rgb(164,185,184,0.5) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}.find-us .container {
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
    transform-style: preserve-3d;
    position: relative;
    max-width: 1200px;
}.find-us .assist-form {
    grid-template-columns: 1fr;
    display: grid;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    gap: 30px;
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    background: #ffffff;
    position: relative;
    transform: translateZ(0);
}.find-us h3 {
    color: #000000;
    font-weight: 700;
    font-size: calc(31px * 1.1);
    transform: translateZ(10px);
    letter-spacing: -0.02em;
    position: relative;
    margin: 0 0 30px;
}.find-us h3::after {
    left: 0;
    transform: scaleX(1);
    position: absolute;
    content: "";
    transform-origin: left;
    background: rgb(200,217,216);
    height: 3px;
    width: 80px;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    bottom: -10px;
}.find-us h3:hover::after {
    transform: scaleX(1.5);
}.find-us p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #000000;
    transform: translateZ(5px);
    max-width: 90%;
    line-height: 1.7;
}.find-us h5 {
    color: #000000;
    font-weight: 600;
    gap: 10px;
    letter-spacing: 0.01em;
    text-transform: capitalize;
    display: flex;
    font-size: 22px;
    margin: 0 0 10px;
    align-items: center;
    transform: translateZ(7px);
}.find-us svg {
    width: 22px;
    transform: translateY(2px);
    height: 22px;
    transition: transform 0.3s ease, fill 0.3s ease;
}.find-us svg path {
    fill: rgb(200,217,216);
    transition: fill 0.3s ease;
}.find-us .contact-helpsfSXL {
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    list-style: none;
    transform: translateZ(8px);
    gap: 15px;
}.find-us .contact-helpsfSXL li {
    position: relative;
    transition: transform 0.3s ease;
}.find-us .contact-helpsfSXL li:hover {
    transform: translateX(5px);
}.find-us .join-us {
    border-left: 3px solid transparent;
    color: #000000;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: calc(18px * 1.05);
    padding: 10px 15px;
    align-items: center;
    gap: 10px;
    display: flex;
}.find-us .join-us:hover {
    border-left-color: rgb(200,217,216);
    color: rgb(200,217,216);
}.find-us .join-us:hover svg {
    transform: translateY(2px) scale(1.1);
}.find-us .join-us:hover svg path {
    fill: rgb(164,185,184);
}.find-us .join-us:active {
    transform: scale(0.98);
}

@media (min-width: 768px) {.find-us .assist-form {
    gap: 40px 60px;
    grid-template-columns: repeat(2, 1fr);
    padding: 60px 70px;
}.find-us h3 {
    grid-column: 1 / -1;
    margin-bottom: 10px;
}.find-us .assist-form > div:first-of-type {
    grid-column: 1 / -1;
}.find-us .contact-helpsfSXL {
    grid-column: 2 / 3;
    align-self: start;
}
}

@media (min-width: 1024px) {.find-us {
    padding: 140px 0 100px;
}.find-us .assist-form {
    grid-template-columns: 1.5fr 1fr;
    padding: 70px 80px;
    gap: 40px 80px;
}.find-us h3 {
    font-size: calc(31px * 1.2);
}.find-us h3::after {
    width: 100px;
}.find-us p {
    line-height: 1.8;
    font-size: calc(18px * 1.05);
}.find-us .join-us {
    padding: 12px 20px;
}
}

@media (max-width: 767px) {.find-us {
    padding: 80px 0 60px;
}.find-us .assist-form {
    padding: 40px 30px;
}.find-us h3 {
    margin-bottom: 25px;
    font-size: calc(31px * 0.9);
}.find-us p {
    max-width: 100%;
    font-size: calc(18px * 0.95);
}
}

@media (max-width: 480px) {.find-us {
    padding: 60px 0 40px;
}.find-us .assist-form {
    padding: 30px 20px;
}.find-us h3 {
    font-size: calc(31px * 0.85);
}.find-us .join-us {
    padding: 8px 12px;
    font-size: calc(18px * 0.95);
}.find-us svg {
    height: 20px;
    width: 20px;
}}.aspiring-learners {
    padding: 5rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(231,242,241) 0%, rgb(164,185,184,0.5) 100%);
    position: relative;
}.aspiring-learners::before {
    background-size: 50px 50px;
    width: 100%;
    top: 0;
    background: 
        linear-gradient(45deg, transparent 45%, rgb(200,217,216,0.5) 46%, rgb(200,217,216,0.5) 54%, transparent 55%),
        linear-gradient(135deg, transparent 45%, rgb(164,185,184,0.5) 46%, rgb(164,185,184,0.5) 54%, transparent 55%);
    z-index: 1;
    content: '';
    height: 100%;
    position: absolute;
    opacity: 0.1;
    left: 0;
}.aspiring-learners::after {
    background-image: radial-gradient(circle at 50% 50%, rgb(200,217,216,0.5) 0%, transparent 2%),
        radial-gradient(circle at 20% 20%, rgb(200,217,216,0.5) 0%, transparent 2%),
        radial-gradient(circle at 30% 70%, rgb(200,217,216,0.5) 0%, transparent 2%),
        radial-gradient(circle at 70% 40%, rgb(200,217,216,0.5) 0%, transparent 2%),
        radial-gradient(circle at 80% 30%, rgb(200,217,216,0.5) 0%, transparent 2%),
        radial-gradient(circle at 90% 80%, rgb(200,217,216,0.5) 0%, transparent 2%),
        radial-gradient(circle at 10% 90%, rgb(200,217,216,0.5) 0%, transparent 2%),
        radial-gradient(circle at 60% 10%, rgb(200,217,216,0.5) 0%, transparent 2%),
        radial-gradient(circle at 40% 60%, rgb(200,217,216,0.5) 0%, transparent 2%),
        radial-gradient(circle at 95% 40%, rgb(200,217,216,0.5) 0%, transparent 2%);
    animation: pulseDots 10s infinite alternate;
    position: absolute;
    width: 100%;
    background-size: 180px 180px;
    content: '';
    left: 0;
    height: 100%;
    top: 0;
    opacity: 0.4;
    z-index: 1;
}.aspiring-learners .fast-guide {
    padding: 0 2rem;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}.aspiring-learners h3 {
    text-align: left;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    border-left: 4px solid rgb(200,217,216);
    font-size: 34px;
    color: rgb(164,185,184);
    box-shadow: -5px 0 15px rgb(200,217,216,0.5);
}.aspiring-learners ul {
    gap: 2rem;
    list-style-type: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
}.aspiring-learners li {
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    border-radius: 12px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.05),
        0 5px 15px rgba(0, 0, 0, 0.03);
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 1.8rem;
}.aspiring-learners li::before {
    content: '';
    left: 0;
    pointer-events: none;
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    position: absolute;
    top: 0;
}.aspiring-learners li::after {
    transition: width 0.4s ease, opacity 0.4s ease;
    opacity: 0.7;
    left: 0;
    background: rgb(200,217,216);
    width: 5px;
    height: 100%;
    position: absolute;
    content: '';
    top: 0;
}.aspiring-learners li:hover {
    transform: translateY(-5px) scale(1.02);
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 10px 20px rgba(0, 0, 0, 0.05),
        0 0 25px rgb(200,217,216,0.5);
}.aspiring-learners li:hover::after {
    opacity: 1;
    width: 8px;
}.aspiring-learners li svg {
    width: 40px;
    margin-right: 1.5rem;
    animation: pulseIcon 3s infinite alternate;
    height: 40px;
    filter: drop-shadow(0 0 8px rgb(200,217,216,0.5));
    flex-shrink: 0;
    transition: all 0.4s ease;
    fill: rgb(200,217,216);
}.aspiring-learners li:hover svg {
    animation-duration: 1.5s;
}.aspiring-learners li svg path {
    transition: all 0.4s ease;
}.aspiring-learners li:hover svg path {
    fill: rgb(200,217,216);
}.aspiring-learners li {
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
}.aspiring-learners li:nth-child(1)::after {
    animation-delay: 0s;
}.aspiring-learners li:nth-child(2)::after {
    animation-delay: 0.5s;
}.aspiring-learners li:nth-child(3)::after {
    animation-delay: 1s;
}.aspiring-learners li:nth-child(4)::after {
    animation-delay: 1.5s;
}.aspiring-learners li:nth-child(1) svg {
    animation-delay: 0s;
}.aspiring-learners li:nth-child(2) svg {
    animation-delay: 1s;
}.aspiring-learners li:nth-child(3) svg {
    animation-delay: 0.5s;
}.aspiring-learners li:nth-child(4) svg {
    animation-delay: 1.5s;
}

@keyframes pulseDots {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulseIcon {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgb(200,217,216,0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 12px rgb(200,217,216));
    }
}

@keyframes glowLine {
    0%, 100% {
        box-shadow: 0 0 5px rgb(200,217,216,0.5);
    }
    50% {
        box-shadow: 0 0 15px rgb(200,217,216);
    }
}

@media (max-width: 991px) {.aspiring-learners {
    padding: 4rem 0;
}.aspiring-learners h3 {
    padding-left: 1.2rem;
    font-size: calc(34px * 0.9);
}.aspiring-learners li {
    padding: 1.5rem;
}.aspiring-learners li svg {
    margin-right: 1.2rem;
    width: 35px;
    height: 35px;
}
}

@media (max-width: 767px) {.aspiring-learners {
    padding: 3rem 0;
}.aspiring-learners ul {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}.aspiring-learners h3 {
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 15px rgb(200,217,216,0.5);
    text-align: center;
    border-bottom: 4px solid rgb(200,217,216);
    font-size: calc(34px * 0.8);
    border-left: none;
    padding-left: 0;
    padding-bottom: 1rem;
}.aspiring-learners li {
    padding: 1.2rem;
}.aspiring-learners li svg {
    margin-right: 1rem;
    width: 30px;
    height: 30px;
}}header {
    background: rgb(231,242,241);
    width: 100%;
    z-index: 99;
    overflow: visible;
    position: relative;
}header::before {
    opacity: 0.15;
    z-index: -1;
    top: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, rgb(200,217,216,0.5) 0%, transparent 50%, rgb(200,217,216,0.5) 100%);
    width: 100%;
    content: "";
    left: 0;
}header .main-sitewrap {
    gap: 15px;
    padding: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    display: grid;
    position: relative;
}header .main-sitewrap::after {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(200,217,216,0.5), transparent);
    width: 100%;
    top: 50%;
    content: "";
    position: absolute;
    left: 0;
}header .main-sitewrap .main-top {
    padding: 5px 20px 15px;
    justify-self: center;
    position: relative;
    z-index: 10;
}header .main-sitewrap .main-top::before,
header .main-sitewrap .main-top::after {
    width: 90%;
    height: 90%;
    position: absolute;
    content: "";
    border-radius: 10px;
}header .main-sitewrap .main-top::before {
    border-left: 2px solid rgb(200,217,216);
    top: -5px;
    transform-origin: top left;
    transition: transform 0.3s ease;
    transform: scale(0);
    border-top: 2px solid rgb(200,217,216);
    left: -5px;
}header .main-sitewrap .main-top::after {
    transform: scale(0);
    border-bottom: 2px solid rgb(164,185,184);
    bottom: -5px;
    right: -5px;
    transition: transform 0.3s ease;
    transform-origin: bottom right;
    border-right: 2px solid rgb(164,185,184);
}header .main-sitewrap .main-top:hover::before,
header .main-sitewrap .main-top:hover::after {
    transform: scale(1);
}header .main-sitewrap .main-top .top-lead {
    transition: transform 0.3s ease;
    display: block;
}header .main-sitewrap .main-top .top-lead svg {
    height: 60px;
    width: auto;
}header .main-sitewrap .nav-class {
    flex-wrap: wrap;
    display: flex;
    background: linear-gradient(180deg, transparent, rgb(164,185,184) 15%, rgba(0, 0, 0, 0.5) 85%, transparent 50%);
    margin: 0;
    list-style: none;
    padding: 20px 0 10px;
    position: relative;
    justify-content: center;
}header .main-sitewrap .nav-class::before,
header .main-sitewrap .nav-class::after {
    background: rgb(200,217,216,0.5);
    position: absolute;
    width: 2px;
    content: "";
    top: 15%;
    height: 70%;
}header .main-sitewrap .nav-class::before {
    left: 0;
}header .main-sitewrap .nav-class::after {
    right: 0;
}header .main-sitewrap .nav-class .header-top {
    position: relative;
    margin: 0;
    padding: 0 15px;
    transition: transform 0.3s ease;
}header .main-sitewrap .nav-class .header-top:not(:last-child)::after {
    width: 1px;
    height: 60%;
    right: 0;
    top: 20%;
    content: "";
    background: rgb(164,185,184,0.5);
    position: absolute;
}header .main-sitewrap .nav-class .header-top:hover {
    transform: translateY(-3px);
}header .main-sitewrap .nav-class .header-top a {
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    color: #000000;
    text-align: center;
    font-size: 16px;
    position: relative;
    font-family: Arial, sans-serif;
    padding: 10px 5px;
}header .main-sitewrap .nav-class .header-top a:hover {
    color: rgb(200,217,216);
}header .main-sitewrap .nav-class .header-top a::before {
    height: 2px;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
    content: "";
    width: 100%;
    bottom: 5px;
    background: rgb(164,185,184);
    transform: scaleX(0);
}header .main-sitewrap .nav-class .header-top a:hover::before {
    transform: scaleX(1);
}

@media (min-width: 993px) {header .main-sitewrap {
    grid-template-columns: 1fr;
    padding: 15px 30px;
    grid-template-rows: auto auto;
}header .main-sitewrap .nav-class {
    padding: 20px 10px 10px;
}
}

@media (max-width: 992px) {header .main-sitewrap {
    gap: 10px;
    padding: 15px;
    grid-template-rows: auto auto;
}header .main-sitewrap .main-top {
    padding: 5px 10px;
}header .main-sitewrap .main-top .top-lead svg {
    height: 45px;
}header .main-sitewrap .nav-class {
    padding: 15px 0 10px;
}header .main-sitewrap .nav-class .header-top {
    padding: 0 10px;
}header .main-sitewrap .nav-class .header-top a {
    padding: 8px 3px;
    font-size: calc(16px - 1px);
}
}

@media (max-width: 767px) {header .main-sitewrap .nav-class {
    flex-wrap: wrap;
    justify-content: center;
}header .main-sitewrap .nav-class .header-top {
    margin: 3px 0;
}header .main-sitewrap .nav-class .header-top:not(:last-child)::after {
    display: none;
}}.pricing-offer-box {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(231,242,241) 0%, rgb(164,185,184,0.5) 100%);
    position: relative;
    padding: 6rem 0;
}.pricing-offer-box::before {
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    position: absolute;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(rgb(200,217,216), 0.03) 40px, rgba(rgb(200,217,216), 0.03) 80px);
    top: 0;
    pointer-events: none;
    z-index: 1;
}.pricing-offer-box .container {
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
}.pricing-offer-box .discount-deals {
    gap: 2.5rem;
    flex-direction: column-reverse;
    display: flex;
}.pricing-offer-box .bundle-offer {
    background: rgba(#ffffff, 0.9);
    transform: translateY(0);
    z-index: 3;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 2rem;
    margin: 0 auto;
    max-width: 600px;
}.pricing-offer-box .bundle-offer:hover {
    transform: translateY(-5px);
}.pricing-offer-box .bundle-offer h2 {
    position: relative;
    font-size: 38px;
    color: #000000;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 1rem;
}.pricing-offer-box .bundle-offer h2::after {
    content: "";
    transition: transform 0.5s ease;
    bottom: -10px;
    position: absolute;
    background: rgb(200,217,216);
    transform-origin: left;
    width: 80px;
    transform: scaleX(1);
    left: 0;
    height: 3px;
}.pricing-offer-box .bundle-offer:hover h2::after {
    transform: scaleX(1.5);
}.pricing-offer-box .fee-plans {
    overflow-wrap: break-word;
    word-break: break-word;
    margin-top: 1.5rem;
    font-size: 17px;
    line-height: 1.6;
    max-width: 100%;
    color: #000000;
}.pricing-offer-box .learning-packages {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}.pricing-offer-box .study-offers {
    height: 100%;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    overflow: hidden;
    text-decoration: none;
}.pricing-offer-box .study-offers:hover {
    transform: translateY(-8px);
}.pricing-offer-box .plan-rates {
    border-radius: 8px;
    display: flex;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    flex-direction: column;
    background: #ffffff;
    position: relative;
    transition: box-shadow 0.4s ease;
}.pricing-offer-box .study-offers:hover .plan-rates {
    box-shadow: 0 15px 35px rgba(rgb(200,217,216,0.5), 0.15);
}.pricing-offer-box .study-cost {
    padding: 2rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    min-height: 280px;
}.pricing-offer-box .study-cost h3 {
    font-weight: 600;
    position: relative;
    color: #000000;
    font-size: calc(24px + 0.1rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}.pricing-offer-box .learning-plan {
    color: rgb(200,217,216);
    margin: 0.5rem 0 1.25rem;
    position: relative;
    font-size: calc(24px + 0.3rem);
    font-weight: 700;
    display: block;
}.pricing-offer-box .learning-plan::before {
    width: 40px;
    height: 2px;
    left: 0;
    position: absolute;
    content: "";
    bottom: -10px;
    background: rgb(164,185,184);
}.pricing-offer-box .study-cost p {
    word-break: break-word;
    overflow-wrap: break-word;
    margin-top: 1.5rem;
    flex-grow: 1;
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
}.pricing-offer-box .photo-show {
    transition: transform 0.6s ease-out;
    position: relative;
    height: 220px;
    transform: scale(1);
    width: 100%;
}.pricing-offer-box .photo-show::after {
    z-index: 1;
    left: 0;
    top: 0;
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    position: absolute;
    height: 100%;
    width: 100%;
}.pricing-offer-box .study-offers:hover .photo-show {
    transform: scale(1.05);
}

@media (min-width: 768px) {.pricing-offer-box .learning-packages {
    grid-template-columns: repeat(2, 1fr);
}.pricing-offer-box .bundle-offer {
    padding: 3rem;
}
}

@media (min-width: 992px) {.pricing-offer-box .discount-deals {
    gap: 3rem;
    align-items: center;
    flex-direction: row;
}.pricing-offer-box .bundle-offer {
    width: 35%;
    margin: 0;
}.pricing-offer-box .learning-packages {
    width: 65%;
}
}

@media (min-width: 1200px) {.pricing-offer-box .learning-packages {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.pricing-offer-box .study-cost {
    padding: 2.5rem;
}.pricing-offer-box .bundle-offer h2 {
    font-size: calc(38px + 0.2rem);
}.pricing-offer-box .photo-show {
    height: 250px;
}
}

@media (max-width: 767px) {.pricing-offer-box {
    padding: 4rem 0;
}.pricing-offer-box .study-cost {
    min-height: 240px;
    padding: 1.5rem;
}.pricing-offer-box .photo-show {
    height: 180px;
}.pricing-offer-box .bundle-offer {
    padding: 1.5rem;
}.pricing-offer-box .bundle-offer h2 {
    font-size: calc(38px - 0.2rem);
}.pricing-offer-box .fee-plans {
    font-size: calc(17px - 0.1rem);
}}footer {
    position: relative;
    z-index: 1;
}footer::before {
    right: 0;
    background-size: 300% 300%;
    position: absolute;
    top: 0;
    animation: gradientFlow 20s ease infinite;
    left: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.5) 0%, rgb(200,217,216,0.5) 35%, rgb(164,185,184,0.5) 70%, rgba(0, 0, 0, 0.5) 100%);
    content: "";
    opacity: 0.75;
    z-index: -1;
}footer::after {
    z-index: -1;
    content: "";
    left: 0;
    right: 0;
    background-size: 50px 50px;
    top: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgb(200,217,216,0.5) 25%, rgb(200,217,216,0.5) 26%, transparent 27%, transparent 74%, rgb(164,185,184,0.5) 75%, rgb(164,185,184,0.5) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgb(200,217,216,0.5) 25%, rgb(200,217,216,0.5) 26%, transparent 27%, transparent 74%, rgb(164,185,184,0.5) 75%, rgb(164,185,184,0.5) 76%, transparent 77%, transparent);
    bottom: 0;
    opacity: 0.15;
    position: absolute;
}.study-bottom {
    padding: 4rem 0 2.5rem;
    position: relative;
    color: #ffffff;
}.study-bottom::before {
    opacity: 0.8;
    background: linear-gradient(90deg, transparent, rgb(200,217,216), rgb(164,185,184), transparent);
    width: 100%;
    height: 2px;
    top: 0;
    box-shadow: 0 0 20px rgb(200,217,216,0.5);
    position: absolute;
    content: "";
    left: 0;
}.study-bottom .container {
    justify-content: space-between;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    gap: 3rem;
}.study-bottom .company_holder {
    backdrop-filter: blur(8px);
    border-radius: 27px;
    padding: 2rem;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    flex: 1 1 350px;
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}.study-bottom .company_holder::before {
    height: 1px;
    transform: translateY(-1px);
    background: linear-gradient(90deg, transparent, rgb(200,217,216), transparent);
    width: 200%;
    top: 0;
    position: absolute;
    left: -50%;
    content: "";
}.study-bottom .company_holder::after {
    bottom: 0;
    height: 1px;
    left: 0;
    background: linear-gradient(90deg, transparent, rgb(164,185,184), transparent);
    transform: translateY(1px);
    width: 100%;
    content: "";
    position: absolute;
}.study-bottom .company_holder:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 0 20px rgb(200,217,216,0.5);
}.study-bottom .company_holder h3 {
    display: inline-block;
    position: relative;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0 0 1.5rem;
    font-size: 30px;
    text-shadow: 0 0 15px rgb(200,217,216,0.5);
    color: #ffffff;
}.study-bottom .company_holder h3::after {
    border-radius: 10px;
    bottom: -8px;
    box-shadow: 0 0 10px rgb(200,217,216);
    left: 0;
    transition: width 0.3s ease-out;
    height: 3px;
    width: 50px;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(200,217,216), rgb(164,185,184));
}.study-bottom .company_holder:hover h3::after {
    width: 100%;
}.study-bottom .idea-pool {
    line-height: 1.6;
    color: #ffffff;
    font-size: 15px;
    opacity: 0.85;
    max-width: 100%;
    text-shadow: 0 0 10px #000000;
}.study-bottom .desktop-app {
    flex: 1 1 calc(100% - 450px);
    min-width: 400px;
}.study-bottom .nav-learning {
    flex-wrap: wrap;
    gap: 2.5rem;
    display: flex;
}.study-bottom .nav-class {
    flex: 1 1 calc(50% - 1.25rem);
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    overflow: hidden;
    border-radius: 27px;
    min-width: 250px;
    padding: 2rem;
    position: relative;
}.study-bottom .nav-class::before {
    width: 200%;
    background: linear-gradient(90deg, transparent, rgb(164,185,184), transparent);
    position: absolute;
    left: -50%;
    content: "";
    top: 0;
    transform: translateY(-1px);
    height: 1px;
}.study-bottom .nav-class::after {
    height: 1px;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgb(200,217,216), transparent);
    content: "";
    width: 100%;
    transform: translateY(1px);
    position: absolute;
    left: 0;
}.study-bottom .nav-class:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 30px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 0 20px rgb(164,185,184,0.5);
}.study-bottom .nav-class h5 {
    display: inline-block;
    position: relative;
    font-size: 24px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 15px rgb(164,185,184,0.5);
    color: #ffffff;
    margin: 0 0 1.5rem;
    font-weight: 600;
}.study-bottom .nav-class h5::after {
    content: "";
    background: linear-gradient(90deg, rgb(164,185,184), rgb(200,217,216));
    bottom: -8px;
    position: absolute;
    box-shadow: 0 0 10px rgb(164,185,184);
    width: 40px;
    height: 3px;
    transition: width 0.3s ease-out;
    left: 0;
    border-radius: 10px;
}.study-bottom .nav-class:hover h5::after {
    width: 100%;
}.study-bottom .nav-class .nav-learning {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}.study-bottom .nav-class .nav-learning a {
    display: block;
    position: relative;
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
    border-radius: 10px;
    z-index: 1;
    padding: 0.5rem 1rem;
    font-size: 15px;
    text-shadow: 0 0 5px #000000;
}.study-bottom .nav-class .nav-learning a::before {
    left: 0;
    border-radius: 10px;
    width: 3px;
    top: 0;
    content: "";
    z-index: -1;
    background: linear-gradient(180deg, rgb(200,217,216), rgb(164,185,184));
    transition: all 0.3s ease;
    position: absolute;
    height: 100%;
    opacity: 0.5;
}.study-bottom .nav-class .nav-learning a::after {
    content: "";
    transition: all 0.3s ease;
    left: 0;
    height: 100%;
    z-index: -1;
    opacity: 0;
    top: 0;
    position: absolute;
    width: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}.study-bottom .nav-class .nav-learning a:hover {
    color: #ffffff;
    opacity: 1;
    text-shadow: 0 0 10px rgb(164,185,184,0.5);
    padding-left: 1.5rem;
}.study-bottom .nav-class .nav-learning a:hover::before {
    width: 5px;
    box-shadow: 0 0 10px rgb(200,217,216);
    opacity: 1;
}.study-bottom .nav-class .nav-learning a:hover::after {
    width: 100%;
    opacity: 0.2;
}.gift-card {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
}.gift-card::before {
    top: 0;
    content: "";
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(200,217,216), rgb(164,185,184), transparent);
    width: 100%;
    left: 0;
    opacity: 0.5;
}.gift-card .container {
    justify-content: center;
    align-items: center;
    display: flex;
}.gift-card .reward-sys {
    text-shadow: 0 0 5px #000000;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    text-align: center;
    letter-spacing: 0.5px;
    color: #ffffff;
}.gift-card .reward-sys:hover {
    text-shadow: 0 0 8px rgb(164,185,184,0.5);
    opacity: 1;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 1200px) {.study-bottom .container {
    gap: 2rem;
}.study-bottom .company_holder {
    flex: 1 1 320px;
}.study-bottom .desktop-app {
    min-width: 320px;
    flex: 1 1 calc(100% - 370px);
}
}

@media (max-width: 992px) {.study-bottom {
    padding: 3.5rem 0 2rem;
}.study-bottom .container {
    gap: 2rem;
    flex-direction: column;
}.study-bottom .company_holder,
    .study-bottom .desktop-app {
    flex: 1 1 100%;
    min-width: 100%;
}.study-bottom .nav-class {
    flex: 0 1 calc(50% - 1.25rem);
    min-width: 220px;
}
}

@media (max-width: 768px) {.study-bottom {
    padding: 3rem 0 1.5rem;
}.study-bottom .company_holder,
    .study-bottom .nav-class {
    padding: 1.5rem;
}.study-bottom .nav-learning {
    gap: 1.5rem;
}.study-bottom .company_holder h3 {
    font-size: calc(30px - 2px);
}.study-bottom .nav-class h5 {
    font-size: calc(24px - 1px);
}.study-bottom .company_holder:hover,
    .study-bottom .nav-class:hover {
    transform: translateY(-3px);
}
}

@media (max-width: 576px) {.study-bottom {
    padding: 2.5rem 0 1rem;
}.study-bottom .nav-learning {
    gap: 1rem;
}.study-bottom .nav-class {
    min-width: 100%;
    flex: 1 1 100%;
}.study-bottom .nav-class .nav-learning a {
    padding: 0.4rem 0.8rem;
}.study-bottom .nav-class .nav-learning a:hover {
    padding-left: 1.2rem;
}.gift-card {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}.study-bottom .company_holder:hover,
    .study-bottom .nav-class:hover {
    transform: translateY(-2px);
}}.course-program-details {
    position: relative;
    perspective: 1000px;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(231,242,241) 0%, rgb(200,217,216,0.5) 100%);
    overflow: hidden;
}.course-program-details::before {
    width: 120%;
    background: repeating-linear-gradient(
        45deg,
        rgb(164,185,184,0.5) 0px,
        transparent 2px,
        transparent 10px,
        rgb(164,185,184,0.5) 12px
    );
    height: 120%;
    left: -5%;
    transform: rotate(-5deg);
    opacity: 0.05;
    top: -10%;
    z-index: 1;
    content: "";
    position: absolute;
}.course-program-details .container {
    margin: 0 auto;
    z-index: 2;
    padding: 0 2rem;
    position: relative;
    max-width: 1200px;
}.course-program-details .career-learn {
    transform-style: preserve-3d;
    gap: 3rem;
    display: flex;
    animation: fadeInUp 0.8s ease-out forwards;
    flex-direction: column;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-program-details .photo-show {
    border: none;
    transform: perspective(1000px) rotateX(2deg) rotateY(-3deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 350px;
    mask-image: linear-gradient(to bottom right, 
        transparent 0%, 
        black 2%, 
        black 98%, 
        transparent 100%);
    z-index: 3;
    position: relative;
}.course-program-details .photo-show:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}.course-program-details .photo-show::after {
    opacity: 0.6;
    position: absolute;
    background: linear-gradient(
        to bottom,
        transparent 70%,
        rgb(200,217,216,0.5) 100%
    );
    z-index: 2;
    inset: 0;
    transition: opacity 0.3s ease;
    content: "";
}.course-program-details .photo-show:hover::after {
    opacity: 0.4;
}.course-program-details .words-container {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    backdrop-filter: blur(8px);
    transform: translateZ(20px);
    position: relative;
    padding: 2.5rem;
    border-left: 4px solid rgb(200,217,216);
}.course-program-details .words-container::before {
    top: -20px;
    content: "";
    background: rgb(200,217,216);
    z-index: -1;
    left: 20px;
    width: 40px;
    transform: rotate(45deg);
    height: 40px;
    position: absolute;
}.course-program-details h3 {
    display: inline-block;
    font-size: calc(20px * 1.2);
    position: relative;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}.course-program-details h3::after {
    width: 60%;
    height: 3px;
    transform-origin: left;
    position: absolute;
    content: "";
    left: 0;
    background: linear-gradient(90deg, rgb(200,217,216) 0%, transparent 100%);
    transition: transform 0.3s ease;
    bottom: -8px;
}.course-program-details .words-container:hover h3::after {
    transform: scaleX(1.2);
}.course-program-details .description {
    position: relative;
    font-size: 12px;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #000000;
    font-family: Arial, sans-serif;
}.course-program-details p.description {
    display: block;
}.course-program-details span.description {
    display: none;
}.course-program-details .description::first-letter {
    line-height: 1;
    float: left;
    padding: 6px;
    font-size: 1.5em;
    font-weight: 700;
    background: rgb(200,217,216,0.5);
    margin-right: 8px;
    color: rgb(200,217,216);
}

@media screen and (min-width: 768px) {.course-program-details .career-learn {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
}.course-program-details .photo-show {
    transform: perspective(1000px) rotateX(2deg) rotateY(-5deg);
    height: 450px;
    flex: 1;
}.course-program-details .words-container {
    transform: perspective(1000px) rotateX(-1deg) rotateY(2deg) translateZ(30px);
    flex: 1.2;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}.course-program-details .words-container:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(40px);
}.course-program-details h3 {
    font-size: 32px;
}
}

@media screen and (min-width: 992px) {.course-program-details {
    padding: 8rem 0;
}.course-program-details .photo-show {
    height: 550px;
    flex: 1.2;
}.course-program-details .words-container {
    padding: 3rem;
    flex: 1;
}.course-program-details h3 {
    margin-bottom: 2rem;
}.course-program-details .description {
    line-height: 1.8;
    font-size: calc(12px * 1.05);
}
}

@media screen and (max-width: 767px) {.course-program-details {
    padding: 3rem 0;
}.course-program-details .container {
    padding: 0 1.5rem;
}.course-program-details .photo-show {
    margin-bottom: -20px;
    height: 250px;
}.course-program-details .words-container {
    z-index: 4;
    transform: translateY(-30px);
    padding: 1.8rem;
}.course-program-details h3 {
    font-size: calc(21px * 1.2);
    margin-bottom: 1rem;
}.course-program-details .description {
    line-height: 1.6;
    font-size: calc(12px * 0.95);
}
}

@media (hover: hover) {.course-program-details .photo-show::before {
    content: "";
    z-index: 2;
    position: absolute;
    background: linear-gradient(
            45deg,
            rgb(200,217,216,0.5) 0%,
            transparent 50%,
            rgb(164,185,184,0.5) 100%
        );
    opacity: 0;
    transition: opacity 0.5s ease;
    inset: 0;
}.course-program-details .photo-show:hover::before {
    opacity: 0.2;
}
}