﻿* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}html,body {
    color: #000000;
    min-height: 100%;
    height: 100%;
    auto
    scroll-behavior: auto;
    auto
contain
touch-action: none;
    font-family: Arial, sans-serif;
    scroll-snap-type: none;
}::-webkit-scrollbar {
    scroll-behavior: smooth;
    height: 3px;
    padding: 1px;
    width: 18px;
}::-webkit-scrollbar-button {
    height: 0px;
    border-radius: 5px;
    background: rgb(227,225,221);
    width: 0px;
}::-webkit-scrollbar-track {
    border-radius: 3.8vw;
    box-shadow: inset -2px -5px 6px 5px rgba(0, 0, 0, 0.7);
    background: rgb(196,187,171);
}::-webkit-scrollbar-thumb {
    transition: background 1.5s ease-in;
    background: #ffffff;
}::-webkit-scrollbar-thumb:hover {
    box-shadow: -2px 1px 7px 4px rgba(0, 0, 0, 0.5);
}::-webkit-scrollbar-corner {
    background: rgb(255, 255, 255, 0.5);
    border-radius: 5px;
}html {
    scrollbar-width: auto;
    scrollbar-color: rgb(196,187,171) rgb(196,187,171,0.5);
}
@media (max-width: 768px) {::-webkit-scrollbar {
    width: 4px;
}::-webkit-scrollbar-thumb {
    background: rgb(170,150,110,0.5);
}}

a {
    color: inherit;
    text-decoration: none;
}svg {
    height: 30px;
    width: 30px;
}.page_header {
    flex: 1 0 auto;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1165px;
}header,footer {
    width: 100%;
}.outer-container {
    display: flex;
    height: 100%;
    flex-direction: column;
    min-height: 100%;
}.eco_foot {
    flex: 0 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.leadership_experience {
    background: rgb(227,225,221);
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
}.leadership_experience::before {
    left: 0;
    width: 100%;
    position: absolute;
    content: "";
    background: linear-gradient(120deg, transparent 30%, rgb(196,187,171,0.5) 100%);
    z-index: 1;
    top: 0;
    height: 100%;
}.leadership_experience::after {
    position: absolute;
    opacity: 0.5;
    right: 0;
    z-index: 1;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    width: 40%;
    content: "";
    background: rgb(170,150,110,0.5);
    height: 70%;
    bottom: 0;
}.leadership_experience .learner_reflections {
    display: grid;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: 1fr 1.5fr;
    z-index: 2;
    gap: 3rem;
}.leadership_experience .img_pic_wrap {
    width: 100%;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    border-radius: 0;
    filter: grayscale(100%);
    aspect-ratio: 3/4;
    position: relative;
}.leadership_experience .img_pic_wrap::before {
    position: absolute;
    content: "";
    width: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        transparent 70%, 
        rgb(196,187,171,0.5) 100%);
    height: 100%;
    top: 0;
    z-index: 1;
    left: 0;
}.leadership_experience .img_pic_wrap:hover {
    filter: grayscale(0%);
    transform: scale(1.03);
}.leadership_experience .emp_section {
    flex-direction: column;
    padding: 2rem;
    justify-content: center;
    position: relative;
    display: flex;
}.leadership_experience .emp_section::before {
    left: 0;
    width: 2px;
    height: 0;
    transition: height 0.8s ease-out;
    top: 0;
    position: absolute;
    background: rgb(196,187,171);
    content: "";
}.leadership_experience .learner_reflections:hover .emp_section::before {
    height: 100%;
}.leadership_experience .name {
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 48px;
    overflow: hidden;
    color: #000000;
    position: relative;
}.leadership_experience .name::after {
    background: rgb(170,150,110);
    transform: translateX(-101%);
    content: "";
    left: 0;
    transition: transform 0.6s ease-out 0.2s;
    bottom: 0;
    height: 1px;
    position: absolute;
    width: 100%;
}.leadership_experience .learner_reflections:hover .name::after {
    transform: translateX(0);
}.leadership_experience .emp_section > div:nth-child(2) {
    font-size: 20px;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    font-weight: 400;
    color: rgb(170,150,110);
    transform: translateY(20px);
    opacity: 0;
    text-transform: uppercase;
    transition: all 0.5s ease-out 0.4s;
}.leadership_experience .learner_reflections:hover .emp_section > div:nth-child(2) {
    transform: translateY(0);
    opacity: 1;
}.leadership_experience .experience_data {
    font-size: 17px;
    position: relative;
    opacity: 0;
    color: #000000;
    transition: all 0.5s ease-out 0.6s;
    line-height: 1.8;
    transform: translateY(20px);
    font-weight: 300;
    padding: 0 0 0 20px;
}.leadership_experience .learner_reflections:hover .experience_data {
    transform: translateY(0);
    opacity: 1;
}.leadership_experience .experience_data::first-letter {
    color: rgb(196,187,171);
    font-weight: 700;
    font-size: 1.5em;
}@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent }
}

.leadership_experience:hover .name {
    animation: 
        typing 2.5s steps(40, end),
        blink .75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
}

@media (max-width: 992px) {.leadership_experience .learner_reflections {
    gap: 2rem;
    grid-template-columns: 1fr;
}.leadership_experience .img_pic_wrap {
    max-height: 300px;
    aspect-ratio: 16/9;
}.leadership_experience .emp_section {
    padding: 1rem 0;
}.leadership_experience .emp_section::before {
    transition: width 0.8s ease-out;
    height: 2px;
    width: 0;
}.leadership_experience .learner_reflections:hover .emp_section::before {
    width: 100%;
    height: 2px;
}}.price_row {
    overflow: hidden;
    color: #ffffff;
    padding: 100px 0;
    position: relative;
}.price_row::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    bottom: 0;
}.price_row .container {
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}.annual_fee {
    transform-origin: center top;
    transform: perspective(1000px) rotateX(2deg);
}.price_row h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 700;
    display: inline-block;
    transform: translateX(-10px);
}.price_row h2::after {
    background: rgb(196,187,171);
    transform: skewX(-20deg);
    content: "";
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    position: absolute;
}.price_row .cost_options {
    transform: translateX(10px);
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 80%;
    margin-bottom: 40px;
    font-size: 13px;
}.price_row .deal_board {
    list-style: none;
    margin: 0;
    padding: 0;
    perspective: 1000px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}.price_row .deal_board li {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}.price_row .deal_board li:hover {
    transform: translateY(-10px) scale(1.02);
    z-index: 5;
}.price_row .indv_sub {
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    height: 100%;
    transition: all 0.4s ease;
    color: #000000;
    display: block;
    text-decoration: none;
    position: relative;
}.price_row .access_rates {
    transform-style: preserve-3d;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(240,240,240,0.95) 100%);
    overflow: hidden;
    display: flex;
    padding: 30px;
    transition: transform 0.4s ease-out;
    position: relative;
    min-height: 450px;
    height: 100%;
}.price_row .indv_sub:hover .access_rates {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(245,245,245,0.98) 100%);
    transform: translateZ(20px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}.price_row .access_rates::after {
    background: rgb(170,150,110);
    transition: transform 0.5s ease;
    content: "";
    transform: rotate(45deg) translate(30px, -80px);
    opacity: 0.1;
    top: 0;
    position: absolute;
    width: 100px;
    height: 100px;
    right: 0;
}.price_row .indv_sub:hover .access_rates::after {
    transform: rotate(45deg) translate(20px, -60px) scale(1.2);
    opacity: 0.15;
}.price_row .sub_options {
    z-index: 2;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}.price_row .sub_options h4 {
    font-weight: 700;
    transform: translateX(-5px);
    margin-bottom: 20px;
    color: rgb(196,187,171);
    padding-bottom: 15px;
    letter-spacing: 0.5px;
    font-size: calc(22px + 2px);
    margin-top: 0;
    position: relative;
}.price_row .sub_options h4::after {
    background: rgb(170,150,110);
    position: absolute;
    width: 40px;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    transform: skewX(-15deg);
}.price_row .sub_options p {
    overflow-wrap: break-word;
    margin-bottom: 25px;
    font-size: 13px;
    hyphens: auto;
    word-wrap: break-word;
    line-height: 1.5;
    color: #000000;
    flex-grow: 1;
}.price_row .fee_plan {
    position: relative;
    padding: 15px 0 0;
    font-size: calc(22px + 6px);
    color: rgb(170,150,110);
    margin-bottom: 0;
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-weight: 700;
    transition: color 0.3s ease;
    display: block;
}.price_row .indv_sub:hover .fee_plan {
    color: rgb(196,187,171);
    transform: translateY(-5px);
}.price_row .fee_plan::before {
    position: absolute;
    content: "";
    background: rgb(196,187,171);
    top: 0;
    transform: translateY(-1px);
    left: 0;
    height: 1px;
    width: 30px;
}

@media (max-width: 991px) {.price_row {
    padding: 80px 0;
}.annual_fee {
    transform: perspective(1000px) rotateX(1deg);
}.price_row .cost_options {
    transform: translateX(5px);
    max-width: 90%;
}.price_row .deal_board {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}.price_row .access_rates {
    min-height: 400px;
    padding: 25px;
}
}

@media (max-width: 767px) {.price_row {
    padding: 60px 0;
}.annual_fee {
    transform: none;
}.price_row h2 {
    transform: none;
    font-size: calc(32px - 4px);
}.price_row .cost_options {
    max-width: 100%;
    transform: none;
    margin-bottom: 30px;
}.price_row .deal_board {
    gap: 20px;
    grid-template-columns: 1fr;
}.price_row .access_rates {
    min-height: 350px;
    padding: 20px;
}.price_row .sub_options h4 {
    transform: none;
}.price_row .sub_options p {
    font-size: calc(13px - 1px);
}.price_row .fee_plan {
    font-size: calc(22px + 4px);
}
}

@media (max-width: 480px) {.price_row {
    padding: 40px 0;
}.price_row h2 {
    font-size: calc(32px - 6px);
}.price_row .deal_board {
    margin-top: 20px;
}.price_row .access_rates {
    padding: 15px;
}.price_row .sub_options h4 {
    font-size: 22px;
    margin-bottom: 15px;
}.price_row .sub_options p {
    margin-bottom: 20px;
    font-size: calc(13px - 2px);
}}.title_screen {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(227,225,221), rgb(170,150,110,0.5), rgb(196,187,171,0.5) 80%);
    width: 100%;
}.title_screen::before {
    z-index: 1;
    content: "";
    animation: starfield 100s linear infinite;
    position: absolute;
    background-size: 60px 60px, 40px 40px;
    pointer-events: none;
    top: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 1px, transparent 6px),
              radial-gradient(circle at 30% 70%, rgba(255,255,255,0.08) 1px, transparent 4px);
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0.7;
}.title_screen::after {
    left: -50%;
    top: -50%;
    transform: rotate(-15deg);
    pointer-events: none;
    height: 200%;
    position: absolute;
    width: 200%;
    content: "";
    z-index: 0;
    background: radial-gradient(ellipse at center, rgba(rgb(170,150,110), 0.15) 0%, transparent 70%);
}.title_screen .study_express {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 4rem 2rem;
    z-index: 2;
    justify-content: center;
    height: 100%;
}.title_screen .study_express > div {
    position: relative;
    width: 100%;
    max-width: 1200px;
    transform: perspective(1000px) rotateX(2deg);
}.title_screen .study_express > div > div:first-child {
    position: relative;
    margin-bottom: 3rem;
    transform: translateZ(20px);
}.title_screen .study_express h3 {
    transform: translateX(-1rem);
    color: #000000;
    background: rgba(255, 255, 255, 0.85);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 1.5rem 2rem;
    letter-spacing: 0.02em;
    max-width: 80%;
    line-height: 1.5;
    font-weight: 600;
    font-family: Arial, sans-serif;
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.1);
    position: relative;
    font-size: calc(23px * 0.95);
    margin: 0 0 1rem 2rem;
}.title_screen .study_express h3::before {
    transform: scaleY(0.7);
    transform-origin: center;
    transition: transform 0.3s ease-out;
    background: rgb(196,187,171);
    top: 0;
    height: 100%;
    width: 4px;
    position: absolute;
    content: "";
    left: 0;
}.title_screen .quick_studies {
    transform: translateY(0);
    height: 65vh;
    overflow: hidden;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px -25px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}.title_screen .quick_studies::before {
    left: 0;
    height: 100%;
    top: 0;
    content: "";
    z-index: 1;
    width: 100%;
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), transparent 40%, rgba(0, 0, 0, 0.2));
}.title_screen .quick_studies::after {
    left: 0;
    bottom: 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}.title_screen .quick_studies > div {
    z-index: 2;
    transform: translateY(0);
    bottom: 0;
    width: 100%;
    padding: 3rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: 0;
    position: absolute;
}.title_screen .quick_studies p {
    position: relative;
    font-weight: 400;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transform: translateX(0);
    font-size: calc(17px * 1.1);
    max-width: 80%;
    font-family: Arial, sans-serif;
    padding: 0.75rem 1.5rem;
    background: rgba(rgb(170,150,110), 0.15);
    margin: 0 0 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease;
}.title_screen .quick_studies p::before {
    height: 100%;
    left: 0;
    background: rgb(196,187,171);
    transform: scaleY(0.8);
    transform-origin: bottom;
    top: 0;
    content: "";
    position: absolute;
    transition: transform 0.3s ease;
    width: 3px;
}.title_screen .title_style_header {
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    position: relative;
    letter-spacing: -0.02em;
    font-family: Arial, sans-serif;
    transform: translateY(0);
    font-size: 46px;
}.title_screen .title_style_header::after {
    transform: scaleX(0.8);
    bottom: -1rem;
    background: rgb(196,187,171);
    content: "";
    width: 8rem;
    left: 0;
    position: absolute;
    transform-origin: left;
    height: 4px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}.title_screen:hover .study_express h3 {
    transform: translateX(0);
}.title_screen:hover .study_express h3::before {
    transform: scaleY(1);
}.title_screen:hover .quick_studies {
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
}.title_screen:hover .quick_studies > div {
    transform: translateY(-10px);
}.title_screen:hover .quick_studies p {
    transform: translateX(10px);
    background: rgba(rgb(170,150,110), 0.25);
}.title_screen:hover .quick_studies p::before {
    transform: scaleY(1);
}.title_screen:hover .title_style_header {
    transform: translateY(-5px);
}.title_screen:hover .title_style_header::after {
    transform: scaleX(1);
}

@keyframes starfield {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 1000px 1000px, -1000px -1000px;
  }
}

@media (max-width: 991px) {.title_screen .study_express {
    padding: 3rem 1.5rem;
}.title_screen .study_express h3 {
    margin: 0 0 1rem 1rem;
    font-size: calc(23px * 0.85);
    padding: 1.25rem 1.5rem;
    max-width: 90%;
}.title_screen .quick_studies {
    height: 55vh;
}.title_screen .quick_studies > div {
    padding: 2rem;
}.title_screen .quick_studies p {
    margin: 0 0 1.25rem;
    max-width: 90%;
    font-size: 17px;
}.title_screen .title_style_header {
    font-size: calc(46px * 0.9);
}
}

@media (max-width: 767px) {.title_screen .study_express {
    padding: 2.5rem 1rem;
}.title_screen .study_express > div {
    transform: perspective(800px) rotateX(1deg);
}.title_screen .study_express h3 {
    margin: 0 0 1rem 0;
    font-size: calc(19px * 1.1);
    max-width: 100%;
    padding: 1rem;
}.title_screen .quick_studies {
    height: 50vh;
}.title_screen .quick_studies > div {
    padding: 1.5rem;
}.title_screen .quick_studies p {
    font-size: calc(17px * 0.9);
    margin: 0 0 1rem;
    max-width: 100%;
    padding: 0.5rem 1rem;
}.title_screen .title_style_header {
    font-size: calc(30px * 1.1);
}.title_screen .title_style_header::after {
    height: 3px;
    width: 6rem;
    bottom: -0.75rem;
}
}

@media (max-width: 480px) {.title_screen .study_express {
    padding: 2rem 0.75rem;
}.title_screen .study_express > div {
    transform: none;
}.title_screen .study_express > div > div:first-child {
    margin-bottom: 2rem;
}.title_screen .study_express h3 {
    padding: 0.75rem;
    line-height: 1.4;
    font-size: 19px;
}.title_screen .quick_studies {
    height: 45vh;
}.title_screen .quick_studies > div {
    padding: 1.25rem;
}.title_screen .quick_studies p {
    padding: 0.5rem 0.75rem;
    font-size: calc(17px * 0.85);
    line-height: 1.5;
}.title_screen .title_style_header {
    font-size: 30px;
}}.thanksWeb {
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(227,225,221), #ffffff);
    overflow: hidden;
    position: relative;
}.thanksWeb::before {
    width: 100%;
    animation: movePattern 40s linear infinite;
    left: 0;
    background-size: 60px 60px;
    background: 
        linear-gradient(45deg, transparent 49.5%, rgb(170,150,110,0.5) 49.5%, rgb(170,150,110,0.5) 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgb(170,150,110,0.5) 49.5%, rgb(170,150,110,0.5) 50.5%, transparent 50.5%);
    position: absolute;
    height: 100%;
    opacity: 0.2;
    top: 0;
    z-index: 1;
    content: "";
}.thanksWeb::after {
    z-index: 0;
    background: linear-gradient(120deg, rgb(196,187,171,0.5) 10%, transparent 80%);
    transform: rotate(25deg);
    right: -20%;
    content: "";
    top: -50%;
    height: 200%;
    width: 70%;
    position: absolute;
    opacity: 0.1;
}.thanksWeb .container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    perspective: 1000px;
    margin: 0 auto;
    max-width: 1140px;
    transform-style: preserve-3d;
}.thanksWeb h2 {
    animation: fadeSlideIn 0.8s ease-out forwards;
    color: #000000;
    margin-bottom: 40px;
    transform: translateZ(20px);
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    font-size: 36px;
    line-height: 1.4;
    position: relative;
}.thanksWeb h2::after {
    height: 3px;
    content: "";
    transform: scaleX(0);
    bottom: -16px;
    background: linear-gradient(90deg, rgb(196,187,171), rgb(170,150,110));
    left: 0;
    transform-origin: left;
    width: 80px;
    animation: expandLine 0.6s 0.4s forwards ease-out;
    position: absolute;
}.thanksWeb .mastery_center {
    transform: translateZ(10px) translateY(10px);
    border-left: 4px solid rgb(170,150,110);
    position: relative;
    opacity: 0;
    padding: 35px 40px 30px;
    animation: fadeSlideUp 0.8s 0.3s ease-out forwards;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05), 
                0 5px 15px rgba(0,0,0,0.03);
    background: #ffffff;
}.thanksWeb .mastery_center::before {
    border-radius: 50%;
    width: 100px;
    opacity: 0.15;
    content: "";
    height: 100px;
    position: absolute;
    transform: translateZ(-5px);
    right: 20px;
    background: linear-gradient(135deg, rgb(170,150,110,0.5) 30%, transparent 70%);
    top: 20px;
}.thanksWeb ul {
    list-style: none;
    margin: 0;
    padding: 0;
}.thanksWeb li {
    padding-left: 25px;
    position: relative;
}.thanksWeb li::before {
    opacity: 0.9;
    position: absolute;
    background: rgb(196,187,171);
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    animation: pulse 3s infinite;
    content: "";
}.thanksWeb li span {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.8;
    display: block;
    color: #000000;
}

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

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

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

@keyframes pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
    }
    50% {
        transform: rotate(45deg) scale(1.2);
    }
}

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

@media (max-width: 1200px) {.thanksWeb {
    padding: 100px 0;
}.thanksWeb h2 {
    font-size: calc(36px * 0.9);
}
}

@media (max-width: 992px) {.thanksWeb {
    padding: 80px 0;
}.thanksWeb h2 {
    font-size: calc(36px * 0.85);
}.thanksWeb::after {
    width: 100%;
    right: -50%;
}.thanksWeb .mastery_center {
    padding: 30px 35px 25px;
}
}

@media (max-width: 768px) {.thanksWeb {
    padding: 60px 0;
}.thanksWeb h2 {
    font-size: calc(36px * 0.8);
    margin-bottom: 30px;
}.thanksWeb h2::after {
    bottom: -12px;
    width: 60px;
}.thanksWeb .mastery_center {
    padding: 25px 30px 20px;
}.thanksWeb li span {
    font-size: calc(12px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 576px) {.thanksWeb {
    padding: 50px 0;
}.thanksWeb h2 {
    font-size: calc(36px * 0.7);
    margin-bottom: 25px;
}.thanksWeb .mastery_center {
    border-left-width: 3px;
    padding: 20px 25px 15px;
}.thanksWeb li {
    padding-left: 20px;
}.thanksWeb li::before {
    height: 6px;
    top: 8px;
    width: 6px;
}.thanksWeb li span {
    font-size: calc(12px * 0.9);
    line-height: 1.6;
}.thanksWeb::before {
    background-size: 40px 40px;
}
}

@media (hover: hover) {.thanksWeb .mastery_center:hover {
    transition: transform 0.3s ease;
    transform: translateZ(15px) translateY(5px);
}}header .head_learn {
    overflow: hidden;
    z-index: 100;
    position: relative;
    background: linear-gradient(120deg, rgb(227,225,221) 0%, rgb(196,187,171,0.5) 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}header .head_learn::before {
    left: 0;
    animation: slidePattern 25s linear infinite;
    position: absolute;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 10px,
        rgb(170,150,110,0.5) 10px,
        rgb(170,150,110,0.5) 11px
    );
    height: 100%;
    opacity: 0.1;
    width: 100%;
    top: 0;
    content: "";
}header .head_learn::after {
    z-index: -2;
    content: "";
    left: -25%;
    top: -50px;
    width: 150%;
    height: 100px;
    transform: rotate(-2deg);
    background: rgb(196,187,171);
    opacity: 0.1;
    position: absolute;
}header .container {
    position: relative;
    padding: 1.5rem 2rem;
}header .header_lead {
    align-items: center;
    display: grid;
    gap: 2rem;
    grid-template-columns: auto 1fr;
}header .site_prime {
    z-index: 2;
    position: relative;
}header .page_head {
    transition: all 0.3s ease;
    display: block;
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 5px 5px 0 rgb(196,187,171,0.5);
    transform: rotate(-3deg);
}header .page_head::before {
    right: -5px;
    top: -5px;
    left: -5px;
    position: absolute;
    content: "";
    border-radius: 10px;
    border: 2px dashed rgb(196,187,171,0.5);
    opacity: 0;
    transition: all 0.3s ease;
    bottom: -5px;
}header .page_head:hover {
    box-shadow: 8px 8px 0 rgb(196,187,171);
    transform: rotate(0deg) translateY(-5px);
}header .page_head:hover::before {
    right: -8px;
    bottom: -8px;
    top: -8px;
    opacity: 1;
    left: -8px;
}header .page_head svg {
    width: auto;
    height: 45px;
    filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.5));
}header .first_lesson {
    position: relative;
    align-items: center;
    list-style: none;
    justify-content: flex-end;
    padding: 0;
    flex-wrap: wrap;
    display: flex;
    margin: 0;
}header .first_lesson::before {
    z-index: -1;
    transition: width 0.3s ease;
    opacity: 0.15;
    background: linear-gradient(90deg, transparent, rgb(170,150,110,0.5) 100%);
    bottom: 0;
    position: absolute;
    width: 85%;
    content: "";
    right: 0;
    top: 0;
    border-radius: 0 22px 22px 0;
}header .first_lesson:hover::before {
    width: 100%;
}header .nav_prime {
    position: relative;
    margin: 5px 3px;
}header .nav_prime:nth-child(odd) {
    transform: translateY(-3px);
}header .nav_prime:nth-child(even) {
    transform: translateY(3px);
}header .nav_prime a {
    font-family: Arial, sans-serif;
    text-decoration: none;
    background: #ffffff;
    font-weight: 600;
    border-left: 3px solid transparent;
    font-size: 18px;
    color: #000000;
    padding: 8px 16px;
    position: relative;
    transition: all 0.3s ease;
    display: block;
    border-radius: 0 10px 0 10px;
    overflow: hidden;
}header .nav_prime a::before {
    width: 5px;
    top: 0;
    height: 100%;
    transition: transform 0.3s ease;
    transform: scaleY(0);
    right: 0;
    content: "";
    background: rgb(196,187,171);
    position: absolute;
    transform-origin: top;
}header .nav_prime a::after {
    transform: scaleX(0);
    left: 0;
    background: linear-gradient(90deg, rgb(196,187,171) 0%, rgb(170,150,110) 100%);
    position: absolute;
    width: 100%;
    transform-origin: left;
    content: "";
    height: 2px;
    bottom: 0;
    transition: transform 0.3s ease 0.1s;
}header .nav_prime a:hover {
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5);
    color: rgb(196,187,171);
    transform: translateX(5px);
    border-left-color: rgb(196,187,171);
}header .nav_prime a:hover::before {
    transform: scaleY(1);
}header .nav_prime a:hover::after {
    transform: scaleX(1);
}

@keyframes slidePattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 500px 500px;
    }
}

@media (max-width: 991px) {header .header_lead {
    grid-template-rows: auto auto;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}header .site_prime {
    justify-self: center;
}header .first_lesson {
    justify-content: center;
}header .first_lesson::before {
    width: 100%;
    background: rgb(170,150,110,0.5);
    opacity: 0.1;
}
}

@media (max-width: 767px) {header .container {
    padding: 1.2rem 1rem;
}header .first_lesson {
    flex-direction: column;
    width: 100%;
}header .nav_prime {
    width: 100%;
    margin: 3px 0;
    transform: none !important;
}header .nav_prime a {
    text-align: center;
    border-radius: 10px;
    border-left: none;
    border-bottom: 3px solid transparent;
}header .nav_prime a:hover {
    border-bottom-color: rgb(196,187,171);
    border-left-color: transparent;
    transform: translateY(-3px);
}header .nav_prime a::before {
    width: 100%;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    top: auto;
    height: 5px;
    right: auto;
}header .nav_prime a:hover::before {
    transform: scaleX(1);
}
}

@media (max-width: 480px) {header .page_head {
    padding: 10px;
    transform: none;
}header .page_head svg {
    height: 40px;
}header .page_head:hover {
    transform: translateY(-3px);
}}.privacy_space {
    padding: 5rem 2rem;
    position: relative;
    perspective: 1000px;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(227,225,221) 0%, rgba(255,255,255,0.98) 100%);
}.privacy_space::before {
    height: 100%;
    position: absolute;
    top: 0;
    transform: translateZ(-50px);
    width: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgb(196,187,171,0.5) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgb(170,150,110,0.5) 0%, transparent 25%);
    opacity: 0.15;
    content: "";
    z-index: 0;
    left: 0;
}.privacy_space .container {
    transform-style: preserve-3d;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.05),
        0 5px 15px rgba(0,0,0,0.03);
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid rgb(196,187,171);
    z-index: 1;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateZ(0) rotateX(0.5deg);
    max-width: 1140px;
    margin: 0 auto;
}.privacy_space .container:hover {
    transform: translateZ(10px) rotateX(0deg);
}.privacy_space h1 {
    letter-spacing: -0.5px;
    color: #000000;
    font-size: calc(44px * 1.2);
    padding-bottom: 1rem;
    font-family: Arial, sans-serif;
    position: relative;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}.privacy_space h1::after {
    content: "";
    position: absolute;
    transition: transform 0.4s ease-out;
    transform: scaleX(1);
    background: linear-gradient(90deg, rgb(196,187,171) 0%, rgb(170,150,110) 100%);
    transform-origin: left;
    height: 4px;
    bottom: 0;
    left: 0;
    width: 80px;
}.privacy_space:hover h1::after {
    transform: scaleX(1.5);
}.privacy_space h2 {
    font-size: calc(31px * 1.05);
    color: #000000;
    border-left: 3px solid rgb(170,150,110);
    padding-left: 1rem;
    font-family: Arial, sans-serif;
    transform: translateX(0);
    margin: 3rem 0 1.5rem;
    transition: transform 0.3s ease-out;
    font-weight: 600;
    position: relative;
}.privacy_space h2:hover {
    transform: translateX(5px);
}.privacy_space h3 {
    position: relative;
    font-weight: 600;
    padding-bottom: 0.5rem;
    font-family: Arial, sans-serif;
    font-size: calc(18px * 1.2);
    margin: 2.5rem 0 1rem;
    color: #000000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}.privacy_space h4 {
    padding-left: 1.5rem;
    font-family: Arial, sans-serif;
    font-weight: 600;
    position: relative;
    color: #000000;
    font-size: calc(18px * 1.1);
    margin: 2rem 0 1rem;
}.privacy_space h4::before {
    left: 0;
    position: absolute;
    height: 8px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    content: "";
    top: 50%;
    background-color: rgb(196,187,171);
}.privacy_space p {
    font-size: 12px;
    color: #000000;
    transition: transform 0.3s ease-out;
    transform: translateZ(0);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-family: Arial, sans-serif;
    position: relative;
}.privacy_space p:hover {
    transform: translateZ(5px);
}.privacy_space strong {
    font-weight: 600;
    color: #000000;
    background: linear-gradient(to bottom, transparent 85%, rgb(170,150,110,0.5) 85%, rgb(170,150,110,0.5) 100%);
    display: inline-block;
    position: relative;
    padding: 0 2px;
}.privacy_space ul {
    list-style: none;
    margin: 1.5rem 0 2rem;
    padding-left: 1.5rem;
    position: relative;
}.privacy_space ul li {
    padding-left: 1.5rem;
    font-size: 12px;
    transition: transform 0.2s ease-out;
    color: #000000;
    font-family: Arial, sans-serif;
    position: relative;
    line-height: 1.7;
    margin-bottom: 1rem;
}.privacy_space ul li:hover {
    transform: translateX(5px);
}.privacy_space ul li::before {
    transition: transform 0.2s ease-out, background-color 0.2s ease-out;
    background-color: rgb(196,187,171);
    content: "";
    height: 6px;
    width: 6px;
    position: absolute;
    border-radius: 50%;
    top: 0.65rem;
    left: 0;
}.privacy_space ul li:hover::before {
    transform: scale(1.5);
    background-color: rgb(170,150,110);
}.privacy_space span {
    border-left: 2px solid rgb(170,150,110,0.5);
    color: #000000;
    display: block;
    transform: translateX(0);
    font-size: 12px;
    margin-bottom: 2rem;
    line-height: 1.7;
    transition: transform 0.3s ease-out, border-left-color 0.3s ease-out;
    padding: 1rem 1.5rem;
    background-color: rgba(rgba(0, 0, 0, 0.5), 0.02);
    font-family: Arial, sans-serif;
}.privacy_space span:hover {
    border-left-color: rgb(170,150,110);
    transform: translateX(5px);
}

@media screen and (max-width: 1200px) {.privacy_space {
    padding: 4rem 1.5rem;
}.privacy_space .container {
    padding: 1.5rem;
}.privacy_space h1 {
    font-size: calc(44px * 1.1);
}.privacy_space h2 {
    font-size: 31px;
}
}

@media screen and (max-width: 992px) {.privacy_space {
    padding: 3rem 1rem;
}.privacy_space .container {
    transform: none;
    box-shadow: 
            0 10px 30px rgba(0,0,0,0.05),
            0 3px 10px rgba(0,0,0,0.03);
}.privacy_space .container:hover {
    transform: none;
}.privacy_space h1 {
    font-size: 44px;
}
}

@media screen and (max-width: 768px) {.privacy_space {
    padding: 2rem 0.5rem;
}.privacy_space .container {
    padding: 1.5rem 1rem;
}.privacy_space h1 {
    font-size: calc(44px * 0.9);
}.privacy_space h2 {
    padding-left: 0.75rem;
    font-size: calc(31px * 0.9);
}.privacy_space h3 {
    font-size: 18px;
}.privacy_space h4 {
    font-size: 18px;
}.privacy_space p, 
    .privacy_space ul li,
    .privacy_space span {
    font-size: calc(12px * 0.95);
}.privacy_space ul {
    padding-left: 0.5rem;
}.privacy_space span {
    padding: 0.75rem 1rem;
}
}

@media screen and (max-width: 576px) {.privacy_space {
    padding: 1.5rem 0.5rem;
}.privacy_space .container {
    border-left-width: 3px;
    padding: 1rem;
}.privacy_space h1 {
    font-size: calc(44px * 0.8);
}.privacy_space h1::after {
    width: 60px;
    height: 3px;
}.privacy_space h2 {
    border-left-width: 2px;
    margin: 2rem 0 1rem;
}.privacy_space ul li {
    padding-left: 1.25rem;
}.privacy_space p:hover,
    .privacy_space ul li:hover,
    .privacy_space span:hover,
    .privacy_space h2:hover {
    transform: none;
}}.help_desk_info {
    background: rgb(227,225,221);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}.help_desk_info::before {
    filter: blur(80px);
    height: 100%;
    z-index: 0;
    position: absolute;
    border-radius: 50%;
    background: rgb(170,150,110,0.5);
    top: -50%;
    right: -50%;
    width: 100%;
    content: '';
}.help_desk_info::after {
    filter: blur(100px);
    bottom: -30%;
    background: rgb(196,187,171,0.5);
    border-radius: 50%;
    animation: pulse 15s infinite alternate;
    content: '';
    position: absolute;
    width: 80%;
    left: -30%;
    height: 80%;
    z-index: 0;
}@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.help_desk_info .container {
    position: relative;
    padding: 0 2rem;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}.help_desk_info .contact_boxMQKt {
    flex-wrap: wrap;
    display: flex;
    gap: 3rem;
    position: relative;
}.help_desk_info .ask_team {
    position: relative;
    flex: 1 1 30%;
    border-radius: 15px;
    min-width: 300px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}.help_desk_info .ask_team:nth-child(1) {
    order: 1;
    border-radius: 15px;
    border-left: 4px solid rgb(170,150,110);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1),
                -20px -20px 60px rgba(255, 255, 255, 0.05);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    padding: 3rem;
}.help_desk_info .ask_team:nth-child(2) {
    order: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 15px;
}.help_desk_info .ask_team:nth-child(3) {
    padding: 3rem;
    border-radius: 15px;
    order: 2;
    border-top: 4px solid rgb(196,187,171);
    background: linear-gradient(145deg, rgb(170,150,110,0.5), rgba(0, 0, 0, 0.5));
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}.help_desk_info .ask_team h2 {
    font-size: 29px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    margin-bottom: 2rem;
    color: #ffffff;
}.help_desk_info .ask_team h2::before {
    left: 0;
    bottom: -10px;
    height: 4px;
    border-radius: 2px;
    content: '';
    background: rgb(170,150,110);
    width: 40px;
    position: absolute;
}.help_desk_info .send_info {
    font-weight: 600;
    font-size: calc(14px * 1.3);
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: #ffffff;
}.help_desk_info .edu_coach {
    font-weight: 300;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 2rem;
    opacity: 0.9;
}.help_desk_info .ask_team p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    opacity: 0.9;
    gap: 1rem;
}.help_desk_info .ask_team p span {
    opacity: 1;
    font-weight: 600;
}.help_desk_info .assist_form {
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
}.help_desk_info .assist_form h3 {
    display: flex;
    gap: 0.5rem;
    font-weight: 600;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 22px;
}.help_desk_info .assist_form h3::before {
    height: 12px;
    content: '';
    background: rgb(170,150,110);
    border-radius: 50%;
    display: block;
    width: 12px;
}.help_desk_info .get_in_touch {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}.help_desk_info .get_in_touch span {
    transition: all 0.3s ease;
    color: #ffffff;
    border-radius: 10px;
    display: block;
    border-bottom: 3px solid rgb(170,150,110);
    font-size: calc(14px * 0.9);
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}.help_desk_info .get_in_touch span:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgb(170,150,110,0.5);
    transform: translateY(-5px);
}.help_desk_info .ask_team .img_pic_wrap {
    position: relative;
    height: 100%;
    min-height: 350px;
    transition: transform 0.5s ease;
}.help_desk_info .ask_team .img_pic_wrap::after {
    height: 100%;
    width: 100%;
    content: '';
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    left: 0;
    position: absolute;
    top: 0;
    z-index: 1;
}.help_desk_info .ask_team .img_pic_wrap:hover {
    transform: scale(1.03);
}.help_desk_info .contact_query {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}.help_desk_info .contact_query a {
    position: relative;
    border-radius: 10px;
    flex-direction: row;
    padding: 1.5rem;
    border-left: 3px solid transparent;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
}.help_desk_info .contact_query a:nth-child(1) {
    border-left-color: rgb(170,150,110);
}.help_desk_info .contact_query a:nth-child(2) {
    border-left-color: rgb(196,187,171);
}.help_desk_info .contact_query a:nth-child(3) {
    border-left-color: rgb(170,150,110);
}.help_desk_info .contact_query a::before {
    width: 100%;
    transition: all 0.5s ease;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    position: absolute;
    height: 100%;
    left: -100%;
    top: 0;
    content: '';
}.help_desk_info .contact_query a:hover {
    transform: translateX(5px);
    background: #000000;
}.help_desk_info .contact_query a:hover::before {
    opacity: 0;
    left: 0;
}.help_desk_info .contact_query a span {
    color: #ffffff;
    gap: 0.75rem;
    opacity: 0.7;
    align-items: center;
    font-size: calc(14px * 0.9);
    display: flex;
}.help_desk_info .contact_query a p {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    padding-left: 2rem;
}.help_desk_info svg {
    height: 22px;
    fill: none;
    width: 22px;
    transition: transform 0.3s ease;
}.help_desk_info svg path {
    fill: rgb(170,150,110);
    transition: fill 0.3s ease;
}.help_desk_info .contact_query a:hover svg {
    transform: scale(1.2);
}.help_desk_info .contact_query a:hover svg path {
    fill: #ffffff;
}

@media (max-width: 1100px) {.help_desk_info .contact_boxMQKt {
    flex-direction: column;
}.help_desk_info .ask_team {
    min-width: 100%;
}.help_desk_info .ask_team:nth-child(1) {
    order: 1;
}.help_desk_info .ask_team:nth-child(2) {
    order: 2;
}.help_desk_info .ask_team:nth-child(3) {
    order: 3;
}.help_desk_info .ask_team .img_pic_wrap {
    min-height: 300px;
}
}

@media (max-width: 768px) {.help_desk_info {
    padding: 4rem 0;
}.help_desk_info .container {
    padding: 0 1.5rem;
}.help_desk_info .ask_team {
    padding: 2rem;
}.help_desk_info .ask_team h2 {
    font-size: calc(29px * 0.9);
}.help_desk_info .assist_form {
    padding: 1.5rem;
}.help_desk_info .get_in_touch {
    grid-template-columns: repeat(2, 1fr);
}.help_desk_info .ask_team .img_pic_wrap {
    min-height: 250px;
}
}

@media (max-width: 480px) {.help_desk_info {
    padding: 3rem 0;
}.help_desk_info .container {
    padding: 0 1rem;
}.help_desk_info .ask_team {
    padding: 1.5rem;
}.help_desk_info .ask_team h2 {
    font-size: calc(29px * 0.8);
}.help_desk_info .send_info {
    font-size: 14px;
}.help_desk_info .assist_form {
    padding: 1.25rem;
    margin-top: 2rem;
}.help_desk_info .get_in_touch {
    grid-template-columns: 1fr;
}.help_desk_info .ask_team .img_pic_wrap {
    min-height: 200px;
}.help_desk_info .contact_query a {
    padding: 1.25rem;
}.help_desk_info .contact_query a p {
    padding-left: 0;
}}.course_program_description {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    background: rgb(227,225,221);
}.course_program_description::before {
    opacity: 0.03;
    content: "";
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgb(170,150,110,0.5) 2px, rgb(170,150,110,0.5) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgb(196,187,171,0.5) 2px, rgb(196,187,171,0.5) 4px);
    left: 0;
    right: 0;
    position: absolute;
    z-index: 0;
    top: 0;
}.course_program_description::after {
    left: 5%;
    filter: blur(40px);
    position: absolute;
    width: 90%;
    background: 
        radial-gradient(ellipse at top left, rgb(196,187,171,0.5) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgb(170,150,110,0.5) 0%, transparent 60%);
    top: 5%;
    height: 90%;
    z-index: 0;
    animation: ambientLight 15s infinite alternate ease-in-out;
    content: "";
}.course_program_description .container {
    z-index: 1;
    position: relative;
}.course_program_description .mastery_center {
    overflow: visible;
    border-radius: 17px;
    max-width: 100%;
    display: flex;
    background: transparent;
    position: relative;
    flex-direction: column;
}.course_program_description .img_pic_wrap {
    position: absolute;
    left: 0;
    filter: saturate(0.8) contrast(1.1);
    border-radius: 17px;
    overflow: hidden;
    z-index: 0;
    top: 0;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    width: 100%;
}.course_program_description .img_pic_wrap::before {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.5) 100%
    );
    left: 0;
    position: absolute;
    top: 0;
    mix-blend-mode: multiply;
    width: 100%;
    content: "";
    height: 100%;
    z-index: 1;
}.course_program_description .img_pic_wrap::after {
    background: 
        linear-gradient(to right, #000000 0%, transparent 20%, transparent 80%, #000000 100%),
        linear-gradient(to bottom, #000000 0%, transparent 20%, transparent 80%, #000000 100%);
    z-index: 2;
    height: 100%;
    top: 0;
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0.7;
    content: "";
}.course_program_description .mastery_center:hover .img_pic_wrap {
    filter: saturate(1.1) contrast(1.2);
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 100%, 
        65% 100%, 
        60% 85%, 
        40% 85%, 
        35% 100%, 
        0% 100%
    );
}.course_program_description .coding_expert {
    border-radius: 17px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    width: 85%;
    transition: all 0.6s ease;
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    z-index: 3;
    padding: 80px 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    margin: 40px auto;
}.course_program_description .coding_expert::before {
    left: -2px;
    z-index: -1;
    position: absolute;
    border-radius: calc(17px + 2px);
    opacity: 0.7;
    right: -2px;
    top: -2px;
    content: "";
    transition: opacity 0.6s ease;
    background: linear-gradient(
        45deg,
        rgb(196,187,171) 0%,
        transparent 30%,
        transparent 70%,
        rgb(170,150,110) 100%
    );
    bottom: -2px;
}.course_program_description .coding_expert::after {
    top: 10px;
    opacity: 0.5;
    position: absolute;
    right: 10px;
    border-radius: 10px;
    content: "";
    bottom: 10px;
    border: 1px dashed rgb(196,187,171,0.5);
    z-index: -1;
    transition: all 0.4s ease;
    left: 10px;
}.course_program_description .mastery_center:hover .coding_expert {
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: perspective(1000px) rotateX(0deg);
}.course_program_description .mastery_center:hover .coding_expert::before {
    opacity: 1;
}.course_program_description .mastery_center:hover .coding_expert::after {
    left: 15px;
    right: 15px;
    opacity: 0.7;
    bottom: 15px;
    top: 15px;
}.course_program_description .site_prime {
    left: 50%;
    position: absolute;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    top: -35px;
    align-items: center;
    display: flex;
    background: #ffffff;
    z-index: 5;
    transform: translateX(-50%);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.05),
        0 0 0 5px rgb(196,187,171,0.5);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    justify-content: center;
}.course_program_description .site_prime::before {
    background: 
        conic-gradient(
            rgb(196,187,171) 0deg, 
            rgb(196,187,171) 90deg, 
            transparent 90deg, 
            transparent 180deg, 
            rgb(170,150,110) 180deg, 
            rgb(170,150,110) 270deg, 
            transparent 270deg, 
            transparent 360deg
        );
    z-index: -1;
    bottom: -10px;
    left: -10px;
    animation: rotateConic 10s linear infinite;
    border-radius: 50%;
    right: -10px;
    opacity: 0.5;
    top: -10px;
    position: absolute;
    content: "";
    transition: opacity 0.5s ease;
}.course_program_description .site_prime:hover {
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(0, 0, 0, 0.08),
        0 0 0 5px rgb(170,150,110,0.5);
    transform: translateX(-50%) scale(1.1);
}.course_program_description .site_prime:hover::before {
    opacity: 0.8;
}.course_program_description .site_prime svg {
    width: 40px;
    height: 40px;
    transition: transform 0.5s ease;
}.course_program_description .site_prime:hover svg {
    transform: rotate(15deg);
}.course_program_description .site_prime svg path {
    transition: fill 0.5s ease;
    fill: rgb(196,187,171);
}.course_program_description .site_prime:hover svg path {
    fill: rgb(170,150,110);
}.course_program_description h3 {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    color: #000000;
    letter-spacing: 1px;
    font-size: 28px;
    margin-top: 20px;
    font-weight: 700;
}.course_program_description h3::before {
    content: "";
    bottom: 0;
    height: 2px;
    background: rgb(196,187,171);
    transition: width 0.5s ease;
    width: 50px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
}.course_program_description h3::after {
    bottom: -5px;
    width: 100px;
    left: 50%;
    transition: width 0.5s ease;
    content: "";
    background: rgb(170,150,110,0.5);
    transform: translateX(-50%);
    position: absolute;
    height: 1px;
}.course_program_description .coding_expert:hover h3::before {
    width: 100px;
}.course_program_description .coding_expert:hover h3::after {
    width: 150px;
}.course_program_description p {
    position: relative;
    margin: 0 auto;
    color: #000000;
    max-width: 90%;
    text-align: center;
    font-size: 12px;
    line-height: 1.8;
}.course_program_description p::before, 
.course_program_description p::after {
    opacity: 0.3;
    position: absolute;
    content: "";
    transition: all 0.5s ease;
    width: 20px;
    height: 20px;
}.course_program_description p::before {
    border-top: 2px solid rgb(196,187,171);
    top: -10px;
    left: -10px;
    border-left: 2px solid rgb(196,187,171);
}.course_program_description p::after {
    border-bottom: 2px solid rgb(170,150,110);
    bottom: -10px;
    right: -10px;
    border-right: 2px solid rgb(170,150,110);
}.course_program_description .coding_expert:hover p::before,
.course_program_description .coding_expert:hover p::after {
    opacity: 0.6;
    height: 40px;
    width: 40px;
}

@keyframes ambientLight {
    0% {
        opacity: 0.3;
        transform: scale(0.95) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: scale(1) rotate(5deg);
    }
    100% {
        opacity: 0.3;
        transform: scale(0.95) rotate(0deg);
    }
}

@keyframes rotateConic {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {.course_program_description {
    padding: 100px 0;
}.course_program_description .coding_expert {
    width: 90%;
    padding: 70px 50px;
}.course_program_description h3 {
    font-size: calc(28px - 2px);
}
}

@media (min-width: 768px) and (max-width: 991px) {.course_program_description {
    padding: 80px 0;
}.course_program_description .coding_expert {
    margin: 30px auto;
    padding: 60px 40px;
    width: 90%;
}.course_program_description .site_prime {
    width: 60px;
    height: 60px;
    top: -30px;
}.course_program_description .site_prime svg {
    width: 35px;
    height: 35px;
}.course_program_description h3 {
    margin-bottom: 25px;
    font-size: calc(28px - 4px);
    padding-bottom: 15px;
}.course_program_description p {
    font-size: calc(12px - 1px);
    line-height: 1.7;
}
}

@media (max-width: 767px) {.course_program_description {
    padding: 60px 0;
}.course_program_description .coding_expert {
    transform: none;
    padding: 50px 30px;
    width: 95%;
    margin: 25px auto;
}.course_program_description .site_prime {
    height: 50px;
    top: -25px;
    width: 50px;
}.course_program_description .site_prime svg {
    height: 30px;
    width: 30px;
}.course_program_description .site_prime::before {
    display: none;
}.course_program_description h3 {
    font-size: calc(28px - 6px);
    margin-bottom: 20px;
    padding-bottom: 12px;
}.course_program_description p {
    font-size: calc(12px - 2px);
    line-height: 1.6;
    max-width: 100%;
}.course_program_description p::before, 
    .course_program_description p::after {
    width: 15px;
    height: 15px;
}.course_program_description .coding_expert:hover p::before,
    .course_program_description .coding_expert:hover p::after {
    width: 25px;
    height: 25px;
}.course_program_description h3::before {
    width: 40px;
}.course_program_description h3::after {
    width: 80px;
}.course_program_description .coding_expert:hover h3::before {
    width: 70px;
}.course_program_description .coding_expert:hover h3::after {
    width: 110px;
}.course_program_description .img_pic_wrap {
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 100%, 
            60% 100%, 
            50% 95%, 
            40% 95%, 
            30% 100%, 
            0% 100%
        );
}.course_program_description .mastery_center:hover .img_pic_wrap {
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 100%, 
            65% 100%, 
            55% 92%, 
            35% 92%, 
            25% 100%, 
            0% 100%
        );
}.course_program_description .coding_expert::after {
    display: none;
}}.register_now {
    background: linear-gradient(170deg, rgb(196,187,171) 0%, rgb(170,150,110) 100%);
    z-index: 1;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}.register_now::before {
    left: 0;
    animation: gridMove 20s linear infinite;
    background-size: 30px 30px;
    height: 100%;
    background-image: 
        linear-gradient(#ffffff 1px, transparent 1px),
        linear-gradient(to right, #ffffff 1px, transparent 1px);
    position: absolute;
    transform-origin: center top;
    opacity: 0.05;
    width: 100%;
    transform: perspective(500px) rotateX(60deg);
    content: '';
    top: 0;
    z-index: -1;
}.register_now::after {
    left: 0;
    content: '';
    height: 100%;
    animation: colorShift 15s ease-in-out infinite alternate;
    background: radial-gradient(
        circle at 30% 30%,
        rgb(170,150,110) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 70% 70%,
        rgb(196,187,171) 0%,
        transparent 50%
    );
    z-index: -1;
    filter: blur(60px);
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0.1;
}.register_now .mastery_center {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    display: flex;
    max-width: 1000px;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}.register_now .mastery_center::before {
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    position: absolute;
    width: 200px;
    border-radius: 50%;
    top: -100px;
    height: 200px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    right: -100px;
    animation: orbitRotate 20s linear infinite;
    content: '';
}.register_now .mastery_center::after {
    bottom: -75px;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    animation: orbitRotate 15s linear infinite reverse;
    border-radius: 50%;
    position: absolute;
    height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    left: -75px;
    content: '';
    width: 150px;
}.register_now h3 {
    font-size: 34px;
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
    text-shadow: 0 0 15px #ffffff;
    margin-bottom: 55px;
    text-transform: uppercase;
    color: #ffffff;
    animation: textPulse 4s ease-in-out infinite alternate;
    font-weight: 700;
    letter-spacing: 3px;
}.register_now h3::before {
    z-index: -1;
    content: attr(data-text);
    position: absolute;
    text-shadow: none;
    width: 100%;
    filter: blur(1px);
    height: 100%;
    animation: glitchText 3s infinite linear alternate;
    left: -2px;
    top: 0;
    color: rgb(170,150,110);
    opacity: 0.6;
}.register_now h3::after {
    height: 3px;
    opacity: 0.7;
    box-shadow: 0 0 10px #ffffff;
    position: absolute;
    bottom: -20px;
    background: linear-gradient(
        to right,
        transparent,
        #ffffff,
        transparent
    );
    left: 50%;
    animation: barPulse 2s ease-in-out infinite;
    content: '';
    width: 50px;
    transform: translateX(-50%);
}.register_now .talk_answer {
    font-family: Arial, sans-serif;
    text-decoration: none;
    border: 2px solid #ffffff;
    transition: all 0.4s ease;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    background: transparent;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    padding: 18px 48px;
    border-radius: 25px;
}.register_now .talk_answer::before {
    content: '';
    background: #ffffff;
    transition: all 0.4s ease;
    z-index: -1;
    width: 100%;
    left: -100%;
    top: 0;
    position: absolute;
    height: 100%;
}.register_now .talk_answer::after {
    animation: patternMove 3s linear infinite;
    content: '';
    left: 0;
    width: 100%;
    background: linear-gradient(
        -45deg,
        transparent 25%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 50%,
        transparent 75%,
        rgba(255, 255, 255, 0.1) 75%
    );
    transition: opacity 0.4s ease;
    background-size: 10px 10px;
    top: 0;
    opacity: 0;
    height: 100%;
    position: absolute;
    z-index: -1;
}.register_now .talk_answer:hover {
    border-color: #ffffff;
    color: rgb(196,187,171);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}.register_now .talk_answer:hover::before {
    left: 0;
}.register_now .talk_answer:hover::after {
    opacity: 0.3;
}

@media screen and (max-width: 992px) {.register_now {
    padding: 80px 0;
}.register_now .mastery_center::before {
    width: 150px;
    height: 150px;
    top: -75px;
    right: -75px;
}.register_now .mastery_center::after {
    left: -60px;
    height: 120px;
    bottom: -60px;
    width: 120px;
}.register_now h3 {
    font-size: calc(34px * 0.9);
    margin-bottom: 45px;
}.register_now .talk_answer {
    padding: 16px 42px;
}
}

@media screen and (max-width: 768px) {.register_now {
    padding: 70px 0;
}.register_now .mastery_center::before {
    right: -50px;
    width: 100px;
    top: -50px;
    height: 100px;
}.register_now .mastery_center::after {
    width: 80px;
    left: -40px;
    height: 80px;
    bottom: -40px;
}.register_now h3 {
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-size: calc(34px * 0.8);
}.register_now h3::after {
    bottom: -15px;
    width: 40px;
}.register_now .talk_answer {
    padding: 14px 36px;
    font-size: calc(15px * 0.95);
}
}

@media screen and (max-width: 576px) {.register_now {
    padding: 60px 0;
}.register_now .mastery_center::before {
    right: -35px;
    top: -35px;
    height: 70px;
    width: 70px;
}.register_now .mastery_center::after {
    width: 50px;
    left: -25px;
    height: 50px;
    bottom: -25px;
}.register_now h3 {
    font-size: calc(34px * 0.7);
    margin-bottom: 35px;
    letter-spacing: 1px;
}.register_now h3::after {
    width: 30px;
    height: 2px;
    bottom: -12px;
}.register_now .talk_answer {
    padding: 12px 30px;
    font-size: calc(15px * 0.9);
    letter-spacing: 1px;
}}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 30px;
    }
}

@keyframes colorShift {
    0% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.1;
    }
}

@keyframes orbitRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes textPulse {
    0% {
        text-shadow: 0 0 10px #ffffff;
    }
    50% {
        text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff;
    }
    100% {
        text-shadow: 0 0 10px #ffffff;
    }
}

@keyframes glitchText {
    0% {
        left: -2px;
        filter: blur(1px);
    }
    25% {
        left: 2px;
        filter: blur(0);
    }
    50% {
        left: -1px;
        filter: blur(1px);
    }
    75% {
        left: 1px;
        filter: blur(0);
    }
    100% {
        left: -2px;
        filter: blur(1px);
    }
}

@keyframes barPulse {
    0%, 100% {
        opacity: 0.7;
        width: 50px;
    }
    50% {
        opacity: 1;
        width: 70px;
    }
}

@keyframes patternMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 10px 10px;
    }
}header .top_plank {
    background: rgb(196,187,171);
    color:  #ffffff;
}header .top_plank .best_skills div svg, header .top_plank .best_skills div svg path {
    fill: #ffffff;
}header .top_plank .best_skills div span {
    color: #ffffff;
}header .top_plank .best_skills {
    font-size: 13px;
    padding: 15px 0 10px 0;
    line-height: 21px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}header .top_plank .best_skills div {
    display: flex;
    align-items: center;
    margin-right: 24px;
    justify-content: flex-start;
}header .top_plank .best_skills div img, header .top_plank .best_skills div svg {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}.cookieNotificationBox {
    background: #ffffff;
    z-index: 1050;
    bottom: 20px;
    position: fixed;
    left: 50%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    width: 90%;
    transform: translateX(-50%);
    overflow: hidden;
    font-family: Arial, sans-serif;
}.consent_ack {
    padding: 20px;
    align-items: center;
    display: flex;
    flex-direction: column;
}.edu_settings {
    margin-bottom: 20px;
}.edu_settings svg, .edu_settings svg path, .edu_settings img {
    fill: rgb(196,187,171);
    height: 60px;
    width: 60px;
}.cookieNotificationBox h5 {
    margin-bottom: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 21px;
    color: rgb(196,187,171);
}.cookieNotificationBox p {
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
    font-size: 16px;
}.cookie_layer {
    transition: background 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    background: rgb(196,187,171);
    color: #ffffff;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    width: calc(50% - 10px);
    margin: 5px;
    font-size: 19px;
    text-align: center;
}.cookie_layer:hover {
    background: rgb(170,150,110);
}.cookie_button.policy_ack {
    background: rgb(170,150,110);
}.cookie_button.policy_ack:hover {
    background: rgb(170,150,110,0.5);
}.cookieNotificationBox p a {
    color: rgb(196,187,171);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}.cookieNotificationBox p a:hover {
    color: rgb(170,150,110);
}#trackingFormPanel {
    display: none;
}#trackingFormPanel:checked ~ .cookieNotificationBox {
    visibility: hidden;
    opacity: 0;
}.eco_foot {
    background-position: center center;
    color: #ffffff;
    position: relative;
    z-index: 1;
    padding: 5rem 0 3rem;
}.eco_foot::before {
    width: 100%;
    background: linear-gradient(0deg, #000000 20%, transparent 100%);
    left: 0;
    content: "";
    height: 100%;
    top: 0;
    position: absolute;
    z-index: -1;
}.eco_foot::after {
    z-index: -1;
    width: 100%;
    position: absolute;
    top: 0;
    opacity: 0.5;
    height: 100%;
    left: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.3) 0px,
        rgba(0, 0, 0, 0.3) 1px,
        transparent 1px,
        transparent 20px
    );
    content: "";
}.eco_foot .container {
    flex-direction: column;
    position: relative;
    display: flex;
}.eco_foot .container::before {
    clip-path: polygon(0 80%, 100% 80%, 100% 100%, 0 100%);
    opacity: 0.3;
    height: 80px;
    top: -80px;
    width: 100%;
    left: 0;
    position: absolute;
    background: linear-gradient(0deg, rgb(196,187,171) 0%, transparent 100%);
    content: "";
}.eco_foot .company_holder {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    margin-bottom: 4rem;
    border-radius: 10px;
    position: relative;
    border: 1px solid rgba(rgb(196,187,171), 0.3);
    backdrop-filter: blur(5px);
    clip-path: polygon(
        0 0,
        calc(100% - 30px) 0,
        100% 30px,
        100% 100%,
        30px 100%,
        0 calc(100% - 30px)
    );
}.eco_foot .company_holder::before {
    position: absolute;
    filter: blur(5px);
    height: calc(100% + 10px);
    width: calc(100% + 10px);
    left: -5px;
    z-index: -1;
    top: -5px;
    clip-path: polygon(
        0 0,
        calc(100% - 40px) 0,
        100% 40px,
        100% 100%,
        40px 100%,
        0 calc(100% - 40px)
    );
    opacity: 0.5;
    background: linear-gradient(45deg, rgb(196,187,171), transparent 70%);
    content: "";
}.eco_foot .company_holder h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgb(196,187,171), 0 0 20px rgb(196,187,171), 0 0 30px rgb(196,187,171);
    font-size: calc(36px * 1.2);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-transform: uppercase;
}.eco_foot .company_holder h3::before {
    opacity: 0.7;
    position: absolute;
    content: attr(data-text);
    left: 2px;
    filter: blur(1px);
    top: 2px;
    z-index: -1;
    color: rgb(196,187,171);
}.eco_foot .site_map {
    opacity: 0.8;
    font-size: 13px;
    line-height: 1.6;
    margin-top: 1.5rem;
    padding-left: 1rem;
    color: #ffffff;
    border-left: 2px solid rgb(196,187,171);
}.eco_foot .patent_info {
    justify-content: space-between;
    position: relative;
    display: flex;
}.eco_foot .patent_info::before {
    position: absolute;
    top: -20px;
    height: 1px;
    content: "";
    width: 100%;
    background: linear-gradient(90deg, transparent, rgb(196,187,171), transparent);
    left: 0;
}.eco_foot .head_mainwrap {
    justify-content: space-between;
    display: flex;
    width: 100%;
    gap: 2rem;
}.eco_foot .first_lesson {
    transition: all 0.3s ease;
    border-bottom: 2px solid rgb(196,187,171);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-left: 2px solid rgb(196,187,171);
    position: relative;
}.eco_foot .first_lesson:hover {
    box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.4);
    background: rgba(rgb(196,187,171,0.5), 0.1);
    transform: translateY(-5px);
}.eco_foot .first_lesson h5 {
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(170,150,110);
    position: relative;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-size: 23px;
}.eco_foot .first_lesson h5::after {
    background: rgb(196,187,171);
    height: 2px;
    content: "";
    width: 40px;
    left: 0;
    bottom: -8px;
    box-shadow: 0 0 10px rgb(196,187,171);
    position: absolute;
}.eco_foot .first_lesson .head_mainwrap {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}.eco_foot .first_lesson .head_mainwrap a {
    font-size: 13px;
    padding: 0.5rem 0 0.5rem 1.5rem;
    transition: all 0.3s ease;
    color: #ffffff;
    opacity: 0.7;
    overflow: hidden;
    position: relative;
    text-decoration: none;
}.eco_foot .first_lesson .head_mainwrap a::before {
    left: 0;
    content: "//";
    position: absolute;
    font-size: 0.8em;
    transition: all 0.3s ease;
    color: rgb(196,187,171);
}.eco_foot .first_lesson .head_mainwrap a:hover {
    color: rgb(196,187,171);
    opacity: 1;
    text-shadow: 0 0 5px rgb(196,187,171);
}.eco_foot .first_lesson .head_mainwrap a:hover::before {
    color: rgb(170,150,110);
}.honor_cta {
    margin-top: 3rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    position: relative;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.6);
}.honor_cta::before {
    position: absolute;
    background-image: 
        linear-gradient(90deg, transparent, rgb(196,187,171), transparent);
    width: 100%;
    height: 1px;
    left: 0;
    content: "";
    top: 0;
}.honor_cta .container {
    align-items: center;
    justify-content: center;
    display: flex;
}.honor_cta .webinar_arch {
    text-align: center;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    color: #ffffff;
}.honor_cta .webinar_arch::before,
.honor_cta .webinar_arch::after {
    margin: 0 10px;
    content: "//";
    color: rgb(196,187,171);
}

@keyframes neon-flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 0.9;
        text-shadow: 0 0 10px rgb(196,187,171), 0 0 20px rgb(196,187,171);
    }
    20%, 24%, 55% {
        opacity: 0.5;
        text-shadow: none;
    }
}

@keyframes scan-lines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

@media screen and (max-width: 992px) {.eco_foot .patent_info {
    flex-direction: column;
}.eco_foot .head_mainwrap {
    flex-direction: column;
}.eco_foot .first_lesson {
    margin-bottom: 1rem;
    width: 100%;
}.honor_cta {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}
}

@media screen and (max-width: 768px) {.eco_foot {
    padding: 4rem 0 2rem;
}.eco_foot .company_holder {
    margin-bottom: 3rem;
    padding: 1.5rem;
}.eco_foot .company_holder h3 {
    font-size: 36px;
}.eco_foot .first_lesson h5 {
    font-size: calc(23px * 0.9);
}.honor_cta {
    margin-top: 2rem;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
    padding: 1.2rem 0;
}
}

@media screen and (max-width: 576px) {.eco_foot {
    padding: 3rem 0 2rem;
}.eco_foot .company_holder {
    clip-path: polygon(
            0 0,
            calc(100% - 20px) 0,
            100% 20px,
            100% 100%,
            20px 100%,
            0 calc(100% - 20px)
        );
}.eco_foot .company_holder h3 {
    font-size: calc(36px * 0.85);
    letter-spacing: 1px;
}.eco_foot .site_map {
    font-size: calc(13px * 0.9);
}.eco_foot .first_lesson {
    padding: 1rem;
}.eco_foot .first_lesson .head_mainwrap a {
    font-size: calc(13px * 0.9);
}.honor_cta {
    padding: 1rem 0;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}.honor_cta .webinar_arch::before,
    .honor_cta .webinar_arch::after {
    display: none;
}}.study_process {
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(227,225,221) 0%, rgba(245, 247, 250, 0.92) 100%);
    padding: 6rem 0;
}.study_process::before {
    background: linear-gradient(225deg, rgb(196,187,171,0.5) 10%, transparent 70%);
    content: "";
    height: 70%;
    filter: blur(30px);
    transform: rotate(15deg);
    width: 35%;
    z-index: 1;
    position: absolute;
    right: -5%;
    top: -10%;
}.study_process::after {
    filter: blur(40px);
    left: -10%;
    background: linear-gradient(45deg, rgb(170,150,110,0.5) 10%, transparent 70%);
    width: 40%;
    transform: rotate(-10deg);
    position: absolute;
    height: 60%;
    z-index: 1;
    bottom: -5%;
    content: "";
}.study_process .container {
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    z-index: 2;
}.study_process .mastery_center {
    transform: perspective(1000px) rotateX(2deg);
    padding: 3.5rem;
    position: relative;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.05),
                -15px -15px 30px rgba(255, 255, 255, 0.9),
                inset 3px 3px 6px rgba(255, 255, 255, 0.8),
                inset -3px -3px 6px rgba(0, 0, 0, 0.03);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    backdrop-filter: blur(5px);
}.study_process .mastery_center:hover {
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07),
                -20px -20px 40px rgba(255, 255, 255, 0.95),
                inset 3px 3px 6px rgba(255, 255, 255, 0.8),
                inset -3px -3px 6px rgba(0, 0, 0, 0.03);
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.study_process .mastery_center > div {
    clip-path: polygon(
        0% 0%, 
        100% 0%, 
        100% 85%, 
        95% 100%, 
        0% 100%
    );
    background: linear-gradient(
        to right bottom,
        rgba(255, 255, 255, 0.9),
        rgba(255, 255, 255, 0.5)
    );
    padding: 2.5rem;
    position: relative;
}.study_process .mastery_center > div::before {
    content: "";
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
    top: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}.study_process h3 {
    padding-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    font-size: 36px;
    font-family: Arial, sans-serif;
    margin-bottom: 1.5rem;
    transform: translateZ(10px);
    font-weight: 600;
    color: #000000;
}.study_process h3::after {
    height: 3px;
    transition: width 0.4s ease;
    bottom: 0;
    position: absolute;
    width: 80px;
    content: "";
    background: linear-gradient(to right, rgb(196,187,171), rgb(170,150,110));
    left: 0;
}.study_process .mastery_center:hover h3::after {
    width: 120px;
}.study_process p {
    position: relative;
    margin-bottom: 0;
    line-height: 1.7;
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 14px;
}.study_process p span {
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    transform: translateZ(5px);
}.study_process .mastery_center:hover p span {
    transform: translateZ(10px);
}

@media (max-width: 991px) {.study_process {
    padding: 4rem 0;
}.study_process .mastery_center {
    padding: 2.5rem;
    transform: perspective(1000px) rotateX(1deg);
}.study_process .mastery_center > div {
    padding: 2rem;
}.study_process h3 {
    font-size: calc(36px * 0.9);
}
}

@media (max-width: 767px) {.study_process {
    padding: 3rem 0;
}.study_process .mastery_center {
    padding: 2rem 1.5rem;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05),
                    -10px -10px 20px rgba(255, 255, 255, 0.9),
                    inset 2px 2px 4px rgba(255, 255, 255, 0.8),
                    inset -2px -2px 4px rgba(0, 0, 0, 0.03);
}.study_process .mastery_center > div {
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 90%, 
            95% 100%, 
            0% 100%
        );
    padding: 1.5rem;
}.study_process h3 {
    font-size: calc(36px * 0.8);
    margin-bottom: 1rem;
}.study_process p {
    font-size: calc(14px * 0.95);
}
}

@media (max-width: 575px) {.study_process {
    padding: 2.5rem 0;
}.study_process .mastery_center {
    transform: none;
    padding: 1.5rem 1rem;
}.study_process .mastery_center > div {
    padding: 1.25rem;
    clip-path: polygon(
            0% 0%, 
            100% 0%, 
            100% 95%, 
            90% 100%, 
            0% 100%
        );
}.study_process h3 {
    font-size: calc(36px * 0.7);
    padding-bottom: 0.75rem;
}.study_process h3::after {
    height: 2px;
    width: 60px;
}.study_process .mastery_center:hover h3::after {
    width: 80px;
}.study_process p {
    line-height: 1.6;
    font-size: calc(14px * 0.9);
}}.meet_us {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background-color: rgb(227,225,221);
}.meet_us::before {
    z-index: 1;
    background: linear-gradient(135deg, 
        rgb(196,187,171,0.5) 0%, 
        transparent 70%);
    right: -5%;
    content: '';
    width: 40%;
    position: absolute;
    top: -10%;
    transform: rotate(-15deg) skewX(15deg);
    height: 70%;
}.meet_us::after {
    z-index: 1;
    width: 35%;
    left: -5%;
    transform: rotate(10deg) skewX(-10deg);
    content: '';
    bottom: -10%;
    position: absolute;
    background: linear-gradient(225deg, 
        rgb(196,187,171,0.5) 10%, 
        transparent 80%);
    height: 60%;
}.meet_us .container {
    max-width: 1200px;
    position: relative;
    padding: 0 1.5rem;
    z-index: 2;
    margin: 0 auto;
}.meet_us h1 {
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    font-size: 40px;
    transform: translateX(0.5rem);
    color: #000000;
}.meet_us h1::after {
    transform: scaleX(1);
    position: absolute;
    background: linear-gradient(90deg, rgb(196,187,171), rgb(196,187,171,0.5));
    width: 6rem;
    left: 0;
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    content: '';
    bottom: -0.75rem;
    height: 4px;
}.meet_us h1:hover::after {
    transform: scaleX(1.5);
}.meet_us .learn_skill {
    position: relative;
}.meet_us .learn_skill ul {
    margin: 0;
    gap: 3rem;
    list-style: none;
    grid-template-columns: 1fr;
    padding: 0;
    display: grid;
}.meet_us .academy_team {
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 
                0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    transform: translateY(0);
    background: #ffffff;
    overflow: hidden;
    padding: 2.5rem;
}.meet_us .academy_team::before {
    top: 0;
    width: 4px;
    left: 0;
    position: absolute;
    background: linear-gradient(to bottom, rgb(196,187,171), rgb(170,150,110));
    transition: transform 0.3s ease;
    content: '';
    transform-origin: top;
    height: 100%;
    transform: scaleY(0.7);
}.meet_us .academy_team:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1), 
                0 3px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(-6px);
}.meet_us .academy_team:hover::before {
    transform: scaleY(1);
}.meet_us .academy_team h4 {
    color: #000000;
    padding-bottom: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: calc(19px * 1.1);
    margin-top: 0;
    position: relative;
}.meet_us .academy_team h4::after {
    left: 0;
    background-color: rgb(170,150,110,0.5);
    content: '';
    bottom: 0;
    width: 3rem;
    transition: width 0.3s ease;
    height: 2px;
    position: absolute;
}.meet_us .academy_team:hover h4::after {
    width: 5rem;
}.meet_us .academy_team div {
    line-height: 1.7;
    max-height: 250px;
    padding-right: 0.5rem;
    overflow-y: auto;
    font-size: 18px;
    color: #000000;
}.meet_us .academy_team div::-webkit-scrollbar {
    width: 4px;
}.meet_us .academy_team div::-webkit-scrollbar-track {
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.05);
}.meet_us .academy_team div::-webkit-scrollbar-thumb {
    background-color: rgb(196,187,171,0.5);
    border-radius: 2px;
}

@media (min-width: 768px) {.meet_us {
    padding: 8rem 0;
}.meet_us h1 {
    font-size: calc(40px * 1.2);
    margin-left: 1.5rem;
}.meet_us .learn_skill ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}.meet_us .academy_team {
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), 
                    box-shadow 0.4s ease;
    transform: perspective(1000px) rotateY(0deg);
    display: flex;
    height: 500px;
}.meet_us .academy_team:first-child {
    transform: perspective(1000px) rotateY(2deg) translateZ(20px);
}.meet_us .academy_team:last-child {
    transform: perspective(1000px) rotateY(-2deg) translateZ(20px);
}.meet_us .academy_team:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(40px) translateY(-10px);
}.meet_us .academy_team div {
    max-height: 400px;
}
}

@media (min-width: 992px) {.meet_us .container {
    padding: 0 3rem;
}.meet_us h1 {
    margin-left: 2rem;
    margin-bottom: 4rem;
}.meet_us .learn_skill {
    padding: 0 2rem;
}.meet_us .academy_team {
    padding: 3rem;
}.meet_us .academy_team h4 {
    margin-bottom: 2rem;
    font-size: calc(19px * 1.3);
}
}

@media (min-width: 1200px) {.meet_us::before {
    height: 80%;
    width: 45%;
}.meet_us::after {
    width: 40%;
    height: 70%;
}.meet_us .learn_skill ul {
    gap: 4rem;
}.meet_us .academy_team {
    padding: 3.5rem;
}.meet_us .academy_team::before {
    width: 6px;
}
}

@media (max-width: 767px) {.meet_us {
    padding: 4rem 0;
}.meet_us h1 {
    margin-bottom: 2rem;
    text-align: center;
}.meet_us h1::after {
    left: 50%;
    transform: translateX(-50%) scaleX(1);
}.meet_us h1:hover::after {
    transform: translateX(-50%) scaleX(1.5);
}.meet_us .academy_team {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}.meet_us .academy_team h4 {
    font-size: 19px;
    margin-bottom: 1rem;
}.meet_us .academy_team div {
    max-height: 200px;
}}.potential_learners {
    overflow: hidden;
    background: linear-gradient(120deg, rgb(227,225,221) 0%, rgb(196,187,171,0.5) 100%);
    padding: 5rem 0;
    position: relative;
}.potential_learners::before {
    transform: translate(-50%, -50%);
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        transparent 30%,
        rgba(rgb(170,150,110,0.5), 0.1) 31%,
        rgba(rgb(170,150,110,0.5), 0.1) 32%,
        transparent 33%,
        transparent 40%,
        rgba(rgb(170,150,110,0.5), 0.05) 41%,
        rgba(rgb(170,150,110,0.5), 0.05) 42%,
        transparent 43%,
        transparent 50%,
        rgba(rgb(196,187,171,0.5), 0.07) 51%,
        rgba(rgb(196,187,171,0.5), 0.07) 52%,
        transparent 53%,
        transparent 70%,
        rgba(rgb(196,187,171,0.5), 0.05) 71%,
        rgba(rgb(196,187,171,0.5), 0.05) 72%,
        transparent 73%
    );
    top: 50%;
    width: 150%;
    z-index: 1;
    left: 50%;
    position: absolute;
    animation: rotateRings 60s linear infinite;
    pointer-events: none;
    height: 150%;
    content: '';
}.potential_learners::after {
    width: 100%;
    top: 0;
    z-index: 1;
    content: '';
    opacity: 0.3;
    left: 0;
    position: absolute;
    height: 100%;
    background: radial-gradient(
        circle at 70% 80%,
        rgb(196,187,171,0.5) 0%,
        transparent 50%
    );
}.potential_learners .mastery_center {
    position: relative;
    max-width: 1200px;
    padding: 0 2rem;
    margin: 0 auto;
    z-index: 2;
}.potential_learners h3 {
    text-align: center;
    color: #ffffff;
    font-size: 31px;
    margin-bottom: 3.5rem;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}.potential_learners h3::after {
    border-radius: 50px;
    bottom: -15px;
    content: '';
    height: 3px;
    width: 120px;
    transform: translateX(-50%);
    background: rgb(196,187,171);
    position: absolute;
    left: 50%;
    box-shadow: 0 0 15px rgb(196,187,171);
}.potential_learners ul {
    list-style-type: none;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    display: grid;
    margin: 0;
}.potential_learners li {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    background-color: rgba(255, 255, 255, 0.12);
    padding: 1.8rem 2rem;
    backdrop-filter: blur(5px);
    border-radius: 50px;
    align-items: center;
}.potential_learners li::before {
    pointer-events: none;
    content: '';
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}.potential_learners li::after {
    position: absolute;
    pointer-events: none;
    content: '';
    width: 200%;
    transform: scale(0.5);
    opacity: 0;
    height: 200%;
    top: -50%;
    transition: all 0.5s ease;
    left: -50%;
    background: radial-gradient(
        circle at center,
        rgba(rgb(170,150,110,0.5), 0.3) 0%,
        transparent 70%
    );
}.potential_learners li:hover {
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 20px rgb(196,187,171,0.5);
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.18);
    border-color: rgb(196,187,171,0.5);
}.potential_learners li:hover::after {
    transform: scale(1);
    opacity: 0.5;
}.potential_learners li svg {
    transition: all 0.4s ease;
    transform-origin: center;
    flex-shrink: 0;
    margin-right: 1.5rem;
    width: 40px;
    filter: drop-shadow(0 0 5px rgb(170,150,110,0.5));
    height: 40px;
    fill: rgb(170,150,110);
}.potential_learners li:hover svg {
    transform: rotate(15deg);
    fill: rgb(196,187,171);
    filter: drop-shadow(0 0 8px rgb(196,187,171));
}.potential_learners li svg path {
    transition: all 0.4s ease;
}.potential_learners li:hover svg path {
    fill: rgb(196,187,171);
}.potential_learners li {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

@keyframes rotateRings {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

@media (max-width: 991px) {.potential_learners {
    padding: 4rem 0;
}.potential_learners ul {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.potential_learners h3 {
    font-size: calc(31px * 0.9);
}.potential_learners li {
    padding: 1.5rem 1.8rem;
}
}

@media (max-width: 767px) {.potential_learners {
    padding: 3rem 0;
}.potential_learners h3 {
    margin-bottom: 2.5rem;
    font-size: calc(31px * 0.8);
}.potential_learners h3::after {
    width: 100px;
}.potential_learners li {
    padding: 1.2rem 1.5rem;
    border-radius: 25px;
}.potential_learners li svg {
    width: 35px;
    height: 35px;
    margin-right: 1rem;
}}.learning_outcomes {
    position: relative;
    background: linear-gradient(135deg, rgb(227,225,221) 0%, rgba(0, 0, 0, 0.5) 100%);
    overflow: hidden;
    padding: 120px 0;
}.learning_outcomes::before {
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    opacity: 0.1;
    transform: translateZ(-10px);
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(196,187,171,0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgb(170,150,110,0.5) 0%, transparent 50%);
    z-index: 0;
    height: 100%;
}.learning_outcomes .container {
    position: relative;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}.learning_outcomes .mastery_center {
    gap: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    perspective: 1000px;
    transform-style: preserve-3d;
}.learning_outcomes .label_container {
    transform: translateZ(30px);
    flex: 1;
    position: relative;
}.learning_outcomes .label_container::before {
    height: 100%;
    background: linear-gradient(to bottom, rgb(196,187,171), rgb(170,150,110));
    animation: lineReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.5s forwards;
    width: 5px;
    top: 0;
    left: -20px;
    position: absolute;
    content: "";
    transform-origin: top;
    transform: scaleY(0);
}.learning_outcomes h4 {
    font-size: 32px;
    line-height: 1.4;
    color: #000000;
    opacity: 0;
    position: relative;
    margin-bottom: 30px;
    font-weight: 700;
    animation: fadeUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
    transform: translateY(20px);
}.learning_outcomes h4::after {
    position: absolute;
    width: 80px;
    background: rgb(196,187,171);
    content: "";
    bottom: -10px;
    left: 0;
    transform: scaleX(0);
    height: 3px;
    transform-origin: left;
    animation: lineWidth 0.8s cubic-bezier(0.19, 1, 0.22, 1) 0.7s forwards;
}.learning_outcomes .label_container > div {
    margin-top: 20px;
    gap: 30px;
    display: flex;
}.learning_outcomes ul {
    margin: 0;
    list-style: none;
    flex: 1;
    padding: 0;
}.learning_outcomes li {
    transition: transform 0.3s ease;
    transform: translateX(-20px);
    opacity: 0;
    margin-bottom: 20px;
    animation: fadeSlideIn 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}.learning_outcomes li:nth-child(1) {
    animation-delay: 0.3s;
}.learning_outcomes li:nth-child(2) {
    animation-delay: 0.5s;
}.learning_outcomes li:nth-child(3) {
    animation-delay: 0.7s;
}.learning_outcomes li:hover {
    transform: translateX(5px) translateZ(10px);
}.learning_outcomes li p {
    margin: 0;
    align-items: flex-start;
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
}.learning_outcomes li p span:first-child {
    margin-top: 3px;
    flex-shrink: 0;
}.learning_outcomes li p span:last-child {
    position: relative;
    padding-bottom: 5px;
}.learning_outcomes li p span:last-child::after {
    position: absolute;
    transform-origin: left;
    width: 100%;
    content: "";
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, rgb(170,150,110,0.5), transparent);
    height: 1px;
    transform: scaleX(0);
}.learning_outcomes li:hover p span:last-child::after {
    transform: scaleX(1);
}.learning_outcomes svg {
    height: 24px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.1));
    width: 24px;
}.learning_outcomes li:hover svg {
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
    transform: rotate(10deg) scale(1.1);
}.learning_outcomes svg path {
    fill: rgb(196,187,171);
    transition: fill 0.3s ease;
}.learning_outcomes li:hover svg path {
    fill: rgb(170,150,110);
}.learning_outcomes .img_pic_wrap {
    flex: 0 0 45%;
    max-width: 450px;
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.1),
        -5px -5px 30px rgba(255, 255, 255, 0.8);
    position: relative;
    animation: floatImage 5s ease-in-out infinite alternate;
    animation: 
        floatImage 6s ease-in-out infinite alternate,
        fadeIn 1s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    z-index: 2;
    border-radius: 17px;
    transform: 
        perspective(1000px)
        rotateY(-10deg)
        rotateX(5deg)
        translateZ(40px);
}.learning_outcomes .img_pic_wrap::before {
    content: "";
    opacity: 0.1;
    inset: 0;
    border-radius: 17px;
    transform: translateZ(-5px);
    position: absolute;
    background: linear-gradient(135deg, rgb(196,187,171,0.5), rgb(170,150,110,0.5));
    z-index: -1;
}.learning_outcomes .img_pic_wrap::after {
    width: 80px;
    height: 80px;
    content: "";
    right: -20px;
    position: absolute;
    z-index: -1;
    background: rgb(196,187,171,0.5);
    filter: blur(20px);
    top: -20px;
    border-radius: 50%;
}

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

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

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

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

@keyframes floatImage {
    0% {
        transform: 
            perspective(1000px)
            rotateY(-10deg)
            rotateX(5deg)
            translateZ(40px)
            translateY(0);
    }
    100% {
        transform: 
            perspective(1000px)
            rotateY(-8deg)
            rotateX(3deg)
            translateZ(40px)
            translateY(-15px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 992px) {.learning_outcomes {
    padding: 80px 0;
}.learning_outcomes h4 {
    font-size: calc(32px * 0.9);
}.learning_outcomes .mastery_center {
    flex-direction: column-reverse;
    gap: 60px;
}.learning_outcomes .img_pic_wrap {
    flex: 0 0 100%;
    transform: 
            perspective(1000px)
            rotateY(-5deg)
            rotateX(3deg)
            translateZ(20px);
    max-width: 100%;
}.learning_outcomes .label_container > div {
    flex-direction: column;
    gap: 10px;
}
}

@media (max-width: 768px) {.learning_outcomes {
    padding: 60px 0;
}.learning_outcomes h4 {
    margin-bottom: 20px;
    font-size: calc(32px * 0.8);
}.learning_outcomes .label_container::before {
    left: -15px;
    width: 3px;
}.learning_outcomes li p {
    font-size: calc(13px * 0.95);
    gap: 10px;
}.learning_outcomes svg {
    width: 20px;
    height: 20px;
}.learning_outcomes .img_pic_wrap {
    transform: 
            perspective(800px)
            rotateY(-3deg)
            rotateX(2deg)
            translateZ(10px);
}
}

@media (max-width: 576px) {.learning_outcomes {
    padding: 40px 0;
}.learning_outcomes h4 {
    font-size: calc(32px * 0.7);
}.learning_outcomes .mastery_center {
    gap: 40px;
}.learning_outcomes li {
    margin-bottom: 15px;
}.learning_outcomes li p {
    font-size: calc(13px * 0.9);
}.learning_outcomes .img_pic_wrap {
    transform: none;
    box-shadow: 
            10px 10px 20px rgba(0, 0, 0, 0.1),
            -3px -3px 15px rgba(255, 255, 255, 0.8);
    animation: 
            fadeIn 1s cubic-bezier(0.19, 1, 0.22, 1) 0.8s forwards,
            simpleFloat 4s ease-in-out infinite alternate;
}@keyframes simpleFloat {
        0% {
            transform: translateY(0);
        }
        100% {
            transform: translateY(-10px);
        }
    }
}.contact_boxbgi {
    overflow: hidden;
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(
        -45deg, 
        rgb(227,225,221) 0%, 
        rgb(170,150,110,0.5) 100%
    );
}.contact_boxbgi .container {
    max-width: 1400px;
    padding: 0 1rem;
    margin: 0 auto;
}.contact_boxbgi .inquiry_help {
    background: rgb(170,150,110,0.5);
    border-radius: 19px;
    display: flex;
    position: relative;
    align-items: stretch;
    overflow: hidden;
    box-shadow: 0 25px 50px rgb(196,187,171,0.5);
}.contact_boxbgi .img_pic_wrap {
    margin-left: -5%;
    min-height: 600px;
    position: relative;
    transform: skew(-10deg);
    z-index: 2;
    flex: 0 0 45%;
}.contact_boxbgi .img_pic_wrap::before {
    content: '';
    position: absolute;
    background: linear-gradient(
        135deg, 
        rgb(196,187,171,0.5) 0%, 
        rgb(170,150,110,0.5) 100%
    );
    height: 100%;
    left: 0;
    z-index: 1;
    opacity: 0.7;
    top: 0;
    width: 120%;
    transform: skew(10deg);
}.contact_boxbgi .support_request {
    padding: 4rem 3rem 4rem 10%;
    flex-direction: column;
    flex: 0 0 55%;
    z-index: 3;
    justify-content: center;
    position: relative;
    display: flex;
}.contact_boxbgi h2 {
    font-size: 44px;
    color: #ffffff;
    font-weight: 700;
    position: relative;
    margin-bottom: 2.5rem;
    text-align: left;
    padding-left: 2rem;
}.contact_boxbgi h2::before {
    height: 1rem;
    position: absolute;
    width: 1rem;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgb(196,187,171,0.5);
    left: 0;
    background: rgb(196,187,171);
    top: 50%;
    content: '';
}.contact_boxbgi .support_request h3 {
    padding-bottom: 1rem;
    font-weight: 600;
    position: relative;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 36px;
}.contact_boxbgi .support_request h3::after {
    position: absolute;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgb(196,187,171);
    content: '';
    bottom: 0;
}.contact_boxbgi .support_request form {
    display: grid;
    gap: 1.5rem;
}.contact_boxbgi .support_request input:not([type="checkbox"]):not([type="submit"]) {
    color: #ffffff;
    border: 1px solid rgb(196,187,171,0.5);
    transition: all 0.3s ease;
    background: rgb(170,150,110,0.5);
    outline: none;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 16px;
    position: relative;
    width: 100%;
}.contact_boxbgi .support_request input:not([type="checkbox"]):not([type="submit"])::after {
    left: 0;
    background: rgb(196,187,171);
    height: 2px;
    position: absolute;
    content: '';
    width: 0;
    transition: width 0.3s ease;
    bottom: -2px;
}.contact_boxbgi .support_request input:not([type="checkbox"]):not([type="submit"]):focus {
    box-shadow: 0 0 15px rgb(196,187,171,0.5);
    border-color: rgb(196,187,171);
}.contact_boxbgi .support_request input:not([type="checkbox"]):not([type="submit"]):focus::after {
    width: 100%;
}.contact_boxbgi .support_request .support_widget {
    display: flex;
    align-items: center;
    gap: 1rem;
}.contact_boxbgi .support_request .support_widget input[type="checkbox"] {
    transition: all 0.3s ease;
    border-radius: 10px;
    cursor: pointer;
    height: 22px;
    position: relative;
    background: rgb(170,150,110,0.5);
    width: 22px;
    appearance: none;
    border: 2px solid rgb(196,187,171,0.5);
}.contact_boxbgi .support_request .support_widget input[type="checkbox"]:checked {
    background: rgb(196,187,171);
    border-color: rgb(196,187,171);
}.contact_boxbgi .support_request .support_widget input[type="checkbox"]:checked::after {
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    content: '✔';
    top: 50%;
    color: #ffffff;
    font-size: 0.8rem;
}.contact_boxbgi .support_request .support_widget label {
    font-size: 16px;
    display: flex;
    color: #ffffff;
    align-items: center;
}.contact_boxbgi .support_request .support_widget a {
    transition: color 0.3s ease;
    text-decoration: none;
    margin-left: 0.3rem;
    color: rgb(196,187,171);
}.contact_boxbgi .support_request .support_widget a:hover {
    text-decoration: underline;
}.contact_boxbgi .support_request .support_message {
    cursor: pointer;
    border-radius: 10px;
    padding: 1rem;
    background: rgb(196,187,171);
    width: 100%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    overflow: hidden;
    font-weight: 600;
    border: none;
    position: relative;
    font-size: 19px;
}.contact_boxbgi .support_request .support_message::before {
    opacity: 0;
    transform: rotate(-45deg);
    left: -50%;
    width: 200%;
    transition: all 0.5s ease;
    content: '';
    top: -50%;
    background: linear-gradient(
        135deg, 
        transparent, 
        rgb(196,187,171,0.5), 
        transparent
    );
    height: 200%;
    position: absolute;
}.contact_boxbgi .support_request .support_message:hover::before {
    opacity: 1;
}.contact_boxbgi .support_request .support_message:hover {
    box-shadow: 0 10px 20px rgb(196,187,171,0.5);
    transform: translateY(-3px);
}

@media screen and (max-width: 1200px) {.contact_boxbgi .img_pic_wrap {
    margin-left: -3%;
}
}

@media screen and (max-width: 1024px) {.contact_boxbgi .inquiry_help {
    flex-direction: column;
}.contact_boxbgi .img_pic_wrap {
    flex: 0 0 100%;
    transform: none;
    margin-left: 0;
    min-height: 300px;
}.contact_boxbgi .img_pic_wrap::before {
    width: 100%;
    transform: none;
}.contact_boxbgi .support_request {
    flex: 0 0 100%;
    padding: 3rem 2rem;
}
}

@media screen and (max-width: 768px) {.contact_boxbgi {
    padding: 3rem 0;
}.contact_boxbgi h2 {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    font-size: calc(44px * 0.8);
}.contact_boxbgi h2::before {
    width: 0.8rem;
    height: 0.8rem;
}.contact_boxbgi .support_request h3 {
    margin-bottom: 1.5rem;
    font-size: calc(36px * 0.9);
}.contact_boxbgi .support_request input:not([type="checkbox"]):not([type="submit"]) {
    padding: 0.8rem 1.2rem;
}
}

@media screen and (max-width: 480px) {.contact_boxbgi .inquiry_help {
    border-radius: 0;
}.contact_boxbgi .support_request {
    padding: 2rem 1.5rem;
}
}