* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}header,footer {
    width: 100%;
}svg {
    height: 30px;
    width: 30px;
}.viewport-container {
    flex-direction: column;
    min-height: 100%;
    display: flex;
    height: 100%;
}a {
    text-decoration: none;
    color: inherit;
}@keyframes glow_scrollbar { 0% { box-shadow: 0 0 5px rgba(0,0,0,0.2); } 50% { box-shadow: 0 0 15px rgba(0,0,0,0.5); } 100% { box-shadow: 0 0 5px rgba(0,0,0,0.2); } }

::-webkit-scrollbar {
    padding: 1px;
    width: 4px;
}::-webkit-scrollbar-button {
    height: 8px;
    background: rgb(224,204,181);
    width: 8px;
}::-webkit-scrollbar-track {
    border-radius: 16.6rem;
    box-shadow: inset 0px 0px 12px -2px rgba(0, 0, 0, 0.1);
    background: rgb(153,133,116,0.5);
}::-webkit-scrollbar-thumb {
    animation: glow_scrollbar 4.9s ease-out infinite;
    border-radius: 14.5em;
    background: rgb(153,133,116);
    border: 1px dashed rgb(153,133,116,0.5);
    box-shadow: -4px -4px 5px 4px rgba(0, 0, 0, 0.1);
}::-webkit-scrollbar-thumb:hover {
    background: rgb(255, 255, 255, 0.5);
    border-color: #ffffff;
    box-shadow: -5px 1px 9px 7px rgba(0, 0, 0, 0.6);
}.top_sitebar {
    flex: 1 0 auto;
}.desktop_app {
    flex: 0 0 auto;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1131px;
}html,body {
    min-height: 100%;
    height: 100%;
    color: #000000;
    auto
contain
touch-action: none;
    font-family: Arial, sans-serif;
    scroll-snap-type: none;
    auto
    scroll-behavior: smooth;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.privacy_shelter {
    color: #000000;
    font-family: Arial, sans-serif;
    padding: 40px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background: rgb(188,169,146,0.5);
}.privacy_shelter h1 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 45px;
    margin-bottom: 20px;
    margin-top: 30px;
    color: #000000;
}.privacy_shelter h2 {
    font-size: 38px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgb(153,133,116,0.5);
    color: rgb(153,133,116);
    margin-top: 25px;
    font-weight: 600;
    padding-bottom: 5px;
}.privacy_shelter ul, .privacy_shelter ol {
    list-style-type: disc;
    padding-top: 10px;
    margin-bottom: 20px;
    padding-left: 20px;
}.privacy_shelter li {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.6;
}.privacy_shelter div {
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    line-height: 1.8;
}

@media only screen and (max-width: 800px) {.privacy_shelter {
    padding: 20px;
    box-shadow: none;
}.privacy_shelter h1 {
    font-size: calc(19px - 10px);
}.privacy_shelter h2 {
    font-size: calc(19px - 5px);
}}

.privacy_shelter h3, .privacy_shelter h4, .privacy_shelter h5, .privacy_shelter h6 {
    font-weight: 600;
    font-size: 1.2em;
    color: rgb(188,169,146);
    margin-top: 20px;
    margin-bottom: 10px;
}.privacy_shelter p, .privacy_shelter span {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 15px;
    color: #000000;
}.privacy_shelter a {
    color: rgb(153,133,116);
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 400;
}.privacy_shelter a:hover {
    color: rgb(188,169,146);
    text-decoration: underline;
}.privacy_shelter button {
    font-size: 14px;
    border: none;
    background: rgb(153,133,116);
    cursor: pointer;
    color: #ffffff;
    transition: background 0.3s ease;
    padding: 10px 20px;
    border-radius: 10px;
}.privacy_shelter button:hover {
    background: rgb(188,169,146);
}header {
    z-index: 100;
    position: relative;
    width: 100%;
    padding: 0;
    background: rgb(224,204,181);
}header::before {
    z-index: 0;
    opacity: 0.6;
    left: 0;
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    background: linear-gradient(135deg, 
        rgb(188,169,146,0.5) 0%, 
        transparent 60%, 
        rgb(153,133,116,0.5) 100%);
}header .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    z-index: 1;
    position: relative;
    margin: 0;
}header .header_base {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    padding: 0.8rem 3%;
    justify-content: space-between;
}header .header_primary {
    text-decoration: none;
    position: relative;
    display: flex;
    padding: 0.6rem;
    margin-right: 1rem;
    align-items: center;
}header .header_primary::after {
    position: absolute;
    width: 100%;
    background: linear-gradient(to right, rgb(188,169,146), rgb(153,133,116));
    transform: scaleX(0.7);
    transition: transform 0.3s ease;
    height: 2px;
    left: 0;
    bottom: 0;
    content: '';
}header .header_primary:hover::after {
    transform: scaleX(1);
}header .header_primary svg {
    height: auto;
    transition: all 0.3s ease;
    width: 140px;
}header .header_primary:hover svg {
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}header .nav_lesson {
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
    display: flex;
    border-radius: 10px;
    gap: 0.4rem;
}header .main_pagewrap {
    text-decoration: none;
    font-weight: 400;
    border-radius: 10px;
    transition: all 0.3s ease;
    padding: 0.4rem 0.7rem;
    font-size: 17px;
    position: relative;
    z-index: 1;
    color: #000000;
    font-family: Arial, sans-serif;
    overflow: hidden;
}header .main_pagewrap::after {
    background: linear-gradient(to right, rgb(188,169,146), rgb(153,133,116));
    left: 0;
    height: 2px;
    transform-origin: left;
    transform: scaleX(0);
    content: '';
    position: absolute;
    width: 100%;
    transition: transform 0.3s ease;
    bottom: 0;
}header .main_pagewrap:hover {
    background: rgba(255, 255, 255, 0.7);
    color: rgb(188,169,146);
}header .main_pagewrap:hover::after {
    transform: scaleX(1);
}

@media (max-width: 991px) {header .header_base {
    padding: 0.7rem 2.5%;
}header .header_primary svg {
    width: 130px;
}header .nav_lesson {
    padding: 0.4rem;
    gap: 0.35rem;
}header .main_pagewrap {
    font-size: calc(17px - 1px);
    padding: 0.35rem 0.6rem;
}
}

@media (max-width: 767px) {header .header_base {
    padding: 0.7rem 2%;
    justify-content: center;
}header .header_primary {
    margin: 0 0 0.6rem 0;
}header .header_primary svg {
    width: 120px;
}header .nav_lesson {
    width: 100%;
    justify-content: center;
}header .main_pagewrap {
    padding: 0.3rem 0.5rem;
    font-size: calc(17px - 2px);
}
}

@media (max-width: 480px) {header .header_base {
    padding: 0.6rem 1.5%;
}header .header_primary svg {
    width: 110px;
}header .nav_lesson {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
}header .nav_lesson::-webkit-scrollbar {
    height: 2px;
}header .nav_lesson::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(188,169,146);
}header .main_pagewrap {
    flex-shrink: 0;
    white-space: nowrap;
}}.contact_section {
    overflow: hidden;
    position: relative;
    padding: 120px 0;
    z-index: 1;
}.contact_section::before {
    z-index: -1;
    background-color: rgb(188,169,146,0.5);
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    position: absolute;
    left: 0;
}.contact_section .container {
    padding: 0 15px;
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
}.contact_section .reach_feedback {
    overflow: hidden;
    border-radius: 23px;
    flex-direction: column;
    display: flex;
    position: relative;
    margin: 0 auto;
}.contact_section .feedback_section {
    border-radius: 23px 23px 0 0;
    position: relative;
    z-index: 2;
    order: 1;
    background-color: #ffffff;
    padding: 50px 30px;
    width: 100%;
}.contact_section .feedback_section h3 {
    display: inline-block;
    color: #000000;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 23px;
    position: relative;
}.contact_section .feedback_section h3::after {
    left: 0;
    bottom: -8px;
    height: 3px;
    position: absolute;
    background-color: rgb(153,133,116);
    width: 50%;
    content: '';
}.contact_section .feedback_section form {
    gap: 20px;
    flex-wrap: wrap;
    display: flex;
}.contact_section .feedback_section input[type="text"],
.contact_section .feedback_section input[type="email"] {
    height: 60px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    flex: 1 0 100%;
    border: none;
    color: #000000;
    padding: 0 20px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    background-color: rgb(224,204,181);
    font-size: 13px;
}.contact_section .feedback_section input[type="text"]:focus,
.contact_section .feedback_section input[type="email"]:focus {
    transform: translateY(-2px);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 0 3px rgb(153,133,116,0.5);
}.contact_section .feedback_section input::placeholder {
    color: #000000;
    opacity: 0.6;
}.contact_section .feedback_section .reach_widget {
    flex: 1 0 100%;
    align-items: flex-start;
    display: flex;
    margin-top: 10px;
}.contact_section .feedback_section .reach_widget input[type="checkbox"] {
    width: 24px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-right: 10px;
    position: relative;
    background-color: rgb(224,204,181);
    -webkit-appearance: none;
    border-radius: 10px;
    appearance: none;
    cursor: pointer;
    height: 24px;
    margin-top: 2px;
}.contact_section .feedback_section .reach_widget input[type="checkbox"]:checked {
    background-color: rgb(153,133,116);
}.contact_section .feedback_section .reach_widget input[type="checkbox"]:checked::before {
    transform: rotate(45deg);
    position: absolute;
    border-width: 0 2px 2px 0;
    top: 6px;
    content: '';
    border: solid #ffffff;
    height: 10px;
    left: 9px;
    width: 6px;
}.contact_section .feedback_section .reach_widget label {
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
}.contact_section .feedback_section .reach_widget label a {
    color: rgb(188,169,146);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}.contact_section .feedback_section .reach_widget label a::after {
    transform-origin: right;
    bottom: -2px;
    transition: transform 0.3s ease;
    position: absolute;
    left: 0;
    width: 100%;
    background-color: rgb(188,169,146);
    transform: scaleX(0);
    content: '';
    height: 1px;
}.contact_section .feedback_section .reach_widget label a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}.contact_section .feedback_section .connect_panel {
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 15px;
    background-color: rgb(153,133,116);
    border: none;
    flex: 1 0 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    letter-spacing: 1px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 10px rgb(153,133,116,0.5);
    font-weight: 600;
    border-radius: 10px;
    height: 60px;
    position: relative;
}.contact_section .feedback_section .connect_panel::before {
    left: 0;
    z-index: -1;
    background: rgb(188,169,146);
    border-radius: 10px;
    transform-origin: right;
    transform: scaleX(0);
    height: 100%;
    transition: transform 0.5s ease;
    width: 100%;
    position: absolute;
    content: '';
    top: 0;
}.contact_section .feedback_section .connect_panel:hover {
    box-shadow: 0 6px 15px rgb(188,169,146,0.5);
}.contact_section .feedback_section .connect_panel:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}.contact_section .inquiry_grid {
    position: relative;
    background-color: rgb(188,169,146);
    color: #ffffff;
    padding: 50px 30px;
    width: 100%;
    order: 2;
    flex-direction: column;
    border-radius: 0 0 23px 23px;
    display: flex;
    align-items: center;
}.contact_section .inquiry_grid::before {
    transform: translateY(-15px);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    width: 100%;
    height: 30px;
    content: '';
    background: rgb(188,169,146);
    top: 0;
    left: 0;
    position: absolute;
}.contact_section .inquiry_grid h3 {
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    position: relative;
    color: #ffffff;
    font-size: 38px;
    width: 100%;
}.contact_section .inquiry_grid h3::after {
    background-color: rgb(153,133,116);
    position: absolute;
    content: '';
    height: 3px;
    transform: translateX(-50%);
    bottom: -15px;
    left: 50%;
    width: 60px;
}.contact_section .inquiry_grid div {
    margin-bottom: 30px;
    max-width: 400px;
    position: relative;
    align-items: center;
    display: flex;
    padding: 0;
    width: 100%;
}.contact_section .inquiry_grid div::before {
    content: '';
    height: 1px;
    bottom: -10px;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    width: 100%;
    left: 0;
    opacity: 0.2;
    position: absolute;
}.contact_section .inquiry_grid div:last-child::before {
    display: none;
}.contact_section .inquiry_grid div svg {
    padding: 6px;
    margin-right: 20px;
    width: 32px;
    height: 32px;
    background-color: rgb(153,133,116);
    box-shadow: 0 4px 10px rgb(153,133,116,0.5);
    border-radius: 50%;
}.contact_section .inquiry_grid div svg path {
    fill: #ffffff;
}.contact_section .inquiry_grid div span {
    font-weight: 400;
    color: #ffffff;
    font-size: 13px;
}.contact_section .inquiry_grid div span a {
    color: #ffffff;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}.contact_section .inquiry_grid div span a::after {
    transform: scaleX(0);
    transition: transform 0.3s ease;
    left: 0;
    bottom: -2px;
    transform-origin: right;
    content: '';
    height: 1px;
    position: absolute;
    background-color: #ffffff;
    width: 100%;
}.contact_section .inquiry_grid div span a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media screen and (min-width: 992px) {.contact_section .reach_feedback {
    flex-direction: row;
    align-items: stretch;
}.contact_section .feedback_section {
    order: 1;
    border-radius: 23px 0 0 23px;
    width: 60%;
    padding: 60px;
}.contact_section .inquiry_grid {
    justify-content: center;
    padding: 60px 40px;
    border-radius: 0 23px 23px 0;
    order: 2;
    width: 40%;
}.contact_section .inquiry_grid::before {
    height: 100%;
    left: 0;
    transform: translateX(-15px);
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    width: 30px;
}.contact_section .feedback_section input#email {
    flex: 1 0 100%;
}
}

@media screen and (max-width: 991px) {.contact_section {
    padding: 80px 0;
}.contact_section .inquiry_grid div {
    max-width: 100%;
}
}

@media screen and (max-width: 767px) {.contact_section {
    padding: 60px 0;
}.contact_section .feedback_section,
    .contact_section .inquiry_grid {
    padding: 40px 25px;
}.contact_section .feedback_section h3,
    .contact_section .inquiry_grid h3 {
    font-size: calc(23px + 2px);
}.contact_section .feedback_section input[type="text"],
    .contact_section .feedback_section input[type="email"],
    .contact_section .feedback_section .connect_panel {
    height: 55px;
}
}

@media screen and (max-width: 480px) {.contact_section {
    padding: 40px 0;
}.contact_section .feedback_section,
    .contact_section .inquiry_grid {
    padding: 30px 20px;
}.contact_section .inquiry_grid div svg {
    height: 28px;
    margin-right: 15px;
    width: 28px;
}}.company_info {
    background: linear-gradient(145deg, rgb(224,204,181) 30%, rgba(rgb(188,169,146,0.5), 0.05) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}.company_info::before {
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(rgb(153,133,116,0.5), 0.07) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(rgb(188,169,146,0.5), 0.08) 0%, transparent 60%);
    z-index: 0;
    left: 0;
    top: 0;
    content: "";
    position: absolute;
    width: 100%;
}.company_info .container {
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}.company_info h1 {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    font-weight: 700;
    display: inline-block;
    animation: slideInTitle 0.8s ease-out forwards 0.2s;
    font-size: 47px;
    color: #000000;
    margin-bottom: 60px;
}.company_info h1::after {
    left: 0;
    animation: expandLine 0.6s ease-out forwards 1s;
    transform: scaleX(0);
    width: 80px;
    background: rgb(188,169,146);
    transform-origin: left;
    position: absolute;
    height: 4px;
    content: "";
    bottom: -12px;
}.company_info .virtual_study {
    position: relative;
}.company_info .virtual_study ul {
    list-style: none;
    display: grid;
    padding: 0;
    gap: 40px;
    margin: 0;
    grid-template-columns: 1fr;
}.company_info .learning_track {
    padding: 30px;
    position: relative;
    background: #ffffff;
    animation: fadeUpIn 0.8s ease-out forwards;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(rgba(0, 0, 0, 0.5), 0.1);
    opacity: 0;
    border-radius: 10px;
    transform: translateY(40px);
}.company_info .learning_track:nth-child(1) {
    animation-delay: 0.4s;
    transform: translateY(40px) rotate(-1deg);
}.company_info .learning_track:nth-child(2) {
    animation-delay: 0.6s;
    transform: translateY(40px) rotate(1deg);
}.company_info .learning_track::before {
    left: 0;
    animation: expandHeight 0.6s ease-out forwards 1.2s;
    content: "";
    width: 4px;
    background: linear-gradient(to bottom, rgb(188,169,146), rgb(153,133,116));
    top: 0;
    transform: scaleY(0);
    transform-origin: top;
    height: 100%;
    position: absolute;
}.company_info .learning_track h4 {
    margin-bottom: 15px;
    margin-left: 15px;
    color: #000000;
    position: relative;
    transform: translateX(-15px);
    font-size: 22px;
    animation: slideInHeading 0.6s ease-out forwards 0.8s;
    opacity: 0;
    font-weight: 600;
}.company_info .learning_track h4::before {
    transform: translateY(-50%) scale(0);
    width: 8px;
    background: rgb(188,169,146);
    content: "";
    left: -15px;
    height: 8px;
    border-radius: 50%;
    animation: popIn 0.4s ease-out forwards 1.2s;
    position: absolute;
    top: 50%;
}.company_info .learning_track div {
    line-height: 1.7;
    font-size: 15px;
    opacity: 0;
    color: #000000;
    animation: fadeUp 0.8s ease-out forwards 1s;
    font-family: Arial, sans-serif;
    transform: translateY(20px);
    margin-left: 15px;
}

@media (min-width: 768px) {.company_info {
    padding: 150px 0;
}.company_info h1 {
    margin-bottom: 80px;
    font-size: calc(47px * 1.1);
}.company_info h1::after {
    width: 120px;
}.company_info .virtual_study ul {
    gap: 60px;
    grid-template-columns: repeat(2, 1fr);
}.company_info .learning_track {
    padding: 40px;
}.company_info .learning_track:nth-child(1) {
    transform: translateY(25px) translateX(-15px) rotate(-1deg);
}.company_info .learning_track:nth-child(2) {
    transform: translateY(-25px) translateX(15px) rotate(1deg);
}
}

@media (min-width: 992px) {.company_info {
    padding: 180px 0;
}.company_info h1 {
    font-size: calc(47px * 1.2);
}.company_info .learning_track {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}.company_info .learning_track:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(rgba(0, 0, 0, 0.5), 0.15);
}.company_info .learning_track:hover::before {
    background: linear-gradient(to bottom, rgb(153,133,116), rgb(188,169,146));
}}

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

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

@keyframes fadeUpIn {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes expandHeight {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

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

@keyframes popIn {
    0% {
        transform: translateY(-50%) scale(0);
    }
    70% {
        transform: translateY(-50%) scale(1.3);
    }
    100% {
        transform: translateY(-50%) scale(1);
    }
}

@keyframes fadeUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}footer {
    width: 100%;
    position: relative;
}footer .desktop_app {
    font-family: Arial, sans-serif;
    background-color: rgb(224,204,181);
    position: relative;
    color: #000000;
    padding: 100px 0 30px;
}footer .desktop_app::before {
    left: 0;
    height: 100%;
    opacity: 0.3;
    background-image: 
        radial-gradient(circle at 10% 20%, rgb(188,169,146,0.5) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgb(153,133,116,0.5) 0%, transparent 20%);
    top: 0;
    z-index: 0;
    position: absolute;
    width: 100%;
    content: "";
}footer .footer_subscribe {
    position: relative;
    z-index: 1;
}footer .edu_faq {
    margin: auto;
    z-index: 3;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 27px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #ffffff;
    width: 85%;
    gap: 15px;
}footer .info_item {
    border-radius: 10px;
    display: flex;
    background-color: rgb(224,204,181);
    align-items: center;
    padding: 15px;
    flex: 1 1 200px;
    transition: all 0.3s ease;
}footer .info_item:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}footer .info_item svg {
    fill: rgb(188,169,146);
    margin-right: 12px;
    height: 22px;
    width: 22px;
    transition: transform 0.3s ease;
}footer .info_item:hover svg {
    transform: scale(1.2);
}footer .info_item p,
footer .info_item a {
    color: #000000;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}footer .info_item a:hover {
    color: rgb(188,169,146);
}footer .text_main_holder {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    perspective: 2000px;
    position: relative;
    display: flex;
}footer .main_nav, footer .nav_lesson, footer .subscribe_holder {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    position: relative;
    padding: 30px;
    border-radius: 27px;
    transform-origin: center center;
}footer .main_nav {
    background-color: #ffffff;
    transform: translateZ(0) scale(1);
    z-index: 2;
}footer .main_nav:hover {
    transform: translateZ(30px) scale(1.02);
}footer .nav_lesson {
    margin-right: 20px;
    color: #ffffff;
    transform: translateZ(-10px) scale(0.98);
    margin-left: 20px;
    background-color: rgb(153,133,116);
    margin-top: -20px;
    z-index: 1;
}footer .subscribe_holder {
    background-color: rgb(188,169,146);
    margin-left: 40px;
    color: #ffffff;
    margin-right: 40px;
    transform: translateZ(-20px) scale(0.96);
    margin-top: -20px;
    z-index: 0;
}footer .subscribe_holder:hover {
    transform: translateZ(10px) scale(0.98);
}footer .main_nav::after, footer .nav_lesson::after, footer .subscribe_holder::after {
    opacity: 0;
    z-index: -1;
    height: 100%;
    left: 0;
    width: 100%;
    content: "";
    top: 0;
    transition: opacity 0.3s ease;
    border-radius: 27px;
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}footer .main_nav:hover::after, footer .nav_lesson:hover::after, footer .subscribe_holder:hover::after {
    opacity: 1;
}footer .main_nav svg {
    height: 45px;
    display: block;
    margin-bottom: 20px;
    width: auto;
}footer .trophy_case {
    color: #000000;
    line-height: 1.6;
    font-size: 12px;
}footer .nav_lesson h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 19px;
    color: #ffffff;
    display: inline-block;
    position: relative;
}footer .nav_lesson h5::after {
    left: 0;
    position: absolute;
    transition: width 0.3s ease;
    bottom: -8px;
    height: 2px;
    content: "";
    width: 40px;
    background: linear-gradient(90deg, rgb(188,169,146), transparent);
}footer .nav_lesson h5:hover::after {
    width: 100%;
}footer .top_wrap {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    display: grid;
}footer .top_wrap a {
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    display: inline-block;
    font-size: 15px;
    transition: all 0.3s ease;
}footer .top_wrap a::before {
    background-color: rgb(188,169,146);
    width: 0;
    bottom: 0;
    height: 1px;
    position: absolute;
    transition: width 0.3s ease;
    left: 0;
    content: "";
}footer .top_wrap a:hover {
    color: #ffffff;
    transform: translateX(5px);
}footer .top_wrap a:hover::before {
    width: 100%;
}footer .subscribe_holder h5 {
    font-size: 19px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}footer .subscribe_holder p {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}footer .input_holder {
    display: flex;
    flex-direction: column;
    gap: 15px;
}footer .input_holder input[type="email"] {
    color: #ffffff;
    padding: 14px 16px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
}footer .input_holder input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .sub_cards {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    background-color: #ffffff;
    color: rgb(188,169,146);
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    cursor: pointer;
}footer .sub_cards:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    background-color: rgb(153,133,116);
}footer .play_market {
    position: relative;
    margin-top: 60px;
    text-align: center;
}footer .lang_learn {
    background-color: #ffffff;
    font-size: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 8px 20px;
    display: inline-block;
    color: #000000;
}

@media (min-width: 992px) {footer .text_main_holder {
    align-items: stretch;
    flex-direction: row;
}footer .main_nav, footer .nav_lesson, footer .subscribe_holder {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}footer .main_nav {
    margin-right: -20px;
}footer .nav_lesson {
    z-index: 1;
    margin-right: -20px;
    margin-left: 0;
}footer .subscribe_holder {
    margin-right: 0;
    margin-left: 0;
}
}

@media (max-width: 991px) {footer .edu_faq {
    padding: 20px;
    width: 90%;
}footer .text_main_holder {
    margin-top: 80px;
}
}

@media (max-width: 767px) {footer .desktop_app {
    padding: 80px 0 30px;
}footer .edu_faq {
    padding: 15px;
    width: 95%;
}footer .info_item {
    flex: 1 1 100%;
}footer .main_nav, footer .nav_lesson, footer .subscribe_holder {
    margin-left: 0;
    margin-right: 0;
    padding: 25px 20px;
}footer .nav_lesson, footer .subscribe_holder {
    margin-top: -10px;
}footer .play_market {
    margin-top: 40px;
}
}

@media (max-width: 576px) {footer .desktop_app {
    padding: 70px 0 20px;
}footer .edu_faq {
    padding: 10px;
}footer .info_item {
    padding: 10px;
}footer .text_main_holder {
    margin-top: 60px;
}footer .main_nav, footer .nav_lesson, footer .subscribe_holder {
    padding: 20px 15px;
}footer .nav_lesson h5, footer .subscribe_holder h5 {
    font-size: calc(19px - 2px);
}footer .top_wrap {
    grid-template-columns: 1fr;
}footer .input_holder input[type="email"],
    footer .sub_cards {
    padding: 12px;
}}.cookie_popup_interrupt {
    border-top: 3px solid rgb(188,169,146);
    position: fixed;
    justify-content: center;
    background: rgb(224,204,181);
    display: flex;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.5);
    bottom: 0;
    z-index: 100;
    width: 100%;
    padding: 20px 0;
}.cookie_review {
    align-items: center;
    border: 2px solid rgb(188,169,146);
    padding: 20px;
    display: flex;
    border-radius: 11px;
    margin: auto;
    max-width: 1200px;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.5);
    width: 90%;
}.cookie_notice {
    flex-shrink: 0;
    margin-right: 20px;
}.cookie_notice svg {
    width: 50px;
    fill: rgb(188,169,146);
    height: 50px;
}.track_switch {
    text-align: left;
    flex-grow: 1;
    color: #ffffff;
}.track_switch h5 {
    color: rgb(188,169,146);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 23px;
}.track_switch p {
    color: #ffffff;
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
}.track_switch p a {
    color: rgb(188,169,146);
    text-decoration: underline;
}.user_tracker {
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    flex-shrink: 0;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
    background: rgb(188,169,146);
    min-width: 120px;
}.cookie_button.user_safety {
    margin-right: 10px;
}#cookie_disclaimer {
    display: none;
}#cookie_disclaimer:checked ~ .cookie_popup_interrupt {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1200px) {.cookie_review {
    flex-direction: column;
    align-items: center;
    text-align: center;
}.cookie_notice {
    margin-right: 0;
    margin-bottom: 20px;
}.user_tracker {
    margin: 10px 0;
    max-width: 250px;
    width: 100%;
}}
.welcome_board {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000000;
}.welcome_board::before {
    content: "";
    top: 0;
    position: absolute;
    background: repeating-linear-gradient(
        -45deg,
        rgb(188,169,146,0.5) 0,
        rgb(188,169,146,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    z-index: 1;
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0.1;
}.welcome_board .learn_academy {
    display: grid;
    position: relative;
    width: 100%;
    grid-template-columns: 2fr 1fr;
    z-index: 2;
    height: 75vh;
}.welcome_board .main_home {
    height: 75vh;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    border-radius: 0 0 18px 0;
    width: 100%;
}.welcome_board .main_home input {
    display: none;
}.welcome_board .fast_school {
    transition: transform 0.7s cubic-bezier(0.5, 0, 0.2, 1);
    width: 500%;
    height: 100%;
    display: flex;
}.welcome_board .edu_home {
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 20%;
}.welcome_board .edu_home img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transform: scale(1.1);
    transition: transform 1.2s ease-out, filter 0.7s ease;
    filter: contrast(1.05) brightness(0.9);
}.welcome_board .intro_title {
    bottom: 0;
    border-radius: 0 18px 0 0;
    left: 0;
    padding: 15px 20px;
    display: flex;
    position: absolute;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
}.welcome_board .intro_title label {
    border: 2px solid rgb(153,133,116,0.5);
    transition: all 0.3s ease-out;
    margin: 0 6px;
    position: relative;
    cursor: pointer;
    background: transparent;
    height: 12px;
    width: 12px;
    border-radius: 50%;
}.welcome_board .intro_title label::after {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgb(153,133,116);
    content: "";
    transform: scale(0);
    inset: 2px;
    position: absolute;
    border-radius: 50%;
}.welcome_board .intro_title label:hover::after {
    transform: scale(0.5);
}.welcome_board .content_pad {
    background: rgb(188,169,146);
    overflow: hidden;
    padding: 0 2rem 0 3rem;
    flex-direction: column;
    position: relative;
    justify-content: center;
    display: flex;
}.welcome_board .content_pad::before {
    opacity: 0.15;
    position: absolute;
    height: 100%;
    top: 0;
    background: 
        linear-gradient(135deg, rgb(188,169,146,0.5) 0%, transparent 100%),
        radial-gradient(circle at 90% 90%, rgb(153,133,116,0.5) 0%, transparent 50%);
    left: 0;
    z-index: 0;
    content: "";
    width: 100%;
}.welcome_board .content_pad .container {
    position: relative;
    max-width: 100%;
    z-index: 1;
}.welcome_board .content_pad h1 {
    position: relative;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 43px;
    color: #ffffff;
}.welcome_board .content_pad h1::after {
    content: "";
    background: rgb(153,133,116);
    position: absolute;
    height: 3px;
    width: 40%;
    left: 0;
    bottom: -8px;
}.welcome_board .content_pad h3 {
    font-size: 24px;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 600;
}.welcome_board .content_pad p {
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 17px;
    opacity: 0.8;
    color: #ffffff;
    max-width: 100%;
    line-height: 1.7;
}.welcome_board input:nth-of-type(1):checked ~ .fast_school {
    transform: translateX(0);
}.welcome_board input:nth-of-type(2):checked ~ .fast_school {
    transform: translateX(-20%);
}.welcome_board input:nth-of-type(3):checked ~ .fast_school {
    transform: translateX(-40%);
}.welcome_board input:nth-of-type(4):checked ~ .fast_school {
    transform: translateX(-60%);
}.welcome_board input:nth-of-type(5):checked ~ .fast_school {
    transform: translateX(-80%);
}.welcome_board input:nth-of-type(6):checked ~ .fast_school {
    transform: translateX(-100%);
}.welcome_board input:nth-of-type(7):checked ~ .fast_school {
    transform: translateX(-120%);
}.welcome_board input:nth-of-type(8):checked ~ .fast_school {
    transform: translateX(-140%);
}.welcome_board input:nth-of-type(9):checked ~ .fast_school {
    transform: translateX(-160%);
}.welcome_board input:nth-of-type(10):checked ~ .fast_school {
    transform: translateX(-180%);
}.welcome_board input:nth-of-type(1):checked ~ .intro_title label:nth-child(1)::after,
.welcome_board input:nth-of-type(2):checked ~ .intro_title label:nth-child(2)::after,
.welcome_board input:nth-of-type(3):checked ~ .intro_title label:nth-child(3)::after,
.welcome_board input:nth-of-type(4):checked ~ .intro_title label:nth-child(4)::after,
.welcome_board input:nth-of-type(5):checked ~ .intro_title label:nth-child(5)::after,
.welcome_board input:nth-of-type(6):checked ~ .intro_title label:nth-child(6)::after,
.welcome_board input:nth-of-type(7):checked ~ .intro_title label:nth-child(7)::after,
.welcome_board input:nth-of-type(8):checked ~ .intro_title label:nth-child(8)::after,
.welcome_board input:nth-of-type(9):checked ~ .intro_title label:nth-child(9)::after,
.welcome_board input:nth-of-type(10):checked ~ .intro_title label:nth-child(10)::after {
    transform: scale(1);
}.welcome_board input:nth-of-type(1):checked ~ .intro_title label:nth-child(1),
.welcome_board input:nth-of-type(2):checked ~ .intro_title label:nth-child(2),
.welcome_board input:nth-of-type(3):checked ~ .intro_title label:nth-child(3),
.welcome_board input:nth-of-type(4):checked ~ .intro_title label:nth-child(4),
.welcome_board input:nth-of-type(5):checked ~ .intro_title label:nth-child(5),
.welcome_board input:nth-of-type(6):checked ~ .intro_title label:nth-child(6),
.welcome_board input:nth-of-type(7):checked ~ .intro_title label:nth-child(7),
.welcome_board input:nth-of-type(8):checked ~ .intro_title label:nth-child(8),
.welcome_board input:nth-of-type(9):checked ~ .intro_title label:nth-child(9),
.welcome_board input:nth-of-type(10):checked ~ .intro_title label:nth-child(10) {
    transform: scale(1.1);
    border-color: rgb(153,133,116);
}.welcome_board input:checked ~ .fast_school .edu_home img {
    transform: scale(1);
    filter: contrast(1.1) brightness(1);
}

@media (max-width: 1199px) {.welcome_board .content_pad {
    padding: 0 1.5rem 0 2.5rem;
}
}

@media (max-width: 991px) {.welcome_board .learn_academy {
    grid-template-columns: 1.5fr 1fr;
}.welcome_board .content_pad {
    padding: 0 1.2rem 0 2rem;
}.welcome_board .content_pad h1 {
    font-size: calc(43px * 0.9);
}.welcome_board .content_pad h3 {
    font-size: calc(24px * 0.9);
    margin-bottom: 1.5rem;
}.welcome_board .content_pad p {
    font-size: calc(17px * 0.95);
}
}

@media (max-width: 767px) {.welcome_board .learn_academy {
    grid-template-columns: 1fr;
    min-height: 80vh;
    grid-template-rows: 1fr auto;
    height: auto;
}.welcome_board .main_home {
    height: 50vh;
    border-radius: 0;
}.welcome_board .content_pad {
    padding: 2.5rem 2rem;
}.welcome_board .content_pad h1 {
    font-size: calc(43px * 0.85);
}.welcome_board .content_pad h3 {
    margin-bottom: 1.2rem;
    font-size: calc(24px * 0.85);
}.welcome_board .intro_title {
    border-radius: 0;
}
}

@media (max-width: 575px) {.welcome_board .main_home {
    height: 45vh;
}.welcome_board .content_pad {
    padding: 2rem 1.5rem;
}.welcome_board .content_pad h1 {
    font-size: calc(43px * 0.8);
    margin-bottom: 1.2rem;
}.welcome_board .content_pad h3 {
    margin-bottom: 1rem;
    font-size: calc(18px * 1.1);
}.welcome_board .content_pad p {
    font-size: calc(17px * 0.9);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}.welcome_board .intro_title {
    padding: 12px 15px;
}.welcome_board .intro_title label {
    width: 10px;
    height: 10px;
    margin: 0 5px;
}
}

@media (max-width: 480px) {.welcome_board .main_home {
    height: 40vh;
}
}

@media (max-width: 400px) {.welcome_board .main_home {
    height: 35vh;
}
}

@media (orientation: landscape) and (max-height: 600px) and (min-width: 768px) {.welcome_board .learn_academy {
    height: 85vh;
}.welcome_board .main_home {
    height: 85vh;
}}.education_history {
    background: linear-gradient(135deg, rgb(224,204,181) 0%, rgb(188,169,146,0.5) 100%);
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.education_history::before {
    background: rgb(153,133,116,0.5);
    position: absolute;
    width: 300px;
    z-index: 0;
    top: -50px;
    filter: blur(80px);
    right: -50px;
    content: "";
    height: 300px;
    transform: rotate(-15deg);
}.education_history::after {
    position: absolute;
    height: 250px;
    width: 250px;
    z-index: 0;
    transform: rotate(25deg);
    filter: blur(60px);
    background: rgb(188,169,146,0.5);
    left: -50px;
    bottom: -80px;
    content: "";
}.education_history .container {
    position: relative;
    margin: 0 auto;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
}.education_history .student_glow {
    transform: perspective(1000px) rotateY(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #ffffff;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    grid-template-columns: 1fr;
    display: grid;
    padding: 40px;
}.education_history .student_glow:hover {
    transform: perspective(1000px) rotateY(0deg);
}.education_history .student_glow::before {
    transform: scaleY(0);
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    width: 5px;
    content: "";
    top: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgb(188,169,146), rgb(153,133,116));
    transform-origin: left center;
    left: 0;
}.education_history .student_glow:hover::before {
    transform: scaleY(1);
}.education_history .img_placeholder {
    position: relative;
    height: 200px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 200px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border: 3px solid #ffffff;
}.education_history .student_glow:hover .img_placeholder {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}.education_history .img_placeholder::after {
    top: 0;
    opacity: 0;
    height: 100%;
    transition: opacity 0.6s ease;
    position: absolute;
    content: "";
    width: 100%;
    background: linear-gradient(135deg, rgb(188,169,146,0.5) 0%, transparent 50%, rgb(153,133,116,0.5) 100%);
    left: 0;
}.education_history .student_glow:hover .img_placeholder::after {
    opacity: 0.4;
}.education_history .name {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    margin: 0 0 5px 0;
    color: rgb(188,169,146);
    display: inline-block;
    transform: translateX(0);
    font-size: calc(23px * 1.1);
    font-weight: 700;
}.education_history .student_glow:hover .name {
    transform: translateX(10px);
}.education_history .name::after {
    position: absolute;
    width: 0;
    height: 2px;
    background: rgb(153,133,116);
    left: 0;
    content: "";
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
    bottom: -3px;
}.education_history .student_glow:hover .name::after {
    width: 100%;
}.education_history .student_glow > div:nth-child(2) > div {
    font-weight: 600;
    color: #000000;
    transition: padding-left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    padding-left: 0;
    margin-bottom: 15px;
    font-size: calc(14px * 0.95);
}.education_history .student_glow:hover > div:nth-child(2) > div {
    padding-left: 10px;
}.education_history .experience {
    background: linear-gradient(to right, #ffffff, rgb(224,204,181), #ffffff);
    font-size: 14px;
    position: relative;
    color: #000000;
    background-size: 200% 100%;
    padding: 25px 20px;
    border-radius: 10px;
    line-height: 1.8;
    transition: background-position 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    margin: 0;
}.education_history .student_glow:hover .experience {
    background-position: right center;
}.education_history .experience::before,
.education_history .experience::after {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 60px;
    color: rgb(188,169,146,0.5);
    content: "";
    font-family: Georgia, serif;
    line-height: 1;
    position: absolute;
}.education_history .experience::before {
    left: -10px;
    top: -10px;
    opacity: 0.5;
    transform: translateX(-20px) translateY(-20px) scale(0.8);
}.education_history .experience::after {
    content: "";
    bottom: -30px;
    transform: translateX(20px) translateY(20px) scale(0.8);
    opacity: 0.5;
    right: -10px;
}.education_history .student_glow:hover .experience::before {
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.7;
}.education_history .student_glow:hover .experience::after {
    opacity: 0.7;
    transform: translateX(0) translateY(0) scale(1);
}

@media (min-width: 768px) {.education_history .student_glow {
    grid-template-rows: auto 1fr;
    grid-template-columns: 220px 1fr;
    gap: 25px 40px;
}.education_history .student_glow > div:first-child {
    display: flex;
    justify-content: center;
    grid-row: 1 / 3;
    align-items: center;
}.education_history .student_glow > div:nth-child(2) {
    align-self: end;
}.education_history .student_glow > div:nth-child(3) {
    grid-column: 2 / 3;
}.education_history .img_placeholder {
    width: 200px;
    height: 200px;
}
}

@media (min-width: 992px) {.education_history {
    padding: 150px 0;
}.education_history .student_glow {
    padding: 60px;
    transform: perspective(1500px) rotateY(3deg);
    gap: 30px 60px;
}.education_history .img_placeholder {
    height: 240px;
    width: 240px;
}.education_history .name {
    font-size: calc(23px * 1.2);
}.education_history .student_glow > div:nth-child(2) > div {
    font-size: 14px;
}.education_history .experience {
    line-height: 1.9;
    padding: 30px 25px;
    font-size: calc(14px * 1.05);
}
}

@media (max-width: 767px) {.education_history {
    padding: 80px 0;
}.education_history .student_glow {
    padding: 30px 25px;
    gap: 20px;
}.education_history .img_placeholder {
    height: 150px;
    width: 150px;
}.education_history .name {
    font-size: 23px;
    text-align: center;
}.education_history .student_glow > div:nth-child(2) {
    text-align: center;
}.education_history .student_glow > div:nth-child(2) > div {
    font-size: calc(14px * 0.9);
}.education_history .experience {
    padding: 20px 15px;
    line-height: 1.7;
    font-size: calc(14px * 0.95);
}}.interested_learners {
    position: relative;
    background: linear-gradient(135deg, rgb(224,204,181) 0%, rgb(188,169,146,0.5) 100%);
    padding: 5rem 2rem;
    overflow: hidden;
}.interested_learners::before {
    border: 2px solid rgba(255, 255, 255, 0.1);
    left: 50%;
    height: 500px;
    border-radius: 50%;
    position: absolute;
    animation: rotate 20s linear infinite;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 500px;
    z-index: 1;
}.interested_learners::after {
    content: "";
    border-radius: 50%;
    position: absolute;
    animation: rotate-reverse 30s linear infinite;
    width: 800px;
    border: 4px dotted rgb(188,169,146,0.5);
    z-index: 1;
    height: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

.interested_learners .learn_academy {
    max-width: 1200px;
    position: relative;
    padding: 2rem;
    z-index: 5;
    margin: 0 auto;
    border-radius: 13px;
}.interested_learners .learn_academy::before {
    position: absolute;
    height: 300px;
    transform: translate(-50%, -50%);
    top: 50%;
    animation: pulse 8s ease-in-out infinite alternate;
    filter: blur(50px);
    background: radial-gradient(circle, rgb(153,133,116,0.5) 0%, transparent 70%);
    width: 300px;
    left: 50%;
    content: "";
    z-index: -1;
    border-radius: 50%;
}@keyframes pulse {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

.interested_learners h3 {
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 10;
    font-size: 30px;
    margin-bottom: 4rem;
}.interested_learners h3::after {
    bottom: -15px;
    position: absolute;
    box-shadow: 0 0 15px rgb(188,169,146);
    animation: glow 3s infinite alternate;
    background: rgb(188,169,146);
    content: "";
    transform: translateX(-50%);
    height: 3px;
    border-radius: 50px;
    left: 50%;
    width: 150px;
}@keyframes glow {
    0% { box-shadow: 0 0 5px rgb(188,169,146); }
    100% { box-shadow: 0 0 20px rgb(188,169,146), 0 0 40px rgb(188,169,146,0.5); }
}

.interested_learners ul {
    margin: 0;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    list-style: none;
    padding: 0;
    display: grid;
}.interested_learners li {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    position: relative;
    font-size: 16px;
    overflow: hidden;
    border-radius: 50px;
    display: flex;
    color: #ffffff;
}.interested_learners li::before {
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    left: 0;
    height: 100%;
    content: "";
    z-index: -1;
    top: 0;
    width: 100%;
    position: absolute;
}.interested_learners li::after {
    z-index: 0;
    height: 150%;
    transform: rotate(20deg) translateX(-150px);
    position: absolute;
    animation-delay: calc(var(--i, 0) * 1s);
    content: "";
    animation: data-stream 5s infinite;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    opacity: 0;
}.interested_learners li:nth-child(1) {
    --i: 0;
}.interested_learners li:nth-child(2) {
    --i: 1;
}.interested_learners li:nth-child(3) {
    --i: 2;
}.interested_learners li:nth-child(4) {
    --i: 3;
}.interested_learners li:nth-child(5) {
    --i: 4;
}.interested_learners li:nth-child(6) {
    --i: 5;
}.interested_learners li:nth-child(7) {
    --i: 6;
}.interested_learners li:nth-child(8) {
    --i: 7;
}.interested_learners li:nth-child(9) {
    --i: 8;
}.interested_learners li:nth-child(10) {
    --i: 9;
}@keyframes data-stream {
    0% { transform: rotate(20deg) translateX(-150px); opacity: 0; }
    20% { opacity: 0.5; }
    100% { transform: rotate(20deg) translateX(500px); opacity: 0; }
}

.interested_learners li:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
    border-color: rgb(153,133,116);
}.interested_learners svg {
    z-index: 2;
    width: 30px;
    position: relative;
    margin-right: 1.5rem;
    height: 30px;
    transition: all 0.4s ease;
}.interested_learners svg path {
    transition: all 0.4s ease;
    fill: rgb(153,133,116);
}.interested_learners li:hover svg {
    transform: rotate(15deg);
}.interested_learners li:hover svg path {
    fill: rgb(188,169,146);
}

@media (max-width: 1200px) {.interested_learners::before {
    height: 400px;
    width: 400px;
}.interested_learners::after {
    width: 600px;
    height: 600px;
}
}

@media (max-width: 992px) {.interested_learners {
    padding: 4rem 1.5rem;
}.interested_learners ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}.interested_learners li {
    padding: 1.25rem 1.5rem;
}
}

@media (max-width: 768px) {.interested_learners {
    padding: 3.5rem 1.5rem;
}.interested_learners ul {
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.interested_learners::before {
    height: 300px;
    width: 300px;
}.interested_learners::after {
    width: 450px;
    height: 450px;
}.interested_learners h3 {
    font-size: calc(30px * 0.9);
}
}

@media (max-width: 576px) {.interested_learners {
    padding: 3rem 1rem;
}.interested_learners .learn_academy {
    padding: 1.5rem 1rem;
}.interested_learners h3 {
    margin-bottom: 3rem;
    font-size: calc(30px * 0.8);
}.interested_learners li {
    padding: 1rem 1.25rem;
}.interested_learners svg {
    margin-right: 1rem;
    width: 25px;
    height: 25px;
}}.tyHub {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(224,204,181) 0%, rgb(153,133,116,0.5) 100%);
    overflow: hidden;
    perspective: 1000px;
    position: relative;
}.tyHub::before {
    content: "";
    background: radial-gradient(ellipse at center, rgb(188,169,146,0.5) 0%, transparent 70%);
    position: absolute;
    opacity: 0.7;
    animation: floatGradient 15s ease-in-out infinite alternate;
    width: 60%;
    z-index: 1;
    right: -5%;
    height: 70%;
    top: -10%;
    transform: rotate(-15deg);
}.tyHub::after {
    background: radial-gradient(ellipse at center, rgb(153,133,116,0.5) 0%, transparent 70%);
    content: "";
    position: absolute;
    transform: rotate(10deg);
    height: 60%;
    left: -10%;
    width: 70%;
    animation: floatGradient 18s ease-in-out infinite alternate-reverse;
    z-index: 1;
    opacity: 0.5;
    bottom: -5%;
}.tyHub .container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}.tyHub .learn_academy {
    transform-style: preserve-3d;
    transform: rotateX(5deg);
    flex-direction: column;
    display: flex;
    padding: 3rem;
    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);
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}.tyHub .learn_academy:hover {
    transform: rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}.tyHub .learn_academy > div:first-child {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(30px);
    margin-bottom: 2rem;
    position: relative;
}.tyHub .learn_academy:hover > div:first-child {
    transform: translateZ(40px);
}.tyHub .learn_academy > div:first-child::before {
    top: -10px;
    position: absolute;
    width: 60px;
    left: -20px;
    background: rgb(188,169,146);
    z-index: -1;
    content: "";
    opacity: 0.1;
    height: 60px;
    border-radius: 10px;
    transform: rotate(25deg);
}.tyHub .learn_academy > div:first-child::after {
    width: 70px;
    background: rgb(153,133,116);
    content: "";
    transform: skewX(-20deg);
    height: 10px;
    bottom: -15px;
    right: 30px;
    position: absolute;
    opacity: 0.2;
}.tyHub h5 {
    line-height: 1.4;
    font-weight: 700;
    transition: transform 0.5s ease;
    transform: translateX(0);
    font-size: 21px;
    padding-bottom: 1rem;
    position: relative;
    margin: 0;
    color: #000000;
}.tyHub h5::after {
    background: linear-gradient(90deg, rgb(188,169,146) 0%, rgb(153,133,116) 100%);
    width: 0;
    position: absolute;
    left: 0;
    transition: width 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    bottom: 0;
    height: 3px;
    content: "";
}.tyHub .learn_academy:hover h5::after {
    width: 80px;
}.tyHub .learn_academy > div:last-child {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    transform: translateZ(15px);
}.tyHub .learn_academy:hover > div:last-child {
    transform: translateZ(25px);
}.tyHub a {
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.5s ease;
    display: block;
    position: relative;
}.tyHub a::before {
    transform: scaleX(0);
    top: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    background: rgb(188,169,146);
    opacity: 0;
    content: "";
    left: 0;
    position: absolute;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
    transform-origin: left;
}.tyHub a:hover::before {
    opacity: 0.05;
    transform: scaleX(1);
}.tyHub p {
    position: relative;
    line-height: 1.8;
    transform: translateY(0);
    color: #000000;
    font-weight: 400;
    font-size: 15px;
    margin: 0;
    transition: transform 0.4s ease, color 0.3s ease;
    font-family: Arial, sans-serif;
}.tyHub a:hover p {
    color: #000000;
    transform: translateY(-2px);
}

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

@media screen and (min-width: 768px) {.tyHub {
    padding: 8rem 0;
}.tyHub .learn_academy {
    max-width: 90%;
    padding: 4rem;
    margin: 0 auto;
}.tyHub h5 {
    line-height: 1.3;
    font-size: calc(21px * 1.2);
}.tyHub p {
    line-height: 1.7;
    font-size: calc(15px * 1.1);
}.tyHub .learn_academy > div:first-child {
    margin-bottom: 2.5rem;
}
}

@media screen and (min-width: 992px) {.tyHub {
    padding: 10rem 0;
}.tyHub .learn_academy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5rem;
    align-items: center;
    max-width: 80%;
    gap: 3rem;
}.tyHub .learn_academy > div:first-child {
    margin-bottom: 0;
}.tyHub h5 {
    font-size: calc(21px * 1.3);
}.tyHub h5::after {
    width: 0;
}.tyHub .learn_academy:hover h5::after {
    width: 120px;
}
}

@media screen and (max-width: 767px) {.tyHub {
    padding: 4rem 0;
}.tyHub .learn_academy {
    transform: rotateX(2deg);
    padding: 2rem;
}.tyHub h5 {
    font-size: 21px;
}.tyHub p {
    line-height: 1.6;
    font-size: 15px;
}.tyHub .learn_academy > div:first-child {
    margin-bottom: 1.5rem;
}.tyHub .learn_academy:hover > div:first-child {
    transform: translateZ(20px);
}.tyHub .learn_academy:hover > div:last-child {
    transform: translateZ(10px);
}}.pricing_grid_item {
    position: relative;
    z-index: 1;
    padding: 120px 0 100px;
    overflow: hidden;
}.pricing_grid_item::before {
    height: 100%;
    content: "";
    width: 100%;
    background: linear-gradient(135deg, rgb(153,133,116,0.5), rgba(0, 0, 0, 0.5) 80%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}.pricing_grid_item::after {
    width: 200%;
    left: -50%;
    content: "";
    position: absolute;
    background: radial-gradient(circle at center, transparent 45%, rgba(255, 255, 255, 0.03) 50%, transparent 55%);
    pointer-events: none;
    height: 200%;
    z-index: -1;
    animation: rotateBackground 180s linear infinite;
    top: -50%;
}.pricing_grid_item .container {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    max-width: 1200px;
}.learn_deals {
    position: relative;
}.pricing_grid_item h2 {
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 30px;
    text-align: center;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) translateZ(20px);
}.pricing_grid_item h2::after {
    transform: translateX(-50%);
    width: 80px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgb(188,169,146), transparent);
    content: "";
}.pricing_grid_item .cert_fees {
    margin: 0 auto 60px;
    max-width: 800px;
    font-size: 16px;
    opacity: 0.9;
    transform: perspective(1000px) translateZ(10px);
    line-height: 1.6;
    text-align: center;
    color: #ffffff;
}.pricing_grid_item .pricing_catalog {
    list-style: none;
    display: grid;
    padding: 0;
    perspective: 1000px;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.pricing_grid_item .pricing_catalog li {
    transform-style: preserve-3d;
    transition: transform 0.5s ease-out;
}.pricing_grid_item .promo_rates {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    height: 100%;
    display: block;
}.pricing_grid_item .pricing_card {
    backdrop-filter: blur(8px);
    padding: 30px;
    overflow: hidden;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2),
              -10px -10px 30px rgba(255, 255, 255, 0.05),
              inset 2px 2px 4px rgba(255, 255, 255, 0.05),
              inset -2px -2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
    position: relative;
    border-radius: 16px;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 100%;
}.pricing_grid_item .pricing_card::before {
    border-radius: 50%;
    opacity: 0.1;
    content: "";
    right: -40px;
    background: rgb(188,169,146);
    transition: transform 0.5s ease-out;
    width: 80px;
    position: absolute;
    height: 80px;
    top: -40px;
}.pricing_grid_item .pricing_card::after {
    transition: transform 0.5s ease-out;
    transform-origin: left;
    content: "";
    width: 100%;
    height: 3px;
    transform: scaleX(0.7);
    bottom: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg, rgb(188,169,146), transparent);
}.pricing_grid_item .program_fees {
    position: relative;
    transform: translateZ(20px);
    z-index: 2;
}.pricing_grid_item .promo_rates h4 {
    color: #ffffff;
    display: inline-block;
    margin: 0 0 20px;
    position: relative;
    font-weight: 600;
    font-size: calc(21px + 2px);
}.pricing_grid_item .promo_rates h4::after {
    width: 40px;
    height: 2px;
    transition: width 0.3s ease;
    background: rgb(188,169,146);
    position: absolute;
    content: "";
    left: 0;
    bottom: -8px;
}.pricing_grid_item .promo_rates p {
    line-height: 1.6;
    scrollbar-color: rgb(188,169,146) transparent;
    scrollbar-width: thin;
    font-size: calc(16px - 1px);
    margin-bottom: 25px;
    padding-right: 10px;
    opacity: 0.8;
    overflow-y: auto;
    max-height: 240px;
    color: #ffffff;
}.pricing_grid_item .promo_rates p::-webkit-scrollbar {
    width: 4px;
}.pricing_grid_item .promo_rates p::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}.pricing_grid_item .promo_rates p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(188,169,146);
}.pricing_grid_item .rate_packages {
    display: block;
    position: relative;
    font-weight: 700;
    margin-top: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: right;
    font-size: calc(21px + 6px);
    color: #ffffff;
}.pricing_grid_item .rate_packages::before {
    transition: transform 0.3s ease;
    position: absolute;
    transform-origin: right;
    transform: scaleX(0);
    bottom: -10px;
    right: 0;
    background: rgb(188,169,146);
    height: 2px;
    content: "";
    width: 60px;
}.pricing_grid_item .promo_rates:hover .pricing_card {
    transform: translateY(-8px) translateZ(0);
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.25),
              -15px -15px 40px rgba(255, 255, 255, 0.07),
              inset 2px 2px 4px rgba(255, 255, 255, 0.05),
              inset -2px -2px 4px rgba(0, 0, 0, 0.1);
}.pricing_grid_item .promo_rates:hover .pricing_card::before {
    transform: scale(3);
    opacity: 0.05;
}.pricing_grid_item .promo_rates:hover .pricing_card::after {
    transform: scaleX(1);
}.pricing_grid_item .promo_rates:hover h4::after {
    width: 100%;
}.pricing_grid_item .promo_rates:hover .rate_packages::before {
    transform: scaleX(1);
}

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

@media screen and (min-width: 1200px) {.pricing_grid_item .pricing_catalog {
    grid-template-columns: repeat(4, 1fr);
}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {.pricing_grid_item .pricing_catalog {
    grid-template-columns: repeat(3, 1fr);
}.pricing_grid_item {
    padding: 100px 0 80px;
}
}

@media screen and (min-width: 768px) and (max-width: 991px) {.pricing_grid_item .pricing_catalog {
    grid-template-columns: repeat(2, 1fr);
}.pricing_grid_item {
    padding: 80px 0 60px;
}.pricing_grid_item .cert_fees {
    margin-bottom: 50px;
}
}

@media screen and (max-width: 767px) {.pricing_grid_item .pricing_catalog {
    margin: 0 auto;
    grid-template-columns: 1fr;
    max-width: 400px;
}.pricing_grid_item {
    padding: 60px 0 40px;
}.pricing_grid_item h2 {
    font-size: calc(30px - 4px);
}.pricing_grid_item .cert_fees {
    margin-bottom: 40px;
    font-size: calc(16px - 1px);
}.pricing_grid_item .pricing_card {
    padding: 25px 20px;
}
}

@media (hover: none) {.pricing_grid_item .pricing_card {
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.2),
                -8px -8px 20px rgba(255, 255, 255, 0.05);
}.pricing_grid_item .promo_rates:active .pricing_card {
    transform: translateY(-5px);
}
}

@media (prefers-reduced-motion: reduce) {.pricing_grid_item::after {
    animation: none;
}.pricing_grid_item .promo_rates:hover .pricing_card {
    transform: none;
}.pricing_grid_item .promo_rates:hover .pricing_card::before {
    transform: none;
}}.program_information {
    background: linear-gradient(215deg, rgb(224,204,181) 0%, rgba(0, 0, 0, 0.5) 50%, rgb(188,169,146,0.5) 90%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.program_information::before {
    height: 100%;
    background-image: 
        linear-gradient(transparent 0%, transparent 49%, #ffffff 49%, #ffffff 51%, transparent 51%, transparent 100%),
        linear-gradient(90deg, transparent 0%, transparent 49%, #ffffff 49%, #ffffff 51%, transparent 51%, transparent 100%);
    z-index: 1;
    animation: gridFlow 20s linear infinite;
    content: "";
    width: 100%;
    position: absolute;
    opacity: 0.03;
    left: 0;
    background-size: 40px 40px;
    top: 0;
}.program_information::after {
    position: absolute;
    z-index: 1;
    content: "";
    top: -50%;
    left: -50%;
    opacity: 0.4;
    height: 200%;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.5) 90%);
    width: 200%;
    animation: rotateBg 60s linear infinite;
}.program_information .container {
    z-index: 3;
    position: relative;
}.program_information .learn_academy {
    display: flex;
    justify-content: center;
    min-height: 500px;
    align-items: center;
    position: relative;
}.program_information .img_placeholder {
    position: absolute;
    left: 0;
    height: 100%;
    z-index: 1;
    transform: scale(1);
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    top: 0;
    width: 100%;
}.program_information .img_placeholder::before {
    bottom: 0;
    transition: opacity 0.5s ease;
    content: "";
    position: absolute;
    background: linear-gradient(
        145deg,
        transparent 0%,
        rgb(188,169,146,0.5) 100%
    );
    right: 0;
    opacity: 0.85;
    z-index: 2;
    left: 0;
    mix-blend-mode: multiply;
    top: 0;
}.program_information .img_placeholder::after {
    content: "";
    z-index: 3;
    top: 0;
    right: 0;
    opacity: 0.7;
    bottom: 0;
    background: 
        radial-gradient(circle at 75% 25%, transparent 0%, rgba(0, 0, 0, 0.5) 90%),
        linear-gradient(to bottom, transparent 30%, #000000 100%);
    left: 0;
    position: absolute;
}.program_information .learn_academy:hover .img_placeholder {
    transform: scale(1.03);
}.program_information .learn_academy:hover .img_placeholder::before {
    opacity: 0.6;
}.program_information .education {
    z-index: 4;
    position: relative;
    padding-bottom: 60px;
    width: 70%;
    padding-top: 60px;
    background: transparent;
}.program_information .main_nav {
    z-index: 5;
    justify-content: center;
    display: flex;
    top: -30px;
    background: #ffffff;
    height: 110px;
    transform-style: preserve-3d;
    right: 10%;
    width: 110px;
    align-items: center;
    perspective: 1000px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 0 15px rgb(153,133,116,0.5);
    animation: floatLogo 6s ease-in-out infinite;
    border-radius: 43% 57% 63% 37% / 41% 65% 35% 59%;
    position: absolute;
}.program_information .main_nav::before {
    content: "";
    opacity: 0.3;
    inset: -5px;
    animation: rotateBorderGradient 10s linear infinite;
    border-radius: inherit;
    filter: blur(10px);
    background: linear-gradient(
        45deg,
        rgb(188,169,146,0.5),
        rgb(153,133,116,0.5),
        rgb(188,169,146,0.5)
    );
    position: absolute;
    z-index: -1;
}.program_information .main_nav svg {
    height: 60%;
    width: 60%;
    fill: rgb(188,169,146);
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    transform: translateZ(20px);
}.program_information .main_nav:hover svg {
    fill: rgb(153,133,116);
    transform: translateZ(30px) scale(1.1);
}.program_information .main_nav svg path {
    stroke-width: 0.5;
    stroke: #000000;
    transition: all 0.4s ease;
}.program_information .main_nav:hover svg path {
    stroke: rgb(188,169,146);
    stroke-width: 1;
}.program_information .education h3 {
    display: inline-block;
    font-size: 28px;
    border-radius: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgb(188,169,146,0.5);
    position: relative;
    transform: translateZ(0);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-left: 4px solid rgb(188,169,146);
    margin-bottom: 30px;
    background: linear-gradient(
        135deg,
        rgb(188,169,146,0.5) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}.program_information .education h3::after {
    position: absolute;
    background: rgb(188,169,146);
    border-radius: 10px;
    z-index: 1;
    width: 40px;
    content: "";
    height: 4px;
    left: 25px;
    bottom: -10px;
}.program_information .education p {
    position: relative;
    padding: 25px 30px;
    line-height: 1.8;
    text-shadow: 0 1px 3px #000000;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 11px;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}.program_information .education p::first-letter {
    font-weight: 700;
    margin-top: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    line-height: 0.8;
    margin-right: 10px;
    float: left;
    font-size: 2.5em;
    color: rgb(188,169,146);
}

@keyframes gridFlow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-5deg);
    }
    75% {
        transform: translateY(10px) rotate(5deg);
    }
}

@keyframes rotateBorderGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1200px) {.program_information .education {
    width: 80%;
}.program_information .main_nav {
    width: 100px;
    right: 5%;
    height: 100px;
}
}

@media screen and (max-width: 992px) {.program_information {
    padding: 80px 0;
}.program_information .learn_academy {
    min-height: 450px;
}.program_information .education {
    padding-top: 50px;
    width: 85%;
    padding-bottom: 50px;
}.program_information .main_nav {
    width: 90px;
    height: 90px;
    top: -25px;
}.program_information .education h3 {
    padding: 12px 20px;
    font-size: calc(28px * 0.9);
}.program_information .education p {
    padding: 20px 25px;
    font-size: calc(13px * 0.95);
}
}

@media screen and (max-width: 768px) {.program_information {
    padding: 60px 0;
}.program_information .learn_academy {
    padding-bottom: 40px;
    min-height: auto;
    display: block;
}.program_information .img_placeholder {
    margin-bottom: -40px;
    position: relative;
    height: 300px;
}.program_information .education {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 0;
}.program_information .main_nav {
    right: auto;
    width: 80px;
    top: -30px;
    left: 20px;
    height: 80px;
}.program_information .education h3 {
    width: calc(100% - 30px);
    box-sizing: border-box;
    font-size: calc(28px * 0.8);
    display: block;
    margin-top: 20px;
}.program_information .education p {
    width: calc(100% - 30px);
    box-sizing: border-box;
    margin: 30px auto 0;
}
}

@media screen and (max-width: 576px) {.program_information {
    padding: 40px 0;
}.program_information .img_placeholder {
    height: 250px;
    margin-bottom: -30px;
}.program_information .main_nav {
    top: -25px;
    left: 15px;
    height: 70px;
    width: 70px;
}.program_information .education h3 {
    font-size: calc(28px * 0.7);
    padding: 10px 15px;
    margin-top: 15px;
}.program_information .education p {
    padding: 15px 20px;
    margin-top: 20px;
    font-size: calc(13px * 0.9);
}.program_information .education h3::after {
    width: 30px;
    bottom: -8px;
    left: 15px;
    height: 3px;
}
}