* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}header,footer {
    width: 100%;
}.top_pro {
    flex: 1 0 auto;
}svg {
    height: 30px;
    width: 30px;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1228px;
}.panel-container {
    flex-direction: column;
    min-height: 100%;
    height: 100%;
    display: flex;
}html,body {
    min-height: 100%;
    color: #000000;
    font-family: Arial, sans-serif;
    height: 100%;
}a {
    text-decoration: none;
    color: inherit;
}.intern_opp {
    flex: 0 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
header {
    z-index: 99;
    overflow: visible;
    width: 100%;
    background: linear-gradient(135deg, rgb(236,225,206), #ffffff);
    position: relative;
}header::before {
    content: "";
    opacity: 0.3;
    height: 15px;
    background: 
        radial-gradient(
            circle at 0% 50%,
            transparent 6px,
            rgb(216,197,164,0.5) 6px,
            rgb(216,197,164,0.5) 10px,
            transparent 10px
        ) repeat-x;
    position: absolute;
    background-size: 20px 20px;
    left: 0;
    bottom: 0;
    width: 100%;
}header .main_sitewrap {
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 25px 30px;
    display: flex;
}header .main_sitewrap::before,
header .main_sitewrap::after {
    height: 2px;
    content: "";
    background: linear-gradient(to right, rgb(216,197,164), transparent);
    position: absolute;
    width: 30%;
}header .main_sitewrap::before {
    left: 0;
    top: 10px;
}header .main_sitewrap::after {
    background: linear-gradient(to left, rgb(193,164,118), transparent);
    bottom: 10px;
    right: 0;
}header .main_sitewrap .top_info {
    position: relative;
    z-index: 2;
}header .main_sitewrap .top_info::before {
    left: -20%;
    z-index: -1;
    border-radius: 60% 40% 50% 30% / 40% 50% 60% 50%;
    content: "";
    opacity: 0.05;
    background: rgb(216,197,164,0.5);
    position: absolute;
    height: 140%;
    width: 140%;
    transition: transform 0.5s ease-in-out;
    top: -20%;
}header .main_sitewrap .top_info:hover::before {
    transform: rotate(15deg) scale(1.1);
}header .main_sitewrap .top_info .main_guide {
    display: block;
    transition: transform 0.3s ease;
}header .main_sitewrap .top_info:hover .main_guide {
    transform: translateY(-3px);
}header .main_sitewrap .top_info .main_guide svg {
    width: auto;
    height: 45px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}header .main_sitewrap .top_tutor {
    position: relative;
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}header .main_sitewrap .top_tutor::before {
    z-index: -1;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    height: 100%;
    transition: all 0.5s ease;
    position: absolute;
    opacity: 0.05;
    top: 0;
    background: rgb(193,164,118,0.5);
    content: "";
    width: 100%;
}header .main_sitewrap .top_tutor:hover::before {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.08;
}header .main_sitewrap .top_tutor .top_edu {
    margin: 0 8px;
    position: relative;
}header .main_sitewrap .top_tutor .top_edu a {
    font-size: 14px;
    text-decoration: none;
    display: block;
    position: relative;
    color: #000000;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    font-family: Arial, sans-serif;
    transition: all 0.4s ease;
    overflow: hidden;
}header .main_sitewrap .top_tutor .top_edu a:hover {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    color: #ffffff;
}header .main_sitewrap .top_tutor .top_edu a::before {
    transform-origin: right top;
    background: rgb(216,197,164);
    left: 0;
    content: "";
    top: 0;
    transition: transform 0.4s ease, border-radius 0.4s ease;
    height: 100%;
    position: absolute;
    transform: scale(0);
    border-radius: 0% 0% 0% 0% / 0% 0% 0% 0%;
    z-index: -1;
    width: 100%;
}header .main_sitewrap .top_tutor .top_edu a:hover::before {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: scale(1);
}header .main_sitewrap .top_tutor .top_edu:nth-child(2n) a::before {
    background: rgb(193,164,118);
    transform-origin: left bottom;
}header .main_sitewrap .top_tutor .top_edu:nth-child(2n) a:hover::before {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}header .main_sitewrap .top_tutor .top_edu:hover {
    animation: menu-wobble 1s ease;
}

@keyframes menu-wobble {
    0%, 100% {
        transform: translateX(0);
    }
    15% {
        transform: translateX(-3px) rotate(-1deg);
    }
    30% {
        transform: translateX(2px) rotate(1deg);
    }
    45% {
        transform: translateX(-2px) rotate(-0.5deg);
    }
    60% {
        transform: translateX(1px) rotate(0.5deg);
    }
    75% {
        transform: translateX(-1px) rotate(-0.25deg);
    }
}

@media (max-width: 992px) {header .main_sitewrap {
    flex-direction: column;
    padding: 20px 15px;
}header .main_sitewrap .top_info {
    margin-bottom: 15px;
}header .main_sitewrap .top_tutor {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}header .main_sitewrap .top_tutor .top_edu {
    margin: 5px;
}header .main_sitewrap .top_tutor .top_edu a {
    font-size: calc(14px - 1px);
    padding: 8px 12px;
}
}

@media (max-width: 767px) {header .main_sitewrap {
    padding: 15px 10px;
}header .main_sitewrap .top_info .main_guide svg {
    height: 40px;
}header .main_sitewrap .top_tutor .top_edu a {
    padding: 6px 10px;
    font-size: calc(14px - 2px);
}}.cookie_dialog_banner {
    transition: transform 0.3s ease-in-out;
    z-index: 90;
    align-items: center;
    background: rgb(236,225,206);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    padding: 1rem 0;
    width: 100%;
    justify-content: center;
    border-top: 3px solid rgb(216,197,164);
    position: fixed;
    bottom: 0;
}#cookie_box_window {
    display: none;
}#cookie_box_window:checked ~ .cookie_dialog_banner {
    opacity: 0;
    visibility: hidden;
}.cookie_dialog_banner .container {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
    display: flex;
    padding: 0 15px;
    gap: 1rem;
    max-width: 1140px;
    z-index: 1;
}.data_comply {
    align-items: center;
    flex-shrink: 0;
    display: flex;
    margin-right: 1rem;
}.data_comply svg {
    width: 50px;
    height: 50px;
    fill: rgb(216,197,164);
}.cookie_compl {
    margin-bottom: 20px;
    flex: 1;
    min-width: 300px;
}.cookie_compl h5 {
    margin-bottom: 0.5rem;
    color: rgb(216,197,164);
    font-weight: 600;
    font-size: 1.5rem;
}.cookie_compl p {
    color: #000000;
    font-size: 1rem;
}.cookie_review {
    padding: 0.75rem 1.5rem;
    background: rgb(216,197,164);
    display: inline-block;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
}.cookie_button.track_bar {
    background: rgb(216,197,164);
}.cookie_button.privacy_switch {
    background: #000000;
    margin-left: 0.5rem;
}.cookie_review:hover {
    transform: translateY(-3px);
    background: #000000;
}.cookie_button.privacy_switch:hover {
    background: rgb(216,197,164);
}.cookie_dialog_banner p a {
    color: rgb(216,197,164);
    transition: color 0.3s ease;
    text-decoration: underline;
}.cookie_dialog_banner p a:hover {
    color: #000000;
}
@media only screen and (max-width: 768px) {.cookie_dialog_banner .container {
    flex-direction: column;
    align-items: center;
}.data_comply {
    margin-right: 0;
    margin-bottom: 1rem;
}.cookie_compl {
    margin-bottom: 1rem;
    text-align: center;
}.cookie_button.privacy_switch {
    margin-left: 0;
    margin-top: 0.5rem;
}}
.about_this {
    padding: 120px 0 100px;
    overflow: hidden;
    position: relative;
}.about_this::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%);
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    content: '';
    top: 0;
    position: absolute;
}.about_this .container {
    z-index: 2;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
}.about_this h2 {
    position: relative;
    animation: slideInTitle 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.2s;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(-10px);
    font-size: 30px;
}.about_this h2::after {
    transform: scaleX(0);
    transform-origin: left;
    bottom: -15px;
    left: 0;
    height: 3px;
    width: 80px;
    background: rgb(216,197,164);
    animation: expandLine 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
    position: absolute;
    content: '';
}.about_this .abstract_box {
    transform: translateY(20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    position: relative;
    border-left: 3px solid rgb(216,197,164);
    padding: 40px;
    backdrop-filter: blur(10px);
    animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}.about_this .abstract_box::before {
    opacity: 0.6;
    right: -5px;
    top: -5px;
    height: 100px;
    content: '';
    position: absolute;
    border-top: 2px solid rgb(193,164,118);
    width: 100px;
    border-right: 2px solid rgb(193,164,118);
}.about_this .abstract_box::after {
    position: absolute;
    border-left: 2px solid rgb(193,164,118);
    bottom: -5px;
    opacity: 0.6;
    left: -5px;
    width: 100px;
    border-bottom: 2px solid rgb(193,164,118);
    height: 100px;
    content: '';
}.about_this .abstract_box > div {
    display: grid;
    grid-template-columns: 1fr;
}.about_this .abstract_box p {
    font-weight: 700;
    position: relative;
    transform: translateX(-10px);
    margin-bottom: 20px;
    opacity: 0;
    animation: slideInText 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
    color: rgb(216,197,164);
    font-size: calc(15px * 1.5);
}.about_this .abstract_box p::after {
    height: 2px;
    bottom: -10px;
    transform: scaleX(0);
    position: absolute;
    transform-origin: left;
    content: '';
    background: rgb(216,197,164);
    animation: expandLine 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.8s;
    left: 0;
    width: 40px;
}.about_this .abstract_box div > div {
    transform: translateY(10px);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 20px;
    animation: fadeUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.8s;
    opacity: 0;
    text-align: justify;
    position: relative;
}.about_this .abstract_box div > div::before {
    animation: expandLine 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards 1s;
    top: 0;
    background: linear-gradient(to bottom, rgb(216,197,164), transparent);
    transform: scaleY(0);
    width: 3px;
    position: absolute;
    bottom: 0;
    content: '';
    left: 0;
    transform-origin: top;
}

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

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

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

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

@media (min-width: 768px) {.about_this {
    padding: 150px 0 130px;
}.about_this h2 {
    font-size: calc(30px * 1.2);
    margin-bottom: 80px;
}.about_this h2::after {
    bottom: -20px;
    width: 120px;
}.about_this .abstract_box {
    margin-left: 40px;
    padding: 60px;
}.about_this .abstract_box > div {
    align-items: flex-start;
    grid-template-columns: 1fr 3fr;
    gap: 40px;
}.about_this .abstract_box p {
    font-size: calc(15px * 2);
    margin-bottom: 0;
    padding-right: 20px;
}.about_this .abstract_box p::after {
    display: none;
}.about_this .abstract_box div > div {
    border-left: none;
    padding-left: 0;
    position: relative;
}.about_this .abstract_box div > div::before {
    width: 2px;
    left: -20px;
}
}

@media (min-width: 992px) {.about_this {
    padding: 180px 0 160px;
}.about_this::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.4) 100%);
}.about_this .container {
    padding: 0 40px;
}.about_this h2 {
    transform: translateX(-20px);
    margin-bottom: 100px;
    font-size: calc(30px * 1.5);
}.about_this h2::after {
    width: 150px;
    height: 4px;
}.about_this .abstract_box {
    margin-left: 80px;
    margin-right: 80px;
    padding: 80px;
    transform: translateY(30px);
}.about_this .abstract_box::before,
    .about_this .abstract_box::after {
    height: 150px;
    width: 150px;
}.about_this .abstract_box > div {
    gap: 60px;
    grid-template-columns: 1fr 3fr;
}.about_this .abstract_box p {
    font-size: calc(15px * 2.5);
}.about_this .abstract_box div > div {
    transform: translateY(15px);
    line-height: 1.9;
    font-size: calc(15px * 1.05);
}
}

@media (min-width: 1200px) {.about_this .abstract_box {
    transition: transform 0.5s ease;
    transform: perspective(1000px) rotateY(-2deg);
}.about_this .abstract_box:hover {
    transform: perspective(1000px) rotateY(0);
}.about_this .abstract_box > div {
    grid-template-columns: 1fr 4fr;
}
}

@media (max-width: 767px) {.about_this {
    padding: 80px 0 60px;
}.about_this h2 {
    font-size: calc(30px * 0.9);
    margin-bottom: 40px;
}.about_this .abstract_box {
    padding: 30px 20px;
    margin: 0 10px;
}.about_this .abstract_box::before,
    .about_this .abstract_box::after {
    width: 60px;
    height: 60px;
}.about_this .abstract_box div > div {
    font-size: calc(15px * 0.95);
    padding-top: 15px;
    line-height: 1.6;
}}.secure_hideout {
    box-shadow: 0 0 15px rgb(216,197,164,0.5);
    font-family: Arial, sans-serif;
    overflow: hidden;
    width: 100%;
    border: 2px solid rgb(216,197,164);
    height: auto;
    padding: 40px;
    color: #ffffff;
}.secure_hideout h1 {
    text-transform: uppercase;
    color: rgb(216,197,164);
    text-shadow: 0 0 10px rgb(216,197,164,0.5);
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(216,197,164);
    margin-top: 30px;
    padding-bottom: 10px;
}.secure_hideout h2 {
    font-size: 28px;
    color: rgb(193,164,118);
    padding-bottom: 5px;
    margin-bottom: 15px;
    margin-top: 25px;
    border-bottom: 1px solid rgb(193,164,118);
    text-shadow: 0 0 10px rgb(193,164,118,0.5);
    font-weight: 600;
}.secure_hideout h3, .secure_hideout h4, .secure_hideout h5, .secure_hideout h6 {
    margin-top: 20px;
    text-shadow: 0 0 5px rgb(216,197,164,0.5);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
    color: rgb(216,197,164);
}.secure_hideout li {
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    font-size: 16px;
    font-weight: 400;
}.secure_hideout li::before {
    top: 0;
    content: "▸";
    left: -15px;
    color: rgb(216,197,164);
    position: absolute;
}.secure_hideout section {
    box-shadow: 0 0 15px rgb(216,197,164,0.5);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}.secure_hideout p, .secure_hideout span, .secure_hideout div {
    text-shadow: 0 0 5px rgb(216,197,164,0.5);
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #000000;
}

@media only screen and (max-width: 800px) {.secure_hideout {
    padding: 20px 10px;
}.secure_hideout h1 {
    font-size: calc(18px * 0.8);
}.secure_hideout h2 {
    font-size: calc(18px * 0.8);
}.secure_hideout h3, .secure_hideout h4, .secure_hideout h5, .secure_hideout h6 {
    font-size: calc(18px * 0.8);
}.secure_hideout p, .secure_hideout span, .secure_hideout div {
    font-size: calc(16px * 0.9);
}}.academic_expertise {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(236,225,206) 0%, rgb(216,197,164,0.5) 100%);
}.academic_expertise::before {
    top: 0;
    background: linear-gradient(45deg, transparent 45%, rgb(193,164,118,0.5) 45%, rgb(193,164,118,0.5) 55%, transparent 55%);
    width: 100%;
    transform: scale(1.5) rotate(-5deg);
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
}.academic_expertise .learner_review {
    position: relative;
    align-items: center;
    margin: 0 auto;
    transform: rotate(-2deg);
    flex-direction: row;
    max-width: 1100px;
    gap: 2rem;
    z-index: 1;
    justify-content: center;
    display: flex;
}.academic_expertise .img_rounded {
    height: 400px;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    border-radius: 23px;
    width: 350px;
    box-shadow: 20px 20px 0 rgb(216,197,164,0.5);
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-15deg);
}.academic_expertise .work_tasks {
    position: relative;
    max-width: 450px;
    padding: 2.5rem;
    transition: all 0.5s ease;
    background: #ffffff;
    z-index: 2;
    transform: perspective(1000px) rotateY(5deg) translateX(-30px);
    border-radius: 23px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}.academic_expertise .work_tasks::before {
    top: -15px;
    position: absolute;
    height: 100%;
    content: "";
    right: -15px;
    border-radius: 23px;
    width: 100%;
    background: rgb(193,164,118,0.5);
    transform: rotate(3deg);
    z-index: -1;
}.academic_expertise .name {
    font-weight: 700;
    color: rgb(216,197,164);
    transform: skewX(-5deg);
    font-size: 30px;
    margin-bottom: 0.5rem;
}.academic_expertise .work_tasks div:nth-child(2) {
    margin-bottom: 1.5rem;
    font-size: 20px;
    font-weight: 600;
    color: rgb(193,164,118);
    transform: skewX(-5deg);
}.academic_expertise .career_tasks {
    font-size: 15px;
    position: relative;
    padding-left: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    color: #000000;
}.academic_expertise .career_tasks::before {
    height: 100%;
    content: "";
    left: 0;
    background: linear-gradient(to bottom, rgb(216,197,164), rgb(193,164,118));
    top: 0;
    width: 4px;
    position: absolute;
    border-radius: 10px;
}.academic_expertise .learner_review:hover .img_rounded {
    box-shadow: 30px 30px 0 rgb(216,197,164,0.5);
    transform: perspective(1000px) rotateY(-5deg);
}.academic_expertise .learner_review:hover .work_tasks {
    transform: perspective(1000px) rotateY(0) translateX(-20px);
}

@media screen and (max-width: 991px) {.academic_expertise .learner_review {
    flex-direction: column;
    gap: 3rem;
    transform: rotate(0);
}.academic_expertise .img_rounded {
    height: 320px;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(0);
    width: 280px;
}.academic_expertise .work_tasks {
    transform: translateY(-30px) perspective(1000px) rotateY(0);
}.academic_expertise .learner_review:hover .img_rounded {
    transform: perspective(1000px) rotateY(0);
}.academic_expertise .learner_review:hover .work_tasks {
    transform: translateY(-40px) perspective(1000px) rotateY(0);
}}.launch_now {
    padding: 130px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(236,225,206) 0%, rgb(193,164,118,0.5) 100%);
}.launch_now::before {
    content: '';
    height: 100%;
    position: absolute;
    background: radial-gradient(
        ellipse at center,
        rgb(236,225,206) 0%,
        transparent 70%
    );
    left: 0;
    width: 100%;
    top: 0;
    z-index: 1;
}.launch_now .study_hub {
    display: flex;
    z-index: 10;
    position: relative;
    align-items: center;
    flex-direction: column;
}.launch_now .container p {
    padding: 40px;
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 85%, 
        85% 100%, 
        0% 100%
    );
    background: #ffffff;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        15px 15px 0 rgb(216,197,164,0.5);
    margin: 0 auto 80px;
    color: #000000;
    text-align: center;
    font-weight: 700;
    position: relative;
    font-size: 37px;
    max-width: 800px;
    z-index: 5;
    line-height: 1.4;
}.launch_now .reach_feedback {
    background: #ffffff;
    transform: rotate(-2deg);
    transform-origin: center;
    font-weight: 600;
    color: #000000;
    position: relative;
    font-size: 20px;
    text-decoration: none;
    padding: 20px 50px;
    box-shadow: 
        5px 5px 0 rgb(216,197,164),
        10px 10px 0 rgb(193,164,118,0.5);
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.launch_now .reach_feedback:hover {
    box-shadow: 
        8px 8px 0 rgb(216,197,164),
        16px 16px 0 rgb(193,164,118,0.5);
    transform: rotate(0) scale(1.05);
}.launch_now .container p::before {
    z-index: -1;
    position: absolute;
    content: '';
    top: -5px;
    background: rgb(216,197,164);
    height: 40px;
    width: 40px;
    right: -5px;
}.launch_now .reach_feedback::before {
    left: 5px;
    top: 5px;
    transition: all 0.4s ease;
    height: 100%;
    z-index: -1;
    content: '';
    width: 100%;
    border: 2px dashed rgb(216,197,164);
    position: absolute;
}.launch_now .reach_feedback:hover::before {
    top: 8px;
    left: 8px;
}.launch_now::after {
    transform: rotate(45deg);
    width: 400px;
    border-radius: 0 50% 50% 50%;
    top: -200px;
    opacity: 0.1;
    height: 400px;
    background: rgb(216,197,164,0.5);
    content: '';
    position: absolute;
    z-index: 1;
    right: -200px;
}.launch_now .study_hub::after {
    content: '';
    opacity: 0.1;
    border-radius: 50% 0 50% 50%;
    background: rgb(193,164,118,0.5);
    left: -150px;
    height: 300px;
    transform: rotate(-45deg);
    width: 300px;
    position: absolute;
    z-index: 1;
    bottom: -150px;
}

@media (max-width: 991px) {.launch_now {
    padding: 100px 0;
}.launch_now .container p {
    padding: 35px;
    box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.1),
            10px 10px 0 rgb(216,197,164,0.5);
    font-size: calc(21px * 1.2);
    margin-bottom: 70px;
}.launch_now .reach_feedback {
    padding: 18px 40px;
}
}

@media (max-width: 767px) {.launch_now {
    padding: 80px 0;
}.launch_now .container p {
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 90%, 
            90% 100%, 
            0% 100%
        );
    font-size: 21px;
    margin-bottom: 60px;
    padding: 30px;
}.launch_now .reach_feedback {
    transform: rotate(-1deg);
    padding: 15px 35px;
}.launch_now .container p::before {
    width: 30px;
    height: 30px;
}
}

@media (max-width: 480px) {.launch_now {
    padding: 60px 0;
}.launch_now .container p {
    box-shadow: 
            0 8px 20px rgba(0, 0, 0, 0.1),
            8px 8px 0 rgb(216,197,164,0.5);
    padding: 25px;
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 95%, 
            95% 100%, 
            0% 100%
        );
    margin-bottom: 50px;
    font-size: calc(14px * 1.2);
}.launch_now .reach_feedback {
    padding: 12px 30px;
    font-size: calc(20px * 0.9);
    transform: rotate(0);
    box-shadow: 
            3px 3px 0 rgb(216,197,164),
            6px 6px 0 rgb(193,164,118,0.5);
}.launch_now .reach_feedback::before {
    top: 3px;
    left: 3px;
}.launch_now .reach_feedback:hover {
    transform: scale(1.03);
    box-shadow: 
            5px 5px 0 rgb(216,197,164),
            10px 10px 0 rgb(193,164,118,0.5);
}.launch_now .reach_feedback:hover::before {
    top: 5px;
    left: 5px;
}}.course_program_info {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background-color: rgb(236,225,206);
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr;
    position: relative;
}.course_program_info .class_map {
    grid-row: 1;
    z-index: 1;
    height: 100%;
    width: 100%;
    position: relative;
    grid-column: 1;
}.course_program_info .class_map::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 5;
    background: linear-gradient(90deg, 
                rgba(0, 0, 0, 0.6) 70%,
                transparent 100%);
    top: 0;
    left: 0;
}.course_program_info .career_class {
    width: 500%;
    height: 100%;
    display: flex;
    animation: carousel-slide 25s ease-in-out infinite;
}.course_program_info .class_map:hover .career_class {
    animation-play-state: paused;
}.course_program_info .program_map {
    width: 20%;
    height: 100%;
    position: relative;
}.course_program_info .program_map img {
    transition: transform 0.5s ease-in-out;
    object-fit: cover;
    width: 100%;
    height: 100%;
}.course_program_info .program_map:hover img {
    transform: scale(1.05);
}.course_program_info .container {
    position: relative;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    grid-column: 1 / 3;
    grid-row: 1;
    display: flex;
    z-index: 10;
}.course_program_info .study_hub {
    position: relative;
    width: 55%;
    padding: 0;
    margin-right: 5%;
}.course_program_info .study_track {
    max-width: 700px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding: 3.5rem;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}.course_program_info .study_track:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}.course_program_info .study_track::before {
    content: '';
    opacity: 1;
    top: 0;
    position: absolute;
    left: 0;
    z-index: -1;
    height: 100%;
    border-radius: 10px;
    width: 100%;
    background-color: rgb(236,225,206);
}.course_program_info .study_track::after {
    background: linear-gradient(to bottom,
                rgb(216,197,164) 0%,
                rgb(193,164,118) 100%);
    content: '';
    position: absolute;
    height: 100%;
    width: 5px;
    top: 0;
    left: 0;
}.course_program_info .study_track h3 {
    font-size: 33px;
    color: rgb(216,197,164);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05);
}.course_program_info .study_track h3::after {
    width: 50px;
    content: '';
    left: 1.5rem;
    position: absolute;
    height: 3px;
    bottom: -0.5rem;
    background-color: rgb(193,164,118);
}.course_program_info .study_track p {
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    color: #000000;
    font-size: 17px;
}.course_program_info .study_track .reach_feedback {
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    margin-left: 1.5rem;
    border-radius: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
    color: rgb(216,197,164);
    letter-spacing: 0.5px;
    border: 2px solid rgb(216,197,164);
    padding: 0.8rem 2rem;
    background-color: transparent;
    display: inline-block;
    position: relative;
}.course_program_info .study_track .reach_feedback::before {
    width: 100%;
    background-color: rgb(216,197,164);
    z-index: -1;
    position: absolute;
    content: '';
    top: 0;
    left: -100%;
    transition: all 0.3s ease;
    height: 100%;
}.course_program_info .study_track .reach_feedback:hover {
    box-shadow: 0 5px 15px rgba(rgb(216,197,164), 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}.course_program_info .study_track .reach_feedback:hover::before {
    left: 0;
}.course_program_info .study_track .reach_feedback:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(rgb(216,197,164), 0.2);
}

@keyframes carousel-slide {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-20%);
    }
    45% {
        transform: translateX(-20%);
    }
    50% {
        transform: translateX(-40%);
    }
    70% {
        transform: translateX(-40%);
    }
    75% {
        transform: translateX(-60%);
    }
    95% {
        transform: translateX(-60%);
    }
    100% {
        transform: translateX(-80%);
    }
}

@media (max-width: 991px) {.course_program_info {
    flex-direction: column;
    display: flex;
    min-height: auto;
}.course_program_info .class_map {
    width: 100%;
    height: 400px;
}.course_program_info .class_map::before {
    background: linear-gradient(to bottom, 
                    rgba(0, 0, 0, 0.6) 0%,
                    transparent 100%);
}.course_program_info .container {
    padding: 3rem 1rem;
    position: relative;
}.course_program_info .study_hub {
    width: 100%;
    margin-right: 0;
}.course_program_info .study_track {
    max-width: 100%;
}
}

@media (max-width: 767px) {.course_program_info .class_map {
    height: 350px;
}.course_program_info .study_track h3 {
    font-size: calc(33px * 0.9);
}.course_program_info .career_class {
    animation-duration: 20s;
    width: 600%;
}.course_program_info .program_map {
    width: 16.6667%;
}
    
    @keyframes carousel-slide {
        0%, 12% {
            transform: translateX(0);
        }
        16%, 28% {
            transform: translateX(-16.6667%);
        }
        32%, 44% {
            transform: translateX(-33.3334%);
        }
        48%, 60% {
            transform: translateX(-50%);
        }
        64%, 76% {
            transform: translateX(-66.6667%);
        }
        80%, 92% {
            transform: translateX(-83.3334%);
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 480px) {.course_program_info .class_map {
    height: 300px;
}.course_program_info .study_track {
    padding: 2rem 1.5rem;
}.course_program_info .study_track h3 {
    padding-left: 1rem;
}.course_program_info .study_track p {
    padding-left: 1rem;
}.course_program_info .study_track .reach_feedback {
    margin-left: 1rem;
}}.contact_form_box {
    position: relative;
    background: rgb(236,225,206);
    overflow: hidden;
    padding: 100px 0;
}.contact_form_box::before {
    width: 100%;
    top: 0;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgb(216,197,164,0.5) 0,
        rgb(216,197,164,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    animation: patternShift 30s linear infinite;
    opacity: 0.05;
    left: 0;
    position: absolute;
    z-index: 1;
    content: '';
}.contact_form_box .img_rounded {
    left: 0;
    top: 0;
    z-index: 0;
    filter: saturate(0.6) brightness(0.7);
    transform: scale(1.1);
    position: absolute;
    transition: transform 10s ease-in-out;
    animation: slowZoom 20s alternate infinite;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}.contact_form_box .img_rounded::after {
    position: absolute;
    top: 0;
    content: '';
    height: 100%;
    left: 0;
    background: linear-gradient(0deg, rgb(236,225,206) 0%, transparent 80%);
    width: 100%;
}.contact_form_box .container {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 30px;
    max-width: 1200px;
}.contact_form_box h3 {
    color: rgb(216,197,164);
    margin-bottom: 50px;
    font-family: Arial, sans-serif;
    position: relative;
    font-size: 32px;
    letter-spacing: 1px;
    text-align: center;
    font-weight: 700;
}.contact_form_box h3::after {
    bottom: -15px;
    position: absolute;
    transform: translateX(-50%);
    width: 60px;
    content: '';
    height: 4px;
    background: rgb(193,164,118);
    left: 50%;
}.contact_form_box .message_message {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-radius: 14px;
}.contact_form_box .support_message {
    background: #ffffff;
    padding: 50px;
    position: relative;
}.contact_form_box .support_message::after {
    right: 0;
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    position: absolute;
    background: linear-gradient(to bottom, transparent, rgb(193,164,118,0.5), transparent);
    content: '';
}.contact_form_box .support_message h3 {
    margin-bottom: 30px;
    text-align: left;
    color: #000000;
    font-size: 19px;
}.contact_form_box .support_message h3::after {
    left: 0;
    height: 3px;
    width: 40px;
    transform: none;
}.contact_form_box form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}.contact_form_box input[type="text"],
.contact_form_box textarea {
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    font-family: Arial, sans-serif;
    font-size: 15px;
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
    background: #ffffff;
}.contact_form_box input[type="text"]:focus,
.contact_form_box textarea:focus {
    box-shadow: 0 0 0 3px rgb(216,197,164,0.5);
    border-color: rgb(216,197,164);
    outline: none;
}.contact_form_box textarea {
    resize: vertical;
    min-height: 140px;
}.contact_form_box .help_card {
    margin-top: 5px;
    align-items: flex-start;
    font-size: calc(15px * 0.9);
    display: flex;
    gap: 12px;
    color: #000000;
}.contact_form_box input[type="checkbox"] {
    flex-shrink: 0;
    position: relative;
    background: #ffffff;
    margin-top: 2px;
    border: 2px solid rgb(193,164,118,0.5);
    border-radius: 4px;
    appearance: none;
    transition: all 0.2s ease;
    width: 22px;
    height: 22px;
    -webkit-appearance: none;
    cursor: pointer;
}.contact_form_box input[type="checkbox"]:checked {
    border-color: rgb(216,197,164);
    background: rgb(216,197,164);
}.contact_form_box input[type="checkbox"]:checked::after {
    border-bottom: 2px solid #ffffff;
    left: 7px;
    content: '';
    position: absolute;
    top: 3px;
    width: 6px;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    height: 12px;
}.contact_form_box .help_card label {
    line-height: 1.5;
    font-size: calc(15px * 0.9);
    cursor: pointer;
}.contact_form_box .help_card a {
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
    color: rgb(216,197,164);
}.contact_form_box .help_card a:hover {
    color: rgb(193,164,118);
}.contact_form_box .reach_feedback {
    align-self: flex-start;
    cursor: pointer;
    border: none;
    font-size: 18px;
    font-family: Arial, sans-serif;
    padding: 16px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgb(216,197,164,0.5);
    background: rgb(216,197,164);
    z-index: 1;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    border-radius: 10px;
}.contact_form_box .reach_feedback::before {
    width: 100%;
    top: 0;
    background: rgb(193,164,118);
    position: absolute;
    height: 100%;
    content: '';
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
    left: 0;
    transform-origin: right;
    z-index: -1;
    transform: scaleX(0);
}.contact_form_box .reach_feedback:hover {
    box-shadow: 0 6px 15px rgba(rgb(216,197,164), 0.4);
}.contact_form_box .reach_feedback:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.contact_form_box .query_map {
    justify-content: center;
    background: rgb(193,164,118,0.5);
    display: flex;
    padding: 50px;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}.contact_form_box .query_map::before {
    background: rgb(216,197,164,0.5);
    width: 150px;
    height: 150px;
    content: '';
    right: 0;
    border-radius: 50%;
    opacity: 0.4;
    position: absolute;
    bottom: 0;
    filter: blur(60px);
}.contact_form_box .query_map h4 {
    color: #000000;
    font-weight: 700;
    font-family: Arial, sans-serif;
    margin-bottom: 35px;
    font-size: 19px;
    position: relative;
}.contact_form_box .query_map h4::after {
    left: 0;
    background: rgb(216,197,164);
    height: 3px;
    position: absolute;
    bottom: -15px;
    width: 40px;
    content: '';
}.contact_form_box .support_links {
    margin: 0;
    display: flex;
    padding: 0;
    list-style: none;
    gap: 30px;
    flex-direction: column;
}.contact_form_box .support_links li {
    display: flex;
    transition: transform 0.3s ease;
    align-items: center;
    position: relative;
    gap: 18px;
}.contact_form_box .support_links li:hover {
    transform: translateX(5px);
}.contact_form_box .support_links li svg {
    flex-shrink: 0;
    width: 46px;
    align-items: center;
    display: flex;
    height: 22px;
    padding: 12px;
    background: #ffffff;
    width: 22px;
    border-radius: 50%;
    height: 46px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    justify-content: center;
}.contact_form_box .support_links li svg path {
    fill: rgb(216,197,164);
}.contact_form_box .support_links li span {
    color: #000000;
    font-size: 15px;
    font-family: Arial, sans-serif;
}.contact_form_box .support_links li a {
    transition: color 0.3s ease;
    text-decoration: none;
    color: #000000;
}.contact_form_box .support_links li:hover a {
    color: rgb(216,197,164);
}

@keyframes patternShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@media (max-width: 992px) {.contact_form_box {
    padding: 80px 0;
}.contact_form_box .message_message {
    grid-template-columns: 1fr;
}.contact_form_box .support_message::after {
    display: none;
}.contact_form_box .support_message,
    .contact_form_box .query_map {
    padding: 40px;
}.contact_form_box h3 {
    font-size: calc(32px * 0.9);
}
}

@media (max-width: 768px) {.contact_form_box {
    padding: 60px 0;
}.contact_form_box .container {
    padding: 0 20px;
}.contact_form_box .support_message,
    .contact_form_box .query_map {
    padding: 30px 25px;
}.contact_form_box h3 {
    font-size: calc(32px * 0.85);
    margin-bottom: 40px;
}.contact_form_box .support_message h3,
    .contact_form_box .query_map h4 {
    font-size: calc(19px * 0.95);
    margin-bottom: 25px;
}.contact_form_box input[type="text"],
    .contact_form_box textarea {
    padding: 14px 18px;
}.contact_form_box .reach_feedback {
    padding: 14px 28px;
}
}

@media (max-width: 480px) {.contact_form_box {
    padding: 50px 0;
}.contact_form_box .support_message,
    .contact_form_box .query_map {
    padding: 25px 20px;
}.contact_form_box h3 {
    font-size: calc(32px * 0.8);
    margin-bottom: 35px;
}.contact_form_box .support_message h3,
    .contact_form_box .query_map h4 {
    font-size: calc(19px * 0.9);
}.contact_form_box form {
    gap: 20px;
}.contact_form_box .reach_feedback {
    text-align: center;
    width: 100%;
}.contact_form_box .support_links li svg {
    height: 40px;
    width: 40px;
    padding: 10px;
}.contact_form_box .support_links {
    gap: 25px;
}}.ty_sidebar {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(236,225,206) 0%, rgb(193,164,118,0.5) 100%);
    overflow: hidden;
    perspective: 1000px;
    position: relative;
}.ty_sidebar::before {
    width: 200%;
    position: absolute;
    left: -50%;
    animation: rotate 60s linear infinite;
    opacity: 0.3;
    background: radial-gradient(circle at center, rgb(216,197,164,0.5) 0%, transparent 70%);
    top: -50%;
    content: "";
    pointer-events: none;
    height: 200%;
}.ty_sidebar::after {
    top: 0;
    pointer-events: none;
    left: 0;
    opacity: 0.15;
    width: 100%;
    height: 100%;
    background-size: 100px 100px;
    position: absolute;
    background-image: 
    radial-gradient(circle at 20% 30%, rgb(193,164,118,0.5) 1px, transparent 1px),
    radial-gradient(circle at 60% 70%, rgb(193,164,118,0.5) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgb(193,164,118,0.5) 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgb(193,164,118,0.5) 1px, transparent 1px);
    content: "";
}.ty_sidebar .container {
    padding: 0 2rem;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}.ty_sidebar .study_hub {
    grid-gap: 2.5rem;
    animation: fadeInUp 0.8s ease-out forwards;
    transform: translateZ(0);
    display: grid;
    transform-style: preserve-3d;
    grid-template-columns: 1fr;
}.ty_sidebar .study_hub > div:first-child {
    padding: 2.5rem;
    background: linear-gradient(45deg, rgb(216,197,164,0.5) 0%, rgb(216,197,164) 100%);
    transform: translateY(0) rotateX(0deg);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}.ty_sidebar .study_hub > div:first-child:hover {
    transform: translateY(-10px) rotateX(2deg);
}.ty_sidebar .study_hub > div:first-child::before {
    width: 90%;
    content: "";
    opacity: 0.7;
    bottom: -10px;
    background: rgb(216,197,164,0.5);
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    height: 10px;
    filter: blur(10px);
}.ty_sidebar h5 {
    margin: 0;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.5px;
    font-size: 19px;
    line-height: 1.4;
    font-family: Arial, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}.ty_sidebar .study_hub > div:last-child {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: slideIn 0.8s 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
    border-left: 4px solid rgb(193,164,118);
    transform: translateY(0);
    padding: 2.5rem;
    background: #ffffff;
}.ty_sidebar .study_hub > div:last-child:hover {
    transform: translateY(-5px);
}.ty_sidebar .study_hub > div:last-child::before {
    z-index: -1;
    opacity: 0.05;
    content: "";
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgb(193,164,118,0.5) 100%);
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
}.ty_sidebar a {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}.ty_sidebar a:hover {
    transform: scale(1.01);
}.ty_sidebar a:focus {
    outline: 2px dashed rgb(193,164,118);
    outline-offset: 4px;
}.ty_sidebar p {
    margin: 0;
    text-align: left;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    font-family: Arial, sans-serif;
    color: #000000;
}

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

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {.ty_sidebar {
    padding: 7rem 0;
}.ty_sidebar .study_hub {
    align-items: center;
    grid-gap: 3rem;
    grid-template-columns: 1fr 1.5fr;
}.ty_sidebar .study_hub > div:first-child {
    padding: 3rem;
    transform: translateY(0) rotateY(-5deg);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}.ty_sidebar .study_hub > div:first-child:hover {
    transform: translateY(-10px) rotateY(-8deg);
}.ty_sidebar h5 {
    text-align: left;
    font-size: calc(19px * 1.1);
}.ty_sidebar .study_hub > div:last-child {
    padding: 3rem;
}
}

@media (min-width: 992px) {.ty_sidebar {
    padding: 9rem 0;
}.ty_sidebar .study_hub {
    grid-gap: 4rem;
}.ty_sidebar .study_hub > div:first-child {
    padding: 4rem;
}.ty_sidebar h5 {
    font-size: calc(19px * 1.2);
}.ty_sidebar .study_hub > div:last-child {
    padding: 4rem;
}.ty_sidebar p {
    font-size: calc(15px * 1.05);
}
}

@media (max-width: 767px) {.ty_sidebar {
    padding: 4rem 0;
}.ty_sidebar .study_hub > div:first-child,
  .ty_sidebar .study_hub > div:last-child {
    padding: 2rem;
}.ty_sidebar h5 {
    font-size: calc(19px * 0.9);
}.ty_sidebar p {
    font-size: calc(15px * 0.95);
}
}

@media (max-width: 480px) {.ty_sidebar {
    padding: 3rem 0;
}.ty_sidebar .container {
    padding: 0 1.5rem;
}.ty_sidebar .study_hub > div:first-child,
  .ty_sidebar .study_hub > div:last-child {
    padding: 1.5rem;
}.ty_sidebar h5 {
    font-size: calc(19px * 0.85);
}}.program_results {
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    padding: 6rem 0;
    position: relative;
}.program_results::before {
    filter: blur(80px);
    z-index: 0;
    content: "";
    right: -100px;
    height: 300px;
    animation: float 12s infinite alternate ease-in-out;
    background: rgb(193,164,118,0.5);
    border-radius: 50%;
    top: -100px;
    transform: translate3d(0, 0, 0);
    opacity: 0.3;
    width: 300px;
    position: absolute;
}.program_results::after {
    filter: blur(60px);
    border-radius: 50%;
    opacity: 0.2;
    z-index: 0;
    left: -50px;
    bottom: -50px;
    height: 250px;
    position: absolute;
    content: "";
    background: rgb(216,197,164,0.5);
    animation: float 15s infinite alternate-reverse ease-in-out;
    transform: translate3d(0, 0, 0);
    width: 250px;
}.program_results h5 {
    transform: translateY(0);
    margin-bottom: 3.5rem;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-weight: 700;
    text-align: center;
    z-index: 1;
    font-size: 20px;
    position: relative;
    color: #000000;
}.program_results h5::after {
    bottom: -12px;
    height: 3px;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(-50%) scaleX(0.8);
    content: "";
    left: 50%;
    background: rgb(216,197,164);
    width: 80px;
    position: absolute;
}.program_results:hover h5::after {
    transform: translateX(-50%) scaleX(1);
}.program_results .container {
    padding: 0 20px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}.program_results .study_hub {
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.5s ease;
    flex-direction: column;
    border-left: 3px solid rgb(216,197,164);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    gap: 2.5rem;
    padding: 2.5rem;
    display: flex;
}.program_results .study_hub:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}.program_results .img_rounded {
    object-fit: cover;
    height: auto;
    transition: transform 0.8s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    width: 100%;
    border-radius: 4px;
}.program_results .study_hub:hover .img_rounded {
    transform: scale(1.02);
}.program_results .abstract_box {
    flex: 1;
}.program_results ul {
    margin: 0;
    padding: 0;
    list-style: none;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    display: grid;
}.program_results li {
    transition: transform 0.3s ease;
    padding-left: 2.2rem;
    position: relative;
}.program_results li:hover {
    transform: translateX(5px);
}.program_results li p {
    margin: 0;
    line-height: 1.6;
    align-items: flex-start;
    position: relative;
    color: #000000;
    display: flex;
    font-size: calc(16px - 1px);
}.program_results li svg {
    transition: transform 0.3s ease;
    top: 0.1rem;
    width: 24px;
    position: absolute;
    transform: scale(0.9);
    height: 24px;
    left: -2.2rem;
}.program_results li:hover svg {
    transform: scale(1);
}.program_results li svg path {
    fill: rgb(216,197,164);
    transition: fill 0.3s ease;
}.program_results li:hover svg path {
    fill: rgb(193,164,118);
}.program_results li:nth-child(odd) {
    transform: translateX(0);
}.program_results li:nth-child(even) {
    transform: translateX(0);
}.program_results li:nth-child(odd):hover {
    transform: translateX(5px);
}.program_results li:nth-child(even):hover {
    transform: translateX(5px);
}.program_results li div {
    position: relative;
}.program_results li div::before {
    top: 0;
    background: linear-gradient(to bottom, transparent, rgb(216,197,164,0.5), transparent);
    content: "";
    height: 100%;
    transition: opacity 0.3s ease;
    opacity: 0;
    width: 2px;
    position: absolute;
    left: -10px;
}.program_results li:hover div::before {
    opacity: 1;
}

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

@media (min-width: 768px) {.program_results {
    padding: 8rem 0;
}.program_results .study_hub {
    flex-direction: row;
    padding: 3rem;
    align-items: center;
}.program_results .study_hub > div:first-child {
    flex: 0 0 45%;
    margin-right: 3rem;
}.program_results ul {
    gap: 1.5rem 2rem;
    grid-template-columns: repeat(2, 1fr);
}.program_results h5 {
    font-size: calc(20px + 0.25rem);
    margin-bottom: 4rem;
}.program_results li p {
    font-size: 16px;
}
}

@media (min-width: 992px) {.program_results {
    padding: 10rem 0;
}.program_results .study_hub {
    gap: 3rem;
    padding: 4rem;
}.program_results h5 {
    font-size: calc(20px + 0.5rem);
}.program_results .study_hub > div:first-child {
    flex: 0 0 40%;
}.program_results .img_rounded {
    height: 350px;
}
}

@media (max-width: 767px) {.program_results {
    padding: 4rem 0;
}.program_results h5 {
    font-size: calc(20px - 0.2rem);
    padding: 0 1rem;
    margin-bottom: 2.5rem;
}.program_results .study_hub {
    padding: 1.5rem;
}.program_results .img_rounded {
    height: 220px;
    margin-bottom: 1rem;
}.program_results li {
    margin-bottom: 1rem;
}.program_results li p {
    font-size: calc(16px - 2px);
}}footer {
    width: 100%;
    position: relative;
}footer .intern_opp {
    position: relative;
    color: #000000;
    padding: 100px 0 30px;
    font-family: Arial, sans-serif;
    background-color: rgb(236,225,206);
}footer .intern_opp::before {
    opacity: 0.3;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    z-index: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgb(216,197,164,0.5) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgb(193,164,118,0.5) 0%, transparent 20%);
}footer .subscr_info {
    position: relative;
    z-index: 1;
}footer .send_query {
    background-color: #ffffff;
    justify-content: space-between;
    z-index: 3;
    margin: auto;
    width: 85%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    padding: 25px;
    display: flex;
    border-radius: 19px;
    gap: 15px;
}footer .info_item {
    background-color: rgb(236,225,206);
    border-radius: 10px;
    align-items: center;
    flex: 1 1 200px;
    display: flex;
    transition: all 0.3s ease;
    padding: 15px;
}footer .info_item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
    background-color: #ffffff;
}footer .info_item svg {
    fill: rgb(216,197,164);
    transition: transform 0.3s ease;
    margin-right: 12px;
    height: 22px;
    width: 22px;
}footer .info_item:hover svg {
    transform: scale(1.2);
}footer .info_item p,
footer .info_item a {
    transition: all 0.3s ease;
    font-size: 16px;
    text-decoration: none;
    color: #000000;
}footer .info_item a:hover {
    color: rgb(216,197,164);
}footer .text_main_holder {
    gap: 20px;
    flex-direction: column;
    perspective: 2000px;
    margin-top: 40px;
    display: flex;
    position: relative;
}footer .top_info, footer .top_tutor, footer .subscribe_holder {
    transition: all 0.5s ease;
    position: relative;
    border-radius: 19px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    transform-style: preserve-3d;
    transform-origin: center center;
}footer .top_info {
    z-index: 2;
    transform: translateZ(0) scale(1);
    background-color: #ffffff;
}footer .top_info:hover {
    transform: translateZ(30px) scale(1.02);
}footer .top_tutor {
    margin-right: 20px;
    color: #ffffff;
    z-index: 1;
    margin-left: 20px;
    transform: translateZ(-10px) scale(0.98);
    margin-top: -20px;
    background-color: rgb(193,164,118);
}footer .subscribe_holder {
    margin-left: 40px;
    margin-top: -20px;
    margin-right: 40px;
    color: #ffffff;
    z-index: 0;
    background-color: rgb(216,197,164);
    transform: translateZ(-20px) scale(0.96);
}footer .subscribe_holder:hover {
    transform: translateZ(10px) scale(0.98);
}footer .top_info::after, footer .top_tutor::after, footer .subscribe_holder::after {
    transition: opacity 0.3s ease;
    top: 0;
    z-index: -1;
    position: absolute;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    content: "";
    left: 0;
    width: 100%;
    border-radius: 19px;
}footer .top_info:hover::after, footer .top_tutor:hover::after, footer .subscribe_holder:hover::after {
    opacity: 1;
}footer .top_info svg {
    display: block;
    height: 45px;
    width: auto;
    margin-bottom: 20px;
}footer .discord_cta {
    line-height: 1.6;
    font-size: 16px;
    color: #000000;
}footer .top_tutor h5 {
    position: relative;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 24px;
    display: inline-block;
}footer .top_tutor h5::after {
    background: linear-gradient(90deg, rgb(216,197,164), transparent);
    left: 0;
    bottom: -8px;
    height: 2px;
    position: absolute;
    content: "";
    width: 40px;
    transition: width 0.3s ease;
}footer .top_tutor h5:hover::after {
    width: 100%;
}footer .main_pagebar {
    margin-bottom: 20px;
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}footer .main_pagebar a {
    position: relative;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}footer .main_pagebar a::before {
    background-color: rgb(216,197,164);
    bottom: 0;
    width: 0;
    position: absolute;
    height: 1px;
    content: "";
    transition: width 0.3s ease;
    left: 0;
}footer .main_pagebar a:hover {
    color: #ffffff;
    transform: translateX(5px);
}footer .main_pagebar a:hover::before {
    width: 100%;
}footer .subscribe_holder h5 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}footer .subscribe_holder p {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}footer .input_holder {
    flex-direction: column;
    display: flex;
    gap: 15px;
}footer .input_holder input[type="email"] {
    border-radius: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    padding: 14px 16px;
    transition: all 0.3s ease;
}footer .input_holder input[type="email"]:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .signup_block {
    transition: all 0.3s ease;
    background-color: #ffffff;
    border: none;
    font-size: 16px;
    text-align: center;
    color: rgb(216,197,164);
    padding: 14px 20px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 10px;
}footer .signup_block:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    background-color: rgb(193,164,118);
    color: #ffffff;
}footer .brainstorm {
    text-align: center;
    position: relative;
    margin-top: 60px;
}footer .conduct_code {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: inline-block;
    font-size: 16px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 30px;
    padding: 8px 20px;
}

@media (min-width: 992px) {footer .text_main_holder {
    flex-direction: row;
    align-items: stretch;
}footer .top_info, footer .top_tutor, footer .subscribe_holder {
    margin-top: 0;
    flex-direction: column;
    flex: 1;
    display: flex;
}footer .top_info {
    margin-right: -20px;
}footer .top_tutor {
    z-index: 1;
    margin-right: -20px;
    margin-left: 0;
}footer .subscribe_holder {
    margin-right: 0;
    margin-left: 0;
}
}

@media (max-width: 991px) {footer .send_query {
    padding: 20px;
    width: 90%;
}footer .text_main_holder {
    margin-top: 80px;
}
}

@media (max-width: 767px) {footer .intern_opp {
    padding: 80px 0 30px;
}footer .send_query {
    padding: 15px;
    width: 95%;
}footer .info_item {
    flex: 1 1 100%;
}footer .top_info, footer .top_tutor, footer .subscribe_holder {
    padding: 25px 20px;
    margin-right: 0;
    margin-left: 0;
}footer .top_tutor, footer .subscribe_holder {
    margin-top: -10px;
}footer .brainstorm {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .intern_opp {
    padding: 70px 0 20px;
}footer .send_query {
    padding: 10px;
}footer .info_item {
    padding: 10px;
}footer .text_main_holder {
    margin-top: 60px;
}footer .top_info, footer .top_tutor, footer .subscribe_holder {
    padding: 20px 15px;
}footer .top_tutor h5, footer .subscribe_holder h5 {
    font-size: calc(24px - 2px);
}footer .main_pagebar {
    grid-template-columns: 1fr;
}footer .input_holder input[type="email"],
    footer .signup_block {
    padding: 12px;
}}.title_board {
    align-items: center;
    min-height: 100vh;
    width: 100%;
    justify-content: center;
    display: flex;
    background-color: rgb(236,225,206);
    overflow: hidden;
    position: relative;
}.title_board::before {
    z-index: 1;
    height: 100%;
    left: 0;
    content: '';
    width: 100%;
    position: absolute;
    background: linear-gradient(135deg, 
    rgba(var(--primary-color-rgb), 0.05),
    rgba(var(--secondary-color-rgb), 0.1),
    rgba(var(--primary-color-rgb), 0.07));
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    top: 0;
}.title_board::after {
    transform: rotate(-15deg);
    opacity: 0.4;
    background: linear-gradient(145deg, 
    rgb(216,197,164,0.5),
    rgb(193,164,118,0.5));
    content: '';
    width: 35%;
    animation: float 15s ease-in-out infinite;
    right: -5%;
    height: 75%;
    position: absolute;
    filter: blur(50px);
    z-index: 0;
    top: -10%;
}.title_board .learn_base {
    width: 90%;
    max-width: 1200px;
    z-index: 5;
    position: relative;
    transform: translateY(-2vh);
}.title_board .main_title {
    background-blend-mode: soft-light !important;
    transform: perspective(1000px) rotateX(2deg);
    padding: 4rem 3rem;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    box-shadow: 0 20px 50px rgba(var(--dark-color-rgb), 0.1);
    overflow: hidden;
}.title_board .main_title::before {
    position: absolute;
    content: '';
    background: linear-gradient(
    to right,
    rgba(var(--dark-color-rgb), 0.7) 0%,
    rgba(var(--dark-color-rgb), 0.85) 40%,
    rgba(var(--dark-color-rgb), 0.9) 100%
  );
    left: 0;
    height: 100%;
    z-index: -1;
    width: 100%;
    top: 0;
}.title_board .main_title::after {
    top: -50%;
    animation: rotate 35s linear infinite;
    position: absolute;
    content: '';
    height: 200%;
    opacity: 0.6;
    z-index: -1;
    pointer-events: none;
    left: -50%;
    width: 200%;
    background: radial-gradient(
    circle at center,
    rgba(var(--primary-color-rgb), 0.15) 0%,
    transparent 70%
  );
}.title_board .main_title span {
    animation: fadeInRight 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
    display: inline-block;
    transform: translateX(-1rem);
    position: relative;
    margin-bottom: 1.5rem;
    opacity: 0;
}.title_board .main_title h3 {
    position: relative;
    letter-spacing: 0.02em;
    max-width: 80%;
    font-size: calc(18px * 0.9);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    opacity: 0.95;
    font-weight: 600;
    line-height: 1.5;
    padding-left: 1rem;
    color: rgb(193,164,118);
}.title_board .main_title h3::before {
    height: 85%;
    position: absolute;
    width: 3px;
    transform: scaleY(0);
    animation: scaleIn 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.4s forwards;
    background: rgb(193,164,118);
    top: 0.3em;
    content: '';
    transform-origin: top;
    left: 0;
}.title_board .main_title h1 {
    font-size: clamp(2.5rem, 6vw, 40px);
    transform: translateY(1rem);
    background-clip: text !important;
    color: #ffffff;
    background: linear-gradient(
    to right, 
    #ffffff 0%, 
    rgb(255, 255, 255, 0.5) 100%
  );
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.5s forwards;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 2rem;
}.title_board .main_title div div {
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
    max-width: 600px;
    transform: translateY(1rem);
    position: relative;
}.title_board .main_title div div::before {
    height: 1px;
    top: 50%;
    background: rgb(193,164,118);
    content: '';
    position: absolute;
    animation: scaleInX 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1.2s forwards;
    opacity: 0.7;
    transform: scaleX(0);
    width: 1.5rem;
    transform-origin: left;
    left: -2rem;
}.title_board .main_title p {
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    margin: 0;
    color: rgba(var(--white-color-rgb), 0.9);
    font-size: calc(15px * 1.1);
}.title_board .main_title:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 0 25px 60px rgba(var(--dark-color-rgb), 0.15);
}

@keyframes fadeInRight {
  from {
    transform: translateX(-1rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes scaleIn {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

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

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

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


@media (max-width: 992px) {.title_board {
    min-height: 90vh;
}.title_board .main_title {
    transform: perspective(1000px) rotateX(1deg);
    padding: 3.5rem 2.5rem;
}.title_board .main_title h3 {
    font-size: calc(22px * 1.05);
    max-width: 90%;
}.title_board .main_title h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.2rem, 5vw, calc(40px * 0.9));
}
}

@media (max-width: 768px) {.title_board {
    align-items: flex-start;
    min-height: 80vh;
    padding-top: 5rem;
}.title_board::before {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}.title_board .learn_base {
    transform: translateY(0);
    width: 95%;
}.title_board .main_title {
    padding: 3rem 2rem;
    transform: perspective(1000px) rotateX(0.5deg);
}.title_board .main_title h3 {
    font-size: 22px;
    padding-left: 0.75rem;
    max-width: 100%;
}.title_board .main_title h3::before {
    width: 2px;
}.title_board .main_title h1 {
    font-size: clamp(2rem, 8vw, calc(32px * 1.1));
    margin-bottom: 1.25rem;
}.title_board .main_title p {
    font-size: 15px;
}
}

@media (max-width: 576px) {.title_board {
    padding-top: 4rem;
    min-height: 70vh;
}.title_board::after {
    width: 60%;
    top: -5%;
    height: 50%;
    right: -20%;
}.title_board .main_title {
    transform: none;
    padding: 2.5rem 1.5rem;
}.title_board .main_title h3 {
    font-size: calc(22px * 0.95);
}.title_board .main_title h1 {
    margin-bottom: 1rem;
}.title_board .main_title div div::before {
    width: 1rem;
    left: -1.25rem;
}.title_board .main_title:hover {
    transform: translateY(-3px);
}}.price_palette {
    overflow: hidden;
    position: relative;
    background-color: rgb(236,225,206);
    padding: 120px 0;
}.price_palette::before {
    background: linear-gradient(135deg, 
        rgba(var(--secondary-color-rgb), 0.03) 0%,
        rgba(var(--secondary-color-rgb), 0.01) 40%, 
        rgba(var(--primary-color-rgb), 0.02) 60%, 
        rgba(var(--primary-color-rgb), 0.05) 100%);
    top: -10%;
    width: 110%;
    content: "";
    position: absolute;
    transform: rotate(-3deg);
    height: 120%;
    z-index: 0;
    left: -5%;
}.price_palette .container {
    padding: 0 20px;
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 1;
}.price_palette .price_view {
    flex-direction: column;
    display: flex;
}.price_palette .enroll_cost {
    text-align: center;
    order: 1;
    position: relative;
    margin-bottom: 50px;
}.price_palette .enroll_cost h2 {
    background: linear-gradient(120deg, rgb(193,164,118), rgb(216,197,164));
    -webkit-text-fill-color: transparent;
    transform: translateY(0);
    color: #000000;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-weight: 700;
    margin-bottom: 15px;
    -webkit-background-clip: text !important;
    font-size: 35px;
}.price_palette .enroll_cost:hover h2 {
    transform: translateY(-5px);
}.price_palette .rate_plans {
    line-height: 1.6;
    color: #000000;
    position: relative;
    max-width: 700px;
    font-size: 13px;
    margin: 0 auto;
}.price_palette .rate_plans::after {
    width: 100px;
    background: linear-gradient(90deg, rgb(193,164,118), rgb(216,197,164));
    bottom: -15px;
    transform: translateX(-50%) scaleX(0.7);
    left: 50%;
    position: absolute;
    content: "";
    transition: transform 0.5s ease;
    height: 3px;
}.price_palette .enroll_cost:hover .rate_plans::after {
    transform: translateX(-50%) scaleX(1);
}.price_palette .study_fees {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    order: 2;
    width: 100%;
    display: grid;
}.price_palette .plan_options {
    perspective: 1000px;
    position: relative;
    display: block;
    background-color: #ffffff;
    transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), 
                box-shadow 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform-style: preserve-3d;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
}.price_palette .plan_options::before {
    top: 0;
    height: 5px;
    content: "";
    width: 100%;
    transform: scaleX(0.85);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(90deg, rgb(193,164,118), rgb(216,197,164));
    left: 0;
    z-index: 2;
    transform-origin: left;
    position: absolute;
}.price_palette .plan_options:hover {
    box-shadow: 0 15px 30px rgba(var(--secondary-color-rgb), 0.12);
    transform: translateY(-10px);
}.price_palette .plan_options:hover::before {
    transform: scaleX(1);
}.price_palette .plan_fee {
    flex-direction: column;
    height: 100%;
    display: flex;
}.price_palette .discount_plan {
    flex-direction: column;
    z-index: 1;
    position: relative;
    flex-grow: 1;
    display: flex;
    overflow: hidden;
    padding: 30px;
}.price_palette .discount_plan::before {
    background: linear-gradient(135deg, 
        rgba(var(--white-color-rgb), 0.7) 0%, 
        rgba(var(--white-color-rgb), 1) 60%);
    left: 0;
    position: absolute;
    content: "";
    z-index: -1;
    height: 100%;
    width: 100%;
    top: 0;
}.price_palette .discount_plan h3 {
    font-weight: 700;
    transition: transform 0.4s ease;
    margin-bottom: 15px;
    color: #000000;
    font-size: calc(23px + 2px);
    position: relative;
}.price_palette .plan_options:hover .discount_plan h3 {
    transform: translateX(5px);
}.price_palette .premium_grid {
    transition: transform 0.4s ease, color 0.4s ease;
    color: rgb(216,197,164);
    font-size: calc(23px + 8px);
    padding: 5px 10px;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    display: inline-block;
}.price_palette .premium_grid::before {
    height: 2px;
    width: 100%;
    left: 0;
    transform-origin: left;
    transform: scaleX(0.3);
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: 0;
    content: "";
    background: linear-gradient(90deg, rgb(193,164,118), rgb(216,197,164));
}.price_palette .plan_options:hover .premium_grid {
    color: rgb(193,164,118);
    transform: translateY(-5px);
}.price_palette .plan_options:hover .premium_grid::before {
    transform: scaleX(1);
}.price_palette .discount_plan p {
    line-height: 1.6;
    font-size: 13px;
    flex-grow: 1;
    color: #000000;
    word-wrap: break-word;
    max-width: 100%;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-bottom: 0;
}.price_palette .img_rounded {
    height: 200px;
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}.price_palette .img_rounded::after {
    background: linear-gradient(0deg, 
        rgba(var(--dark-color-rgb), 0.4) 0%, 
        rgba(var(--dark-color-rgb), 0) 40%);
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    left: 0;
    z-index: 1;
    content: "";
}.price_palette .plan_options:hover .img_rounded {
    transform: scale(1.05);
}

@media (min-width: 768px) {.price_palette .study_fees {
    grid-template-columns: repeat(2, 1fr);
}.price_palette .discount_plan {
    padding: 35px;
}.price_palette .img_rounded {
    height: 220px;
}
}

@media (min-width: 992px) {.price_palette .price_view {
    align-items: center;
    gap: 60px;
    flex-direction: row;
}.price_palette .enroll_cost {
    text-align: left;
    flex: 0 0 30%;
    margin-bottom: 0;
    order: 2;
}.price_palette .study_fees {
    grid-template-columns: repeat(2, 1fr);
    order: 1;
    flex: 0 0 65%;
}.price_palette .rate_plans::after {
    left: 0;
    transform: translateX(0) scaleX(0.7);
}.price_palette .enroll_cost:hover .rate_plans::after {
    transform: translateX(0) scaleX(1);
}
}

@media (min-width: 1200px) {.price_palette {
    padding: 150px 0;
}.price_palette .study_fees {
    gap: 40px;
}.price_palette .plan_options {
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), 
                    box-shadow 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}.price_palette .plan_options:hover {
    transform: translateY(-15px) scale(1.02);
}.price_palette .plan_options:nth-child(even) {
    transform: translateY(15px);
}.price_palette .plan_options:nth-child(even):hover {
    transform: translateY(0) scale(1.02);
}.price_palette .img_rounded {
    height: 250px;
}
}