* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.main_head {
    flex: 1 0 auto;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1222px;
}.carbon_cta {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}svg {
    height: 30px;
    width: 30px;
}.wrap-structure {
    flex-direction: column;
    display: flex;
    height: 100%;
    min-height: 100%;
}html,body {
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
    min-height: 100%;
    height: 100%;
    color: #000000;
}a {
    text-decoration: none;
    color: inherit;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.operation_process {
    isolation: isolate;
    overflow: hidden;
    padding: 7rem 0;
    position: relative;
    background: rgb(228,230,242);
}.operation_process::before {
    position: absolute;
    animation: shiftPattern 60s linear infinite;
    background-size: 60px 60px;
    height: 200%;
    background-position: 0 0, 30px 30px;
    transform: rotate(15deg);
    left: -50%;
    width: 200%;
    opacity: 0.3;
    background-image: 
        radial-gradient(
            rgb(158,166,202,0.5) 20%, 
            transparent 21%
        ), 
        radial-gradient(
            rgb(195,200,225,0.5) 20%, 
            transparent 21%
        );
    top: -50%;
    z-index: 0;
    content: "";
}.operation_process::after {
    z-index: 1;
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    bottom: 0;
    background: linear-gradient(to top, 
        rgb(228,230,242), 
        transparent
    );
    height: 40%;
}.operation_process .team_culture {
    position: relative;
    max-width: 900px;
    border-radius: 15px;
    padding: 0;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: #ffffff;
    margin: 0 auto;
    animation: appearFromBottom 1s ease-out forwards;
    display: flex;
}.operation_process h3 {
    text-align: center;
    position: relative;
    padding-bottom: 4rem;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% 75%, 
        50% 100%, 
        0 75%
    );
    padding: 2.5rem;
    font-size: 34px;
    font-weight: 700;
    width: 100%;
    background: linear-gradient(135deg, rgb(195,200,225), rgb(158,166,202));
    color: #ffffff;
    margin: 0;
}.operation_process h3::before {
    right: 0;
    left: 0;
    position: absolute;
    bottom: 0;
    animation: moveGrid 20s linear infinite;
    background-size: 20px 20px;
    content: "";
    top: 0;
    opacity: 0.3;
    background: 
        linear-gradient(
            rgba(255, 255, 255, 0.2) 1px, 
            transparent 1px
        ),
        linear-gradient(
            90deg, 
            rgba(255, 255, 255, 0.2) 1px, 
            transparent 1px
        );
}.operation_process h3::after {
    left: 0;
    right: 0;
    content: "";
    animation: shimmer 5s infinite linear;
    height: 5px;
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.8), 
        transparent
    );
}.operation_process span {
    padding: 3rem 2.5rem 2.5rem;
    background: #ffffff;
    color: #000000;
    z-index: 1;
    font-size: 13px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-top: -30px;
    border-radius: 0 0 15px 15px;
    line-height: 1.8;
}.operation_process span::before {
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
    left: 50%;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    top: -35px;
    transform: translateX(-50%);
    content: "";
    position: absolute;
    z-index: -1;
    background: #ffffff;
}.operation_process span::after {
    border-radius: 50%;
    content: "";
    background: rgb(195,200,225);
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    animation: pulse 3s infinite;
    height: 20px;
    width: 20px;
    box-shadow: 0 0 15px rgb(195,200,225,0.5);
    top: -20px;
}

@keyframes appearFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shiftPattern {
    0% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(15deg) translateY(-30px);
    }
    100% {
        transform: rotate(15deg) translateY(0);
    }
}

@keyframes moveGrid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px;
    }
    100% {
        background-position: 1000px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.8;
    }
}

@media (max-width: 992px) {.operation_process {
    padding: 5rem 1.5rem;
}.operation_process::before {
    background-position: 0 0, 25px 25px;
    background-size: 50px 50px;
}.operation_process h3 {
    padding: 2rem;
    padding-bottom: 3.5rem;
    font-size: calc(34px * 0.9);
}.operation_process span {
    padding: 2.5rem 2rem 2rem;
}
}

@media (max-width: 768px) {.operation_process {
    padding: 4rem 1rem;
}.operation_process::before {
    background-position: 0 0, 20px 20px;
    background-size: 40px 40px;
}.operation_process h3 {
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% 80%, 
            50% 100%, 
            0 80%
        );
    padding: 1.5rem;
    font-size: calc(34px * 0.8);
    padding-bottom: 3rem;
}.operation_process span {
    font-size: calc(13px * 0.95);
    padding: 2.5rem 1.5rem 1.5rem;
}.operation_process span::before {
    width: 60px;
    height: 60px;
    top: -30px;
}.operation_process span::after {
    width: 16px;
    top: -18px;
    height: 16px;
}}header {
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    width: 100%;
    z-index: 1000;
    background: rgb(195,200,225,0.5);
    left: 0;
    top: 0;
}header:before {
    content: '';
    top: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 75%
    );
    animation: shimmer 8s infinite linear;
    position: absolute;
    pointer-events: none;
    left: 0;
    width: 100%;
    height: 100%;
}header:after {
    filter: blur(1px);
    width: 100%;
    height: 3px;
    content: '';
    position: absolute;
    background: linear-gradient(
        90deg,
        rgb(158,166,202) 0%,
        rgb(195,200,225) 50%,
        rgb(158,166,202) 100%
    );
    opacity: 0.8;
    left: 0;
    bottom: 0;
}header .head_skill {
    overflow: hidden;
    position: relative;
}header .head_skill:before {
    top: 0;
    opacity: 0.15;
    background: 
        radial-gradient(circle at 10% 20%, rgb(195,200,225,0.5) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgb(158,166,202,0.5) 0%, transparent 40%);
    mix-blend-mode: overlay;
    pointer-events: none;
    left: 0;
    height: 100%;
    position: absolute;
    width: 100%;
    content: '';
}header .container {
    padding: 16px 25px;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}header .container:before {
    height: 1px;
    position: absolute;
    content: '';
    left: 0;
    opacity: 0.5;
    width: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    bottom: -1px;
}header .main_core {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}header .head_mentor {
    gap: 35px;
    align-items: center;
    position: relative;
    display: flex;
}header .head_mentor:before {
    opacity: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: absolute;
    transition: all 0.4s ease;
    content: '';
    width: 100%;
    transform: translateY(-50%) scaleX(0.8);
    top: 50%;
    left: 0;
    height: 35px;
}header .head_mentor:hover:before {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
}header .main_master {
    font-family: Arial, sans-serif;
    color: #ffffff;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 17px;
    text-decoration: none;
    text-transform: uppercase;
}header .main_master:before {
    left: 0;
    bottom: 0;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    height: 1px;
    transform-origin: right;
    background: linear-gradient(
        90deg,
        transparent,
        #ffffff,
        transparent
    );
    transform: scaleX(0);
    position: absolute;
    content: '';
}header .main_master:after {
    height: 100%;
    top: 0;
    transform: scaleY(0);
    content: '';
    transition: all 0.3s ease;
    position: absolute;
    z-index: -1;
    left: 0;
    opacity: 0;
    background: linear-gradient(
        180deg,
        transparent,
        rgb(195,200,225,0.5),
        transparent
    );
    width: 100%;
}header .main_master:hover {
    text-shadow: 0 0 5px #ffffff;
    color: #ffffff;
}header .main_master:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}header .main_master:hover:after {
    opacity: 0.15;
    transform: scaleY(1);
}header .header_nav {
    transition: all 0.4s ease;
    align-items: center;
    text-decoration: none;
    padding: 5px;
    display: flex;
    position: relative;
}header .header_nav:before {
    content: '';
    background: radial-gradient(
        circle,
        rgb(195,200,225,0.5) 0%,
        transparent 70%
    );
    transition: opacity 0.5s ease;
    position: absolute;
    z-index: -1;
    left: -10px;
    height: calc(100% + 20px);
    width: calc(100% + 20px);
    opacity: 0;
    top: -10px;
}header .header_nav:after {
    opacity: 0;
    content: '';
    transition: all 0.3s ease;
    border-image: linear-gradient(
        to right,
        transparent,
        rgb(195,200,225),
        transparent
    ) 1;
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    border: 1px solid transparent;
    width: 100%;
}header .header_nav:hover:before {
    animation: pulse 2s infinite;
    opacity: 0.15;
}header .header_nav:hover:after {
    opacity: 0.7;
}header .header_nav svg {
    filter: drop-shadow(0 0 3px rgb(195,200,225,0.5));
    height: 45px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: auto;
}header .header_nav:hover svg {
    transform: scale(1.05);
    filter: drop-shadow(0 0 5px rgb(195,200,225));
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes glowEffect {
    0%, 100% {
        opacity: 0.7;
        filter: blur(1px);
    }
    50% {
        opacity: 1;
        filter: blur(1.5px);
    }
}

@media (max-width: 991px) {header .container {
    padding: 14px 20px;
}header .head_mentor {
    gap: 20px;
}header .header_nav svg {
    height: 38px;
}
}

@media (max-width: 767px) {header .head_mentor {
    padding: 80px 30px 30px;
    -webkit-backdrop-filter: blur(15px);
    top: 0;
    max-width: 320px;
    position: fixed;
    gap: 20px;
    right: -100%;
    width: 80%;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    flex-direction: column;
    z-index: 1001;
    backdrop-filter: blur(15px);
    background: linear-gradient(
            135deg,
            rgb(195,200,225) 0%,
            rgb(195,200,225,0.5) 100%
        );
    height: 100vh;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    background: rgb(195,200,225);
}header .head_mentor:before {
    display: none;
}header .menu.active {
    right: 0;
}header .main_master {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 5px;
}header .main_master:last-child {
    border-bottom: none;
}header .header_nav {
    margin: 0 auto;
}
}

@media (max-width: 480px) {header .container {
    padding: 12px 15px;
}header .header_nav svg {
    height: 35px;
}}.thanksPage {
    position: relative;
    background: linear-gradient(135deg, rgb(228,230,242) 0%, rgb(158,166,202,0.5) 100%);
    padding: 120px 0 100px;
    overflow: hidden;
}.thanksPage::before {
    left: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgb(158,166,202,0.5) 0px,
            rgb(158,166,202,0.5) 1px,
            transparent 1px,
            transparent 20px
        );
    height: 100%;
    position: absolute;
    top: 0;
    pointer-events: none;
    content: "";
    opacity: 0.06;
    width: 100%;
}.thanksPage::after {
    transform: rotate(15deg);
    position: absolute;
    width: 200px;
    right: -50px;
    border: 2px solid rgb(195,200,225,0.5);
    top: -50px;
    height: 200px;
    content: "";
    animation: float 18s infinite ease-in-out;
    opacity: 0.2;
}.thanksPage .container {
    z-index: 2;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
}.thanksPage .team_culture {
    position: relative;
    background: #ffffff;
    display: flex;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    border-left: 5px solid rgb(195,200,225);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 60px 50px;
    transform: perspective(1000px) rotateY(-2deg);
}.thanksPage .team_culture:hover {
    transform: perspective(1000px) rotateY(0deg);
}.thanksPage .team_culture::before {
    border: 1px solid rgb(158,166,202,0.5);
    transform: scale(0.98);
    position: absolute;
    pointer-events: none;
    top: 20px;
    right: 20px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    left: 20px;
    opacity: 0.2;
    content: "";
    bottom: 20px;
}.thanksPage .team_culture:hover::before {
    opacity: 0.3;
    transform: scale(1);
}.thanksPage .team_culture > div:first-child {
    margin-bottom: 30px;
    position: relative;
}.thanksPage .team_culture > div:first-child::after {
    height: 3px;
    transform-origin: left center;
    position: absolute;
    bottom: -15px;
    background: rgb(195,200,225);
    content: "";
    left: 0;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scaleX(0.7);
    width: 80px;
}.thanksPage .team_culture:hover > div:first-child::after {
    transform: scaleX(1);
}.thanksPage h5 {
    margin: 0;
    font-size: 23px;
    line-height: 1.4;
    color: #000000;
    display: inline-block;
    font-weight: 700;
    font-family: Arial, sans-serif;
    position: relative;
}.thanksPage h5::before {
    left: -30px;
    top: -20px;
    color: rgb(195,200,225,0.5);
    position: absolute;
    opacity: 0.3;
    content: "";
    font-size: calc(23px * 2.5);
}.thanksPage p {
    font-family: Arial, sans-serif;
    line-height: 1.8;
    transition: color 0.3s ease;
    color: #000000;
    font-size: 12px;
    font-weight: 400;
    margin: 0;
}.thanksPage a {
    overflow: hidden;
    position: relative;
    display: inline-block;
    text-decoration: none;
}.thanksPage a::after {
    width: 100%;
    bottom: 0;
    background-color: rgb(195,200,225);
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: scaleX(0);
    transform-origin: right center;
    content: "";
    left: 0;
    height: 1px;
    position: absolute;
}.thanksPage a:hover::after {
    transform-origin: left center;
    transform: scaleX(1);
}.thanksPage a:hover p {
    color: rgb(195,200,225);
}

@keyframes float {
    0%, 100% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(15deg) translateY(-20px);
    }
}

@media (min-width: 992px) {.thanksPage .team_culture {
    padding: 80px 70px;
}.thanksPage h5 {
    font-size: calc(23px * 1.1);
}.thanksPage p {
    line-height: 1.9;
    font-size: calc(12px * 1.05);
}
}

@media (max-width: 991px) {.thanksPage {
    padding: 90px 0 70px;
}.thanksPage .team_culture {
    padding: 50px 40px;
}
}

@media (max-width: 767px) {.thanksPage {
    padding: 70px 0 50px;
}.thanksPage .team_culture {
    padding: 40px 30px;
    transform: perspective(1000px) rotateY(-1deg);
}.thanksPage h5 {
    font-size: calc(23px * 0.95);
}.thanksPage p {
    font-size: calc(12px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 575px) {.thanksPage {
    padding: 60px 0 40px;
}.thanksPage .team_culture {
    padding: 30px 25px;
    border-left: 4px solid rgb(195,200,225);
}.thanksPage .team_culture > div:first-child {
    margin-bottom: 25px;
}.thanksPage h5 {
    font-size: calc(23px * 0.9);
}.thanksPage h5::before {
    left: -20px;
    font-size: calc(23px * 2);
}.thanksPage .team_culture > div:first-child::after {
    height: 2px;
    width: 60px;
}
}

@media (prefers-reduced-motion: reduce) {.thanksPage .team_culture,
    .thanksPage .team_culture::before,
    .thanksPage .team_culture > div:first-child::after,
    .thanksPage a::after {
    transition: none;
}.thanksPage::after {
    animation: none;
}}.teacher_profile {
    overflow: hidden;
    padding: 5rem 0;
    background-color: rgb(228,230,242);
    position: relative;
}.teacher_profile::before {
    z-index: 1;
    width: 100%;
    top: 0;
    content: "";
    opacity: 0.12;
    height: 100%;
    background: 
        linear-gradient(135deg, rgb(195,200,225,0.5) 0%, transparent 40%),
        repeating-linear-gradient(45deg, rgb(158,166,202,0.5) 0px, rgb(158,166,202,0.5) 1px, transparent 1px, transparent 10px);
    position: absolute;
    left: 0;
}.teacher_profile .container {
    transform: perspective(1000px) rotateY(2deg);
    max-width: 1140px;
    padding: 0 1.5rem;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: 0 auto;
    z-index: 2;
    position: relative;
}.teacher_profile .container:hover {
    transform: perspective(1000px) rotateY(0deg);
}.teacher_profile .success_voices {
    border-left: 5px solid rgb(195,200,225);
    display: grid;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    grid-template-columns: 1fr;
    gap: 2rem;
    background: linear-gradient(160deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.98) 100%);
    padding: 2.5rem;
    position: relative;
    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);
    backdrop-filter: blur(10px);
}.teacher_profile .success_voices: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);
}.teacher_profile .success_voices::after {
    height: 80px;
    content: "";
    position: absolute;
    right: 25px;
    top: 25px;
    width: 80px;
    transform: rotate(15deg);
    background: 
        linear-gradient(45deg, transparent 48%, rgb(195,200,225) 48%, rgb(195,200,225) 52%, transparent 52%);
    opacity: 0.1;
    transition: all 0.5s ease;
}.teacher_profile .success_voices:hover::after {
    opacity: 0.15;
    transform: rotate(30deg) scale(1.2);
}.teacher_profile .main_photo {
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 10% 30% 50% 70%;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.1),
        0 5px 10px rgba(0,0,0,0.05);
    z-index: 2;
    overflow: hidden;
    height: 120px;
    width: 120px;
}.teacher_profile .main_photo::before {
    background: linear-gradient(to top right, rgb(195,200,225,0.5), transparent 70%);
    z-index: 1;
    transition: opacity 0.4s ease;
    opacity: 0.5;
    content: "";
    inset: 0;
    position: absolute;
}.teacher_profile .success_voices:hover .main_photo {
    border-radius: 30% 50% 70% 90%;
    transform: scale(1.05) rotate(-2deg);
}.teacher_profile .success_voices:hover .main_photo::before {
    opacity: 0.7;
}.teacher_profile .name {
    display: inline-block;
    transition: transform 0.4s ease;
    margin: 0 0 0.5rem;
    font-size: calc(19px * 1.1);
    position: relative;
    color: #000000;
    font-weight: 700;
}.teacher_profile .name::after {
    position: absolute;
    height: 2px;
    content: "";
    background: rgb(195,200,225);
    bottom: -5px;
    transition: width 0.4s ease;
    width: 0;
    left: 0;
}.teacher_profile .success_voices:hover .name::after {
    width: 100%;
}.teacher_profile .success_voices > div:nth-child(2) div {
    transform: translateX(0);
    margin-bottom: 0.8rem;
    position: relative;
    color: rgb(158,166,202);
    transition: transform 0.4s ease;
    font-size: calc(12px * 0.95);
    letter-spacing: 0.5px;
    font-weight: 600;
}.teacher_profile .success_voices:hover > div:nth-child(2) div {
    transform: translateX(5px);
}.teacher_profile .experience_data {
    margin: 0;
    transition: all 0.4s ease;
    position: relative;
    border-left: 1px solid rgb(158,166,202,0.5);
    color: #000000;
    padding-left: 1.5rem;
    font-size: 12px;
    line-height: 1.75;
}.teacher_profile .experience_data::before {
    position: absolute;
    color: rgb(195,200,225);
    left: 0.3rem;
    font-size: 2.5rem;
    content: "";
    top: -0.5rem;
    transition: transform 0.5s ease;
    opacity: 0.3;
}.teacher_profile .success_voices:hover .experience_data::before {
    opacity: 0.5;
    transform: translateY(-5px) rotate(-10deg);
}

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

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

@media (max-width: 767px) {.teacher_profile {
    padding: 4rem 0;
}.teacher_profile .container {
    transform: none;
}.teacher_profile .success_voices {
    padding: 2rem;
}.teacher_profile .success_voices > div:first-child {
    justify-content: center;
    margin-bottom: 1rem;
    display: flex;
}.teacher_profile .success_voices > div:nth-child(2) {
    text-align: center;
}.teacher_profile .name::after {
    transform: translateX(-50%);
    left: 50%;
}.teacher_profile .experience_data {
    padding-left: 1rem;
    text-align: left;
}}.program_overview {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(228,230,242) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 120px 0;
}.program_overview::before {
    position: absolute;
    content: "";
    z-index: 1;
    height: 100%;
    opacity: 0.15;
    background: radial-gradient(circle at 70% 30%, rgb(195,200,225,0.5) 0%, transparent 70%);
    top: 0;
    left: 0;
    width: 100%;
}.program_overview::after {
    z-index: 1;
    content: "";
    width: 200px;
    border: 1px solid rgb(158,166,202,0.5);
    animation: rotate 30s linear infinite;
    height: 200px;
    opacity: 0.2;
    bottom: -50px;
    border-radius: 50%;
    position: absolute;
    right: -50px;
}.program_overview .container {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
}.program_overview h2 {
    display: inline-block;
    transform: perspective(1000px) rotateX(0deg);
    font-size: 36px;
    transition: transform 0.5s ease-out;
    position: relative;
    color: #000000;
    margin-bottom: 50px;
    font-weight: 700;
}.program_overview h2::after {
    transform-origin: left center;
    left: 0;
    width: 60%;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, rgb(195,200,225) 0%, transparent 100%);
    transform: scaleX(0.8);
    content: "";
    bottom: -15px;
}.program_overview h2:hover::after {
    transform: scaleX(1);
}.program_overview .job_skills {
    position: relative;
    display: flex;
    transform-style: preserve-3d;
    gap: 40px;
}.program_overview .main_photo {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    flex: 0 0 45%;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    height: 500px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-2deg) translateZ(20px);
}.program_overview .main_photo::before {
    position: absolute;
    width: 100%;
    background: linear-gradient(225deg, rgb(195,200,225,0.5) 0%, transparent 70%);
    top: 0;
    transition: opacity 0.5s ease;
    content: "";
    left: 0;
    opacity: 0.3;
    height: 100%;
    z-index: 1;
}.program_overview .main_photo:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(30px);
}.program_overview .main_photo:hover::before {
    opacity: 0.5;
}.program_overview .content_block {
    scrollbar-color: rgb(158,166,202,0.5) transparent;
    scrollbar-width: thin;
    flex: 0 0 50%;
    transform: translateZ(10px);
    padding-right: 20px;
    overflow-y: auto;
    max-height: 500px;
}.program_overview .content_block::-webkit-scrollbar {
    width: 5px;
}.program_overview .content_block::-webkit-scrollbar-track {
    background: transparent;
}.program_overview .content_block::-webkit-scrollbar-thumb {
    background-color: rgb(158,166,202,0.5);
    border-radius: 10px;
}.program_overview .description {
    color: #000000;
    font-size: 17px;
    margin-bottom: 20px;
    transition: transform 0.4s ease-out;
    position: relative;
    transform: translateY(0);
    line-height: 1.8;
}.program_overview .description:first-of-type {
    position: relative;
}.program_overview .description:first-of-type::first-letter {
    color: rgb(195,200,225);
    font-size: 1.6em;
    font-weight: 600;
    margin-right: 2px;
}.program_overview .description:last-of-type {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgb(158,166,202,0.5);
}

@media (max-width: 992px) {.program_overview {
    padding: 80px 0;
}.program_overview h2 {
    font-size: calc(36px * 0.9);
    margin-bottom: 35px;
}.program_overview .job_skills {
    flex-direction: column;
    gap: 30px;
}.program_overview .main_photo {
    height: 350px;
    flex: 0 0 auto;
    width: 100%;
}.program_overview .content_block {
    padding-right: 10px;
    width: 100%;
    flex: 0 0 auto;
    max-height: 400px;
}
}

@media (max-width: 768px) {.program_overview {
    padding: 60px 0;
}.program_overview h2 {
    font-size: calc(36px * 0.8);
    margin-bottom: 25px;
}.program_overview .main_photo {
    height: 280px;
}.program_overview .content_block {
    max-height: 350px;
}.program_overview .description {
    font-size: calc(17px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 576px) {.program_overview {
    padding: 50px 0;
}.program_overview h2 {
    font-size: calc(36px * 0.7);
    margin-bottom: 20px;
}.program_overview .main_photo {
    height: 220px;
}.program_overview .content_block {
    max-height: 300px;
}.program_overview .description {
    line-height: 1.6;
    font-size: calc(17px * 0.9);
}}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}footer {
    width: 100%;
    position: relative;
}footer .carbon_cta {
    color: #ffffff;
    position: relative;
    font-family: Arial, sans-serif;
    padding: 80px 0 30px;
    background: linear-gradient(135deg, rgb(195,200,225), rgb(158,166,202));
}footer .carbon_cta::before {
    content: "";
    width: 100%;
    top: 0;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
                      radial-gradient(circle at 85% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 25%),
                      radial-gradient(circle at 40% 90%, rgba(255, 255, 255, 0.08) 0%, transparent 15%);
    position: absolute;
    left: 0;
}footer .webinar_cta {
    z-index: 1;
    position: relative;
}footer .info_request {
    margin-bottom: 60px;
    justify-content: center;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}footer .info_item {
    background-color: rgb(195,200,225,0.5);
    position: relative;
    border-radius: 50%;
    padding: 20px;
    align-items: center;
    transition: all 0.4s ease;
    display: flex;
    flex: 0 1 220px;
    height: 220px;
    justify-content: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1;
}footer .info_item:nth-child(1) {
    transform: translateY(-20px);
}footer .info_item:nth-child(2) {
    transform: translateY(20px);
}footer .info_item:nth-child(3) {
    transform: translateY(-10px);
}footer .info_item:nth-child(4) {
    transform: translateY(10px);
}footer .info_item:hover {
    z-index: 2;
    transform: scale(1.05) translateY(0);
    background-color: rgb(158,166,202,0.5);
}footer .info_item svg {
    flex-shrink: 0;
    margin-right: 10px;
    fill: #ffffff;
    height: 24px;
    width: 24px;
}footer .info_item p,
footer .info_item a {
    color: #ffffff;
    text-align: center;
    max-width: 80%;
    font-size: 18px;
    text-decoration: none;
}footer .info_item a:hover {
    text-decoration: underline;
}footer .text_main_holder {
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
    position: relative;
    gap: 30px;
}footer .main_learning, footer .head_mentor, footer .subscribe_holder {
    align-items: center;
    max-width: 400px;
    position: relative;
    text-align: center;
    flex-direction: column;
    border-radius: 17px;
    padding: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    backdrop-filter: blur(5px);
    display: flex;
    transition: all 0.3s ease;
    background-color: rgb(195,200,225,0.5);
}footer .main_learning:hover, footer .head_mentor:hover, footer .subscribe_holder:hover {
    background-color: rgb(158,166,202,0.5);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}footer .main_learning::before, footer .head_mentor::before, footer .subscribe_holder::before {
    opacity: 0.1;
    border-radius: 50%;
    content: "";
    height: 150px;
    width: 150px;
    position: absolute;
    z-index: -1;
}footer .main_learning::before {
    top: -50px;
    left: -50px;
    background-color: rgb(195,200,225);
}footer .head_mentor::before {
    bottom: -50px;
    right: -50px;
    background-color: rgb(158,166,202);
}footer .subscribe_holder::before {
    bottom: -50px;
    left: -50px;
    background-color: rgb(195,200,225);
}footer .main_learning svg {
    filter: brightness(0) invert(1);
    width: auto;
    height: 50px;
    margin-bottom: 20px;
}footer .job_board {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
    line-height: 1.6;
}footer .head_mentor h5, footer .subscribe_holder h5 {
    font-weight: 600;
    font-size: 21px;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}footer .head_mentor h5::after, footer .subscribe_holder h5::after {
    transform: translateX(-50%);
    bottom: -8px;
    content: "";
    left: 50%;
    height: 2px;
    transition: width 0.3s ease;
    width: 40px;
    background-color: #ffffff;
    position: absolute;
}footer .head_mentor:hover h5::after, footer .subscribe_holder:hover h5::after {
    width: 80px;
}footer .header_site {
    max-width: 300px;
    gap: 10px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}footer .header_site a {
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 18px;
    background-color: rgb(195,200,225,0.5);
    text-decoration: none;
    border-radius: 10px;
    padding: 8px 15px;
}footer .header_site a:hover {
    background-color: rgb(158,166,202,0.5);
    transform: translateY(-3px);
}footer .subscribe_holder p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 25px;
}footer .input_holder {
    width: 100%;
    max-width: 300px;
    gap: 15px;
    align-items: center;
    display: flex;
    flex-direction: column;
}footer .input_holder input[type="email"] {
    border-radius: 10px;
    color: #ffffff;
    border: none;
    text-align: center;
    transition: all 0.3s ease;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 18px;
    width: 100%;
}footer .input_holder input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.3);
    outline: none;
    box-shadow: 0 0 0 3px rgb(195,200,225,0.5);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .updates_box {
    font-size: 18px;
    border: none;
    cursor: pointer;
    color: #ffffff;
    font-weight: 600;
    width: 100%;
    border-radius: 10px;
    background-color: rgb(195,200,225);
    padding: 15px 20px;
    transition: all 0.3s ease;
}footer .updates_box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgb(158,166,202);
    transform: translateY(-3px);
}footer .leaderboard {
    position: relative;
    text-align: center;
    margin-top: 60px;
}footer .sec_cert {
    color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 8px 20px;
    background-color: rgb(195,200,225,0.5);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    font-size: 13px;
}

@media (min-width: 992px) {footer .text_main_holder {
    flex-wrap: nowrap;
}
}

@media (max-width: 991px) {footer .info_item {
    flex: 0 1 180px;
    height: 180px;
}footer .info_item:nth-child(1),
    footer .info_item:nth-child(2),
    footer .info_item:nth-child(3),
    footer .info_item:nth-child(4) {
    transform: none;
}
}

@media (max-width: 767px) {footer .carbon_cta {
    padding: 60px 0 30px;
}footer .info_request {
    margin-bottom: 40px;
    flex-direction: column;
}footer .info_item {
    height: 100px;
    padding: 15px;
    flex: 0 1 100px;
}footer .main_learning, footer .head_mentor, footer .subscribe_holder {
    padding: 25px 20px;
}footer .leaderboard {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .carbon_cta {
    padding: 50px 0 20px;
}footer .info_item {
    height: 90px;
    flex: 0 1 90px;
}footer .info_item p, footer .info_item a {
    font-size: calc(18px - 1px);
}footer .head_mentor h5, footer .subscribe_holder h5 {
    font-size: calc(21px - 2px);
}footer .header_site a {
    padding: 6px 12px;
    font-size: calc(18px - 1px);
}footer .input_holder input[type="email"],
    footer .updates_box {
    padding: 12px 15px;
}footer .sec_cert {
    padding: 6px 15px;
}}.meet_us {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}.meet_us::before {
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, rgb(195,200,225,0.5), rgba(0, 0, 0, 0.5));
    left: 0;
    top: 0;
    width: 100%;
    backdrop-filter: blur(5px);
    content: "";
    z-index: 1;
}.meet_us::after {
    right: -50%;
    transform: rotate(35deg) skewX(-15deg);
    width: 100%;
    z-index: 0;
    animation: floatBackground 30s infinite alternate ease-in-out;
    top: -50%;
    background: rgb(158,166,202);
    content: "";
    height: 100%;
    position: absolute;
    opacity: 0.08;
}.meet_us .container {
    padding: 0 20px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    transform: perspective(1000px) rotateX(3deg);
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    transform-origin: center top;
}.meet_us .container:hover {
    transform: perspective(1000px) rotateX(0deg);
}.meet_us .content_block {
    padding: 3.5rem;
    transform: translateZ(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.07);
    background: rgba(255, 255, 255, 0.9);
    animation: slideUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    position: relative;
    backdrop-filter: blur(10px);
    border-left: 5px solid rgb(195,200,225);
}.meet_us .content_block::before {
    pointer-events: none;
    position: absolute;
    border: 1px solid rgb(158,166,202,0.5);
    top: 20px;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
    opacity: 0;
    right: 20px;
    z-index: -1;
    left: 20px;
    bottom: 20px;
    content: "";
}.meet_us .content_block:hover::before {
    opacity: 1;
    transform: scale(1);
}.meet_us h1 {
    animation: slideRight 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    margin-bottom: 2rem;
    font-weight: 700;
    color: rgb(195,200,225);
    position: relative;
    opacity: 0;
    transform: translateX(-10px);
    font-size: 38px;
    padding-bottom: 0.75rem;
}.meet_us h1::after {
    height: 4px;
    position: absolute;
    animation: expandWidth 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
    transform: scaleX(0);
    content: "";
    left: 0;
    background: linear-gradient(to right, rgb(195,200,225), rgb(158,166,202));
    transform-origin: left;
    width: 80px;
    bottom: 0;
}.meet_us ul {
    padding: 0;
    list-style: none;
    margin: 0;
}.meet_us li {
    transform: translateY(20px);
    margin-bottom: 0.75rem;
    animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
    opacity: 0;
}.meet_us li:first-child {
    animation-delay: 0.5s;
}.meet_us li:last-child {
    animation-delay: 0.7s;
}.meet_us h4 {
    position: relative;
    font-size: calc(22px * 1.2);
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
    display: inline-block;
}.meet_us h4::before {
    position: absolute;
    content: "";
    animation: expandWidth 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
    width: 40px;
    height: 3px;
    left: 0;
    transform-origin: left;
    transform: scaleX(0);
    bottom: -8px;
    background: rgb(158,166,202);
}.meet_us span {
    column-gap: 3rem;
    text-align: justify;
    column-count: 1;
    hyphens: auto;
    display: block;
    max-width: 100%;
    color: #000000;
    line-height: 1.8;
    font-size: 13px;
    font-family: Arial, sans-serif;
}

@media (min-width: 992px) {.meet_us span {
    column-count: 2;
}.meet_us .content_block {
    margin: 0 8%;
    padding: 5rem;
}
}

@media (min-width: 1200px) {.meet_us .content_block {
    margin: 0;
    transform: translateX(50px) translateZ(0);
}.meet_us span {
    column-count: 2;
}
}

@media (max-width: 991px) {.meet_us {
    padding: 80px 0;
}.meet_us .content_block {
    padding: 2.5rem;
}.meet_us h1 {
    font-size: calc(28px * 1.1);
}
}

@media (max-width: 767px) {.meet_us {
    padding: 60px 0;
}.meet_us .content_block {
    padding: 2rem;
}.meet_us h1 {
    font-size: 28px;
}.meet_us h1::after {
    width: 60px;
}.meet_us h4 {
    font-size: 22px;
}
}

@media (max-width: 575px) {.meet_us {
    padding: 40px 0;
}.meet_us .content_block {
    padding: 1.5rem;
}.meet_us .container {
    transform: perspective(800px) rotateX(1deg);
}}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) translateZ(0);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes floatBackground {
    0% {
        transform: rotate(35deg) skewX(-15deg) translate(0, 0);
    }
    50% {
        transform: rotate(38deg) skewX(-12deg) translate(-5%, 5%);
    }
    100% {
        transform: rotate(35deg) skewX(-15deg) translate(0, 0);
    }
}.connect {
    font-family: Arial, sans-serif;
    padding: 5rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(228,230,242) 0%, rgba(245, 247, 250, 0.9) 100%);
    position: relative;
}.connect::before {
    z-index: 0;
    transform: rotate(-15deg) skewX(15deg);
    content: "";
    top: -10%;
    position: absolute;
    width: 40%;
    right: -5%;
    background: linear-gradient(225deg, rgb(195,200,225,0.5) 0%, transparent 70%);
    height: 70%;
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
}.connect::after {
    bottom: -5%;
    height: 60%;
    opacity: 0.3;
    background: linear-gradient(45deg, rgb(158,166,202,0.5) 0%, transparent 70%);
    animation: float 18s infinite ease-in-out reverse;
    width: 40%;
    position: absolute;
    transform: rotate(10deg) skewY(-10deg);
    content: "";
    left: -5%;
    z-index: 0;
}.connect h1 {
    transform: perspective(1000px) rotateX(2deg);
    font-weight: 700;
    position: relative;
    z-index: 10;
    color: #000000;
    font-size: 43px;
    margin-bottom: 2.5rem;
    text-align: center;
}.connect h1::after {
    transform: translateX(-50%) skewX(-15deg);
    background: linear-gradient(90deg, rgb(195,200,225) 0%, rgb(158,166,202) 100%);
    left: 50%;
    width: 80px;
    position: absolute;
    height: 3px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    content: "";
    bottom: -0.5rem;
}.connect .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}.connect .learn_form {
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    grid-template-columns: 1fr;
    padding: 2.5rem;
    transform: perspective(1000px) rotateY(-1deg);
    background: rgba(255, 255, 255, 0.85);
    gap: 2.5rem;
    display: grid;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 
                0 5px 15px rgba(0, 0, 0, 0.03),
                0 0 0 1px rgba(0, 0, 0, 0.02);
}.connect .learn_form:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 10px 20px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(0, 0, 0, 0.02);
    transform: perspective(1000px) rotateY(0deg);
}.connect .learn_form > div {
    position: relative;
    padding-left: 1rem;
}.connect .learn_form > div::before {
    height: 100%;
    content: "";
    width: 3px;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, rgb(195,200,225) 0%, rgb(158,166,202) 100%);
    position: absolute;
    transform: scaleY(0.95) translateX(-50%);
}.connect .learn_form > div:first-child > div {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
    padding-right: 1rem;
    position: relative;
    color: #000000;
}.connect h6 {
    display: flex;
    transition: transform 0.3s ease;
    font-size: 20px;
    transform: translateX(0);
    margin-bottom: 0.75rem;
    font-weight: 600;
    gap: 0.5rem;
    align-items: center;
    color: #000000;
}.connect span {
    color: #000000;
    display: block;
    font-size: calc(13px * 0.95);
    transition: color 0.3s ease;
    line-height: 1.5;
    margin-left: 1.75rem;
}.connect .edu_form {
    margin-top: 0.5rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}.connect .learn_chat {
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    transform: translateX(0);
    display: flex;
    text-decoration: none;
    align-items: center;
    transition: all 0.3s ease;
    overflow: hidden;
    color: #000000;
    position: relative;
    font-size: calc(13px * 0.95);
}.connect .learn_chat::before {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    position: absolute;
    left: 0;
    transform: scaleX(0);
    content: "";
    bottom: 0;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(195,200,225) 0%, rgb(158,166,202) 100%);
    height: 1px;
}.connect .learn_chat:hover {
    transform: translateX(5px);
    color: rgb(195,200,225);
}.connect .learn_chat:hover::before {
    transform: scaleX(1);
}.connect svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease, fill 0.3s ease;
}.connect .learn_chat:hover svg {
    transform: scale(1.15);
}.connect svg path {
    fill: #000000;
    transition: fill 0.3s ease;
}.connect .learn_chat:hover svg path {
    fill: rgb(195,200,225);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(-15deg) skewX(15deg);
    }
    50% {
        transform: translate(10px, -10px) rotate(-12deg) skewX(12deg);
    }
}

@media (min-width: 768px) {.connect {
    padding: 6rem 3rem;
}.connect h1 {
    margin-bottom: 3.5rem;
    font-size: calc(43px * 1.1);
}.connect .learn_form {
    grid-template-columns: 1fr 1fr;
    transform: perspective(1500px) rotateY(-2deg);
    padding: 3rem;
}.connect .learn_form > div:first-child {
    grid-column: span 2;
}.connect .learn_form > div:first-child > div {
    font-size: 1.15rem;
    max-width: 90%;
}.connect h6 {
    font-size: calc(20px * 1.05);
}.connect span {
    font-size: 13px;
}.connect .learn_chat {
    font-size: 13px;
}.connect svg {
    height: 22px;
    width: 22px;
}
}

@media (min-width: 992px) {.connect {
    padding: 7rem 4rem;
}.connect .learn_form {
    transform: perspective(2000px) rotateY(-3deg);
    gap: 3rem;
    grid-template-columns: 2fr 1fr 1fr;
}.connect .learn_form > div:first-child {
    grid-column: 1;
}.connect .edu_form {
    gap: 1.25rem;
}.connect h1::after {
    width: 100px;
}
}

@media (hover: none) {.connect .learn_form {
    transform: none !important;
}.connect .learn_chat:hover {
    transform: none;
}
}

@media (prefers-reduced-motion) {.connect::before,
    .connect::after {
    animation: none;
}.connect .learn_form,
    .connect .learn_form:hover {
    transition: none;
}}.reach_out {
    background: rgb(228,230,242);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}.reach_out::before {
    opacity: 0.07;
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    width: 100%;
    content: "";
    background: repeating-linear-gradient(
        45deg,
        rgb(195,200,225,0.5) 0,
        rgb(195,200,225,0.5) 1px,
        transparent 1px,
        transparent 30px
    );
    height: 100%;
}.reach_out::after {
    left: 0;
    background-image: 
        linear-gradient(rgb(158,166,202,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgb(158,166,202,0.5) 1px, transparent 1px);
    background-size: 30px 30px;
    width: 100%;
    position: absolute;
    z-index: 1;
    content: "";
    height: 100%;
    top: 0;
    opacity: 0.07;
}.reach_out .container {
    padding: 0 30px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}.reach_out h2 {
    left: 50%;
    font-size: 29px;
    position: relative;
    transform: translateX(-50%);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    display: inline-block;
    color: #000000;
    padding-bottom: 20px;
}.reach_out h2::before {
    background: rgb(195,200,225);
    position: absolute;
    bottom: 0;
    content: "";
    height: 4px;
    left: calc(50% - 40px);
    width: 80px;
}.reach_out h2::after {
    height: 4px;
    left: calc(50% - 15px);
    bottom: 0;
    background: rgb(158,166,202);
    content: "";
    width: 30px;
    position: absolute;
}.reach_out .support_block {
    position: relative;
    background: #ffffff;
    display: flex;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 0;
    margin-top: 50px;
}.reach_out .main_photo {
    min-height: 550px;
    position: relative;
    flex: 0 0 45%;
}.reach_out .main_photo::before {
    content: "";
    background: linear-gradient(
        135deg, 
        rgba(rgb(195,200,225), 0.4), 
        rgba(rgb(158,166,202), 0.4)
    );
    z-index: 1;
    position: absolute;
    inset: 0;
}.reach_out .connect_inquiry {
    display: flex;
    position: relative;
    justify-content: center;
    flex-direction: column;
    padding: 60px;
    flex: 0 0 55%;
}.reach_out .connect_inquiry::before {
    position: absolute;
    right: -75px;
    height: 150px;
    z-index: 0;
    top: -75px;
    border: 30px solid rgb(195,200,225,0.5);
    width: 150px;
    content: "";
    border-radius: 50%;
}.reach_out .connect_inquiry::after {
    position: absolute;
    transform: rotate(45deg);
    height: 100px;
    border-radius: 0;
    z-index: 0;
    left: -50px;
    width: 100px;
    background: rgb(158,166,202,0.5);
    content: "";
    bottom: -50px;
}.reach_out form {
    z-index: 2;
    position: relative;
}.reach_out form h3 {
    color: #000000;
    font-weight: 600;
    position: relative;
    margin-bottom: 40px;
    display: inline-block;
    font-size: 18px;
}.reach_out form h3::after {
    left: 0;
    position: absolute;
    width: 50%;
    height: 2px;
    bottom: -15px;
    background: rgb(195,200,225);
    content: "";
}.reach_out form input[type="text"] {
    margin-bottom: 25px;
    border-bottom: 2px solid rgb(228,230,242);
    transition: all 0.3s ease;
    color: #000000;
    padding: 20px 25px;
    background: transparent;
    border: none;
    width: 100%;
    font-size: 14px;
}.reach_out form input[type="text"]:focus {
    border-bottom-color: rgb(195,200,225);
    outline: none;
}.reach_out form input[type="text"]::placeholder {
    color: rgba(#000000, 0.5);
    transition: all 0.3s ease;
}.reach_out form input[type="text"]:focus::placeholder {
    opacity: 0;
    transform: translateY(-10px);
}.reach_out .inquiry_grid {
    margin-bottom: 40px;
    position: relative;
}.reach_out .inquiry_grid input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.reach_out .inquiry_grid label {
    line-height: 1.5;
    cursor: pointer;
    padding-left: 35px;
    font-size: 14px;
    color: #000000;
    position: relative;
}.reach_out .inquiry_grid label::before {
    position: absolute;
    background: transparent;
    width: 22px;
    top: 0;
    border: 2px solid rgb(228,230,242);
    left: 0;
    transition: all 0.3s ease;
    height: 22px;
    content: "";
}.reach_out .inquiry_grid input[type="checkbox"]:checked + label::before {
    border-color: rgb(195,200,225);
    background: rgb(195,200,225);
}.reach_out .inquiry_grid input[type="checkbox"]:checked + label::after {
    content: "";
    width: 6px;
    position: absolute;
    border: solid #ffffff;
    transform: rotate(45deg);
    left: 8px;
    border-width: 0 2px 2px 0;
    top: 4px;
    height: 12px;
}.reach_out .inquiry_grid label a {
    color: rgb(195,200,225);
    font-weight: 600;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}.reach_out .inquiry_grid label a::after {
    transform: scaleX(1);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
    width: 100%;
    background: rgb(195,200,225);
    height: 1px;
    content: "";
    transform-origin: left;
    bottom: -1px;
}.reach_out .inquiry_grid label a:hover {
    color: rgb(158,166,202);
}.reach_out .inquiry_grid label a:hover::after {
    background: rgb(158,166,202);
    transform: scaleX(0);
}.reach_out .inquiry_map {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    overflow: hidden;
    border: none;
    background: rgb(195,200,225);
    color: #ffffff;
    font-size: 20px;
    clip-path: polygon(
        0 0,
        100% 0,
        100% 70%,
        90% 100%,
        0 100%
    );
    z-index: 1;
    display: inline-block;
    padding: 18px 40px;
    transition: all 0.3s ease;
    width: auto;
}.reach_out .inquiry_map::before {
    transform: skewX(-25deg);
    height: 100%;
    content: "";
    width: 0;
    top: 0;
    transition: width 0.5s ease;
    position: absolute;
    left: -10px;
    background: rgb(158,166,202);
    z-index: -1;
}.reach_out .inquiry_map:hover::before {
    width: 150%;
}.reach_out svg {
    width: 24px;
    transition: all 0.3s ease;
    stroke: rgb(195,200,225);
    stroke-width: 2;
    fill: none;
    height: 24px;
}.reach_out svg path {
    stroke: rgb(195,200,225);
    fill: none;
    transition: all 0.3s ease;
}.reach_out svg:hover,
.reach_out svg:hover path {
    stroke: rgb(158,166,202);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 1024px) {.reach_out {
    padding: 80px 0;
}.reach_out .main_photo {
    min-height: 500px;
}.reach_out .connect_inquiry {
    padding: 50px 40px;
}
}

@media (max-width: 768px) {.reach_out {
    padding: 60px 0;
}.reach_out .support_block {
    flex-direction: column;
}.reach_out .main_photo {
    width: 100%;
    min-height: 300px;
}.reach_out .connect_inquiry {
    width: 100%;
    padding: 40px 30px;
}.reach_out form h3 {
    margin-bottom: 30px;
}.reach_out form input[type="text"] {
    margin-bottom: 20px;
    padding: 15px 20px;
}.reach_out .inquiry_grid {
    margin-bottom: 30px;
}.reach_out .inquiry_map {
    width: 100%;
    padding: 15px 30px;
}
}

@media (max-width: 480px) {.reach_out {
    padding: 50px 0;
}.reach_out h2 {
    font-size: calc(29px * 0.85);
}.reach_out .support_block {
    margin-top: 30px;
}.reach_out .main_photo {
    min-height: 200px;
}.reach_out .connect_inquiry {
    padding: 30px 20px;
}.reach_out form h3 {
    font-size: calc(18px * 0.9);
    margin-bottom: 25px;
}.reach_out form input[type="text"] {
    margin-bottom: 15px;
    padding: 12px 15px;
}.reach_out .inquiry_grid {
    margin-bottom: 25px;
}.reach_out .inquiry_grid label {
    font-size: calc(14px * 0.9);
}.reach_out .inquiry_map {
    padding: 12px 25px;
}}.pricing_option {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    background: rgb(228,230,242);
}.pricing_option::before {
    content: "";
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, 
        rgba(var(--primary-color-rgb), 0.05) 0%, 
        rgba(var(--secondary-color-rgb), 0.03) 100%);
    position: absolute;
    height: 100%;
    z-index: 0;
}.pricing_option .container {
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}.pricing_option .basic_rates {
    grid-template-columns: 1fr;
    display: grid;
    gap: 60px;
}.pricing_option .learning_cost {
    opacity: 0;
    margin: 0 auto;
    text-align: center;
    transform: translateY(20px);
    animation: fadeSlideUp 0.8s forwards 0.2s;
    max-width: 800px;
}.pricing_option .learning_cost h2 {
    color: #000000;
    font-size: 35px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}.pricing_option .learning_cost h2::after {
    bottom: -10px;
    width: 80px;
    background: linear-gradient(90deg, rgb(195,200,225), rgb(158,166,202));
    height: 3px;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}.pricing_option .package_price {
    margin-top: 30px;
    color: #000000;
    line-height: 1.6;
    font-size: calc(15px + 0.1rem);
}.pricing_option .fee_offers {
    gap: 30px;
    transform: translateY(30px);
    opacity: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    animation: fadeSlideUp 0.8s forwards 0.4s;
    display: grid;
    margin-top: 20px;
}.pricing_option .plan_matrix {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
    display: block;
    position: relative;
    z-index: 1;
    text-decoration: none;
    color: inherit;
}.pricing_option .plan_matrix:hover {
    transform: translateY(-10px) scale(1.02);
}.pricing_option .study_rates {
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 420px;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    background: #ffffff;
    display: flex;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}.pricing_option .plan_matrix:hover .study_rates {
    box-shadow: 0 20px 40px rgba(var(--primary-color-rgb), 0.15);
}.pricing_option .plan_matrix:nth-child(odd) .study_rates::before {
    width: 5px;
    transform-origin: bottom;
    background: rgb(195,200,225);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    transform: scaleY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
}.pricing_option .plan_matrix:nth-child(even) .study_rates::before {
    content: "";
    right: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleY(0);
    position: absolute;
    transform-origin: bottom;
    background: rgb(158,166,202);
    top: 0;
    height: 100%;
    width: 5px;
}.pricing_option .plan_matrix:hover .study_rates::before {
    transform: scaleY(1);
}.pricing_option .bundle_offer {
    flex-direction: column;
    z-index: 1;
    position: relative;
    flex: 1;
    display: flex;
    padding: 40px 30px;
}.pricing_option .bundle_offer h3 {
    transition: color 0.3s ease;
    color: #000000;
    position: relative;
    font-size: calc(23px + 0.2rem);
    display: inline-block;
    font-weight: 700;
    margin-bottom: 15px;
}.pricing_option .plan_matrix:hover .bundle_offer h3 {
    color: rgb(195,200,225);
}.pricing_option .plan_matrix:nth-child(even):hover .bundle_offer h3 {
    color: rgb(158,166,202);
}.pricing_option .edu_deals {
    font-weight: 700;
    padding-bottom: 10px;
    display: inline-block;
    position: relative;
    color: rgb(195,200,225);
    font-size: calc(23px + 0.5rem);
    margin: 10px 0 20px;
}.pricing_option .plan_matrix:nth-child(even) .edu_deals {
    color: rgb(158,166,202);
}.pricing_option .edu_deals::after {
    content: "";
    background: currentColor;
    width: 40px;
    bottom: 0;
    left: 0;
    height: 3px;
    opacity: 0.6;
    position: absolute;
}.pricing_option .bundle_offer p {
    hyphens: auto;
    word-break: break-word;
    line-height: 1.6;
    color: #000000;
    margin-top: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 15px;
}.pricing_option .main_photo {
    position: relative;
    transition: transform 0.5s ease;
    transform-origin: center;
    height: 200px;
    width: 100%;
}.pricing_option .plan_matrix:hover .main_photo {
    transform: scale(1.05);
}.pricing_option .main_photo::after {
    height: 40%;
    position: absolute;
    bottom: 0;
    transition: opacity 0.4s ease;
    opacity: 0;
    content: "";
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    width: 100%;
    left: 0;
}.pricing_option .plan_matrix:hover .main_photo::after {
    opacity: 1;
}

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

@media (min-width: 768px) {.pricing_option .basic_rates {
    grid-template-columns: 1fr;
}.pricing_option .fee_offers {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}
}

@media (min-width: 992px) {.pricing_option {
    padding: 150px 0;
}.pricing_option .basic_rates {
    grid-template-columns: 1fr;
    gap: 80px;
}.pricing_option .fee_offers {
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
}.pricing_option .study_rates {
    min-height: 480px;
}
}

@media (min-width: 1200px) {.pricing_option .fee_offers {
    gap: 40px;
}
}

@media (max-width: 767px) {.pricing_option {
    padding: 80px 0;
}.pricing_option .learning_cost h2 {
    font-size: calc(35px - 0.4rem);
}.pricing_option .package_price {
    font-size: 15px;
}.pricing_option .bundle_offer {
    padding: 30px 20px;
}.pricing_option .study_rates {
    min-height: 400px;
}.pricing_option .main_photo {
    height: 160px;
}
}

@media (max-width: 480px) {.pricing_option {
    padding: 60px 0;
}.pricing_option .basic_rates {
    gap: 40px;
}.pricing_option .fee_offers {
    gap: 25px;
}.pricing_option .bundle_offer h3 {
    font-size: 23px;
}.pricing_option .edu_deals {
    font-size: 23px;
}.pricing_option .bundle_offer p {
    font-size: calc(15px - 0.1rem);
}}.client_experience {
    background: rgb(228,230,242);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}.client_experience::before {
    left: 0;
    position: absolute;
    background-position: 0 0, 0 0, 25px 25px, 25px 25px, 0 0, 25px 25px;
    opacity: 0.05;
    height: 100%;
    z-index: 1;
    background-image: 
        linear-gradient(30deg, rgb(195,200,225,0.5) 12%, transparent 12.5%, transparent 87%, rgb(195,200,225,0.5) 87.5%, rgb(195,200,225,0.5)),
        linear-gradient(150deg, rgb(195,200,225,0.5) 12%, transparent 12.5%, transparent 87%, rgb(195,200,225,0.5) 87.5%, rgb(195,200,225,0.5)),
        linear-gradient(30deg, rgb(195,200,225,0.5) 12%, transparent 12.5%, transparent 87%, rgb(195,200,225,0.5) 87.5%, rgb(195,200,225,0.5)),
        linear-gradient(150deg, rgb(195,200,225,0.5) 12%, transparent 12.5%, transparent 87%, rgb(195,200,225,0.5) 87.5%, rgb(195,200,225,0.5)),
        linear-gradient(60deg, rgb(158,166,202,0.5) 25%, transparent 25.5%, transparent 75%, rgb(158,166,202,0.5) 75%, rgb(158,166,202,0.5)),
        linear-gradient(60deg, rgb(158,166,202,0.5) 25%, transparent 25.5%, transparent 75%, rgb(158,166,202,0.5) 75%, rgb(158,166,202,0.5));
    content: "";
    top: 0;
    background-size: 50px 50px;
    width: 100%;
}.client_experience .team_culture {
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
}.client_experience h4 {
    display: inline-block;
    font-size: 34px;
    font-weight: 700;
    color: #000000;
    transform: skew(-5deg);
    position: relative;
    margin-bottom: 70px;
}.client_experience h4::before {
    content: "";
    left: -50px;
    position: absolute;
    transform: skew(15deg);
    z-index: -1;
    height: 10px;
    bottom: -5px;
    width: 200%;
    background: rgb(158,166,202,0.5);
}.client_experience h4::after {
    position: absolute;
    animation: rotate 6s linear infinite;
    top: -15px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    width: 30px;
    background: rgb(195,200,225,0.5);
    height: 30px;
    content: "";
    right: -40px;
}@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.client_experience .opinion_spot {
    position: relative;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    z-index: 2;
    gap: 40px;
    display: grid;
}.client_experience .success_voices {
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% 80%, 
        85% 100%, 
        0 100%
    );
    padding: 40px 30px;
}.client_experience .success_voices::before {
    transform: translate(8px, 8px);
    content: "";
    inset: 0;
    z-index: -1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(135deg, rgb(195,200,225,0.5), rgb(158,166,202,0.5));
    clip-path: inherit;
    position: absolute;
}.client_experience .success_voices::after {
    right: 15%;
    position: absolute;
    background: rgb(228,230,242);
    width: 50px;
    bottom: 0;
    transform: rotate(45deg) translateY(25px);
    height: 50px;
    z-index: -2;
    content: "";
}.client_experience .success_voices:nth-child(odd)::after {
    background: rgb(195,200,225,0.5);
}.client_experience .success_voices:nth-child(even)::after {
    background: rgb(158,166,202,0.5);
}.client_experience .success_voices:hover {
    transform: translateY(-15px);
}.client_experience .success_voices:hover::before {
    transform: translate(4px, 4px);
}.client_experience .main_photo {
    height: 80px;
    position: absolute;
    z-index: 3;
    width: 80px;
    right: 20px;
    top: -20px;
    border: 3px solid #ffffff;
    transition: all 0.4s ease;
}.client_experience .success_voices:nth-child(odd) .main_photo {
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 70%, 
        70% 100%, 
        0% 100%
    );
}.client_experience .success_voices:nth-child(even) .main_photo {
    clip-path: polygon(
        30% 0%, 
        100% 0%, 
        100% 100%, 
        0% 100%, 
        0% 30%
    );
}.client_experience .success_voices:hover .main_photo {
    transform: translateY(-5px) rotate(-5deg);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
}.client_experience .success_voices span {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    font-size: 17px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgb(195,200,225,0.5);
    color: #000000;
    position: relative;
}.client_experience .success_voices p {
    line-height: 1.6;
    position: relative;
    color: #000000;
    font-weight: 400;
    font-family: Arial, sans-serif;
    font-size: 12px;
}.client_experience .success_voices p::first-letter {
    color: rgb(195,200,225);
    font-weight: 700;
    font-size: 1.5em;
}.client_experience .opinion_spot::before {
    border-radius: 50%;
    border: 10px solid rgb(158,166,202,0.5);
    content: "";
    height: 100px;
    top: -50px;
    z-index: -1;
    position: absolute;
    width: 100px;
    left: 10%;
}.client_experience .opinion_spot::after {
    background: rgb(195,200,225,0.5);
    bottom: -75px;
    z-index: -1;
    position: absolute;
    height: 150px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.2;
    right: 10%;
    content: "";
    width: 150px;
}

@media (max-width: 767px) {.client_experience {
    padding: 70px 0;
}.client_experience h4 {
    margin-bottom: 60px;
    display: block;
    transform: none;
    text-align: center;
    font-size: calc(34px * 0.85);
}.client_experience h4::before {
    left: 0;
    transform: none;
    width: 100%;
}.client_experience .opinion_spot {
    gap: 50px;
    grid-template-columns: 1fr;
}.client_experience .success_voices {
    padding: 30px 25px;
}.client_experience .main_photo {
    width: 70px;
    height: 70px;
    top: -15px;
    right: 15px;
}.client_experience .success_voices span {
    font-size: calc(17px * 0.9);
}.client_experience .success_voices p {
    font-size: calc(12px * 0.9);
}}.title_section {
    background-image: linear-gradient(135deg, rgb(228,230,242) 0%, rgba(255,255,255,0.95) 100%);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}.title_section::before {
    height: 50%;
    opacity: 0.15;
    width: 35%;
    left: -5%;
    filter: blur(80px);
    animation: float 15s infinite alternate ease-in-out;
    top: -10%;
    position: absolute;
    content: "";
    z-index: 0;
    background: rgb(195,200,225,0.5);
    border-radius: 40% 60% 70% 30%;
}.title_section::after {
    filter: blur(60px);
    right: -5%;
    width: 30%;
    z-index: 0;
    bottom: -5%;
    height: 40%;
    border-radius: 50% 40% 30% 60%;
    background: rgb(158,166,202,0.5);
    position: absolute;
    opacity: 0.15;
    content: "";
    animation: float 12s infinite alternate-reverse ease-in-out;
}.title_section .team_culture {
    flex-direction: column;
    z-index: 1;
    height: 100%;
    display: flex;
    position: relative;
    max-width: 1400px;
    min-height: 90vh;
    padding: 3rem 2rem;
    margin: 0 auto;
}.title_section h1 {
    line-height: 1.2;
    max-width: 90%;
    color: #000000;
    font-size: 45px;
    position: relative;
    z-index: 2;
    font-weight: 700;
    margin-bottom: 2rem;
    transform: translateY(0);
}.title_section h1::after {
    background: linear-gradient(90deg, rgb(195,200,225) 0%, rgb(158,166,202) 100%);
    width: 100px;
    box-shadow: 0 4px 15px rgba(94,170,168,0.3);
    border-radius: 3px;
    bottom: -0.75rem;
    position: absolute;
    left: 0;
    content: "";
    transition: width 0.5s ease;
    height: 6px;
}.title_section h1:hover::after {
    width: 150px;
}.title_section .content_block {
    justify-content: center;
    align-items: flex-start;
    display: flex;
    position: relative;
    margin-bottom: 2rem;
    flex-direction: column;
    z-index: 2;
}.title_section .fast_skill {
    box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05),
                -8px -8px 30px rgba(255, 255, 255, 0.8),
                inset 1px 1px 1px rgba(255, 255, 255, 0.6),
                inset -1px -1px 1px rgba(0, 0, 0, 0.05);
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    max-width: 600px;
    transform: translateZ(0);
}.title_section .fast_skill:hover {
    box-shadow: 10px 10px 35px rgba(0, 0, 0, 0.08),
                -10px -10px 35px rgba(255, 255, 255, 0.9),
                inset 1px 1px 1px rgba(255, 255, 255, 0.7),
                inset -1px -1px 1px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px) translateZ(0);
}.title_section .fast_skill p {
    position: relative;
    line-height: 1.6;
    color: #000000;
    font-size: calc(16px * 1.2);
    margin-bottom: 2rem;
}.title_section svg {
    margin: 1rem auto 2rem;
    height: 140px;
    display: block;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.1));
    width: 140px;
    transition: transform 0.5s ease, filter 0.5s ease;
}.title_section svg:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.15));
}.title_section svg path {
    transition: fill 0.3s ease;
}.title_section svg:hover path {
    fill: rgb(195,200,225);
}.title_section svg text {
    transition: fill 0.3s ease;
}.title_section svg:hover text {
    fill: rgb(158,166,202);
}.title_section .inquiry_map {
    display: inline-block;
    transition: all 0.3s ease;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    font-size: 15px;
    background: linear-gradient(135deg, rgb(195,200,225) 0%, rgb(158,166,202) 100%);
    padding: 1rem 2rem;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.1),
                -6px -6px 18px rgba(255, 255, 255, 0.8),
                inset 1px 1px 1px rgba(255, 255, 255, 0.3);
    transform: translateZ(0);
}.title_section .inquiry_map::before {
    width: 100%;
    content: "";
    top: 0;
    height: 100%;
    left: -100%;
    transition: all 0.5s ease;
    position: absolute;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
}.title_section .inquiry_map:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 8px 8px 24px rgba(0, 0, 0, 0.15),
                -8px -8px 24px rgba(255, 255, 255, 0.9),
                inset 1px 1px 1px rgba(255, 255, 255, 0.4);
}.title_section .inquiry_map:hover::before {
    left: 100%;
}.title_section .inquiry_map:active {
    transform: translateY(2px) translateZ(0);
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1),
                -4px -4px 10px rgba(255, 255, 255, 0.8),
                inset 2px 2px 6px rgba(0, 0, 0, 0.1),
                inset -2px -2px 6px rgba(255, 255, 255, 0.5);
}.title_section .main_photo {
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1),
                -10px -10px 30px rgba(255, 255, 255, 0.7),
                inset 1px 1px 2px rgba(255, 255, 255, 0.3);
    position: relative;
    border-radius: 16px;
    height: 350px;
    overflow: hidden;
    transform: translateZ(0) rotate(0deg);
    width: 100%;
    transition: transform 0.7s ease, box-shadow 0.7s ease;
    margin-top: 2rem;
}.title_section .main_photo::after {
    content: "";
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    background: linear-gradient(135deg, rgba(94,170,168,0.2) 0%, rgba(255,255,255,0) 70%);
}.title_section .main_photo:hover {
    transform: translateZ(0) rotate(1deg) scale(1.02);
    box-shadow: 15px 15px 35px rgba(0, 0, 0, 0.15),
                -15px -15px 35px rgba(255, 255, 255, 0.8),
                inset 1px 1px 2px rgba(255, 255, 255, 0.4);
}

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

@media (min-width: 768px) {.title_section .team_culture {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 4rem;
    flex-wrap: wrap;
}.title_section h1 {
    font-size: calc(45px * 1.2);
    max-width: 70%;
}.title_section .content_block {
    width: 50%;
    margin-bottom: 0;
}.title_section .main_photo {
    height: 450px;
    width: 45%;
    margin-top: 0;
}
}

@media (min-width: 992px) {.title_section .team_culture {
    min-height: 85vh;
    padding: 5rem;
}.title_section h1 {
    max-width: 60%;
    font-size: calc(45px * 1.4);
}.title_section .content_block {
    width: 45%;
}.title_section .main_photo {
    height: 550px;
    transform: translateZ(0) translateX(0) rotate(0deg);
    width: 50%;
}.title_section .main_photo:hover {
    transform: translateZ(0) translateX(-10px) rotate(1deg) scale(1.03);
}.title_section svg {
    width: 160px;
    height: 160px;
}
}

@media (min-width: 1200px) {.title_section .team_culture {
    padding: 6rem;
}.title_section h1 {
    font-size: calc(45px * 1.6);
    max-width: 90%;
}.title_section .content_block {
    width: 40%;
}.title_section .main_photo {
    height: 600px;
    width: 55%;
}.title_section .fast_skill p {
    font-size: calc(16px * 1.3);
}.title_section svg {
    height: 180px;
    width: 180px;
}
}

@media (max-width: 767px) {.title_section h1 {
    font-size: calc(45px * 0.9);
}.title_section .fast_skill {
    padding: 1.5rem;
}.title_section .fast_skill p {
    font-size: 16px;
}.title_section .inquiry_map {
    padding: 0.8rem 1.5rem;
}.title_section svg {
    height: 120px;
    width: 120px;
}}.privacy_niche {
    flex-direction: column;
    font-family: Arial, sans-serif;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 60px;
    height: auto;
    display: flex;
    align-items: center;
    border: 2px solid rgb(195,200,225);
    color: #ffffff;
    overflow: hidden;
}.privacy_niche h1 {
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    padding-bottom: 10px;
    font-size: 39px;
    border-bottom: 3px solid rgb(195,200,225);
    font-weight: 700;
    margin-top: 50px;
    color: rgb(195,200,225);
}.privacy_niche h2 {
    margin-top: 40px;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid rgb(158,166,202);
    color: rgb(158,166,202);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
}.privacy_niche h3, .privacy_niche h4, .privacy_niche h5, .privacy_niche h6 {
    margin-top: 30px;
    font-size: 21px;
    text-align: center;
    width: 100%;
    color: rgb(195,200,225);
    font-weight: 600;
    border-bottom: 1px solid rgb(195,200,225);
    margin-bottom: 20px;
    padding-bottom: 5px;
}.privacy_niche li {
    font-weight: 400;
    border-left: 3px solid rgb(195,200,225);
    margin-bottom: 15px;
    font-size: 13px;
    color: #000000;
    padding-left: 10px;
    position: relative;
    line-height: 1.6;
    padding-left: 20px;
}.privacy_niche section {
    padding: 30px;
    border: 1px solid rgb(195,200,225);
    width: 100%;
    box-shadow: 0 0 15px rgb(195,200,225,0.5);
    border-radius: 10px;
    text-align: center;
    margin-top: 30px;
}.privacy_niche p, .privacy_niche span, .privacy_niche div {
    line-height: 1.8;
    text-align: center;
    padding-bottom: 5px;
    margin: 0 auto 15px auto;
    font-size: 13px;
    width: 100%;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 300;
}

@media only screen and (max-width: 800px) {.privacy_niche {
    padding: 20px 10px;
}.privacy_niche h1 {
    font-size: calc(21px * 0.8);
    width: 100%;
}.privacy_niche h2 {
    font-size: calc(21px * 0.8);
    width: 100%;
}.privacy_niche h3, .privacy_niche h4, .privacy_niche h5, .privacy_niche h6 {
    font-size: calc(21px * 0.8);
    width: 100%;
}.privacy_niche p, .privacy_niche span, .privacy_niche div {
    font-size: calc(13px * 0.9);
    width: 100%;
}.privacy_niche ul, .privacy_niche ol {
    width: 100%;
}.privacy_niche section {
    width: 100%;
}}.course_benefits {
    background: linear-gradient(135deg, rgb(228,230,242) 0%, rgba(240, 242, 245, 0.9) 100%);
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}.course_benefits::before {
    height: 300px;
    right: -50px;
    width: 300px;
    animation: pulse 15s infinite alternate ease-in-out;
    content: "";
    top: -50px;
    background: radial-gradient(circle, rgb(158,166,202,0.5) 0%, transparent 70%);
    z-index: 1;
    opacity: 0.4;
    position: absolute;
}.course_benefits::after {
    height: 250px;
    background: radial-gradient(circle, rgb(195,200,225,0.5) 0%, transparent 70%);
    bottom: -80px;
    width: 250px;
    opacity: 0.3;
    z-index: 1;
    left: -80px;
    position: absolute;
    content: "";
    animation: pulse 18s infinite alternate-reverse ease-in-out;
}.course_benefits .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}.course_benefits .team_culture {
    position: relative;
    flex-direction: column-reverse;
    display: flex;
    gap: 40px;
}.course_benefits .content_block {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    flex: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.9);
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
}.course_benefits .content_block:hover {
    transform: translateY(-5px);
}.course_benefits .content_block::before {
    background: rgb(195,200,225);
    height: 0;
    content: "";
    top: 0;
    width: 5px;
    position: absolute;
    left: 0;
    transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}.course_benefits .content_block:hover::before {
    height: 100%;
}.course_benefits .content_block h4 {
    position: relative;
    font-family: Arial, sans-serif;
    font-size: calc(20px * 1.1);
    line-height: 1.4;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    padding-bottom: 15px;
}.course_benefits .content_block h4::after {
    bottom: 0;
    width: 80px;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleX(1);
    position: absolute;
    transform-origin: left;
    content: "";
    background: rgb(158,166,202);
    left: 0;
    height: 3px;
}.course_benefits .content_block:hover h4::after {
    transform: scaleX(1.5);
}.course_benefits .content_block > div {
    display: flex;
    gap: 20px;
    flex-direction: column;
}.course_benefits .content_block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}.course_benefits .content_block li {
    transform: translateX(0);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
    margin-bottom: 15px;
    opacity: 0.95;
}.course_benefits .content_block li:hover {
    transform: translateX(5px);
    opacity: 1;
}.course_benefits .content_block li p {
    color: #000000;
    gap: 15px;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    align-items: flex-start;
    display: flex;
}.course_benefits .content_block li p span:first-child {
    margin-top: 2px;
    flex-shrink: 0;
}.course_benefits .content_block li p span:last-child {
    position: relative;
}.course_benefits .content_block li p span:last-child::before {
    background: rgb(195,200,225);
    height: 1px;
    transition: width 0.4s ease;
    left: 0;
    width: 0;
    position: absolute;
    bottom: -2px;
    content: "";
}.course_benefits .content_block li:hover p span:last-child::before {
    width: 100%;
}.course_benefits svg {
    height: 22px;
    width: 22px;
    transition: transform 0.3s ease;
}.course_benefits li:hover svg {
    transform: scale(1.1) rotate(5deg);
}.course_benefits svg path {
    fill: rgb(158,166,202);
    transition: fill 0.3s ease;
}.course_benefits li:hover svg path {
    fill: rgb(195,200,225);
}.course_benefits .main_photo {
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1), -20px -20px 60px rgba(255, 255, 255, 0.8);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
    width: 100%;
    height: auto;
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}.course_benefits .main_photo:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: perspective(1000px) rotateX(0) rotateY(0);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@media (min-width: 768px) {.course_benefits .team_culture {
    flex-direction: row;
    align-items: center;
    gap: 60px;
}.course_benefits .content_block {
    padding: 45px;
}.course_benefits .content_block > div {
    flex-direction: row;
}.course_benefits .main_photo {
    object-position: center;
    max-width: 45%;
}.course_benefits .content_block h4 {
    font-size: calc(20px * 1.2);
}
}

@media (min-width: 992px) {.course_benefits {
    padding: 120px 0;
}.course_benefits .team_culture {
    gap: 80px;
}.course_benefits .content_block {
    padding: 50px;
}.course_benefits .content_block h4 {
    font-size: calc(20px * 1.3);
    margin-bottom: 35px;
}.course_benefits .content_block h4::after {
    width: 100px;
}.course_benefits svg {
    width: 24px;
    height: 24px;
}.course_benefits .main_photo {
    transform: perspective(1200px) rotateX(3deg) rotateY(-3deg) translateZ(20px);
}
}

@media (min-width: 1200px) {.course_benefits .container {
    padding: 0;
}.course_benefits .team_culture {
    gap: 100px;
}.course_benefits .content_block {
    padding: 60px;
}.course_benefits .content_block li {
    margin-bottom: 20px;
}.course_benefits .main_photo {
    max-width: 50%;
}
}

@media (max-width: 767px) {.course_benefits {
    padding: 70px 0;
}.course_benefits .content_block h4 {
    padding-bottom: 12px;
    font-size: 20px;
    margin-bottom: 20px;
}.course_benefits .content_block {
    padding: 25px;
}.course_benefits .main_photo {
    transform: perspective(800px) rotateX(1deg) rotateY(-1deg);
}.course_benefits svg {
    width: 20px;
    height: 20px;
}
}