﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}html,body {
    min-height: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
    scroll-behavior: smooth;
}.tiktok_edu {
    flex: 0 0 auto;
}svg {
    width: 30px;
    height: 30px;
}.wrapper-section {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}.site_navbar {
    flex: 1 0 auto;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1179px;
}header,footer {
    width: 100%;
}a {
    color: inherit;
    text-decoration: none;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.data_exploration {
    position: relative;
    background-color: #000000;
    overflow: hidden;
    padding: 120px 0;
    z-index: 1;
}.data_exploration::before {
    left: 0;
    z-index: -2;
    width: 100%;
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(97,107,158,0.5) 30%, rgba(0, 0, 0, 0.5) 70%);
    height: 100%;
    top: 0;
}.data_exploration::after {
    transform: rotate(15deg);
    animation: gridMove 35s linear infinite;
    left: -50%;
    position: absolute;
    top: -50%;
    content: "";
    height: 200%;
    width: 200%;
    background: repeating-linear-gradient(
        rgba(rgb(152,159,179,0.5), 0.03) 0px,
        transparent 1px,
        transparent 30px
    ), 
    repeating-linear-gradient(
        90deg,
        rgba(rgb(152,159,179,0.5), 0.03) 0px,
        transparent 1px,
        transparent 30px
    );
    z-index: -1;
}@keyframes gridMove {
    0% {
        transform: rotate(15deg) translate(0, 0);
    }
    50% {
        transform: rotate(17deg) translate(-5%, -2%);
    }
    100% {
        transform: rotate(15deg) translate(0, 0);
    }
}

.data_exploration .container {
    position: relative;
    max-width: 1200px;
    z-index: 1;
    margin: 0 auto;
    padding: 0 15px;
}.data_exploration .container::before {
    top: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(152,159,179,0.5) 0%, transparent 70%);
    filter: blur(50px);
    width: 200px;
    position: absolute;
    height: 200px;
    opacity: 0.4;
    content: "";
    right: -20px;
    animation: pulseEffect 8s ease-in-out infinite;
}@keyframes pulseEffect {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}

.data_exploration h2 {
    padding-left: 20px;
    display: inline-block;
    font-size: 44px;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
}.data_exploration h2::before {
    content: "";
    left: 0;
    width: 6px;
    height: 90%;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    border-radius: 10px;
    background: linear-gradient(to bottom, rgb(152,159,179), rgb(97,107,158));
}.data_exploration h2::after {
    background: linear-gradient(to right, rgb(152,159,179), transparent);
    width: 100%;
    left: 0;
    bottom: -15px;
    content: "";
    height: 2px;
    position: absolute;
}.data_exploration ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 40px;
}.data_exploration .statistics_zone {
    border-radius: 10px;
    min-width: 240px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex: 1 1 240px;
    max-width: 100%;
    padding: 35px 30px;
}.data_exploration .statistics_zone::before {
    z-index: -1;
    position: absolute;
    top: 0;
    width: 100%;
    content: "";
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    left: 0;
    height: 100%;
}.data_exploration .statistics_zone::after {
    left: -50%;
    transition: opacity 0.5s ease;
    width: 200%;
    background: radial-gradient(circle, rgb(152,159,179,0.5) 0%, transparent 60%);
    height: 200%;
    position: absolute;
    content: "";
    transform: scale(0.5);
    z-index: -1;
    top: -50%;
    opacity: 0;
}.data_exploration .statistics_zone:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(rgb(152,159,179,0.5), 0.2);
    transform: translateY(-10px);
}.data_exploration .statistics_zone:hover::after {
    transform: scale(1);
    opacity: 0.1;
}.data_exploration .statistics_zone p {
    position: relative;
    font-weight: 700;
    margin: 0 0 20px;
    display: inline-block;
    line-height: 1;
    color: #ffffff;
    font-size: 3.5rem;
}.data_exploration .statistics_zone p::before {
    content: "";
    width: 40px;
    border-radius: 50%;
    background: rgb(152,159,179,0.5);
    top: -10px;
    opacity: 0.2;
    z-index: -1;
    left: -20px;
    filter: blur(10px);
    height: 40px;
    position: absolute;
}.data_exploration .statistics_zone span {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    font-size: 17px;
    position: relative;
}.data_exploration .statistics_zone span::after {
    width: 40px;
    position: absolute;
    height: 2px;
    border-radius: 10px;
    transform: translateX(-50%);
    bottom: -15px;
    left: 50%;
    content: "";
    background: rgb(152,159,179,0.5);
}.data_exploration ul:has(.statistics_zone:only-child) .statistics_zone {
    max-width: 500px;
    margin: 0 auto;
    flex: 0 0 100%;
}.data_exploration ul:has(.statistics_zone:nth-child(2):last-child) .statistics_zone {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
}.data_exploration ul:has(.statistics_zone:nth-child(3):last-child) .statistics_zone {
    flex: 0 0 calc(33.33% - 27px);
    max-width: calc(33.33% - 27px);
}.data_exploration ul:has(.statistics_zone:nth-child(4):last-child) .statistics_zone {
    flex: 0 0 calc(25% - 30px);
    max-width: calc(25% - 30px);
}.data_exploration ul:has(.statistics_zone:nth-child(5):nth-last-child(-n+1)) .statistics_zone {
    max-width: calc(20% - 32px);
    flex: 0 0 calc(20% - 32px);
}.data_exploration ul:has(.statistics_zone:nth-child(n+6):nth-child(-n+10)) .statistics_zone {
    flex: 0 0 calc(33.33% - 27px);
    max-width: calc(33.33% - 27px);
}.data_exploration svg {
    height: 40px;
    transition: transform 0.3s ease;
    width: 40px;
    fill: rgb(152,159,179);
    margin-bottom: 15px;
}.data_exploration svg path {
    fill: rgb(152,159,179);
}.data_exploration .statistics_zone:hover svg {
    transform: scale(1.2) rotate(5deg);
}

@media screen and (min-width: 1441px) {.data_exploration {
    padding: 150px 0;
}.data_exploration h2 {
    margin-bottom: 80px;
    font-size: calc(44px * 1.2);
}.data_exploration .statistics_zone {
    padding: 45px 40px;
}.data_exploration .statistics_zone p {
    font-size: 4rem;
}
}

@media screen and (max-width: 1440px) {.data_exploration {
    padding: 100px 0;
}.data_exploration ul {
    gap: 30px;
}.data_exploration .statistics_zone {
    padding: 30px 25px;
}.data_exploration .statistics_zone p {
    font-size: 3rem;
}
}

@media screen and (max-width: 1200px) {.data_exploration {
    padding: 90px 0;
}.data_exploration ul:has(.statistics_zone:nth-child(4):last-child) .statistics_zone,
    .data_exploration ul:has(.statistics_zone:nth-child(5):nth-last-child(-n+1)) .statistics_zone,
    .data_exploration ul:has(.statistics_zone:nth-child(n+6):nth-child(-n+10)) .statistics_zone {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
}.data_exploration .statistics_zone p {
    font-size: 2.8rem;
}
}

@media screen and (max-width: 991px) {.data_exploration {
    padding: 80px 0;
}.data_exploration h2 {
    margin-bottom: 50px;
    font-size: calc(44px * 0.9);
}.data_exploration ul {
    gap: 25px;
}.data_exploration ul:has(.statistics_zone:nth-child(3):last-child) .statistics_zone,
    .data_exploration ul:has(.statistics_zone:nth-child(4):last-child) .statistics_zone,
    .data_exploration ul:has(.statistics_zone:nth-child(5):nth-last-child(-n+1)) .statistics_zone,
    .data_exploration ul:has(.statistics_zone:nth-child(n+6):nth-child(-n+10)) .statistics_zone {
    flex: 0 0 calc(50% - 13px);
    max-width: calc(50% - 13px);
}.data_exploration .statistics_zone {
    padding: 25px 20px;
}.data_exploration .statistics_zone p {
    margin-bottom: 15px;
    font-size: 2.5rem;
}
}

@media screen and (max-width: 767px) {.data_exploration {
    padding: 70px 0;
}.data_exploration h2 {
    margin-bottom: 40px;
    font-size: calc(44px * 0.8);
    padding-left: 15px;
}.data_exploration h2::before {
    width: 4px;
}.data_exploration ul {
    flex-direction: column;
    gap: 20px;
}.data_exploration .statistics_zone,
    .data_exploration ul:has(.statistics_zone:nth-child(2):last-child) .statistics_zone,
    .data_exploration ul:has(.statistics_zone:nth-child(3):last-child) .statistics_zone,
    .data_exploration ul:has(.statistics_zone:nth-child(4):last-child) .statistics_zone,
    .data_exploration ul:has(.statistics_zone:nth-child(5):nth-last-child(-n+1)) .statistics_zone,
    .data_exploration ul:has(.statistics_zone:nth-child(n+6):nth-child(-n+10)) .statistics_zone {
    flex: 0 0 100%;
    max-width: 100%;
}.data_exploration .statistics_zone p {
    font-size: 2.2rem;
}.data_exploration svg {
    height: 35px;
    width: 35px;
}
}

@media screen and (max-width: 480px) {.data_exploration {
    padding: 60px 0;
}.data_exploration h2 {
    padding-left: 12px;
    margin-bottom: 30px;
    font-size: calc(44px * 0.7);
}.data_exploration h2::before {
    width: 3px;
}.data_exploration ul {
    gap: 15px;
}.data_exploration .statistics_zone {
    padding: 20px 15px;
}.data_exploration .statistics_zone p {
    margin-bottom: 10px;
    font-size: 2rem;
}.data_exploration .statistics_zone span {
    font-size: calc(17px * 0.9);
}.data_exploration svg {
    margin-bottom: 10px;
    height: 30px;
    width: 30px;
}}.program_outcomes {
    overflow: hidden;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgb(193,195,200) 0%, #ffffff 100%);
}.program_outcomes::before {
    width: 35%;
    animation: float 12s infinite ease-in-out;
    transform: rotate(-15deg);
    content: "";
    filter: blur(40px);
    right: -5%;
    background: linear-gradient(225deg, rgb(152,159,179,0.5) 20%, transparent 80%);
    height: 70%;
    position: absolute;
    top: -10%;
    opacity: 0.5;
    z-index: 1;
}.program_outcomes::after {
    opacity: 0.5;
    filter: blur(40px);
    content: "";
    z-index: 1;
    height: 60%;
    left: -5%;
    transform: rotate(15deg);
    width: 35%;
    bottom: -10%;
    position: absolute;
    background: linear-gradient(45deg, rgb(97,107,158,0.5) 30%, transparent 80%);
    animation: float 15s infinite ease-in-out reverse;
}.program_outcomes h5 {
    margin-right: auto;
    position: relative;
    margin-bottom: 60px;
    font-size: 23px;
    line-height: 1.4;
    text-align: center;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    transform: perspective(1000px) rotateX(0deg);
    color: #000000;
    animation: fadeInUp 0.8s ease-out forwards;
}.program_outcomes h5::after {
    bottom: -15px;
    background: linear-gradient(90deg, rgb(152,159,179) 0%, rgb(97,107,158) 100%);
    left: 50%;
    transform: translateX(-50%);
    content: "";
    height: 3px;
    position: absolute;
    width: 80px;
    border-radius: 10px;
}.program_outcomes .container {
    position: relative;
    max-width: 1200px;
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
}.program_outcomes .guide_approach {
    backdrop-filter: blur(8px);
    position: relative;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    padding: 40px;
    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(255, 255, 255, 0.1) inset;
    background-color: rgba(255, 255, 255, 0.7);
    display: grid;
    border-radius: 14px;
}.program_outcomes .guide_approach:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 8px 20px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transform: translateY(-5px);
}.program_outcomes .img_border_box {
    transition: transform 0.5s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4/3;
    filter: saturate(1.05);
    object-fit: cover;
    transform: perspective(1000px) rotateY(-5deg);
    height: auto;
    border-radius: 14px;
    width: 100%;
}.program_outcomes .guide_approach:hover .img_border_box {
    transform: perspective(1000px) rotateY(-2deg) translateZ(10px);
}.program_outcomes .text_scroll {
    padding-left: 20px;
}.program_outcomes ul {
    padding: 0;
    display: grid;
    gap: 20px;
    margin: 0;
    grid-template-columns: 1fr;
    list-style: none;
}.program_outcomes li {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    padding-left: 40px;
    position: relative;
    animation-delay: calc(0.1s * var(--item-index, 0));
    transform: translateY(20px);
}.program_outcomes li:nth-child(1) {
    --item-index: 1;
}.program_outcomes li:nth-child(2) {
    --item-index: 2;
}.program_outcomes li:nth-child(3) {
    --item-index: 3;
}.program_outcomes li:nth-child(4) {
    --item-index: 4;
}.program_outcomes li:nth-child(5) {
    --item-index: 5;
}.program_outcomes li:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}.program_outcomes li p {
    font-size: 18px;
    align-items: flex-start;
    margin: 0;
    color: #000000;
    line-height: 1.6;
    display: flex;
}.program_outcomes li svg {
    position: absolute;
    height: 28px;
    left: 0;
    top: 0;
    transition: transform 0.3s ease;
    width: 28px;
}.program_outcomes li:hover svg {
    transform: scale(1.1) rotate(5deg);
}.program_outcomes li svg path {
    transition: fill 0.3s ease;
    fill: rgb(152,159,179);
}.program_outcomes li:hover svg path {
    fill: rgb(97,107,158);
}

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

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

@media (max-width: 992px) {.program_outcomes {
    padding: 80px 0 60px;
}.program_outcomes .guide_approach {
    grid-template-columns: 1fr;
    padding: 30px;
}.program_outcomes .img_border_box {
    max-height: 300px;
    width: 100%;
    transform: perspective(1000px) rotateY(0deg);
}.program_outcomes .text_scroll {
    padding-top: 20px;
    padding-left: 0;
}.program_outcomes h5 {
    font-size: calc(23px * 0.9);
    margin-bottom: 50px;
}
}

@media (max-width: 768px) {.program_outcomes {
    padding: 60px 0 40px;
}.program_outcomes h5 {
    margin-bottom: 40px;
    font-size: calc(23px * 0.8);
}.program_outcomes .guide_approach {
    padding: 20px;
}.program_outcomes li {
    padding-left: 35px;
}.program_outcomes li svg {
    width: 24px;
    height: 24px;
}.program_outcomes li p {
    font-size: calc(18px * 0.95);
}
}

@media (max-width: 576px) {.program_outcomes {
    padding: 50px 0 30px;
}.program_outcomes h5 {
    margin-bottom: 30px;
    font-size: calc(23px * 0.7);
}.program_outcomes .guide_approach {
    gap: 20px;
    padding: 15px;
}.program_outcomes .img_border_box {
    max-height: 200px;
}.program_outcomes li {
    padding-left: 30px;
    gap: 15px;
}.program_outcomes li svg {
    height: 20px;
    width: 20px;
}.program_outcomes li p {
    font-size: calc(18px * 0.9);
    line-height: 1.5;
}}.cookieNotificationBanner {
    transform: translateX(-50%);
    z-index: 1050;
    max-width: 500px;
    font-family: Arial, sans-serif;
    left: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 90%;
    bottom: 20px;
    position: fixed;
    background: #ffffff;
    border-radius: 25px;
}.edu_accept {
    flex-direction: column;
    align-items: center;
    display: flex;
    padding: 20px;
}.cookie_disclaimer {
    margin-bottom: 20px;
}.cookie_disclaimer svg, .cookie_disclaimer svg path, .cookie_disclaimer img {
    fill: rgb(152,159,179);
    height: 60px;
    width: 60px;
}.cookieNotificationBanner h5 {
    text-align: center;
    font-size: 23px;
    margin-bottom: 10px;
    font-weight: 700;
    color: rgb(152,159,179);
}.cookieNotificationBanner p {
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
}.safe_cookies {
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 17px;
    color: #ffffff;
    background: rgb(152,159,179);
    transition: background 0.3s ease-in-out;
    display: inline-block;
    width: calc(50% - 10px);
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    margin: 5px;
}.safe_cookies:hover {
    background: rgb(97,107,158);
}.cookie_button.edu_track {
    background: rgb(97,107,158);
}.cookie_button.edu_track:hover {
    background: rgb(97,107,158,0.5);
}.cookieNotificationBanner p a {
    transition: color 0.3s ease-in-out;
    color: rgb(152,159,179);
    text-decoration: none;
}.cookieNotificationBanner p a:hover {
    color: rgb(97,107,158);
}#cookie_popup_alert {
    display: none;
}#cookie_popup_alert:checked ~ .cookieNotificationBanner {
    opacity: 0;
    visibility: hidden;
}.contact_ussrUuw {
    background: linear-gradient(135deg, rgb(193,195,200) 0%, rgb(152,159,179,0.5) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}.contact_ussrUuw::before {
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 0;
    position: absolute;
    animation: pulse 15s infinite alternate;
    content: '';
    background: 
        radial-gradient(circle at 20% 30%, rgb(97,107,158,0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(152,159,179,0.5) 0%, transparent 40%);
    top: 0;
}.contact_ussrUuw::after {
    position: absolute;
    top: 0;
    content: '';
    background-size: 200px 200px;
    background-position: 0 0, 0 100px, 100px -100px, -100px 0px;
    background-image: 
        linear-gradient(45deg, rgb(152,159,179,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(152,159,179,0.5) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(152,159,179,0.5) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(152,159,179,0.5) 75%);
    height: 100%;
    width: 100%;
    opacity: 0.05;
    z-index: 1;
    left: 0;
}.contact_ussrUuw .img_border_box {
    height: 100%;
    width: 100%;
    z-index: 2;
    filter: grayscale(40%) contrast(120%);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
}.contact_ussrUuw .container {
    z-index: 3;
    padding: 0 20px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}.contact_ussrUuw h3 {
    color: #000000;
    font-size: 31px;
    text-align: center;
    position: relative;
    font-weight: 700;
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}.contact_ussrUuw h3::after {
    transform: translateX(-50%);
    height: 4px;
    bottom: -10px;
    border-radius: 10px;
    left: 50%;
    content: '';
    position: absolute;
    width: 80px;
    background: rgb(152,159,179);
}.contact_ussrUuw .support_request {
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-wrap: wrap;
    display: flex;
    border-radius: 25px;
    background: #ffffff;
}.contact_ussrUuw .support_request::before {
    left: -5px;
    top: -5px;
    bottom: -5px;
    z-index: -1;
    border-radius: calc(25px + 5px);
    animation: border-glow 5s infinite linear;
    background: linear-gradient(45deg, rgb(97,107,158), rgb(152,159,179), rgb(97,107,158));
    content: '';
    position: absolute;
    right: -5px;
}.contact_ussrUuw .query_reach {
    overflow: hidden;
    padding: 40px;
    position: relative;
    flex: 1 1 60%;
}.contact_ussrUuw .query_reach::before {
    content: '';
    background-position: 0 0, 0 100%, 0 0, 100% 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    position: absolute;
    background: 
        linear-gradient(90deg, #ffffff 10px, transparent 10px) 0 0,
        linear-gradient(90deg, #ffffff 10px, transparent 10px) 0 0,
        linear-gradient(0deg, #ffffff 10px, transparent 10px) 0 0,
        linear-gradient(0deg, #ffffff 10px, transparent 10px) 0 0;
    background-size: 20px 1px, 20px 1px, 1px 20px, 1px 20px;
    top: 0;
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    z-index: 0;
}.contact_ussrUuw .query_reach #contact {
    z-index: 1;
    position: relative;
}.contact_ussrUuw .query_reach h3 {
    color: #000000;
    font-weight: 600;
    font-size: 19px;
    text-align: left;
    margin-bottom: 30px;
}.contact_ussrUuw .query_reach h3::after {
    transform: none;
    width: 60px;
    left: 0;
}.contact_ussrUuw .query_reach input[type="text"],
.contact_ussrUuw .query_reach textarea {
    font-family: Arial, sans-serif;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    color: #000000;
    background-color: rgba(0, 0, 0, 0.02);
    font-size: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    padding: 15px 20px;
}.contact_ussrUuw .query_reach input[type="text"]:focus,
.contact_ussrUuw .query_reach textarea:focus {
    border-color: rgb(152,159,179);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgb(152,159,179,0.5);
    outline: none;
}.contact_ussrUuw .query_reach textarea {
    resize: vertical;
    height: 120px;
}.contact_ussrUuw .query_reach .inquiry_info {
    margin-bottom: 25px;
    align-items: flex-start;
    display: flex;
}.contact_ussrUuw .query_reach .inquiry_info input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact_ussrUuw .query_reach .inquiry_info label {
    position: relative;
    cursor: pointer;
    font-size: calc(15px - 2px);
    line-height: 1.5;
    padding-left: 35px;
    color: #000000;
}.contact_ussrUuw .query_reach .inquiry_info label::before {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.02);
    position: absolute;
    content: '';
    border-radius: 10px;
    top: 2px;
    transition: all 0.3s ease;
    left: 0;
}.contact_ussrUuw .query_reach .inquiry_info input[type="checkbox"]:checked + label::before {
    background-color: rgb(152,159,179);
    border-color: rgb(152,159,179);
}.contact_ussrUuw .query_reach .inquiry_info input[type="checkbox"]:checked + label::after {
    border-bottom: 2px solid #ffffff;
    top: 9px;
    transform: rotate(-45deg);
    content: '';
    left: 7px;
    position: absolute;
    border-left: 2px solid #ffffff;
    width: 8px;
    height: 4px;
}.contact_ussrUuw .query_reach .inquiry_info a {
    color: rgb(152,159,179);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}.contact_ussrUuw .query_reach .inquiry_info a:hover {
    color: rgb(97,107,158);
    text-decoration: underline;
}.contact_ussrUuw .query_reach .reach_list {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 15px 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-block;
    color: #ffffff;
    background: linear-gradient(135deg, rgb(152,159,179) 0%, rgb(97,107,158) 100%);
    text-transform: uppercase;
}.contact_ussrUuw .query_reach .reach_list::before {
    width: 100%;
    position: absolute;
    left: -100%;
    height: 100%;
    top: 0;
    transition: all 0.5s ease;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}.contact_ussrUuw .query_reach .reach_list:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}.contact_ussrUuw .query_reach .reach_list:hover::before {
    left: 100%;
}.contact_ussrUuw .feedback_info {
    position: relative;
    background: linear-gradient(135deg, rgb(97,107,158) 0%, rgb(152,159,179) 100%);
    flex: 1 1 40%;
    overflow: hidden;
    padding: 40px;
}.contact_ussrUuw .feedback_info::before {
    opacity: 0.6;
    height: 100%;
    width: 100%;
    position: absolute;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    left: 0;
    content: '';
    top: 0;
}.contact_ussrUuw .feedback_info h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    font-size: 19px;
}.contact_ussrUuw .feedback_info h4::after {
    position: absolute;
    width: 60px;
    content: '';
    background: #ffffff;
    height: 3px;
    border-radius: 10px;
    left: 0;
    bottom: -10px;
}.contact_ussrUuw .feedback_info .connect_query {
    list-style: none;
    padding: 0;
    margin: 0;
}.contact_ussrUuw .feedback_info .connect_query li {
    align-items: flex-start;
    display: flex;
    z-index: 1;
    position: relative;
    margin-bottom: 25px;
}.contact_ussrUuw .feedback_info .connect_query li svg {
    flex-shrink: 0;
    height: 24px;
    margin-right: 15px;
    width: 24px;
}.contact_ussrUuw .feedback_info .connect_query li svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}.contact_ussrUuw .feedback_info .connect_query li:hover svg path {
    fill: rgba(255, 255, 255, 0.8);
}.contact_ussrUuw .feedback_info .connect_query li span {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.5;
}.contact_ussrUuw .feedback_info .connect_query li a {
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}.contact_ussrUuw .feedback_info .connect_query li a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes border-glow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

@media (max-width: 992px) {.contact_ussrUuw {
    padding: 60px 0;
}.contact_ussrUuw .container {
    padding: 0 15px;
}.contact_ussrUuw .support_request {
    flex-direction: column;
}.contact_ussrUuw .query_reach,
    .contact_ussrUuw .feedback_info {
    flex: 1 1 100%;
}.contact_ussrUuw .query_reach {
    padding: 30px;
}.contact_ussrUuw .feedback_info {
    padding: 30px;
}
}

@media (max-width: 768px) {.contact_ussrUuw {
    padding: 40px 0;
}.contact_ussrUuw h3 {
    font-size: calc(31px - 4px);
    margin-bottom: 30px;
}.contact_ussrUuw .query_reach h3,
    .contact_ussrUuw .feedback_info h4 {
    margin-bottom: 20px;
    font-size: calc(19px - 2px);
}.contact_ussrUuw .query_reach input[type="text"],
    .contact_ussrUuw .query_reach textarea {
    padding: 12px 15px;
    margin-bottom: 15px;
}.contact_ussrUuw .query_reach textarea {
    height: 100px;
}.contact_ussrUuw .query_reach .reach_list {
    font-size: calc(15px - 1px);
    padding: 12px 25px;
}.contact_ussrUuw .feedback_info .connect_query li {
    margin-bottom: 20px;
}.contact_ussrUuw .feedback_info .connect_query li svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
}

@media (max-width: 576px) {.contact_ussrUuw {
    padding: 30px 0;
}.contact_ussrUuw .query_reach,
    .contact_ussrUuw .feedback_info {
    padding: 20px;
}.contact_ussrUuw h3 {
    font-size: calc(31px - 6px);
}.contact_ussrUuw .query_reach .inquiry_info label {
    font-size: calc(15px - 3px);
}}.secure_harbor {
    color: #000000;
    padding: 50px;
    background-color: rgb(193,195,200);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}.secure_harbor h1 {
    font-size: 39px;
    font-family: Arial, sans-serif;
    color: rgb(152,159,179);
    margin: 20px 0;
    font-weight: 700;
}.secure_harbor h2 {
    font-family: Arial, sans-serif;
    margin: 15px 0;
    color: rgb(97,107,158);
    font-size: 34px;
    font-weight: 700;
}.secure_harbor h3, .secure_harbor h4, .secure_harbor h5, .secure_harbor h6 {
    color: rgb(97,107,158);
    margin: 1rem 0;
}.secure_harbor ul {
    padding: 0;
    list-style-type: none;
}.secure_harbor li {
    font-size: 17px;
    color: #000000;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}.secure_harbor li:before {
    color: rgb(152,159,179);
    width: 1em;
    margin-left: -1em;
    display: inline-block;
    content: "\2022";
}
@media only screen and (max-width: 800px) {.secure_harbor {
    padding: 30px;
}.secure_harbor h1 {
    font-size: calc(24px * 0.9);
}.secure_harbor h2 {
    font-size: calc(24px * 0.9);
}.secure_harbor li {
    font-size: calc(17px * 0.9);
}}.teaching_experience {
    position: relative;
    background: linear-gradient(135deg, rgb(193,195,200) 0%, rgb(97,107,158,0.5) 100%);
    overflow: hidden;
    padding: 5rem 2rem;
}.teaching_experience::before {
    opacity: 0.05;
    background-image: 
    linear-gradient(45deg, rgb(97,107,158,0.5) 25%, transparent 25%),
    linear-gradient(-45deg, rgb(97,107,158,0.5) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgb(97,107,158,0.5) 75%),
    linear-gradient(-45deg, transparent 75%, rgb(97,107,158,0.5) 75%);
    position: absolute;
    z-index: 1;
    background-size: 20px 20px;
    left: 0;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
}.teaching_experience .container {
    max-width: 1200px;
    position: relative;
    z-index: 2;
    perspective: 1000px;
    margin: 0 auto;
}.teaching_experience .testimonials_hub {
    border-left: 4px solid rgb(152,159,179);
    box-shadow: 
    0 10px 30px rgba(0,0,0,0.05),
    0 20px 60px rgba(0,0,0,0.08);
    padding: 2.5rem;
    display: grid;
    transform: rotateY(-5deg);
    gap: 2rem;
    grid-template-columns: 1fr;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
    overflow: hidden;
}.teaching_experience .testimonials_hub::after {
    content: "";
    left: 0;
    background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(rgb(152,159,179), 0.02) 100%
  );
    pointer-events: none;
    height: 100%;
    width: 100%;
    top: 0;
    position: absolute;
}.teaching_experience .testimonials_hub:hover {
    transform: rotateY(0deg) translateZ(10px);
    box-shadow: 
    0 15px 35px rgba(0,0,0,0.08),
    0 25px 70px rgba(0,0,0,0.12);
}.teaching_experience .testimonials_hub > div:first-child {
    animation: slide-in 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    position: relative;
    transform: translateX(-2rem);
}.teaching_experience .img_border_box {
    border-radius: 50%;
    width: 120px;
    box-shadow: 
    0 5px 15px rgba(0,0,0,0.1),
    0 0 0 5px #ffffff,
    0 0 0 8px rgb(97,107,158,0.5);
    height: 120px;
    animation: pulse 6s infinite alternate;
}.teaching_experience .testimonials_hub > div:nth-child(2) {
    opacity: 0;
    transform: translateY(1rem);
    animation: slide-up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}.teaching_experience .name {
    font-size: 22px;
    color: rgb(152,159,179);
    position: relative;
    font-weight: 700;
    display: inline-block;
    margin: 0 0 0.5rem;
}.teaching_experience .name::after {
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    position: absolute;
    width: 0;
    background: rgb(97,107,158);
    height: 2px;
    bottom: -8px;
    content: "";
}.teaching_experience .testimonials_hub:hover .name::after {
    width: 100%;
}.teaching_experience .testimonials_hub > div:nth-child(2) > div {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.85;
    position: relative;
    color: #000000;
}.teaching_experience .work_area {
    transform: translateY(1rem);
    opacity: 0;
    color: #000000;
    line-height: 1.8;
    animation: slide-up 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
    position: relative;
    font-size: 15px;
}.teaching_experience .work_area::before {
    left: -1rem;
    content: "";
    font-size: 5rem;
    color: rgb(97,107,158,0.5);
    position: absolute;
    opacity: 0.3;
    top: -2.5rem;
    pointer-events: none;
}.teaching_experience .work_area::after {
    position: absolute;
    opacity: 0.3;
    bottom: -4rem;
    content: "";
    font-size: 5rem;
    right: -1rem;
    pointer-events: none;
    color: rgb(97,107,158,0.5);
}

@keyframes slide-in {
  0% {
    transform: translateX(-2rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 
      0 5px 15px rgba(0,0,0,0.1),
      0 0 0 5px #ffffff,
      0 0 0 8px rgb(97,107,158,0.5);
  }
  50% {
    box-shadow: 
      0 8px 20px rgba(0,0,0,0.15),
      0 0 0 5px #ffffff,
      0 0 0 12px rgb(97,107,158,0.5);
  }
}

@media (min-width: 768px) {.teaching_experience {
    padding: 7rem 3rem;
}.teaching_experience .testimonials_hub {
    padding: 3rem;
    gap: 3rem;
    grid-template-columns: auto 1fr 2fr;
    align-items: center;
}.teaching_experience .img_border_box {
    height: 150px;
    width: 150px;
}.teaching_experience .name {
    margin-bottom: 0.75rem;
    font-size: calc(22px * 1.1);
}.teaching_experience .testimonials_hub > div:nth-child(2) > div {
    font-size: 1.05rem;
}.teaching_experience .work_area {
    padding-right: 2rem;
    font-size: calc(15px * 1.05);
}
}

@media (min-width: 1200px) {.teaching_experience {
    padding: 8rem 4rem;
}.teaching_experience .testimonials_hub {
    border-left-width: 6px;
    padding: 4rem;
    gap: 4rem;
}.teaching_experience .img_border_box {
    width: 180px;
    height: 180px;
}.teaching_experience .work_area {
    line-height: 1.9;
    font-size: calc(15px * 1.1);
}.teaching_experience .container::before {
    content: "";
    filter: blur(30px);
    height: 100px;
    background: linear-gradient(135deg, rgb(152,159,179,0.5) 0%, transparent 70%);
    top: -20px;
    opacity: 0.6;
    border-radius: 50%;
    right: -20px;
    position: absolute;
    z-index: -1;
    width: 100px;
}.teaching_experience .container::after {
    content: "";
    background: linear-gradient(135deg, rgb(97,107,158,0.5) 0%, transparent 70%);
    bottom: -30px;
    z-index: -1;
    height: 150px;
    opacity: 0.5;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(40px);
    left: 10%;
    width: 150px;
    position: absolute;
}}footer {
    position: relative;
    width: 100%;
}footer .tiktok_edu {
    background: linear-gradient(135deg, rgb(152,159,179), rgb(97,107,158));
    padding: 80px 0 30px;
    position: relative;
    font-family: Arial, sans-serif;
    color: #ffffff;
}footer .tiktok_edu::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 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%);
}footer .fund_cta {
    position: relative;
    z-index: 1;
}footer .quick_support {
    justify-content: center;
    display: flex;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}footer .info_item {
    background-color: rgb(152,159,179,0.5);
    padding: 20px;
    transition: all 0.4s ease;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    justify-content: center;
    flex: 0 1 220px;
    position: relative;
    display: flex;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 220px;
    z-index: 1;
    align-items: center;
}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 {
    background-color: rgb(97,107,158,0.5);
    z-index: 2;
    transform: scale(1.05) translateY(0);
}footer .info_item svg {
    width: 24px;
    flex-shrink: 0;
    fill: #ffffff;
    height: 24px;
    margin-right: 10px;
}footer .info_item p,
footer .info_item a {
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    max-width: 80%;
}footer .info_item a:hover {
    text-decoration: underline;
}footer .text_main_holder {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    position: relative;
    display: flex;
}footer .main_start, footer .top_tutor, footer .subscribe_holder {
    padding: 30px;
    overflow: hidden;
    position: relative;
    background-color: rgb(152,159,179,0.5);
    display: flex;
    backdrop-filter: blur(5px);
    align-items: center;
    border-radius: 17px;
    flex-direction: column;
    flex: 1 1 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    max-width: 400px;
}footer .main_start:hover, footer .top_tutor:hover, footer .subscribe_holder:hover {
    background-color: rgb(97,107,158,0.5);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}footer .main_start::before, footer .top_tutor::before, footer .subscribe_holder::before {
    z-index: -1;
    opacity: 0.1;
    border-radius: 50%;
    position: absolute;
    height: 150px;
    content: "";
    width: 150px;
}footer .main_start::before {
    background-color: rgb(152,159,179);
    left: -50px;
    top: -50px;
}footer .top_tutor::before {
    background-color: rgb(97,107,158);
    right: -50px;
    bottom: -50px;
}footer .subscribe_holder::before {
    bottom: -50px;
    background-color: rgb(152,159,179);
    left: -50px;
}footer .main_start svg {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    width: auto;
    height: 50px;
}footer .whatsapp_grp {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    max-width: 300px;
}footer .top_tutor h5, footer .subscribe_holder h5 {
    color: #ffffff;
    display: inline-block;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}footer .top_tutor h5::after, footer .subscribe_holder h5::after {
    transition: width 0.3s ease;
    width: 40px;
    bottom: -8px;
    left: 50%;
    background-color: #ffffff;
    content: "";
    transform: translateX(-50%);
    height: 2px;
    position: absolute;
}footer .top_tutor:hover h5::after, footer .subscribe_holder:hover h5::after {
    width: 80px;
}footer .header_master {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    max-width: 300px;
    gap: 10px;
    justify-content: center;
}footer .header_master a {
    color: #ffffff;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: rgb(152,159,179,0.5);
    text-decoration: none;
}footer .header_master a:hover {
    background-color: rgb(97,107,158,0.5);
    transform: translateY(-3px);
}footer .subscribe_holder p {
    margin-bottom: 25px;
    font-size: 14px;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}footer .input_holder {
    width: 100%;
    align-items: center;
    max-width: 300px;
    flex-direction: column;
    display: flex;
    gap: 15px;
}footer .input_holder input[type="email"] {
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 14px;
    border: none;
    width: 100%;
}footer .input_holder input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgb(152,159,179,0.5);
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .subscribe_access {
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    width: 100%;
    font-weight: 600;
    background-color: rgb(152,159,179);
    font-size: 19px;
    padding: 15px 20px;
    border: none;
}footer .subscribe_access:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgb(97,107,158);
    transform: translateY(-3px);
}footer .affiliate_cta {
    position: relative;
    text-align: center;
    margin-top: 60px;
}footer .contact_edu {
    background-color: rgb(152,159,179,0.5);
    font-size: 16px;
    border-radius: 10px;
    padding: 8px 20px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

@media (min-width: 992px) {footer .text_main_holder {
    flex-wrap: nowrap;
}
}

@media (max-width: 991px) {footer .info_item {
    height: 180px;
    flex: 0 1 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 .tiktok_edu {
    padding: 60px 0 30px;
}footer .quick_support {
    margin-bottom: 40px;
    flex-direction: column;
}footer .info_item {
    height: 100px;
    flex: 0 1 100px;
    padding: 15px;
}footer .main_start, footer .top_tutor, footer .subscribe_holder {
    padding: 25px 20px;
}footer .affiliate_cta {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .tiktok_edu {
    padding: 50px 0 20px;
}footer .info_item {
    height: 90px;
    flex: 0 1 90px;
}footer .info_item p, footer .info_item a {
    font-size: calc(14px - 1px);
}footer .top_tutor h5, footer .subscribe_holder h5 {
    font-size: calc(20px - 2px);
}footer .header_master a {
    padding: 6px 12px;
    font-size: calc(14px - 1px);
}footer .input_holder input[type="email"],
    footer .subscribe_access {
    padding: 12px 15px;
}footer .contact_edu {
    padding: 6px 15px;
}}.ty_modal {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(193,195,200) 0%, rgb(193,195,200) 60%, rgba(rgb(152,159,179,0.5), 0.05) 100%);
    perspective: 1000px;
}.ty_modal::before,
.ty_modal::after {
    pointer-events: none;
    position: absolute;
    content: '';
}.ty_modal::before {
    filter: blur(20px);
    transform: rotate(-15deg) translateZ(-10px);
    left: -10%;
    width: 40%;
    background: linear-gradient(45deg, rgb(152,159,179,0.5) 10%, transparent 70%);
    top: -5%;
    opacity: 0.03;
    height: 70%;
}.ty_modal::after {
    opacity: 0.04;
    transform: rotate(10deg) translateZ(-5px);
    filter: blur(15px);
    bottom: -10%;
    right: -5%;
    width: 30%;
    background: linear-gradient(135deg, rgb(97,107,158,0.5) 10%, transparent 70%);
    height: 60%;
}.ty_modal .container {
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1200px;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
}.ty_modal h2 {
    margin-bottom: 3rem;
    position: relative;
    color: #000000;
    max-width: 90%;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-weight: 700;
    transform: translateZ(10px);
    font-size: 30px;
}.ty_modal h2::after {
    position: absolute;
    content: '';
    height: 3px;
    background: linear-gradient(90deg, rgb(152,159,179) 0%, rgb(152,159,179,0.5) 100%);
    left: 0;
    transform: translateZ(15px) scaleX(1);
    bottom: -0.8rem;
    width: 80px;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    transform-origin: left;
}.ty_modal .guide_approach {
    position: relative;
    padding: 2.5rem 3rem;
    box-shadow: 
        0 20px 30px -15px rgba(rgba(0, 0, 0, 0.5), 0.1),
        0 10px 20px -10px rgba(rgba(0, 0, 0, 0.5), 0.07);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(145deg, #ffffff 0%, rgba(rgb(255, 255, 255, 0.5), 0.95) 100%);
    border-radius: 19px;
    margin: 1rem 0;
    transform: translateZ(20px) rotateY(-2deg);
}.ty_modal .guide_approach::before {
    right: -10px;
    transform: translateZ(5px);
    bottom: -10px;
    left: -10px;
    border-radius: 100px;
    pointer-events: none;
    border: 1px solid rgb(152,159,179,0.5);
    content: '';
    top: -10px;
    position: absolute;
    opacity: 0.1;
}.ty_modal .guide_approach:hover {
    transform: translateZ(25px) rotateY(0deg);
    box-shadow: 
        0 25px 35px -15px rgba(rgba(0, 0, 0, 0.5), 0.15),
        0 15px 25px -10px rgba(rgba(0, 0, 0, 0.5), 0.1);
}.ty_modal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}.ty_modal li {
    padding-left: 0;
    position: relative;
}.ty_modal li::before {
    left: -30px;
    opacity: 0.2;
    background: linear-gradient(135deg, rgb(152,159,179,0.5) 0%, transparent 80%);
    position: absolute;
    height: 60px;
    content: '';
    transition: all 0.4s ease-out;
    top: -20px;
    border-radius: 50%;
    transform: translateZ(15px) scale(0.95);
    width: 60px;
}.ty_modal li span {
    font-size: 15px;
    line-height: 1.7;
    display: block;
    position: relative;
    font-family: Arial, sans-serif;
    transform: translateZ(5px);
    color: #000000;
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}

@media (min-width: 992px) {.ty_modal {
    padding: 8rem 0;
}.ty_modal h2 {
    transform: translateZ(15px);
    max-width: 80%;
    font-size: calc(30px * 1.1);
}.ty_modal h2::after {
    width: 100px;
}.ty_modal .guide_approach {
    margin: 2rem 0;
    padding: 3.5rem 4rem;
}.ty_modal li span {
    font-size: calc(15px * 1.05);
    line-height: 1.8;
}.ty_modal li::before {
    width: 80px;
    height: 80px;
}
}

@media (max-width: 991px) {.ty_modal {
    padding: 5rem 0;
}.ty_modal h2 {
    max-width: 100%;
    font-size: calc(30px * 0.9);
}.ty_modal .guide_approach {
    padding: 2rem 2.5rem;
    transform: translateZ(10px) rotateY(-1deg);
}
}

@media (max-width: 767px) {.ty_modal {
    padding: 4rem 0;
}.ty_modal h2 {
    font-size: calc(30px * 0.8);
    margin-bottom: 2rem;
}.ty_modal h2::after {
    width: 60px;
    height: 2px;
}.ty_modal .guide_approach {
    padding: 1.5rem 2rem;
    transform: translateZ(5px) rotateY(0deg);
}.ty_modal li::before {
    left: -20px;
    height: 40px;
    width: 40px;
    top: -15px;
}
}

@media (max-width: 480px) {.ty_modal {
    padding: 3rem 0;
}.ty_modal .container {
    padding: 0 1.5rem;
}.ty_modal h2 {
    font-size: calc(30px * 0.7);
    margin-bottom: 1.5rem;
}.ty_modal .guide_approach {
    padding: 1.25rem 1.5rem;
    margin: 0.5rem 0;
}.ty_modal li span {
    line-height: 1.6;
    font-size: calc(15px * 0.95);
}}

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

.ty_modal .guide_approach {
    animation: floatIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}header {
    position: relative;
    background: linear-gradient(to right, rgb(152,159,179,0.5), rgb(97,107,158,0.5));
    z-index: 100;
    width: 100%;
    padding: 1.5rem 3%;
}header::before {
    right: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
    content: '';
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 0.5rem;
    border-radius: 10px;
    z-index: 0;
}header::after {
    height: 100%;
    left: 0;
    z-index: 0;
    position: absolute;
    top: 0;
    content: '';
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    width: 100%;
}header .container {
    padding: 0;
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
}header .main_tutor {
    overflow: hidden;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    border-radius: 28px;
    background: #ffffff;
    padding: 1.5rem;
    position: relative;
    display: flex;
}header .main_tutor::before {
    top: 0;
    content: '';
    position: absolute;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, rgb(152,159,179), rgb(97,107,158));
}header .main_tutor::after {
    top: 0;
    position: absolute;
    right: 0;
    width: 5px;
    background: linear-gradient(to bottom, rgb(97,107,158), rgb(152,159,179));
    height: 100%;
    content: '';
}header .top_site {
    text-decoration: none;
    justify-content: center;
    position: relative;
    padding: 0 0 1rem 0;
    display: flex;
}header .top_site::after {
    content: '';
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    bottom: 0;
    background: rgb(152,159,179,0.5);
    height: 1px;
    width: 80px;
}header .top_site svg {
    transition: all 0.3s ease;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    width: 170px;
}header .top_site:hover svg {
    transform: scale(1.03);
}header .top_tutor {
    padding-top: 1rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    display: flex;
    max-width: 90%;
}header .site_main {
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    background: rgb(193,195,200);
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 18px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
    padding: 0.7rem 1.3rem;
    border-radius: 10px;
    z-index: 1;
    position: relative;
    text-decoration: none;
}header .site_main::before {
    content: '';
    border-radius: 10px 0 0 10px;
    width: 3px;
    background: linear-gradient(to bottom, rgb(152,159,179), rgb(97,107,158));
    z-index: -1;
    position: absolute;
    height: 100%;
    top: 0;
    transition: width 0.3s ease;
    left: 0;
}header .site_main:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    color: #ffffff;
}header .site_main:hover::before {
    width: 100%;
}

@media (max-width: 991px) {header {
    padding: 1.2rem 2.5%;
}header .main_tutor {
    padding: 1.2rem;
}header .top_site {
    padding: 0 0 0.8rem 0;
}header .top_site svg {
    width: 150px;
}header .top_tutor {
    gap: 0.6rem;
    padding-top: 0.8rem;
}header .site_main {
    padding: 0.6rem 1.1rem;
}
}

@media (max-width: 767px) {header {
    padding: 1rem 2%;
}header .main_tutor {
    padding: 1rem;
}header .top_site {
    padding: 0 0 0.7rem 0;
}header .top_site svg {
    width: 130px;
}header .top_tutor {
    max-width: 95%;
    gap: 0.5rem;
    padding-top: 0.7rem;
}header .site_main {
    padding: 0.5rem 1rem;
    font-size: calc(18px - 1px);
}
}

@media (max-width: 480px) {header {
    padding: 0.8rem 1.5%;
}header .main_tutor {
    padding: 0.8rem 0.8rem 1rem;
}header .top_site {
    padding: 0 0 0.6rem 0;
}header .top_site svg {
    width: 120px;
}header .top_tutor {
    flex-wrap: nowrap;
    padding-top: 0.6rem;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.3rem;
}header .top_tutor::-webkit-scrollbar {
    height: 3px;
}header .top_tutor::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(152,159,179);
}header .site_main {
    margin-right: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}}.our_team {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
}.our_team::before {
    left: 0;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    right: 0;
    z-index: 1;
}.our_team::after {
    width: 40%;
    right: -5%;
    content: "";
    z-index: 0;
    top: -5%;
    background: rgb(152,159,179);
    transform: rotate(-15deg);
    height: 40%;
    opacity: 0.1;
    position: absolute;
    filter: blur(40px);
}.our_team .container {
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
}.our_team .text_scroll {
    padding: 50px 60px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
    position: relative;
    transform: translateY(0);
}.our_team .text_scroll::before {
    height: 100%;
    top: 0;
    left: 0;
    width: 6px;
    content: "";
    transform-origin: left center;
    background: linear-gradient(to bottom, rgb(152,159,179) 0%, rgb(97,107,158) 100%);
    transition: transform 0.5s ease;
    position: absolute;
}.our_team .text_scroll:hover {
    transform: translateY(-8px);
}.our_team .text_scroll:hover::before {
    transform: scaleY(1.05);
}.our_team h1 {
    color: #000000;
    font-size: 46px;
    font-weight: 700;
    transform: translateX(0);
    transition: transform 0.5s ease;
    margin-bottom: 40px;
    position: relative;
}.our_team h1::after {
    left: 0;
    bottom: -15px;
    transition: width 0.4s ease-out, transform 0.4s ease-out;
    background: linear-gradient(90deg, rgb(152,159,179) 0%, rgb(97,107,158) 100%);
    position: absolute;
    content: "";
    width: 80px;
    transform-origin: left center;
    height: 3px;
}.our_team .text_scroll:hover h1::after {
    width: 120px;
    transform: translateX(5px);
}.our_team ul {
    list-style: none;
    margin: 0;
    padding: 0;
}.our_team li {
    margin-bottom: 15px;
}.our_team h4 {
    font-weight: 600;
    display: inline-block;
    font-size: calc(21px + 2px);
    letter-spacing: 0.5px;
    color: rgb(152,159,179);
    margin-bottom: 20px;
    position: relative;
}.our_team h4::before {
    width: 0;
    bottom: -8px;
    content: "";
    left: 0;
    position: absolute;
    background: rgb(97,107,158);
    height: 2px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}.our_team .text_scroll:hover h4::before {
    width: 100%;
}.our_team span {
    font-family: Arial, sans-serif;
    color: #000000;
    column-gap: 40px;
    line-height: 1.8;
    column-count: 1;
    transition: opacity 0.3s ease;
    font-size: 18px;
    display: block;
    opacity: 0.9;
    position: relative;
}.our_team .text_scroll:hover span {
    opacity: 1;
}

@media (min-width: 768px) {.our_team span {
    column-count: 2;
}.our_team .text_scroll {
    margin-left: 5%;
    width: 90%;
}
}

@media (min-width: 992px) {.our_team {
    padding: 150px 0;
}.our_team .text_scroll {
    width: 80%;
    margin-left: 10%;
    padding: 60px 70px;
}.our_team span {
    column-count: 2;
}.our_team h1 {
    margin-bottom: 50px;
}
}

@media (max-width: 767px) {.our_team {
    padding: 80px 0;
}.our_team .text_scroll {
    padding: 30px 25px;
}.our_team h1 {
    font-size: calc(46px - 4px);
    margin-bottom: 30px;
}.our_team h1::after {
    width: 60px;
    bottom: -10px;
}.our_team h4 {
    font-size: 21px;
    margin-bottom: 15px;
}.our_team span {
    font-size: calc(18px - 1px);
    line-height: 1.6;
}
}

@media (max-width: 480px) {.our_team {
    padding: 60px 0;
}.our_team .text_scroll {
    padding: 25px 20px;
}.our_team h1 {
    font-size: calc(46px - 8px);
}.our_team .text_scroll::before {
    width: 4px;
}}

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

.our_team .text_scroll {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}.our_team h1 {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}.our_team h4 {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}.our_team span {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}.training_method {
    overflow: visible;
    position: relative;
    padding: 150px 0;
    background: linear-gradient(110deg, rgb(193,195,200) 0%, rgb(97,107,158,0.5) 120%);
}.training_method::before {
    background-image: radial-gradient(rgb(152,159,179,0.5) 1px, transparent 1px);
    width: 100%;
    position: absolute;
    top: 0;
    content: '';
    opacity: 0.1;
    background-size: 40px 40px;
    left: 0;
    height: 100%;
    z-index: 1;
}.training_method .guide_approach {
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    align-items: stretch;
}.training_method .text_scroll {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}.training_method .text_scroll h2 {
    z-index: 3;
    background: linear-gradient(120deg, rgb(152,159,179,0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
    align-self: flex-start;
    font-weight: 700;
    width: 50%;
    margin-bottom: 0;
    border-radius: 28px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(-50px);
    font-size: 28px;
    position: relative;
    padding: 35px 50px;
    color: #ffffff;
    backdrop-filter: blur(10px);
}.training_method .text_scroll p {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    align-self: flex-end;
    padding: 40px 50px;
    z-index: 2;
    line-height: 1.8;
    position: relative;
    transform: translateX(50px);
    width: 65%;
    color: #ffffff;
    border-radius: 28px;
    backdrop-filter: blur(15px);
    font-size: 12px;
    margin-top: -15px;
}.training_method .text_scroll h2::before {
    top: -60px;
    height: 120px;
    background: rgb(152,159,179);
    filter: blur(30px);
    opacity: 0.1;
    content: '';
    z-index: -1;
    width: 120px;
    left: -80px;
    border-radius: 50%;
    position: absolute;
}.training_method .text_scroll h2::after {
    bottom: -20px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(152,159,179);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    content: '';
    animation: float-small 8s infinite ease-in-out;
    z-index: 4;
    position: absolute;
}.training_method .text_scroll p::before {
    top: 20px;
    left: 7.5%;
    height: 1px;
    width: 85%;
    opacity: 0.6;
    background: linear-gradient(90deg, transparent, rgb(152,159,179,0.5), transparent);
    position: absolute;
    content: '';
}.training_method .text_scroll p::after {
    position: absolute;
    bottom: 20px;
    height: 1px;
    width: 70%;
    opacity: 0.6;
    left: 15%;
    content: '';
    background: linear-gradient(90deg, transparent, rgb(97,107,158,0.5), transparent);
}.training_method::after {
    width: 200px;
    bottom: -100px;
    position: absolute;
    height: 200px;
    border: 2px solid rgb(152,159,179,0.5);
    animation: rotate-slow 30s linear infinite;
    opacity: 0.2;
    content: '';
    transform: rotate(45deg);
    left: 10%;
}.training_method .guide_approach::before {
    position: absolute;
    top: -75px;
    content: '';
    opacity: 0.2;
    width: 150px;
    border-radius: 50%;
    border: 3px solid rgb(97,107,158,0.5);
    animation: pulse-ring 10s infinite ease-in-out;
    right: 15%;
    height: 150px;
}.training_method .guide_approach::after {
    border-radius: 10px;
    position: absolute;
    animation: pulse-fade 8s infinite alternate;
    width: 80px;
    height: 80px;
    opacity: 0.1;
    background: rgb(152,159,179);
    content: '';
    right: -40px;
    filter: blur(20px);
    top: 40%;
}@keyframes float-small {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotate-slow {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg);
    }
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

@keyframes pulse-fade {
    0% {
        opacity: 0.1;
        transform: scale(1) rotate(0);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 0.1;
        transform: scale(1) rotate(0);
    }
}

.training_method .text_scroll h2 span {
    display: inline-block;
    position: relative;
    z-index: 2;
}.training_method .text_scroll h2 span::after {
    content: '';
    z-index: -1;
    height: 4px;
    background: rgb(152,159,179);
    width: 100%;
    opacity: 0.3;
    position: absolute;
    left: 0;
    bottom: 2px;
}.training_method .text_scroll p strong {
    color: rgb(152,159,179);
    font-weight: 600;
}

@media screen and (max-width: 1200px) {.training_method .text_scroll h2 {
    transform: translateX(-30px);
    width: 55%;
}.training_method .text_scroll p {
    width: 70%;
    transform: translateX(30px);
}
}

@media screen and (max-width: 992px) {.training_method {
    padding: 120px 0;
}.training_method .text_scroll h2 {
    width: 60%;
    padding: 30px 40px;
    transform: translateX(-20px);
}.training_method .text_scroll p {
    width: 75%;
    transform: translateX(20px);
    padding: 35px 40px;
}.training_method .text_scroll h2::before {
    width: 100px;
    height: 100px;
    left: -60px;
    top: -50px;
}.training_method .text_scroll h2::after {
    width: 30px;
    bottom: -15px;
    height: 30px;
}.training_method::after {
    height: 150px;
    bottom: -75px;
    width: 150px;
}.training_method .guide_approach::before {
    top: -60px;
    height: 120px;
    width: 120px;
}.training_method .guide_approach::after {
    right: -30px;
    height: 60px;
    width: 60px;
}
}

@media screen and (max-width: 768px) {.training_method {
    overflow: hidden;
    padding: 100px 0;
}.training_method .text_scroll h2 {
    padding: 25px 30px;
    align-self: center;
    font-size: calc(28px * 0.9);
    margin-bottom: 20px;
    transform: none;
    width: 100%;
}.training_method .text_scroll p {
    width: 100%;
    transform: none;
    padding: 30px;
    margin-top: 0;
    align-self: center;
}.training_method .text_scroll h2::before,
    .training_method .text_scroll h2::after,
    .training_method::after,
    .training_method .guide_approach::before,
    .training_method .guide_approach::after {
    display: none;
}
}

@media screen and (max-width: 480px) {.training_method {
    padding: 80px 0;
}.training_method .text_scroll h2 {
    font-size: calc(28px * 0.8);
    padding: 20px 25px;
}.training_method .text_scroll p {
    font-size: calc(12px * 0.9);
    padding: 25px;
}}.start_now {
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(152,159,179) 0%, rgb(97,107,158) 100%);
    z-index: 1;
    overflow: hidden;
    position: relative;
}.start_now::before {
    background-size: 50px 50px;
    position: absolute;
    left: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, #ffffff 25%, #ffffff 26%, transparent 27%, transparent 74%, #ffffff 75%, #ffffff 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, #ffffff 25%, #ffffff 26%, transparent 27%, transparent 74%, #ffffff 75%, #ffffff 76%, transparent 77%, transparent);
    opacity: 0.05;
    width: 100%;
    z-index: -1;
    content: '';
    top: 0;
    height: 100%;
}.start_now::after {
    animation: pulseGlow 10s ease-in-out infinite alternate;
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    content: '';
    opacity: 0.1;
    background: 
        radial-gradient(circle at 20% 30%, #ffffff 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, #ffffff 0%, transparent 50%);
    filter: blur(60px);
    width: 100%;
}.start_now .guide_approach {
    justify-content: center;
    display: flex;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    flex-direction: column;
    overflow: hidden;
    padding: 60px 40px;
    margin: 0 auto;
    border-radius: 10px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    align-items: center;
}.start_now .guide_approach::before {
    content: '';
    box-shadow: 0 0 10px #ffffff;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffffff 50%, 
        transparent 100%);
    animation: scanLine 4s ease-in-out infinite;
    width: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    z-index: 1;
    height: 2px;
}.start_now .guide_approach::after {
    left: 0;
    top: 0;
    width: 100%;
    position: absolute;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    content: '';
    opacity: 0.3;
    height: 100%;
    z-index: -1;
}.start_now h3 {
    font-weight: 700;
    position: relative;
    font-size: 29px;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-align: center;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    color: #ffffff;
}.start_now h3::before {
    background: transparent;
    position: absolute;
    content: attr(data-text);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    color: #ffffff;
    opacity: 0.8;
    top: 0;
    animation: glitchTop 3s infinite linear alternate;
    text-shadow: 2px 0 rgb(97,107,158);
    left: 2px;
}.start_now h3::after {
    animation: glitchBottom 2.7s infinite linear alternate;
    opacity: 0.8;
    background: transparent;
    content: attr(data-text);
    color: #ffffff;
    text-shadow: -2px 0 rgb(152,159,179);
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    position: absolute;
    left: -2px;
    top: 0;
}.start_now .request_info {
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 255, 255, 0.2);
    padding: 16px 45px;
    position: relative;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    z-index: 1;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    background: #ffffff;
    font-size: 20px;
    letter-spacing: 2px;
    color: rgb(152,159,179);
    transition: all 0.4s ease;
    overflow: hidden;
    text-decoration: none;
}.start_now .request_info::before {
    width: 100%;
    left: 0;
    z-index: -1;
    content: '';
    position: absolute;
    top: 0;
    opacity: 0;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgb(152,159,179) 0%,
        rgb(97,107,158) 100%
    );
    transition: opacity 0.4s ease;
}.start_now .request_info::after {
    position: absolute;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    left: -100px;
    top: 0;
    content: '';
    height: 100%;
    transform: skewX(-20deg);
    width: 8px;
    z-index: 2;
    transition: all 0.7s ease;
}.start_now .request_info:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.4);
    color: #ffffff;
}.start_now .request_info:hover::before {
    opacity: 1;
}.start_now .request_info:hover::after {
    transition-duration: 1s;
    left: 200%;
}

@media screen and (max-width: 992px) {.start_now {
    padding: 100px 0;
}.start_now .guide_approach {
    max-width: 90%;
    padding: 50px 30px;
}.start_now h3 {
    font-size: calc(29px * 0.9);
    margin-bottom: 45px;
}.start_now .request_info {
    padding: 14px 40px;
    font-size: calc(20px * 0.95);
}
}

@media screen and (max-width: 768px) {.start_now {
    padding: 80px 0;
}.start_now .guide_approach {
    padding: 40px 25px;
}.start_now h3 {
    letter-spacing: 2px;
    font-size: calc(29px * 0.8);
    margin-bottom: 40px;
}.start_now .request_info {
    font-size: calc(20px * 0.9);
    padding: 12px 35px;
    letter-spacing: 1.5px;
}
}

@media screen and (max-width: 576px) {.start_now {
    padding: 60px 0;
}.start_now .guide_approach {
    padding: 30px 20px;
}.start_now h3 {
    letter-spacing: 1.5px;
    margin-bottom: 35px;
    font-size: calc(29px * 0.7);
}.start_now .request_info {
    letter-spacing: 1px;
    padding: 10px 30px;
    font-size: calc(20px * 0.85);
}}

@keyframes pulseGlow {
    0% {
        opacity: 0.05;
        filter: blur(60px);
    }
    50% {
        opacity: 0.1;
        filter: blur(80px);
    }
    100% {
        opacity: 0.05;
        filter: blur(60px);
    }
}

@keyframes scanLine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

@keyframes glitchTop {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(0);
    }
    10% {
        clip-path: polygon(0 15%, 100% 15%, 100% 40%, 0 40%);
        transform: translate(-5px, 2px);
    }
    20% {
        clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%);
        transform: translate(5px, -2px);
    }
    30% {
        clip-path: polygon(0 5%, 100% 5%, 100% 25%, 0 25%);
        transform: translate(-3px, 1px);
    }
    40% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(0);
    }
    100% {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
        transform: translate(0);
    }
}

@keyframes glitchBottom {
    0% {
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
        transform: translate(0);
    }
    10% {
        clip-path: polygon(0 60%, 100% 60%, 100% 95%, 0 95%);
        transform: translate(5px, 2px);
    }
    20% {
        clip-path: polygon(0 65%, 100% 65%, 100% 90%, 0 90%);
        transform: translate(-5px, -2px);
    }
    30% {
        clip-path: polygon(0 70%, 100% 70%, 100% 85%, 0 85%);
        transform: translate(3px, 1px);
    }
    40% {
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
        transform: translate(0);
    }
    100% {
        clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
        transform: translate(0);
    }
}.homepage {
    display: flex;
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(152,159,179,0.5), rgb(193,195,200));
    justify-content: center;
}.homepage::before {
    top: 0;
    z-index: 1;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(45deg, transparent 30%, rgb(97,107,158,0.5) 100%);
    left: 0;
}.homepage::after {
    top: -10%;
    right: -10%;
    width: 45%;
    position: absolute;
    opacity: 0.15;
    height: 45%;
    background: rgb(152,159,179);
    animation: float 15s infinite ease-in-out alternate;
    transform: rotate(15deg);
    content: "";
    z-index: 1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}.homepage .course_begin {
    position: relative;
    display: grid;
    width: 90%;
    max-width: 1200px;
    gap: 2rem;
    z-index: 2;
    grid-template-columns: 1fr;
}.homepage .course_begin > div:first-child {
    transform: translateX(-30px);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    opacity: 0;
    border-left: 4px solid rgb(152,159,179);
    backdrop-filter: blur(10px);
    animation: slideInLeft 0.8s 0.2s forwards ease-out;
}.homepage .course_begin > div:first-child::before {
    width: 70px;
    height: 4px;
    background: rgb(152,159,179);
    content: "";
    bottom: -8px;
    position: absolute;
    left: -4px;
}.homepage .course_begin > div:first-child p {
    color: #000000;
    line-height: 1.5;
    font-size: calc(12px * 1.1);
    font-family: Arial, sans-serif;
    letter-spacing: 0.02em;
    font-weight: 600;
    margin: 0;
}.homepage .skill_track {
    animation: slideInUp 0.8s 0.4s forwards ease-out;
    transform: translateY(30px);
    opacity: 0;
    position: relative;
}.homepage .skill_track > div {
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}.homepage .skill_track > div::before {
    width: 100%;
    z-index: 1;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: linear-gradient(to bottom, rgba(#000000, 0.5), rgba(rgb(152,159,179), 0.7));
    content: "";
}.homepage .skill_track h3 {
    z-index: 2;
    margin-bottom: 2rem;
    line-height: 1.4;
    position: relative;
    font-weight: 400;
    color: #ffffff;
    font-size: calc(22px * 1.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}.homepage .skill_track > div > div {
    z-index: 2;
    backdrop-filter: blur(8px);
    position: relative;
    border-left: 3px solid rgb(97,107,158);
    padding: 2rem;
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease;
}.homepage .skill_track > div > div:hover {
    transform: translateX(10px);
}.homepage .title_style_header {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    transform: translateY(0);
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
    font-size: calc(47px * 1.2);
    letter-spacing: -0.01em;
}.homepage .skill_track > div > div:hover .title_style_header {
    transform: translateY(-5px);
}

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

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

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

@media (min-width: 768px) {.homepage {
    padding: 4rem;
}.homepage .course_begin {
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}.homepage .course_begin > div:first-child {
    padding: 2rem;
    align-items: center;
    display: flex;
}.homepage .course_begin > div:first-child p {
    font-size: calc(12px * 1.2);
}.homepage .skill_track > div {
    padding: 3rem;
}.homepage .skill_track h3 {
    font-size: calc(22px * 1.1);
    margin-bottom: 2.5rem;
}.homepage .title_style_header {
    font-size: calc(47px * 1.3);
}
}

@media (min-width: 1200px) {.homepage .course_begin {
    grid-template-columns: 1fr 2.5fr;
}.homepage .course_begin > div:first-child {
    animation: slideInLeft 1s 0.3s forwards ease-out;
    transform: translateX(-50px);
    opacity: 0;
}.homepage .skill_track {
    transform: translateY(50px);
    animation: slideInUp 1s 0.5s forwards ease-out;
}.homepage .skill_track > div {
    padding: 4rem;
}.homepage .skill_track > div > div {
    padding: 2.5rem;
}.homepage .title_style_header {
    font-size: calc(47px * 1.5);
}
}

@media (max-width: 767px) {.homepage {
    padding: 2rem 1rem;
}.homepage .course_begin > div:first-child {
    padding: 1rem;
}.homepage .skill_track > div {
    padding: 1.5rem;
}.homepage .skill_track h3 {
    font-size: 22px;
    margin-bottom: 1.5rem;
}.homepage .skill_track > div > div {
    padding: 1.5rem;
}.homepage .title_style_header {
    font-size: 38px;
}}.course_program_info {
    overflow: hidden;
    position: relative;
    background-color: rgb(193,195,200);
    padding: 120px 0;
}.course_program_info::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0,
                linear-gradient(225deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0,
                linear-gradient(315deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0,
                linear-gradient(45deg, rgba(0, 0, 0, 0.03) 25%, transparent 25%) 0 0;
    width: 100%;
    left: 0;
    z-index: 1;
    height: 100%;
    content: "";
    top: 0;
    background-size: 60px 60px;
    position: absolute;
}.course_program_info::after {
    position: absolute;
    background: radial-gradient(circle at center, rgb(152,159,179,0.5) 0%, transparent 70%);
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0.15;
    content: "";
    z-index: 2;
    width: 100%;
}.course_program_info .training_path {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}.course_program_info .text_scroll {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    position: relative;
    transform: translateZ(0);
    width: 100%;
    border-radius: 17px;
    padding: 40px;
    z-index: 4;
}.course_program_info .text_scroll::before {
    border-radius: 17px;
    width: 100%;
    border: 1px solid transparent;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    opacity: 0.3;
    z-index: -1;
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    background: linear-gradient(135deg, rgb(152,159,179,0.5), transparent 70%, rgb(97,107,158,0.5)) border-box;
}.course_program_info .text_scroll h2 {
    position: relative;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
    padding-bottom: 20px;
    text-align: center;
    font-size: 35px;
}.course_program_info .text_scroll h2::after {
    bottom: 0;
    border-radius: 10px;
    width: 60px;
    content: "";
    left: 50%;
    height: 3px;
    background: linear-gradient(90deg, rgb(152,159,179), rgb(97,107,158));
    position: absolute;
    transform: translateX(-50%);
}.course_program_info .text_scroll .description {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
    color: #000000;
    text-align: center;
}.course_program_info .text_scroll .description:last-child {
    margin-bottom: 0;
}.course_program_info .img_border_box {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-radius: 17px;
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 500px;
    margin-top: 60px;
}.course_program_info .img_border_box::before {
    position: absolute;
    height: 100%;
    left: 0;
    z-index: 1;
    top: 0;
    width: 100%;
    opacity: 0.3;
    content: "";
    background: linear-gradient(135deg, rgb(152,159,179,0.5) 0%, transparent 50%);
}.course_program_info .img_border_box::after {
    background: linear-gradient(45deg, transparent 50%, rgb(97,107,158,0.5) 100%);
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.3;
    height: 100%;
    content: "";
    z-index: 2;
    position: absolute;
}.course_program_info .training_path::before,
.course_program_info .training_path::after {
    position: absolute;
    width: 200px;
    top: 50%;
    content: "";
    opacity: 0.5;
    z-index: 1;
    height: 1px;
    background-color: rgb(152,159,179,0.5);
}.course_program_info .training_path::before {
    left: -100px;
    transform: rotate(45deg);
}.course_program_info .training_path::after {
    transform: rotate(-45deg);
    right: -100px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 992px) {.course_program_info .training_path {
    grid-gap: 30px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    display: grid;
}.course_program_info .text_scroll {
    grid-column: 1 / 3;
    max-width: 100%;
    grid-row: 1;
    margin-bottom: 60px;
}.course_program_info .text_scroll .description:first-of-type {
    padding-right: 30px;
    text-align: right;
    grid-column: 1;
    grid-row: 2;
}.course_program_info .text_scroll .description:last-child {
    grid-row: 2;
    grid-column: 2;
    padding-left: 30px;
    text-align: left;
}.course_program_info .img_border_box {
    grid-row: 3;
    max-width: 100%;
    margin-top: 60px;
    height: 500px;
    grid-column: 1 / 3;
}.course_program_info .training_path {
    position: relative;
}.course_program_info .training_path::after {
    content: "";
    left: 50%;
    height: 100%;
    width: 1px;
    top: 0;
    position: absolute;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, rgb(152,159,179,0.5) 30%, rgb(152,159,179,0.5) 70%, transparent);
    transform: translateX(-50%);
}
}

@media (min-width: 1200px) {.course_program_info .training_path {
    display: flex;
    align-items: center;
    flex-direction: column;
}.course_program_info .text_scroll {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
    display: flex;
}.course_program_info .text_scroll h2 {
    width: 100%;
}.course_program_info .text_scroll .description {
    text-align: left;
    padding: 0 15px;
    width: calc(50% - 30px);
    position: relative;
}.course_program_info .text_scroll .description:first-of-type::after {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgb(152,159,179,0.5), transparent);
    width: 1px;
}.course_program_info .img_border_box {
    max-width: 80%;
    height: 450px;
    border-radius: calc(17px * 2);
    margin-top: 60px;
}.course_program_info .training_path::after {
    display: none;
}
}

@media (max-width: 991px) {.course_program_info {
    padding: 80px 0;
}.course_program_info .text_scroll {
    padding: 30px;
}.course_program_info .text_scroll h2 {
    font-size: calc(35px * 0.9);
}.course_program_info .img_border_box {
    height: 400px;
    margin-top: 40px;
}.course_program_info .training_path::before,
    .course_program_info .training_path::after {
    width: 150px;
}
}

@media (max-width: 768px) {.course_program_info {
    padding: 60px 0;
}.course_program_info .text_scroll {
    padding: 25px 20px;
}.course_program_info .text_scroll h2 {
    font-size: calc(35px * 0.85);
    padding-bottom: 15px;
    margin-bottom: 25px;
}.course_program_info .text_scroll h2::after {
    height: 2px;
    width: 50px;
}.course_program_info .text_scroll .description {
    font-size: calc(18px * 0.95);
}.course_program_info .img_border_box {
    height: 350px;
    margin-top: 30px;
}.course_program_info .training_path::before,
    .course_program_info .training_path::after {
    display: none;
}
}

@media (max-width: 576px) {.course_program_info {
    padding: 50px 0;
}.course_program_info .text_scroll {
    padding: 20px 15px;
}.course_program_info .text_scroll h2 {
    padding-bottom: 12px;
    font-size: calc(35px * 0.8);
    margin-bottom: 20px;
}.course_program_info .text_scroll h2::after {
    width: 40px;
}.course_program_info .text_scroll .description {
    line-height: 1.7;
    font-size: calc(18px * 0.9);
}.course_program_info .img_border_box {
    margin-top: 25px;
    height: 250px;
}}.pricing_feature {
    padding: 7rem 0;
    background: linear-gradient(135deg, rgb(193,195,200) 0%, rgba(245, 247, 250, 0.95) 100%);
    position: relative;
    overflow: hidden;
}.pricing_feature::before {
    top: -10%;
    content: "";
    right: -5%;
    width: 40%;
    opacity: 0.1;
    height: 70%;
    background: linear-gradient(120deg, rgb(152,159,179,0.5) 20%, rgb(97,107,158,0.5) 80%);
    border-radius: 10px;
    position: absolute;
    z-index: 0;
    transform: rotate(-15deg);
}.pricing_feature::after {
    content: "";
    border-radius: 10px;
    left: -3%;
    width: 35%;
    position: absolute;
    opacity: 0.08;
    height: 50%;
    transform: rotate(10deg);
    z-index: 0;
    bottom: -5%;
    background: linear-gradient(45deg, rgb(97,107,158,0.5) 30%, rgb(152,159,179,0.5) 70%);
}.pricing_feature .container {
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    max-width: 1400px;
}.pricing_feature .price_tiers {
    flex-direction: column;
    display: flex;
}.pricing_feature .learn_fees0MR {
    order: 1;
    margin-bottom: 3.5rem;
    position: relative;
    text-align: center;
}.pricing_feature .learn_fees0MR h2 {
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 29px;
    color: #000000;
    font-weight: 700;
    display: inline-block;
}.pricing_feature .learn_fees0MR h2::after {
    content: "";
    transform: translateX(-50%);
    width: 70%;
    left: 50%;
    bottom: -0.75rem;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(152,159,179), transparent);
    height: 3px;
}.pricing_feature .learn_feesO38 {
    color: #000000;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    font-size: 14px;
}.pricing_feature .qtr_cost {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    order: 2;
    width: 100%;
}.pricing_feature .cost_options {
    background: #ffffff;
    display: block;
    overflow: hidden;
    color: #000000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    position: relative;
    height: 100%;
}.pricing_feature .cost_options:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}.pricing_feature .cost_options::before {
    transform: translateY(-5px);
    top: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(152,159,179), rgb(97,107,158));
    left: 0;
    content: "";
    width: 100%;
    transition: transform 0.3s ease;
    height: 5px;
}.pricing_feature .cost_options:hover::before {
    transform: translateY(0);
}.pricing_feature .value_pricing {
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    display: flex;
}.pricing_feature .price_plan {
    position: relative;
    flex: 1;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
}.pricing_feature .price_plan h3 {
    color: #000000;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    font-size: calc(22px * 1.1);
}.pricing_feature .price_plan .price_view {
    font-size: calc(22px * 1.3);
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
    color: rgb(152,159,179);
}.pricing_feature .price_plan .price_view::after {
    height: 2px;
    background: rgb(152,159,179,0.5);
    position: absolute;
    content: "";
    width: 40px;
    left: 0;
    bottom: -0.75rem;
}.pricing_feature .price_plan p {
    overflow-wrap: break-word;
    word-break: break-word;
    color: #000000;
    line-height: 1.65;
    font-size: 14px;
    word-wrap: break-word;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}.pricing_feature .img_border_box {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: transform 0.5s ease;
    height: 180px;
}.pricing_feature .img_border_box::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}.pricing_feature .cost_options:hover .img_border_box {
    transform: scale(1.05);
}.pricing_feature .cost_options:nth-child(odd) .price_plan::before {
    width: 2.5rem;
    background: rgb(152,159,179,0.5);
    border-radius: 50%;
    content: "";
    z-index: -1;
    position: absolute;
    top: 1rem;
    height: 2.5rem;
    right: 1rem;
    opacity: 0.1;
}.pricing_feature .cost_options:nth-child(even) .price_plan::before {
    background: rgb(97,107,158,0.5);
    opacity: 0.1;
    position: absolute;
    border-radius: 50%;
    bottom: 1rem;
    height: 2.5rem;
    width: 2.5rem;
    content: "";
    z-index: -1;
    left: 1rem;
}

@media (min-width: 992px) {.pricing_feature .price_tiers {
    flex-direction: row;
}.pricing_feature .learn_fees0MR {
    flex: 0 0 30%;
    order: 2;
    text-align: left;
    justify-content: center;
    display: flex;
    padding-left: 3rem;
    flex-direction: column;
    margin-bottom: 0;
}.pricing_feature .learn_fees0MR h2 {
    text-align: left;
    margin-bottom: 2rem;
}.pricing_feature .learn_fees0MR h2::after {
    width: 40%;
    transform: none;
    left: 0;
}.pricing_feature .learn_feesO38 {
    margin: 0;
    text-align: left;
}.pricing_feature .qtr_cost {
    flex: 0 0 70%;
    order: 1;
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 991px) {.pricing_feature {
    padding: 5rem 0;
}.pricing_feature .cost_options {
    margin-bottom: 1.5rem;
}.pricing_feature .learn_fees0MR {
    padding: 0 1rem;
}
}

@media (max-width: 767px) {.pricing_feature {
    padding: 4rem 0;
}.pricing_feature .learn_fees0MR h2 {
    font-size: calc(29px * 0.9);
}.pricing_feature .price_plan h3 {
    font-size: 22px;
}.pricing_feature .price_plan .price_view {
    font-size: calc(22px * 1.15);
}.pricing_feature .img_border_box {
    height: 160px;
}
}

@media (max-width: 575px) {.pricing_feature {
    padding: 3rem 0;
}.pricing_feature .container {
    padding: 0 1.5rem;
}.pricing_feature .qtr_cost {
    gap: 1.5rem;
}.pricing_feature .price_plan {
    padding: 1.5rem;
}.pricing_feature .img_border_box {
    height: 140px;
}
}

@media (hover: none) {.pricing_feature .cost_options:hover {
    transform: none;
}.pricing_feature .cost_options:hover .img_border_box {
    transform: none;
}
}