﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}::-webkit-scrollbar {
    background: rgb(177,187,210);
    scroll-behavior: smooth;
    height: 8px;
    width: 0.8em;
}::-webkit-scrollbar-button {
    background: rgb(137,154,184,0.5);
    height: 4px;
    border-radius: 4px;
}::-webkit-scrollbar-track {
    border-radius: 7px;
    background: rgb(177,187,210);
}::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 8px;
}::-webkit-scrollbar-thumb:hover {
    border-color: rgb(177,187,210,0.5);
    background: #ffffff;
}::-webkit-scrollbar-thumb:active {
    background: rgb(215,218,234);
    box-shadow: inset -5px 1px 6px 6px rgba(0, 0, 0, 0.3);
}::-webkit-scrollbar-corner {
    background: rgb(177,187,210);
    border-radius: 3px;
    border: 1px solid rgb(177,187,210);
}html {
    scrollbar-color: #ffffff rgb(137,154,184,0.5);
    scrollbar-width: none;
}
@media (max-width: 768px) {::-webkit-scrollbar {
    width: 8px;
}::-webkit-scrollbar-thumb {
    background: rgb(137,154,184);
}}

html,body {
    height: 100%;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    min-height: 100%;
    color: #000000;
}header,footer {
    width: 100%;
}.container {
    width: 1238px;
    max-width: 100%;
    margin: auto;
}svg {
    width: 30px;
    height: 30px;
}.outer-container_db {
    height: 100%;
    display: flex;
    min-height: 100%;
    flex-direction: column;
}.top_info_db {
    flex: 1 0 auto;
}a {
    text-decoration: none;
    color: inherit;
}.footer_account_db {
    flex: 0 0 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;
}}
.gratitudeDiv_db {
    position: relative;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgb(177,187,210,0.5) 0%, rgb(215,218,234) 70%);
    overflow: hidden;
    perspective: 1000px;
}.gratitudeDiv_db::before {
    height: 100%;
    width: 100%;
    opacity: 0.15;
    background-size: 80px 80px, 60px 60px, 100px 100px;
    z-index: 0;
    top: 0;
    content: "";
    position: absolute;
    background: 
        radial-gradient(circle at 10% 20%, transparent 20%, rgb(177,187,210,0.5) 21%, transparent 22%),
        radial-gradient(circle at 90% 60%, transparent 10%, rgb(177,187,210,0.5) 11%, transparent 12%),
        radial-gradient(circle at 50% 40%, transparent 30%, rgb(177,187,210,0.5) 31%, transparent 32%);
    left: 0;
}.gratitudeDiv_db .container {
    transform-style: preserve-3d;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
}.gratitudeDiv_db h2 {
    transform: translateZ(40px);
    font-size: 28px;
    animation: fadeSlideUp 0.8s 0.2s forwards ease-out;
    color: #000000;
    opacity: 0;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    margin-bottom: 3rem;
    line-height: 1.3;
    position: relative;
}.gratitudeDiv_db h2::after {
    bottom: -15px;
    height: 3px;
    animation: lineExpand 1.2s 0.6s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    transform-origin: left;
    transform: scaleX(0);
    width: 80px;
    content: "";
    position: absolute;
    background: rgb(177,187,210);
    left: 0;
}.gratitudeDiv_db .master_program_db {
    border-left: 5px solid rgb(177,187,210);
    background: #ffffff;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    animation: fadeSlideUp 0.8s 0.4s forwards ease-out;
    box-shadow: 
        0 10px 25px -10px rgba(0,0,0,0.1),
        0 5px 10px -5px rgba(0,0,0,0.04);
    transform: translateZ(20px) rotateY(-2deg);
    opacity: 0;
}.gratitudeDiv_db .master_program_db:hover {
    transform: translateZ(25px) rotateY(0deg);
}.gratitudeDiv_db ul {
    margin: 0;
    list-style-type: none;
    padding: 0;
}.gratitudeDiv_db li {
    padding: 2.5rem;
    position: relative;
}.gratitudeDiv_db li::before {
    z-index: -1;
    position: absolute;
    opacity: 0.7;
    transform: scale(0);
    content: "";
    right: -8px;
    height: 40px;
    animation: pulseIn 1.5s 1s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    top: -8px;
    border-radius: 50%;
    width: 40px;
    background: rgb(137,154,184,0.5);
}.gratitudeDiv_db span {
    font-family: Arial, sans-serif;
    position: relative;
    display: block;
    line-height: 1.8;
    color: #000000;
    transform: translateZ(10px);
    font-size: 18px;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px) translateZ(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(40px);
    }
}

@keyframes lineExpand {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes pulseIn {
    0% {
        transform: scale(0);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 992px) {.gratitudeDiv_db {
    padding: 4rem 1.5rem;
}.gratitudeDiv_db h2 {
    margin-bottom: 2.5rem;
    font-size: calc(28px * 0.9);
}.gratitudeDiv_db .master_program_db {
    transform: translateZ(15px) rotateY(-1deg);
}
}

@media (max-width: 768px) {.gratitudeDiv_db {
    padding: 3rem 1rem;
}.gratitudeDiv_db h2 {
    font-size: calc(28px * 0.8);
    margin-bottom: 2rem;
}.gratitudeDiv_db .master_program_db {
    transform: translateZ(10px) rotateY(0);
}.gratitudeDiv_db li {
    padding: 2rem;
}
}

@media (max-width: 576px) {.gratitudeDiv_db {
    padding: 2.5rem 0.8rem;
}.gratitudeDiv_db h2 {
    margin-bottom: 1.5rem;
    font-size: calc(28px * 0.7);
}.gratitudeDiv_db h2::after {
    height: 2px;
    width: 60px;
}.gratitudeDiv_db li {
    padding: 1.5rem;
}.gratitudeDiv_db span {
    line-height: 1.6;
    font-size: calc(18px * 0.95);
}}.welcome_board_db {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(215,218,234) 0%, rgb(177,187,210,0.5) 100%);
    min-height: 100vh;
}.welcome_board_db::before {
    opacity: 0.6;
    z-index: 1;
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    background: 
    radial-gradient(circle at 20% 30%, rgb(177,187,210,0.5) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgb(137,154,184,0.5) 0%, transparent 30%);
    content: "";
    left: 0;
}.welcome_board_db::after {
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    position: absolute;
    height: 10px;
    content: "";
    background: linear-gradient(90deg, 
    rgb(177,187,210) 0%, 
    rgb(137,154,184) 50%, 
    rgb(177,187,210) 100%);
    left: 0;
    animation: shimmer 4s infinite linear;
    bottom: -5px;
    width: 100%;
}.welcome_board_db .course_head_db {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    max-width: 1280px;
    position: relative;
    justify-content: center;
    z-index: 3;
    min-height: 100vh;
    padding: 6rem 0;
}.welcome_board_db .course_head_db > div {
    transform: perspective(1000px) rotateX(2deg);
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}.welcome_board_db .course_head_db > div:hover {
    transform: perspective(1000px) rotateX(0deg);
}.welcome_board_db .course_head_db > div > div:first-child {
    transform: translateY(20px);
    margin-bottom: 2.5rem;
    position: relative;
    animation: fadeUp 0.8s forwards 0.2s ease-out;
    opacity: 0;
}.welcome_board_db h3 {
    text-align: center;
    letter-spacing: 0.01em;
    font-size: calc(22px * 1.05);
    max-width: 90%;
    padding: 1.5rem 2rem;
    font-family: Arial, sans-serif;
    border-left: 4px solid rgb(177,187,210);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    font-weight: 600;
    color: #000000;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    backdrop-filter: blur(5px);
    position: relative;
    margin: 0 auto;
    line-height: 1.5;
}.welcome_board_db h3::before {
    height: 100%;
    content: "";
    background: rgb(177,187,210,0.5);
    top: 0;
    opacity: 0.05;
    position: absolute;
    transform: skewX(-3deg);
    left: 0;
    z-index: -1;
    width: 100%;
}.welcome_board_db .learn_learnings_db {
    isolation: isolate;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    animation: fadeUp 0.8s forwards 0.4s ease-out;
    position: relative;
    border-radius: 20px;
}.welcome_board_db .learn_learnings_db::before {
    left: 0;
    height: 100%;
    mix-blend-mode: color-burn;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    content: "";
    background: linear-gradient(
    135deg, 
    rgb(177,187,210,0.5) 0%,
    transparent 50%,
    rgb(137,154,184,0.5) 100%
  );
}.welcome_board_db .learn_learnings_db::after {
    left: 0;
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
    background-image: 
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 10px,
      rgba(255,255,255,0.03) 10px,
      rgba(255,255,255,0.03) 20px
    );
    height: 100%;
    z-index: 2;
}.welcome_board_db .learn_learnings_db > div {
    justify-content: center;
    padding: 5rem 2rem;
    flex-direction: column;
    display: flex;
    background: linear-gradient(to bottom, 
    rgba(0,0,0,0.4) 0%, 
    rgba(0,0,0,0.7) 100%);
    z-index: 3;
    position: relative;
    min-height: 50vh;
    align-items: center;
}.welcome_board_db .learn_learnings_db p {
    text-align: center;
    font-size: calc(17px * 1.1);
    max-width: 80%;
    position: relative;
    line-height: 1.6;
    opacity: 0;
    animation: fadeUp 0.6s forwards 0.7s ease-out;
    color: #ffffff;
    transform: translateY(15px);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    padding: 0.8rem 0;
}.welcome_board_db .learn_learnings_db p::after {
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    bottom: 0;
    background: rgb(137,154,184);
    width: 80px;
    content: "";
}.welcome_board_db .title_style_header {
    position: relative;
    text-align: center;
    font-size: 39px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.6s forwards 0.9s ease-out;
    font-weight: 700;
    margin: 1.5rem 0 0;
    line-height: 1.2;
}.welcome_board_db .title_style_header::before,
.welcome_board_db .title_style_header::after {
    width: 80px;
    position: absolute;
    border-radius: 2px;
    background: rgb(137,154,184);
    height: 3px;
    content: "";
}.welcome_board_db .title_style_header::before {
    transform-origin: right;
    animation: scaleIn 0.5s forwards 1.2s ease-out;
    left: -100px;
    transform: translateY(-50%) scaleX(0);
    top: 50%;
}.welcome_board_db .title_style_header::after {
    top: 50%;
    transform-origin: left;
    animation: scaleIn 0.5s forwards 1.2s ease-out;
    right: -100px;
    transform: translateY(-50%) scaleX(0);
}

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

@keyframes scaleIn {
  0% {
    transform: translateY(-50%) scaleX(0);
  }
  100% {
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@media (max-width: 992px) {.welcome_board_db .course_head_db {
    padding: 4rem 0;
}.welcome_board_db h3 {
    font-size: calc(21px * 1.1);
    padding: 1.2rem 1.5rem;
}.welcome_board_db .title_style_header {
    font-size: calc(36px * 1.05);
}.welcome_board_db .title_style_header::before {
    left: -60px;
    width: 60px;
}.welcome_board_db .title_style_header::after {
    right: -60px;
    width: 60px;
}
}

@media (max-width: 768px) {.welcome_board_db .course_head_db {
    width: 95%;
    padding: 3.5rem 0;
}.welcome_board_db h3 {
    padding: 1rem;
    font-size: 21px;
    max-width: 100%;
}.welcome_board_db .learn_learnings_db > div {
    padding: 4rem 1rem;
    min-height: 40vh;
}.welcome_board_db .learn_learnings_db p {
    font-size: 17px;
    max-width: 100%;
}.welcome_board_db .title_style_header {
    font-size: 36px;
}.welcome_board_db .title_style_header::before,
  .welcome_board_db .title_style_header::after {
    display: none;
}
}

@media (max-width: 576px) {.welcome_board_db {
    min-height: 80vh;
}.welcome_board_db .course_head_db {
    min-height: 80vh;
    padding: 2rem 0;
}.welcome_board_db .course_head_db > div > div:first-child {
    margin-bottom: 1.5rem;
}.welcome_board_db h3 {
    padding: 0.8rem;
    font-size: calc(17px * 1.1);
    border-left-width: 3px;
}.welcome_board_db .learn_learnings_db > div {
    min-height: 30vh;
    padding: 3rem 1rem;
}.welcome_board_db .learn_learnings_db p {
    font-size: calc(17px * 0.95);
    margin-bottom: 1rem;
}.welcome_board_db .learn_learnings_db p::after {
    width: 50px;
    height: 1px;
}.welcome_board_db .title_style_header {
    margin-top: 0.8rem;
    font-size: calc(36px * 0.85);
}}header .main_mainbar_db {
    overflow: visible;
    border-bottom-left-radius: 28px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, rgb(177,187,210,0.5) 0%, rgb(137,154,184) 100%);
    margin-left: calc(-50vw + 50%);
    left: 0;
    z-index: 100;
    position: relative;
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    width: 100vw;
    border-bottom-right-radius: 0;
}header .main_mainbar_db::before {
    position: absolute;
    z-index: -1;
    width: 80%;
    height: 110%;
    left: 10%;
    content: "";
    top: -5px;
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 85%);
    background: linear-gradient(135deg, rgb(137,154,184,0.5) 0%, transparent 80%);
}header .main_mainbar_db .nav_guide_db {
    transform: skewX(5deg);
    position: relative;
    z-index: 2;
}header .main_mainbar_db .nav_guide_db .nav_mentor_db {
    transition: transform 0.3s ease-in-out;
    display: block;
}header .main_mainbar_db .nav_guide_db .nav_mentor_db:hover {
    transform: translateY(-8px) rotate(0deg);
}header .main_mainbar_db .nav_guide_db svg {
    height: auto;
    width: 120px;
}header .main_mainbar_db .main_nav_db {
    list-style: none;
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
}header .main_mainbar_db .main_nav_db::before {
    z-index: -1;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
    top: -10px;
    width: calc(100% + 40px);
    background: linear-gradient(45deg, transparent 0%, rgb(177,187,210,0.5) 100%);
    border-radius: 10px;
    left: -20px;
    height: calc(100% + 20px);
    content: "";
    opacity: 0;
}header .main_mainbar_db .main_mainwrap_db {
    transition: transform 0.3s ease;
    position: relative;
}header .main_mainbar_db .main_mainwrap_db a {
    transition: color 0.3s ease;
    font-size: 19px;
    position: relative;
    font-weight: 600;
    text-decoration: none;
    font-family: Arial, sans-serif;
    padding: 0.5rem 1rem;
    display: block;
    color: #ffffff;
}header .main_mainbar_db .main_mainwrap_db a::before {
    content: "";
    height: 2px;
    position: absolute;
    bottom: 0;
    transform: scaleX(0) rotate(-2deg);
    width: 100%;
    left: 0;
    transition: transform 0.3s ease;
    transform-origin: right;
    background: rgb(137,154,184);
}header .main_mainbar_db .main_mainwrap_db a:hover {
    color: rgb(137,154,184);
}header .main_mainbar_db .main_mainwrap_db a:hover::before {
    transform: scaleX(1) rotate(-2deg);
    transform-origin: left;
}

@media (max-width: 992px) {header .main_mainbar_db {
    flex-direction: column;
    box-sizing: border-box;
    transform: skewX(0);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 1rem;
}header .main_mainbar_db::before {
    transform: skewX(0);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 95%);
}header .main_mainbar_db .nav_guide_db {
    margin-bottom: 1rem;
    transform: skewX(0);
}header .main_mainbar_db .main_nav_db {
    transform: skewX(0);
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}header .main_mainbar_db .main_nav_db::before {
    transform: skewX(0);
}header .main_mainbar_db .main_nav_db:hover::before {
    transform: skewX(0);
}header .main_mainbar_db .main_mainwrap_db {
    margin: 0.25rem;
}header .main_mainbar_db .main_mainwrap_db:nth-child(odd),
  header .main_mainbar_db .main_mainwrap_db:nth-child(even) {
    transform: translateY(0);
}
}

@media (max-width: 576px) {header .main_mainbar_db {
    padding: 0.75rem;
}header .main_mainbar_db .main_nav_db {
    flex-direction: column;
    align-items: center;
}header .main_mainbar_db .main_mainwrap_db {
    width: 100%;
    text-align: center;
}header .main_mainbar_db .nav_guide_db svg {
    width: 100px;
}}footer {
    width: 100%;
    position: relative;
}footer .footer_account_db {
    background-color: rgb(137,154,184);
    position: relative;
    font-family: Arial, sans-serif;
    color: #ffffff;
    overflow: hidden;
    padding: 80px 0 30px;
}footer .footer_account_db::before {
    position: absolute;
    background-color: rgb(137,154,184);
    z-index: 0;
    transform: skewY(-3deg);
    content: "";
    left: 0;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
    height: 100px;
    right: 0;
    top: -50px;
}footer .contest_info_db {
    position: relative;
    z-index: 1;
}footer .get_contactcard_db {
    gap: 15px;
    margin-bottom: 60px;
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
}footer .info_item {
    max-width: 300px;
    border-radius: 0 5px 5px 0;
    background-color: rgb(137,154,184,0.5);
    position: relative;
    padding: 15px 20px 15px 25px;
    overflow: hidden;
    flex: 1 1 200px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}footer .info_item::before {
    width: 5px;
    left: 0;
    background-color: rgb(177,187,210);
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
}footer .info_item::after {
    position: absolute;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    top: 0;
    content: "";
    width: 100%;
    left: 0;
}footer .info_item:nth-child(even) {
    background-color: rgb(177,187,210,0.5);
}footer .info_item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px) translateX(5px);
}footer .info_item svg {
    fill: rgb(177,187,210);
    width: 20px;
    top: -1px;
    margin-right: 12px;
    height: 20px;
    position: relative;
    vertical-align: middle;
}footer .info_item p,
footer .info_item a {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    vertical-align: middle;
    transition: color 0.3s ease;
    color: #ffffff;
}footer .info_item a:hover {
    color: rgb(177,187,210);
}footer .text_main_holder {
    position: relative;
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr;
}footer .nav_guide_db {
    background-color: rgb(137,154,184,0.5);
    border-radius: 13px;
    padding: 30px;
    position: relative;
}footer .nav_guide_db::before {
    position: absolute;
    pointer-events: none;
    content: "";
    right: 15px;
    bottom: 15px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    top: 15px;
    left: 15px;
    border-radius: calc(13px - 8px);
}footer .nav_guide_db svg {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    height: 45px;
    width: auto;
    display: block;
}footer .challenge_cta_db {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}footer .main_nav_db {
    position: relative;
}footer .main_nav_db h5 {
    font-weight: 600;
    color: #ffffff;
    display: inline-block;
    position: relative;
    font-size: 19px;
    padding-left: 15px;
    margin-bottom: 25px;
}footer .main_nav_db h5::before {
    position: absolute;
    background-color: rgb(177,187,210);
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 3px;
}footer .header_pro_db {
    margin-bottom: 25px;
    position: relative;
}footer .header_pro_db a {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 0 5px 5px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 10px 15px;
    background-color: rgb(137,154,184,0.5);
    margin: 0 10px 10px 0;
    font-size: 16px;
}footer .header_pro_db a::before {
    transition: width 0.3s ease;
    background-color: rgb(177,187,210);
    top: 0;
    width: 3px;
    position: absolute;
    content: "";
    height: 100%;
    left: 0;
}footer .header_pro_db a:hover {
    background-color: rgb(177,187,210,0.5);
    transform: translateX(5px);
    color: #ffffff;
}footer .header_pro_db a:hover::before {
    width: 5px;
}footer .subscribe_holder {
    border-radius: 13px;
    background-color: rgb(137,154,184,0.5);
    padding: 30px;
    position: relative;
}footer .subscribe_holder::before {
    top: 15px;
    pointer-events: none;
    position: absolute;
    content: "";
    border-radius: calc(13px - 8px);
    right: 15px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    left: 15px;
    bottom: 15px;
}footer .subscribe_holder h5 {
    position: relative;
    font-size: 19px;
    font-weight: 600;
    padding-left: 15px;
    color: #ffffff;
    margin-bottom: 15px;
}footer .subscribe_holder h5::before {
    height: 100%;
    background-color: rgb(177,187,210);
    position: absolute;
    top: 0;
    content: "";
    left: 0;
    width: 3px;
}footer .subscribe_holder p {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}footer .input_holder {
    display: flex;
    gap: 15px;
    flex-direction: column;
}footer .input_holder input[type="email"] {
    color: #ffffff;
    padding: 14px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}footer .input_holder input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.1);
    outline: none;
    border-color: rgb(177,187,210);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}footer .instant_access_db {
    border: none;
    position: relative;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 10px;
    overflow: hidden;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: rgb(177,187,210);
}footer .instant_access_db::after {
    transition: all 0.5s ease;
    position: absolute;
    left: -100%;
    content: "";
    width: 200%;
    transform: rotate(30deg);
    height: 200%;
    top: -50%;
    background: rgba(255, 255, 255, 0.1);
}footer .instant_access_db:hover {
    background-color: rgb(137,154,184);
}footer .instant_access_db:hover::after {
    left: 100%;
}footer .rating_stars_db {
    position: relative;
    margin-top: 50px;
    text-align: center;
}footer .rating_stars_db::before {
    left: 50%;
    top: -25px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    position: absolute;
    width: 50px;
    content: "";
}footer .copy_notice_db {
    font-size: 12px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
}

@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}footer .input_holder {
    flex-direction: row;
}footer .instant_access_db {
    white-space: nowrap;
}
}

@media (max-width: 767px) {footer .footer_account_db {
    padding: 60px 0 30px;
}footer .get_contactcard_db {
    margin-bottom: 40px;
}footer .nav_guide_db, footer .subscribe_holder {
    padding: 25px 20px;
}footer .header_pro_db a {
    padding: 8px 12px;
    margin: 0 5px 8px 0;
}footer .rating_stars_db {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .footer_account_db {
    padding: 50px 0 20px;
}footer .main_nav_db h5, footer .subscribe_holder h5 {
    margin-bottom: 20px;
    font-size: calc(19px - 2px);
}footer .nav_guide_db::before, footer .subscribe_holder::before {
    top: 10px;
    right: 10px;
    left: 10px;
    bottom: 10px;
}footer .input_holder input[type="email"],
    footer .instant_access_db {
    padding: 12px;
}}.contact_information_db {
    padding: 80px 0;
    position: relative;
}.contact_information_db::before {
    z-index: 1;
    top: 0;
    position: absolute;
    right: 0;
    content: "";
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    bottom: 0;
}.contact_information_db .container {
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}.contact_information_db .reach_map_db {
    border-radius: 0;
    grid-template-columns: 45% 55%;
    display: grid;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}.contact_information_db .reach_map_db::before {
    z-index: 0;
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    background: rgb(177,187,210,0.5);
    content: "";
    border-radius: 50%;
    position: absolute;
}.contact_information_db .reach_map_db::after {
    background: rgb(137,154,184,0.5);
    z-index: 0;
    width: 300px;
    border-radius: 50%;
    height: 300px;
    content: "";
    bottom: -150px;
    right: -150px;
    position: absolute;
}.contact_information_db .support_box_db {
    position: relative;
    padding: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1;
}.contact_information_db .support_box_db h3 {
    font-weight: 700;
    color: rgb(177,187,210);
    font-size: 30px;
    position: relative;
    margin-bottom: 40px;
}.contact_information_db .support_box_db h3::after {
    height: 4px;
    left: 0;
    bottom: -15px;
    position: absolute;
    width: 60px;
    background-color: rgb(137,154,184);
    content: "";
}.contact_information_db .support_box_db div {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    display: flex;
}.contact_information_db .support_box_db div:last-of-type {
    border-bottom: none;
}.contact_information_db .support_box_db div svg {
    flex-shrink: 0;
    margin-right: 15px;
    width: 24px;
    height: 24px;
}.contact_information_db .support_box_db div svg path {
    fill: rgb(177,187,210);
    transition: fill 0.3s ease;
}.contact_information_db .support_box_db div:hover svg path {
    fill: rgb(137,154,184);
}.contact_information_db .support_box_db div span {
    font-size: 17px;
    color: #000000;
}.contact_information_db .support_box_db div span a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: #000000;
}.contact_information_db .support_box_db div span a:hover {
    color: rgb(177,187,210);
}.contact_information_db .query_links_db {
    position: relative;
    background-color: #ffffff;
    z-index: 1;
    padding: 50px;
}.contact_information_db .query_links_db h3 {
    font-weight: 600;
    color: #000000;
    font-size: 19px;
    margin-bottom: 30px;
}.contact_information_db form {
    flex-direction: column;
    display: flex;
}.contact_information_db form input[type="text"],
.contact_information_db form input[type="email"] {
    color: #000000;
    border: none;
    border-radius: 10px;
    background-color: rgb(215,218,234);
    margin-bottom: 20px;
    padding: 0 20px;
    transition: all 0.3s ease;
    font-size: 17px;
    height: 55px;
}.contact_information_db form input[type="text"]:focus,
.contact_information_db form input[type="email"]:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgb(177,187,210,0.5);
}.contact_information_db form input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}.contact_information_db .inquiry_help_db {
    position: relative;
    margin-bottom: 25px;
}.contact_information_db .inquiry_help_db input[type="checkbox"] {
    position: absolute;
    width: 0;
    height: 0;
    cursor: pointer;
    opacity: 0;
}.contact_information_db .inquiry_help_db label {
    cursor: pointer;
    padding-left: 35px;
    display: block;
    position: relative;
    color: #000000;
    line-height: 1.6;
    font-size: 12px;
}.contact_information_db .inquiry_help_db label::before {
    content: "";
    position: absolute;
    left: 0;
    border-radius: 10px;
    background-color: rgb(215,218,234);
    top: 2px;
    height: 20px;
    transition: all 0.3s ease;
    width: 20px;
}.contact_information_db .inquiry_help_db input[type="checkbox"]:checked + label::before {
    background-color: rgb(177,187,210);
}.contact_information_db .inquiry_help_db input[type="checkbox"]:checked + label::after {
    height: 12px;
    width: 6px;
    border-width: 0 2px 2px 0;
    content: "";
    border: solid #ffffff;
    transform: rotate(45deg);
    top: 3px;
    position: absolute;
    left: 7px;
}.contact_information_db .inquiry_help_db label a {
    color: rgb(177,187,210);
    transition: all 0.3s ease;
    text-decoration: none;
}.contact_information_db .inquiry_help_db label a:hover {
    color: rgb(137,154,184);
    text-decoration: underline;
}.contact_information_db form .query_query_db {
    align-self: flex-start;
    font-weight: 600;
    font-size: 14px;
    border-radius: 10px;
    padding: 16px 30px;
    border: none;
    background-color: rgb(177,187,210);
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #ffffff;
}.contact_information_db form .query_query_db:hover {
    background-color: rgb(137,154,184);
}@keyframes borderPulse {
    0% {
        border-color: rgba(0, 0, 0, 0.1);
    }
    50% {
        border-color: rgb(177,187,210,0.5);
    }
    100% {
        border-color: rgba(0, 0, 0, 0.1);
    }
}

.contact_information_db .support_box_db div {
    animation-delay: calc(var(--n) * 0.5s);
    animation: borderPulse 3s infinite;
}.contact_information_db .support_box_db div:nth-child(2) {
    --n: 0;
}.contact_information_db .support_box_db div:nth-child(3) {
    --n: 1;
}.contact_information_db .support_box_db div:nth-child(4) {
    --n: 2;
}.contact_information_db .support_box_db div:nth-child(5) {
    --n: 3;
}

@media screen and (max-width: 992px) {.contact_information_db .container {
    width: 90%;
}.contact_information_db .reach_map_db {
    grid-template-columns: 1fr;
}.contact_information_db .support_box_db {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-right: none;
}
}

@media screen and (max-width: 576px) {.contact_information_db {
    padding: 60px 0;
}.contact_information_db .support_box_db,
    .contact_information_db .query_links_db {
    padding: 30px 20px;
}.contact_information_db .support_box_db h3 {
    font-size: calc(30px * 0.8);
}.contact_information_db form input[type="text"],
    .contact_information_db form input[type="email"] {
    height: 50px;
}.contact_information_db form .query_query_db {
    width: 100%;
    padding: 14px 20px;
}}.privacy_safeguard_db {
    background: linear-gradient(135deg, rgb(215,218,234) 0%, rgba(245, 245, 250, 0.97) 100%);
    overflow: hidden;
    position: relative;
    padding: 5rem 0;
}.privacy_safeguard_db::before {
    height: 100%;
    content: "";
    left: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(rgb(177,187,210,0.5), 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(rgb(137,154,184,0.5), 0.04) 0%, transparent 50%);
    top: 0;
    width: 100%;
    z-index: 1;
    position: absolute;
    pointer-events: none;
}.privacy_safeguard_db .container {
    z-index: 2;
    margin: 0 auto;
    position: relative;
    transform: translateZ(0);
    padding: 0 2rem;
    max-width: 1140px;
    animation: fadeIn 0.8s ease-out forwards;
}.privacy_safeguard_db h1 {
    font-size: 41px;
    line-height: 1.2;
    color: #000000;
    font-weight: 700;
    position: relative;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
    transform: translateX(-5px);
}.privacy_safeguard_db h1::after {
    animation-delay: 0.2s;
    height: 3px;
    width: 80px;
    opacity: 0;
    animation: scaleIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    position: absolute;
    content: "";
    transform-origin: left;
    background: linear-gradient(90deg, rgb(177,187,210) 0%, rgb(137,154,184) 100%);
    left: 0;
    bottom: -12px;
}.privacy_safeguard_db h2 {
    position: relative;
    color: #000000;
    margin: 3rem 0 1.5rem;
    border-left: 3px solid rgb(177,187,210);
    padding-left: 1rem;
    font-weight: 600;
    font-size: 33px;
}.privacy_safeguard_db h3 {
    margin: 2.5rem 0 1.25rem;
    border-left: 2px solid rgb(137,154,184);
    font-size: calc(33px * 0.85);
    color: #000000;
    padding-left: 1rem;
    position: relative;
    font-weight: 600;
}.privacy_safeguard_db h4 {
    font-size: calc(33px * 0.75);
    padding-left: 1rem;
    color: #000000;
    margin: 2rem 0 1rem;
    border-left: 1px solid rgb(137,154,184);
    font-weight: 600;
    position: relative;
}.privacy_safeguard_db p {
    font-family: Arial, sans-serif;
    max-width: 90ch;
    transform: translateZ(0);
    line-height: 1.8;
    color: #000000;
    position: relative;
    font-size: 18px;
    margin-bottom: 1.5rem;
}.privacy_safeguard_db p strong {
    position: relative;
    font-weight: 600;
    color: #000000;
    display: inline-block;
}.privacy_safeguard_db span {
    max-width: 90ch;
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 18px;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    display: block;
}.privacy_safeguard_db ul {
    list-style-type: none;
    margin: 1.5rem 0 2rem 1.5rem;
    padding: 0;
}.privacy_safeguard_db li {
    line-height: 1.7;
    font-size: 18px;
    color: #000000;
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
}.privacy_safeguard_db li::before {
    top: 0.8rem;
    border-radius: 50%;
    position: absolute;
    background-color: rgb(177,187,210);
    content: "";
    transform: translateY(-50%);
    left: 0;
    height: 6px;
    width: 6px;
}.privacy_safeguard_db li:nth-child(2n)::before {
    background-color: rgb(137,154,184);
}@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }
    100% {
        transform: scaleX(1);
        opacity: 1;
    }
}


.privacy_safeguard_db h2:hover,
.privacy_safeguard_db h3:hover,
.privacy_safeguard_db h4:hover {
    transition: transform 0.3s ease-out;
    transform: translateX(5px);
}


@media (max-width: 992px) {.privacy_safeguard_db {
    padding: 4rem 0;
}.privacy_safeguard_db h1 {
    font-size: calc(41px * 0.9);
}.privacy_safeguard_db h2 {
    font-size: calc(33px * 0.9);
}.privacy_safeguard_db h3 {
    font-size: calc(33px * 0.8);
}.privacy_safeguard_db h4 {
    font-size: calc(33px * 0.7);
}
}

@media (max-width: 768px) {.privacy_safeguard_db {
    padding: 3rem 0;
}.privacy_safeguard_db .container {
    padding: 0 1.5rem;
}.privacy_safeguard_db h1 {
    margin-bottom: 2rem;
    font-size: calc(41px * 0.85);
}.privacy_safeguard_db h1::after {
    width: 60px;
}.privacy_safeguard_db h2 {
    margin: 2.5rem 0 1.25rem;
}.privacy_safeguard_db h3 {
    margin: 2rem 0 1rem;
}.privacy_safeguard_db li {
    padding-left: 1.5rem;
}
}

@media (max-width: 576px) {.privacy_safeguard_db {
    padding: 2.5rem 0;
}.privacy_safeguard_db .container {
    padding: 0 1.25rem;
}.privacy_safeguard_db h1 {
    font-size: calc(41px * 0.75);
    transform: translateX(0);
}.privacy_safeguard_db h2 {
    padding-left: 0.75rem;
    font-size: calc(33px * 0.8);
}.privacy_safeguard_db h3 {
    padding-left: 0.75rem;
    font-size: calc(33px * 0.7);
}.privacy_safeguard_db h4 {
    padding-left: 0.75rem;
    font-size: calc(33px * 0.6);
}.privacy_safeguard_db p,
    .privacy_safeguard_db span {
    font-size: calc(18px * 0.95);
}.privacy_safeguard_db ul {
    margin-left: 0.5rem;
}.privacy_safeguard_db li {
    padding-left: 1.25rem;
    margin-bottom: 0.8rem;
    font-size: calc(18px * 0.95);
}}.our_story_db {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgb(215,218,234);
}.our_story_db::before {
    background-size: 40px 40px;
    opacity: 0.05;
    width: 100%;
    transform-origin: center center;
    height: 100%;
    left: 0;
    animation: gridMove 60s linear infinite;
    background: 
        linear-gradient(0deg, rgba(0, 0, 0, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.5) 1px, transparent 1px);
    backface-visibility: hidden;
    z-index: -1;
    background-position: center;
    content: "";
    top: 0;
    position: absolute;
    transform: perspective(1000px) rotateX(60deg) scale(2.5) translateZ(-200px);
}@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

.our_story_db::after {
    height: 200%;
    content: "";
    top: -50%;
    width: 200%;
    left: -50%;
    z-index: -2;
    background: radial-gradient(circle at center, transparent 30%, rgb(215,218,234) 70%);
    position: absolute;
}.our_story_db .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 15px;
}.our_story_db .container::before,
.our_story_db .container::after {
    content: "";
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
}.our_story_db .container::before {
    opacity: 0.1;
    background: radial-gradient(circle at center, rgb(177,187,210,0.5) 0%, transparent 70%);
    filter: blur(40px);
    top: -100px;
    height: 250px;
    right: -50px;
    animation: pulseGlow 15s ease-in-out infinite alternate;
    width: 250px;
}.our_story_db .container::after {
    bottom: -150px;
    width: 300px;
    left: -100px;
    animation: pulseGlow 20s ease-in-out infinite alternate-reverse;
    filter: blur(50px);
    opacity: 0.15;
    height: 300px;
    background: radial-gradient(circle at center, rgb(137,154,184,0.5) 0%, transparent 70%);
}@keyframes pulseGlow {
    0% {
        opacity: 0.1;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.15;
        transform: scale(1.2);
    }
    100% {
        opacity: 0.1;
        transform: scale(0.8);
    }
}

.our_story_db .master_program_db {
    grid-template-rows: auto 1fr;
    gap: 30px;
    grid-template-columns: 1fr 1.5fr;
    display: grid;
    position: relative;
    grid-template-areas:
        "logo content"
        "director content";
}.our_story_db .master_program_db::before {
    z-index: -1;
    opacity: 0.2;
    height: 100%;
    left: 0;
    background: 
        linear-gradient(90deg, transparent calc(33.33% - 1px), rgb(177,187,210,0.5) calc(33.33%), transparent calc(33.33% + 1px)),
        linear-gradient(0deg, transparent calc(40% - 1px), rgb(177,187,210,0.5) calc(40%), transparent calc(40% + 1px));
    content: "";
    width: 100%;
    position: absolute;
    pointer-events: none;
    top: 0;
}.our_story_db .master_program_db::after {
    bottom: -20px;
    content: "";
    height: 1px;
    opacity: 0.6;
    animation: scanEffect 3s ease-in-out infinite;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    background: linear-gradient(90deg, transparent, rgb(177,187,210), transparent);
    width: 200px;
}@keyframes scanEffect {
    0%, 100% {
        transform: translateX(-50%) scaleX(0.5);
        opacity: 0.3;
    }
    50% {
        transform: translateX(-50%) scaleX(1);
        opacity: 0.6;
    }
}

.our_story_db .story_tl_db {
    border-radius: 27px;
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    align-items: center;
    color: #000000;
    gap: 15px;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    grid-area: logo;
}.our_story_db .story_tl_db:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgb(177,187,210,0.5);
}.our_story_db .story_tl_db::before {
    opacity: 0;
    transition: opacity 0.4s ease;
    inset: -2px;
    content: "";
    border-radius: calc(27px + 2px);
    z-index: -1;
    position: absolute;
    background: linear-gradient(45deg, rgb(177,187,210), rgb(137,154,184), rgb(177,187,210));
}.our_story_db .story_tl_db:hover::before {
    opacity: 0.5;
}.our_story_db .story_tl_db svg {
    fill: rgb(177,187,210);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    filter: drop-shadow(0 0 2px rgb(177,187,210,0.5));
    width: 45px;
    height: 45px;
}.our_story_db .story_tl_db svg path {
    transition: fill 0.5s ease;
}.our_story_db .story_tl_db:hover svg {
    filter: drop-shadow(0 0 5px rgb(177,187,210));
    transform: rotate(10deg) scale(1.1);
}.our_story_db .mentor_approach_db {
    align-items: center;
    grid-area: director;
    gap: 25px;
    display: flex;
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    flex-direction: row;
    border-radius: 27px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 30px;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.our_story_db .mentor_approach_db:hover {
    border-color: rgb(177,187,210,0.5);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}.our_story_db .mentor_approach_db::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: 
        radial-gradient(circle at 20% 50%, rgb(177,187,210,0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgb(137,154,184,0.5) 0%, transparent 60%);
    transition: opacity 0.5s ease;
    opacity: 0.05;
}.our_story_db .mentor_approach_db:hover::before {
    opacity: 0.1;
}.our_story_db .mentor_approach_db::after {
    background: linear-gradient(90deg, transparent, rgb(177,187,210), transparent);
    height: 2px;
    left: 35%;
    bottom: 0;
    position: absolute;
    width: 30%;
    animation: scanHorizontal 3s ease-in-out infinite alternate;
    content: "";
}@keyframes scanHorizontal {
    0% {
        opacity: 0.4;
        transform: scaleX(0.7);
    }
    100% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}

.our_story_db .img_caption_db {
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border-radius: 27px;
    width: 120px;
    height: 120px;
    z-index: 5;
    flex-shrink: 0;
    border: 3px solid #ffffff;
    position: relative;
    transition: all 0.4s ease;
}.our_story_db .study_experts_db {
    flex: 1;
}.our_story_db .virtual_training_db {
    padding-bottom: 10px;
    margin-bottom: 8px;
    font-size: 18px;
    color: #000000;
    position: relative;
    font-weight: 700;
    transition: all 0.3s ease;
}.our_story_db .virtual_training_db::after {
    content: "";
    transition: width 0.4s ease;
    height: 2px;
    bottom: 0;
    left: 0;
    width: 40px;
    position: absolute;
    background: linear-gradient(90deg, rgb(177,187,210), transparent);
}.our_story_db .mentor_approach_db:hover .virtual_training_db::after {
    width: 60px;
}.our_story_db .edu_values_db {
    font-size: 12px;
    transition: all 0.3s ease;
    color: rgb(177,187,210);
    opacity: 0.9;
    font-weight: 600;
    margin-bottom: 0;
}.our_story_db .mentor_approach_db:hover .edu_values_db {
    transform: translateX(5px);
    opacity: 1;
}.our_story_db .text_wrap_item_db {
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 27px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    position: relative;
    grid-area: content;
    z-index: 2;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.02);
}.our_story_db .text_wrap_item_db:hover {
    border-color: rgb(137,154,184,0.5);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}.our_story_db .text_wrap_item_db::before {
    height: 600px;
    z-index: -1;
    opacity: 0.03;
    background: rgb(177,187,210,0.5);
    width: 600px;
    filter: blur(60px);
    right: -300px;
    animation: morphBlob 20s ease-in-out infinite alternate;
    top: -300px;
    position: absolute;
    border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
    content: "";
}.our_story_db .text_wrap_item_db::after {
    width: 500px;
    filter: blur(50px);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: rgb(137,154,184,0.5);
    animation: morphBlob 25s ease-in-out infinite alternate-reverse;
    z-index: -1;
    opacity: 0.03;
    position: absolute;
    height: 500px;
    content: "";
    left: -250px;
    bottom: -250px;
}@keyframes morphBlob {
    0% {
        border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(-50px, 20px) rotate(120deg);
    }
    66% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(50px, -20px) rotate(240deg);
    }
    100% {
        border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
        transform: translate(0, 0) rotate(360deg);
    }
}

.our_story_db .text_wrap_item_db h2 {
    font-weight: 700;
    color: #000000;
    font-size: 31px;
    position: relative;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    padding-bottom: 15px;
}.our_story_db .text_wrap_item_db h2::after {
    transition: all 0.4s ease;
    background: linear-gradient(90deg, rgb(177,187,210), rgb(137,154,184,0.5), transparent);
    width: 80px;
    bottom: 0;
    position: absolute;
    height: 3px;
    left: 0;
    border-radius: 10px;
    content: "";
}.our_story_db .text_wrap_item_db:hover h2::after {
    width: 120px;
}.our_story_db .text_wrap_item_db p {
    transition: all 0.3s ease;
    margin-bottom: 0;
    color: #000000;
    font-size: 12px;
    position: relative;
    line-height: 1.9;
}.our_story_db .text_wrap_item_db:hover p {
    transform: translateY(3px);
}.our_story_db .text_wrap_item_db:hover::before,
.our_story_db .text_wrap_item_db:hover::after {
    opacity: 0.06;
}.our_story_db .text_wrap_item_db::after {
    z-index: -3;
    pointer-events: none;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 8px,
        rgba(255, 255, 255, 0.03) 8px,
        rgba(255, 255, 255, 0.03) 9px
    );
    opacity: 0.5;
    position: absolute;
}.our_story_db .story_tl_db:hover svg path,
.our_story_db .story_tl_db:hover svg {
    fill: rgb(137,154,184);
}

@media (max-width: 1199px) {.our_story_db {
    padding: 120px 0;
}.our_story_db .master_program_db {
    grid-template-columns: 1fr 1.2fr;
    gap: 25px;
}.our_story_db .text_wrap_item_db {
    padding: 35px;
}
}

@media (max-width: 991px) {.our_story_db {
    padding: 100px 0;
}.our_story_db .master_program_db {
    gap: 30px;
    grid-template-rows: auto auto auto;
    grid-template-areas:
            "logo"
            "director"
            "top_info_db";
    grid-template-columns: 1fr;
}.our_story_db .story_tl_db {
    justify-content: center;
}.our_story_db .mentor_approach_db {
    max-width: 600px;
    margin: 0 auto;
}.our_story_db .text_wrap_item_db {
    margin: 0 auto;
    max-width: 600px;
}.our_story_db .master_program_db::before {
    background: 
            linear-gradient(90deg, transparent calc(50% - 1px), rgb(177,187,210,0.5) calc(50%), transparent calc(50% + 1px)),
            linear-gradient(0deg, transparent calc(33.33% - 1px), rgb(177,187,210,0.5) calc(33.33%), transparent calc(33.33% + 1px)),
            linear-gradient(0deg, transparent calc(66.66% - 1px), rgb(177,187,210,0.5) calc(66.66%), transparent calc(66.66% + 1px));
    opacity: 0.1;
}
}

@media (max-width: 767px) {.our_story_db {
    padding: 80px 0;
}.our_story_db::before {
    background-size: 30px 30px;
}.our_story_db .mentor_approach_db {
    padding: 25px;
}.our_story_db .text_wrap_item_db {
    padding: 30px;
}.our_story_db .story_tl_db {
    padding: 15px;
}.our_story_db .text_wrap_item_db h2 {
    font-size: calc(31px * 0.9);
}
}

@media (max-width: 575px) {.our_story_db {
    padding: 60px 0;
}.our_story_db .mentor_approach_db {
    padding: 25px 15px;
    text-align: center;
    flex-direction: column;
}.our_story_db .img_caption_db {
    margin-bottom: 15px;
    width: 100px;
    height: 100px;
}.our_story_db .virtual_training_db::after {
    left: 50%;
    transform: translateX(-50%);
}.our_story_db .mentor_approach_db:hover .edu_values_db {
    transform: translateX(0) translateY(3px);
}.our_story_db .text_wrap_item_db {
    padding: 25px 20px;
}.our_story_db .text_wrap_item_db h2 {
    font-size: calc(31px * 0.8);
}.our_story_db .story_tl_db svg {
    height: 40px;
    width: 40px;
}.our_story_db .virtual_training_db {
    font-size: calc(18px * 0.95);
}.our_story_db .edu_values_db {
    font-size: calc(12px * 0.95);
}}.learning_profits_db {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(215,218,234) 0%, rgb(177,187,210,0.5) 100%);
}.learning_profits_db::before {
    left: 0;
    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(177,187,210,0.5) 0%, transparent 10%),
        radial-gradient(circle at 80% 70%, rgb(137,154,184,0.5) 0%, transparent 20%);
    animation: pulse 15s infinite alternate;
}.learning_profits_db .master_program_db {
    display: flex;
    padding: 0 2rem;
    align-items: center;
    margin: 0 auto;
    flex-direction: row-reverse;
    z-index: 5;
    position: relative;
    max-width: 1200px;
}.learning_profits_db .img_caption_db {
    border-radius: 12px;
    flex: 0 0 45%;
    position: relative;
    height: 500px;
    transform: perspective(1000px) rotateY(-5deg);
    overflow: hidden;
    transition: transform 0.5s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}.learning_profits_db .img_caption_db::after {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    z-index: 1;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgb(137,154,184,0.5) 100%);
}.learning_profits_db .text_wrap_item_db {
    flex: 0 0 55%;
    padding-right: 5rem;
}.learning_profits_db h2 {
    position: relative;
    margin-bottom: 2rem;
    color: #000000;
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 1rem;
}.learning_profits_db h2::after {
    bottom: 0;
    width: 80px;
    content: '';
    background: rgb(177,187,210);
    border-radius: 10px;
    left: 0;
    position: absolute;
    height: 4px;
}.learning_profits_db .text_main_holder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}.learning_profits_db .text_main_holder > div {
    transform: translateX(0);
    background: #ffffff;
    align-items: flex-start;
    display: flex;
    padding: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}.learning_profits_db .text_main_holder > div:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}.learning_profits_db .text_main_holder svg {
    width: 2.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    height: 2.5rem;
    fill: rgb(177,187,210);
}.learning_profits_db .text_main_holder svg path {
    stroke-width: 0.5;
    stroke: #ffffff;
    fill: rgb(177,187,210);
}.learning_profits_db .text_main_holder p {
    color: #000000;
    margin: 0;
    line-height: 1.6;
    font-size: 18px;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.5;
    }
}

@media (max-width: 992px) {.learning_profits_db .master_program_db {
    flex-direction: column;
}.learning_profits_db .img_caption_db {
    margin-bottom: 3rem;
    transform: perspective(1000px) rotateY(0);
    height: 400px;
    flex: 0 0 100%;
}.learning_profits_db .text_wrap_item_db {
    flex: 0 0 100%;
    padding-right: 0;
}
}

@media (max-width: 768px) {.learning_profits_db {
    padding: 4rem 0;
}.learning_profits_db .img_caption_db {
    height: 300px;
}.learning_profits_db h2 {
    font-size: calc(32px * 0.85);
}.learning_profits_db .text_main_holder > div {
    padding: 1.2rem;
}
}

@media (max-width: 576px) {.learning_profits_db .master_program_db {
    padding: 0 1rem;
}.learning_profits_db .img_caption_db {
    height: 250px;
}.learning_profits_db .text_main_holder svg {
    height: 2rem;
    width: 2rem;
}}.program_details_db {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background-color: #000000;
}.program_details_db::before {
    content: "";
    top: 0;
    z-index: 1;
    background: 
        radial-gradient(circle at 30% 20%, rgb(177,187,210,0.5) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgb(137,154,184,0.5) 0%, transparent 40%);
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
}.program_details_db::after {
    content: "";
    left: 0;
    width: 100%;
    top: 0;
    z-index: 1;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.01) 0px, rgba(255, 255, 255, 0.01) 1px, transparent 1px, transparent 10px);
    position: absolute;
    height: 100%;
}.program_details_db .container {
    z-index: 2;
    position: relative;
}.program_details_db .career_classes_db {
    display: grid;
    gap: 30px;
    grid-template-areas:
        "image title"
        "desc1 desc2";
    grid-template-rows: auto 1fr;
    min-height: 500px;
    grid-template-columns: 1fr 1fr;
}.program_details_db .text_wrap_item_db {
    display: contents;
}.program_details_db .text_wrap_item_db h2 {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 100%);
    border-radius: 19px;
    margin: 0;
    transform: translateX(-30px);
    animation: slide-in 0.8s forwards 0.2s;
    font-size: 34px;
    opacity: 0;
    grid-area: title;
    align-self: center;
    padding: 30px;
    font-weight: 700;
    border-left: 3px solid rgb(177,187,210);
    backdrop-filter: blur(5px);
}.program_details_db .text_wrap_item_db .description:nth-of-type(1) {
    grid-area: desc1;
    transform: translateY(30px);
    opacity: 0;
    animation: fade-up 0.8s forwards 0.4s;
}.program_details_db .text_wrap_item_db .description:nth-of-type(2) {
    animation: fade-up 0.8s forwards 0.6s;
    opacity: 0;
    transform: translateY(30px);
    grid-area: desc2;
}.program_details_db .text_wrap_item_db .description {
    padding: 25px;
    color: #000000;
    font-size: 13px;
    background: rgba(0, 0, 0, 0.2);
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top: 3px solid rgb(137,154,184);
    overflow: hidden;
    backdrop-filter: blur(5px);
    margin: 0;
    border-radius: 19px;
    position: relative;
}.program_details_db .text_wrap_item_db .description::before {
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    pointer-events: none;
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    width: 100%;
}.program_details_db .img_caption_db {
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    grid-area: image;
    border-radius: 19px;
    min-height: 100%;
    overflow: hidden;
}.program_details_db .img_caption_db::before {
    content: "";
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, transparent 100%);
    left: 0;
    width: 100%;
}

@keyframes slide-in {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-up {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }
    5% {
        opacity: 0.5;
    }
    95% {
        opacity: 0.5;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@media (max-width: 991px) {.program_details_db {
    padding: 80px 0;
}.program_details_db .career_classes_db {
    grid-template-areas:
            "image image"
            "title title"
            "desc1 desc2";
    min-height: auto;
}.program_details_db .img_caption_db {
    height: 400px;
}
}

@media (max-width: 767px) {.program_details_db {
    padding: 60px 0;
}.program_details_db .career_classes_db {
    gap: 20px;
    grid-template-columns: 1fr;
    grid-template-areas:
            "image"
            "title"
            "desc1"
            "desc2";
}.program_details_db .img_caption_db {
    height: 350px;
}.program_details_db .text_wrap_item_db h2 {
    font-size: calc(34px * 0.9);
    padding: 20px;
}.program_details_db .text_wrap_item_db .description {
    padding: 20px;
}

}

@media (max-width: 480px) {.program_details_db {
    padding: 40px 0;
}.program_details_db .img_caption_db {
    height: 250px;
}.program_details_db .text_wrap_item_db h2 {
    font-size: calc(34px * 0.8);
    padding: 15px;
}.program_details_db .text_wrap_item_db .description {
    font-size: calc(13px * 0.95);
    padding: 15px;
}.program_details_db .tech-element {
    display: none;
}}.operation_process_db {
    overflow: visible;
    padding: 160px 0;
    position: relative;
    background: linear-gradient(170deg, rgb(215,218,234) 0%, rgba(0, 0, 0, 0.5) 100%);
}.operation_process_db::before {
    height: 100%;
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, rgb(177,187,210,0.5) 0%, transparent 40%);
    content: '';
    opacity: 0.2;
    left: 0;
    position: absolute;
    z-index: 1;
}.operation_process_db .master_program_db {
    z-index: 2;
    padding: 0 20px;
    transform: rotate(-3deg);
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}.operation_process_db .text_wrap_item_db {
    backdrop-filter: blur(10px);
    margin-left: 5%;
    position: relative;
    overflow: visible;
    border-radius: 0 10px 10px 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: translateX(20px);
    border-left: 4px solid rgb(177,187,210);
    padding: 60px 70px 60px 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    width: 60%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}.operation_process_db .text_wrap_item_db:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateX(10px);
}.operation_process_db .text_wrap_item_db::before {
    animation: pulse-glow 8s infinite alternate;
    content: '';
    border-radius: 50%;
    filter: blur(40px);
    background: rgb(177,187,210);
    height: 180px;
    width: 180px;
    opacity: 0.1;
    position: absolute;
    top: -90px;
    z-index: -1;
    right: -90px;
}.operation_process_db .text_wrap_item_db::after {
    z-index: 3;
    width: 150%;
    height: 3px;
    left: -25%;
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(177,187,210,0.5) 30%, 
        rgb(177,187,210) 50%, 
        rgb(177,187,210,0.5) 70%, 
        transparent 100%
    );
    bottom: -30px;
    content: '';
}.operation_process_db .text_wrap_item_db h2 {
    position: relative;
    margin-bottom: 30px;
    color: #ffffff;
    padding-bottom: 15px;
    font-size: 29px;
    transform: translateX(-40px);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}.operation_process_db .text_wrap_item_db h2::before {
    z-index: -1;
    left: -35px;
    top: -35px;
    animation: spin-slow 20s linear infinite;
    opacity: 0.6;
    position: absolute;
    border: 2px solid rgb(177,187,210,0.5);
    width: 70px;
    border-radius: 10px;
    height: 70px;
    content: '';
}.operation_process_db .text_wrap_item_db h2::after {
    position: absolute;
    border-radius: 10px;
    width: 60px;
    left: 0;
    background: rgb(177,187,210);
    content: '';
    bottom: 0;
    height: 4px;
}.operation_process_db .text_wrap_item_db p {
    font-size: 15px;
    line-height: 1.8;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    position: relative;
}.operation_process_db::after {
    opacity: 0.1;
    transform: rotate(30deg);
    width: 180px;
    animation: rotate-float 25s infinite linear;
    right: 15%;
    filter: blur(30px);
    height: 180px;
    border-radius: 10px;
    background: rgb(137,154,184);
    content: '';
    position: absolute;
    bottom: -90px;
}.operation_process_db .master_program_db::before {
    position: absolute;
    opacity: 0.4;
    right: 10%;
    height: 100px;
    top: -120px;
    content: '';
    width: 100px;
    border: 1px solid rgb(177,187,210,0.5);
    animation: float-vertical 10s infinite ease-in-out;
    border-radius: 50%;
}.operation_process_db .master_program_db::after {
    position: absolute;
    background: rgb(177,187,210);
    opacity: 0.2;
    top: 40%;
    width: 25px;
    filter: blur(5px);
    height: 25px;
    left: -40px;
    animation: pulse-subtle 5s infinite;
    border-radius: 50%;
    content: '';
}@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-float {
    0% {
        transform: rotate(30deg) translateY(0);
    }
    25% {
        transform: rotate(120deg) translateY(-20px);
    }
    50% {
        transform: rotate(210deg) translateY(0);
    }
    75% {
        transform: rotate(300deg) translateY(20px);
    }
    100% {
        transform: rotate(390deg) translateY(0);
    }
}

@keyframes float-vertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes pulse-subtle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.3);
    }
}

.operation_process_db .text_wrap_item_db p::first-letter {
    color: rgb(177,187,210);
    font-size: 1.5em;
    font-weight: 700;
}.operation_process_db .text_wrap_item_db p::after {
    right: -250px;
    z-index: -1;
    content: '';
    opacity: 0.3;
    width: 200px;
    position: absolute;
    background-image: repeating-linear-gradient(
        -45deg,
        rgb(177,187,210,0.5),
        rgb(177,187,210,0.5) 1px,
        transparent 1px,
        transparent 6px
    );
    height: 100%;
    top: 0;
}

@media screen and (max-width: 1200px) {.operation_process_db .text_wrap_item_db::after {
    left: -10%;
    width: 120%;
}.operation_process_db .text_wrap_item_db p::after {
    display: none;
}
}

@media screen and (max-width: 992px) {.operation_process_db {
    padding: 120px 0;
}.operation_process_db .master_program_db {
    transform: rotate(-2deg);
}.operation_process_db .text_wrap_item_db {
    width: 70%;
    padding: 50px 40px 50px 40px;
}.operation_process_db .text_wrap_item_db h2 {
    transform: translateX(-30px);
}.operation_process_db .text_wrap_item_db::before {
    right: -75px;
    top: -75px;
    height: 150px;
    width: 150px;
}.operation_process_db::after {
    height: 150px;
    bottom: -75px;
    width: 150px;
}
}

@media screen and (max-width: 768px) {.operation_process_db {
    overflow: hidden;
    padding: 90px 0;
}.operation_process_db .master_program_db {
    transform: none;
}.operation_process_db .text_wrap_item_db {
    border-radius: 10px;
    transform: none;
    padding: 40px 30px;
    margin-left: 0;
    width: 90%;
}.operation_process_db .text_wrap_item_db:hover {
    transform: none;
}.operation_process_db .text_wrap_item_db h2 {
    margin-bottom: 25px;
    font-size: calc(29px * 0.9);
    transform: none;
}.operation_process_db .text_wrap_item_db h2::before {
    display: none;
}.operation_process_db .text_wrap_item_db::before {
    top: -60px;
    height: 120px;
    right: -60px;
    width: 120px;
}.operation_process_db .text_wrap_item_db::after {
    bottom: -20px;
    left: 0;
    width: 100%;
}.operation_process_db .master_program_db::before,
    .operation_process_db .master_program_db::after,
    .operation_process_db::after {
    display: none;
}
}

@media screen and (max-width: 480px) {.operation_process_db {
    padding: 70px 0;
}.operation_process_db .text_wrap_item_db {
    width: 100%;
    padding: 30px 20px;
}.operation_process_db .text_wrap_item_db h2 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-size: calc(29px * 0.8);
}.operation_process_db .text_wrap_item_db h2::after {
    width: 50px;
    height: 3px;
}.operation_process_db .text_wrap_item_db p {
    font-size: calc(15px * 0.9);
}.operation_process_db .text_wrap_item_db::before {
    top: -40px;
    height: 80px;
    right: -40px;
    width: 80px;
}}.cookie_warning_popup_db {
    bottom: 0;
    background: rgb(215,218,234);
    position: fixed;
    width: 100%;
    border-top: 2px solid rgb(177,187,210);
    z-index: 90;
}.cookies_overview_db {
    padding: 20px 0;
    align-items: center;
    display: flex;
    justify-content: space-between;
}.cookie_warning_popup_db h5 {
    font-size: 22px;
    margin-bottom: 6px;
}.cookie_warning_popup_db p {
    font-size: 18px;
}.digital_cookies_db {
    flex-shrink: 0;
    margin-right: 10px;
}.digital_cookies_db svg, .digital_cookies_db svg path, .digital_cookies_db img {
    fill: rgb(177,187,210);
    height: 100px;
    width: 100px;
}.cookies_consent_db {
    cursor: pointer;
    border-bottom: 2px solid rgb(177,187,210);
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: 10px;
    line-height: 35px;
    color: rgb(177,187,210);
    text-decoration: none;
    min-width: 120px;
    font-size: 24px;
    text-align: center;
}.cookie_warning_popup_db p a {
    color: rgb(177,187,210);
    text-decoration: none;
}#cookiePolicyMessage_db {
    display: none;
}#cookiePolicyMessage_db:checked ~ .cookie_warning_popup_db {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1200px) {.cookie_warning_popup_db {
    padding: 20px;
}
}
@media only screen and (max-width: 800px) {.digital_cookies_db {
    display: none;
}.cookies_overview_db {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}.cookie_warning_popup_db h5 {
    text-align: center;
}.cookie_warning_popup_db p {
    text-align: center;
}.data_opt_db {
    margin-bottom: 20px;
}body .outer-container_db .cookies_consent_db {
    margin-left: 0;
}}
.outer-container_db .cookies_overview_db {
    justify-content: flex-end;
}.outer-container_db .cookies_consent_db {
    color: #ffffff;
    margin-left: 30px;
    background: rgb(177,187,210);
    padding: 10px;
    font-size: 20px;
}.outer-container_db .data_opt_db {
    text-align: right;
}
@media only screen and (max-width: 800px)  {.outer-container_db .cookies_consent_db {
    margin-left: 0;
    margin-bottom: 10px;
}}.education_experience_db {
    background: linear-gradient(135deg, rgb(215,218,234), rgb(177,187,210,0.5));
    padding: 4rem 0;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
}.education_experience_db::before {
    pointer-events: none;
    position: absolute;
    height: 200%;
    top: -50%;
    background: radial-gradient(ellipse at center, rgb(137,154,184,0.5) 0%, transparent 70%);
    left: -50%;
    width: 200%;
    transform: rotate(-15deg);
    z-index: 1;
    content: '';
    opacity: 0.4;
}.education_experience_db::after {
    position: absolute;
    opacity: 0.5;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    content: '';
    background: radial-gradient(circle at top right, rgb(177,187,210,0.5) 0%, transparent 60%);
    top: 0;
    width: 100%;
    right: 0;
}.education_experience_db .container {
    z-index: 2;
    margin: 0 auto;
    padding: 0 1.5rem;
    transform-style: preserve-3d;
    max-width: 1200px;
    position: relative;
}.education_experience_db .learner_quotes_db {
    display: grid;
    padding: 2.5rem;
    position: relative;
    gap: 2rem;
    border-left: 4px solid rgb(177,187,210);
    grid-template-columns: 1fr;
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateZ(0);
}.education_experience_db .learner_quotes_db:hover {
    transform: translateZ(20px);
}.education_experience_db .learner_quotes_db > div:nth-child(1) {
    align-items: center;
    justify-content: center;
    display: flex;
}.education_experience_db .img_caption_db {
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 10px;
    position: relative;
    transform: rotate(-3deg) translateZ(30px);
    width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: 180px;
}.education_experience_db .img_caption_db::after {
    left: 0;
    mix-blend-mode: overlay;
    position: absolute;
    height: 100%;
    width: 100%;
    background: linear-gradient(45deg, rgb(177,187,210,0.5), transparent);
    opacity: 0.7;
    content: '';
    top: 0;
}.education_experience_db .learner_quotes_db:hover .img_caption_db {
    transform: rotate(0deg) translateZ(40px) scale(1.05);
}.education_experience_db .learner_quotes_db > div:nth-child(2) {
    transform: translateZ(10px);
    text-align: center;
}.education_experience_db .name {
    display: inline-block;
    color: rgb(177,187,210);
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    letter-spacing: 0.03em;
    font-size: 23px;
}.education_experience_db .name::after {
    left: 50%;
    background: rgb(137,154,184);
    position: absolute;
    content: '';
    height: 3px;
    width: 40px;
    bottom: -8px;
    transform: translateX(-50%);
}.education_experience_db .learner_quotes_db > div:nth-child(2) > div {
    margin-top: 1rem;
    font-weight: 600;
    font-size: calc(12px * 0.95);
    color: #000000;
    letter-spacing: 0.02em;
}.education_experience_db .learner_quotes_db > div:nth-child(3) {
    transform: translateZ(5px);
    position: relative;
}.education_experience_db .work_block_db {
    color: #000000;
    position: relative;
    line-height: 1.7;
    font-size: 12px;
    padding: 0 1rem;
}.education_experience_db .work_block_db::before,
.education_experience_db .work_block_db::after {
    position: absolute;
    content: '';
    width: 25px;
    opacity: 0.15;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
}.education_experience_db .work_block_db::before {
    left: -10px;
    top: -10px;
}.education_experience_db .work_block_db::after {
    right: -10px;
    bottom: -10px;
    transform: rotate(180deg);
}

@media (min-width: 768px) {.education_experience_db {
    padding: 6rem 0;
}.education_experience_db .learner_quotes_db {
    gap: 2rem 3rem;
    grid-template-rows: auto 1fr;
    grid-template-columns: 220px 1fr;
}.education_experience_db .learner_quotes_db > div:nth-child(1) {
    padding-top: 1rem;
    align-items: flex-start;
    grid-row: span 2;
}.education_experience_db .learner_quotes_db > div:nth-child(2) {
    text-align: left;
}.education_experience_db .name::after {
    transform: none;
    left: 0;
}.education_experience_db .img_caption_db {
    height: 220px;
    transform: rotate(-2deg) translateZ(30px);
    width: 220px;
}.education_experience_db .work_block_db {
    font-size: calc(12px * 1.05);
    padding: 0;
    line-height: 1.8;
}
}

@media (min-width: 992px) {.education_experience_db {
    padding: 8rem 0;
}.education_experience_db .learner_quotes_db {
    grid-template-columns: 280px 1fr;
    gap: 2rem 4rem;
    padding: 3rem;
}.education_experience_db .img_caption_db {
    height: 280px;
    width: 280px;
}.education_experience_db .name {
    font-size: calc(23px * 1.1);
}.education_experience_db .learner_quotes_db > div:nth-child(2) > div {
    font-size: 12px;
}.education_experience_db .work_block_db {
    font-size: calc(12px * 1.1);
    line-height: 1.9;
}.education_experience_db .learner_quotes_db::before {
    content: '';
    opacity: 0.15;
    transform: translateZ(-10px);
    z-index: -1;
    background: linear-gradient(135deg, rgb(137,154,184,0.5), transparent);
    width: calc(100% + 20px);
    position: absolute;
    height: calc(100% + 20px);
    left: -10px;
    transition: opacity 0.5s ease;
    top: -10px;
}.education_experience_db .learner_quotes_db:hover::before {
    opacity: 0.3;
}
}

@media (min-width: 1200px) {.education_experience_db .container {
    padding: 0 2rem;
}.education_experience_db .learner_quotes_db {
    padding: 3.5rem;
    grid-template-columns: 320px 1fr;
}.education_experience_db .img_caption_db {
    height: 320px;
    width: 320px;
}@keyframes constellationPulse {
        0%, 100% { opacity: 0.4; }
        50% { opacity: 0.7; }
    }
    
    .education_experience_db::before {
    animation: constellationPulse 8s infinite ease-in-out;
}@keyframes orbitalShift {
        0% { transform: rotate(-15deg); }
        50% { transform: rotate(-10deg); }
        100% { transform: rotate(-15deg); }
    }
    
    .education_experience_db::before {
    animation: orbitalShift 20s infinite ease-in-out, constellationPulse 8s infinite ease-in-out;
}}.future_students_db {
    background: linear-gradient(140deg, #f5f7ff 0%, #ffffff 100%);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}.future_students_db::before {
    z-index: 1;
    left: 0;
    opacity: 0.15;
    top: 0;
    position: absolute;
    background: 
        radial-gradient(circle at 20% 20%, rgb(177,187,210,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgb(137,154,184,0.5) 0%, transparent 40%);
    content: '';
    height: 100%;
    width: 100%;
}.future_students_db::after {
    position: absolute;
    width: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgb(177,187,210,0.5) 49%, transparent 51%),
        linear-gradient(135deg, transparent 48%, rgb(137,154,184,0.5) 49%, transparent 51%);
    opacity: 0.05;
    z-index: 2;
    top: 0;
    content: '';
    height: 100%;
    left: 0;
    background-size: 60px 60px;
}.future_students_db .master_program_db {
    margin: 0 auto;
    z-index: 10;
    position: relative;
    max-width: 1200px;
    text-align: center;
    padding: 0 30px;
}.future_students_db h3 {
    color: #000000;
    padding: 0 20px;
    font-size: 28px;
    margin-bottom: 70px;
    display: inline-block;
    font-weight: 700;
    position: relative;
}.future_students_db h3::before,
.future_students_db h3::after {
    background: linear-gradient(90deg, rgb(177,187,210), rgb(137,154,184));
    transform: translateY(-50%);
    top: 50%;
    width: 40px;
    position: absolute;
    height: 2px;
    content: '';
}.future_students_db h3::before {
    left: -60px;
}.future_students_db h3::after {
    right: -60px;
}.future_students_db ul {
    flex-wrap: wrap;
    margin: 0;
    justify-content: center;
    display: flex;
    padding: 0;
    list-style: none;
    gap: 40px;
}.future_students_db ul li {
    min-width: 280px;
    display: flex;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 40px 30px;
    box-shadow: 
        0 15px 35px -10px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04);
    width: calc(33.333% - 27px);
    background-color: #ffffff;
    z-index: 1;
    text-align: left;
    border-radius: 27px;
    align-items: flex-start;
    overflow: hidden;
    gap: 20px;
    position: relative;
}.future_students_db ul li::before {
    content: '';
    left: 0;
    width: 100%;
    position: absolute;
    transition: opacity 0.4s ease;
    background: linear-gradient(90deg, rgb(177,187,210), rgb(137,154,184));
    opacity: 0;
    top: 0;
    height: 5px;
}.future_students_db ul li::after {
    border-radius: 50%;
    content: '';
    height: 100px;
    left: -50px;
    background: rgb(177,187,210,0.5);
    z-index: -1;
    bottom: -50px;
    position: absolute;
    width: 100px;
    opacity: 0.1;
    transition: all 0.6s ease;
}.future_students_db ul li:hover {
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-15px);
}.future_students_db ul li:hover::before {
    opacity: 1;
}.future_students_db ul li:hover::after {
    opacity: 0.05;
    transform: scale(6);
}.future_students_db ul li svg {
    position: relative;
    flex-shrink: 0;
    transition: all 0.5s ease;
    height: 50px;
    width: 50px;
}.future_students_db ul li:hover svg {
    transform: translateY(-5px) scale(1.1);
}.future_students_db ul li svg path {
    fill: rgb(177,187,210);
    transition: fill 0.5s ease;
}.future_students_db ul li:hover svg path {
    fill: rgb(137,154,184);
}@keyframes floatingAnimation {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.future_students_db ul li {
    opacity: 0;
    animation: slideInBottom 0.6s forwards;
}.future_students_db ul li:nth-child(1) {
    animation-delay: 0.1s;
}.future_students_db ul li:nth-child(2) {
    animation-delay: 0.25s;
}.future_students_db ul li:nth-child(3) {
    animation-delay: 0.4s;
}.future_students_db ul li:nth-child(4) {
    animation-delay: 0.55s;
}.future_students_db ul li:nth-child(5) {
    animation-delay: 0.7s;
}.future_students_db ul li:nth-child(6) {
    animation-delay: 0.85s;
}.future_students_db ul li:nth-child(3n+1) {
    animation-delay: 0.1s, 2s;
    animation: slideInBottom 0.6s forwards, floatingAnimation 8s ease-in-out infinite;
}.future_students_db ul li:nth-child(3n+2) {
    animation: slideInBottom 0.6s forwards, floatingAnimation 8s ease-in-out infinite 1s reverse;
    animation-delay: 0.25s, 3s;
}.future_students_db ul li:nth-child(3n+3) {
    animation-delay: 0.4s, 4s;
    animation: slideInBottom 0.6s forwards, floatingAnimation 8s ease-in-out infinite 2s;
}

@media (max-width: 992px) {.future_students_db {
    padding: 90px 0;
}.future_students_db h3 {
    margin-bottom: 60px;
}.future_students_db h3::before,
    .future_students_db h3::after {
    width: 30px;
}.future_students_db h3::before {
    left: -40px;
}.future_students_db h3::after {
    right: -40px;
}.future_students_db ul {
    gap: 30px;
}.future_students_db ul li {
    width: calc(50% - 15px);
    padding: 35px 25px;
}
}

@media (max-width: 768px) {.future_students_db ul li {
    max-width: 400px;
    width: 100%;
}.future_students_db ul li:nth-child(3n+1),
    .future_students_db ul li:nth-child(3n+2),
    .future_students_db ul li:nth-child(3n+3) {
    animation: slideInBottom 0.6s forwards;
}
}

@media (max-width: 576px) {.future_students_db {
    padding: 70px 0;
}.future_students_db h3 {
    margin-bottom: 50px;
    font-size: calc(28px * 0.9);
}.future_students_db h3::before,
    .future_students_db h3::after {
    display: none;
}.future_students_db ul {
    gap: 25px;
}.future_students_db ul li {
    padding: 30px 20px;
}.future_students_db ul li svg {
    height: 40px;
    width: 40px;
}
}

@media (prefers-reduced-motion: reduce) {.future_students_db ul li {
    animation: none;
    opacity: 1;
}.future_students_db ul li:hover {
    transform: none;
}.future_students_db ul li:hover svg {
    transform: none;
}
}