﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}.container {
    max-width: 100%;
    width: 1153px;
    margin: auto;
}.wrapper-viewport {
    min-height: 100%;
    display: flex;
    height: 100%;
    flex-direction: column;
}svg {
    width: 30px;
    height: 30px;
}::-webkit-scrollbar {
    height: 6px;
    width: 20px;
}::-webkit-scrollbar-track {
    background: rgb(105,125,167);
    border-radius: 5.3em;
    margin: 3px 0;
}::-webkit-scrollbar-thumb {
    border: 1px solid rgb(141,161,203);
    background: linear-gradient(198deg, rgb(255, 255, 255, 0.5) 79%, rgb(105,125,167) 15%, rgb(141,161,203) 80%);
    border-radius: 10.8em;
    min-height: 78px;
}::-webkit-scrollbar-thumb:active {
    box-shadow: inset 2px -5px 12px 1px rgba(0, 0, 0, 0.6);
    background: rgb(141,161,203,0.5);
}html {
    scrollbar-width: none;
    scrollbar-color: rgb(255, 255, 255, 0.5) rgb(176,197,239);
}
@media (max-width: 768px) {::-webkit-scrollbar {
    width: 2px;
}::-webkit-scrollbar-thumb {
    background: rgb(105,125,167);
}}

.main_lead {
    flex: 1 0 auto;
}html,body {
    height: 100%;
    font-family: Arial, sans-serif;
    auto
contain
    scroll-behavior: smooth;
    color: #000000;
    min-height: 100%;
}header,footer {
    width: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.fellow_prog {
    flex: 0 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;
}}
.our_story {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}.our_story::before {
    bottom: 0;
    z-index: 1;
    top: 0;
    background: linear-gradient(135deg, rgba(35, 45, 65, 0.92), rgba(25, 35, 55, 0.86));
    left: 0;
    position: absolute;
    right: 0;
    content: "";
}.our_story::after {
    left: 0;
    background-size: 60px 60px;
    animation: patternShift 30s linear infinite;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgb(105,125,167,0.5) 49%, rgb(105,125,167,0.5) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgb(105,125,167,0.5) 49%, rgb(105,125,167,0.5) 51%, transparent 52%);
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    content: "";
    z-index: 2;
    top: 0;
}.our_story .container {
    z-index: 3;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 40px;
    display: grid;
    margin: 0 auto;
}.our_story h2 {
    transform: translateX(-5px);
    color: #ffffff;
    display: inline-block;
    font-weight: 700;
    font-size: calc(31px * 1.2);
    letter-spacing: 0.03em;
    margin-bottom: 15px;
    position: relative;
}.our_story h2::after {
    bottom: -10px;
    background: linear-gradient(90deg, rgb(141,161,203), rgb(105,125,167));
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    height: 3px;
    width: 80px;
    transform-origin: left;
    transform: scaleX(1);
    content: "";
    left: 0;
    position: absolute;
}.our_story .label_container {
    position: relative;
    padding: 40px;
    border-left: 3px solid rgb(141,161,203);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: transform 0.5s ease-out, box-shadow 0.5s ease;
    transform: translateY(0);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}.our_story .label_container::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
    pointer-events: none;
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    z-index: -1;
    content: "";
    height: 100%;
}.our_story .label_container > div {
    flex-direction: column;
    display: flex;
    gap: 20px;
}.our_story .label_container p {
    letter-spacing: 0.05em;
    font-size: calc(21px * 1.1);
    margin-bottom: 10px;
    color: rgb(141,161,203);
    font-weight: 600;
    position: relative;
    display: inline-block;
}.our_story .label_container p::after {
    height: 2px;
    bottom: -5px;
    width: 40px;
    content: "";
    background-color: rgb(105,125,167);
    left: 0;
    position: absolute;
}.our_story .label_container div div {
    column-gap: 40px;
    opacity: 0.9;
    column-count: 1;
    line-height: 1.8;
    color: #ffffff;
    text-align: justify;
    letter-spacing: 0.01em;
    hyphens: auto;
    font-size: 15px;
}.our_story .label_container:hover {
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

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

@media (min-width: 768px) {.our_story {
    padding: 150px 0;
}.our_story .container {
    gap: 60px;
    grid-template-columns: 1fr;
}.our_story h2 {
    transform: translateX(-10px);
    margin-bottom: 30px;
    font-size: calc(31px * 1.5);
}.our_story h2::after {
    height: 4px;
    width: 120px;
}.our_story .label_container {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    padding: 60px;
}.our_story .label_container div div {
    column-count: 2;
}
}

@media (min-width: 1024px) {.our_story {
    padding: 180px 0;
}.our_story .container {
    grid-template-columns: 1fr;
    gap: 80px;
}.our_story h2 {
    letter-spacing: 0.05em;
    font-size: calc(31px * 1.8);
}.our_story .label_container {
    width: calc(100% - 60px);
    margin-left: 60px;
    padding: 70px;
}.our_story .label_container div div {
    line-height: 1.9;
    column-count: 2;
}
}

@media (min-width: 1440px) {.our_story .container {
    max-width: 1400px;
}.our_story .label_container {
    width: calc(100% - 80px);
    margin-left: 80px;
}.our_story .label_container div div {
    column-count: 3;
}
}

@media (max-width: 767px) {.our_story {
    padding: 80px 0;
}.our_story h2 {
    margin-bottom: 30px;
    font-size: 31px;
}.our_story .label_container {
    padding: 30px 20px;
}.our_story .label_container div div {
    line-height: 1.6;
    font-size: calc(15px - 1px);
}
}

@media (max-width: 480px) {.our_story {
    padding: 60px 0;
}.our_story h2 {
    font-size: calc(31px * 0.9);
}.our_story .label_container {
    padding: 25px 15px;
}
}

@media (prefers-reduced-motion: reduce) {.our_story::after {
    animation: none;
}.our_story .label_container {
    transition: none;
}}.locate {
    padding: 5rem 0;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, rgb(176,197,239) 0%, rgba(245, 248, 255, 0.95) 100%);
    position: relative;
}.locate::before {
    top: 0;
    left: 0;
    transform: skewY(-3deg);
    background: linear-gradient(45deg, rgb(141,161,203,0.5) 0%, transparent 70%);
    transform-origin: top left;
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: -1;
}.locate::after {
    height: 60%;
    width: 30%;
    animation: float 15s infinite ease-in-out;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    top: -10%;
    z-index: -1;
    right: -5%;
    position: absolute;
    content: '';
    background: linear-gradient(to right, transparent, rgb(105,125,167,0.5) 70%);
}.locate .container {
    margin: 0 auto;
    position: relative;
    padding: 0 1.5rem;
    max-width: 1200px;
}.locate .contact_map {
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 3rem 2rem;
    transition: transform 0.5s ease-out;
    transform: perspective(1000px) rotateY(2deg);
    position: relative;
    transform-style: preserve-3d;
}.locate .contact_map:hover {
    transform: perspective(1000px) rotateY(0deg);
}.locate h3 {
    font-weight: 700;
    color: rgb(141,161,203);
    position: relative;
    font-size: 29px;
    transform: translateZ(30px);
    margin-bottom: 1.5rem;
    display: inline-block;
}.locate h3::after {
    bottom: -10px;
    width: 40%;
    left: 0;
    height: 3px;
    position: absolute;
    content: '';
    background: rgb(141,161,203);
    transition: width 0.3s ease;
}.locate .contact_map:hover h3::after {
    width: 100%;
}.locate p {
    transition: transform 0.3s ease-out;
    color: #000000;
    max-width: 90%;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}.locate .contact_map > div:first-of-type p {
    padding-left: 1rem;
    border-left: 3px solid rgb(105,125,167);
    font-style: italic;
}.locate h5 {
    font-size: 19px;
    margin-bottom: 0.5rem;
    align-items: center;
    gap: 0.75rem;
    color: #000000;
    display: flex;
    font-weight: 600;
    text-transform: capitalize;
}.locate .help_desk {
    position: relative;
    display: flex;
    gap: 1.25rem;
    margin: 1.5rem 0 0;
    list-style: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-direction: column;
    padding: 1.5rem 0 0;
}.locate .help_desk::before {
    top: -5px;
    background: #ffffff;
    height: 10px;
    width: 50px;
    left: 0;
    content: '';
    position: absolute;
}.locate .help_desk li {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}.locate .help_desk li:hover {
    transform: translateX(10px);
}.locate .instant_help {
    font-weight: 600;
    gap: 0.75rem;
    align-items: center;
    font-size: calc(12px * 0.95);
    display: flex;
    transition: color 0.3s ease;
    text-decoration: none;
    color: #000000;
    text-transform: capitalize;
}.locate .instant_help:hover {
    color: rgb(141,161,203);
}.locate .instant_help svg {
    width: 22px;
    transition: transform 0.3s ease;
    height: 22px;
}.locate .instant_help:hover svg {
    transform: scale(1.2) rotate(5deg);
}.locate svg {
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}.locate svg path {
    transition: fill 0.3s ease;
}.locate .instant_help:hover svg path {
    fill: rgb(141,161,203);
}

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

@media screen and (min-width: 768px) {.locate .contact_map {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    display: grid;
    padding: 4rem 3rem;
}.locate .contact_map > div:first-of-type {
    grid-column: 1 / -1;
}.locate .help_desk {
    justify-content: space-between;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    flex-direction: row;
}.locate h3 {
    margin-bottom: 2rem;
    font-size: calc(29px * 1.2);
}.locate p {
    font-size: calc(12px * 1.05);
}
}

@media screen and (min-width: 992px) {.locate {
    padding: 7rem 0;
}.locate .contact_map {
    grid-template-columns: repeat(12, 1fr);
    padding: 5rem;
}.locate .contact_map > div:first-of-type {
    grid-column: 1 / 9;
}.locate .contact_map > div:nth-of-type(2) {
    grid-column: 9 / 13;
}.locate .help_desk {
    gap: 3rem;
    grid-column: 1 / 13;
    justify-content: flex-start;
}.locate h3 {
    transform: translateZ(50px);
    margin-left: -20px;
}
}

@media (hover: hover) {.locate .contact_map > div:hover p {
    transform: translateX(5px);
}.locate .instant_help:active svg {
    transform: scale(0.9);
}
}

@media (prefers-reduced-motion) {.locate .contact_map,
    .locate .help_desk li,
    .locate svg {
    animation: none !important;
    transform: none !important;
    transition: none;
}.locate::after {
    animation: none;
}}.contact_section {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(125deg, rgb(176,197,239) 0%, rgb(176,197,239) 60%, rgb(141,161,203,0.5) 100%);
    overflow: hidden;
}.contact_section::before {
    content: "";
    background: repeating-radial-gradient(
        circle at 80% 50%,
        rgb(141,161,203,0.5),
        rgb(141,161,203,0.5) 1px,
        transparent 1px,
        transparent 15px
    );
    position: absolute;
    opacity: 0.05;
    height: 100%;
    right: 0;
    top: 0;
    width: 50%;
}.contact_section .container {
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    z-index: 1;
    max-width: 1200px;
}.contact_section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: #000000;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 28px;
}.contact_section h2::before {
    left: 50%;
    background: rgb(141,161,203);
    bottom: -15px;
    width: 60px;
    transform: translateX(-50%);
    position: absolute;
    border-radius: 2px;
    content: "";
    height: 4px;
}.contact_section .reach_map {
    gap: 40px;
    align-items: center;
    grid-template-columns: 1fr 450px;
    background: transparent;
    position: relative;
    display: grid;
}.contact_section .pic_wrap_item {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    border-radius: 23px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    height: 550px;
    transition: transform 0.5s ease;
    overflow: hidden;
}.contact_section .pic_wrap_item:hover {
    transform: perspective(1000px) rotateY(0deg);
}.contact_section .message_links {
    transition: transform 0.5s ease;
    position: relative;
    transform: perspective(1000px) rotateY(5deg);
    border-radius: 23px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}.contact_section .message_links:hover {
    transform: perspective(1000px) rotateY(0deg);
}.contact_section form {
    width: 100%;
}.contact_section form h3 {
    margin-bottom: 30px;
    color: #000000;
    font-family: Arial, sans-serif;
    font-weight: 600;
    font-size: 21px;
}.contact_section form input[type="text"] {
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 17px;
    border-radius: 10px;
    border: none;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    padding: 16px 20px;
    background: rgb(176,197,239);
}.contact_section form input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgb(141,161,203);
}.contact_section form input[type="text"]::placeholder {
    opacity: 0.5;
    color: #000000;
}.contact_section .connect_widget {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}.contact_section .connect_widget input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact_section .connect_widget label {
    position: relative;
    cursor: pointer;
    line-height: 1.5;
    padding-left: 35px;
    font-size: 14px;
    color: #000000;
}.contact_section .connect_widget label::before {
    border-radius: 4px;
    background: rgb(176,197,239);
    content: "";
    width: 22px;
    height: 22px;
    top: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}.contact_section .connect_widget input[type="checkbox"]:checked + label::before {
    background: rgb(141,161,203);
}.contact_section .connect_widget input[type="checkbox"]:checked + label::after {
    position: absolute;
    border-bottom: 2px solid #ffffff;
    height: 10px;
    left: 8px;
    transform: rotate(45deg);
    border-right: 2px solid #ffffff;
    top: 6px;
    content: "";
    width: 6px;
}.contact_section .connect_widget label a {
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgb(141,161,203);
}.contact_section .connect_widget label a:hover {
    color: rgb(105,125,167);
}.contact_section form .inquiry_feedback {
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    overflow: hidden;
    font-family: Arial, sans-serif;
    cursor: pointer;
    padding: 16px 35px;
    border-radius: 10px;
    position: relative;
    color: #ffffff;
    font-size: 20px;
    background: rgb(141,161,203);
}.contact_section form .inquiry_feedback::after {
    top: 0;
    background: rgb(105,125,167);
    z-index: 0;
    transition: width 0.3s ease;
    width: 0;
    right: 0;
    position: absolute;
    height: 100%;
    content: "";
}.contact_section form .inquiry_feedback:hover::after {
    width: 100%;
    right: auto;
    left: 0;
}.contact_section form .inquiry_feedback span {
    position: relative;
    z-index: 1;
}.contact_section svg {
    width: 22px;
    height: 22px;
    fill: rgb(141,161,203);
}.contact_section svg path {
    fill: rgb(141,161,203);
    transition: fill 0.3s ease;
}

@media screen and (max-width: 1100px) {.contact_section .reach_map {
    gap: 30px;
    grid-template-columns: 1fr 400px;
}.contact_section .pic_wrap_item {
    height: 500px;
}.contact_section .message_links {
    padding: 40px;
}
}

@media screen and (max-width: 991px) {.contact_section {
    padding: 80px 0;
}.contact_section .reach_map {
    gap: 40px;
    grid-template-columns: 1fr;
}.contact_section .pic_wrap_item {
    height: 400px;
    transform: perspective(1000px) rotateY(0deg);
}.contact_section .message_links {
    transform: perspective(1000px) rotateY(0deg);
}
}

@media screen and (max-width: 767px) {.contact_section {
    padding: 60px 0;
}.contact_section h2 {
    margin-bottom: 40px;
}.contact_section .pic_wrap_item {
    height: 350px;
}
}

@media screen and (max-width: 576px) {.contact_section {
    padding: 50px 0;
}.contact_section h2 {
    font-size: calc(28px * 0.85);
}.contact_section .pic_wrap_item {
    height: 250px;
}.contact_section .message_links {
    padding: 30px 25px;
}.contact_section form h3 {
    font-size: calc(21px * 0.9);
}.contact_section form .inquiry_feedback {
    width: 100%;
}}.leadership_profile {
    background: rgb(176,197,239);
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}.leadership_profile::before {
    z-index: 1;
    content: "";
    top: 0;
    height: 100%;
    position: absolute;
    left: 0;
    background: linear-gradient(120deg, transparent 30%, rgb(141,161,203,0.5) 100%);
    width: 100%;
}.leadership_profile::after {
    background: rgb(105,125,167,0.5);
    opacity: 0.5;
    right: 0;
    bottom: 0;
    position: absolute;
    height: 70%;
    z-index: 1;
    width: 40%;
    content: "";
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}.leadership_profile .client_feedback {
    grid-template-columns: 1fr 1.5fr;
    position: relative;
    gap: 3rem;
    margin: 0 auto;
    max-width: 1200px;
    display: grid;
    z-index: 2;
}.leadership_profile .pic_wrap_item {
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    aspect-ratio: 3/4;
    position: relative;
    border-radius: 0;
    filter: grayscale(100%);
    width: 100%;
}.leadership_profile .pic_wrap_item::before {
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 70%, 
        rgb(141,161,203,0.5) 100%);
    position: absolute;
    z-index: 1;
    content: "";
}.leadership_profile .pic_wrap_item:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}.leadership_profile .past_jobs {
    justify-content: center;
    display: flex;
    position: relative;
    padding: 2rem;
    flex-direction: column;
}.leadership_profile .past_jobs::before {
    height: 0;
    width: 2px;
    left: 0;
    top: 0;
    transition: height 0.8s ease-out;
    background: rgb(141,161,203);
    position: absolute;
    content: "";
}.leadership_profile .client_feedback:hover .past_jobs::before {
    height: 100%;
}.leadership_profile .name {
    font-size: 41px;
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: 700;
    color: #000000;
    overflow: hidden;
}.leadership_profile .name::after {
    position: absolute;
    height: 1px;
    transform: translateX(-101%);
    transition: transform 0.6s ease-out 0.2s;
    width: 100%;
    background: rgb(105,125,167);
    bottom: 0;
    content: "";
    left: 0;
}.leadership_profile .client_feedback:hover .name::after {
    transform: translateX(0);
}.leadership_profile .past_jobs > div:nth-child(2) {
    color: rgb(105,125,167);
    font-size: 24px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    transition: all 0.5s ease-out 0.4s;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 3px;
}.leadership_profile .client_feedback:hover .past_jobs > div:nth-child(2) {
    transform: translateY(0);
    opacity: 1;
}.leadership_profile .career_timeline {
    font-weight: 300;
    transform: translateY(20px);
    color: #000000;
    line-height: 1.8;
    position: relative;
    padding: 0 0 0 20px;
    font-size: 15px;
    opacity: 0;
    transition: all 0.5s ease-out 0.6s;
}.leadership_profile .client_feedback:hover .career_timeline {
    transform: translateY(0);
    opacity: 1;
}.leadership_profile .career_timeline::first-letter {
    font-weight: 700;
    font-size: 1.5em;
    color: rgb(141,161,203);
}@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent }
}

.leadership_profile:hover .name {
    overflow: hidden;
    white-space: nowrap;
    animation: 
        typing 2.5s steps(40, end),
        blink .75s step-end infinite;
}

@media (max-width: 992px) {.leadership_profile .client_feedback {
    gap: 2rem;
    grid-template-columns: 1fr;
}.leadership_profile .pic_wrap_item {
    aspect-ratio: 16/9;
    max-height: 300px;
}.leadership_profile .past_jobs {
    padding: 1rem 0;
}.leadership_profile .past_jobs::before {
    height: 2px;
    width: 0;
    transition: width 0.8s ease-out;
}.leadership_profile .client_feedback:hover .past_jobs::before {
    width: 100%;
    height: 2px;
}}.program_assets {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: #f8f9fa;
}.program_assets::before {
    background: linear-gradient(135deg, rgb(141,161,203,0.5) 0%, transparent 60%);
    content: "";
    width: 100%;
    z-index: 1;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
}.program_assets::after {
    content: "";
    height: 200px;
    background: rgb(105,125,167,0.5);
    z-index: 0;
    right: -50px;
    position: absolute;
    top: -50px;
    width: 200px;
    border-radius: 50%;
    filter: blur(70px);
}.program_assets h5 {
    color: #000000;
    position: relative;
    margin-bottom: 50px;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-align: center;
    font-size: 20px;
    transform: translateY(-5px);
    font-weight: 700;
    z-index: 2;
}.program_assets h5::after {
    left: 50%;
    content: "";
    background: linear-gradient(90deg, rgb(141,161,203), rgb(105,125,167));
    position: absolute;
    height: 4px;
    border-radius: 10px;
    transform: translateX(-50%);
    width: 80px;
    bottom: -15px;
}.program_assets .container {
    z-index: 2;
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}.program_assets .training_track {
    flex-direction: column;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05),
                -20px -20px 60px rgba(255, 255, 255, 0.9),
                inset 5px 5px 10px rgba(255, 255, 255, 0.8),
                inset -5px -5px 10px rgba(0, 0, 0, 0.03);
    padding: 30px;
    background: #ffffff;
    display: flex;
    transform: perspective(1000px) rotateX(2deg);
}.program_assets .training_track:hover {
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.07),
                -25px -25px 70px rgba(255, 255, 255, 1),
                inset 5px 5px 10px rgba(255, 255, 255, 0.9),
                inset -5px -5px 10px rgba(0, 0, 0, 0.04);
    transform: perspective(1000px) rotateX(0deg);
}.program_assets .pic_wrap_item {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease;
    position: relative;
    border-radius: 8px;
    margin-bottom: 30px;
    z-index: 1;
    width: 100%;
    height: 250px;
}.program_assets .training_track:hover .pic_wrap_item {
    transform: translateY(-5px);
    box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.15);
}.program_assets .label_container {
    flex: 1;
    padding: 20px 10px;
}.program_assets ul {
    list-style: none;
    gap: 22px;
    display: grid;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0;
}.program_assets li {
    padding: 16px 20px;
    box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.03),
                -8px -8px 16px rgba(255, 255, 255, 0.7),
                inset 1px 1px 2px rgba(255, 255, 255, 0.9);
    position: relative;
    transform: translateZ(0);
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 10px;
    transition: all 0.3s ease;
}.program_assets li:hover {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05),
                -10px -10px 20px rgba(255, 255, 255, 0.8),
                inset 1px 1px 2px rgba(255, 255, 255, 1);
    transform: translateY(-3px) translateZ(0);
}.program_assets li:nth-child(odd) {
    transform: translateX(-5px) translateZ(0);
}.program_assets li:nth-child(even) {
    transform: translateX(5px) translateZ(0);
}.program_assets li:nth-child(odd):hover {
    transform: translateX(-5px) translateY(-3px) translateZ(0);
}.program_assets li:nth-child(even):hover {
    transform: translateX(5px) translateY(-3px) translateZ(0);
}.program_assets li p {
    display: flex;
    margin: 0;
    font-size: 17px;
    color: #000000;
    align-items: flex-start;
    line-height: 1.5;
}.program_assets li svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
    height: 22px;
    width: 22px;
    margin-right: 12px;
}.program_assets li:hover svg {
    transform: scale(1.1) rotate(5deg);
}.program_assets li svg path {
    transition: fill 0.3s ease;
    fill: rgb(141,161,203);
}.program_assets li:hover svg path:first-child {
    fill: rgb(141,161,203);
}.program_assets li:hover svg path:last-child {
    fill: rgb(105,125,167);
}

@media (min-width: 768px) {.program_assets {
    padding: 150px 0 100px;
}.program_assets .training_track {
    flex-direction: row;
    padding: 40px;
    align-items: center;
    gap: 40px;
}.program_assets .training_track > div:first-child {
    flex: 0 0 45%;
}.program_assets .pic_wrap_item {
    height: 350px;
    clip-path: polygon(0 0, 100% 5%, 95% 100%, 0% 95%);
    margin-bottom: 0;
}.program_assets .label_container {
    padding: 0;
    flex: 1;
}.program_assets ul {
    gap: 25px 20px;
    grid-template-columns: repeat(2, 1fr);
}.program_assets h5 {
    margin-bottom: 60px;
    font-size: calc(20px * 1.2);
}.program_assets h5::after {
    width: 100px;
}
}

@media (max-width: 767px) {.program_assets {
    padding: 80px 0 60px;
}.program_assets h5 {
    line-height: 1.4;
    padding: 0 20px;
}.program_assets .training_track {
    padding: 25px 20px;
}.program_assets li {
    padding: 15px;
}.program_assets li p {
    font-size: calc(17px * 0.95);
}.program_assets li svg {
    height: 20px;
    width: 20px;
}
}

@media (min-width: 992px) {.program_assets .training_track {
    padding: 50px;
}.program_assets .pic_wrap_item {
    transition: clip-path 0.6s ease-in-out, transform 0.6s ease, box-shadow 0.6s ease;
    clip-path: polygon(0 0, 100% 8%, 92% 100%, 0% 92%);
}.program_assets .training_track:hover .pic_wrap_item {
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
}.program_assets li:nth-child(1) {
    animation: fadeInUp 0.5s 0.1s backwards;
}.program_assets li:nth-child(2) {
    animation: fadeInUp 0.5s 0.2s backwards;
}.program_assets li:nth-child(3) {
    animation: fadeInUp 0.5s 0.3s backwards;
}.program_assets li:nth-child(4) {
    animation: fadeInUp 0.5s 0.4s backwards;
}.program_assets li:nth-child(5) {
    animation: fadeInUp 0.5s 0.5s backwards;
}
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (min-width: 1200px) {.program_assets .container {
    max-width: 1300px;
}.program_assets h5 {
    font-size: calc(20px * 1.3);
}.program_assets .training_track > div:first-child {
    flex: 0 0 40%;
}.program_assets .pic_wrap_item {
    height: 400px;
}}.user_comments {
    overflow: hidden;
    background: radial-gradient(circle at 70% 30%, rgb(105,125,167,0.5) 0%, rgb(176,197,239) 70%);
    position: relative;
    padding: 140px 0 160px;
}.user_comments::before {
    border-radius: 50%;
    content: "";
    width: 150vw;
    position: absolute;
    animation: rotateBackground 60s linear infinite;
    background: conic-gradient(
        from 0deg, 
        transparent 0deg,
        rgb(141,161,203,0.5) 10deg,
        transparent 20deg,
        transparent 70deg,
        rgb(105,125,167,0.5) 80deg,
        transparent 90deg,
        transparent 180deg,
        rgb(141,161,203,0.5) 190deg,
        transparent 200deg,
        transparent 250deg,
        rgb(105,125,167,0.5) 260deg,
        transparent 270deg,
        transparent 360deg
    );
    left: 50%;
    top: 50%;
    height: 150vw;
    opacity: 0.1;
    transform: translate(-50%, -50%);
}@keyframes rotateBackground {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.user_comments .training_track {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}.user_comments h4 {
    font-size: 37px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    color: #000000;
    margin-bottom: 100px;
    text-align: center;
    position: relative;
}.user_comments h4::before,
.user_comments h4::after {
    content: "";
    background: rgb(141,161,203);
    position: absolute;
    height: 3px;
    bottom: -20px;
}.user_comments h4::before {
    width: 80px;
    left: calc(50% - 100px);
}.user_comments h4::after {
    right: calc(50% - 100px);
    width: 80px;
}.user_comments .feedback_story {
    position: relative;
    gap: 40px;
    max-width: 1100px;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
    display: grid;
}.user_comments .feedback_story::before {
    opacity: 0.5;
    left: 50%;
    width: 100%;
    z-index: -1;
    top: 50%;
    content: "";
    height: 100%;
    transform: translate(-50%, -50%) scale(1.05);
    border: 2px dashed rgb(141,161,203,0.5);
    border-radius: 24px;
    position: absolute;
}.user_comments .client_feedback {
    padding: 0;
    align-items: center;
    flex-direction: column;
    display: flex;
    position: relative;
    width: 100%;
    transition: all 0.4s ease;
}.user_comments .client_feedback:hover {
    z-index: 5;
    transform: translateY(-10px) scale(1.03);
}.user_comments .client_feedback .pic_wrap_item {
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    width: 80px;
    transition: all 0.3s ease;
    border: 4px solid #ffffff;
    position: relative;
    margin-bottom: 15px;
}.user_comments .client_feedback:hover .pic_wrap_item {
    box-shadow: 0 8px 25px rgb(141,161,203,0.5);
    transform: scale(1.1);
}.user_comments .client_feedback::after {
    transform: translateX(-50%);
    left: 50%;
    z-index: 1;
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, rgb(141,161,203,0.5), transparent);
    top: 70px;
    content: "";
}.user_comments .client_feedback span {
    font-size: 16px;
    text-align: center;
    display: block;
    position: relative;
    padding: 0 10px;
    font-weight: 600;
    color: #000000;
    font-family: Arial, sans-serif;
    z-index: 2;
    margin-bottom: 10px;
}.user_comments .client_feedback p {
    border-radius: 24px;
    padding: 20px;
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    font-family: Arial, sans-serif;
    position: relative;
    transition: all 0.3s ease;
    background: #ffffff;
    line-height: 1.5;
    font-size: 12px;
    text-align: center;
    width: 100%;
    font-weight: 400;
    z-index: 2;
}.user_comments .client_feedback:hover p {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}.user_comments .client_feedback p::before {
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    left: 50%;
    top: -10px;
    content: "";
    position: absolute;
    transform: translateX(-50%);
}.user_comments .client_feedback:last-child:nth-child(3n-1) {
    grid-column: 2;
}.user_comments .client_feedback:last-child:nth-child(3n-2) {
    grid-column: 2;
}

@media (max-width: 1200px) {.user_comments .feedback_story {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
}.user_comments .client_feedback {
    width: 100%;
}.user_comments .client_feedback:last-child:nth-child(2n-1) {
    grid-column: 1 / span 2;
    margin: 0 auto;
    width: 80%;
}
}

@media (max-width: 768px) {.user_comments {
    padding: 80px 0 100px;
}.user_comments .feedback_story {
    grid-template-columns: 1fr;
    gap: 40px;
}.user_comments .client_feedback {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}.user_comments .client_feedback:last-child:nth-child(2n-1) {
    width: 100%;
    grid-column: 1;
}.user_comments .client_feedback:hover {
    transform: translateY(-5px);
}.user_comments h4 {
    margin-bottom: 50px;
}}header {
    z-index: 99;
    overflow: visible;
    background: #ffffff;
    position: relative;
    width: 100%;
}header::before {
    left: 0;
    background: linear-gradient(to right, rgb(141,161,203), rgb(105,125,167));
    top: 0;
    height: 5px;
    position: absolute;
    content: "";
    width: 100%;
}header .first_class {
    padding: 25px 30px;
    align-items: center;
    position: relative;
    display: flex;
    justify-content: space-between;
}header .first_class::after {
    width: 100%;
    height: 1px;
    left: 0;
    background-color: rgb(176,197,239);
    bottom: 0;
    content: "";
    position: absolute;
}header .first_class .top_header {
    position: relative;
    z-index: 2;
}header .first_class .top_header .top_nav {
    position: relative;
    overflow: hidden;
    display: block;
}header .first_class .top_header .top_nav svg {
    height: 40px;
    width: auto;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}header .first_class .top_header .top_nav:hover svg {
    transform: scale(1.08);
}header .first_class .main_base {
    display: flex;
    padding: 0;
    list-style: none;
    margin: 0;
}header .first_class .main_base .nav_wrap {
    margin: 0 15px;
    position: relative;
}header .first_class .main_base .nav_wrap:last-child {
    margin-right: 0;
}header .first_class .main_base .nav_wrap a {
    padding: 8px 0;
    font-weight: 400;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
    color: #000000;
    display: block;
    letter-spacing: 0.5px;
    text-decoration: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}header .first_class .main_base .nav_wrap a:hover {
    color: rgb(141,161,203);
    letter-spacing: 1px;
}header .first_class .main_base .nav_wrap a::before,
header .first_class .main_base .nav_wrap a::after {
    position: absolute;
    bottom: 0;
    background-color: rgb(141,161,203);
    left: 0;
    height: 1px;
    transform-origin: right center;
    content: "";
    width: 100%;
}header .first_class .main_base .nav_wrap a::before {
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}header .first_class .main_base .nav_wrap a::after {
    background-color: rgb(105,125,167);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
    transform-origin: left center;
}header .first_class .main_base .nav_wrap a:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
}header .first_class .main_base .nav_wrap a:hover::after {
    transform-origin: right center;
    transform: scaleX(1);
}header .first_class .main_base .nav_wrap a::after {
    height: 3px;
    opacity: 0.3;
    bottom: -2px;
}header .first_class .main_base .nav_wrap:hover {
    animation: subtle-float 2s infinite alternate ease-in-out;
}

@keyframes subtle-float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-4px);
    }
}

@media (max-width: 992px) {header .first_class {
    flex-direction: column;
    padding: 20px 15px;
}header .first_class .top_header {
    margin-bottom: 20px;
}header .first_class .main_base {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}header .first_class .main_base .nav_wrap {
    margin: 5px 12px;
}header .first_class .main_base .nav_wrap a {
    font-size: calc(14px - 1px);
    padding: 5px 0;
}
    
    @keyframes subtle-float {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-2px);
        }
    }
}

@media (max-width: 767px) {header .first_class {
    padding: 15px 10px;
}header .first_class .top_header {
    margin-bottom: 15px;
}header .first_class .top_header .top_nav svg {
    height: 35px;
}header .first_class .main_base {
    gap: 5px;
}header .first_class .main_base .nav_wrap {
    margin: 2px 10px;
}}.privacy_compartment {
    height: 100%;
    background-color: rgb(141,161,203,0.5);
    font-family: Arial, sans-serif;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    padding: 40px;
    width: 100%;
}.privacy_compartment h1 {
    padding-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 40px;
    color: #ffffff;
    border-bottom: 2px solid rgb(105,125,167);
}.privacy_compartment h2 {
    font-size: 31px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 35px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: rgb(105,125,167);
}.privacy_compartment h3, .privacy_compartment h4, .privacy_compartment h5, .privacy_compartment h6 {
    margin-top: 25px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000000;
    font-size: 20px;
}.privacy_compartment ul, .privacy_compartment ol {
    padding-left: 20px;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    list-style-position: inside;
}.privacy_compartment li {
    color: #000000;
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
    font-size: 12px;
    margin-bottom: 15px;
}.privacy_compartment section {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 20px;
    background: #ffffff;
}.privacy_compartment p, .privacy_compartment span, .privacy_compartment div {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: rgb(141,161,203,0.5);
    border-left: 3px solid rgb(141,161,203);
    margin-bottom: 10px;
    line-height: 1.8;
    font-weight: 300;
    color: #000000;
}

@media only screen and (max-width: 800px) {.privacy_compartment {
    padding: 20px;
}.privacy_compartment h1 {
    font-size: calc(20px - 10%);
}.privacy_compartment h2 {
    font-size: calc(20px - 10%);
}.privacy_compartment h3, .privacy_compartment h4, .privacy_compartment h5, .privacy_compartment h6 {
    font-size: calc(20px - 10%);
}.privacy_compartment li {
    font-size: calc(12px - 10%);
}}.training_method {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(176,197,239) 0%, rgba(255,255,255,0.92) 100%);
    position: relative;
    padding: 120px 0;
}.training_method::before {
    z-index: 0;
    width: 300px;
    height: 300px;
    right: -5%;
    opacity: 0.1;
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(to right, rgb(141,161,203,0.5), rgb(105,125,167));
    top: -5%;
    content: "";
    animation: floatElement 15s ease-in-out infinite alternate;
}.training_method::after {
    width: 250px;
    border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
    position: absolute;
    background: linear-gradient(to left, rgb(105,125,167,0.5), rgb(141,161,203));
    content: "";
    height: 250px;
    z-index: 0;
    opacity: 0.08;
    left: -5%;
    bottom: -10%;
    animation: floatElement 18s ease-in-out infinite alternate-reverse;
}.training_method .container {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    padding: 3rem;
    transform: perspective(1500px) rotateY(2deg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03), 
                0 1px 5px rgba(0,0,0,0.02),
                0 20px 40px rgba(0,0,0,0.04);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    backdrop-filter: blur(4px);
}.training_method .container:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 
                0 3px 10px rgba(0,0,0,0.03),
                0 30px 60px rgba(0,0,0,0.06);
    transform: perspective(1500px) rotateY(0deg);
}.training_method h3 {
    transform: translateX(-10px);
    animation: slideInText 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    opacity: 0;
    font-size: calc(31px * 0.9);
    color: #000000;
}.training_method h3::after {
    width: 60px;
    animation: expandLine 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s forwards;
    content: "";
    height: 3px;
    transform: scaleX(0);
    left: 0;
    bottom: -10px;
    transform-origin: left;
    position: absolute;
    background: linear-gradient(to right, rgb(141,161,203), rgb(105,125,167));
}.training_method p {
    animation: fadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
    font-size: 12px;
    opacity: 0;
    max-width: 800px;
    position: relative;
    margin-top: 2rem;
    transform: translateY(20px);
    color: #000000;
    line-height: 1.8;
}.training_method p span {
    position: relative;
    display: inline-block;
    background: linear-gradient(120deg, transparent 0%, rgba(var(--primary-color-rgb), 0.03) 30%, transparent 70%);
    padding: 0.5rem 1rem;
    border-left: 2px solid rgb(141,161,203,0.5);
}.training_method .training_track {
    margin: 0 auto;
    position: relative;
    max-width: 1100px;
}

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

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

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

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


@media (max-width: 992px) {.training_method {
    padding: 80px 0;
}.training_method .container {
    transform: perspective(1200px) rotateY(1deg);
    padding: 2rem;
}.training_method h3 {
    font-size: calc(31px * 0.85);
}
}

@media (max-width: 768px) {.training_method {
    padding: 60px 0;
}.training_method .container {
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transform: none;
}.training_method::before,
    .training_method::after {
    width: 150px;
    height: 150px;
}.training_method h3 {
    font-size: calc(31px * 0.75);
}.training_method p {
    font-size: calc(12px * 0.95);
    margin-top: 1.5rem;
    line-height: 1.7;
}
}

@media (max-width: 576px) {.training_method {
    padding: 40px 0;
}.training_method .container {
    padding: 1.25rem;
}.training_method h3 {
    margin-bottom: 1.25rem;
    font-size: calc(31px * 0.7);
}.training_method h3::after {
    height: 2px;
    width: 50px;
}.training_method p {
    font-size: calc(12px * 0.9);
    margin-top: 1.25rem;
    line-height: 1.6;
}.training_method p span {
    padding: 0.35rem 0.75rem;
}}footer {
    position: relative;
    width: 100%;
}footer .fellow_prog {
    padding: 80px 0 30px;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background: linear-gradient(135deg, rgb(141,161,203), rgb(105,125,167));
    position: relative;
}footer .fellow_prog::before {
    position: absolute;
    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%);
    top: 0;
    height: 100%;
    left: 0;
    content: "";
}footer .blog_ref {
    z-index: 1;
    position: relative;
}footer .ask_for_help {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
    justify-content: center;
    display: flex;
}footer .info_item {
    flex: 0 1 220px;
    padding: 20px;
    border-radius: 50%;
    z-index: 1;
    background-color: rgb(141,161,203,0.5);
    height: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    align-items: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    display: flex;
    position: relative;
    justify-content: 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 {
    z-index: 2;
    transform: scale(1.05) translateY(0);
    background-color: rgb(105,125,167,0.5);
}footer .info_item svg {
    margin-right: 10px;
    fill: #ffffff;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
}footer .info_item p,
footer .info_item a {
    text-align: center;
    font-size: 17px;
    color: #ffffff;
    text-decoration: none;
    max-width: 80%;
}footer .info_item a:hover {
    text-decoration: underline;
}footer .text_main_holder {
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    justify-content: center;
    display: flex;
}footer .top_header, footer .main_base, footer .subscribe_holder {
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    background-color: rgb(141,161,203,0.5);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    align-items: center;
    flex-direction: column;
    flex: 1 1 300px;
    text-align: center;
    border-radius: 13px;
    max-width: 400px;
    padding: 30px;
}footer .top_header:hover, footer .main_base:hover, footer .subscribe_holder:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background-color: rgb(105,125,167,0.5);
    transform: translateY(-10px);
}footer .top_header::before, footer .main_base::before, footer .subscribe_holder::before {
    width: 150px;
    border-radius: 50%;
    z-index: -1;
    content: "";
    opacity: 0.1;
    position: absolute;
    height: 150px;
}footer .top_header::before {
    left: -50px;
    background-color: rgb(141,161,203);
    top: -50px;
}footer .main_base::before {
    bottom: -50px;
    background-color: rgb(105,125,167);
    right: -50px;
}footer .subscribe_holder::before {
    bottom: -50px;
    left: -50px;
    background-color: rgb(141,161,203);
}footer .top_header svg {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}footer .ar_tools {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
}footer .main_base h5, footer .subscribe_holder h5 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    color: #ffffff;
    display: inline-block;
}footer .main_base h5::after, footer .subscribe_holder h5::after {
    transition: width 0.3s ease;
    bottom: -8px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    background-color: #ffffff;
    content: "";
    height: 2px;
    width: 40px;
}footer .main_base:hover h5::after, footer .subscribe_holder:hover h5::after {
    width: 80px;
}footer .head_primary {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    max-width: 300px;
}footer .head_primary a {
    background-color: rgb(141,161,203,0.5);
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 17px;
    transition: all 0.3s ease;
    color: #ffffff;
}footer .head_primary a:hover {
    transform: translateY(-3px);
    background-color: rgb(105,125,167,0.5);
}footer .subscribe_holder p {
    margin-bottom: 25px;
    max-width: 300px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}footer .input_holder {
    display: flex;
    max-width: 300px;
    gap: 15px;
    flex-direction: column;
    align-items: center;
    width: 100%;
}footer .input_holder input[type="email"] {
    text-align: center;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 17px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    color: #ffffff;
    width: 100%;
}footer .input_holder input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 3px rgb(141,161,203,0.5);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .mail_join {
    color: #ffffff;
    width: 100%;
    background-color: rgb(141,161,203);
    transition: all 0.3s ease;
    padding: 15px 20px;
    font-size: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}footer .mail_join:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: rgb(105,125,167);
}footer .knowl_base {
    margin-top: 60px;
    position: relative;
    text-align: center;
}footer .student_aid {
    display: inline-block;
    background-color: rgb(141,161,203,0.5);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 20px;
    backdrop-filter: blur(5px);
    font-size: 14px;
    border-radius: 10px;
}

@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 .fellow_prog {
    padding: 60px 0 30px;
}footer .ask_for_help {
    margin-bottom: 40px;
    flex-direction: column;
}footer .info_item {
    flex: 0 1 100px;
    padding: 15px;
    height: 100px;
}footer .top_header, footer .main_base, footer .subscribe_holder {
    padding: 25px 20px;
}footer .knowl_base {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .fellow_prog {
    padding: 50px 0 20px;
}footer .info_item {
    flex: 0 1 90px;
    height: 90px;
}footer .info_item p, footer .info_item a {
    font-size: calc(17px - 1px);
}footer .main_base h5, footer .subscribe_holder h5 {
    font-size: calc(24px - 2px);
}footer .head_primary a {
    padding: 6px 12px;
    font-size: calc(17px - 1px);
}footer .input_holder input[type="email"],
    footer .mail_join {
    padding: 12px 15px;
}footer .student_aid {
    padding: 6px 15px;
}}.title_screen {
    overflow: hidden;
    width: 100%;
    background: rgb(105,125,167);
    position: relative;
    min-height: 100vh;
}.title_screen::before {
    top: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
    left: 0;
    background: 
        linear-gradient(0deg, #000000 0%, transparent 100%),
        radial-gradient(circle at 20% 80%, rgb(141,161,203,0.5) 0%, transparent 40%);
    content: "";
    height: 100%;
}.title_screen .training_track {
    position: relative;
    display: grid;
    grid-template-rows: 1fr;
    height: 100vh;
    z-index: 2;
    width: 100%;
    grid-template-columns: 1fr 1fr;
}.title_screen .edu_title {
    width: 100%;
    height: 100%;
    position: relative;
    grid-row: 1;
    grid-column: 1 / 3;
}.title_screen .edu_title input {
    display: none;
}.title_screen .page_title {
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    position: absolute;
}.title_screen .edu_online {
    inset: 0;
    transform: scale(1.2);
    transition: opacity 1.2s ease, transform 1.2s ease;
    z-index: 1;
    position: absolute;
    opacity: 0;
}.title_screen .edu_online img {
    filter: grayscale(0.3) contrast(1.1);
    object-fit: cover;
    width: 100%;
    height: 100%;
}.title_screen .edu_title input:nth-child(1):checked ~ .page_title .edu_online:nth-child(1),
.title_screen .edu_title input:nth-child(2):checked ~ .page_title .edu_online:nth-child(2),
.title_screen .edu_title input:nth-child(3):checked ~ .page_title .edu_online:nth-child(3),
.title_screen .edu_title input:nth-child(4):checked ~ .page_title .edu_online:nth-child(4),
.title_screen .edu_title input:nth-child(5):checked ~ .page_title .edu_online:nth-child(5),
.title_screen .edu_title input:nth-child(6):checked ~ .page_title .edu_online:nth-child(6),
.title_screen .edu_title input:nth-child(7):checked ~ .page_title .edu_online:nth-child(7),
.title_screen .edu_title input:nth-child(8):checked ~ .page_title .edu_online:nth-child(8),
.title_screen .edu_title input:nth-child(9):checked ~ .page_title .edu_online:nth-child(9),
.title_screen .edu_title input:nth-child(10):checked ~ .page_title .edu_online:nth-child(10) {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}.title_screen .learn_skillspro {
    right: 40px;
    z-index: 10;
    flex-direction: column;
    position: absolute;
    gap: 10px;
    display: flex;
    top: 50%;
    transform: translateY(-50%);
}.title_screen .learn_skillspro label {
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    height: 5px;
    width: 35px;
    background: #ffffff;
    display: block;
}.title_screen .learn_skillspro label::before {
    background: rgb(141,161,203);
    height: 100%;
    position: absolute;
    left: 0;
    content: "";
    width: 0;
    transition: width 0.5s ease;
    top: 0;
}.title_screen .edu_title input:nth-child(1):checked ~ .learn_skillspro label:nth-child(1)::before,
.title_screen .edu_title input:nth-child(2):checked ~ .learn_skillspro label:nth-child(2)::before,
.title_screen .edu_title input:nth-child(3):checked ~ .learn_skillspro label:nth-child(3)::before,
.title_screen .edu_title input:nth-child(4):checked ~ .learn_skillspro label:nth-child(4)::before,
.title_screen .edu_title input:nth-child(5):checked ~ .learn_skillspro label:nth-child(5)::before,
.title_screen .edu_title input:nth-child(6):checked ~ .learn_skillspro label:nth-child(6)::before,
.title_screen .edu_title input:nth-child(7):checked ~ .learn_skillspro label:nth-child(7)::before,
.title_screen .edu_title input:nth-child(8):checked ~ .learn_skillspro label:nth-child(8)::before,
.title_screen .edu_title input:nth-child(9):checked ~ .learn_skillspro label:nth-child(9)::before,
.title_screen .edu_title input:nth-child(10):checked ~ .learn_skillspro label:nth-child(10)::before {
    width: 100%;
}.title_screen .edu_title input:nth-child(1):checked ~ .learn_skillspro label:nth-child(1),
.title_screen .edu_title input:nth-child(2):checked ~ .learn_skillspro label:nth-child(2),
.title_screen .edu_title input:nth-child(3):checked ~ .learn_skillspro label:nth-child(3),
.title_screen .edu_title input:nth-child(4):checked ~ .learn_skillspro label:nth-child(4),
.title_screen .edu_title input:nth-child(5):checked ~ .learn_skillspro label:nth-child(5),
.title_screen .edu_title input:nth-child(6):checked ~ .learn_skillspro label:nth-child(6),
.title_screen .edu_title input:nth-child(7):checked ~ .learn_skillspro label:nth-child(7),
.title_screen .edu_title input:nth-child(8):checked ~ .learn_skillspro label:nth-child(8),
.title_screen .edu_title input:nth-child(9):checked ~ .learn_skillspro label:nth-child(9),
.title_screen .edu_title input:nth-child(10):checked ~ .learn_skillspro label:nth-child(10) {
    width: 50px;
    opacity: 1;
}.title_screen .label_container {
    bottom: 15%;
    border-left: 4px solid rgb(141,161,203);
    left: 10%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 5;
    position: absolute;
    backdrop-filter: blur(8px);
    padding: 40px;
    width: 45%;
}.title_screen .label_container .container {
    padding: 0;
    width: 100%;
}.title_screen .label_container h1 {
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-size: 39px;
    font-weight: 700;
    color: #ffffff;
}.title_screen .label_container h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 23px;
    color: rgb(141,161,203);
}.title_screen .label_container p {
    margin-bottom: 0;
    opacity: 0.9;
    line-height: 1.7;
    color: #ffffff;
    font-size: 18px;
}.title_screen .edu_online::after {
    z-index: 1;
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 60%,
        rgb(105,125,167,0.5) 100%
    );
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title_screen .label_container h1 {
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}.title_screen .label_container h3 {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
    transform: translateY(20px);
}.title_screen .label_container p {
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out 0.9s forwards;
    opacity: 0;
}.title_screen .label_container::before {
    right: 0;
    border-top: 2px solid rgb(141,161,203);
    top: 0;
    height: 20px;
    border-right: 2px solid rgb(141,161,203);
    position: absolute;
    width: 20px;
    content: "";
}.title_screen .label_container::after {
    left: 0;
    bottom: 0;
    position: absolute;
    width: 20px;
    border-left: 2px solid rgb(141,161,203);
    content: "";
    border-bottom: 2px solid rgb(141,161,203);
    height: 20px;
}

@media (max-width: 1200px) {.title_screen .label_container {
    width: 50%;
}
}

@media (max-width: 992px) {.title_screen .label_container {
    left: 5%;
    width: 60%;
    padding: 30px;
}.title_screen .label_container h1 {
    font-size: calc(39px * 0.9);
}.title_screen .learn_skillspro {
    right: 30px;
}.title_screen .learn_skillspro label {
    width: 30px;
}.title_screen .edu_title input:checked ~ .learn_skillspro label {
    width: 45px;
}
}

@media (max-width: 768px) {.title_screen .training_track {
    display: block;
}.title_screen .label_container {
    transform: translateX(-50%);
    padding: 25px;
    width: 80%;
    left: 50%;
    bottom: 10%;
}.title_screen .label_container h1 {
    font-size: calc(39px * 0.8);
}.title_screen .label_container h3 {
    font-size: calc(23px * 0.9);
    margin-bottom: 15px;
}.title_screen .learn_skillspro {
    right: auto;
    transform: translateX(-50%);
    left: 50%;
    bottom: 25%;
    top: auto;
    flex-direction: row;
}
}

@media (max-width: 576px) {.title_screen .label_container {
    padding: 20px;
    width: 90%;
    bottom: 15%;
}.title_screen .label_container h1 {
    margin-bottom: 10px;
    font-size: calc(39px * 0.7);
}.title_screen .label_container h3 {
    margin-bottom: 10px;
    font-size: calc(23px * 0.8);
}.title_screen .label_container p {
    line-height: 1.5;
    font-size: calc(18px * 0.9);
}.title_screen .learn_skillspro {
    gap: 8px;
    bottom: 30%;
}.title_screen .learn_skillspro label {
    width: 25px;
    height: 4px;
}.title_screen .edu_title input:checked ~ .learn_skillspro label {
    width: 35px;
}.title_screen .label_container::before,
    .title_screen .label_container::after {
    height: 15px;
    width: 15px;
}}

.title_screen .edu_title input:checked ~ .page_title .edu_online img {
    animation: slowZoom 20s linear infinite alternate;
}@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}.thanksPage {
    position: relative;
    background: linear-gradient(135deg, rgb(176,197,239), rgb(105,125,167,0.5) 120%);
    overflow: hidden;
    padding: 6rem 2rem;
}.thanksPage::before {
    height: 100%;
    top: 0;
    opacity: 0.4;
    width: 100%;
    content: "";
    left: 0;
    background: radial-gradient(circle at 75% 25%, rgb(141,161,203,0.5) 0%, transparent 60%);
    position: absolute;
    z-index: 0;
}.thanksPage::after {
    opacity: 0.1;
    bottom: -10%;
    position: absolute;
    height: 60%;
    right: -5%;
    content: "";
    z-index: 0;
    animation: float 15s ease-in-out infinite;
    background: linear-gradient(225deg, rgb(105,125,167) 0%, transparent 70%);
    transform: rotate(-15deg);
    width: 40%;
}.thanksPage .container {
    z-index: 1;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}.thanksPage .training_track {
    transform-origin: center bottom;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    flex-direction: column;
    transform: perspective(1000px) rotateX(2deg);
    background: rgba(255, 255, 255, 0.85);
    position: relative;
    display: flex;
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
              0 15px 25px rgba(rgb(105,125,167), 0.05),
              0 5px 10px rgba(rgb(141,161,203), 0.03);
}.thanksPage .training_track:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 
              0 20px 30px rgba(rgb(105,125,167), 0.07),
              0 10px 15px rgba(rgb(141,161,203), 0.05);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.thanksPage .training_track > div:first-child {
    animation: slideInLeft 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
    border-left: 4px solid rgb(141,161,203);
    transform: translateX(-20px);
    padding-left: 1.5rem;
    opacity: 0;
    position: relative;
    margin-bottom: 2rem;
}.thanksPage .training_track > div:last-child {
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
    transform: translateY(20px);
    opacity: 0;
}.thanksPage h5 {
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.4;
    position: relative;
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 24px;
}.thanksPage h5::after {
    height: 3px;
    background: linear-gradient(90deg, rgb(141,161,203), transparent);
    animation: scaleWidth 1s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
    content: "";
    width: 4rem;
    transform-origin: left;
    transform: scaleX(0);
    position: absolute;
    bottom: -0.75rem;
    left: 0;
}.thanksPage p {
    color: #000000;
    overflow: hidden;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    font-size: 12px;
    position: relative;
}.thanksPage a {
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: block;
}.thanksPage a::before {
    opacity: 0;
    transform: translateX(-10px);
    left: -2.5rem;
    width: 0.5rem;
    background: linear-gradient(to bottom, rgb(141,161,203), rgb(105,125,167));
    content: "";
    height: 100%;
    top: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
}.thanksPage a:hover {
    transform: translateX(10px);
}.thanksPage a:hover::before {
    opacity: 0.7;
    transform: translateX(0);
}.thanksPage a:focus {
    box-shadow: 0 0 0 2px rgb(141,161,203,0.5);
    outline: none;
}

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

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

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

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

@media (min-width: 768px) {.thanksPage {
    padding: 8rem 3rem;
}.thanksPage .training_track {
    margin: 0 5rem;
    padding: 4.5rem 5rem;
}.thanksPage .training_track > div:first-child {
    border-left-width: 6px;
    margin-bottom: 3rem;
    padding-left: 2rem;
}.thanksPage h5 {
    font-size: calc(24px * 1.1);
}.thanksPage p {
    font-size: calc(12px * 1.05);
    line-height: 1.8;
}
}

@media (min-width: 992px) {.thanksPage .training_track {
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
}.thanksPage .training_track > div:first-child {
    margin-right: 5rem;
    flex: 0 0 40%;
    margin-bottom: 0;
}.thanksPage .training_track > div:last-child {
    flex: 0 0 60%;
}.thanksPage h5::after {
    width: 6rem;
}
}

@media (max-width: 767px) {.thanksPage {
    padding: 4rem 1.5rem;
}.thanksPage .training_track {
    transform: perspective(1000px) rotateX(1deg);
    padding: 2.5rem;
}.thanksPage h5 {
    font-size: calc(24px * 0.9);
}.thanksPage p {
    font-size: calc(12px * 0.95);
    line-height: 1.6;
}.thanksPage a::before {
    width: 0.3rem;
    left: -1.5rem;
}}.course_candidates {
    padding: 5rem 0;
    background-color: rgb(176,197,239);
    overflow: hidden;
    position: relative;
}.course_candidates::before {
    z-index: 1;
    left: 0;
    position: absolute;
    background-image: 
        linear-gradient(45deg, transparent 75%, rgb(141,161,203,0.5) 75%, transparent 76%),
        linear-gradient(135deg, transparent 75%, rgb(105,125,167,0.5) 75%, transparent 76%);
    animation: moveRays 30s linear infinite;
    opacity: 0.3;
    top: 0;
    height: 100%;
    background-size: 200px 200px;
    width: 100%;
    content: '';
}.course_candidates::after {
    left: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    opacity: 0.2;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 90%, rgb(141,161,203,0.5) 90%, rgb(141,161,203,0.5) 91%, transparent 91%),
        linear-gradient(0deg, transparent 95%, rgb(105,125,167,0.5) 95%, rgb(105,125,167,0.5) 96%, transparent 96%);
    background-size: 120px 120px;
    animation: moveRaysVertical 20s linear infinite;
    top: 0;
    content: '';
}.course_candidates .training_track {
    z-index: 2;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
    padding: 0 2rem;
}.course_candidates h3 {
    font-weight: 600;
    margin-bottom: 3.5rem;
    font-size: 28px;
    color: rgb(141,161,203);
    position: relative;
    text-align: center;
}.course_candidates h3::after {
    content: '';
    background: linear-gradient(90deg, transparent, rgb(141,161,203), transparent);
    position: absolute;
    animation: pulseLight 3s infinite alternate;
    transform: translateX(-50%);
    height: 2px;
    bottom: -15px;
    left: 50%;
    width: 150px;
}.course_candidates ul {
    padding: 0;
    gap: 1.5rem;
    margin: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
}.course_candidates li {
    position: relative;
    border-left: 3px solid rgb(141,161,203,0.5);
    overflow: hidden;
    padding: 1.5rem 2rem;
    border-radius: 26px;
    display: flex;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    align-items: center;
}.course_candidates li::before {
    width: 0;
    height: 100%;
    top: 0;
    z-index: -1;
    position: absolute;
    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(90deg, rgb(141,161,203,0.5) 0%, transparent 100%);
    opacity: 0.1;
    content: '';
    left: 0;
}.course_candidates li::after {
    left: 0;
    height: 1px;
    content: '';
    bottom: 0;
    opacity: 0.5;
    box-shadow: 0 0 10px rgb(141,161,203,0.5);
    width: 100%;
    position: absolute;
    background: linear-gradient(90deg, rgb(141,161,203) 0%, transparent 100%);
}.course_candidates li:hover {
    border-left-color: rgb(141,161,203);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}.course_candidates li:hover::before {
    width: 100%;
}.course_candidates li svg {
    width: 40px;
    margin-right: 1.5rem;
    filter: drop-shadow(0 0 8px rgb(141,161,203,0.5));
    flex-shrink: 0;
    transition: all 0.4s ease;
    fill: rgb(141,161,203);
    height: 40px;
}.course_candidates li:hover svg {
    transform: scale(1.1);
    animation: flashLight 1s ease;
}.course_candidates li svg path {
    fill: rgb(141,161,203);
    transition: all 0.4s ease;
}.course_candidates li:hover svg path {
    fill: rgb(105,125,167);
}.course_candidates li {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
}.course_candidates li:nth-child(1) {
    animation-delay: 0s;
}.course_candidates li:nth-child(2) {
    animation-delay: 0.1s;
}.course_candidates li:nth-child(3) {
    animation-delay: 0.2s;
}.course_candidates li:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes moveRays {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200px 200px;
    }
}

@keyframes moveRaysVertical {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 120px 120px;
    }
}

@keyframes pulseLight {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 5px rgb(141,161,203,0.5);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 15px rgb(141,161,203);
    }
}

@keyframes flashLight {
    0% {
        filter: drop-shadow(0 0 8px rgb(141,161,203,0.5));
    }
    50% {
        filter: drop-shadow(0 0 25px rgb(141,161,203));
    }
    100% {
        filter: drop-shadow(0 0 8px rgb(141,161,203,0.5));
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (min-width: 992px) {.course_candidates li {
    animation: slideIn 0.5s forwards;
    opacity: 0;
}
}

@media (max-width: 991px) {.course_candidates {
    padding: 4rem 0;
}.course_candidates h3 {
    font-size: calc(28px * 0.9);
}.course_candidates li {
    padding: 1.2rem 1.8rem;
}.course_candidates li svg {
    width: 35px;
    height: 35px;
    margin-right: 1.2rem;
}
}

@media (max-width: 767px) {.course_candidates {
    padding: 3rem 0;
}.course_candidates h3 {
    margin-bottom: 2.5rem;
    font-size: calc(28px * 0.8);
}.course_candidates h3::after {
    width: 120px;
}.course_candidates li {
    padding: 1rem 1.5rem;
}.course_candidates li svg {
    height: 30px;
    margin-right: 1rem;
    width: 30px;
}}.course_offering {
    overflow: hidden;
    padding: 120px 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 30%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 15px);
    position: relative;
    background: rgb(176,197,239);
}.course_offering::before {
    z-index: 1;
    animation: backgroundShift 15s infinite alternate;
    background: linear-gradient(135deg, rgb(141,161,203,0.5) 0%, transparent 50%, rgb(105,125,167,0.5) 100%);
    top: 0;
    height: 100%;
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0.7;
    content: "";
}.course_offering::after {
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    position: absolute;
    top: 0;
    animation: pulse 8s infinite alternate;
    background: 
        repeating-conic-gradient(rgba(255, 255, 255, 0.03) 0%, transparent 0.5%, transparent 1%, rgba(255, 255, 255, 0.03) 1.5%) 50% 50% / 30px 30px,
        radial-gradient(circle at 70% 30%, rgb(141,161,203,0.5) 0%, transparent 70%);
    content: "";
}.course_offering .container {
    z-index: 5;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
}.course_offering .knowledge_plan {
    position: relative;
    perspective: 1000px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}.course_offering .knowledge_plan::before {
    left: -30px;
    width: calc(100% + 60px);
    top: -30px;
    height: calc(100% + 60px);
    border-radius: 29px;
    z-index: -1;
    content: "";
    animation: borderPulse 4s infinite alternate;
    transform: rotateY(5deg) rotateX(2deg);
    border: 1px solid rgb(141,161,203,0.5);
    position: absolute;
    transform-style: preserve-3d;
}.course_offering .label_container {
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-direction: column;
    position: relative;
    transform: translateZ(0);
    animation: floatPanel 8s ease-in-out infinite;
    backdrop-filter: blur(8px);
    border-radius: 29px;
    width: 100%;
}.course_offering .label_container h2 {
    -webkit-background-clip: text !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgb(141,161,203,0.5);
    font-weight: 700;
    background-clip: text !important;
    -webkit-text-fill-color: transparent;
    max-width: fit-content;
    border-left: 2px solid rgb(105,125,167);
    border-bottom: 2px solid rgb(141,161,203);
    font-size: 30px;
    position: relative;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    background: linear-gradient(to right, rgb(141,161,203) 0%, rgb(105,125,167) 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transform: translateY(-10px);
    color: #ffffff;
    letter-spacing: 1.5px;
    border-radius: 8px 0 8px 0;
}.course_offering .label_container .description {
    border-radius: 10px;
    position: relative;
    letter-spacing: 0.5px;
    font-size: 16px;
    line-height: 1.9;
    transition: all 0.5s ease;
    font-weight: 400;
    padding: 18px;
    margin-bottom: 25px;
    border-left: 3px solid rgb(141,161,203,0.5);
    z-index: 2;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    transform: translateZ(0);
    backdrop-filter: blur(4px);
    color: #000000;
    background: rgba(255, 255, 255, 0.07);
    text-align: justify;
}.course_offering .label_container .description:first-of-type {
    border-left-color: rgb(141,161,203);
}.course_offering .label_container .description:last-of-type {
    margin-bottom: 0;
    border-left-color: rgb(105,125,167);
}.course_offering .label_container .description::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
    height: 100%;
    content: "";
    border-radius: 10px;
    width: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
}.course_offering .label_container .description:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}.course_offering .pic_wrap_item {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    background-size: cover;
    transform-style: preserve-3d;
    z-index: 4;
    overflow: hidden;
    position: relative;
    background-position: center;
    height: 450px;
    animation: floatImage 6s ease-in-out infinite alternate;
    transform: translateZ(0) rotateY(-5deg);
    align-self: flex-start;
    border-radius: 29px;
    transition: all 0.5s cubic-bezier(0.215, 0.610, 0.355, 1);
}.course_offering .pic_wrap_item:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 0 2px rgb(141,161,203,0.5);
    transform: scale(1.02) translateY(-5px) rotateY(0deg);
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.98);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.02);
    }
}

@keyframes borderPulse {
    0% {
        border-color: rgb(141,161,203,0.5);
        transform: rotateY(5deg) rotateX(2deg);
    }
    100% {
        border-color: rgb(105,125,167,0.5);
        transform: rotateY(3deg) rotateX(0deg);
    }
}

@keyframes glowPulse {
    0% {
        opacity: 0.7;
        box-shadow: 0 0 10px rgb(141,161,203,0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgb(141,161,203);
    }
}

@keyframes floatPanel {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateZ(0) rotateY(-5deg) translateY(0);
    }
    50% {
        transform: translateZ(50px) rotateY(-3deg) translateY(-10px);
    }
}

@keyframes shine {
    0% {
        left: -100px;
    }
    20%, 100% {
        left: 120%;
    }
}

@keyframes expand {
    0% {
        width: 20px;
    }
    100% {
        width: 100%;
    }
}

@keyframes glow {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgb(141,161,203,0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 20px rgb(141,161,203);
    }
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@media screen and (max-width: 1200px) {.course_offering {
    padding: 100px 0;
}.course_offering .knowledge_plan {
    gap: 30px;
}.course_offering .label_container {
    padding: 30px;
}.course_offering .label_container h2 {
    font-size: calc(30px * 0.9);
    padding: 12px 18px;
}.course_offering .label_container .description {
    padding: 15px;
}
}

@media screen and (max-width: 991px) {.course_offering {
    padding: 80px 0;
}.course_offering .knowledge_plan {
    grid-template-columns: 1fr;
    gap: 40px;
}.course_offering .knowledge_plan::before {
    transform: none;
    height: calc(100% + 40px);
    width: calc(100% + 40px);
    left: -20px;
    top: -20px;
}.course_offering .label_container {
    transform: none;
    animation: none;
    order: 2;
}.course_offering .pic_wrap_item {
    transform: none;
    min-height: 400px;
    animation: pulse 8s infinite alternate;
    order: 1;
}.course_offering .pic_wrap_item:hover {
    transform: scale(1.02) translateY(-5px);
}.course_offering .label_container h2 {
    text-align: center;
    margin-right: auto;
    max-width: 100%;
    display: block;
    margin-left: auto;
}.course_offering .label_container .description {
    text-align: left;
}
}

@media screen and (max-width: 767px) {.course_offering {
    padding: 60px 0;
}.course_offering .knowledge_plan {
    gap: 30px;
}.course_offering .label_container {
    padding: 25px;
    gap: 20px;
}.course_offering .label_container h2 {
    margin-bottom: 15px;
    padding: 10px 15px;
    font-size: calc(30px * 0.8);
}.course_offering .label_container .description {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: calc(16px * 0.95);
    padding: 12px;
}.course_offering .pic_wrap_item {
    min-height: 350px;
}.course_offering .knowledge_plan::before {
    display: none;
}
}

@media screen and (max-width: 480px) {.course_offering {
    padding: 40px 0;
}.course_offering .label_container {
    padding: 20px;
    gap: 15px;
}.course_offering .label_container h2 {
    letter-spacing: 1px;
    padding: 8px 12px;
    font-size: calc(30px * 0.7);
}.course_offering .label_container .description {
    line-height: 1.6;
    font-size: calc(16px * 0.9);
    padding: 10px;
}.course_offering .pic_wrap_item {
    min-height: 280px;
}}.cost_plan {
    overflow: hidden;
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(176,197,239) 0%, rgb(105,125,167,0.5) 100%);
    position: relative;
}.cost_plan::before {
    left: 0;
    z-index: 1;
    top: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(rgb(141,161,203), 0.03) 40px, rgba(rgb(141,161,203), 0.03) 80px);
    width: 100%;
    pointer-events: none;
    content: "";
    position: absolute;
    height: 100%;
}.cost_plan .container {
    padding: 0 1.5rem;
    position: relative;
    margin: 0 auto;
    z-index: 2;
    max-width: 1320px;
}.cost_plan .study_sub {
    flex-direction: column-reverse;
    display: flex;
    gap: 2.5rem;
}.cost_plan .learn_pricing {
    margin: 0 auto;
    position: relative;
    padding: 2rem;
    transform: translateY(0);
    z-index: 3;
    background: rgba(#ffffff, 0.9);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
}.cost_plan .learn_pricing:hover {
    transform: translateY(-5px);
}.cost_plan .learn_pricing h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    line-height: 1.3;
    position: relative;
    font-size: 34px;
}.cost_plan .learn_pricing h2::after {
    content: "";
    height: 3px;
    bottom: -10px;
    transform: scaleX(1);
    left: 0;
    transition: transform 0.5s ease;
    position: absolute;
    transform-origin: left;
    width: 80px;
    background: rgb(141,161,203);
}.cost_plan .learn_pricing:hover h2::after {
    transform: scaleX(1.5);
}.cost_plan .pricing_catalog {
    font-size: 12px;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
    color: #000000;
    max-width: 100%;
    margin-top: 1.5rem;
}.cost_plan .learning_package {
    grid-template-columns: 1fr;
    display: grid;
    gap: 30px;
    position: relative;
}.cost_plan .plan_fee {
    display: block;
    position: relative;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    overflow: hidden;
}.cost_plan .plan_fee:hover {
    transform: translateY(-8px);
}.cost_plan .edu_rates {
    display: flex;
    border-radius: 8px;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.4s ease;
}.cost_plan .plan_fee:hover .edu_rates {
    box-shadow: 0 15px 35px rgba(rgb(141,161,203,0.5), 0.15);
}.cost_plan .fee_choices {
    min-height: 280px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    padding: 2rem;
}.cost_plan .fee_choices h3 {
    line-height: 1.3;
    color: #000000;
    font-size: calc(22px + 0.1rem);
    position: relative;
    margin-bottom: 1rem;
    font-weight: 600;
}.cost_plan .skill_offers {
    margin: 0.5rem 0 1.25rem;
    font-weight: 700;
    color: rgb(141,161,203);
    display: block;
    font-size: calc(22px + 0.3rem);
    position: relative;
}.cost_plan .skill_offers::before {
    height: 2px;
    background: rgb(105,125,167);
    position: absolute;
    width: 40px;
    content: "";
    left: 0;
    bottom: -10px;
}.cost_plan .fee_choices p {
    overflow-wrap: break-word;
    line-height: 1.6;
    color: #000000;
    word-break: break-word;
    font-size: 12px;
    flex-grow: 1;
    margin-top: 1.5rem;
}.cost_plan .pic_wrap_item {
    position: relative;
    transform: scale(1);
    transition: transform 0.6s ease-out;
    width: 100%;
    height: 220px;
}.cost_plan .pic_wrap_item::after {
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    content: "";
    left: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}.cost_plan .plan_fee:hover .pic_wrap_item {
    transform: scale(1.05);
}

@media (min-width: 768px) {.cost_plan .learning_package {
    grid-template-columns: repeat(2, 1fr);
}.cost_plan .learn_pricing {
    padding: 3rem;
}
}

@media (min-width: 992px) {.cost_plan .study_sub {
    align-items: center;
    gap: 3rem;
    flex-direction: row;
}.cost_plan .learn_pricing {
    width: 35%;
    margin: 0;
}.cost_plan .learning_package {
    width: 65%;
}
}

@media (min-width: 1200px) {.cost_plan .learning_package {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}.cost_plan .fee_choices {
    padding: 2.5rem;
}.cost_plan .learn_pricing h2 {
    font-size: calc(34px + 0.2rem);
}.cost_plan .pic_wrap_item {
    height: 250px;
}
}

@media (max-width: 767px) {.cost_plan {
    padding: 4rem 0;
}.cost_plan .fee_choices {
    padding: 1.5rem;
    min-height: 240px;
}.cost_plan .pic_wrap_item {
    height: 180px;
}.cost_plan .learn_pricing {
    padding: 1.5rem;
}.cost_plan .learn_pricing h2 {
    font-size: calc(34px - 0.2rem);
}.cost_plan .pricing_catalog {
    font-size: calc(12px - 0.1rem);
}}.windowPrivacySettings {
    background: rgb(176,197,239);
    width: 100%;
    bottom: 0;
    display: flex;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    z-index: 100;
    border-top: 3px solid rgb(141,161,203);
    justify-content: center;
    position: fixed;
}.user_dialog {
    display: flex;
    border-radius: 24px;
    padding: 20px;
    border: 2px solid rgb(141,161,203);
    max-width: 1200px;
    margin: auto;
    align-items: center;
    width: 90%;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
}.data_guard {
    flex-shrink: 0;
    margin-right: 20px;
}.data_guard svg {
    fill: rgb(141,161,203);
    width: 50px;
    height: 50px;
}.cookie_tab {
    text-align: left;
    flex-grow: 1;
    color: #ffffff;
}.cookie_tab h5 {
    font-weight: 700;
    color: rgb(141,161,203);
    text-transform: uppercase;
    font-size: 22px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}.cookie_tab p {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}.cookie_tab p a {
    text-decoration: underline;
    color: rgb(141,161,203);
}.data_consent {
    background: rgb(141,161,203);
    font-size: 15px;
    text-align: center;
    border: none;
    min-width: 120px;
    text-decoration: none;
    cursor: pointer;
    color: #ffffff;
    border-radius: 10px;
    flex-shrink: 0;
    padding: 10px 20px;
}.cookie_button.cookie_preference {
    margin-right: 10px;
}#dialogConsentForm {
    display: none;
}#dialogConsentForm:checked ~ .windowPrivacySettings {
    visibility: hidden;
    opacity: 0;
}
@media only screen and (max-width: 1200px) {.user_dialog {
    text-align: center;
    flex-direction: column;
    align-items: center;
}.data_guard {
    margin-right: 0;
    margin-bottom: 20px;
}.data_consent {
    max-width: 250px;
    width: 100%;
    margin: 10px 0;
}
}
