* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}.header_master {
    flex: 1 0 auto;
}.wrapper-holder {
    min-height: 100%;
    height: 100%;
    flex-direction: column;
    display: flex;
}.study_group {
    flex: 0 0 auto;
}html,body {
    color: #000000;
    font-family: Arial, sans-serif;
    height: 100%;
    min-height: 100%;
    scroll-behavior: auto;
}::-webkit-scrollbar {
    width: 6px;
}::-webkit-scrollbar-thumb {
    border-radius: 14vh;
    background: #ffffff;
    min-height: 90px;
}::-webkit-scrollbar-thumb:hover {
    border-color: rgb(255, 255, 255, 0.5);
    background: rgb(215,222,236);
}* {
    scrollbar-width: none;
    scrollbar-color: rgb(215,222,236) rgb(176,192,213);
}svg {
    width: 30px;
    height: 30px;
}header,footer {
    width: 100%;
}a {
    text-decoration: none;
    color: inherit;
}.container {
    width: 1142px;
    max-width: 100%;
    margin: auto;
}

@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.course_beneficiaries {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    z-index: 1;
    background-color: rgb(215,222,236);
}.course_beneficiaries::before {
    top: -50%;
    content: "";
    z-index: -1;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(rgb(137,162,188,0.5), 0.3) 0%,
        transparent 70%
    );
    animation: pulseGlow 15s infinite alternate ease-in-out;
    width: 100%;
    position: absolute;
    right: -50%;
}.course_beneficiaries::after {
    animation: pulseGlow 12s infinite alternate-reverse ease-in-out;
    z-index: -1;
    height: 80%;
    content: "";
    position: absolute;
    bottom: -30%;
    left: -20%;
    background: radial-gradient(
        ellipse at center,
        rgba(rgb(176,192,213,0.5), 0.2) 0%,
        transparent 70%
    );
    width: 80%;
}.course_beneficiaries .learn_learn {
    align-items: center;
    padding: 0 2rem;
    position: relative;
    max-width: 1000px;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
}.course_beneficiaries h3 {
    position: relative;
    font-weight: 600;
    margin-bottom: 4rem;
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    color: #000000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 33px;
    padding: 1rem 3rem;
}.course_beneficiaries h3::before,
.course_beneficiaries h3::after {
    height: 30px;
    position: absolute;
    content: "";
    border-style: solid;
    z-index: -1;
    border-color: rgb(137,162,188);
    width: 30px;
}.course_beneficiaries h3::before {
    left: -10px;
    border-width: 2px 0 0 2px;
    border-radius: 5px 0 0 0;
    top: -10px;
}.course_beneficiaries h3::after {
    border-radius: 0 0 5px 0;
    border-width: 0 2px 2px 0;
    right: -10px;
    bottom: -10px;
}.course_beneficiaries ul {
    z-index: 2;
    list-style: none;
    width: 100%;
    flex-direction: column;
    gap: 2rem;
    margin: 0;
    display: flex;
    padding: 0;
    position: relative;
}.course_beneficiaries li {
    flex-direction: column;
    backdrop-filter: blur(12px);
    padding: 2rem;
    display: flex;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.05),
        0 6px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 27px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.course_beneficiaries li::before {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(rgb(137,162,188,0.5), 0.5),
        transparent
    );
    height: 2px;
    content: "";
    right: 0;
    position: absolute;
    top: 0;
    left: 0;
}.course_beneficiaries li:hover {
    transform: translateY(-10px);
    border-color: rgba(rgb(137,162,188,0.5), 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 12px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}.course_beneficiaries li:hover::after {
    position: absolute;
    animation: glowLine 2s infinite alternate ease-in-out;
    height: 4px;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(
        90deg,
        rgb(137,162,188),
        rgb(176,192,213)
    );
}.course_beneficiaries li svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    fill: rgb(137,162,188);
    height: 60px;
    margin-bottom: 1.5rem;
    width: 60px;
}.course_beneficiaries li svg path {
    transition: fill 0.3s ease;
    fill: rgb(137,162,188);
}.course_beneficiaries li:hover svg {
    transform: scale(1.05);
    fill: rgb(176,192,213);
}.course_beneficiaries li:hover svg path {
    fill: rgb(176,192,213);
}.course_beneficiaries li:nth-child(even) {
    transform: translateX(20px);
}.course_beneficiaries li:nth-child(odd) {
    transform: translateX(-20px);
}.course_beneficiaries li:nth-child(even):hover {
    transform: translateX(20px) translateY(-10px);
}.course_beneficiaries li:nth-child(odd):hover {
    transform: translateX(-20px) translateY(-10px);
}

@keyframes pulseGlow {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes glowLine {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 5px rgba(rgb(137,162,188,0.5), 0.5);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 15px rgba(rgb(176,192,213,0.5), 0.8);
    }
}

@media (min-width: 992px) {.course_beneficiaries ul {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
}.course_beneficiaries li:nth-child(1),
    .course_beneficiaries li:nth-child(3) {
    transform: translateY(20px);
}.course_beneficiaries li:nth-child(2),
    .course_beneficiaries li:nth-child(4) {
    transform: translateY(-20px);
}.course_beneficiaries li:nth-child(1):hover,
    .course_beneficiaries li:nth-child(3):hover {
    transform: translateY(10px);
}.course_beneficiaries li:nth-child(2):hover,
    .course_beneficiaries li:nth-child(4):hover {
    transform: translateY(-30px);
}
}

@media (max-width: 991px) {.course_beneficiaries {
    padding: 4rem 0;
}.course_beneficiaries ul {
    gap: 1.5rem;
}.course_beneficiaries h3 {
    padding: 0.8rem 2rem;
    font-size: calc(33px * 0.9);
    margin-bottom: 3rem;
}.course_beneficiaries li {
    padding: 1.5rem;
}.course_beneficiaries li svg {
    margin-bottom: 1rem;
    height: 50px;
    width: 50px;
}
}

@media (max-width: 768px) {.course_beneficiaries {
    padding: 3rem 0;
}.course_beneficiaries .learn_learn {
    padding: 0 1.5rem;
}.course_beneficiaries h3 {
    margin-bottom: 2.5rem;
    font-size: calc(33px * 0.8);
    padding: 0.7rem 1.5rem;
}.course_beneficiaries li {
    padding: 1.25rem;
}.course_beneficiaries li:nth-child(even),
    .course_beneficiaries li:nth-child(odd) {
    transform: translateX(0);
}.course_beneficiaries li:nth-child(even):hover,
    .course_beneficiaries li:nth-child(odd):hover {
    transform: translateY(-5px);
}.course_beneficiaries li svg {
    height: 40px;
    width: 40px;
}
}

@media (max-width: 480px) {.course_beneficiaries {
    padding: 2.5rem 0;
}.course_beneficiaries .learn_learn {
    padding: 0 1rem;
}.course_beneficiaries h3 {
    font-size: calc(33px * 0.7);
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
}.course_beneficiaries h3::before,
    .course_beneficiaries h3::after {
    width: 20px;
    height: 20px;
}.course_beneficiaries ul {
    gap: 1rem;
}.course_beneficiaries li {
    padding: 1rem;
}.course_beneficiaries li svg {
    width: 35px;
    height: 35px;
    margin-bottom: 0.75rem;
}}.thanksSpace {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(215,222,236) 0%, rgba(245, 247, 250, 0.95) 100%);
    padding: 120px 0 100px;
}.thanksSpace::before {
    height: 300px;
    background: linear-gradient(45deg, rgb(137,162,188,0.5) 0%, rgb(176,192,213,0.5) 100%);
    animation: float 15s ease-in-out infinite;
    width: 300px;
    position: absolute;
    filter: blur(80px);
    content: "";
    z-index: 1;
    right: -50px;
    opacity: 0.4;
    top: -50px;
}.thanksSpace::after {
    z-index: 1;
    left: -30px;
    bottom: -30px;
    background: linear-gradient(225deg, rgb(176,192,213,0.5) 0%, rgb(137,162,188,0.5) 80%);
    filter: blur(60px);
    animation: float 18s ease-in-out infinite reverse;
    position: absolute;
    width: 250px;
    content: "";
    opacity: 0.3;
    height: 250px;
}.thanksSpace .container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1140px;
    z-index: 5;
    position: relative;
}.thanksSpace h2 {
    transform: translateY(20px);
    font-family: Arial, sans-serif;
    opacity: 0;
    font-size: 33px;
    position: relative;
    animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000000;
}.thanksSpace h2::after {
    bottom: -12px;
    left: 0;
    width: 80px;
    transform: scaleX(0);
    background: linear-gradient(90deg, rgb(176,192,213) 0%, rgb(137,162,188) 100%);
    height: 3px;
    position: absolute;
    animation: expandLine 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
    transform-origin: left center;
    content: "";
}.thanksSpace .learn_learn {
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07), 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 50px;
    background: #ffffff;
    opacity: 0;
    border-radius: 13px;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
}.thanksSpace .learn_learn::before {
    left: 0;
    content: "";
    transform: scaleY(0);
    width: 6px;
    position: absolute;
    background: linear-gradient(to bottom, rgb(137,162,188), rgb(176,192,213));
    transform-origin: top center;
    height: 100%;
    animation: expandHeight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
    top: 0;
}.thanksSpace ul {
    margin: 0;
    list-style: none;
    padding: 0;
}.thanksSpace li {
    padding-left: 25px;
    position: relative;
}.thanksSpace li::before {
    border-radius: 50%;
    width: 10px;
    top: 8px;
    height: 10px;
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1s;
    background: linear-gradient(135deg, rgb(176,192,213) 0%, rgb(137,162,188) 100%);
    transform: scale(0);
    position: absolute;
    content: "";
    left: 0;
}.thanksSpace span {
    opacity: 0;
    display: block;
    font-size: calc(14px * 1.05);
    font-family: Arial, sans-serif;
    line-height: 1.7;
    color: #000000;
    transform: translateY(15px);
    animation: fadeText 0.8s ease forwards 0.8s;
}

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

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

@keyframes expandHeight {
    to {
        transform: scaleY(1);
    }
}

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

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

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

@media (max-width: 991px) {.thanksSpace {
    padding: 90px 0 70px;
}.thanksSpace h2 {
    font-size: calc(33px * 0.9);
    margin-bottom: 35px;
}.thanksSpace .learn_learn {
    padding: 40px 35px;
}.thanksSpace h2::after {
    width: 70px;
}
}

@media (max-width: 767px) {.thanksSpace {
    padding: 70px 0 50px;
}.thanksSpace h2 {
    font-size: calc(33px * 0.8);
    line-height: 1.4;
    margin-bottom: 30px;
}.thanksSpace .learn_learn {
    padding: 35px 25px;
}.thanksSpace span {
    font-size: 14px;
    line-height: 1.6;
}.thanksSpace h2::after {
    height: 2px;
    width: 60px;
}
}

@media (max-width: 575px) {.thanksSpace {
    padding: 60px 0 40px;
}.thanksSpace h2 {
    font-size: calc(33px * 0.7);
    margin-bottom: 25px;
}.thanksSpace .learn_learn {
    padding: 30px 20px;
}.thanksSpace li {
    padding-left: 20px;
}.thanksSpace li::before {
    height: 8px;
    width: 8px;
    top: 9px;
}.thanksSpace h2::after {
    width: 50px;
}
}

@media (hover: hover) {.thanksSpace .learn_learn:hover {
    transform: translateY(-5px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.06);
}.thanksSpace .learn_learn:hover::before {
    background: linear-gradient(to bottom, rgb(176,192,213), rgb(137,162,188));
    transition: background 0.5s ease;
}}.pricing_block {
    position: relative;
    padding: 5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgb(215,222,236), rgba(0, 0, 0, 0.5));
    overflow: hidden;
}.pricing_block::before {
    position: absolute;
    opacity: 0.1;
    background: linear-gradient(45deg, transparent 0%, rgb(176,192,213,0.5) 30%, transparent 70%);
    top: 0;
    width: 100%;
    left: 0;
    content: "";
    pointer-events: none;
    height: 100%;
    z-index: 1;
}.pricing_block .container {
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
    z-index: 2;
}.pricing_block .price_panel {
    flex-direction: column;
    display: flex;
    gap: 3rem;
}.pricing_block .tuition_grid {
    transform: translateY(20px);
    opacity: 0;
    margin: 0 auto 2rem;
    max-width: 800px;
    order: -1;
    animation: fadeUp 0.8s ease-out forwards;
    text-align: center;
}.pricing_block .tuition_grid h2 {
    margin-bottom: 1rem;
    display: inline-block;
    color: #000000;
    font-weight: 700;
    font-size: 37px;
    position: relative;
}.pricing_block .tuition_grid h2::after {
    content: "";
    background: linear-gradient(90deg, rgb(176,192,213), rgb(137,162,188));
    position: absolute;
    border-radius: 10px;
    left: 50%;
    width: 80px;
    bottom: -10px;
    transform: translateX(-50%);
    height: 3px;
}.pricing_block .trial_offers {
    color: #000000;
    margin: 0 auto;
    max-width: 90%;
    line-height: 1.6;
    font-size: 18px;
}.pricing_block .learning_deals {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    display: grid;
    perspective: 1000px;
}.pricing_block .rate_plans {
    overflow: hidden;
    background: #ffffff;
    color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateZ(0) scale(1);
    position: relative;
    animation: fadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    border-radius: 26px;
    display: block;
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    text-decoration: none;
}.pricing_block .rate_plans:nth-child(1) {
    animation-delay: 0.1s;
}.pricing_block .rate_plans:nth-child(2) {
    animation-delay: 0.2s;
}.pricing_block .rate_plans:nth-child(3) {
    animation-delay: 0.3s;
}.pricing_block .rate_plans:nth-child(4) {
    animation-delay: 0.4s;
}.pricing_block .rate_plans::before {
    height: 5px;
    top: 0;
    position: absolute;
    transform-origin: left;
    content: "";
    width: 100%;
    left: 0;
    background: linear-gradient(90deg, rgb(176,192,213), rgb(137,162,188));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scaleX(0);
}.pricing_block .rate_plans:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateZ(30px) scale(1.03);
}.pricing_block .rate_plans:hover::before {
    transform: scaleX(1);
}.pricing_block .lesson_fees {
    flex-direction: column;
    display: flex;
    height: 100%;
}.pricing_block .price_deals {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}.pricing_block .price_deals h3 {
    font-weight: 700;
    transition: color 0.3s ease;
    position: relative;
    margin: 0 0 1rem;
    font-size: 22px;
    color: #000000;
}.pricing_block .rate_plans:hover .price_deals h3 {
    color: rgb(176,192,213);
}.pricing_block .rate_schemes {
    position: relative;
    font-size: 2rem;
    transition: transform 0.3s ease, color 0.3s ease;
    color: rgb(176,192,213);
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
}.pricing_block .rate_schemes::after {
    background-color: rgb(137,162,188);
    transition: width 0.3s ease;
    bottom: -8px;
    left: 0;
    height: 2px;
    position: absolute;
    content: "";
    width: 40px;
}.pricing_block .rate_plans:hover .rate_schemes {
    transform: translateY(-3px);
}.pricing_block .rate_plans:hover .rate_schemes::after {
    width: 80px;
}.pricing_block .price_deals p {
    color: #000000;
    margin: 0;
    word-break: break-word;
    font-size: calc(18px - 2px);
    flex-grow: 1;
    line-height: 1.6;
    overflow-wrap: break-word;
}.pricing_block .snapshot {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}.pricing_block .snapshot::after {
    transition: opacity 0.5s ease;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    content: "";
    bottom: 0;
    opacity: 0.7;
    left: 0;
    top: 0;
    right: 0;
    position: absolute;
}.pricing_block .rate_plans:hover .snapshot {
    transform: scale(1.05);
}.pricing_block .rate_plans:hover .snapshot::after {
    opacity: 0.4;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

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

@media (min-width: 768px) {.pricing_block {
    padding: 7rem 2rem;
}.pricing_block .price_panel {
    flex-direction: row;
    align-items: flex-start;
}.pricing_block .tuition_grid {
    text-align: left;
    flex-direction: column;
    padding-right: 2rem;
    display: flex;
    flex: 0 0 30%;
    justify-content: center;
    order: 0;
    margin: 0;
}.pricing_block .tuition_grid h2 {
    text-align: left;
}.pricing_block .tuition_grid h2::after {
    transform: none;
    left: 0;
}.pricing_block .trial_offers {
    margin: 0;
    max-width: 100%;
}.pricing_block .learning_deals {
    flex: 0 0 70%;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 1rem), 1fr));
}
}

@media (min-width: 992px) {.pricing_block .learning_deals {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1200px) {.pricing_block {
    padding: 8rem 2rem;
}.pricing_block .tuition_grid {
    flex: 0 0 25%;
}.pricing_block .learning_deals {
    flex: 0 0 75%;
}.pricing_block .price_deals {
    padding: 2.5rem;
}
}

@media (max-width: 767px) {.pricing_block .rate_plans {
    margin: 0 auto;
    max-width: 400px;
}.pricing_block .tuition_grid h2 {
    font-size: calc(37px * 0.9);
}.pricing_block .trial_offers {
    font-size: calc(18px * 0.95);
}}.cookie_window_banner {
    position: fixed;
    width: 100%;
    bottom: 0;
    background: rgb(215,222,236);
    z-index: 90;
    border-top: 2px solid rgb(176,192,213);
}.data_accept {
    justify-content: space-between;
    display: flex;
    padding: 20px 0;
    align-items: center;
}.cookie_window_banner h5 {
    margin-bottom: 6px;
    font-size: 22px;
}.cookie_window_banner p {
    font-size: 18px;
}.cookies_overview {
    margin-right: 10px;
    flex-shrink: 0;
}.cookies_overview svg, .cookies_overview svg path, .cookies_overview img {
    height: 100px;
    fill: rgb(176,192,213);
    width: 100px;
}.cookie_comply {
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 35px;
    border-bottom: 2px solid rgb(176,192,213);
    color: rgb(176,192,213);
    cursor: pointer;
    text-align: center;
    margin-left: 10px;
    font-size: 24px;
    min-width: 120px;
}.cookie_window_banner p a {
    color: rgb(176,192,213);
    text-decoration: none;
}
@media only screen and (max-width: 1200px) {.cookie_window_banner {
    padding: 20px;
}}
#cookiePromptPanel {
    display: none;
}#cookiePromptPanel:checked ~ .cookie_window_banner {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 800px) {.cookies_overview {
    display: none;
}.data_accept {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}.cookie_window_banner h5 {
    text-align: center;
}.cookie_window_banner p {
    text-align: center;
}.cookie_compl {
    margin-bottom: 20px;
}body .wrapper-holder .cookie_comply {
    margin-left: 0;
}}.contact_box {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}.contact_box::before {
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}.contact_box::after {
    height: 200%;
    top: -50%;
    position: absolute;
    left: -50%;
    content: "";
    width: 200%;
    background: linear-gradient(45deg, 
        transparent 65%, 
        rgba(255, 255, 255, 0.08) 70%, 
        transparent 75%);
    animation: shine 8s linear infinite;
    z-index: 2;
}.contact_box .container {
    z-index: 3;
    position: relative;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
}.contact_box .support_block {
    border-radius: 27px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2), 
                0 5px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 2rem;
}.contact_box .support_block::before {
    position: absolute;
    content: "";
    top: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(176,192,213), 
        transparent);
    left: -50%;
    width: 200%;
    height: 1px;
}.contact_box .support_block::after {
    position: absolute;
    height: 1px;
    content: "";
    bottom: 0;
    right: -50%;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(137,162,188), 
        transparent);
    width: 200%;
}.contact_box .help_block {
    flex: 1 1 300px;
    background: linear-gradient(135deg, 
        rgb(176,192,213,0.5), 
        rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
    padding: 2rem;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transform: translateZ(0);
}.contact_box .help_block::before {
    animation: pulse 15s infinite linear;
    position: absolute;
    width: 200%;
    top: -50%;
    content: "";
    height: 200%;
    background: radial-gradient(
        circle at center, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 70%);
    left: -50%;
    z-index: -1;
}.contact_box .help_block h3 {
    position: relative;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 23px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    padding-bottom: 1rem;
}.contact_box .help_block h3::after {
    content: "";
    height: 2px;
    width: 50px;
    background: rgb(137,162,188);
    bottom: 0;
    position: absolute;
    left: 0;
    box-shadow: 0 0 8px rgb(137,162,188);
}.contact_box .help_block div {
    margin-bottom: 1.5rem;
    padding-left: 10px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
}.contact_box .help_block div:hover {
    transform: translateX(5px);
}.contact_box .help_block div::before {
    height: 0;
    background: rgb(137,162,188);
    transition: height 0.3s ease;
    left: 0;
    position: absolute;
    content: "";
    width: 3px;
    top: 50%;
}.contact_box .help_block div:hover::before {
    top: 10%;
    height: 80%;
}.contact_box .help_block div svg {
    margin-right: 15px;
    height: 20px;
    width: 20px;
    flex-shrink: 0;
}.contact_box .help_block div svg path {
    transition: all 0.3s ease;
    fill: rgb(137,162,188);
}.contact_box .help_block div:hover svg path {
    fill: rgb(176,192,213);
    filter: drop-shadow(0 0 2px rgb(176,192,213));
}.contact_box .help_block div span {
    letter-spacing: 0.5px;
    font-size: calc(14px - 2px);
    color: #ffffff;
}.contact_box .help_block div span a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}.contact_box .help_block div span a:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
    color: rgb(137,162,188);
}.contact_box .query_list {
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05), 
        rgba(0, 0, 0, 0.1));
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(8px);
    flex: 1 1 400px;
}.contact_box .query_list::before {
    position: absolute;
    right: -100px;
    height: 200px;
    background: radial-gradient(
        circle, 
        rgb(176,192,213,0.5) 0%, 
        transparent 70%);
    width: 200px;
    top: -100px;
    border-radius: 50%;
    opacity: 0.3;
    content: "";
}.contact_box .query_list form {
    gap: 1.2rem;
    flex-direction: column;
    display: flex;
}.contact_box .query_list h3 {
    text-align: center;
    position: relative;
    font-size: 18px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}.contact_box .query_list h3::after {
    box-shadow: 0 0 8px rgb(137,162,188);
    width: 50px;
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    background: rgb(137,162,188);
    content: "";
    height: 2px;
    bottom: -10px;
}.contact_box .query_list input[type="text"],
.contact_box .query_list input[type="email"] {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 12px 15px;
    font-size: 14px;
    width: 100%;
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    color: #ffffff;
    border-radius: 10px;
}.contact_box .query_list input[type="text"]:focus,
.contact_box .query_list input[type="email"]:focus {
    border-color: rgb(176,192,213);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 2px rgb(176,192,213,0.5);
}.contact_box .query_list input[type="text"]::placeholder,
.contact_box .query_list input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}.contact_box .query_list .help_panel {
    align-items: flex-start;
    display: flex;
    margin: 0.5rem 0;
    gap: 10px;
}.contact_box .query_list .help_panel input[type="checkbox"] {
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 18px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    margin-top: 3px;
    flex-shrink: 0;
    appearance: none;
    height: 18px;
}.contact_box .query_list .help_panel input[type="checkbox"]:checked {
    border-color: rgb(137,162,188);
    background: rgb(137,162,188);
}.contact_box .query_list .help_panel input[type="checkbox"]:checked::before {
    left: 50%;
    color: #ffffff;
    content: "✓";
    position: absolute;
    font-size: 12px;
    transform: translate(-50%, -50%);
    top: 50%;
}.contact_box .query_list .help_panel label {
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-size: calc(14px - 2px);
}.contact_box .query_list .help_panel label a {
    color: rgb(137,162,188);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}.contact_box .query_list .help_panel label a::after {
    bottom: -2px;
    background: rgb(137,162,188);
    position: absolute;
    content: "";
    left: 0;
    width: 0;
    height: 1px;
    transition: width 0.3s ease;
}.contact_box .query_list .help_panel label a:hover::after {
    width: 100%;
}.contact_box .query_list .reach_support {
    border-radius: 10px;
    padding: 12px 20px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    font-size: 19px;
    margin-top: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, 
        rgb(176,192,213), 
        rgb(137,162,188));
    color: #ffffff;
    font-weight: 600;
    position: relative;
}.contact_box .query_list .reach_support::before {
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    position: absolute;
    width: 100%;
    transition: all 0.6s ease;
    left: -100%;
    content: "";
}.contact_box .query_list .reach_support:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}.contact_box .query_list .reach_support:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@media screen and (max-width: 992px) {.contact_box {
    padding: 5rem 0;
}.contact_box .support_block {
    flex-direction: column;
    gap: 2rem;
}.contact_box .help_block,
    .contact_box .query_list {
    flex: 1 1 100%;
}
}

@media screen and (max-width: 768px) {.contact_box {
    padding: 4rem 0;
}.contact_box .support_block {
    padding: 1.5rem;
}.contact_box .help_block,
    .contact_box .query_list {
    padding: 1.5rem;
}.contact_box .help_block div svg {
    height: 18px;
    margin-right: 10px;
    width: 18px;
}.contact_box .help_block h3,
    .contact_box .query_list h3 {
    font-size: calc(18px - 2px);
}
}

@media screen and (max-width: 576px) {.contact_box {
    padding: 3rem 0;
}.contact_box .support_block {
    padding: 1rem;
    gap: 1.5rem;
}.contact_box .help_block,
    .contact_box .query_list {
    padding: 1rem;
}.contact_box .help_block div {
    margin-bottom: 1rem;
}.contact_box .query_list form {
    gap: 1rem;
}.contact_box .query_list input[type="text"],
    .contact_box .query_list input[type="email"] {
    padding: 10px 12px;
}.contact_box .query_list .reach_support {
    padding: 10px 16px;
}}.title_screen {
    position: relative;
    font-family: Arial, sans-serif;
    overflow: hidden;
    color: #ffffff;
}.title_screen .start_first {
    z-index: 1;
    justify-content: center;
    position: relative;
    display: flex;
    padding: 3rem 1.5rem;
    min-height: 100vh;
    align-items: center;
}.title_screen .start_first::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
    left: 0;
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    top: 0;
}.title_screen .quick_training {
    width: 100%;
    transition: transform 0.6s ease-out;
    border-left: 4px solid rgb(137,162,188);
    backdrop-filter: blur(5px);
    background: linear-gradient(145deg, rgba(rgb(176,192,213,0.5), 0.1), rgba(rgb(176,192,213,0.5), 0.2));
    max-width: 960px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(2deg);
    position: relative;
    padding: 2.5rem;
}.title_screen .quick_training:hover {
    transform: perspective(1000px) rotateY(0deg);
}.title_screen .quick_training::before {
    transition: transform 0.5s ease;
    transform: scaleX(0.8);
    background: rgb(137,162,188);
    left: 20px;
    right: 20px;
    content: "";
    height: 3px;
    position: absolute;
    top: -10px;
}.title_screen .quick_training:hover::before {
    transform: scaleX(1);
}.title_screen .quick_training::after {
    background: rgb(137,162,188);
    transition: transform 0.5s ease;
    height: 3px;
    position: absolute;
    content: "";
    left: 20px;
    transform: scaleX(0.8);
    right: 20px;
    bottom: -10px;
}.title_screen .quick_training:hover::after {
    transform: scaleX(1);
}.title_screen .quick_training > div {
    margin-bottom: 1.5rem;
    position: relative;
}.title_screen .quick_training > div:first-child {
    margin-bottom: 2.5rem;
}.title_screen .quick_training > div:first-child::after {
    height: 2px;
    background: #ffffff;
    left: 0;
    transform-origin: left;
    width: 80px;
    content: "";
    bottom: -15px;
    position: absolute;
    animation: line-grow 1.5s ease-out forwards;
}.title_screen .title_style_header {
    position: relative;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-size: 42px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    animation: slide-up 1s ease-out 0.3s forwards;
    margin-bottom: 0.5rem;
}.title_screen h3 {
    margin-bottom: 1rem;
    position: relative;
    font-weight: 600;
    color: #ffffff;
    animation: slide-up 1s ease-out 0.6s forwards;
    font-size: calc(20px + 0.1rem);
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
}.title_screen p {
    opacity: 0;
    max-width: 90%;
    color: #ffffff;
    animation: slide-up 1s ease-out 0.9s forwards;
    line-height: 1.7;
    position: relative;
    margin-top: 1.5rem;
    transform: translateY(20px);
    font-size: 12px;
}.title_screen .quick_training > div:last-child {
    padding-left: 1.5rem;
    position: relative;
    z-index: 2;
    border-left: 2px solid rgba(rgb(137,162,188,0.5), 0.5);
}

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

@keyframes line-grow {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@media (max-width: 992px) {.title_screen .start_first {
    padding: 2rem 1rem;
}.title_screen .quick_training {
    padding: 2rem;
    transform: perspective(1000px) rotateY(1deg);
}.title_screen .title_style_header {
    font-size: calc(42px - 0.3rem);
}.title_screen h3 {
    font-size: 20px;
}
}

@media (max-width: 768px) {.title_screen .start_first {
    min-height: 80vh;
}.title_screen .quick_training {
    padding: 1.5rem;
    transform: none;
}.title_screen .title_style_header {
    font-size: calc(42px - 0.6rem);
}.title_screen h3 {
    font-size: calc(20px - 0.2rem);
}.title_screen p {
    max-width: 100%;
    font-size: calc(12px - 0.1rem);
}.title_screen .quick_training > div:last-child {
    padding-left: 1rem;
}
}

@media (max-width: 576px) {.title_screen .start_first {
    min-height: auto;
    padding: 2rem 0.75rem;
}.title_screen .quick_training {
    padding: 1.25rem;
}.title_screen .title_style_header {
    font-size: calc(42px - 0.8rem);
}.title_screen h3 {
    font-size: calc(20px - 0.3rem);
    line-height: 1.5;
}.title_screen p {
    margin-top: 1rem;
}.title_screen .quick_training > div:first-child {
    margin-bottom: 2rem;
}.title_screen .quick_training > div:first-child::after {
    width: 60px;
    bottom: -10px;
}}header {
    overflow: visible;
    position: relative;
    background: linear-gradient(to right, rgb(137,162,188) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 99;
    width: 100%;
}header::before {
    z-index: -1;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgb(176,192,213,0.5) 10px,
        rgb(176,192,213,0.5) 11px
    );
    height: 100%;
}header .nav_skill {
    justify-content: space-between;
    position: relative;
    padding: 15px;
    display: flex;
    width: 100%;
    align-items: center;
}header .nav_skill::after {
    content: '';
    bottom: 0;
    width: 90%;
    position: absolute;
    left: 5%;
    box-shadow: 0 0 10px rgb(137,162,188), 0 0 20px rgb(137,162,188,0.5);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgb(176,192,213),
        rgb(137,162,188),
        rgb(176,192,213),
        transparent
    );
}header .nav_skill .top_know {
    padding: 5px 10px;
    z-index: 2;
    margin-right: 20px;
    position: relative;
}header .nav_skill .top_know::before {
    position: absolute;
    opacity: 0;
    width: 100%;
    left: 0;
    height: 100%;
    content: '';
    border: 1px solid rgb(137,162,188,0.5);
    box-shadow: 0 0 15px rgb(137,162,188,0.5);
    border-radius: 10px;
    transition: opacity 0.4s ease;
    top: 0;
}header .nav_skill .top_know:hover::before {
    opacity: 1;
}header .nav_skill .top_know .header_guide {
    display: block;
    transition: transform 0.3s ease;
}header .nav_skill .top_know:hover .header_guide {
    transform: scale(1.05);
}header .nav_skill .top_know .header_guide svg {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 5px rgb(137,162,188,0.5));
}header .nav_skill .head_learn {
    margin: 0;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.2);
    justify-content: flex-end;
    border-radius: 10px;
    display: flex;
    position: relative;
    list-style: none;
    padding: 15px 20px;
}header .nav_skill .head_learn::before {
    position: absolute;
    opacity: 0.2;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    background: radial-gradient(
        ellipse at center,
        rgb(137,162,188,0.5) 0%,
        transparent 70%
    );
    border-radius: 10px;
}header .nav_skill .head_learn .nav_know {
    margin: 0;
    position: relative;
}header .nav_skill .head_learn .nav_know::after {
    position: absolute;
    box-shadow: 0 0 8px rgb(176,192,213);
    width: 0;
    background: rgb(176,192,213);
    bottom: -5px;
    content: '';
    transition: width 0.3s ease, left 0.3s ease;
    height: 2px;
    left: 50%;
}header .nav_skill .head_learn .nav_know:hover::after {
    left: 10%;
    width: 80%;
}header .nav_skill .head_learn .nav_know a {
    letter-spacing: 1px;
    padding: 10px 15px;
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    font-size: 14px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    font-family: Arial, sans-serif;
}header .nav_skill .head_learn .nav_know:hover a {
    color: rgb(176,192,213);
    text-shadow: 0 0 5px rgb(176,192,213,0.5);
}

@media (max-width: 992px) {header .nav_skill {
    flex-direction: column;
}header .nav_skill .top_know {
    margin: 0 0 15px 0;
    align-self: center;
}header .nav_skill .head_learn {
    justify-content: center;
    width: 100%;
}header .nav_skill .head_learn .nav_know a {
    padding: 10px 15px;
    font-size: calc(14px - 1px);
}}.program_details {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(215,222,236) 0%, rgba(245, 247, 250, 1) 100%);
}.program_details::before {
    z-index: 0;
    width: 100%;
    position: absolute;
    background-size: 30px 30px;
    content: "";
    background-image: 
        linear-gradient(30deg, rgba(rgb(176,192,213,0.5), 0.03) 1px, transparent 1px),
        linear-gradient(120deg, rgba(rgb(176,192,213,0.5), 0.03) 1px, transparent 1px);
    height: 100%;
    left: 0;
    top: 0;
    animation: patternFloat 60s linear infinite;
}.program_details::after {
    right: -20%;
    position: absolute;
    transform: rotate(-15deg);
    background: linear-gradient(135deg, rgba(rgb(176,192,213,0.5), 0.08) 0%, rgba(rgb(137,162,188,0.5), 0.05) 100%);
    top: -50%;
    height: 200%;
    width: 70%;
    content: "";
    z-index: 0;
}.program_details .container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 1200px;
}.program_details h2 {
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    color: #000000;
    transform: perspective(1000px) rotateX(0deg);
    margin-left: auto;
    max-width: 800px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    line-height: 1.3;
    margin-right: auto;
    font-size: 35px;
    position: relative;
}.program_details h2::after {
    width: 80px;
    transform: translateX(-50%);
    bottom: -15px;
    transition: width 0.3s ease;
    height: 3px;
    position: absolute;
    left: 50%;
    background: linear-gradient(90deg, rgb(176,192,213) 0%, rgb(137,162,188) 100%);
    content: "";
}.program_details h2:hover {
    transform: perspective(1000px) rotateX(2deg);
}.program_details h2:hover::after {
    width: 120px;
}.program_details .learn_professional {
    display: grid;
    perspective: 1000px;
    align-items: center;
    position: relative;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    transform-style: preserve-3d;
}.program_details .snapshot {
    box-shadow: 0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.15);
    height: 500px;
    border-radius: 3px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(20px);
    overflow: hidden;
}.program_details .snapshot::before {
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    background: linear-gradient(
        to bottom,
        rgba(rgb(176,192,213,0.5), 0.2),
        rgba(rgba(0, 0, 0, 0.5), 0.4)
    );
    z-index: 1;
    height: 100%;
    opacity: 0.7;
    width: 100%;
    transition: opacity 0.3s ease;
}.program_details .snapshot:hover {
    transform: translateZ(30px) scale(1.02);
}.program_details .snapshot:hover::before {
    opacity: 0.5;
}.program_details .text_panel_wrap {
    scrollbar-width: thin;
    position: relative;
    overflow-y: auto;
    scrollbar-color: rgb(176,192,213) rgba(rgb(215,222,236), 0.5);
    transform: translateZ(10px);
    padding-right: 15px;
    max-height: 500px;
}.program_details .text_panel_wrap::-webkit-scrollbar {
    width: 6px;
}.program_details .text_panel_wrap::-webkit-scrollbar-track {
    background: rgba(rgb(215,222,236), 0.5);
    border-radius: 3px;
}.program_details .text_panel_wrap::-webkit-scrollbar-thumb {
    background-color: rgb(176,192,213);
    border-radius: 3px;
}.program_details .description {
    font-size: 13px;
    line-height: 1.8;
    color: #000000;
    position: relative;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}.program_details .description:first-of-type {
    position: relative;
    border-left: 3px solid rgb(176,192,213);
    padding-left: 20px;
}.program_details .description:last-of-type {
    border-left: 3px solid rgb(137,162,188);
    position: relative;
    padding-left: 20px;
}.program_details .description:first-of-type::before {
    height: 0;
    background: linear-gradient(to bottom, rgb(176,192,213), rgb(137,162,188));
    position: absolute;
    content: "";
    width: 3px;
    transition: height 1.5s ease;
    left: -3px;
    top: 0;
}.program_details .description:first-of-type:hover::before {
    height: 100%;
}

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

@media screen and (max-width: 992px) {.program_details {
    padding: 80px 0 100px;
}.program_details h2 {
    font-size: calc(35px * 0.9);
    margin-bottom: 40px;
}.program_details .learn_professional {
    gap: 30px;
    grid-template-columns: 1fr;
}.program_details .snapshot {
    order: -1;
    height: 400px;
}.program_details .text_panel_wrap {
    max-height: 450px;
}
}

@media screen and (max-width: 768px) {.program_details {
    padding: 60px 0 80px;
}.program_details h2 {
    margin-bottom: 30px;
    font-size: calc(35px * 0.8);
}.program_details h2::after {
    bottom: -12px;
    width: 60px;
}.program_details .snapshot {
    height: 320px;
}.program_details .text_panel_wrap {
    max-height: 400px;
}.program_details .description {
    font-size: calc(13px * 0.95);
    line-height: 1.7;
}
}

@media screen and (max-width: 576px) {.program_details {
    padding: 50px 0 70px;
}.program_details h2 {
    font-size: calc(35px * 0.7);
    margin-bottom: 25px;
}.program_details h2::after {
    bottom: -10px;
    width: 50px;
}.program_details .snapshot {
    height: 250px;
}.program_details .text_panel_wrap {
    max-height: 350px;
}.program_details .description {
    line-height: 1.6;
    padding-left: 15px;
    font-size: calc(13px * 0.9);
}
}

@media (hover: none) {.program_details h2:hover,
    .program_details .snapshot:hover {
    transform: none;
}.program_details h2:hover::after {
    width: 80px;
}}.confidential_zone {
    overflow: hidden;
    font-family: Arial, sans-serif;
    color: #ffffff;
    padding: 60px;
    align-items: center;
    height: auto;
    display: flex;
    border: 2px solid rgb(176,192,213);
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    flex-direction: column;
}.confidential_zone h1 {
    text-transform: uppercase;
    color: rgb(176,192,213);
    text-align: center;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 48px;
    border-bottom: 3px solid rgb(176,192,213);
    width: 100%;
    padding-bottom: 10px;
}.confidential_zone h2 {
    font-weight: 600;
    width: 100%;
    text-align: center;
    color: rgb(137,162,188);
    margin-top: 40px;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 29px;
    border-bottom: 2px solid rgb(137,162,188);
}.confidential_zone h3, .confidential_zone h4, .confidential_zone h5, .confidential_zone h6 {
    margin-bottom: 20px;
    font-size: 18px;
    width: 100%;
    margin-top: 30px;
    border-bottom: 1px solid rgb(176,192,213);
    font-weight: 600;
    text-align: center;
    color: rgb(176,192,213);
    padding-bottom: 5px;
}.confidential_zone li {
    padding-left: 20px;
    position: relative;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
    padding-left: 10px;
    font-weight: 400;
    border-left: 3px solid rgb(176,192,213);
}.confidential_zone section {
    text-align: center;
    margin-top: 30px;
    border: 1px solid rgb(176,192,213);
    padding: 30px;
    box-shadow: 0 0 15px rgb(176,192,213,0.5);
    border-radius: 10px;
    width: 100%;
}.confidential_zone p, .confidential_zone span, .confidential_zone div {
    font-size: 15px;
    line-height: 1.8;
    padding-bottom: 5px;
    width: 100%;
    color: #000000;
    text-align: center;
    font-weight: 300;
    margin-bottom: 15px;
    margin: 0 auto 15px auto;
}

@media only screen and (max-width: 800px) {.confidential_zone {
    padding: 20px 10px;
}.confidential_zone h1 {
    width: 100%;
    font-size: calc(18px * 0.8);
}.confidential_zone h2 {
    font-size: calc(18px * 0.8);
    width: 100%;
}.confidential_zone h3, .confidential_zone h4, .confidential_zone h5, .confidential_zone h6 {
    width: 100%;
    font-size: calc(18px * 0.8);
}.confidential_zone p, .confidential_zone span, .confidential_zone div {
    font-size: calc(15px * 0.9);
    width: 100%;
}.confidential_zone ul, .confidential_zone ol {
    width: 100%;
}.confidential_zone section {
    width: 100%;
}}.join_now {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(176,192,213,0.5) 0%, rgb(137,162,188) 100%);
    padding: 100px 0 90px;
}.join_now::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    content: "";
    z-index: 1;
    left: 0;
    background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.05) 0,
    rgba(255,255,255,0.05) 2px,
    transparent 2px,
    transparent 8px
  );
}.join_now::after {
    z-index: 0;
    width: 300px;
    top: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(176,192,213) 0%, transparent 70%);
    position: absolute;
    content: "";
    opacity: 0.1;
    right: -100px;
    height: 300px;
}.join_now .container {
    margin: 0 auto;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
}.join_now h2 {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: Arial, sans-serif;
    transform: translateY(0);
    max-width: 800px;
    position: relative;
    color: #000000;
    font-size: clamp(1.8rem, 3vw, 30px);
    margin-bottom: 40px;
    line-height: 1.3;
    font-weight: 700;
}.join_now:hover h2 {
    transform: translateY(-5px);
}.join_now h2::after {
    content: "";
    left: 0;
    background: rgb(176,192,213);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform: scaleX(1);
    position: absolute;
    height: 3px;
    transform-origin: left;
    bottom: -12px;
    width: 80px;
}.join_now:hover h2::after {
    transform: scaleX(1.5);
}.join_now .learn_learn {
    backdrop-filter: blur(10px);
    padding: 30px;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
    border-left: 3px solid rgb(176,192,213);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(0);
    gap: 25px;
    position: relative;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}.join_now .learn_learn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}.join_now svg {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    height: 48px;
    transform: scale(1);
    width: 48px;
}.join_now .learn_learn:hover svg {
    transform: scale(1.1) rotate(5deg);
}.join_now svg path {
    fill: rgb(176,192,213);
    transition: fill 0.3s ease;
}.join_now .learn_learn:hover svg path {
    fill: rgb(137,162,188);
}.join_now .learn_learn div {
    justify-content: flex-end;
    flex-grow: 1;
    display: flex;
}.join_now .reach_support {
    color: #ffffff;
    z-index: 1;
    text-decoration: none;
    display: inline-flex;
    font-family: Arial, sans-serif;
    border: 2px solid rgb(176,192,213);
    padding: 14px 32px;
    justify-content: center;
    position: relative;
    transition: color 0.4s ease, border-color 0.4s ease;
    font-size: 16px;
    background: rgb(176,192,213);
    align-items: center;
    letter-spacing: 0.5px;
    overflow: hidden;
    font-weight: 600;
}.join_now .reach_support::before {
    top: 0;
    width: 100%;
    background: #ffffff;
    transform: scaleX(0);
    z-index: -1;
    left: 0;
    content: "";
    transform-origin: right;
    height: 100%;
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}.join_now .reach_support:hover {
    border-color: rgb(176,192,213);
    color: rgb(176,192,213);
}.join_now .reach_support:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}.join_now .reach_support::after {
    margin-left: -15px;
    transition: opacity 0.3s ease, margin-left 0.3s ease;
    content: "→";
    opacity: 0;
}.join_now .reach_support:hover::after {
    margin-left: 8px;
    opacity: 1;
}

@media (max-width: 991px) {.join_now {
    padding: 80px 0 70px;
}.join_now h2 {
    margin-bottom: 30px;
}.join_now .learn_learn {
    padding: 25px;
}
}

@media (max-width: 767px) {.join_now {
    padding: 60px 0 50px;
}.join_now h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}.join_now .learn_learn {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 25px 20px;
}.join_now .learn_learn div {
    width: 100%;
    justify-content: center;
}.join_now .reach_support {
    padding: 12px 24px;
    width: 100%;
}
}

@media (max-width: 480px) {.join_now {
    padding: 50px 0 40px;
}.join_now h2 {
    font-size: 1.5rem;
}.join_now .learn_learn {
    padding: 20px 15px;
}.join_now svg {
    height: 36px;
    width: 36px;
}.join_now .reach_support {
    padding: 10px 20px;
}}footer {
    width: 100%;
    position: relative;
}.study_group {
    padding: 100px 0 30px;
    position: relative;
    color: #000000;
    font-family: Arial, sans-serif;
    background-color: rgb(215,222,236);
}.study_group::before {
    background-color: rgb(176,192,213,0.5);
    left: 0;
    content: "";
    position: absolute;
    height: 120px;
    width: 100%;
    top: 0;
    background: 
        linear-gradient(135deg, rgb(215,222,236) 25%, transparent 25%) -50px 0,
        linear-gradient(225deg, rgb(215,222,236) 25%, transparent 25%) -50px 0,
        linear-gradient(315deg, rgb(215,222,236) 25%, transparent 25%),
        linear-gradient(45deg, rgb(215,222,236) 25%, transparent 25%);
    background-size: 100px 100px;
}footer .volunteer {
    z-index: 1;
    margin-top: -70px;
    position: relative;
}footer .ask_questions {
    background-color: #ffffff;
    border-radius: 18px;
    position: relative;
    margin-bottom: 60px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    transform: translateY(-30px);
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    z-index: 2;
}footer .info_item {
    transition: all 0.3s ease;
    background-color: rgb(215,222,236);
    padding: 10px 15px;
    margin: 10px;
    flex: 1 1 200px;
    position: relative;
    border-radius: 10px;
}footer .info_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}footer .info_item::before {
    opacity: 0;
    border-radius: 3px 0 0 3px;
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    height: 100%;
    transition: opacity 0.3s ease;
    background-color: rgb(176,192,213);
    width: 3px;
}footer .info_item:hover::before {
    opacity: 1;
}footer .info_item svg {
    margin-right: 10px;
    vertical-align: middle;
    fill: rgb(176,192,213);
    width: 20px;
    height: 20px;
}footer .info_item p,
footer .info_item a {
    text-decoration: none;
    vertical-align: middle;
    transition: color 0.3s ease;
    color: #000000;
    display: inline-block;
    font-size: 13px;
}footer .info_item a:hover {
    color: rgb(176,192,213);
}footer .text_main_holder {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    gap: 30px;
}footer .text_main_holder::before {
    z-index: -1;
    height: calc(100% + 80px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    position: absolute;
    left: 0;
    border-radius: 18px;
    top: -40px;
    width: 100%;
    content: "";
    background-color: #ffffff;
}footer .top_know {
    padding: 0 30px;
    position: relative;
}footer .top_know::after {
    right: 30px;
    bottom: -15px;
    background: linear-gradient(90deg, rgb(176,192,213), transparent);
    left: 30px;
    height: 1px;
    content: "";
    position: absolute;
}footer .top_know svg {
    width: auto;
    margin-bottom: 15px;
    height: 45px;
}footer .insta_feed {
    line-height: 1.6;
    color: #000000;
    max-width: 330px;
    font-size: 14px;
}footer .head_learn {
    z-index: 1;
    margin-left: 20px;
    background-color: rgb(215,222,236);
    margin-top: -10px;
    border-radius: 18px;
    padding: 30px;
    margin-right: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}footer .head_learn h5 {
    display: inline-block;
    position: relative;
    color: #000000;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}footer .head_learn h5::after {
    background-color: rgb(176,192,213);
    width: 50px;
    content: "";
    position: absolute;
    bottom: -7px;
    height: 2px;
    left: 0;
}footer .top_mainwrap {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    grid-template-columns: 1fr;
}footer .top_mainwrap a {
    padding: 8px 0;
    transition: all 0.3s ease;
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    position: relative;
    display: inline-block;
}footer .top_mainwrap a::after {
    height: 2px;
    left: 0;
    bottom: 5px;
    width: 0;
    content: "";
    background-color: rgb(176,192,213);
    transition: width 0.3s ease;
    position: absolute;
}footer .top_mainwrap a:hover {
    transform: translateX(5px);
    color: rgb(176,192,213);
}footer .top_mainwrap a:hover::after {
    width: 100%;
}footer .subscribe_holder {
    color: #ffffff;
    margin-left: 40px;
    position: relative;
    padding: 30px;
    z-index: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-right: 40px;
    background-color: rgb(176,192,213);
    border-radius: 18px;
    margin-top: -10px;
}footer .subscribe_holder::before {
    background-color: rgb(176,192,213);
    height: 30px;
    width: 30px;
    top: -15px;
    transform: rotate(45deg);
    content: "";
    position: absolute;
    z-index: -1;
    right: 30px;
}footer .subscribe_holder h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}footer .subscribe_holder p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 25px;
}footer .input_holder {
    flex-direction: column;
    position: relative;
    display: flex;
    gap: 15px;
}footer .input_holder input[type="email"] {
    transition: background-color 0.3s ease;
    border: none;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000;
    border-radius: 10px;
    font-size: 13px;
}footer .input_holder input[type="email"]:focus {
    outline: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
}footer .sub_permission {
    font-size: 16px;
    padding: 14px 20px;
    transition: all 0.3s ease;
    background-color: #000000;
    color: #ffffff;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}footer .sub_permission:hover {
    transform: translateY(-3px);
    background-color: rgb(137,162,188);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}footer .law_res {
    position: relative;
    margin-top: 60px;
    text-align: center;
    z-index: 1;
}footer .footer_classes {
    border-radius: 30px;
    display: inline-block;
    font-size: 14px;
    color: #000000;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 8px 20px;
}

@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
}footer .top_mainwrap {
    grid-template-columns: 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .sub_permission {
    white-space: nowrap;
}
}

@media (min-width: 992px) {footer .head_learn {
    margin-top: 0;
}footer .subscribe_holder {
    margin-top: 0;
}
}

@media (max-width: 991px) {footer .text_main_holder {
    gap: 50px;
}
}

@media (max-width: 767px) {footer .study_group {
    padding: 80px 0 30px;
}footer .ask_questions {
    justify-content: center;
    padding: 20px;
}footer .info_item {
    width: 100%;
}footer .head_learn, footer .subscribe_holder {
    margin-left: 10px;
    margin-right: 10px;
    padding: 25px 20px;
}footer .law_res {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .study_group {
    padding: 60px 0 20px;
}footer .ask_questions {
    padding: 15px;
    margin-bottom: 40px;
    transform: translateY(-20px);
}footer .text_main_holder::before {
    height: calc(100% + 60px);
    top: -30px;
}footer .top_know {
    padding: 0 20px;
}footer .top_know::after {
    left: 20px;
    right: 20px;
}footer .head_learn h5, footer .subscribe_holder h5 {
    font-size: calc(18px - 2px);
}footer .top_mainwrap a {
    padding: 6px 0;
}footer .input_holder input[type="email"],
    footer .sub_permission {
    padding: 12px 15px;
}}.our_team {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}.our_team::before {
    z-index: 1;
    bottom: 0;
    top: 0;
    background: linear-gradient(135deg, rgb(137,162,188,0.5), rgba(0, 0, 0, 0.5) 70%);
    right: 0;
    left: 0;
    content: "";
    position: absolute;
}.our_team::after {
    content: "";
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    height: 200px;
    top: -50px;
    transform: rotate(15deg);
    width: 200px;
    right: -50px;
    position: absolute;
    background: rgb(176,192,213);
    opacity: 0.1;
    z-index: 1;
    animation: float 15s ease-in-out infinite;
}.our_team .container {
    padding: 0 30px;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    position: relative;
}.our_team .text_panel_wrap {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(1deg);
    transition: transform 0.5s ease-out;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 
              0 5px 15px rgba(0, 0, 0, 0.07);
    padding: 50px;
}.our_team .text_panel_wrap:hover {
    transform: perspective(1000px) rotateY(0deg);
}.our_team .text_panel_wrap::before {
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    content: "";
    background: linear-gradient(to bottom, rgb(176,192,213), rgb(137,162,188));
    position: absolute;
}.our_team h1 {
    animation: slideIn 0.8s 0.2s forwards ease-out;
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
    position: relative;
    transform: translateX(-10px);
    opacity: 0;
    color: #000000;
    padding-bottom: 15px;
}.our_team h1::after {
    width: 80px;
    height: 3px;
    left: 0;
    bottom: 0;
    background: rgb(176,192,213);
    position: absolute;
    content: "";
    transition: width 0.3s ease;
}.our_team .text_panel_wrap:hover h1::after {
    width: 120px;
}.our_team ul {
    animation: fadeUp 1s 0.5s forwards ease-out;
    padding: 0;
    margin: 0;
    transform: translateY(20px);
    list-style: none;
    opacity: 0;
}.our_team li {
    margin-bottom: 20px;
}.our_team h4 {
    font-size: 24px;
    color: rgb(176,192,213);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}.our_team h4::before {
    height: 1px;
    bottom: -5px;
    content: "";
    position: absolute;
    background: rgb(176,192,213,0.5);
    width: 100%;
    transform-origin: left;
    left: 0;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}.our_team .text_panel_wrap:hover h4::before {
    transform: scaleX(1);
}.our_team span {
    line-height: 1.8;
    position: relative;
    text-align: justify;
    font-family: Arial, sans-serif;
    font-size: 18px;
    display: block;
    color: #000000;
    column-count: 2;
    column-gap: 40px;
}.our_team span::first-letter {
    font-size: 1.5em;
    color: rgb(137,162,188);
    font-weight: 700;
}

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

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

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

@media (max-width: 1200px) {.our_team {
    padding: 100px 0;
}.our_team .text_panel_wrap {
    padding: 40px;
}
}

@media (max-width: 992px) {.our_team h1 {
    font-size: calc(43px * 0.9);
}.our_team span {
    column-count: 1;
}.our_team .text_panel_wrap {
    transform: perspective(1000px) rotateY(0deg);
}
}

@media (max-width: 768px) {.our_team {
    padding: 80px 0;
}.our_team .text_panel_wrap {
    padding: 30px;
}.our_team h1 {
    margin-bottom: 20px;
    font-size: calc(43px * 0.8);
}.our_team span {
    line-height: 1.7;
    font-size: calc(18px * 0.95);
}
}

@media (max-width: 576px) {.our_team {
    padding: 60px 0;
}.our_team .text_panel_wrap {
    padding: 25px 20px;
}.our_team h1 {
    font-size: calc(43px * 0.7);
}.our_team span {
    font-size: calc(18px * 0.9);
    line-height: 1.6;
}.our_team .text_panel_wrap::before {
    width: 3px;
}
}

@media (max-width: 480px) {.our_team {
    padding: 50px 0;
}.our_team .container {
    padding: 0 15px;
}.our_team h1 {
    margin-bottom: 15px;
    padding-bottom: 10px;
}.our_team h1::after {
    height: 2px;
    width: 60px;
}.our_team .text_panel_wrap:hover h1::after {
    width: 90px;
}
}

@media (prefers-reduced-motion: reduce) {.our_team .text_panel_wrap,
  .our_team h1,
  .our_team ul,
  .our_team h4::before,
  .our_team::after {
    transition: none;
    animation: none;
    transform: none;
}}.education_experience {
    background: rgb(215,222,236);
    overflow: hidden;
    position: relative;
    isolation: isolate;
    padding: 5rem 2rem;
}.education_experience::before {
    top: -20%;
    background: rgb(176,192,213,0.5);
    height: 140%;
    transform: rotate(15deg);
    width: 60%;
    filter: blur(3px);
    content: "";
    right: -5%;
    position: absolute;
    z-index: -1;
}.education_experience::after {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    position: absolute;
    height: 30%;
    width: 30%;
    background: rgb(137,162,188,0.5);
    animation: morph 15s linear infinite alternate;
    z-index: -1;
    content: "";
    left: -5%;
    bottom: -5%;
}@keyframes morph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.education_experience .opinion_hub {
    margin: 0 auto;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    position: relative;
    max-width: 1100px;
    display: grid;
}.education_experience .snapshot {
    transform: translateX(-5%);
    z-index: 2;
    grid-column: 1 / 2;
    border-radius: 0;
    height: 450px;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    width: 100%;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    grid-row: 1 / 2;
    position: relative;
}.education_experience .snapshot::after {
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 50%
    );
    top: 0;
    left: 0;
    position: absolute;
    content: "";
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
    width: 100%;
}.education_experience .opinion_hub:hover .snapshot {
    transform: translateX(0) scale(1.02);
    filter: contrast(1.1);
}.education_experience .experience_path {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    background: #ffffff;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
    transform: translateX(-15%);
    grid-row: 1 / 2;
    padding: 3rem 3rem 3rem 5rem;
    justify-content: center;
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}.education_experience .opinion_hub:hover .experience_path {
    transform: translateX(-10%) translateY(-5px);
    box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.5);
}.education_experience .name {
    display: inline-block;
    font-weight: 700;
    margin-bottom: 0.7rem;
    position: relative;
    color: rgb(176,192,213);
    font-size: 31px;
}.education_experience .name::before {
    transition: transform 0.4s ease 0.2s;
    width: 30px;
    background: rgb(137,162,188,0.5);
    transform: rotate(45deg) scale(0);
    left: -20px;
    height: 30px;
    z-index: -1;
    content: "";
    position: absolute;
    border-radius: 10px;
    top: -10px;
}.education_experience .opinion_hub:hover .name::before {
    transform: rotate(45deg) scale(1);
}.education_experience .experience_path > div:nth-child(2) {
    transform: translateX(-20px);
    margin-bottom: 2rem;
    font-weight: 600;
    opacity: 0;
    color: rgb(137,162,188);
    transition: all 0.5s ease 0.3s;
    font-size: 21px;
    opacity: 0.9;
}.education_experience .opinion_hub:hover .experience_path > div:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
}.education_experience .work_summary {
    font-size: 18px;
    position: relative;
    transition: all 0.5s ease 0.5s;
    transform: translateY(20px);
    font-weight: 400;
    padding-top: 20px;
    font-style: italic;
    line-height: 1.7;
    opacity: 0;
    color: #000000;
}.education_experience .opinion_hub:hover .work_summary {
    opacity: 1;
    transform: translateY(0);
}.education_experience .work_summary::before {
    left: 0;
    position: absolute;
    height: 3px;
    top: 0;
    background: linear-gradient(to right, rgb(176,192,213), transparent);
    width: 60px;
    content: "";
}@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.education_experience .experience_path::after {
    border-radius: 50%;
    height: 40px;
    bottom: 20px;
    position: absolute;
    background: rgb(176,192,213,0.5);
    right: 20px;
    z-index: -1;
    animation: float 4s ease-in-out infinite;
    width: 40px;
    content: "";
}

@media (max-width: 992px) {.education_experience .opinion_hub {
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-rows: auto auto;
}.education_experience .snapshot {
    height: 300px;
    transform: none;
    grid-column: 1 / 2;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    grid-row: 1 / 2;
}.education_experience .snapshot::after {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}.education_experience .experience_path {
    grid-row: 2 / 3;
    transform: none;
    grid-column: 1 / 2;
    clip-path: none;
    padding: 2rem;
}.education_experience .opinion_hub:hover .experience_path {
    transform: translateY(-5px);
}
}