﻿* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}.top_master {
    flex: 1 0 auto;
}header,footer {
    width: 100%;
}html,body {
    height: 100%;
    min-height: 100%;
    color: #000000;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}.wrapping-container {
    flex-direction: column;
    min-height: 100%;
    height: 100%;
    display: flex;
}.degree_path {
    flex: 0 0 auto;
}svg {
    height: 30px;
    width: 30px;
}@keyframes shift_scrollbar { 0% { transform: translateX(0); } 50% { transform: translateX(5px); } 100% { transform: translateX(0); } }

::-webkit-scrollbar {
    width: 12px;
}::-webkit-scrollbar-track {
    border: 1px dashed rgb(155,146,173);
    border-radius: 7.1vh;
    background: rgb(155,146,173);
}::-webkit-scrollbar-thumb {
    transition: background, border-radius, transform 4s linear;
    min-height: 52px;
    background: rgb(222,220,229);
    box-shadow: 1px -2px 14px -1px rgba(0, 0, 0, 0.2);
}::-webkit-scrollbar-thumb:active {
    background: #ffffff;
}::-webkit-scrollbar-corner {
    border: 1px solid rgb(222,220,229);
    border-radius: 2px;
}.container {
    max-width: 100%;
    width: 1229px;
    margin: auto;
}a {
    text-decoration: none;
    color: inherit;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.ty_block_id {
    position: relative;
    background: linear-gradient(135deg, rgb(222,220,229) 0%, rgb(155,146,173,0.5) 100%);
    overflow: hidden;
    padding: 120px 0;
}.ty_block_id::before {
    position: absolute;
    width: 100%;
    pointer-events: none;
    top: 0;
    left: 0;
    opacity: 0.4;
    background: 
    radial-gradient(circle at 10% 20%, rgb(189,184,202,0.5) 5%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgb(155,146,173,0.5) 10%, transparent 50%);
    content: "";
    z-index: 1;
    height: 100%;
}.ty_block_id::after {
    transform: rotate(-15deg);
    position: absolute;
    filter: blur(80px);
    background: rgb(255, 255, 255, 0.5);
    width: 90%;
    top: -50%;
    content: "";
    pointer-events: none;
    z-index: 1;
    opacity: 0.08;
    height: 90%;
    right: -50%;
}.ty_block_id .container {
    z-index: 2;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}.ty_block_id .growth_hist {
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    backdrop-filter: blur(10px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
              0 5px 12px rgba(0, 0, 0, 0.05);
    padding: 60px 50px;
    animation: slideIn 0.8s cubic-bezier(0.17, 0.67, 0.45, 1.09) forwards;
    border-left: 4px solid rgb(189,184,202);
}.ty_block_id .growth_hist::before {
    border-radius: 10px;
    content: "";
    border: 1px solid rgb(155,146,173,0.5);
    left: 20px;
    top: 20px;
    transition: transform 0.5s ease;
    transform: scale(0.97);
    bottom: 20px;
    position: absolute;
    right: 20px;
    opacity: 0.2;
    pointer-events: none;
}.ty_block_id .growth_hist:hover::before {
    transform: scale(1);
}.ty_block_id .growth_hist > div:first-child {
    position: relative;
    padding-bottom: 25px;
    margin-bottom: 30px;
}.ty_block_id .growth_hist > div:first-child::after {
    background: linear-gradient(90deg, rgb(189,184,202) 0%, rgb(155,146,173) 100%);
    position: absolute;
    width: 80px;
    content: "";
    animation: lineExpand 1s ease-out 0.3s forwards;
    transform-origin: left center;
    height: 3px;
    left: 0;
    bottom: 0;
}.ty_block_id h5 {
    font-size: 22px;
    transform: translateY(15px);
    animation: fadeUp 0.7s ease-out 0.2s forwards;
    opacity: 0;
    font-weight: 700;
    margin: 0;
    color: #000000;
    line-height: 1.4;
}.ty_block_id p {
    opacity: 0;
    color: #000000;
    animation: fadeUp 0.7s ease-out 0.4s forwards;
    transform: translateY(15px);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    font-size: 16px;
}.ty_block_id a {
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.45, 1.09);
    color: inherit;
    display: block;
    position: relative;
    text-decoration: none;
}.ty_block_id a:hover {
    transform: translateY(-5px);
}.ty_block_id a::after {
    bottom: -8px;
    content: "";
    transform: scaleX(0.3);
    transition: transform 0.5s ease, opacity 0.5s ease;
    left: 0;
    opacity: 0;
    height: 1px;
    transform-origin: left;
    position: absolute;
    width: 100%;
    background: linear-gradient(90deg, rgb(189,184,202,0.5) 0%, transparent 100%);
}.ty_block_id a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

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

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

@keyframes slideIn {
  0% {
    transform: perspective(1000px) translateY(50px) rotateX(8deg);
    opacity: 0;
  }
  100% {
    transform: perspective(1000px) translateY(0) rotateX(2deg);
    opacity: 1;
  }
}

@media (max-width: 992px) {.ty_block_id {
    padding: 80px 0;
}.ty_block_id .growth_hist {
    padding: 50px 40px;
}.ty_block_id h5 {
    font-size: calc(22px - 2px);
}
}

@media (max-width: 768px) {.ty_block_id {
    padding: 60px 0;
}.ty_block_id .growth_hist {
    padding: 40px 30px;
    transform: perspective(1000px) rotateX(1deg);
}.ty_block_id .growth_hist::before {
    right: 15px;
    left: 15px;
    bottom: 15px;
    top: 15px;
}.ty_block_id .growth_hist > div:first-child {
    padding-bottom: 20px;
    margin-bottom: 25px;
}.ty_block_id h5 {
    font-size: calc(22px - 4px);
}.ty_block_id p {
    line-height: 1.7;
    font-size: calc(16px - 1px);
}
}

@media (max-width: 576px) {.ty_block_id {
    padding: 50px 0;
}.ty_block_id .growth_hist {
    border-left: 3px solid rgb(189,184,202);
    padding: 30px 20px;
    transform: none;
}.ty_block_id .growth_hist::before {
    display: none;
}.ty_block_id .growth_hist > div:first-child {
    padding-bottom: 15px;
    margin-bottom: 20px;
}.ty_block_id .growth_hist > div:first-child::after {
    width: 60px;
    height: 2px;
}.ty_block_id h5 {
    font-size: calc(22px - 6px);
}.ty_block_id p {
    line-height: 1.6;
    font-size: calc(16px - 2px);
}}.program_information {
    background: linear-gradient(135deg, rgb(222,220,229) 0%, rgba(245, 245, 255, 0.95) 100%);
    overflow: hidden;
    padding: 6rem 0;
    position: relative;
}.program_information::before {
    content: "";
    background: linear-gradient(45deg, rgb(189,184,202,0.5) 0%, rgb(155,146,173,0.5) 100%);
    transform: rotate(-15deg) skewX(15deg);
    animation: floatEffect 15s infinite alternate ease-in-out;
    right: -5%;
    z-index: 0;
    position: absolute;
    opacity: 0.2;
    filter: blur(30px);
    width: 40%;
    top: -10%;
    height: 70%;
}.program_information::after {
    z-index: 0;
    bottom: -10%;
    animation: floatEffect 18s infinite alternate-reverse ease-in-out;
    background: linear-gradient(225deg, rgb(155,146,173,0.5) 0%, rgb(189,184,202,0.5) 100%);
    width: 35%;
    left: -5%;
    height: 60%;
    content: "";
    filter: blur(25px);
    opacity: 0.15;
    transform: rotate(10deg) skewX(-15deg);
    position: absolute;
}.program_information .container {
    max-width: 1200px;
    z-index: 2;
    padding: 0 1.5rem;
    margin: 0 auto;
    position: relative;
}.program_information h2 {
    margin-bottom: 2.5rem;
    transform: perspective(1000px) rotateX(0deg);
    font-size: 28px;
    transition: transform 0.5s ease;
    text-align: center;
    position: relative;
    font-weight: 700;
    color: #000000;
}.program_information h2::after {
    width: 80px;
    bottom: -12px;
    position: absolute;
    transition: transform 0.5s ease;
    left: 50%;
    content: "";
    height: 4px;
    background: linear-gradient(90deg, rgb(189,184,202) 0%, rgb(155,146,173) 100%);
    transform: translateX(-50%) scaleX(0.8);
}.program_information h2:hover {
    transform: perspective(1000px) rotateX(2deg);
}.program_information h2:hover::after {
    transform: translateX(-50%) scaleX(1.2);
}.program_information .career_ready {
    position: relative;
    display: grid;
    gap: 2.5rem;
    perspective: 1500px;
    grid-template-columns: 1fr;
}.program_information .pic_wrap_item {
    border-radius: 12px;
    height: 350px;
    transform: perspective(1000px) rotateY(-4deg) translateZ(30px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 
               0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}.program_information .pic_wrap_item::before {
    transition: opacity 0.6s ease;
    top: 0;
    z-index: 1;
    opacity: 0.5;
    background: linear-gradient(
        135deg,
        rgba(rgb(189,184,202), 0.3) 0%,
        rgba(rgb(155,146,173), 0.2) 100%
    );
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
}.program_information .pic_wrap_item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 
               0 8px 20px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(0deg) translateZ(40px);
}.program_information .pic_wrap_item:hover::before {
    opacity: 0.7;
}.program_information .editorial_wrap {
    background-color: #ffffff;
    position: relative;
    transform: perspective(1000px) rotateY(2deg) translateZ(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}.program_information .editorial_wrap::before {
    background: linear-gradient(to bottom, rgb(189,184,202), rgb(155,146,173));
    width: 3px;
    transition: height 0.8s ease;
    top: 0;
    position: absolute;
    left: 0;
    height: 0;
    content: "";
}.program_information .editorial_wrap:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(30px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}.program_information .editorial_wrap:hover::before {
    height: 100%;
}.program_information .description {
    line-height: 1.8;
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 10px;
    color: #000000;
    font-size: 14px;
}.program_information .description:last-child {
    margin-bottom: 0;
}.program_information .description:first-child::first-letter {
    float: left;
    font-size: 2.2em;
    line-height: 0.8;
    font-weight: 700;
    padding: 0.1em 0.1em 0 0;
    color: rgb(189,184,202);
}.program_information .description::-webkit-scrollbar {
    width: 4px;
}.program_information .description::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}.program_information .description::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, rgb(189,184,202), rgb(155,146,173));
    border-radius: 10px;
}

@keyframes floatEffect {
    0% {
        transform: rotate(-15deg) skewX(15deg) translate(0, 0);
    }
    50% {
        transform: rotate(-13deg) skewX(12deg) translate(10px, -10px);
    }
    100% {
        transform: rotate(-15deg) skewX(15deg) translate(-5px, 5px);
    }
}

@media (min-width: 768px) {.program_information {
    padding: 8rem 0;
}.program_information h2 {
    margin-bottom: 3.5rem;
    font-size: calc(28px * 1.1);
}.program_information .career_ready {
    align-items: center;
    gap: 3rem;
    grid-template-columns: 1fr 1.5fr;
}.program_information .pic_wrap_item {
    height: 500px;
}.program_information .editorial_wrap {
    padding: 3rem;
}
}

@media (min-width: 992px) {.program_information {
    padding: 10rem 0;
}.program_information h2 {
    margin-bottom: 4rem;
    margin-left: auto;
    max-width: 80%;
    margin-right: auto;
    font-size: calc(28px * 1.2);
}.program_information .career_ready {
    gap: 4rem;
    grid-template-columns: 1fr 1.3fr;
}.program_information .pic_wrap_item {
    height: 550px;
}.program_information .editorial_wrap {
    padding: 3.5rem;
}.program_information .description {
    margin-bottom: 2rem;
    font-size: calc(14px * 1.1);
    line-height: 1.9;
    max-height: 350px;
}
}

@media (max-width: 767px) {.program_information {
    padding: 4rem 0;
}.program_information h2 {
    font-size: calc(28px * 0.9);
    margin-bottom: 2rem;
}.program_information .pic_wrap_item {
    height: 250px;
    transform: perspective(1000px) rotateY(0deg) translateZ(10px);
}.program_information .editorial_wrap {
    transform: perspective(1000px) rotateY(0deg) translateZ(10px);
    padding: 1.5rem;
}.program_information .description {
    max-height: 250px;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: calc(14px * 0.95);
}}header .top_plank {
    color:  #ffffff;
    background: rgb(189,184,202);
}header .top_plank .study_elitepro div svg, header .top_plank .study_elitepro div svg path {
    fill: #ffffff;
}header .top_plank .study_elitepro div span {
    color: #ffffff;
}header .top_plank .study_elitepro {
    width: 100%;
    font-size: 16px;
    padding: 15px 0 10px 0;
    line-height: 21px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    display: flex;
}header .top_plank .study_elitepro div {
    align-items: center;
    display: flex;
    margin-right: 24px;
    justify-content: flex-start;
}header .top_plank .study_elitepro div img, header .top_plank .study_elitepro div svg {
    height: 16px;
    margin-right: 8px;
    width: 16px;
}.privacy_hold {
    width: 100%;
    flex-direction: column;
    color: #000000;
    display: flex;
    background-color: rgb(222,220,229);
    font-family: Arial, sans-serif;
    padding: 3rem;
}.privacy_hold h1 {
    font-weight: 700;
    font-size: 39px;
    letter-spacing: 0.1rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid rgb(189,184,202);
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: rgb(189,184,202);
}.privacy_hold h2 {
    color: rgb(155,146,173);
    letter-spacing: 0.08rem;
    margin-bottom: 1rem;
    border-left: 4px solid rgb(155,146,173);
    text-transform: uppercase;
    margin-top: 2rem;
    font-size: 38px;
    font-weight: 600;
    padding-left: 1rem;
}.privacy_hold h3,.privacy_hold h4,.privacy_hold h5, .privacy_hold h6 {
    font-size: 20px;
    margin: 1rem 0;
}.privacy_hold ul,
.privacy_hold ol {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    list-style-position: inside;
    border-left: 2px solid rgba(0, 0, 0, 0.5);
    list-style-type: none;
    padding-left: 2rem;
}.privacy_hold li {
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 17px;
}.privacy_hold li::before {
    color: rgb(189,184,202);
    content: "▹";
    margin-right: 0.5rem;
}.privacy_hold p {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 17px;
    line-height: 1.8;
}.privacy_hold span {
    font-weight: 700;
    color: rgb(155,146,173);
}.privacy_hold > div {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 1rem;
    background-color: #ffffff;
    margin-bottom: 2rem;
}
@media only screen and (max-width: 800px) {.privacy_hold {
    gap: 1.5rem;
    padding: 1.5rem;
}.privacy_hold h1 {
    font-size: calc(20px - 0.5rem);
}.privacy_hold h2 {
    font-size: calc(20px - 0.5rem);
}.privacy_hold p,
    .privacy_hold li {
    font-size: calc(17px - 0.2rem);
}.privacy_hold > div {
    padding: 0.5rem;
}}
.take_a_spin {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(45deg, #000000 0%, rgb(222,220,229) 100%);
}.take_a_spin::before {
    z-index: 1;
    background-size: 40px 40px;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgb(189,184,202,0.5) 1px, transparent 1px),
        linear-gradient(to right, rgb(189,184,202,0.5) 1px, transparent 1px);
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    opacity: 0.07;
}.take_a_spin .growth_hist {
    backdrop-filter: blur(10px);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 70px 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
    text-align: center;
    position: relative;
    -webkit-backdrop-filter: blur(10px);
}.take_a_spin .growth_hist::before,
.take_a_spin .growth_hist::after {
    height: 300px;
    content: '';
    opacity: 0.5;
    border-radius: 50%;
    z-index: -1;
    position: absolute;
    filter: blur(60px);
    width: 300px;
}.take_a_spin .growth_hist::before {
    background: rgb(189,184,202);
    top: -100px;
    animation: float-blob1 15s ease-in-out infinite alternate;
    left: -100px;
}.take_a_spin .growth_hist::after {
    right: -100px;
    background: rgb(155,146,173);
    bottom: -100px;
    animation: float-blob2 20s ease-in-out infinite alternate;
}.take_a_spin .container p {
    font-size: 34px;
    letter-spacing: 0.5px;
    z-index: 5;
    margin-bottom: 50px;
    position: relative;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    font-weight: 700;
    line-height: 1.4;
}.take_a_spin .container p::first-letter {
    color: rgb(189,184,202);
    font-size: 130%;
}.take_a_spin .inquiry_links {
    padding: 16px 42px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 14px;
    position: relative;
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    z-index: 5;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}.take_a_spin .inquiry_links::before {
    background: linear-gradient(45deg, rgb(189,184,202), rgb(155,146,173));
    opacity: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    transition: opacity 0.4s ease;
}.take_a_spin .inquiry_links:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}.take_a_spin .inquiry_links:hover::before {
    opacity: 0.8;
}.take_a_spin::after {
    top: 0;
    width: 100%;
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    animation: twinkle 10s linear infinite;
    z-index: 1;
    background-size: 50px 50px;
    position: absolute;
    opacity: 0.1;
    left: 0;
    content: '';
    height: 100%;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
}

@keyframes float-blob1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, 20px) scale(1.2);
    }
    100% {
        transform: translate(10px, 40px) scale(0.8);
    }
}

@keyframes float-blob2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -20px) scale(1.2);
    }
    100% {
        transform: translate(-10px, -40px) scale(0.9);
    }
}

@media (max-width: 991px) {.take_a_spin {
    padding: 90px 0;
}.take_a_spin .growth_hist {
    padding: 50px 30px;
}.take_a_spin .container p {
    font-size: calc(24px * 1.3);
    margin-bottom: 40px;
}
}

@media (max-width: 767px) {.take_a_spin {
    padding: 70px 0;
}.take_a_spin .growth_hist {
    padding: 40px 25px;
}.take_a_spin .container p {
    font-size: 24px;
    margin-bottom: 30px;
}.take_a_spin .inquiry_links {
    padding: 14px 34px;
}
}

@media (max-width: 480px) {.take_a_spin {
    padding: 50px 0;
}.take_a_spin .growth_hist {
    padding: 30px 20px;
}.take_a_spin .container p {
    margin-bottom: 25px;
    font-size: calc(17px * 1.2);
}.take_a_spin .inquiry_links {
    font-size: calc(14px * 0.9);
    padding: 12px 28px;
}.take_a_spin .growth_hist::before,
    .take_a_spin .growth_hist::after {
    width: 200px;
    height: 200px;
}}.course_benefits {
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(145deg, rgb(222,220,229) 0%, rgb(189,184,202,0.5) 100%);
    position: relative;
}.course_benefits::before {
    content: "";
    background: 
        radial-gradient(circle at 10% 20%, rgb(189,184,202,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgb(155,146,173,0.5) 0%, transparent 40%);
    animation: pulse 8s infinite alternate;
    opacity: 0.5;
    left: 0;
    top: 0;
    position: absolute;
    height: 100%;
    width: 100%;
}@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.course_benefits .container {
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    z-index: 2;
}.course_benefits .growth_hist {
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.1),
        -10px -10px 30px rgba(255, 255, 255, 0.5);
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    padding: 50px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 50px;
}.course_benefits .growth_hist::before {
    width: 300px;
    position: absolute;
    opacity: 0.3;
    height: 300px;
    right: -150px;
    top: -150px;
    content: "";
    border-radius: 50%;
    filter: blur(100px);
    background: rgb(189,184,202,0.5);
    z-index: -1;
}.course_benefits .growth_hist::after {
    z-index: -1;
    border-radius: 50%;
    background: rgb(155,146,173,0.5);
    position: absolute;
    bottom: -100px;
    filter: blur(80px);
    height: 250px;
    content: "";
    opacity: 0.3;
    left: -100px;
    width: 250px;
}.course_benefits .pic_wrap_item {
    border-radius: 50%;
    width: 45%;
    transition: all 0.5s ease;
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.1),
        -10px -10px 20px rgba(255, 255, 255, 0.5),
        inset 0 0 0 8px rgba(255, 255, 255, 0.5);
    position: relative;
}.course_benefits .pic_wrap_item::before {
    width: 100%;
    top: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    content: "";
    height: 100%;
    left: 0;
    border-radius: 50%;
    animation: shine 5s infinite linear;
    position: absolute;
}@keyframes shine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.course_benefits .pic_wrap_item:hover {
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.15),
        -15px -15px 30px rgba(255, 255, 255, 0.7),
        inset 0 0 0 10px rgba(255, 255, 255, 0.8);
    transform: scale(1.03);
}.course_benefits .editorial_wrap {
    padding: 20px;
    width: 55%;
    position: relative;
}.course_benefits .editorial_wrap::before {
    position: absolute;
    z-index: -1;
    border: 4px solid rgb(189,184,202,0.5);
    border-radius: 50%;
    left: -40px;
    height: 80px;
    width: 80px;
    content: "";
    top: -40px;
    opacity: 0.3;
}.course_benefits h3 {
    font-size: 33px;
    position: relative;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-block;
    color: #000000;
}.course_benefits h3::after {
    bottom: -10px;
    transition: transform 0.5s ease;
    border-radius: 10px;
    height: 6px;
    background: linear-gradient(90deg, rgb(189,184,202), rgb(155,146,173));
    content: "";
    transform-origin: left;
    width: 100%;
    position: absolute;
    transform: scaleX(0.3);
    left: 0;
}.course_benefits .editorial_wrap:hover h3::after {
    transform: scaleX(1);
}.course_benefits ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.course_benefits li {
    transform-origin: left;
    transition: all 0.3s ease;
    padding: 15px 20px;
    margin-bottom: 20px;
    background: rgb(222,220,229);
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}.course_benefits li:hover {
    transform: scale(1.02);
    background: linear-gradient(to right, rgb(222,220,229), #ffffff);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}.course_benefits li p {
    font-size: 16px;
    display: flex;
    margin: 0;
    gap: 15px;
    color: #000000;
    align-items: center;
}.course_benefits svg {
    width: 22px;
    display: flex;
    border-radius: 50%;
    padding: 10px;
    height: 22px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: rgb(189,184,202);
}.course_benefits svg path {
    transition: fill 0.3s ease;
    fill: #ffffff;
}.course_benefits li:hover svg {
    transform: scale(1.1) rotate(10deg);
    background: rgb(155,146,173);
}

@media (max-width: 992px) {.course_benefits {
    padding: 80px 0;
}.course_benefits .growth_hist {
    padding: 40px;
    gap: 40px;
}.course_benefits h3 {
    font-size: calc(33px * 0.9);
}
}

@media (max-width: 768px) {.course_benefits .growth_hist {
    gap: 40px;
    flex-direction: column;
}.course_benefits .pic_wrap_item {
    width: 70%;
    margin: 0 auto;
    max-width: 300px;
}.course_benefits .editorial_wrap {
    padding: 10px;
    width: 100%;
}.course_benefits .editorial_wrap::before {
    top: -30px;
    transform: translateX(-50%);
    left: 50%;
}
}

@media (max-width: 576px) {.course_benefits {
    padding: 60px 0;
}.course_benefits .growth_hist {
    padding: 30px 20px;
}.course_benefits .pic_wrap_item {
    width: 80%;
}.course_benefits h3 {
    text-align: center;
    font-size: 23px;
    display: block;
}.course_benefits li {
    padding: 12px 15px;
}.course_benefits li p {
    font-size: 16px;
}.course_benefits svg {
    padding: 8px;
}}.statistics_information {
    background: linear-gradient(135deg, rgb(189,184,202,0.5) 0%, rgb(155,146,173,0.5) 100%);
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}.statistics_information::before {
    transform: translateZ(-50px);
    width: 100%;
    content: "";
    opacity: 0.1;
    left: 0;
    pointer-events: none;
    top: 0;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgb(189,184,202,0.5) 0px,
        rgb(189,184,202,0.5) 1px,
        transparent 1px,
        transparent 10px
    );
    position: absolute;
}.statistics_information::after {
    height: 200%;
    transform: rotate(-15deg);
    background: radial-gradient(circle at center, rgb(155,146,173,0.5) 0%, transparent 70%);
    content: "";
    width: 60%;
    top: -50%;
    pointer-events: none;
    right: -20%;
    position: absolute;
    opacity: 0.15;
}.statistics_information .container {
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    max-width: 1440px;
    transform-style: preserve-3d;
}.statistics_information ul {
    margin: 0;
    display: grid;
    gap: 2.5rem;
    transform: translateZ(20px);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    list-style: none;
    padding: 0;
}.statistics_information .expert_benefits {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    transform: translateZ(0);
    position: relative;
    padding: 2.5rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05);
}.statistics_information .expert_benefits::before {
    z-index: -1;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgb(189,184,202,0.5) 0%,
        transparent 60%
    );
    content: "";
    top: 0;
}.statistics_information .expert_benefits:hover {
    transform: translateY(-10px) translateZ(30px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
}.statistics_information .expert_benefits:hover::before {
    opacity: 0.3;
}.statistics_information .expert_benefits div {
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
}.statistics_information .expert_benefits p {
    color: #ffffff;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(120deg, rgb(189,184,202) 0%, rgb(155,146,173) 100%);
    margin: 0 0 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform: translateZ(10px);
    font-size: calc(48px * 1.2);
    background-clip: text;
    -webkit-background-clip: text;
}.statistics_information .expert_benefits:hover p {
    transform: translateZ(20px) scale(1.05);
}.statistics_information .expert_benefits span {
    opacity: 0.9;
    transition: all 0.4s ease;
    transform: translateZ(5px);
    max-width: 80%;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #ffffff;
}.statistics_information .expert_benefits:hover span {
    opacity: 1;
    transform: translateZ(15px);
}.statistics_information h4 {
    margin: 4rem 0 0;
    letter-spacing: 1px;
    opacity: 0.9;
    text-align: center;
    font-weight: 600;
    position: relative;
    font-size: 18px;
    color: #ffffff;
    padding-bottom: 1rem;
    transform: translateZ(10px);
}.statistics_information h4::after {
    transform: translateX(-50%);
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(155,146,173), transparent);
    left: 50%;
    content: "";
    bottom: 0;
}

@media (min-width: 1200px) {.statistics_information ul {
    grid-template-columns: repeat(4, 1fr);
}.statistics_information .expert_benefits {
    min-height: 220px;
}.statistics_information .expert_benefits p {
    font-size: calc(48px * 1.5);
}
}

@media (min-width: 768px) and (max-width: 1199px) {.statistics_information ul {
    grid-template-columns: repeat(3, 1fr);
}.statistics_information .expert_benefits {
    min-height: 200px;
}
}

@media (min-width: 576px) and (max-width: 767px) {.statistics_information ul {
    grid-template-columns: repeat(2, 1fr);
}.statistics_information {
    padding: 6rem 0 3rem;
}.statistics_information .expert_benefits {
    min-height: 180px;
}
}

@media (max-width: 575px) {.statistics_information {
    padding: 4rem 0 2rem;
}.statistics_information ul {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}.statistics_information .container {
    padding: 0 1.5rem;
}.statistics_information .expert_benefits {
    padding: 2rem 1rem;
    min-height: 160px;
}.statistics_information .expert_benefits p {
    font-size: calc(36px * 1.2);
}.statistics_information h4 {
    margin-top: 3rem;
    font-size: calc(22px * 1.1);
}}

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

.statistics_information .expert_benefits:nth-child(1) {
    animation: statsLoad 0.6s 0.1s ease-out forwards;
}.statistics_information .expert_benefits:nth-child(2) {
    animation: statsLoad 0.6s 0.2s ease-out forwards;
}.statistics_information .expert_benefits:nth-child(3) {
    animation: statsLoad 0.6s 0.3s ease-out forwards;
}.statistics_information .expert_benefits:nth-child(4) {
    animation: statsLoad 0.6s 0.4s ease-out forwards;
}.statistics_information .expert_benefits:nth-child(5) {
    animation: statsLoad 0.6s 0.5s ease-out forwards;
}.statistics_information .expert_benefits:nth-child(6) {
    animation: statsLoad 0.6s 0.6s ease-out forwards;
}.statistics_information .expert_benefits:nth-child(7) {
    animation: statsLoad 0.6s 0.7s ease-out forwards;
}.statistics_information .expert_benefits {
    opacity: 0;
}.plan {
    overflow: hidden;
    background: rgb(222,220,229);
    padding: 120px 0;
    position: relative;
}.plan::before {
    left: 0;
    height: 100%;
    top: 0;
    content: "";
    background: linear-gradient(135deg, 
        rgba(var(--primary-color-rgb), 0.05) 0%, 
        rgba(var(--secondary-color-rgb), 0.03) 100%);
    z-index: 0;
    position: absolute;
    width: 100%;
}.plan .container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}.plan .price_sheet {
    gap: 60px;
    display: grid;
    grid-template-columns: 1fr;
}.plan .learn_offers {
    transform: translateY(20px);
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    opacity: 0;
    animation: fadeSlideUp 0.8s forwards 0.2s;
}.plan .learn_offers h2 {
    color: #000000;
    font-weight: 700;
    position: relative;
    display: inline-block;
    font-size: 35px;
    margin-bottom: 20px;
}.plan .learn_offers h2::after {
    width: 80px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    background: linear-gradient(90deg, rgb(189,184,202), rgb(155,146,173));
    height: 3px;
    content: "";
    transform: translateX(-50%);
}.plan .value_rates {
    margin-top: 30px;
    line-height: 1.6;
    color: #000000;
    font-size: calc(16px + 0.1rem);
}.plan .cost_fee {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    opacity: 0;
    animation: fadeSlideUp 0.8s forwards 0.4s;
    gap: 30px;
    display: grid;
    margin-top: 20px;
    transform: translateY(30px);
}.plan .edu_rates {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    color: inherit;
    will-change: transform;
    z-index: 1;
    text-decoration: none;
    display: block;
}.plan .edu_rates:hover {
    transform: translateY(-10px) scale(1.02);
}.plan .offer_box {
    overflow: hidden;
    background: #ffffff;
    display: flex;
    border-radius: 29px;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    min-height: 420px;
}.plan .edu_rates:hover .offer_box {
    box-shadow: 0 20px 40px rgba(var(--primary-color-rgb), 0.15);
}.plan .edu_rates:nth-child(odd) .offer_box::before {
    height: 100%;
    background: rgb(189,184,202);
    left: 0;
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scaleY(0);
    top: 0;
    content: "";
    transform-origin: bottom;
    width: 5px;
}.plan .edu_rates:nth-child(even) .offer_box::before {
    width: 5px;
    background: rgb(155,146,173);
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform-origin: bottom;
    top: 0;
    right: 0;
    position: absolute;
    transform: scaleY(0);
    content: "";
}.plan .edu_rates:hover .offer_box::before {
    transform: scaleY(1);
}.plan .pro_rates {
    position: relative;
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}.plan .pro_rates h3 {
    transition: color 0.3s ease;
    position: relative;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000000;
    font-size: calc(23px + 0.2rem);
    display: inline-block;
}.plan .edu_rates:hover .pro_rates h3 {
    color: rgb(189,184,202);
}.plan .edu_rates:nth-child(even):hover .pro_rates h3 {
    color: rgb(155,146,173);
}.plan .premium_grid {
    padding-bottom: 10px;
    font-weight: 700;
    color: rgb(189,184,202);
    margin: 10px 0 20px;
    font-size: calc(23px + 0.5rem);
    display: inline-block;
    position: relative;
}.plan .edu_rates:nth-child(even) .premium_grid {
    color: rgb(155,146,173);
}.plan .premium_grid::after {
    left: 0;
    position: absolute;
    bottom: 0;
    width: 40px;
    background: currentColor;
    content: "";
    height: 3px;
    opacity: 0.6;
}.plan .pro_rates p {
    line-height: 1.6;
    color: #000000;
    hyphens: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-top: auto;
    word-break: break-word;
    font-size: 16px;
}.plan .pic_wrap_item {
    height: 200px;
    width: 100%;
    transform-origin: center;
    transition: transform 0.5s ease;
    position: relative;
}.plan .edu_rates:hover .pic_wrap_item {
    transform: scale(1.05);
}.plan .pic_wrap_item::after {
    opacity: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    width: 100%;
    position: absolute;
    left: 0;
    content: "";
    bottom: 0;
    height: 40%;
    transition: opacity 0.4s ease;
}.plan .edu_rates:hover .pic_wrap_item::after {
    opacity: 1;
}

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

@media (min-width: 768px) {.plan .price_sheet {
    grid-template-columns: 1fr;
}.plan .cost_fee {
    gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
}

@media (min-width: 992px) {.plan {
    padding: 150px 0;
}.plan .price_sheet {
    gap: 80px;
    grid-template-columns: 1fr;
}.plan .cost_fee {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}.plan .offer_box {
    min-height: 480px;
}
}

@media (min-width: 1200px) {.plan .cost_fee {
    gap: 40px;
}
}

@media (max-width: 767px) {.plan {
    padding: 80px 0;
}.plan .learn_offers h2 {
    font-size: calc(35px - 0.4rem);
}.plan .value_rates {
    font-size: 16px;
}.plan .pro_rates {
    padding: 30px 20px;
}.plan .offer_box {
    min-height: 400px;
}.plan .pic_wrap_item {
    height: 160px;
}
}

@media (max-width: 480px) {.plan {
    padding: 60px 0;
}.plan .price_sheet {
    gap: 40px;
}.plan .cost_fee {
    gap: 25px;
}.plan .pro_rates h3 {
    font-size: 23px;
}.plan .premium_grid {
    font-size: 23px;
}.plan .pro_rates p {
    font-size: calc(16px - 0.1rem);
}}.our_background {
    position: relative;
    background: rgb(222,220,229);
    overflow: hidden;
    padding: 120px 0;
}.our_background::before {
    content: "";
    left: 0;
    width: 100%;
    top: 0;
    position: absolute;
    background: linear-gradient(135deg, 
                rgb(189,184,202,0.5) 0%, 
                transparent 25%);
    z-index: 1;
    height: 100%;
}.our_background::after {
    position: absolute;
    content: "";
    z-index: 1;
    right: 0;
    height: 100%;
    background: linear-gradient(225deg, 
                rgb(155,146,173,0.5) 0%, 
                transparent 25%);
    top: 0;
    width: 100%;
}.our_background .container {
    max-width: 1200px;
    padding: 0 20px;
    z-index: 5;
    margin: 0 auto;
    position: relative;
}.our_background h2 {
    font-size: 28px;
    text-align: center;
    position: relative;
    color: #000000;
    margin-bottom: 70px;
    font-weight: 700;
}.our_background h2::after {
    left: 50%;
    bottom: -20px;
    width: 80px;
    border-radius: 10px;
    position: absolute;
    transform: translateX(-50%);
    height: 4px;
    background: rgb(189,184,202);
    content: "";
}.our_background .skills_center {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    position: relative;
    gap: 40px;
}.our_background .mentor_network {
    flex-direction: column;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
}.our_background .mentor_network:first-child {
    grid-column: 1;
    grid-row: 1 / span 2;
    transform-origin: left center;
}.our_background .mentor_network:nth-child(2) {
    transform-origin: right center;
    grid-column: 2;
    grid-row: 1 / span 2;
}.our_background .mentor_network:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.03);
    z-index: 10;
}.our_background .mentor_network h3 {
    background: rgb(189,184,202);
    font-weight: 600;
    color: #ffffff;
    padding: 20px 30px;
    position: relative;
    font-size: 19px;
    z-index: 2;
    margin: 0;
}.our_background .mentor_network:nth-child(2) h3 {
    background: rgb(155,146,173);
}.our_background .mentor_network p {
    flex-grow: 1;
    display: flex;
    position: relative;
    z-index: 1;
    padding: 30px;
    color: #000000;
    margin: 0;
    align-items: center;
    font-size: 14px;
    line-height: 1.8;
}.our_background .mentor_network p::first-letter {
    float: left;
    font-weight: 700;
    margin-right: 8px;
    font-size: calc(14px * 1.8);
    line-height: 1;
    color: rgb(189,184,202);
}.our_background .mentor_network:nth-child(2) p::first-letter {
    color: rgb(155,146,173);
}.our_background .mentor_network::before {
    z-index: 1;
    content: "";
    height: 100px;
    width: 100px;
    right: 0;
    position: absolute;
    background: linear-gradient(135deg, transparent 50%, rgba(rgb(189,184,202,0.5), 0.1) 50%);
    bottom: 0;
}.our_background .mentor_network:nth-child(2)::before {
    background: linear-gradient(135deg, transparent 50%, rgba(rgb(155,146,173,0.5), 0.1) 50%);
}.our_background .mentor_network::after {
    z-index: 3;
    right: 0;
    background: linear-gradient(90deg, rgb(189,184,202), transparent);
    width: 100%;
    content: "";
    height: 5px;
    top: 0;
    position: absolute;
}.our_background .mentor_network:nth-child(2)::after {
    background: linear-gradient(90deg, rgb(155,146,173), transparent);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}


@media screen and (max-width: 991px) {.our_background {
    padding: 90px 0;
}.our_background h2 {
    margin-bottom: 60px;
}.our_background .skills_center {
    gap: 30px;
}
}

@media screen and (max-width: 768px) {.our_background {
    padding: 70px 0;
}.our_background h2 {
    margin-bottom: 50px;
}.our_background .skills_center {
    grid-template-columns: 1fr;
    gap: 30px;
    grid-template-rows: auto auto;
}.our_background .mentor_network:first-child,
    .our_background .mentor_network:nth-child(2) {
    grid-column: 1;
    grid-row: auto;
}
}

@media screen and (max-width: 576px) {.our_background {
    padding: 60px 0;
}.our_background .container {
    padding: 0 15px;
}.our_background h2 {
    margin-bottom: 40px;
    font-size: calc(28px * 0.9);
}.our_background h2::after {
    width: 60px;
    bottom: -15px;
    height: 3px;
}.our_background .mentor_network h3 {
    font-size: calc(19px * 0.9);
    padding: 15px 20px;
}.our_background .mentor_network p {
    line-height: 1.7;
    padding: 20px;
    font-size: calc(14px * 0.95);
}}footer {
    z-index: 1;
    position: relative;
}footer::before {
    opacity: 0.9;
    background: linear-gradient(145deg, rgb(222,220,229) 0%, rgb(189,184,202,0.5) 100%);
    z-index: -2;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    top: 0;
    content: "";
}footer::after {
    bottom: 0;
    right: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgb(189,184,202,0.5), rgb(189,184,202,0.5) 1px, transparent 1px, transparent 20px),
        repeating-linear-gradient(90deg, rgb(189,184,202,0.5), rgb(189,184,202,0.5) 1px, transparent 1px, transparent 20px);
    content: "";
    top: 0;
    opacity: 0.1;
    left: 0;
    position: absolute;
    z-index: -1;
}.degree_path {
    color: #000000;
    position: relative;
    padding: 4rem 0 2rem;
}.degree_path::after {
    height: 6px;
    position: absolute;
    background: linear-gradient(90deg, rgb(189,184,202), rgb(155,146,173));
    left: 0;
    content: "";
    top: 0;
    width: 100%;
}.degree_path .container {
    position: relative;
    gap: 3rem;
    flex-wrap: wrap;
    display: flex;
}.degree_path .company_holder {
    border-radius: 14px;
    position: relative;
    flex: 1 1 400px;
    padding: 2rem 2.5rem;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}.degree_path .company_holder::before {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    top: 0;
    width: 100%;
    background: rgb(189,184,202);
    content: "";
    position: absolute;
    height: 5px;
    left: 0;
}.degree_path .company_holder h3 {
    font-size: 35px;
    color: rgb(189,184,202);
    position: relative;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin: 0 0 1.5rem;
}.degree_path .company_holder h3::after {
    bottom: -0.5rem;
    background: rgb(155,146,173);
    left: 0;
    height: 3px;
    position: absolute;
    width: 80px;
    content: "";
}.degree_path .conduct_code {
    font-size: 16px;
    color: #000000;
    border-radius: 10px;
    padding: 1.5rem;
    position: relative;
    border-left: 3px solid rgb(155,146,173);
    background: rgb(222,220,229);
    line-height: 1.7;
}.degree_path .footer_classes {
    min-width: 400px;
    flex: 1 1 calc(100% - 450px);
}.degree_path .head_primary {
    flex-wrap: wrap;
    display: flex;
    gap: 2.5rem;
}.degree_path .head_expert {
    background: #ffffff;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    flex: 1 1 calc(50% - 1.25rem);
}.degree_path .head_expert h5 {
    margin: 0;
    padding: 1rem 1.5rem;
    background: rgb(155,146,173);
    font-size: 24px;
    font-weight: 600;
    position: relative;
    color: #ffffff;
}.degree_path .head_expert .head_primary {
    gap: 0;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}.degree_path .head_expert .head_primary a {
    font-size: 16px;
    padding: 0.8rem 1.5rem;
    position: relative;
    text-decoration: none;
    color: #000000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}.degree_path .head_expert .head_primary a::before {
    content: "";
    transition: all 0.3s ease;
    top: 0;
    height: 100%;
    z-index: -1;
    left: 0;
    width: 0;
    position: absolute;
    background: rgb(222,220,229);
}.degree_path .head_expert .head_primary a::after {
    transform: translateY(-50%);
    position: absolute;
    content: "";
    top: 50%;
    height: 5px;
    opacity: 0;
    width: 5px;
    background: rgb(155,146,173);
    left: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
}.degree_path .head_expert .head_primary a:hover {
    padding-left: 2.2rem;
    color: rgb(189,184,202);
}.degree_path .head_expert .head_primary a:hover::before {
    width: 100%;
}.degree_path .head_expert .head_primary a:hover::after {
    opacity: 1;
}.footer_address {
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    position: relative;
    background: rgb(222,220,229);
}.footer_address::before {
    background: linear-gradient(90deg, transparent, rgb(189,184,202,0.5), transparent);
    right: 10%;
    top: 0;
    height: 1px;
    position: absolute;
    content: "";
    left: 10%;
}.footer_address .container {
    justify-content: center;
    align-items: center;
    display: flex;
}.footer_address .gdpr_block {
    font-weight: 400;
    font-size: 13px;
    border-radius: 50px;
    color: #000000;
    text-align: center;
    background: #ffffff;
    padding: 0.8rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1200px) {.degree_path .container {
    gap: 2rem;
}.degree_path .company_holder {
    flex: 1 1 360px;
}.degree_path .footer_classes {
    min-width: 360px;
    flex: 1 1 calc(100% - 400px);
}.degree_path .head_primary {
    gap: 2rem;
}
}

@media (max-width: 992px) {.degree_path {
    padding: 3.5rem 0 2rem;
}.degree_path .container {
    flex-direction: column;
    gap: 2.5rem;
}.degree_path .company_holder,
    .degree_path .footer_classes {
    flex: 1 1 100%;
    min-width: 100%;
}.degree_path .head_expert {
    flex: 1 1 calc(50% - 1rem);
    min-width: 200px;
}
}

@media (max-width: 768px) {.degree_path {
    padding: 3rem 0 1.5rem;
}.degree_path .head_primary {
    gap: 1.5rem;
}.degree_path .company_holder {
    padding: 2rem;
}.degree_path .company_holder h3 {
    font-size: calc(35px - 2px);
}.footer_address {
    margin-top: 2rem;
}
}

@media (max-width: 576px) {.degree_path {
    padding: 2.5rem 0 1rem;
}.degree_path .container {
    gap: 1.5rem;
}.degree_path .head_expert {
    min-width: 100%;
    flex: 1 1 100%;
}.degree_path .head_primary {
    gap: 1rem;
}.degree_path .company_holder {
    padding: 1.5rem;
}.degree_path .conduct_code {
    padding: 1.2rem;
}.footer_address {
    margin-top: 1.5rem;
    padding: 1.5rem 0;
}
}

@media (max-width: 420px) {.degree_path .company_holder h3::after {
    width: 50px;
}.degree_path .head_expert .head_primary a:hover {
    padding-left: 2rem;
}.footer_address .gdpr_block {
    width: 90%;
    padding: 0.7rem 1.5rem;
}}header {
    overflow: visible;
    z-index: 99;
    position: relative;
    background: linear-gradient(to bottom, rgb(222,220,229), rgba(0, 0, 0, 0.5));
    width: 100%;
}header::before {
    position: absolute;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 6px
    );
    content: "";
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.1;
}header .main_class {
    justify-content: space-between;
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 30px;
}header .main_class::before {
    content: "";
    position: absolute;
    background: linear-gradient(to right, transparent, rgb(189,184,202), transparent);
    left: 10%;
    height: 1px;
    width: 80%;
    bottom: 0;
}header .main_class .top_lead {
    margin-right: 40px;
    position: relative;
    z-index: 2;
}header .main_class .top_lead .nav_learn {
    position: relative;
    padding: 5px;
    display: block;
}header .main_class .top_lead .nav_learn::before {
    left: -5px;
    bottom: -5px;
    transform: scale(0.9);
    top: -5px;
    position: absolute;
    opacity: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    right: -5px;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}header .main_class .top_lead .nav_learn:hover::before {
    transform: scale(1);
    opacity: 0.1;
}header .main_class .top_lead .nav_learn svg {
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    height: 45px;
}header .main_class .head_expert {
    display: flex;
    margin: 0;
    list-style: none;
    padding: 0;
    perspective: 1000px;
}header .main_class .head_expert .nav_wrap {
    margin: 0;
    transform-style: preserve-3d;
    position: relative;
}header .main_class .head_expert .nav_wrap a {
    padding: 12px 20px;
    font-family: Arial, sans-serif;
    color: #000000;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
    background: linear-gradient(to bottom, transparent, transparent);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    transform-style: preserve-3d;
    position: relative;
    text-decoration: none;
}header .main_class .head_expert .nav_wrap a::before,
header .main_class .head_expert .nav_wrap a::after {
    content: "";
    width: 100%;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    height: 100%;
}header .main_class .head_expert .nav_wrap a::before {
    opacity: 0;
    transform-origin: top center;
    background: linear-gradient(to bottom, rgb(189,184,202,0.5), transparent);
    transform: translateZ(-1px) rotateX(10deg);
}header .main_class .head_expert .nav_wrap a::after {
    opacity: 0;
    transform-origin: bottom center;
    transform: translateZ(-2px) rotateX(-10deg);
    background: linear-gradient(to top, rgb(155,146,173,0.5), transparent);
}header .main_class .head_expert .nav_wrap:hover a {
    color: rgb(189,184,202);
    transform: translateZ(10px);
}header .main_class .head_expert .nav_wrap:hover a::before,
header .main_class .head_expert .nav_wrap:hover a::after {
    opacity: 0.1;
}header .main_class .head_expert .nav_wrap:hover a::before {
    transform: translateZ(-5px) rotateX(15deg);
}header .main_class .head_expert .nav_wrap:hover a::after {
    transform: translateZ(-10px) rotateX(-15deg);
}

@media (max-width: 992px) {header .main_class {
    padding: 15px;
    flex-direction: column;
}header .main_class .top_lead {
    margin: 0 0 15px 0;
}header .main_class .head_expert {
    flex-wrap: wrap;
    perspective: none;
    width: 100%;
    justify-content: center;
}header .main_class .head_expert .nav_wrap a {
    padding: 10px 15px;
    font-size: calc(12px - 1px);
    transform-style: flat;
}header .main_class .head_expert .nav_wrap:hover a {
    transform: none;
}header .main_class .head_expert .nav_wrap a::before,
    header .main_class .head_expert .nav_wrap a::after {
    display: none;
}
}

@media (max-width: 767px) {header .main_class .head_expert .nav_wrap a {
    padding: 8px 12px;
    font-size: calc(12px - 2px);
}}.title_board {
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}.start_page {
    z-index: 2;
    position: relative;
    max-width: 1400px;
    padding: 2rem;
    width: 100%;
}.title_board .edu_base {
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    padding: 4rem 3rem;
    position: relative;
    gap: 2rem;
    display: flex;
    justify-content: center;
    border-radius: 10px;
}.title_board .edu_base::before {
    z-index: 1;
    content: "";
    backdrop-filter: brightness(0.8) contrast(1.2);
    right: 0;
    top: 0;
    position: absolute;
    left: 0;
    background: linear-gradient(135deg, rgb(189,184,202,0.5), rgba(0, 0, 0, 0.5) 80%);
    bottom: 0;
}.title_board .edu_base::after {
    top: 0;
    height: 100%;
    z-index: 2;
    content: "";
    left: 0;
    opacity: 0.15;
    width: 100%;
    position: absolute;
    background: 
        linear-gradient(90deg, transparent 0%, rgb(155,146,173,0.5) 50%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgb(189,184,202,0.5) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}.title_board .edu_base span {
    position: relative;
    z-index: 5;
    transform: translateY(10px);
    animation: fadeSlideUp 0.8s ease-out 0.2s forwards;
    display: inline-block;
    opacity: 0;
    max-width: 90%;
}.title_board .edu_base h3 {
    margin-bottom: 0.5rem;
    color: #ffffff;
    backdrop-filter: blur(8px);
    border-left: 4px solid rgb(189,184,202);
    font-weight: 600;
    max-width: 650px;
    padding: 1rem 1.5rem;
    font-size: calc(18px * 0.9);
    letter-spacing: 0.5px;
    line-height: 1.5;
    background: linear-gradient(90deg, rgb(189,184,202,0.5) 0%, rgb(155,146,173,0.5) 100%);
}.title_board .edu_base h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 5;
    position: relative;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    max-width: 800px;
    transform: translateY(15px);
    margin-bottom: 1rem;
    font-size: 42px;
    opacity: 0;
    animation: fadeSlideUp 0.8s ease-out 0.4s forwards;
}.title_board .edu_base h1::after {
    width: 120px;
    content: "";
    bottom: -15px;
    transform: scaleX(0);
    background: linear-gradient(90deg, rgb(155,146,173), rgb(189,184,202));
    animation: lineExpand 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards;
    height: 4px;
    transform-origin: left;
    left: 0;
    position: absolute;
}.title_board .edu_base div div {
    z-index: 5;
    position: relative;
    animation: fadeSlideUp 0.8s ease-out 0.6s forwards;
    transform: translateY(20px);
    opacity: 0;
}.title_board .edu_base p {
    padding-left: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    max-width: 600px;
    font-size: calc(18px * 1.2);
    font-weight: 400;
    position: relative;
}.title_board .edu_base p::before {
    left: 0;
    bottom: 0.5rem;
    top: 0.5rem;
    content: "";
    position: absolute;
    width: 3px;
    border-radius: 10px;
    background: rgb(155,146,173);
}

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

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

@media (max-width: 992px) {.title_board .edu_base {
    padding: 3rem 2rem;
}.title_board .edu_base h1 {
    font-size: calc(42px * 0.85);
}.title_board .edu_base h3 {
    max-width: 550px;
    font-size: calc(18px * 0.85);
}
}

@media (max-width: 768px) {.start_page {
    padding: 1.5rem;
}.title_board .edu_base {
    padding: 2.5rem 1.5rem;
}.title_board .edu_base h1 {
    font-size: calc(42px * 0.7);
}.title_board .edu_base h3 {
    font-size: 18px;
    padding: 0.8rem 1.2rem;
}.title_board .edu_base span,
    .title_board .edu_base h1,
    .title_board .edu_base div div {
    max-width: 100%;
}.title_board .edu_base p {
    font-size: 18px;
}
}

@media (max-width: 576px) {.title_board .edu_base {
    padding: 2rem 1.25rem;
}.title_board .edu_base h1 {
    font-size: calc(42px * 0.6);
}.title_board .edu_base h3 {
    font-size: calc(18px * 0.95);
    padding: 0.7rem 1rem;
    border-left-width: 3px;
}.title_board .edu_base p {
    padding-left: 1rem;
}.title_board .edu_base h1::after {
    height: 3px;
    bottom: -10px;
    width: 80px;
}
}

@media (hover: hover) {.title_board .edu_base {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.title_board .edu_base:hover {
    transform: translateY(-5px);
}.title_board .edu_base:hover::after {
    opacity: 0.25;
    transition: opacity 0.5s ease;
}}.contact_panel {
    position: relative;
    padding: 0;
}.contact_panel::before {
    content: '';
    left: 0;
    height: 100%;
    opacity: 0.85;
    background: rgb(222,220,229);
    width: 100%;
    top: 0;
    position: absolute;
}.contact_panel .container {
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}.contact_panel .message_message {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto;
    display: grid;
}.contact_panel .connect_reach {
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    background: #ffffff;
    z-index: 10;
    grid-row: 1 / 2;
    margin-top: 80px;
    grid-column: 3 / 11;
    border-radius: 16px;
}.contact_panel .connect_reach h3 {
    text-align: center;
    padding: 40px;
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 33px;
    background: rgb(189,184,202);
}.contact_panel .connect_reach div {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 20px;
}.contact_panel .connect_reach svg {
    height: 50px;
    width: 50px;
    background: rgb(222,220,229);
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 15px;
}.contact_panel .connect_reach svg path {
    fill: rgb(189,184,202);
}.contact_panel .connect_reach span {
    color: #000000;
    font-size: 17px;
}.contact_panel .connect_reach a {
    transition: color 0.3s ease;
    color: rgb(189,184,202);
    text-decoration: none;
}.contact_panel .connect_reach a:hover {
    color: rgb(155,146,173);
}.contact_panel .contact_inquiry {
    padding: 170px 0 100px;
    margin-top: -100px;
    background: rgb(189,184,202);
    grid-column: 1 / 13;
    grid-row: 2 / 4;
}.contact_panel form {
    width: 60%;
    background: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin: 0 auto;
}.contact_panel form h3 {
    font-size: 33px;
    position: relative;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000000;
}.contact_panel form h3::after {
    left: 50%;
    content: '';
    width: 70px;
    transform: translateX(-50%);
    position: absolute;
    bottom: -15px;
    background: rgb(189,184,202);
    height: 3px;
}.contact_panel form input[type="text"],
.contact_panel form input[type="email"] {
    transition: all 0.3s ease;
    border-radius: 10px;
    background: #ffffff;
    color: #000000;
    padding: 18px 20px;
    border: 1px solid rgb(222,220,229);
    width: 100%;
    margin-bottom: 25px;
    font-size: 17px;
}.contact_panel form input[type="text"]:focus,
.contact_panel form input[type="email"]:focus {
    border-color: rgb(189,184,202);
    outline: none;
    box-shadow: 0 0 0 3px rgb(189,184,202,0.5);
}.contact_panel form input::placeholder {
    color: #000000;
}.contact_panel .support_query {
    display: flex;
    align-items: flex-start;
    margin: 25px 0;
}.contact_panel .support_query input[type="checkbox"] {
    appearance: none;
    flex-shrink: 0;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid rgb(222,220,229);
    width: 22px;
    transition: all 0.3s ease;
    position: relative;
    height: 22px;
    -webkit-appearance: none;
    margin-right: 15px;
}.contact_panel .support_query input[type="checkbox"]:checked {
    background-color: rgb(189,184,202);
    border-color: rgb(189,184,202);
}.contact_panel .support_query input[type="checkbox"]:checked::before {
    height: 10px;
    content: '';
    top: 4px;
    left: 7px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    width: 6px;
    transform: rotate(45deg);
    position: absolute;
}.contact_panel .support_query label {
    line-height: 1.6;
    font-size: 12px;
    color: #000000;
}.contact_panel .support_query a {
    font-weight: 600;
    color: rgb(189,184,202);
    transition: color 0.3s ease;
    text-decoration: none;
}.contact_panel .support_query a:hover {
    color: rgb(155,146,173);
}.contact_panel .inquiry_links {
    cursor: pointer;
    font-weight: 700;
    border-radius: 10px;
    width: 100%;
    background: rgb(189,184,202);
    padding: 18px 20px;
    font-size: 15px;
    border: none;
    transition: all 0.3s ease;
    color: #ffffff;
}.contact_panel .inquiry_links:hover {
    transform: translateY(-3px);
    background: rgb(155,146,173);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {.contact_panel .connect_reach {
    grid-column: 2 / 12;
}.contact_panel form {
    width: 70%;
}
}

@media (max-width: 992px) {.contact_panel .connect_reach {
    grid-column: 1 / 13;
    margin: 60px 20px 0;
}.contact_panel form {
    width: 80%;
    padding: 50px 40px;
}
}

@media (max-width: 768px) {.contact_panel .connect_reach h3 {
    font-size: calc(33px * 0.9);
    padding: 30px;
}.contact_panel .contact_inquiry {
    padding: 150px 20px 80px;
}.contact_panel form {
    padding: 40px 30px;
    width: 100%;
}.contact_panel form h3 {
    font-size: calc(33px * 0.9);
    margin-bottom: 35px;
}
}

@media (max-width: 576px) {.contact_panel .connect_reach {
    margin: 40px 15px 0;
}.contact_panel .connect_reach h3 {
    font-size: calc(33px * 0.85);
    padding: 25px 20px;
}.contact_panel .contact_inquiry {
    padding: 130px 15px 60px;
}.contact_panel form {
    padding: 30px 20px;
}.contact_panel form input[type="text"],
    .contact_panel form input[type="email"] {
    margin-bottom: 20px;
    padding: 15px;
}}.leadership_profile {
    background: linear-gradient(45deg, rgb(222,220,229) 0%, #ffffff 100%);
    overflow: hidden;
    padding: 70px 30px;
    position: relative;
}.leadership_profile::before {
    background: radial-gradient(circle at 30% 50%, rgb(189,184,202,0.5) 0%, transparent 40%);
    width: 100%;
    top: 0;
    left: 0;
    content: "";
    position: absolute;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}.leadership_profile::after {
    position: absolute;
    background: radial-gradient(circle at 70% 30%, rgb(155,146,173,0.5) 0%, transparent 40%);
    top: 0;
    opacity: 0.3;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 0;
}.leadership_profile .testimonials_hub {
    perspective: 1500px;
    grid-template-columns: 1fr;
    display: grid;
    z-index: 2;
    max-width: 1000px;
    position: relative;
    margin: 0 auto;
    transform-style: preserve-3d;
}.leadership_profile .pic_wrap_item {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    z-index: 2;
    position: relative;
    transform: rotateX(10deg);
    width: 100%;
    border-radius: 30px 30px 0 0;
    height: 300px;
    transform-origin: bottom;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}.leadership_profile .pic_wrap_item::before {
    height: 100%;
    left: 0;
    position: absolute;
    z-index: 1;
    content: "";
    top: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    width: 100%;
}.leadership_profile .testimonials_hub:hover .pic_wrap_item {
    transform: rotateX(0deg) translateZ(30px);
}.leadership_profile .work_explore {
    padding: 40px;
    position: relative;
    border-radius: 0 0 30px 30px;
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotateX(-5deg);
    transform-origin: top;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1;
}.leadership_profile .testimonials_hub:hover .work_explore {
    transform: rotateX(0deg) translateZ(20px);
}.leadership_profile .name {
    display: inline-block;
    transform: translateZ(0);
    color: rgb(189,184,202);
    margin-bottom: 10px;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    transition: transform 0.4s ease;
}.leadership_profile .name::after {
    height: 3px;
    content: "";
    left: 0;
    position: absolute;
    transition: width 0.4s ease 0.1s;
    width: 0;
    bottom: -5px;
    background: linear-gradient(to right, rgb(155,146,173), transparent);
}.leadership_profile .testimonials_hub:hover .name::after {
    width: 100%;
}.leadership_profile .testimonials_hub:hover .name {
    transform: translateZ(10px);
}.leadership_profile .work_explore > div:nth-child(2) {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    transform: translateZ(0);
    opacity: 0.7;
    transition: transform 0.4s ease 0.1s, color 0.3s ease;
}.leadership_profile .testimonials_hub:hover .work_explore > div:nth-child(2) {
    transform: translateZ(15px);
    color: rgb(155,146,173);
}.leadership_profile .career_summary {
    transform: translateZ(0);
    border-top: 1px solid rgb(222,220,229);
    color: #000000;
    line-height: 1.7;
    font-size: 14px;
    position: relative;
    padding: 20px 0 0 0;
    transition: transform 0.4s ease 0.2s;
}.leadership_profile .testimonials_hub:hover .career_summary {
    transform: translateZ(5px);
}.leadership_profile .career_summary::before {
    position: absolute;
    color: rgb(155,146,173,0.5);
    line-height: 0;
    opacity: 0.5;
    font-size: 60px;
    content: "";
    left: -5px;
    top: 10px;
}

@media (min-width: 768px) {.leadership_profile .testimonials_hub {
    grid-gap: 0;
    grid-template-columns: 300px 1fr;
}.leadership_profile .pic_wrap_item {
    border-radius: 30px 0 0 30px;
    transform: rotateY(-10deg);
    transform-origin: right;
    height: 100%;
}.leadership_profile .testimonials_hub:hover .pic_wrap_item {
    transform: rotateY(0deg) translateZ(30px);
}.leadership_profile .work_explore {
    transform-origin: left;
    transform: rotateY(5deg);
    border-radius: 0 30px 30px 0;
}.leadership_profile .testimonials_hub:hover .work_explore {
    transform: rotateY(0deg) translateZ(20px);
}
}

@media (max-width: 767px) {.leadership_profile {
    padding: 50px 20px;
}.leadership_profile .pic_wrap_item {
    height: 250px;
}.leadership_profile .work_explore {
    padding: 30px 25px;
}.leadership_profile .name {
    font-size: calc(30px - 4px);
}.leadership_profile .work_explore > div:nth-child(2) {
    font-size: calc(18px - 1px);
}.leadership_profile .career_summary {
    font-size: calc(14px - 1px);
}
}