* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}html,body {
    height: 100%;
    auto
contain
touch-action: none;
    color: #000000;
    min-height: 100%;
    font-family: Arial, sans-serif;
}.story_spot {
    flex: 0 0 auto;
}.container {
    width: 1241px;
    max-width: 100%;
    margin: auto;
}.layer-container {
    height: 100%;
    display: flex;
    min-height: 100%;
    flex-direction: column;
}a {
    text-decoration: none;
    color: inherit;
}svg {
    height: 30px;
    width: 30px;
}header,footer {
    width: 100%;
}.nav_study {
    flex: 1 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.title_page {
    height: 100vh;
    background: linear-gradient(45deg, #000000 0%, rgb(113,113,183,0.5) 100%);
    overflow: hidden;
    min-height: 600px;
    width: 100%;
    position: relative;
}.title_page .learn_learnings {
    grid-template-rows: 1fr;
    height: 100%;
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    display: grid;
}.title_page .intro_head {
    position: absolute;
    z-index: 1;
    width: 60%;
    top: 0;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    height: 100%;
    right: 0;
}.title_page .intro_head::before {
    top: 0;
    z-index: 2;
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
    background: linear-gradient(
        to left,
        transparent 30%,
        rgba(0, 0, 0, 0.5) 100%
    );
    content: '';
}.title_page .learn_techfast {
    display: flex;
    height: 100%;
    animation: staggered-carousel 25s ease-in-out infinite;
    width: 500%;
}.title_page .start_primary {
    width: 20%;
    height: 100%;
    overflow: hidden;
    position: relative;
}.title_page .start_primary::before {
    position: absolute;
    z-index: 2;
    mix-blend-mode: color;
    content: '';
    background: rgb(175,156,206,0.5);
    opacity: 0.3;
    inset: 0;
}.title_page .start_primary::after {
    z-index: 2;
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 2px,
        rgb(175,156,206,0.5) 2px,
        rgb(175,156,206,0.5) 4px
    );
}.title_page .start_primary img {
    filter: brightness(0.9) contrast(1.1);
    object-fit: cover;
    width: 100%;
    transform: scale(1);
    height: 100%;
    transition: transform 1s ease;
}.title_page .start_primary:hover img {
    transform: scale(1.05);
}.title_page .text_pod {
    grid-column: 1;
    z-index: 10;
    padding: 0;
    align-self: center;
    max-width: 500px;
    width: 80%;
    justify-self: center;
    position: relative;
}.title_page .text_pod::before {
    border-left: 4px solid rgb(175,156,206);
    height: 70px;
    top: -20px;
    border-top: 4px solid rgb(175,156,206);
    left: -20px;
    position: absolute;
    content: '';
    width: 70px;
    opacity: 0.8;
}.title_page .text_pod::after {
    opacity: 0.8;
    content: '';
    right: -20px;
    border-bottom: 4px solid rgb(175,156,206);
    border-right: 4px solid rgb(175,156,206);
    position: absolute;
    bottom: -20px;
    height: 70px;
    width: 70px;
}.title_page .text_pod h1 {
    font-size: 45px;
    padding-bottom: 15px;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
    color: #ffffff;
    overflow: hidden;
    margin-bottom: 1.5rem;
}.title_page .text_pod h1::after {
    width: 80px;
    animation: heading-line 3s ease infinite;
    position: absolute;
    content: '';
    background: rgb(175,156,206);
    left: 0;
    height: 4px;
    bottom: 0;
}.title_page .text_pod p {
    opacity: 0.9;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
}.title_page .text_pod .support_block {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    border: none;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(
        to right,
        rgb(175,156,206) 0%,
        rgb(113,113,183) 100%
    );
    transition: all 0.3s ease;
    z-index: 1;
    font-weight: 600;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding: 14px 35px;
}.title_page .text_pod .support_block::before {
    content: '';
    transition: opacity 0.3s ease;
    opacity: 0;
    top: 0;
    height: 100%;
    left: 0;
    width: 100%;
    position: absolute;
    z-index: -1;
    background: linear-gradient(
        to right,
        rgb(113,113,183) 0%,
        rgb(175,156,206) 100%
    );
}.title_page .text_pod .support_block:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}.title_page .text_pod .support_block:hover::before {
    opacity: 1;
}

@keyframes staggered-carousel {
    0%, 16% {
        transform: translateX(0);
    }
    20%, 36% {
        transform: translateX(-20%);
    }
    40%, 56% {
        transform: translateX(-40%);
    }
    60%, 76% {
        transform: translateX(-60%);
    }
    80%, 96% {
        transform: translateX(-80%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes heading-line {
    0%, 100% {
        width: 80px;
    }
    50% {
        width: 120px;
    }
}

@media (max-width: 1200px) {.title_page .intro_head {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    width: 65%;
}.title_page .text_pod {
    width: 85%;
    max-width: 450px;
}
}

@media (max-width: 992px) {.title_page .learn_learnings {
    grid-template-rows: auto 1fr;
    grid-template-columns: 1fr;
}.title_page .intro_head {
    clip-path: none;
    height: 100%;
    position: absolute;
    width: 100%;
}.title_page .intro_head::before {
    background: linear-gradient(
            to bottom,
            #000000 0%,
            transparent 30%,
            transparent 70%,
            #000000 100%
        );
}.title_page .text_pod {
    max-width: 550px;
    background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 100%
        );
    padding: 2.5rem;
    border-radius: 15px;
    width: 90%;
    backdrop-filter: blur(8px);
    grid-column: 1;
    margin: 0 auto;
}
}

@media (max-width: 768px) {.title_page {
    min-height: 500px;
}.title_page .text_pod {
    padding: 2rem;
}.title_page .text_pod h1 {
    font-size: calc(45px * 0.9);
}.title_page .text_pod p {
    font-size: calc(16px * 0.95);
}.title_page .text_pod::before,
    .title_page .text_pod::after {
    height: 50px;
    width: 50px;
}
}

@media (max-width: 576px) {.title_page {
    min-height: 450px;
}.title_page .text_pod {
    padding: 1.5rem;
}.title_page .text_pod h1 {
    font-size: calc(45px * 0.8);
}.title_page .text_pod p {
    font-size: calc(16px * 0.9);
    margin-bottom: 2rem;
}.title_page .text_pod .support_block {
    padding: 12px 25px;
    width: 100%;
    text-align: center;
}.title_page .text_pod::before,
    .title_page .text_pod::after {
    top: -10px;
    height: 40px;
    left: -10px;
    width: 40px;
}.title_page .text_pod::after {
    bottom: -10px;
    right: -10px;
}
}

@media (orientation: landscape) and (max-height: 600px) {.title_page {
    height: auto;
    min-height: 450px;
}.title_page .learn_learnings {
    min-height: 450px;
}.title_page .text_pod {
    padding: 1.5rem;
}.title_page .text_pod h1 {
    margin-bottom: 1rem;
}.title_page .text_pod p {
    margin-bottom: 1.5rem;
}}footer {
    width: 100%;
    position: relative;
}footer .story_spot {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #000000 0%, rgb(175,156,206) 100%);
    padding: 80px 0 30px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}footer .story_spot::before {
    height: 100%;
    position: absolute;
    width: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 10px,
        transparent 10px,
        transparent 20px
    );
    top: 0;
    opacity: 0.05;
    left: 0;
    content: '';
    z-index: -1;
}footer .story_spot::after {
    background: linear-gradient(90deg, 
        rgb(175,156,206) 0%, 
        rgb(113,113,183) 50%, 
        rgb(175,156,206) 100%);
    left: 0;
    animation: glowBorder 3s infinite linear;
    top: 0;
    position: absolute;
    width: 100%;
    height: 3px;
    content: '';
}@keyframes glowBorder {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.3;
    }
}

footer .story_spot .container {
    position: relative;
    z-index: 2;
}footer .footer_address {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}footer .write_experts {
    margin-bottom: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 30px;
    gap: 30px;
    position: relative;
    display: flex;
}footer .write_experts::after {
    width: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(113,113,183,0.5) 50%, 
        transparent 100%);
    content: '';
    height: 1px;
    bottom: 0;
    position: absolute;
    left: 0;
}footer .info_item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(0);
    margin-bottom: 15px;
    min-width: 200px;
    border-radius: 10px;
    padding: 15px;
    flex: 1;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}footer .info_item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}footer .info_item p,
footer .info_item a {
    font-size: 16px;
    color: #ffffff;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
    display: flex;
    font-weight: 400;
}footer .info_item svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    fill: rgb(113,113,183);
    height: 20px;
    width: 20px;
}footer .info_item:hover svg {
    transform: scale(1.2);
}footer .info_item:hover a,
footer .info_item:hover p {
    color: rgb(113,113,183);
}footer .text_main_holder {
    display: grid;
    gap: 40px;
    margin-bottom: 40px;
    grid-template-columns: 1fr 1fr 1fr;
}footer .main_lead {
    flex-direction: column;
    gap: 20px;
    display: flex;
    align-items: flex-start;
}footer .main_lead svg {
    filter: drop-shadow(0 0 5px rgb(175,156,206,0.5));
    max-width: 160px;
    height: auto;
}footer .data_viz {
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.7;
    font-size: 14px;
    max-width: 300px;
    color: #ffffff;
}footer .header_sitebar {
    flex-direction: column;
    gap: 20px;
    display: flex;
}footer .header_sitebar h5 {
    padding-bottom: 15px;
    margin-bottom: 5px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    font-size: 23px;
}footer .header_sitebar h5::after {
    bottom: 0;
    border-radius: 10px;
    content: '';
    position: absolute;
    height: 3px;
    background: rgb(113,113,183);
    width: 50px;
    left: 0;
}footer .main_train {
    margin-bottom: 20px;
    gap: 15px;
    display: flex;
    flex-direction: column;
}footer .main_train a {
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    color: #ffffff;
    position: relative;
    font-size: 16px;
    padding-left: 15px;
}footer .main_train a::before {
    opacity: 0.7;
    transform: translateY(-50%);
    width: 6px;
    top: 50%;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    height: 6px;
    content: '';
    border-radius: 50%;
    background: rgb(113,113,183);
}footer .main_train a:hover {
    color: rgb(113,113,183);
    opacity: 1;
    transform: translateX(5px);
}footer .main_train a:hover::before {
    opacity: 1;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 10px rgb(113,113,183);
}footer .subscribe_holder {
    border-radius: 17px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    gap: 15px;
    transform: perspective(1000px) rotateY(-5deg);
    background: rgba(0, 0, 0, 0.2);
    flex-direction: column;
    padding: 25px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}footer .subscribe_holder:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(0deg);
}footer .subscribe_holder h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 23px;
}footer .subscribe_holder p {
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ffffff;
}footer .input_holder {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}footer .input_holder input[type="email"] {
    transition: all 0.3s ease;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    font-size: 16px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.2);
    outline: none;
    color: #ffffff;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}footer .input_holder input[type="email"]:focus {
    border-color: rgb(113,113,183);
    box-shadow: 0 0 15px rgb(113,113,183,0.5);
}footer .sub_set {
    background: linear-gradient(45deg, rgb(113,113,183) 0%, rgb(175,156,206) 100%);
    text-transform: uppercase;
    color: #ffffff;
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 12px 24px;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    border: none;
    position: relative;
}footer .sub_set::before {
    width: 100%;
    left: -100%;
    transition: 0.6s;
    content: '';
    position: absolute;
    top: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    height: 100%;
}footer .sub_set:hover::before {
    left: 100%;
}footer .sub_set:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}footer .alumni_net {
    padding-top: 30px;
    position: relative;
    text-align: center;
}footer .alumni_net::before {
    position: absolute;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(113,113,183,0.5) 50%, 
        transparent 100%);
    width: 100%;
    left: 0;
    top: 0;
}footer .leaderboard {
    font-weight: 300;
    color: #ffffff;
    opacity: 0.7;
    font-size: 13px;
}

@media (max-width: 992px) {footer .story_spot {
    padding: 60px 0 30px;
}footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
}footer .subscribe_holder {
    transform: perspective(1000px) rotateY(0deg);
    grid-column: span 2;
}footer .write_experts {
    gap: 20px;
}footer .info_item {
    min-width: 180px;
}
}

@media (max-width: 768px) {footer .story_spot {
    padding: 50px 0 30px;
}footer .text_main_holder {
    grid-template-columns: 1fr;
    gap: 40px;
}footer .subscribe_holder {
    grid-column: span 1;
}footer .header_sitebar {
    gap: 15px;
}footer .write_experts {
    gap: 15px;
    flex-direction: column;
}footer .info_item {
    width: 100%;
    margin-bottom: 0;
}footer .input_holder {
    flex-direction: column;
}footer .sub_set {
    width: 100%;
}
}

@media (max-width: 576px) {footer .story_spot {
    padding: 40px 0 30px;
}footer .main_lead {
    margin: 0 auto;
    text-align: center;
    align-items: center;
}footer .data_viz {
    text-align: center;
    margin: 0 auto;
}footer .header_sitebar h5 {
    text-align: center;
}footer .header_sitebar h5::after {
    transform: translateX(-50%);
    left: 50%;
}footer .main_train {
    align-items: center;
}footer .main_train a {
    text-align: center;
}footer .subscribe_holder {
    text-align: center;
    padding: 20px;
}footer .subscribe_holder h5,
    footer .subscribe_holder p {
    text-align: center;
}}.thxNote {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(216,210,228) 0%, rgba(rgb(175,156,206,0.5), 0.05) 100%);
}.thxNote::before {
    position: absolute;
    width: 40%;
    content: "";
    height: 40%;
    top: -5%;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 85%);
    left: -5%;
    opacity: 0.07;
    transform: rotate(-15deg) translateZ(0);
    background: linear-gradient(225deg, rgb(175,156,206) 0%, transparent 70%);
    z-index: 1;
}.thxNote::after {
    background: linear-gradient(45deg, transparent 40%, rgb(113,113,183) 100%);
    bottom: -5%;
    width: 50%;
    content: "";
    right: -5%;
    clip-path: polygon(20% 0, 100% 15%, 100% 100%, 0 100%);
    transform: rotate(15deg) translateZ(0);
    height: 50%;
    position: absolute;
    opacity: 0.07;
    z-index: 1;
}.thxNote .container {
    padding: 0 15px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
}.thxNote .learn_learnings {
    position: relative;
    transform: perspective(1000px) rotateX(2deg);
    display: flex;
    background: #ffffff;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(rgba(0, 0, 0, 0.5), 0.1), 
                0 2px 10px rgba(rgb(175,156,206,0.5), 0.05),
                0 30px 60px -10px rgba(rgb(113,113,183,0.5), 0.12);
    transform-origin: center top;
    padding: 3.5rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), 
                box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}.thxNote .learn_learnings:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 15px 50px rgba(rgba(0, 0, 0, 0.5), 0.15), 
                0 5px 20px rgba(rgb(175,156,206,0.5), 0.1),
                0 40px 80px -15px rgba(rgb(113,113,183,0.5), 0.18);
}.thxNote .learn_learnings > div:first-child {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}.thxNote .learn_learnings > div:first-child::after {
    width: 20%;
    height: 3px;
    content: "";
    transform-origin: left center;
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    bottom: 0;
    left: 0;
    transform: scaleX(1) translateZ(0);
    background: linear-gradient(90deg, rgb(175,156,206), rgb(113,113,183));
}.thxNote .learn_learnings:hover > div:first-child::after {
    transform: scaleX(2) translateZ(0);
}.thxNote h5 {
    transform: translateZ(0);
    line-height: 1.4;
    color: #000000;
    font-weight: 700;
    margin: 0;
    transition: transform 0.4s ease-out;
    font-size: 18px;
}.thxNote .learn_learnings:hover h5 {
    transform: translateY(-3px) translateZ(0);
}.thxNote a {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
    overflow: hidden;
    text-decoration: none;
    position: relative;
}.thxNote a:hover {
    transform: translateY(-5px);
}.thxNote a::before {
    z-index: 1;
    content: "";
    opacity: 0.1;
    right: -10px;
    transform-origin: center;
    background: linear-gradient(135deg, transparent 45%, rgb(175,156,206) 55%);
    position: absolute;
    width: 50px;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 50px;
    top: -10px;
    transform: rotate(45deg) scale(0);
}.thxNote a:hover::before {
    transform: rotate(45deg) scale(1);
}.thxNote p {
    font-weight: 400;
    background: linear-gradient(to right, rgba(rgb(113,113,183,0.5), 0.03), rgba(rgb(175,156,206,0.5), 0.03));
    padding: 1.5rem;
    margin: 0;
    line-height: 1.7;
    font-size: 18px;
    border-left: 2px solid rgba(rgb(175,156,206,0.5), 0.2);
    color: #000000;
    transition: all 0.4s ease;
    position: relative;
}.thxNote a:hover p {
    background: linear-gradient(to right, rgba(rgb(113,113,183,0.5), 0.07), rgba(rgb(175,156,206,0.5), 0.07));
    border-left: 2px solid rgb(175,156,206);
}

@media (min-width: 768px) {.thxNote .learn_learnings {
    padding: 4rem 5rem;
}.thxNote h5 {
    font-size: calc(18px * 1.2);
}.thxNote p {
    font-size: calc(18px * 1.05);
    padding: 2rem;
}
}

@media (min-width: 992px) {.thxNote {
    padding: 8rem 0;
}.thxNote .learn_learnings {
    padding: 5rem 6rem;
    margin: 0 auto;
    max-width: 90%;
}.thxNote .learn_learnings > div:first-child {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}.thxNote .learn_learnings > div:first-child::after {
    width: 15%;
}
}

@media (max-width: 767px) {.thxNote {
    padding: 3rem 0;
}.thxNote .learn_learnings {
    transform: perspective(1000px) rotateX(1deg);
    padding: 2rem;
}.thxNote h5 {
    font-size: calc(18px * 0.9);
}.thxNote p {
    font-size: calc(18px * 0.95);
    line-height: 1.6;
    padding: 1rem;
}.thxNote .learn_learnings > div:first-child {
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
}

@media (max-width: 480px) {.thxNote {
    padding: 2rem 0;
}.thxNote .learn_learnings {
    transform: none;
    padding: 1.5rem;
}.thxNote h5 {
    font-size: calc(18px * 0.85);
}.thxNote p {
    line-height: 1.5;
    font-size: calc(18px * 0.9);
    padding: 0.75rem;
}}.mentorship_experience {
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(216,210,228) 0%, rgb(175,156,206,0.5) 100%);
    position: relative;
}.mentorship_experience::before {
    height: 300px;
    width: 300px;
    right: -50px;
    z-index: 0;
    content: "";
    top: -50px;
    background: rgb(113,113,183,0.5);
    filter: blur(80px);
    position: absolute;
    transform: rotate(-15deg);
}.mentorship_experience::after {
    height: 250px;
    position: absolute;
    z-index: 0;
    filter: blur(60px);
    bottom: -80px;
    background: rgb(175,156,206,0.5);
    width: 250px;
    transform: rotate(25deg);
    left: -50px;
    content: "";
}.mentorship_experience .container {
    margin: 0 auto;
    z-index: 1;
    position: relative;
    max-width: 1200px;
    padding: 0 20px;
}.mentorship_experience .user_testimonials {
    transform: perspective(1000px) rotateY(2deg);
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 40px;
}.mentorship_experience .user_testimonials:hover {
    transform: perspective(1000px) rotateY(0deg);
}.mentorship_experience .user_testimonials::before {
    transform-origin: left center;
    height: 100%;
    top: 0;
    transform: scaleY(0);
    content: "";
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    left: 0;
    width: 5px;
    background: linear-gradient(to bottom, rgb(175,156,206), rgb(113,113,183));
    position: absolute;
}.mentorship_experience .user_testimonials:hover::before {
    transform: scaleY(1);
}.mentorship_experience .photo_album {
    position: relative;
    width: 200px;
    height: 200px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    margin: 0 auto;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #ffffff;
}.mentorship_experience .user_testimonials:hover .photo_album {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px) scale(1.05);
}.mentorship_experience .photo_album::after {
    left: 0;
    position: absolute;
    width: 100%;
    content: "";
    top: 0;
    transition: opacity 0.6s ease;
    height: 100%;
    opacity: 0;
    background: linear-gradient(135deg, rgb(175,156,206,0.5) 0%, transparent 50%, rgb(113,113,183,0.5) 100%);
}.mentorship_experience .user_testimonials:hover .photo_album::after {
    opacity: 0.4;
}.mentorship_experience .name {
    margin: 0 0 5px 0;
    font-size: calc(20px * 1.1);
    color: rgb(175,156,206);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateX(0);
    font-weight: 700;
    display: inline-block;
    position: relative;
}.mentorship_experience .user_testimonials:hover .name {
    transform: translateX(10px);
}.mentorship_experience .name::after {
    left: 0;
    background: rgb(113,113,183);
    bottom: -3px;
    height: 2px;
    position: absolute;
    content: "";
    width: 0;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}.mentorship_experience .user_testimonials:hover .name::after {
    width: 100%;
}.mentorship_experience .user_testimonials > div:nth-child(2) > div {
    position: relative;
    transition: padding-left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    font-weight: 600;
    color: #000000;
    margin-bottom: 15px;
    padding-left: 0;
    font-size: calc(17px * 0.95);
}.mentorship_experience .user_testimonials:hover > div:nth-child(2) > div {
    padding-left: 10px;
}.mentorship_experience .job_expertise {
    color: #000000;
    border-radius: 10px;
    line-height: 1.8;
    padding: 25px 20px;
    background-size: 200% 100%;
    background: linear-gradient(to right, #ffffff, rgb(216,210,228), #ffffff);
    transition: background-position 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    margin: 0;
    font-size: 17px;
}.mentorship_experience .user_testimonials:hover .job_expertise {
    background-position: right center;
}.mentorship_experience .job_expertise::before,
.mentorship_experience .job_expertise::after {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 60px;
    content: "";
    position: absolute;
    font-family: Georgia, serif;
    color: rgb(175,156,206,0.5);
    line-height: 1;
}.mentorship_experience .job_expertise::before {
    left: -10px;
    opacity: 0.5;
    transform: translateX(-20px) translateY(-20px) scale(0.8);
    top: -10px;
}.mentorship_experience .job_expertise::after {
    right: -10px;
    bottom: -30px;
    content: "";
    opacity: 0.5;
    transform: translateX(20px) translateY(20px) scale(0.8);
}.mentorship_experience .user_testimonials:hover .job_expertise::before {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.7;
}.mentorship_experience .user_testimonials:hover .job_expertise::after {
    opacity: 0.7;
    transform: translateX(0) translateY(0) scale(1);
}

@media (min-width: 768px) {.mentorship_experience .user_testimonials {
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto 1fr;
    gap: 25px 40px;
}.mentorship_experience .user_testimonials > div:first-child {
    display: flex;
    justify-content: center;
    grid-row: 1 / 3;
    align-items: center;
}.mentorship_experience .user_testimonials > div:nth-child(2) {
    align-self: end;
}.mentorship_experience .user_testimonials > div:nth-child(3) {
    grid-column: 2 / 3;
}.mentorship_experience .photo_album {
    width: 200px;
    height: 200px;
}
}

@media (min-width: 992px) {.mentorship_experience {
    padding: 150px 0;
}.mentorship_experience .user_testimonials {
    transform: perspective(1500px) rotateY(3deg);
    padding: 60px;
    gap: 30px 60px;
}.mentorship_experience .photo_album {
    height: 240px;
    width: 240px;
}.mentorship_experience .name {
    font-size: calc(20px * 1.2);
}.mentorship_experience .user_testimonials > div:nth-child(2) > div {
    font-size: 17px;
}.mentorship_experience .job_expertise {
    padding: 30px 25px;
    line-height: 1.9;
    font-size: calc(17px * 1.05);
}
}

@media (max-width: 767px) {.mentorship_experience {
    padding: 80px 0;
}.mentorship_experience .user_testimonials {
    gap: 20px;
    padding: 30px 25px;
}.mentorship_experience .photo_album {
    height: 150px;
    width: 150px;
}.mentorship_experience .name {
    font-size: 20px;
    text-align: center;
}.mentorship_experience .user_testimonials > div:nth-child(2) {
    text-align: center;
}.mentorship_experience .user_testimonials > div:nth-child(2) > div {
    font-size: calc(17px * 0.9);
}.mentorship_experience .job_expertise {
    line-height: 1.7;
    font-size: calc(17px * 0.95);
    padding: 20px 15px;
}}.training_results {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    background: linear-gradient(120deg, rgb(216,210,228) 0%, rgb(175,156,206,0.5) 100%);
}.training_results::before {
    top: -50%;
    width: 200%;
    animation: rotateBackground 30s infinite linear;
    height: 200%;
    z-index: 0;
    position: absolute;
    left: -50%;
    content: "";
    background: radial-gradient(
        ellipse at center,
        rgb(113,113,183,0.5) 0%,
        transparent 70%
    );
    opacity: 0.4;
}@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.training_results::after {
    left: 0;
    height: 100%;
    content: "";
    position: absolute;
    background: 
        linear-gradient(135deg, transparent 0%, rgb(113,113,183,0.5) 100%),
        linear-gradient(45deg, rgb(175,156,206,0.5) 0%, transparent 60%);
    top: 0;
    opacity: 0.2;
    width: 100%;
    z-index: 0;
}.training_results .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    z-index: 2;
    position: relative;
}.training_results .learn_learnings {
    grid-template-columns: 1.2fr 1fr;
    display: grid;
    position: relative;
    position: relative;
    gap: 50px;
    border-radius: 20px;
}.training_results .learn_learnings::before {
    background: linear-gradient(
        -45deg,
        rgb(175,156,206) 0%,
        transparent 40%,
        transparent 60%,
        rgb(113,113,183) 100%
    );
    content: "";
    inset: -2px;
    position: absolute;
    animation: borderGlow 8s infinite alternate;
    z-index: -1;
    border-radius: 22px;
    opacity: 0.6;
}@keyframes borderGlow {
    0% {
        opacity: 0.3;
        filter: blur(3px);
    }
    100% {
        opacity: 0.6;
        filter: blur(1px);
    }
}

.training_results .learn_learnings::after {
    backdrop-filter: blur(15px);
    border-radius: 20px;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(245, 245, 250, 0.9) 100%
    );
    position: absolute;
    inset: 0;
    z-index: -1;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.6);
    content: "";
}.training_results .text_pod {
    order: 1;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 40px;
}.training_results .photo_album {
    border-radius: 0 20px 20px 0;
    order: 2;
    z-index: 1;
    object-fit: cover;
    height: 100%;
    transform: scale(1.05) translateX(-5%);
    position: relative;
    box-shadow: 
        20px 0 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
}.training_results .photo_album:hover {
    transform: scale(1.08) translateX(-3%);
}.training_results h3 {
    letter-spacing: 0.5px;
    font-weight: 700;
    position: relative;
    color: #000000;
    margin-bottom: 30px;
    font-size: 30px;
}.training_results h3::before {
    transform: translateY(-50%);
    top: 50%;
    width: 30px;
    background: rgb(175,156,206);
    height: 2px;
    position: absolute;
    content: "";
    left: -40px;
}.training_results h3::after {
    bottom: -10px;
    border-radius: 10px;
    height: 3px;
    left: 0;
    width: 80px;
    background: linear-gradient(
        to right, 
        rgb(113,113,183) 0%, 
        rgb(175,156,206) 50%,
        transparent 100%
    );
    content: "";
    position: absolute;
}.training_results ul {
    gap: 15px;
    flex-direction: column;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}.training_results li {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: rgb(216,210,228);
    transition: all 0.4s ease;
    padding: 18px;
}.training_results li::before {
    left: 0;
    background: linear-gradient(
        to bottom,
        rgb(175,156,206) 0%,
        rgb(113,113,183) 100%
    );
    opacity: 0.7;
    transition: all 0.4s ease;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    content: "";
}.training_results li::after {
    opacity: 0;
    transition: all 0.4s ease;
    top: 0;
    width: 100%;
    background: linear-gradient(
        to right,
        rgb(175,156,206,0.5) 0%,
        transparent 30%
    );
    z-index: -1;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
}.training_results li:hover {
    background: linear-gradient(
        to right,
        rgb(216,210,228) 0%,
        #ffffff 100%
    );
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}.training_results li:hover::before {
    width: 6px;
}.training_results li:hover::after {
    opacity: 0.3;
}.training_results li p {
    gap: 15px;
    color: #000000;
    margin: 0;
    align-items: center;
    font-size: 17px;
    z-index: 2;
    display: flex;
    position: relative;
}.training_results svg {
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    width: 24px;
    padding: 4px;
    background: #ffffff;
    border-radius: 50%;
    height: 24px;
    transition: all 0.5s ease;
}.training_results svg path {
    fill: rgb(175,156,206);
    transition: all 0.5s ease;
}.training_results li:hover svg {
    transform: scale(1.15);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.12);
}.training_results li:hover svg path {
    fill: rgb(113,113,183);
}

@media (max-width: 992px) {.training_results {
    padding: 80px 0;
}.training_results .learn_learnings {
    gap: 30px;
}.training_results .text_pod {
    padding: 30px;
}
}

@media (max-width: 768px) {.training_results .learn_learnings {
    grid-template-columns: 1fr;
    gap: 40px;
}.training_results .photo_album {
    transform: scale(1);
    order: 1;
    width: 100%;
    max-height: 350px;
    border-radius: 20px 20px 0 0;
}.training_results .text_pod {
    order: 2;
    padding: 30px;
}.training_results h3::before {
    width: 20px;
    left: -30px;
}
}

@media (max-width: 576px) {.training_results {
    padding: 60px 0;
}.training_results .learn_learnings {
    gap: 30px;
}.training_results .photo_album {
    max-height: 250px;
}.training_results .text_pod {
    padding: 25px 20px;
}.training_results h3 {
    font-size: 19px;
    margin-bottom: 25px;
}.training_results h3::before {
    display: none;
}.training_results li {
    padding: 15px;
}.training_results li p {
    font-size: 17px;
    gap: 12px;
}.training_results svg {
    height: 22px;
    width: 22px;
    padding: 3px;
}}.contact_box {
    padding: 90px 0;
    background: rgb(216,210,228);
    position: relative;
    overflow: hidden;
}.contact_box::before {
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    opacity: 0.2;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(175,156,206,0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgb(113,113,183,0.5) 0%, transparent 60%);
    width: 100%;
}.contact_box::after {
    top: 0;
    position: absolute;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    width: 100%;
    left: 0;
    content: '';
}.contact_box .photo_album {
    top: 2.5%;
    height: 95%;
    position: absolute;
    width: 45%;
    border-radius: 100px 0 0 100px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    right: 0;
}.contact_box .photo_album::after {
    content: '';
    top: 0;
    position: absolute;
    border-radius: 100px 0 0 100px;
    width: 100%;
    left: 0;
    background: linear-gradient(to right, rgb(175,156,206,0.5), transparent 70%);
    height: 100%;
}.contact_box .container {
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
}.contact_box h3 {
    font-weight: 700;
    color: #000000;
    font-size: 29px;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
    font-family: Arial, sans-serif;
}.contact_box .request_map {
    overflow: hidden;
    display: flex;
    background: #ffffff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: relative;
    border-radius: 20px;
}.contact_box .request_map::before {
    background: rgb(175,156,206,0.5);
    top: -100px;
    border-radius: 50%;
    height: 200px;
    opacity: 0.05;
    left: -100px;
    width: 200px;
    position: absolute;
    content: '';
}.contact_box .request_map::after {
    width: 150px;
    border-radius: 50%;
    bottom: -75px;
    content: '';
    position: absolute;
    height: 150px;
    right: -75px;
    opacity: 0.05;
    background: rgb(113,113,183,0.5);
}.contact_box .help_query {
    position: relative;
    width: 60%;
    padding: 50px;
}.contact_box form h3 {
    margin-bottom: 30px;
    text-align: left;
    color: rgb(175,156,206);
    font-size: 23px;
}.contact_box form h3::before,
.contact_box form h3::after {
    display: none;
}.contact_box input[type="text"],
.contact_box textarea {
    background: rgba(245, 245, 245, 0.5);
    margin-bottom: 20px;
    font-size: 18px;
    border-radius: 30px;
    width: 100%;
    transition: all 0.3s ease;
    padding: 15px 25px;
    font-family: Arial, sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #000000;
}.contact_box input[type="text"]:focus,
.contact_box textarea:focus {
    border-color: rgb(175,156,206,0.5);
    background: rgba(255, 255, 255, 1);
    outline: none;
    box-shadow: 0 0 15px rgb(175,156,206,0.5);
}.contact_box textarea {
    border-radius: 20px;
    height: 140px;
    resize: none;
}.contact_box .connect_card {
    align-items: flex-start;
    display: flex;
    margin-bottom: 25px;
}.contact_box .connect_card input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}.contact_box .connect_card label {
    font-size: 12px;
    line-height: 1.6;
    color: #000000;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
}.contact_box .connect_card label::before {
    left: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 22px;
    top: 2px;
    content: '';
    background: #ffffff;
    border: 2px solid rgb(175,156,206,0.5);
    height: 22px;
    position: absolute;
}.contact_box .connect_card input[type="checkbox"]:checked + label::before {
    border-color: rgb(175,156,206);
    background: rgb(175,156,206);
}.contact_box .connect_card input[type="checkbox"]:checked + label::after {
    content: '';
    border-width: 0 2px 2px 0;
    width: 6px;
    top: 6px;
    position: absolute;
    height: 10px;
    border: solid #ffffff;
    left: 8px;
    transform: rotate(45deg);
}.contact_box .connect_card a {
    color: rgb(175,156,206);
    transition: all 0.3s ease;
    text-decoration: none;
}.contact_box .connect_card a:hover {
    color: rgb(113,113,183);
}.contact_box .support_block {
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 15px 40px;
    border-radius: 50px;
    z-index: 1;
    background: rgb(175,156,206);
    border: none;
    position: relative;
    cursor: pointer;
    color: #ffffff;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 14px;
}.contact_box .support_block::before {
    width: 100%;
    transform: translateY(100%);
    left: 0;
    z-index: -1;
    border-radius: 50px;
    background: rgb(113,113,183);
    content: '';
    position: absolute;
    height: 100%;
    transition: all 0.5s ease;
    top: 0;
}.contact_box .support_block:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgb(175,156,206,0.5);
}.contact_box .support_block:hover::before {
    transform: translateY(0);
}.contact_box .inquiry_widget {
    width: 40%;
    position: absolute;
    padding: 50px;
    top: 50%;
    right: 0;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    border-radius: 70px 0 0 70px;
    z-index: 3;
    background: linear-gradient(135deg, rgb(175,156,206), rgb(113,113,183));
    justify-content: center;
    transform: translateY(-50%);
}.contact_box .inquiry_widget::before {
    left: 0;
    background: 
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
    position: absolute;
    border-radius: 70px 0 0 70px;
    width: 100%;
    top: 0;
    height: 100%;
    content: '';
}.contact_box .inquiry_widget h4 {
    position: relative;
    font-size: 23px;
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}.contact_box .inquiry_widget h4::after {
    left: 0;
    position: absolute;
    content: '';
    height: 3px;
    border-radius: 3px;
    background: #ffffff;
    width: 40px;
    bottom: -10px;
}.contact_box .support_feedback {
    padding: 0;
    margin: 0;
    list-style: none;
}.contact_box .support_feedback li {
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    transition: all 0.3s ease;
    align-items: flex-start;
}.contact_box .support_feedback li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}.contact_box .support_feedback svg {
    margin-right: 15px;
    transition: transform 0.3s ease;
    height: 24px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 24px;
}.contact_box .support_feedback li:hover svg {
    transform: scale(1.2);
}.contact_box .support_feedback svg path {
    fill: #ffffff;
}.contact_box .support_feedback span {
    line-height: 1.6;
    color: #ffffff;
    font-size: 18px;
    font-family: Arial, sans-serif;
}.contact_box .support_feedback a {
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
}.contact_box .support_feedback a:hover {
    opacity: 0.8;
}

@media (max-width: 1200px) {.contact_box .request_map {
    width: 70%;
}.contact_box .inquiry_widget {
    width: 35%;
}
}

@media (max-width: 992px) {.contact_box .photo_album {
    display: none;
}.contact_box .container {
    flex-direction: column;
    display: flex;
    align-items: center;
}.contact_box .request_map {
    max-width: 600px;
    width: 100%;
    flex-direction: column;
}.contact_box .inquiry_widget {
    transform: none;
    margin-top: 30px;
    top: auto;
    width: 100%;
    position: relative;
    border-radius: 20px;
    max-width: 600px;
    right: auto;
}.contact_box .inquiry_widget::before {
    border-radius: 20px;
}
}

@media (max-width: 768px) {.contact_box {
    padding: 70px 0;
}.contact_box h3 {
    margin-bottom: 40px;
    font-size: calc(29px * 0.9);
}.contact_box .help_query,
    .contact_box .inquiry_widget {
    padding: 30px;
}
}

@media (max-width: 576px) {.contact_box {
    padding: 50px 0;
}.contact_box h3 {
    margin-bottom: 30px;
    font-size: calc(29px * 0.8);
}.contact_box .help_query,
    .contact_box .inquiry_widget {
    padding: 25px 20px;
}.contact_box input[type="text"],
    .contact_box textarea {
    padding: 12px 20px;
    margin-bottom: 15px;
}.contact_box .support_block {
    padding: 12px;
    width: 100%;
}}.our_mission {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(216,210,228) 0%, rgb(113,113,183,0.5) 100%);
}.our_mission::before {
    z-index: 0;
    background-size: 60px 60px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(45deg, rgb(113,113,183,0.5) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(113,113,183,0.5) 25%, transparent 25%);
    content: "";
    opacity: 0.05;
    height: 100%;
}.our_mission::after {
    z-index: 0;
    right: -25%;
    content: "";
    opacity: 0.1;
    background: radial-gradient(ellipse at center, rgb(175,156,206,0.5) 0%, transparent 70%);
    top: -50%;
    position: absolute;
    width: 80%;
    transform: rotate(-15deg);
    height: 150%;
}.our_mission .container {
    position: relative;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 1;
    margin: 0 auto;
}.our_mission h1 {
    text-align: left;
    font-weight: 700;
    margin-bottom: 3rem;
    transform: translateX(-20px);
    position: relative;
    font-size: 45px;
    opacity: 0;
    color: #000000;
    animation: slideIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}.our_mission h1::after {
    width: 80px;
    left: 0;
    position: absolute;
    bottom: -12px;
    transform-origin: left;
    height: 4px;
    content: "";
    animation: expandLine 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
    transform: scaleX(0);
    background: rgb(175,156,206);
}.our_mission .expert_track {
    position: relative;
}.our_mission .expert_track ul {
    padding: 0;
    gap: 3rem;
    list-style: none;
    display: grid;
    margin: 0;
    grid-template-columns: 1fr;
}.our_mission .class_sessions {
    animation: fadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: calc(0.2s * var(--i, 1));
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(30px);
    opacity: 0;
    overflow: hidden;
    position: relative;
    border-left: 4px solid rgb(175,156,206);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 2.5rem;
}.our_mission .class_sessions:nth-child(1) {
    --i: 1;
}.our_mission .class_sessions:nth-child(2) {
    --i: 2;
}.our_mission .class_sessions:hover {
    transform: translateY(-5px);
}.our_mission .class_sessions::before {
    opacity: 0.1;
    position: absolute;
    right: 0;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    top: 0;
    content: "";
    background: rgb(113,113,183,0.5);
    transform: translate(50%, -50%);
}.our_mission .class_sessions h4 {
    margin-bottom: 1.5rem;
    animation: slideIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    transform: translateX(-10px);
    color: rgb(175,156,206);
    font-size: 19px;
    animation-delay: calc(0.4s * var(--i, 1));
    position: relative;
    opacity: 0;
    font-weight: 600;
}.our_mission .class_sessions div {
    font-size: 16px;
    opacity: 0;
    transform: translateY(20px);
    animation-delay: calc(0.6s * var(--i, 1));
    max-height: 250px;
    padding-right: 1rem;
    position: relative;
    color: #000000;
    line-height: 1.8;
    overflow-y: auto;
    animation: fadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}.our_mission .class_sessions div::-webkit-scrollbar {
    width: 6px;
}.our_mission .class_sessions div::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}.our_mission .class_sessions div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(113,113,183,0.5);
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

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

@media (min-width: 768px) {.our_mission {
    padding: 8rem 0;
}.our_mission h1 {
    margin-bottom: 4rem;
    font-size: calc(45px * 1.2);
}.our_mission h1::after {
    height: 5px;
    width: 120px;
}.our_mission .expert_track ul {
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
}.our_mission .class_sessions {
    height: 100%;
    display: flex;
    flex-direction: column;
}.our_mission .class_sessions:first-child {
    transform: translateY(40px);
}.our_mission .class_sessions:last-child {
    transform: translateY(-10px);
}.our_mission .class_sessions:hover:first-child {
    transform: translateY(35px);
}.our_mission .class_sessions:hover:last-child {
    transform: translateY(-15px);
}.our_mission .class_sessions div {
    max-height: none;
    flex: 1;
}
}

@media (min-width: 1024px) {.our_mission {
    padding: 10rem 0;
}.our_mission::before {
    background-size: 80px 80px;
}.our_mission .container {
    padding: 0 4rem;
}.our_mission h1 {
    margin-bottom: 5rem;
    font-size: calc(45px * 1.4);
}.our_mission h1::after {
    width: 140px;
}.our_mission .class_sessions {
    padding: 3rem;
}.our_mission .class_sessions h4 {
    margin-bottom: 2rem;
    font-size: calc(19px * 1.1);
}.our_mission .class_sessions div {
    line-height: 1.9;
    font-size: calc(16px * 1.05);
}
}

@media (max-width: 767px) {.our_mission {
    padding: 4rem 0;
}.our_mission h1 {
    margin-bottom: 2.5rem;
    text-align: center;
}.our_mission h1::after {
    transform: translateX(-50%) scaleX(0);
    left: 50%;
}.our_mission .class_sessions {
    margin-bottom: 2rem;
    padding: 1.8rem;
}.our_mission .class_sessions h4 {
    margin-bottom: 1rem;
}.our_mission .class_sessions div {
    max-height: 200px;
}}.follow {
    box-shadow: 0 0 30px rgb(175,156,206,0.5);
    padding: 3rem 1.5rem;
    border-radius: 18px;
    background-color: rgb(216,210,228);
    overflow: hidden;
    position: relative;
}.follow::before {
    inset: 0;
    position: absolute;
    background: 
        radial-gradient(circle at 20% 30%, rgb(175,156,206,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(113,113,183,0.5) 0%, transparent 40%);
    z-index: 1;
    content: "";
}.follow::after {
    background-size: 200% 100%;
    z-index: 1;
    left: 0;
    background: 
        linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    opacity: 0.1;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    animation: scanLine 8s linear infinite;
    width: 100%;
}.follow .container {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 900px;
}.follow .learn_learnings {
    flex-direction: column;
    gap: 2rem;
    display: flex;
}.follow p {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    overflow: hidden;
    color: #000000;
    font-family: Arial, sans-serif;
    padding: 0.5rem 0;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
}.follow p::before, .follow p::after {
    animation: scanGlow 4s linear infinite;
    width: 100%;
    position: absolute;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, rgb(175,156,206), transparent);
}.follow p::before {
    top: 0;
}.follow p::after {
    bottom: 0;
}.follow .input_holder {
    display: flex;
    position: relative;
    gap: 1.5rem;
    flex-direction: column;
}.follow .input_holder::before {
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgb(113,113,183,0.5), transparent 80%);
    left: 0;
    transform: skewY(-5deg);
    border-radius: 18px;
    z-index: -1;
    width: 100%;
    top: 0;
    transform-origin: top left;
    height: 100%;
}.follow .join_panel {
    font-family: Arial, sans-serif;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 2px solid transparent;
    padding: 1.2rem 1.5rem;
    font-size: 14px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 10px;
}.follow .join_panel:focus {
    border-color: rgb(175,156,206);
    box-shadow: 0 0 0 4px rgb(175,156,206,0.5), 0 0 20px rgb(175,156,206,0.5);
    outline: none;
}.follow .sub_set {
    font-size: 16px;
    align-self: center;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    background: #000000;
    letter-spacing: 1px;
    border-radius: 10px;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    padding: 1.2rem 2rem;
    position: relative;
}.follow .sub_set::before {
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgb(175,156,206), rgb(113,113,183));
    opacity: 0;
    transition: opacity 0.3s ease;
    inset: 0;
}.follow .sub_set::after {
    inset: -4px;
    position: absolute;
    opacity: 0.5;
    border-radius: calc(10px + 4px);
    transition: all 0.3s ease;
    filter: blur(8px);
    background: linear-gradient(135deg, rgb(175,156,206), rgb(113,113,183));
    content: "";
    z-index: -1;
}.follow .sub_set:hover {
    transform: translateY(-2px);
}.follow .sub_set:hover::before {
    opacity: 1;
}.follow .sub_set:hover::after {
    opacity: 1;
    filter: blur(12px);
}

@keyframes scanLine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: 0% 0;
    }
}

@keyframes scanGlow {
    0%, 100% {
        background-position: -100% 0;
    }
    50% {
        background-position: 200% 0;
    }
}

@media screen and (min-width: 768px) {.follow {
    padding: 4rem 3rem;
}.follow .learn_learnings {
    gap: 3rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}.follow p {
    font-size: 28px;
    flex: 1;
    text-align: left;
    max-width: 50%;
}.follow .input_holder {
    flex-wrap: nowrap;
    flex-direction: row;
    flex: 1;
    gap: 0;
}.follow .join_panel {
    flex: 1;
    border-radius: 10px 0 0 10px;
}.follow .sub_set {
    border-radius: 0 10px 10px 0;
    align-self: stretch;
}}header {
    position: relative;
    width: 100%;
    z-index: 99;
    background: rgb(216,210,228);
    overflow: visible;
}header::before {
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(175,156,206,0.5) 0%, transparent 50%, rgb(175,156,206,0.5) 100%);
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    opacity: 0.15;
}header .top_head {
    gap: 15px;
    padding: 20px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    display: grid;
    position: relative;
}header .top_head::after {
    left: 0;
    height: 1px;
    width: 100%;
    top: 50%;
    position: absolute;
    content: "";
    background: linear-gradient(90deg, transparent, rgb(175,156,206,0.5), transparent);
}header .top_head .main_lead {
    z-index: 10;
    padding: 5px 20px 15px;
    justify-self: center;
    position: relative;
}header .top_head .main_lead::before,
header .top_head .main_lead::after {
    content: "";
    border-radius: 19px;
    position: absolute;
    height: 90%;
    width: 90%;
}header .top_head .main_lead::before {
    border-top: 2px solid rgb(175,156,206);
    border-left: 2px solid rgb(175,156,206);
    transform-origin: top left;
    transition: transform 0.3s ease;
    top: -5px;
    transform: scale(0);
    left: -5px;
}header .top_head .main_lead::after {
    border-right: 2px solid rgb(113,113,183);
    border-bottom: 2px solid rgb(113,113,183);
    transition: transform 0.3s ease;
    transform: scale(0);
    transform-origin: bottom right;
    right: -5px;
    bottom: -5px;
}header .top_head .main_lead:hover::before,
header .top_head .main_lead:hover::after {
    transform: scale(1);
}header .top_head .main_lead .head_site {
    display: block;
    transition: transform 0.3s ease;
}header .top_head .main_lead .head_site svg {
    width: auto;
    height: 60px;
}header .top_head .header_sitebar {
    list-style: none;
    margin: 0;
    display: flex;
    background: linear-gradient(180deg, transparent, rgb(113,113,183) 15%, rgba(0, 0, 0, 0.5) 85%, transparent 50%);
    justify-content: center;
    padding: 20px 0 10px;
    flex-wrap: wrap;
    position: relative;
}header .top_head .header_sitebar::before,
header .top_head .header_sitebar::after {
    content: "";
    background: rgb(175,156,206,0.5);
    height: 70%;
    width: 2px;
    top: 15%;
    position: absolute;
}header .top_head .header_sitebar::before {
    left: 0;
}header .top_head .header_sitebar::after {
    right: 0;
}header .top_head .header_sitebar .nav_guide {
    transition: transform 0.3s ease;
    padding: 0 15px;
    position: relative;
    margin: 0;
}header .top_head .header_sitebar .nav_guide:not(:last-child)::after {
    height: 60%;
    background: rgb(113,113,183,0.5);
    right: 0;
    position: absolute;
    content: "";
    top: 20%;
    width: 1px;
}header .top_head .header_sitebar .nav_guide:hover {
    transform: translateY(-3px);
}header .top_head .header_sitebar .nav_guide a {
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
    display: block;
    position: relative;
    text-decoration: none;
    text-align: center;
    color: #000000;
    padding: 10px 5px;
    font-weight: 600;
}header .top_head .header_sitebar .nav_guide a:hover {
    color: rgb(175,156,206);
}header .top_head .header_sitebar .nav_guide a::before {
    left: 0;
    position: absolute;
    content: "";
    width: 100%;
    transition: transform 0.3s ease;
    bottom: 5px;
    transform: scaleX(0);
    background: rgb(113,113,183);
    height: 2px;
}header .top_head .header_sitebar .nav_guide a:hover::before {
    transform: scaleX(1);
}

@media (min-width: 993px) {header .top_head {
    grid-template-columns: 1fr;
    padding: 15px 30px;
    grid-template-rows: auto auto;
}header .top_head .header_sitebar {
    padding: 20px 10px 10px;
}
}

@media (max-width: 992px) {header .top_head {
    gap: 10px;
    grid-template-rows: auto auto;
    padding: 15px;
}header .top_head .main_lead {
    padding: 5px 10px;
}header .top_head .main_lead .head_site svg {
    height: 45px;
}header .top_head .header_sitebar {
    padding: 15px 0 10px;
}header .top_head .header_sitebar .nav_guide {
    padding: 0 10px;
}header .top_head .header_sitebar .nav_guide a {
    padding: 8px 3px;
    font-size: calc(16px - 1px);
}
}

@media (max-width: 767px) {header .top_head .header_sitebar {
    flex-wrap: wrap;
    justify-content: center;
}header .top_head .header_sitebar .nav_guide {
    margin: 3px 0;
}header .top_head .header_sitebar .nav_guide:not(:last-child)::after {
    display: none;
}}.offer_box {
    overflow: hidden;
    background-color: rgb(216,210,228);
    padding: 5rem 0;
    position: relative;
}.offer_box::before {
    width: 12rem;
    transform: rotate(15deg);
    content: "";
    right: -3rem;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: absolute;
    top: -3rem;
    background: linear-gradient(135deg, rgb(175,156,206), rgb(113,113,183));
    height: 12rem;
    opacity: 0.07;
}.offer_box::after {
    width: 18rem;
    transform: rotate(-10deg);
    opacity: 0.05;
    background: linear-gradient(45deg, rgb(113,113,183), rgb(175,156,206,0.5));
    content: "";
    position: absolute;
    left: -5rem;
    bottom: -5rem;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
    height: 18rem;
}.offer_box .container {
    padding: 0 1.5rem;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
}.offer_box .plan_cost {
    display: flex;
    flex-direction: column;
}.offer_box .deal_opts {
    margin-bottom: 3rem;
    position: relative;
    order: -1;
}.offer_box .deal_opts h2 {
    margin-bottom: 1rem;
    position: relative;
    color: #000000;
    font-size: 29px;
    font-weight: 700;
    display: inline-block;
}.offer_box .deal_opts h2::after {
    left: 0;
    content: "";
    height: 3px;
    width: 60%;
    position: absolute;
    bottom: -0.5rem;
    background: linear-gradient(90deg, rgb(175,156,206), transparent);
}.offer_box .fee_plan {
    line-height: 1.6;
    max-width: 800px;
    font-size: 13px;
    margin-bottom: 1rem;
    color: #000000;
}.offer_box .program_rate {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    width: 100%;
}.offer_box .promo_plans {
    color: #000000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease;
    z-index: 2;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}.offer_box .group_rates {
    height: 100%;
    background-color: #ffffff;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 480px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
    transform: translateY(0);
    display: flex;
}.offer_box .promo_plans:hover .group_rates {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}.offer_box .rate_options {
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
    padding: 2rem;
    position: relative;
    flex: 1;
    display: flex;
}.offer_box .rate_options h3 {
    font-size: calc(23px + 0.1rem);
    font-weight: 600;
    color: #000000;
    transition: color 0.3s ease;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}.offer_box .promo_plans:hover .rate_options h3 {
    color: rgb(175,156,206);
}.offer_box .study_packages {
    margin-bottom: 1.5rem;
    color: rgb(175,156,206);
    display: block;
    font-size: calc(23px + 0.5rem);
    position: relative;
    font-weight: 700;
    transition: transform 0.3s ease;
}.offer_box .study_packages::before {
    width: 3rem;
    height: 2px;
    transition: transform 0.4s ease;
    bottom: -0.75rem;
    background-color: rgb(175,156,206,0.5);
    transform-origin: left;
    transform: scaleX(1);
    left: 0;
    position: absolute;
    content: "";
}.offer_box .promo_plans:hover .study_packages::before {
    transform: scaleX(1.5);
}.offer_box .rate_options p {
    margin-bottom: 1.5rem;
    overflow-wrap: break-word;
    color: #000000;
    word-break: break-word;
    flex-grow: 1;
    line-height: 1.6;
    font-size: calc(13px - 0.1rem);
}.offer_box .photo_album {
    overflow: hidden;
    transition: transform 0.6s ease;
    width: 100%;
    position: relative;
    height: 180px;
}.offer_box .photo_album::after {
    opacity: 0.7;
    content: "";
    transition: opacity 0.3s ease;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    top: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}.offer_box .promo_plans:hover .photo_album {
    transform: scale(1.03);
}.offer_box .promo_plans:hover .photo_album::after {
    opacity: 0.4;
}.offer_box .group_rates::before {
    top: 0;
    transform: scaleX(0);
    height: 5px;
    transform-origin: left;
    position: absolute;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(90deg, rgb(175,156,206), rgb(113,113,183));
    left: 0;
    content: "";
}.offer_box .promo_plans:hover .group_rates::before {
    transform: scaleX(1);
}

@media (min-width: 768px) {.offer_box .plan_cost {
    align-items: flex-start;
    gap: 2rem;
    flex-direction: row;
}.offer_box .deal_opts {
    padding-top: 2rem;
    order: 0;
    margin-bottom: 0;
    flex: 0 0 30%;
}.offer_box .program_rate {
    flex: 0 0 70%;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}.offer_box .group_rates {
    border-radius: 0.25rem;
}
}

@media (max-width: 767px) {.offer_box {
    padding: 3rem 0;
}.offer_box .program_rate {
    margin: 0 auto;
    grid-template-columns: 1fr;
    max-width: 500px;
}.offer_box .deal_opts h2 {
    display: block;
    text-align: center;
}.offer_box .deal_opts h2::after {
    left: 50%;
    width: 100px;
    transform: translateX(-50%);
}.offer_box .fee_plan {
    text-align: center;
}.offer_box .group_rates {
    min-height: auto;
}.offer_box .rate_options {
    padding: 1.5rem;
}.offer_box .photo_album {
    height: 160px;
}
}

@media (min-width: 1024px) {.offer_box .program_rate {
    grid-template-columns: repeat(2, 1fr);
}.offer_box .promo_plans:nth-child(odd) {
    transform: translateY(1.5rem);
}
}

@media (min-width: 1200px) {.offer_box .deal_opts {
    padding-top: 4rem;
}.offer_box .promo_plans:hover {
    z-index: 5;
}.offer_box .program_rate {
    column-gap: 2rem;
    row-gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
}
}

@media (prefers-reduced-motion: reduce) {.offer_box .promo_plans,
    .offer_box .group_rates,
    .offer_box .photo_album,
    .offer_box .study_packages::before,
    .offer_box .group_rates::before {
    transition: none;
}}#cookie_alert_notice {
    display: none;
}#cookie_alert_notice:checked ~ .cookie_modal_message {
    opacity: 0;
    visibility: hidden;
}.cookie_modal_message {
    position: fixed;
    width: 100%;
    font-family: Arial, sans-serif;
    z-index: 90;
    border-top: 3px solid rgb(175,156,206);
    background: rgb(113,113,183);
    bottom: 0;
    padding: 20px 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
}.edu_cookie {
    justify-content: space-between;
    border: 2px dashed rgb(175,156,206);
    padding: 20px 5%;
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    align-items: center;
}.cookie_modal_message h5 {
    letter-spacing: 1.5px;
    color: rgb(175,156,206);
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
}.cookie_modal_message p {
    position: relative;
    color: #ffffff;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
}.digital_cookies {
    flex-shrink: 0;
    margin-right: 20px;
    justify-content: center;
    display: flex;
    background: rgb(175,156,206,0.5);
    border-radius: 30px;
    padding: 10px;
    align-items: center;
}.digital_cookies svg {
    height: 60px;
    fill: rgb(175,156,206);
    width: 60px;
}.cookie_box {
    min-width: 140px;
    font-size: 18px;
    border: 2px solid rgb(175,156,206);
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 10px;
    text-align: center;
    flex-shrink: 0;
    color: #000000;
    text-decoration: none;
    line-height: 40px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: rgb(175,156,206);
    white-space: nowrap;
}.cookie_box:hover {
    background-color: rgb(113,113,183);
    box-shadow: 0 0 10px rgb(113,113,183);
}.cookie_button.cookies_terms {
    color: #ffffff;
    border: 2px solid rgb(113,113,183);
    background: rgba(0, 0, 0, 0.5);
}.cookie_button.cookies_terms:hover {
    box-shadow: 0 0 10px rgb(113,113,183);
}.cookie_modal_message p a {
    transition: color 0.3s ease;
    color: rgb(175,156,206);
    border-bottom: 1px dashed rgb(175,156,206);
    text-decoration: none;
}.cookie_modal_message p a:hover {
    color: rgb(113,113,183);
}
@media only screen and (max-width: 1200px) {.cookie_modal_message {
    padding: 15px 0;
}.edu_cookie {
    padding: 15px 5%;
}.digital_cookies {
    display: none;
}.edu_cookie {
    flex-direction: column;
    align-items: center;
    text-align: center;
}.cookie_modal_message h5 {
    font-size: 22px;
    margin-bottom: 10px;
}.learn_prefs {
    margin-bottom: 15px;
}.cookie_box {
    min-width: 100%;
    margin: 10px 0;
}}
.statistical_report {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(216,210,228) 0%, rgb(113,113,183,0.5) 100%);
    padding: 4rem 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}.statistical_report::before {
    background: radial-gradient(circle at 20% 30%, rgb(175,156,206,0.5) 0%, transparent 60%);
    opacity: 0.6;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    left: 0;
    width: 100%;
}.statistical_report::after {
    position: absolute;
    bottom: 0;
    transform: translateY(20%) translateX(10%);
    width: 50%;
    z-index: 0;
    content: "";
    opacity: 0.4;
    background: radial-gradient(ellipse at bottom right, rgb(113,113,183,0.5) 0%, transparent 70%);
    right: 0;
    height: 70%;
    pointer-events: none;
}.statistical_report h3 {
    color: #000000;
    animation: fadeInUp 0.8s ease forwards 0.2s;
    text-align: center;
    transform: translateY(0);
    position: relative;
    opacity: 0;
    font-weight: 700;
    z-index: 2;
    font-size: calc(33px * 0.9);
    margin-bottom: 3rem;
}.statistical_report .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 2;
}.statistical_report ul {
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    list-style: none;
    gap: 1.5rem;
    display: grid;
    margin: 0;
}.statistical_report .benefits_track {
    animation-delay: calc(0.15s * var(--i, 0));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    min-height: 180px;
    align-items: center;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 94% 100%, 0 100%);
    flex-direction: column;
    position: relative;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
    transform: translateY(30px);
    padding: 1.8rem;
    animation: statReveal 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    justify-content: center;
    display: flex;
    background: linear-gradient(145deg, #ffffff 0%, rgb(255, 255, 255, 0.5) 85%);
    opacity: 0;
}.statistical_report .benefits_track:nth-child(1) {
    --i: 1;
}.statistical_report .benefits_track:nth-child(2) {
    --i: 2;
}.statistical_report .benefits_track:nth-child(3) {
    --i: 3;
}.statistical_report .benefits_track:nth-child(4) {
    --i: 4;
}.statistical_report .benefits_track:nth-child(5) {
    --i: 5;
}.statistical_report .benefits_track:nth-child(6) {
    --i: 6;
}.statistical_report .benefits_track:nth-child(7) {
    --i: 7;
}.statistical_report .benefits_track::before {
    background: linear-gradient(45deg, transparent 0%, rgb(175,156,206,0.5) 100%);
    top: 0;
    z-index: -1;
    opacity: 0;
    clip-path: polygon(0 0, 100% 0, 100% 94%, 94% 100%, 0 100%);
    transition: opacity 0.5s ease;
    width: 100%;
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
}.statistical_report .benefits_track:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 0 1px rgb(175,156,206,0.5);
    transform: translateY(-5px) scale(1.02);
}.statistical_report .benefits_track:hover::before {
    opacity: 0.1;
}.statistical_report .benefits_track span {
    font-weight: 600;
    transform: translateY(0);
    margin-bottom: 0.8rem;
    transition: all 0.4s ease;
    line-height: 1.3;
    color: #000000;
    font-size: calc(16px * 1.05);
    position: relative;
    display: block;
}.statistical_report .benefits_track:hover span {
    color: rgb(175,156,206);
    transform: translateY(-2px);
}.statistical_report .benefits_track p {
    font-size: calc(39px * 1.1);
    margin: 0.5rem 0 0;
    color: rgb(175,156,206);
    position: relative;
    display: inline-block;
    font-weight: 700;
}.statistical_report .benefits_track p::after {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 0;
    background: rgb(113,113,183);
    transition: width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    content: "";
    height: 3px;
    bottom: -5px;
}.statistical_report .benefits_track:hover p::after {
    width: 70%;
}

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

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


@media (max-width: 1200px) {.statistical_report ul {
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}.statistical_report .benefits_track {
    min-height: 160px;
    padding: 1.6rem;
}
}

@media (max-width: 992px) {.statistical_report {
    padding: 3rem 1.5rem;
}.statistical_report h3 {
    font-size: calc(33px * 0.85);
    margin-bottom: 2.5rem;
}.statistical_report ul {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}
}

@media (max-width: 768px) {.statistical_report {
    padding: 2.5rem 1rem;
}.statistical_report h3 {
    margin-bottom: 2rem;
    font-size: calc(33px * 0.8);
}.statistical_report ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}.statistical_report .benefits_track {
    min-height: 150px;
    padding: 1.4rem;
}.statistical_report .benefits_track span {
    font-size: 16px;
}.statistical_report .benefits_track p {
    font-size: 39px;
}
}

@media (max-width: 576px) {.statistical_report {
    padding: 2rem 0.8rem;
}.statistical_report h3 {
    font-size: calc(33px * 0.75);
    margin-bottom: 1.5rem;
}.statistical_report ul {
    gap: 1rem;
    grid-template-columns: 1fr;
}.statistical_report .benefits_track {
    min-height: auto;
    padding: 1.2rem;
}.statistical_report .benefits_track p {
    font-size: calc(39px * 0.9);
}.statistical_report::before,
    .statistical_report::after {
    opacity: 0.3;
}}.privacy_niche {
    padding: 40px;
    font-family: Arial, sans-serif;
    background-color: rgb(216,210,228);
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}.privacy_niche h1 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(175,156,206);
    font-size: 41px;
}.privacy_niche h2 {
    font-size: 35px;
    color: rgb(113,113,183);
    font-weight: 600;
    margin-bottom: 15px;
}.privacy_niche h3,
.privacy_niche h4,
.privacy_niche h5,
.privacy_niche h6 {
    color: rgb(175,156,206);
    font-size: 23px;
    margin-bottom: 10px;
    font-weight: 300;
}.privacy_niche ul,
.privacy_niche ol {
    margin: 0;
    padding: 0 0 0 20px;
}.privacy_niche ul {
    list-style-type: disc;
}.privacy_niche ol {
    list-style-type: decimal;
}.privacy_niche li {
    margin-bottom: 10px;
    color: #000000;
    font-size: 12px;
}.privacy_niche p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 15px;
}.privacy_niche div {
    margin-bottom: 20px;
}.privacy_niche span {
    font-weight: 600;
    color: rgb(175,156,206);
}
@media only screen and (max-width: 800px) {.privacy_niche {
    box-shadow: none;
    padding: 20px;
    border-radius: 10px;
}.privacy_niche h1 {
    font-size: calc(23px * 0.8);
}.privacy_niche h2 {
    font-size: calc(23px * 0.8);
}.privacy_niche ul,
    .privacy_niche ol {
    padding-left: 15px;
}}.program_offerings {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(216,210,228) 0%, #ffffff 100%);
}.program_offerings::before {
    background: linear-gradient(45deg, rgb(175,156,206,0.5) 0%, transparent 70%);
    position: absolute;
    z-index: 0;
    top: 0;
    content: "";
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.1;
}.program_offerings::after {
    top: 0;
    opacity: 0.05;
    z-index: 0;
    content: "";
    right: 0;
    position: absolute;
    height: 100%;
    width: 30%;
    background: linear-gradient(to right, transparent, rgb(113,113,183,0.5));
}.program_offerings .container {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
    position: relative;
}.program_offerings .training_flow {
    position: relative;
    gap: 40px;
    grid-template-columns: 1fr;
    display: grid;
}.program_offerings .photo_album {
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 300px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}.program_offerings .photo_album::before {
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    z-index: 1;
    position: absolute;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    background: linear-gradient(120deg, rgb(175,156,206,0.5) 0%, transparent 60%);
}.program_offerings .photo_album:hover {
    transform: perspective(1000px) rotateY(0deg);
}.program_offerings .photo_album:hover::before {
    opacity: 0.4;
}.program_offerings .text_pod {
    position: relative;
    padding: 30px;
    background: #ffffff;
    transition: transform 0.3s ease;
    transform: translateY(-20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}.program_offerings .text_pod::before {
    height: 0;
    top: 0;
    content: "";
    left: 0;
    transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    width: 5px;
    position: absolute;
    background: rgb(113,113,183);
}.program_offerings .text_pod:hover::before {
    height: 100%;
}.program_offerings h3 {
    transform-origin: left center;
    color: #000000;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    font-size: calc(23px * 1.1);
    font-weight: 700;
    position: relative;
}.program_offerings .text_pod:hover h3 {
    color: rgb(113,113,183);
    transform: translateX(10px);
}.program_offerings .description {
    max-height: 300px;
    color: #000000;
    line-height: 1.7;
    padding-right: 15px;
    font-size: 12px;
    overflow-y: auto;
    margin-bottom: 20px;
    position: relative;
}.program_offerings .description::-webkit-scrollbar {
    width: 5px;
}.program_offerings .description::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgb(216,210,228);
}.program_offerings .description::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(113,113,183,0.5);
}.program_offerings .description::-webkit-scrollbar-thumb:hover {
    background: rgb(113,113,183);
}.program_offerings p.description {
    display: block;
}.program_offerings span.description {
    display: none;
}

@media (max-width: 991px) {.program_offerings {
    padding: 70px 0;
}.program_offerings .photo_album {
    height: 250px;
}.program_offerings h3 {
    font-size: 23px;
}.program_offerings .description {
    max-height: 250px;
}
}

@media (min-width: 992px) {.program_offerings .training_flow {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}.program_offerings .photo_album {
    transform: perspective(1000px) rotateY(-3deg) translateX(-20px);
    height: 500px;
}.program_offerings .text_pod {
    transform: perspective(1000px) rotateY(2deg) translateX(20px);
    padding: 40px 50px;
}.program_offerings .text_pod:hover {
    transform: perspective(1000px) rotateY(0deg) translateX(0);
}.program_offerings h3 {
    font-size: 36px;
    margin-bottom: 30px;
}.program_offerings .description {
    max-height: 400px;
}
}

@media (min-width: 1200px) {.program_offerings .training_flow {
    gap: 80px;
}.program_offerings .photo_album {
    height: 550px;
}.program_offerings .text_pod {
    padding: 50px 60px;
}.program_offerings h3 {
    font-size: calc(36px * 1.1);
}.program_offerings .description {
    line-height: 1.8;
    font-size: calc(12px * 1.05);
    max-height: 450px;
}
}

@media (max-width: 767px) {.program_offerings {
    padding: 50px 0;
}.program_offerings .photo_album {
    transform: perspective(1000px) rotateY(-1deg);
    height: 200px;
}.program_offerings .text_pod {
    padding: 25px;
}.program_offerings h3 {
    font-size: calc(23px * 0.9);
    margin-bottom: 15px;
}.program_offerings .description {
    line-height: 1.6;
    font-size: calc(12px * 0.95);
    max-height: 200px;
}
}