﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}header,footer {
    width: 100%;
}.container {
    margin: auto;
    width: 1166px;
    max-width: 100%;
}svg {
    width: 30px;
    height: 30px;
}html,body {
    scroll-behavior: auto;
    height: 100%;
    font-family: Arial, sans-serif;
    color: #000000;
    min-height: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.wrap-structure {
    flex-direction: column;
    display: flex;
    height: 100%;
    min-height: 100%;
}::-webkit-scrollbar {
    width: 8px;
    height: 4px;
}::-webkit-scrollbar-button {
    border-radius: 0px;
    height: 9px;
    width: 0px;
}::-webkit-scrollbar-track {
    box-shadow: inset 3px -1px 7px 5px rgba(0, 0, 0, 0.1);
    border-radius: 12%;
    background: rgb(202,118,118,0.5);
}::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, #ffffff 46%, rgb(255, 255, 255, 0.5) 71%, rgb(202,118,118) 98%, rgb(202,118,118,0.5) 90%);
}::-webkit-scrollbar-thumb:hover {
    background: rgb(226,161,161);
}::-webkit-scrollbar-thumb:active {
    transform: translateY(1px);
    background: rgb(226,161,161,0.5);
}* {
    scrollbar-width: thin;
    scrollbar-color: rgb(226,161,161,0.5) rgb(255, 255, 255, 0.5);
}.access_help {
    flex: 0 0 auto;
}.nav_main {
    flex: 1 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
header {
    background: rgb(246,214,214);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 0;
    margin-top: 0;
    position: relative;
}header::before {
    position: absolute;
    content: '';
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(rgb(226,161,161), 0.03) 25%, 
        rgba(rgb(226,161,161), 0.05) 50%,
        rgba(rgb(226,161,161), 0.03) 75%,
        transparent 100%
    );
    top: 0;
    width: 100%;
    left: 0;
    pointer-events: none;
}header .header_know {
    padding: 1.2rem 2rem;
    align-items: center;
    justify-content: space-between;
    position: relative;
    display: flex;
    z-index: 2;
}header .site_top {
    position: relative;
    flex: 0 0 auto;
    margin-right: 2rem;
    max-width: 180px;
}header .head_mainbar {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}header .head_mainbar:hover {
    transform: translateY(-3px);
}header .head_mainbar img {
    display: block;
    height: auto;
    filter: brightness(1.03);
    max-width: 100%;
}header .head_mainbar::before {
    position: absolute;
    transition: all 0.3s ease;
    transform: scaleX(0.7);
    opacity: 0;
    height: 10px;
    content: '';
    width: 100%;
    border-radius: 10px;
    bottom: -15px;
    left: 0;
    background: rgb(226,161,161);
}header .head_mainbar:hover::before {
    opacity: 0.7;
    transform: scaleX(1);
}header .site_core {
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap;
    position: relative;
    display: flex;
}header .site_core::after {
    position: absolute;
    bottom: -15px;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(226,161,161,0.5), 
        transparent
    );
    content: '';
    left: 0;
    width: 100%;
    height: 1px;
}header .main_base {
    margin: 0;
    position: relative;
}header .main_base a {
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    font-size: 13px;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #000000;
    padding: 1rem 1.2rem;
}header .main_base a::before {
    height: 3px;
    position: absolute;
    background: rgb(226,161,161);
    transition: transform 0.3s ease;
    content: '';
    transform: translateX(-100%);
    bottom: 0;
    left: 0;
    width: 100%;
}header .main_base a:hover {
    color: rgb(226,161,161);
}header .main_base a:hover::before {
    transform: translateX(0);
}header .main_base a::after {
    top: 0;
    content: '';
    transition: all 0.3s ease;
    background: rgb(226,161,161,0.5);
    left: 0;
    z-index: -1;
    width: 100%;
    position: absolute;
    border-radius: 10px;
    pointer-events: none;
    transform: scale(0.8);
    opacity: 0;
    height: 100%;
}header .main_base a:hover::after {
    transform: scale(1);
    opacity: 0.15;
}header .header_know::before {
    z-index: -1;
    height: 100%;
    content: '';
    width: 30%;
    background: linear-gradient(-90deg, rgb(246,214,214), transparent);
    right: 0;
    position: absolute;
    top: 0;
}header .header_know::after {
    position: absolute;
    height: 100%;
    z-index: -1;
    left: 0;
    content: '';
    background: linear-gradient(90deg, rgb(246,214,214), transparent);
    width: 30%;
    top: 0;
}header .nav_main {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding-top: 2rem;
}

@media (min-width: 1400px) {header .header_know {
    max-width: 1300px;
    margin: 0 auto;
}header .main_base a {
    padding: 1rem 1.5rem;
}
}

@media (max-width: 991px) {header .header_know {
    padding: 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}header .site_top {
    margin-bottom: 0;
    margin-right: 0;
}header .site_core {
    flex-wrap: wrap;
    padding-top: 1rem;
    flex-basis: 100%;
    justify-content: flex-end;
    margin-top: 0;
}header .main_base {
    margin-bottom: 0.5rem;
}header .main_base a {
    padding: 0.7rem 1rem;
    font-size: calc(13px - 1px);
}
}

@media (max-width: 767px) {header {
    margin-top: 0;
}header .header_know {
    padding: 1rem 1.5rem;
}header .site_top {
    flex: 0 0 auto;
    max-width: 150px;
}header .site_core {
    padding: 0.5rem 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-top: 0.5rem;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}header .site_core::-webkit-scrollbar {
    height: 3px;
}header .site_core::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(226,161,161,0.5);
}header .main_base {
    flex: 0 0 auto;
}header .main_base a {
    white-space: nowrap;
    padding: 0.6rem 0.8rem;
    font-size: calc(13px - 2px);
}header .site_core::after {
    bottom: 0;
}header .head_mainbar::before {
    display: none;
}}.gratContent {
    position: relative;
    display: flex;
    perspective: 1000px;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(246,214,214) 0%, #ffffff 100%);
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}.gratContent::before {
    height: 120%;
    position: absolute;
    transform: rotate(-5deg) skewX(5deg);
    background: 
        linear-gradient(120deg, rgb(226,161,161,0.5) 0%, transparent 40%),
        linear-gradient(-120deg, rgb(202,118,118,0.5) 0%, transparent 40%);
    width: 120%;
    content: "";
    left: -5%;
    z-index: 0;
    pointer-events: none;
    top: -10%;
}.gratContent::after {
    height: 60%;
    filter: blur(80px);
    content: "";
    z-index: 0;
    transform: rotate(15deg);
    right: -20%;
    background: linear-gradient(135deg, rgb(226,161,161,0.5) 0%, rgb(202,118,118,0.5) 100%);
    bottom: -20%;
    position: absolute;
    opacity: 0.2;
    width: 60%;
}.gratContent .container {
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    transform-style: preserve-3d;
    position: relative;
    animation: container-entry 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}.gratContent .pro_study {
    padding: calc(2rem + 3vw);
    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(0, 0, 0, 0.02);
    background-color: #ffffff;
    transform-style: preserve-3d;
    transform: translateZ(0) rotateX(2deg);
    position: relative;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 30px), 
        calc(100% - 30px) 100%, 
        0 100%
    );
    transition: transform 0.5s ease;
}.gratContent .pro_study::before {
    content: "";
    bottom: 20px;
    border: 1px solid rgb(226,161,161,0.5);
    position: absolute;
    right: 20px;
    left: 20px;
    top: 20px;
    pointer-events: none;
    transform: translateZ(-10px);
    opacity: 0.4;
}.gratContent .pro_study:hover {
    transform: translateZ(10px) rotateX(0deg);
}.gratContent .pro_study > div:first-child {
    margin-bottom: 2rem;
    transform: translateZ(20px);
    position: relative;
}.gratContent .pro_study > div:first-child::after {
    content: "";
    height: 4px;
    left: 0;
    transform: scaleX(1);
    background: linear-gradient(90deg, rgb(226,161,161) 0%, rgb(202,118,118) 100%);
    position: absolute;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    bottom: -10px;
    width: 80px;
    transform-origin: left center;
}.gratContent .pro_study:hover > div:first-child::after {
    transform: scaleX(1.5);
}.gratContent h5 {
    color: #000000;
    position: relative;
    margin: 0;
    font-size: 23px;
    line-height: 1.4;
    transform: translateZ(30px);
    transition: transform 0.5s ease;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}.gratContent .pro_study:hover h5 {
    transform: translateZ(40px);
}.gratContent .pro_study > div:last-child {
    transform: translateZ(10px);
    position: relative;
    transition: transform 0.5s ease;
}.gratContent .pro_study:hover > div:last-child {
    transform: translateZ(20px);
}.gratContent p {
    color: #000000;
    transition: color 0.3s ease, transform 0.5s ease;
    font-weight: 400;
    line-height: 1.8;
    transform: translateZ(0);
    font-size: 17px;
    margin: 0;
    position: relative;
}.gratContent a {
    display: block;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease;
}.gratContent a::before {
    transform: translateY(10px);
    bottom: 0;
    width: 100%;
    opacity: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        transparent 95%, 
        rgb(226,161,161,0.5) 95%, 
        rgb(226,161,161,0.5) 100%
    );
    height: 100%;
    z-index: -1;
    position: absolute;
    content: "";
    left: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}.gratContent a:hover::before {
    opacity: 0.2;
    transform: translateY(0);
}.gratContent a:hover p {
    color: rgb(226,161,161);
    transform: translateZ(5px);
}

@keyframes container-entry {
    0% {
        opacity: 0;
        transform: translateY(40px) translateZ(-100px) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0) rotateX(0);
    }
}

@media (max-width: 991px) {.gratContent {
    padding: 4rem 0;
}.gratContent .pro_study {
    padding: calc(1.5rem + 2vw);
    transform: translateZ(0) rotateX(1deg);
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 20px), 
            calc(100% - 20px) 100%, 
            0 100%
        );
}.gratContent h5 {
    line-height: 1.5;
    font-size: calc(23px * 0.9);
}.gratContent p {
    font-size: calc(17px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 767px) {.gratContent {
    min-height: auto;
}.gratContent .container {
    width: 95%;
}.gratContent .pro_study {
    padding: 1.5rem;
    transform: none;
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 15px), 
            calc(100% - 15px) 100%, 
            0 100%
        );
}.gratContent .pro_study::before {
    left: 10px;
    right: 10px;
    bottom: 10px;
    top: 10px;
}.gratContent .pro_study > div:first-child::after {
    height: 3px;
    width: 60px;
}.gratContent h5 {
    transform: none;
    font-size: calc(23px * 0.85);
}.gratContent p {
    line-height: 1.6;
    font-size: calc(17px * 0.9);
}.gratContent .pro_study:hover h5,
    .gratContent .pro_study:hover > div:last-child,
    .gratContent .pro_study:hover {
    transform: none;
}
}

@media (max-width: 480px) {.gratContent {
    padding: 3rem 0;
}.gratContent .pro_study {
    padding: 1.25rem;
    box-shadow: 
            0 10px 25px rgba(0, 0, 0, 0.08),
            0 3px 10px rgba(0, 0, 0, 0.04),
            0 0 0 1px rgba(0, 0, 0, 0.02);
    clip-path: polygon(
            0 0, 
            100% 0, 
            100% calc(100% - 10px), 
            calc(100% - 10px) 100%, 
            0 100%
        );
}.gratContent h5 {
    font-size: calc(23px * 0.8);
    line-height: 1.4;
}.gratContent p {
    font-size: calc(17px * 0.85);
    line-height: 1.5;
}.gratContent .pro_study > div:first-child {
    margin-bottom: 1.5rem;
}.gratContent .pro_study > div:first-child::after {
    height: 3px;
    width: 50px;
    bottom: -8px;
}}.cookie_popup_message {
    width: 100%;
    overflow: hidden;
    position: fixed;
    z-index: 1050;
    border-top: 3px solid rgb(226,161,161);
    padding: 20px;
    bottom: 0;
    font-family: Arial, sans-serif;
    background: rgb(246,214,214);
}.digital_cookies {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    z-index: 1;
}.data_consent {
    margin-right: 20px;
    flex-shrink: 0;
}#userSettingsPopup {
    display: none;
}#userSettingsPopup:checked ~ .cookie_popup_message {
    opacity: 0;
    visibility: hidden;
}.data_consent svg {
    width: 60px;
    fill: rgb(226,161,161);
    height: 60px;
    transition: fill 0.3s ease-in-out;
}.learn_cookies {
    flex-grow: 1;
    margin-right: 20px;
}.learn_cookies h5 {
    font-weight: 700;
    font-size: 23px;
    color: rgb(226,161,161);
    margin-bottom: 5px;
}.learn_cookies p {
    font-size: 13px;
    margin-bottom: 0;
    color: #000000;
}.privacy_ack {
    text-decoration: none;
    border-radius: 10px;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
    font-size: 19px;
    padding: 10px 20px;
}.privacy_ack {
    color: #ffffff;
    background-color: rgb(226,161,161);
    border: 1px solid rgb(226,161,161);
}.privacy_ack:hover {
    border-color: #000000;
    background-color: rgba(0, 0, 0, 0.5);
}.cookie_popup_message p a {
    color: rgb(226,161,161);
    text-decoration: underline;
}.cookie_popup_message p a:hover {
    color: #000000;
}
@media (max-width: 1200px) {.learn_cookies h5 {
    font-size: calc(23px - 2px);
}.learn_cookies p {
    font-size: calc(13px - 2px);
}.privacy_ack {
    font-size: calc(19px - 2px);
    padding: 8px 16px;
}
}
@media (max-width: 800px) {.digital_cookies {
    align-items: center;
    flex-direction: column;
}.data_consent {
    margin-bottom: 15px;
}.learn_cookies {
    text-align: center;
    margin-bottom: 20px;
}.privacy_ack {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
}}
.course_program_description {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background: rgb(246,214,214);
}.course_program_description::before {
    background-size: 20px 20px;
    width: 100%;
    background: 
        linear-gradient(0deg, transparent 95%, rgb(226,161,161,0.5) 100%),
        linear-gradient(90deg, transparent 95%, rgb(226,161,161,0.5) 100%);
    top: 0;
    height: 100%;
    position: absolute;
    content: "";
    z-index: 1;
    opacity: 0.15;
    left: 0;
    animation: gridMove 40s linear infinite;
}.course_program_description::after {
    height: 100%;
    top: 0;
    opacity: 0.2;
    content: "";
    background: 
        radial-gradient(circle at 20% 20%, rgb(226,161,161,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgb(202,118,118,0.5) 0%, transparent 40%);
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
}@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

.course_program_description .container {
    z-index: 2;
    padding: 0 20px;
    position: relative;
    align-items: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
}.course_program_description .class_map {
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 100%;
    align-items: center;
    max-width: 900px;
    position: relative;
}.course_program_description .message_box {
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 3;
    backdrop-filter: blur(10px);
}.course_program_description .message_box::before {
    position: absolute;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.3;
    border-radius: 13px;
    pointer-events: none;
    top: 0;
    width: 100%;
    border: 1px solid rgb(226,161,161,0.5);
}.course_program_description .message_box::after {
    height: 3px;
    background: linear-gradient(to right, rgb(226,161,161), rgb(202,118,118));
    top: -15px;
    position: absolute;
    left: calc(50% - 30px);
    width: 60px;
    content: "";
}.course_program_description .message_box h2 {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000;
    position: relative;
}.course_program_description .message_box h2::after {
    position: absolute;
    left: calc(50% - 40px);
    content: "";
    height: 2px;
    width: 80px;
    bottom: -10px;
    background: rgb(226,161,161,0.5);
}.course_program_description .message_box .description {
    color: #000000;
    margin-bottom: 20px;
    font-size: 16px;
    margin-left: auto;
    max-width: 800px;
    margin-right: auto;
    line-height: 1.7;
}.course_program_description .message_box .description:last-child {
    margin-bottom: 0;
}.course_program_description .image_box_wrap {
    overflow: hidden;
    z-index: 2;
    position: relative;
    width: 100%;
    height: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border-radius: 13px;
}.course_program_description .container::before {
    left: 0;
    position: absolute;
    width: 100%;
    animation: circuitPulse 8s infinite alternate;
    background-size: 50px 50px, 50px 50px, 200px 200px, 200px 200px, 200px 200px;
    z-index: 0;
    height: 100%;
    content: "";
    opacity: 0.05;
    top: 0;
    background-image: 
        linear-gradient(to right, rgb(226,161,161,0.5) 0.5px, transparent 1px),
        linear-gradient(to bottom, rgb(226,161,161,0.5) 0.5px, transparent 1px),
        radial-gradient(circle at 50px 50px, rgb(226,161,161,0.5) 2px, transparent 2px),
        radial-gradient(circle at 150px 150px, rgb(202,118,118,0.5) 2px, transparent 2px),
        radial-gradient(circle at 250px 250px, rgb(226,161,161,0.5) 2px, transparent 2px);
}@keyframes circuitPulse {
    0% {
        opacity: 0.03;
    }
    100% {
        opacity: 0.07;
    }
}

.course_program_description .class_map::before {
    top: -100px;
    height: calc(100% + 200px);
    background-image: 
        radial-gradient(circle at 100px 100px, rgb(226,161,161,0.5) 1px, transparent 1px),
        radial-gradient(circle at 200px 200px, rgb(202,118,118,0.5) 1px, transparent 1px),
        radial-gradient(circle at 300px 300px, rgb(226,161,161,0.5) 1px, transparent 1px),
        radial-gradient(circle at 400px 100px, rgb(202,118,118,0.5) 1px, transparent 1px),
        radial-gradient(circle at 500px 200px, rgb(226,161,161,0.5) 1px, transparent 1px);
    content: "";
    z-index: 0;
    background-size: 600px 600px;
    left: -100px;
    width: calc(100% + 200px);
    position: absolute;
    opacity: 0.2;
    animation: floatParticles 40s linear infinite;
}@keyframes floatParticles {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 600px 600px;
    }
}

.course_program_description .class_map::after {
    width: 100px;
    position: absolute;
    bottom: -30px;
    left: calc(50% - 50px);
    background: linear-gradient(to right, transparent, rgb(202,118,118,0.5), transparent);
    height: 2px;
    content: "";
}.course_program_description .container::after {
    width: 100%;
    background-image: 
        repeating-linear-gradient(60deg, rgb(226,161,161,0.5) 0, rgb(226,161,161,0.5) 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(120deg, rgb(226,161,161,0.5) 0, rgb(226,161,161,0.5) 1px, transparent 1px, transparent 30px),
        repeating-linear-gradient(180deg, rgb(226,161,161,0.5) 0, rgb(226,161,161,0.5) 1px, transparent 1px, transparent 30px);
    opacity: 0.03;
    animation: hexMove 60s linear infinite;
    top: 0;
    height: 100%;
    z-index: 0;
    background-size: 50px 86.6px;
    content: "";
    left: 0;
    position: absolute;
}@keyframes hexMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 86.6px;
    }
}

@keyframes techPulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.course_program_description .image_box_wrap::after {
    animation: borderGlow 4s infinite alternate;
}@keyframes borderGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes reveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.course_program_description .message_box h2 {
    animation: reveal 0.8s forwards;
}.course_program_description .message_box .description:nth-child(2) {
    animation: reveal 0.8s 0.2s forwards;
}.course_program_description .message_box .description:nth-child(3) {
    animation: reveal 0.8s 0.4s forwards;
}

@keyframes scanLines {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 450px;
    }
}

@media (min-width: 992px) {.course_program_description .class_map {
    grid-template-columns: 1fr;
    display: grid;
    gap: 40px;
    grid-template-rows: auto auto;
}.course_program_description .message_box {
    margin-top: -80px;
    grid-row: 2;
    z-index: 4;
}.course_program_description .image_box_wrap {
    height: 500px;
    grid-row: 1;
}
}

@media (max-width: 991px) {.course_program_description {
    padding: 80px 0;
}.course_program_description .class_map {
    gap: 40px;
}.course_program_description .message_box {
    padding: 30px;
}.course_program_description .image_box_wrap {
    height: 400px;
}
}

@media (max-width: 768px) {.course_program_description {
    padding: 60px 0;
}.course_program_description .message_box {
    padding: 25px;
}.course_program_description .image_box_wrap {
    height: 350px;
}.course_program_description .message_box h2 {
    font-size: calc(32px * 0.9);
}
}

@media (max-width: 576px) {.course_program_description {
    padding: 50px 0;
}.course_program_description .message_box {
    padding: 20px;
}.course_program_description .image_box_wrap {
    height: 300px;
}.course_program_description .message_box h2 {
    font-size: calc(32px * 0.8);
}.course_program_description .message_box .description {
    font-size: calc(16px * 0.95);
}
}

@media (min-width: 992px) {.course_program_description .message_box:hover {
    transition: transform 0.3s ease;
    transform: translateY(-5px);
}.course_program_description .message_box:hover::before {
    opacity: 0.5;
    border-color: rgb(226,161,161);
    transition: all 0.3s ease;
}.course_program_description .image_box_wrap:hover::after {
    transition: opacity 0.3s ease;
    opacity: 0.8;
}}
.follow {
    overflow: hidden;
    background: rgb(246,214,214);
    padding: 90px 0;
    position: relative;
}.follow::before {
    width: 100%;
    opacity: 0.3;
    background-size: 20px 20px;
    content: "";
    top: 0;
    background: 
        linear-gradient(0deg, transparent 95%, rgb(226,161,161,0.5) 95%),
        linear-gradient(90deg, transparent 95%, rgb(226,161,161,0.5) 95%);
    z-index: 1;
    left: 0;
    height: 100%;
    position: absolute;
}.follow::after {
    right: -30%;
    transform: rotate(-45deg);
    background: rgb(226,161,161,0.5);
    width: 60%;
    filter: blur(60px);
    position: absolute;
    top: -30%;
    z-index: 0;
    height: 160%;
    content: "";
}.follow .pro_study {
    z-index: 2;
    max-width: 450px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}.follow .connect_message {
    position: relative;
    transform-style: preserve-3d;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}.follow .connect_message::before {
    clip-path: polygon(0 15%, 15% 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    top: -10px;
    left: -10px;
    position: absolute;
    transform: translateZ(-20px);
    height: calc(100% + 20px);
    z-index: -1;
    content: "";
    background: rgb(202,118,118,0.5);
    width: calc(100% + 20px);
}.follow .connect_message::after {
    z-index: -1;
    width: calc(100% - 40px);
    animation: rotateFrame 20s linear infinite;
    border: 2px dashed rgb(226,161,161,0.5);
    content: "";
    height: calc(100% - 40px);
    left: 20px;
    top: 20px;
    position: absolute;
}.follow h3 {
    margin-bottom: 30px;
    color: #000000;
    font-size: 33px;
    text-transform: uppercase;
    padding-bottom: 20px;
    position: relative;
    font-weight: 700;
}.follow h3::before {
    height: 5px;
    width: 60px;
    position: absolute;
    left: 0;
    content: "";
    bottom: 0;
    background: rgb(226,161,161);
}.follow h3::after {
    width: 30px;
    height: 5px;
    left: 70px;
    background: rgb(202,118,118);
    content: "";
    position: absolute;
    bottom: 0;
}.follow .input_holder {
    gap: 20px;
    flex-direction: column;
    display: flex;
    position: relative;
}.follow input[type="email"] {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #000000;
    border-radius: 22px;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.5);
    padding: 20px 25px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    font-size: 18px;
}.follow input[type="email"]:focus {
    transform: translateY(-5px);
    outline: none;
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
}.follow .sub_titles {
    margin-top: 10px;
    border-radius: 22px;
    align-self: center;
    cursor: pointer;
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
    padding: 18px 0;
    width: 80%;
    position: relative;
    font-family: Arial, sans-serif;
    background: rgb(226,161,161);
    border: none;
    font-weight: 600;
    overflow: hidden;
}.follow .sub_titles::before {
    transition: all 0.5s ease;
    height: 100%;
    position: absolute;
    background: rgb(202,118,118);
    top: 0;
    content: "";
    width: 100%;
    z-index: 0;
    left: -100%;
}.follow .sub_titles:hover {
    box-shadow: 0 10px 20px -5px rgb(226,161,161,0.5);
    transform: translateY(-5px);
}.follow .sub_titles:hover::before {
    left: 0;
}.follow .sub_titles:active {
    transform: translateY(-2px);
}.follow .sub_titles::after {
    top: 50%;
    z-index: 1;
    opacity: 0;
    right: 30px;
    transform: translateY(-50%);
    font-size: 1.5em;
    content: "→";
    transition: all 0.3s ease;
    position: absolute;
}.follow .sub_titles:hover::after {
    opacity: 1;
    right: 20px;
}

@keyframes rotateFrame {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {.follow {
    padding: 70px 0;
}.follow h3 {
    font-size: calc(33px * 0.9);
    margin-bottom: 25px;
}.follow .connect_message::before {
    clip-path: polygon(0 10%, 10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
}
}

@media (max-width: 480px) {.follow {
    padding: 50px 0;
}.follow h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
}.follow h3::before {
    height: 3px;
    width: 40px;
}.follow h3::after {
    height: 3px;
    width: 20px;
    left: 50px;
}.follow input[type="email"] {
    padding: 15px 20px;
}.follow .sub_titles {
    padding: 15px 0;
    width: 100%;
}.follow .connect_message::after {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}}.welcome_board {
    height: 100vh;
    position: relative;
    background-color: rgb(226,161,161);
    width: 100%;
    overflow: hidden;
}.welcome_board::before {
    z-index: 2;
    background: linear-gradient(0deg, #000000 0%, transparent 50%);
    pointer-events: none;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    content: "";
    height: 100%;
}.welcome_board .pro_study {
    align-items: flex-end;
    z-index: 3;
    justify-content: center;
    display: flex;
    position: relative;
    height: 100%;
    width: 100%;
}.welcome_board .edu_begin {
    width: 100%;
    overflow: hidden;
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;
    z-index: 1;
}.welcome_board .edu_begin::after {
    background: 
        linear-gradient(90deg, #000000 0%, transparent 20%),
        linear-gradient(270deg, #000000 0%, transparent 20%);
    height: 100%;
    top: 0;
    width: 100%;
    position: absolute;
    z-index: 1;
    left: 0;
    content: "";
    pointer-events: none;
}.welcome_board .main_first {
    height: 100%;
    animation: cube-carousel 20s ease-in-out infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
    display: flex;
}.welcome_board .edu_first {
    flex: 0 0 100%;
    transform-origin: center center;
    position: relative;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: rotateY(0deg);
    height: 100%;
    backface-visibility: hidden;
}.welcome_board .edu_first:nth-child(2) {
    transform: rotateY(90deg);
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
    width: 100%;
}.welcome_board .edu_first:nth-child(3) {
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    transform: rotateY(180deg);
}.welcome_board .edu_first:nth-child(4) {
    left: 0;
    position: absolute;
    top: 0;
    transform: rotateY(270deg);
    height: 100%;
    width: 100%;
}.welcome_board .edu_first::before {
    background: linear-gradient(to bottom, transparent 70%, #000000 100%);
    inset: 0;
    z-index: 1;
    content: "";
    position: absolute;
    opacity: 0.8;
}.welcome_board .edu_first img {
    filter: saturate(0.8) brightness(0.9);
    object-fit: cover;
    width: 100%;
    height: 100%;
}.welcome_board .message_box {
    text-align: center;
    max-width: 1000px;
    z-index: 4;
    padding: 2rem 3rem;
    margin-bottom: 5rem;
    width: 100%;
    position: relative;
}.welcome_board .message_box::before {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    backdrop-filter: blur(10px);
    z-index: -1;
    border-top: 1px solid rgb(226,161,161);
    inset: 0;
    content: "";
}.welcome_board .message_box h1 {
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    font-size: 46px;
    letter-spacing: 1px;
    color: #ffffff;
    position: relative;
}.welcome_board .message_box h1::after {
    background-color: rgb(226,161,161);
    left: 50%;
    width: 60%;
    bottom: -10px;
    height: 1px;
    content: "";
    transform: translateX(-50%);
    position: absolute;
}.welcome_board .message_box p {
    color: #ffffff;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 1.5rem auto;
    font-size: 13px;
}.welcome_board .message_box .request_widget {
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgb(226,161,161);
    padding: 1rem 2.5rem;
    font-size: 18px;
    margin-top: 1rem;
    background-color: rgb(226,161,161);
    color: #ffffff;
    font-weight: 600;
    position: relative;
    z-index: 1;
    overflow: hidden;
}.welcome_board .message_box .request_widget::before {
    bottom: 0;
    top: 0;
    right: 0;
    transition: transform 0.5s ease-out;
    position: absolute;
    transform: scaleX(0);
    background-color: rgb(202,118,118);
    transform-origin: 0 50%;
    left: 0;
    z-index: -1;
    content: "";
}.welcome_board .message_box .request_widget:hover {
    border-color: rgb(202,118,118);
}.welcome_board .message_box .request_widget:hover::before {
    transform: scaleX(1);
}@keyframes cube-carousel {
    0%, 20% {
        transform: rotateY(0deg);
    }
    25%, 45% {
        transform: rotateY(-90deg);
    }
    50%, 70% {
        transform: rotateY(-180deg);
    }
    75%, 95% {
        transform: rotateY(-270deg);
    }
    100% {
        transform: rotateY(-360deg);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome_board .message_box h1 {
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
    animation-delay: 0.2s;
}.welcome_board .message_box p {
    animation-delay: 0.5s;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
}.welcome_board .message_box .request_widget {
    animation-delay: 0.8s;
    opacity: 0;
    animation: fade-in-up 0.8s ease-out forwards;
}

@media (max-width: 992px) {.welcome_board .message_box {
    margin-bottom: 4rem;
    padding: 2rem;
}.welcome_board .message_box h1 {
    font-size: calc(46px * 0.85);
}.welcome_board .message_box p {
    font-size: calc(13px * 0.95);
}
}

@media (max-width: 768px) {.welcome_board .message_box {
    margin-bottom: 3rem;
    padding: 1.5rem;
}.welcome_board .message_box h1 {
    font-size: calc(46px * 0.7);
}.welcome_board .message_box h1::after {
    bottom: -8px;
}.welcome_board .message_box p {
    margin: 1.2rem auto;
    line-height: 1.5;
    font-size: calc(13px * 0.9);
}.welcome_board .message_box .request_widget {
    padding: 0.8rem 2rem;
}
    
    @keyframes cube-carousel {
        0%, 20% {
            transform: rotateY(0deg);
        }
        25%, 45% {
            transform: rotateY(-90deg);
        }
        50%, 70% {
            transform: rotateY(-180deg);
        }
        75%, 95% {
            transform: rotateY(-270deg);
        }
        100% {
            transform: rotateY(-360deg);
        }
    }
}

@media (max-width: 576px) {.welcome_board {
    height: 90vh;
}.welcome_board .message_box {
    padding: 1.2rem;
    margin-bottom: 2rem;
}.welcome_board .message_box h1 {
    font-size: calc(46px * 0.6);
}.welcome_board .message_box h1::after {
    bottom: -6px;
}.welcome_board .message_box p {
    margin: 1rem auto;
    line-height: 1.4;
    font-size: calc(13px * 0.85);
}.welcome_board .message_box .request_widget {
    font-size: calc(18px * 0.9);
    margin-top: 0.5rem;
    padding: 0.7rem 1.5rem;
}}footer {
    z-index: 1;
    width: 100%;
    position: relative;
}.access_help {
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
    background: linear-gradient(135deg, #000000, rgb(202,118,118));
    font-family: Arial, sans-serif;
}.access_help::before {
    content: "";
    right: 0;
    pointer-events: none;
    left: 0;
    bottom: 0;
    top: 0;
    background: radial-gradient(circle at 10% 20%, rgb(202,118,118,0.5) 0%, transparent 50%);
    position: absolute;
}.access_help::after {
    bottom: 0;
    right: 0;
    animation: shiftGradient 15s infinite linear;
    background: linear-gradient(45deg, transparent 40%, rgb(226,161,161,0.5) 70%, transparent 100%);
    pointer-events: none;
    left: 0;
    position: absolute;
    top: 0;
    content: "";
}@keyframes shiftGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.access_help .container {
    position: relative;
    z-index: 2;
}footer .level_up {
    gap: 40px;
    grid-template-columns: 1fr;
    display: grid;
}footer .get_assistance {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}footer .get_assistance:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}footer .info_item {
    flex: 1 1 220px;
    display: flex;
    align-items: center;
}footer .info_item svg {
    height: 20px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 3px rgb(226,161,161,0.5));
    fill: rgb(226,161,161);
    width: 20px;
    margin-right: 12px;
}footer .info_item:hover svg {
    transform: scale(1.1);
}footer .info_item p, footer .info_item a {
    transition: color 0.3s ease;
    font-weight: 400;
    display: flex;
    font-size: 13px;
    text-decoration: none;
    color: #ffffff;
    align-items: center;
}footer .info_item a:hover {
    color: rgb(226,161,161);
    text-shadow: 0 0 8px rgb(226,161,161,0.5);
}footer .text_main_holder {
    gap: 40px;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
}footer .site_top {
    align-items: flex-start;
    flex-direction: column;
    display: flex;
    gap: 15px;
}footer .site_top svg {
    margin-bottom: 10px;
    width: auto;
    filter: drop-shadow(0 0 5px rgb(226,161,161,0.5));
    height: 50px;
    transition: filter 0.3s ease;
}footer .site_top:hover svg {
    filter: drop-shadow(0 0 8px rgb(226,161,161));
}footer .syllabus_ref {
    color: #ffffff;
    max-width: 300px;
    line-height: 1.5;
    opacity: 0.8;
    font-size: 15px;
}footer .site_core {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    padding: 25px;
}footer .site_core:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}footer .site_core::before {
    bottom: -2px;
    content: "";
    top: -2px;
    z-index: -1;
    left: -2px;
    transition: opacity 0.5s ease;
    border-radius: calc(10px + 2px);
    opacity: 0;
    position: absolute;
    right: -2px;
    background: linear-gradient(45deg, rgb(226,161,161), transparent, rgb(202,118,118), transparent);
}footer .site_core:hover::before {
    animation: borderRotate 6s linear infinite;
    opacity: 0.7;
}@keyframes borderRotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

footer .site_core h5 {
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
    font-size: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}footer .site_core h5::after {
    background: rgb(226,161,161);
    bottom: -1px;
    width: 50px;
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    transition: width 0.3s ease;
}footer .site_core:hover h5::after {
    width: 100px;
}footer .header_pro {
    margin-bottom: 25px;
    display: flex;
    gap: 10px;
    flex-direction: column;
}footer .header_pro a {
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: calc(13px - 1px);
    padding-left: 15px;
    font-weight: 400;
    position: relative;
    text-decoration: none;
    color: #ffffff;
}footer .header_pro a::before {
    width: 6px;
    position: absolute;
    height: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    top: 50%;
    background-color: rgb(226,161,161);
    opacity: 0.7;
    left: 0;
    transform: translateY(-50%) scale(0.8);
    border-radius: 50%;
    content: "";
}footer .header_pro a:hover {
    padding-left: 20px;
    color: rgb(226,161,161);
}footer .header_pro a:hover::before {
    box-shadow: 0 0 5px rgb(226,161,161), 0 0 10px rgb(226,161,161,0.5);
    background-color: rgb(226,161,161);
    transform: translateY(-50%) scale(1);
    opacity: 1;
}footer .subscribe_holder {
    background: linear-gradient(135deg, rgb(202,118,118,0.5), #000000);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}footer .subscribe_holder::before {
    z-index: -1;
    left: -50%;
    content: "";
    width: 200%;
    position: absolute;
    top: -50%;
    animation: pulseBackground 10s infinite ease-in-out;
    background: radial-gradient(circle, transparent 20%, #000000 70%);
    height: 200%;
}@keyframes pulseBackground {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

footer .subscribe_holder h5 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 24px;
    display: inline-block;
    position: relative;
    font-weight: 600;
}footer .subscribe_holder h5::after {
    bottom: -5px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(226,161,161), transparent);
    position: absolute;
    content: "";
    height: 2px;
}footer .subscribe_holder p {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 13px;
    opacity: 0.9;
    line-height: 1.6;
}footer .input_holder {
    position: relative;
    gap: 15px;
    flex-direction: column;
    display: flex;
}footer .input_holder input[type="email"] {
    transition: all 0.3s ease;
    font-size: 13px;
    border-radius: 10px;
    width: 100%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}footer .input_holder input[type="email"]:focus {
    box-shadow: 0 0 10px rgb(226,161,161,0.5);
    border-color: rgb(226,161,161);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .sub_titles {
    background: rgb(226,161,161);
    cursor: pointer;
    text-align: center;
    color: #ffffff;
    position: relative;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
    font-size: 19px;
    padding: 14px 24px;
}footer .sub_titles::before {
    width: 100%;
    content: "";
    position: absolute;
    transition: left 0.7s ease;
    left: -100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    top: 0;
}footer .sub_titles:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
    background: rgb(202,118,118);
}footer .sub_titles:hover::before {
    left: 100%;
}footer .green_edu {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}footer .pledge_block {
    font-size: 15px;
    letter-spacing: 0.5px;
    text-align: center;
    opacity: 0.7;
    color: #ffffff;
}

@media (min-width: 768px) {footer .info_item {
    flex: 1 1 60px;
}footer .text_main_holder {
    grid-template-columns: 1fr 1fr;
}footer .input_holder {
    flex-direction: row;
}footer .sub_titles {
    white-space: nowrap;
}
}

@media (min-width: 992px) {footer .level_up {
    grid-template-columns: 1fr;
}footer .text_main_holder {
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
}footer .get_assistance {
    justify-content: space-between;
    display: flex;
    flex-wrap: nowrap;
}footer .info_item {
    flex: 0 1 auto;
}
}

@media (max-width: 767px) {footer .access_help {
    padding: 60px 0 30px;
}footer .get_assistance {
    gap: 15px;
    flex-direction: column;
    padding: 20px;
}footer .info_item {
    width: 100%;
}footer .site_core, footer .subscribe_holder {
    padding: 20px;
}footer .subscribe_holder h5, footer .site_core h5 {
    font-size: calc(24px - 2px);
}footer .subscribe_holder p, footer .header_pro a {
    font-size: calc(13px - 2px);
}footer .green_edu {
    margin-top: 30px;
}
}

@media (max-width: 576px) {footer .access_help {
    padding: 40px 0 20px;
}footer .get_assistance, footer .site_core, footer .subscribe_holder {
    padding: 15px;
}footer .input_holder input[type="email"], footer .sub_titles {
    padding: 12px;
}footer .site_top svg {
    height: 40px;
}footer .syllabus_ref {
    font-size: calc(15px - 1px);
}}.our_story {
    overflow: hidden;
    padding: 100px 0;
    background: rgb(246,214,214);
    position: relative;
}.our_story::before {
    z-index: 0;
    opacity: 0.15;
    top: 0;
    background: linear-gradient(135deg, transparent 0%, rgb(226,161,161,0.5) 100%);
    position: absolute;
    width: 100%;
    left: 0;
    content: "";
    height: 100%;
}.our_story .container {
    position: relative;
    z-index: 1;
}.our_story .pro_study {
    position: relative;
}.our_story h3 {
    color: #000000;
    font-size: 42px;
    letter-spacing: -1px;
    margin-bottom: 70px;
    text-align: center;
    font-weight: 700;
    position: relative;
}.our_story h3::after {
    height: 5px;
    left: 50%;
    bottom: -15px;
    background: rgb(226,161,161);
    position: absolute;
    transform: translateX(-50%);
    width: 100px;
    content: "";
    border-radius: 10px;
}.our_story .learn_lab {
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    display: flex;
}.our_story .learn_lab span {
    color: rgb(226,161,161);
    top: -30px;
    left: 0;
    position: absolute;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    padding: 8px 20px;
    z-index: 2;
    font-size: 22px;
    border-radius: 10px;
    background: #ffffff;
}.our_story .learn_lab p {
    z-index: 1;
    margin-right: -50px;
    color: #000000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    font-size: 17px;
    background: #ffffff;
    padding: 40px;
    position: relative;
    border-radius: 25px;
    margin: 0;
    line-height: 1.8;
    flex: 1;
}.our_story .learn_lab .image_box_wrap {
    flex: 0 0 40%;
    z-index: 0;
    position: relative;
    height: 400px;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}.our_story .learn_lab .image_box_wrap:hover {
    transform: scale(1.02);
}.our_story .digital_education {
    display: flex;
    position: relative;
    flex-direction: row-reverse;
    align-items: center;
}.our_story .digital_education p {
    position: relative;
    line-height: 1.8;
    padding: 40px;
    flex: 1;
    font-size: 17px;
    margin-left: -50px;
    border-radius: 25px;
    z-index: 1;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    margin: 0;
    color: #000000;
    background: #ffffff;
}.our_story .digital_education .team_profile {
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    flex: 0 0 40%;
    z-index: 0;
    height: 400px;
    transition: transform 0.5s ease;
}.our_story .digital_education .team_profile:hover {
    transform: scale(1.02);
}.our_story .learn_lab::before {
    top: 50%;
    opacity: 0.7;
    background: rgb(226,161,161);
    height: 80%;
    left: -10px;
    content: "";
    width: 20px;
    transform: translateY(-50%);
    border-radius: 10px;
    position: absolute;
}.our_story .digital_education::after {
    right: -10px;
    width: 20px;
    height: 80%;
    content: "";
    border-radius: 10px;
    background: rgb(202,118,118);
    position: absolute;
    transform: translateY(-50%);
    opacity: 0.7;
    top: 50%;
}.our_story .container::after {
    height: 200px;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.2;
    right: -50px;
    width: 200px;
    position: absolute;
    bottom: -50px;
    content: "";
    background: rgb(202,118,118,0.5);
}.our_story .container::before {
    top: -50px;
    left: -50px;
    content: "";
    opacity: 0.2;
    z-index: -1;
    position: absolute;
    border-radius: 50%;
    width: 200px;
    background: rgb(226,161,161,0.5);
    height: 200px;
}.our_story .pro_study::before {
    position: absolute;
    left: 0;
    top: 40px;
    content: "";
    height: 1px;
    width: 50%;
    background: linear-gradient(to right, rgb(226,161,161,0.5), transparent);
}.our_story .pro_study::after {
    width: 50%;
    bottom: 0;
    content: "";
    background: linear-gradient(to left, rgb(202,118,118,0.5), transparent);
    right: 0;
    height: 1px;
    position: absolute;
}

@media screen and (max-width: 992px) {.our_story {
    padding: 80px 0;
}.our_story h3 {
    margin-bottom: 60px;
    font-size: calc(42px * 0.85);
}.our_story .learn_lab,
    .our_story .digital_education {
    flex-direction: column;
}.our_story .learn_lab p,
    .our_story .digital_education p {
    width: 100%;
    margin: 0 0 30px 0;
}.our_story .learn_lab .image_box_wrap,
    .our_story .digital_education .team_profile {
    width: 100%;
    height: 350px;
}.our_story .learn_lab::before {
    height: 15px;
    transform: translateY(0);
    left: 10%;
    width: 80%;
    top: 0;
}.our_story .digital_education::after {
    width: 80%;
    top: auto;
    right: 10%;
    transform: translateY(0);
    bottom: 0;
    height: 15px;
}.our_story .learn_lab span {
    top: -20px;
    left: 20px;
}
}

@media screen and (max-width: 768px) {.our_story {
    padding: 60px 0;
}.our_story h3 {
    margin-bottom: 50px;
    font-size: calc(42px * 0.7);
}.our_story h3::after {
    width: 80px;
    height: 4px;
}.our_story .learn_lab {
    margin-bottom: 60px;
}.our_story .learn_lab p,
    .our_story .digital_education p {
    padding: 30px;
}.our_story .learn_lab .image_box_wrap,
    .our_story .digital_education .team_profile {
    height: 300px;
}
}

@media screen and (max-width: 576px) {.our_story {
    padding: 50px 0;
}.our_story h3 {
    font-size: calc(42px * 0.6);
    margin-bottom: 40px;
}.our_story h3::after {
    height: 3px;
    bottom: -10px;
    width: 60px;
}.our_story .learn_lab {
    margin-bottom: 50px;
}.our_story .learn_lab span {
    padding: 6px 15px;
    font-size: calc(22px * 0.9);
}.our_story .learn_lab p,
    .our_story .digital_education p {
    padding: 25px;
    line-height: 1.6;
    font-size: calc(17px * 0.95);
}.our_story .learn_lab .image_box_wrap,
    .our_story .digital_education .team_profile {
    height: 250px;
}.our_story .learn_lab::before,
    .our_story .digital_education::after {
    height: 10px;
}}.get_in_touch {
    position: relative;
    padding: 0;
}.get_in_touch::before {
    content: '';
    top: 0;
    width: 100%;
    opacity: 0.92;
    position: absolute;
    height: 100%;
    background-color: rgb(246,214,214);
    left: 0;
}.get_in_touch .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0;
}.get_in_touch .connect_message {
    display: flex;
    position: relative;
}.get_in_touch .message_map {
    display: flex;
    padding: 80px 50px;
    flex-direction: column;
    color: #ffffff;
    width: 40%;
    background-color: rgb(226,161,161);
    justify-content: center;
}.get_in_touch .message_map h3 {
    font-size: 35px;
    position: relative;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}.get_in_touch .message_map h3::after {
    height: 3px;
    background: #ffffff;
    left: 0;
    bottom: -15px;
    position: absolute;
    content: '';
    width: 60px;
}.get_in_touch .message_map div {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}.get_in_touch .message_map div:last-child {
    border-bottom: none;
}.get_in_touch .message_map svg {
    margin-right: 20px;
    width: 25px;
    height: 25px;
}.get_in_touch .message_map svg path {
    fill: #ffffff;
}.get_in_touch .message_map span {
    font-size: 15px;
    color: #ffffff;
}.get_in_touch .message_map a {
    color: #ffffff;
    transition: opacity 0.3s ease;
    text-decoration: none;
}.get_in_touch .message_map a:hover {
    opacity: 0.8;
}.get_in_touch .support_widget {
    padding: 100px 50px 100px 100px;
    width: 60%;
    display: flex;
    background-color: #ffffff;
    align-items: center;
}.get_in_touch form {
    width: 100%;
}.get_in_touch form h3 {
    font-size: 35px;
    margin-bottom: 40px;
    color: #000000;
    position: relative;
    font-weight: 700;
}.get_in_touch form h3::after {
    bottom: -15px;
    position: absolute;
    height: 3px;
    background: rgb(226,161,161);
    left: 0;
    width: 60px;
    content: '';
}.get_in_touch form input[type="text"],
.get_in_touch form input[type="email"] {
    border: none;
    padding: 15px 0;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #000000;
    margin-bottom: 25px;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
}.get_in_touch form input[type="text"]:focus,
.get_in_touch form input[type="email"]:focus {
    outline: none;
    border-bottom-color: rgb(226,161,161);
}.get_in_touch form input::placeholder {
    color: #9e9e9e;
}.get_in_touch .query_grid {
    margin: 30px 0;
    align-items: flex-start;
    display: flex;
}.get_in_touch .query_grid input[type="checkbox"] {
    height: 20px;
    background: transparent;
    flex-shrink: 0;
    appearance: none;
    transition: all 0.3s ease;
    position: relative;
    -webkit-appearance: none;
    width: 20px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    margin-right: 15px;
}.get_in_touch .query_grid input[type="checkbox"]:checked {
    background-color: rgb(226,161,161);
    border-color: rgb(226,161,161);
}.get_in_touch .query_grid input[type="checkbox"]:checked::before {
    left: 6px;
    position: absolute;
    width: 6px;
    height: 10px;
    content: '';
    border-width: 0 2px 2px 0;
    border: solid white;
    top: 2px;
    transform: rotate(45deg);
}.get_in_touch .query_grid label {
    font-size: 12px;
    line-height: 1.6;
    color: #000000;
}.get_in_touch .query_grid a {
    transition: color 0.3s ease;
    font-weight: 600;
    color: rgb(226,161,161);
    text-decoration: none;
}.get_in_touch .query_grid a:hover {
    color: rgb(202,118,118);
}.get_in_touch .request_widget {
    cursor: pointer;
    font-weight: 600;
    position: relative;
    background: rgb(226,161,161);
    font-size: 20px;
    overflow: hidden;
    z-index: 1;
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 15px 40px;
}.get_in_touch .request_widget::after {
    top: 0;
    position: absolute;
    z-index: -1;
    transform-origin: right;
    left: 0;
    transform: scaleX(0);
    background: rgb(202,118,118);
    height: 100%;
    width: 100%;
    content: '';
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.get_in_touch .request_widget:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}

@media (max-width: 1024px) {.get_in_touch .message_map {
    padding: 60px 30px;
}.get_in_touch .support_widget {
    padding: 80px 40px 80px 70px;
}
}

@media (max-width: 768px) {.get_in_touch .connect_message {
    flex-direction: column;
}.get_in_touch .message_map {
    clip-path: none;
    padding: 50px 30px;
    width: 100%;
}.get_in_touch .support_widget {
    padding: 50px 30px;
    width: 100%;
}.get_in_touch .message_map h3,
    .get_in_touch form h3 {
    font-size: calc(35px * 0.9);
    margin-bottom: 30px;
}
}

@media (max-width: 576px) {.get_in_touch .message_map,
    .get_in_touch .support_widget {
    padding: 40px 25px;
}.get_in_touch .message_map h3,
    .get_in_touch form h3 {
    margin-bottom: 25px;
    font-size: calc(35px * 0.8);
}.get_in_touch .message_map div {
    margin-bottom: 20px;
}.get_in_touch .request_widget {
    width: 100%;
    padding: 15px 20px;
}}.learning_impact {
    padding: 120px 0;
    background: linear-gradient(130deg, rgb(246,214,214) 0%, rgb(226,161,161,0.5) 80%);
    overflow: hidden;
    position: relative;
}.learning_impact::before {
    opacity: 0.7;
    background: radial-gradient(circle at 80% 20%, rgb(202,118,118,0.5) 0%, transparent 55%);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}.learning_impact::after {
    animation: breathe 8s infinite alternate ease-in-out;
    border-radius: 50%;
    bottom: -10%;
    width: 400px;
    height: 400px;
    left: -5%;
    opacity: 0.4;
    position: absolute;
    filter: blur(80px);
    background: rgb(226,161,161,0.5);
    content: "";
}.learning_impact .container {
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 1200px;
}.learning_impact .pro_study {
    gap: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}.learning_impact .pro_study::before {
    background: linear-gradient(to bottom, rgb(226,161,161,0.5), transparent);
    content: "";
    z-index: 1;
    height: 80%;
    position: absolute;
    left: calc(50% - 1px);
    top: 10%;
    width: 2px;
}.learning_impact .image_box_wrap {
    border-radius: 35% 65% 50% 50% / 50% 35% 65% 50%;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    grid-column: 1;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.12);
    z-index: 2;
    position: relative;
    width: 100%;
    transform: perspective(800px) rotateY(10deg);
}.learning_impact .image_box_wrap::after {
    z-index: -1;
    transition: all 0.7s ease;
    opacity: 0.6;
    border: 1px solid rgb(202,118,118,0.5);
    inset: -15px;
    position: absolute;
    content: "";
    border-radius: 35% 65% 50% 50% / 50% 35% 65% 50%;
}.learning_impact .image_box_wrap:hover {
    border-radius: 50% 35% 65% 50% / 35% 50% 50% 65%;
    transform: perspective(800px) rotateY(0deg) scale(1.05);
}.learning_impact .image_box_wrap:hover::after {
    opacity: 0.3;
    inset: -25px;
}.learning_impact .message_box {
    grid-column: 2;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    position: relative;
    padding: 50px 40px;
    background: #ffffff;
    transform: translateY(20px);
}.learning_impact .message_box::before {
    border-radius: 10px 0 0 0;
    top: -10px;
    border-top: 3px solid rgb(226,161,161);
    height: 70px;
    opacity: 0.7;
    width: 70px;
    left: -10px;
    position: absolute;
    content: "";
    border-left: 3px solid rgb(226,161,161);
}.learning_impact .message_box::after {
    opacity: 0.7;
    border-radius: 0 0 10px 0;
    border-bottom: 3px solid rgb(202,118,118);
    bottom: -10px;
    width: 70px;
    border-right: 3px solid rgb(202,118,118);
    right: -10px;
    position: absolute;
    height: 70px;
    content: "";
}.learning_impact h3 {
    font-size: 31px;
    margin-bottom: 35px;
    color: #000000;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}.learning_impact h3::after {
    border-radius: 10px;
    position: absolute;
    content: "";
    left: 0;
    height: 4px;
    width: 60px;
    bottom: 0;
    background: linear-gradient(to right, rgb(226,161,161), rgb(202,118,118));
}.learning_impact ul {
    margin: 0;
    list-style: none;
    flex-direction: column;
    gap: 25px;
    display: flex;
    padding: 0;
}.learning_impact li {
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    background: rgb(246,214,214);
}.learning_impact li::before {
    position: absolute;
    background: linear-gradient(to right, rgb(226,161,161,0.5), transparent);
    height: 100%;
    width: 100%;
    content: "";
    opacity: 0;
    transition: opacity 0.3s ease;
    left: 0;
    top: 0;
}.learning_impact li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}.learning_impact li:hover::before {
    opacity: 0.3;
}.learning_impact li p {
    font-size: 13px;
    display: flex;
    margin: 0;
    position: relative;
    line-height: 1.5;
    font-weight: 400;
    color: #000000;
    gap: 16px;
    z-index: 1;
    align-items: center;
    padding: 16px 20px;
}.learning_impact svg {
    align-items: center;
    flex-shrink: 0;
    padding: 5px;
    background: #ffffff;
    justify-content: center;
    border-radius: 12px;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
}.learning_impact svg path {
    transition: fill 0.3s ease;
    fill: rgb(226,161,161);
}.learning_impact li:hover svg {
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.1) rotate(-10deg);
}.learning_impact li:hover svg path {
    fill: rgb(202,118,118);
}

@keyframes breathe {
    0% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.2); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.4; }
}

@media (max-width: 992px) {.learning_impact {
    padding: 80px 0;
}.learning_impact .pro_study {
    gap: 50px;
    grid-template-columns: 1fr;
}.learning_impact .pro_study::before {
    display: none;
}.learning_impact .image_box_wrap {
    grid-row: 1;
    margin: 0 auto;
    grid-column: 1;
    transform: perspective(800px) rotateY(0);
    width: 80%;
}.learning_impact .message_box {
    grid-column: 1;
    grid-row: 2;
    margin: 0 auto;
    transform: translateY(0);
    width: 90%;
}
}

@media (max-width: 576px) {.learning_impact {
    padding: 60px 0;
}.learning_impact .image_box_wrap {
    width: 100%;
    border-radius: 25% 45% 30% 40% / 40% 25% 45% 30%;
}.learning_impact .image_box_wrap::after {
    display: none;
}.learning_impact .message_box {
    padding: 35px 25px;
    width: 100%;
}.learning_impact .message_box::before,
    .learning_impact .message_box::after {
    width: 50px;
    height: 50px;
}.learning_impact h3 {
    margin-bottom: 25px;
    font-size: 24px;
}.learning_impact ul {
    gap: 15px;
}.learning_impact li p {
    padding: 12px 15px;
}.learning_impact svg {
    padding: 4px;
    height: 22px;
    width: 22px;
}}.customer_comments {
    background: rgb(246,214,214);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}.customer_comments::before {
    position: absolute;
    content: "";
    width: 800px;
    background: rgb(226,161,161,0.5);
    border-radius: 50%;
    top: -400px;
    height: 800px;
    filter: blur(100px);
    right: -400px;
    opacity: 0.2;
    z-index: 1;
}.customer_comments::after {
    content: "";
    bottom: -300px;
    opacity: 0.2;
    background: rgb(202,118,118,0.5);
    z-index: 1;
    position: absolute;
    left: -300px;
    height: 600px;
    border-radius: 50%;
    width: 600px;
    filter: blur(80px);
}.customer_comments .pro_study {
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}.customer_comments h4 {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
    position: relative;
}.customer_comments h4::after {
    position: absolute;
    top: -20px;
    width: 60px;
    z-index: -1;
    background: rgb(226,161,161,0.5);
    left: -30px;
    content: "";
    border-radius: 64% 36% 43% 57% / 40% 51% 49% 60%;
    height: 60px;
}.customer_comments .user_voices {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    position: relative;
    display: grid;
    gap: 40px;
}.customer_comments .user_voices::before {
    top: 50%;
    width: 80%;
    background: linear-gradient(to right, transparent, rgb(226,161,161,0.5), transparent);
    content: "";
    position: absolute;
    height: 1px;
    left: 10%;
    z-index: 1;
}.customer_comments .user_voices::after {
    top: 10%;
    background: linear-gradient(to bottom, transparent, rgb(202,118,118,0.5), transparent);
    height: 80%;
    position: absolute;
    z-index: 1;
    left: 50%;
    content: "";
    width: 1px;
}.customer_comments .opinion_hub {
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: center;
    min-height: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    display: flex;
    padding: 40px;
    border-radius: 63% 37% 54% 46% / 55% 52% 48% 45%;
    background: #ffffff;
    justify-content: center;
    flex-direction: column;
}.customer_comments .opinion_hub:hover {
    border-radius: 37% 63% 46% 54% / 48% 45% 55% 52%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}.customer_comments .opinion_hub::before {
    position: absolute;
    inset: 5px;
    z-index: -1;
    content: "";
    background: #ffffff;
    border-radius: inherit;
}.customer_comments .opinion_hub::after {
    opacity: 0.7;
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgb(226,161,161,0.5), rgb(202,118,118,0.5));
    z-index: -2;
    inset: 0;
    border-radius: inherit;
}.customer_comments .opinion_hub:nth-child(2n) {
    border-radius: 28% 72% 50% 50% / 44% 55% 45% 56%;
    transform: translateY(20px);
}.customer_comments .opinion_hub:nth-child(2n):hover {
    border-radius: 72% 28% 50% 50% / 55% 44% 56% 45%;
    transform: translateY(10px);
}.customer_comments .opinion_hub:nth-child(3n) {
    transform: translateY(-20px);
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
}.customer_comments .opinion_hub:nth-child(3n):hover {
    border-radius: 50% 50% 67% 33% / 27% 55% 45% 73%;
    transform: translateY(-30px);
}.customer_comments .image_box_wrap {
    animation: morphing 10s infinite alternate ease-in-out;
    border: 3px solid #ffffff;
    width: 80px;
    border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
    height: 80px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}@keyframes morphing {
    0% {
        border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
    }
    25% {
        border-radius: 35% 65% 35% 65% / 65% 35% 65% 35%;
    }
    50% {
        border-radius: 55% 45% 75% 25% / 25% 75% 25% 75%;
    }
    75% {
        border-radius: 25% 75% 45% 55% / 75% 25% 75% 25%;
    }
    100% {
        border-radius: 65% 35% 65% 35% / 35% 65% 35% 65%;
    }
}

.customer_comments .opinion_hub:hover .image_box_wrap {
    transform: scale(1.1);
}.customer_comments .opinion_hub span {
    display: block;
    font-size: 18px;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    font-weight: 700;
    font-family: Arial, sans-serif;
}.customer_comments .opinion_hub span::after {
    content: "";
    transform: translateX(-50%);
    bottom: -8px;
    position: absolute;
    left: 50%;
    height: 2px;
    width: 30px;
    background: rgb(226,161,161);
}.customer_comments .opinion_hub p {
    font-style: italic;
    position: relative;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

@media (max-width: 767px) {.customer_comments {
    padding: 70px 0;
}.customer_comments h4 {
    text-align: center;
    margin-bottom: 50px;
    font-size: calc(31px * 0.8);
}.customer_comments h4::after {
    width: 40px;
    left: 50%;
    height: 40px;
    transform: translateX(-50%);
    top: -15px;
}.customer_comments .user_voices {
    grid-template-columns: 1fr;
    gap: 50px;
}.customer_comments .user_voices::before,
    .customer_comments .user_voices::after {
    display: none;
}.customer_comments .opinion_hub,
    .customer_comments .opinion_hub:nth-child(2n),
    .customer_comments .opinion_hub:nth-child(3n) {
    padding: 30px;
    min-height: 280px;
    transform: none;
}.customer_comments .opinion_hub:hover,
    .customer_comments .opinion_hub:nth-child(2n):hover,
    .customer_comments .opinion_hub:nth-child(3n):hover {
    transform: translateY(-10px);
}.customer_comments .image_box_wrap {
    width: 70px;
    height: 70px;
}.customer_comments .opinion_hub span {
    font-size: calc(18px * 0.9);
}.customer_comments .opinion_hub p {
    font-size: calc(18px * 0.9);
}}.teaching_history {
    perspective: 1000px;
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(246,214,214), rgb(226,161,161,0.5));
}.teaching_history::before {
    opacity: 0.4;
    position: absolute;
    z-index: 1;
    background: radial-gradient(ellipse at center, rgb(202,118,118,0.5) 0%, transparent 70%);
    left: -50%;
    height: 200%;
    content: '';
    width: 200%;
    top: -50%;
    transform: rotate(-15deg);
    pointer-events: none;
}.teaching_history::after {
    background: radial-gradient(circle at top right, rgb(226,161,161,0.5) 0%, transparent 60%);
    z-index: 1;
    width: 100%;
    content: '';
    position: absolute;
    height: 100%;
    pointer-events: none;
    opacity: 0.5;
    right: 0;
    top: 0;
}.teaching_history .container {
    z-index: 2;
    max-width: 1200px;
    position: relative;
    transform-style: preserve-3d;
    padding: 0 1.5rem;
    margin: 0 auto;
}.teaching_history .opinion_hub {
    transform: translateZ(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid rgb(226,161,161);
    padding: 2.5rem;
    position: relative;
    grid-template-columns: 1fr;
    display: grid;
    gap: 2rem;
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.teaching_history .opinion_hub:hover {
    transform: translateZ(20px);
}.teaching_history .opinion_hub > div:nth-child(1) {
    align-items: center;
    display: flex;
    justify-content: center;
}.teaching_history .image_box_wrap {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 180px;
    width: 180px;
    transform: rotate(-3deg) translateZ(30px);
    position: relative;
    border-radius: 10px;
}.teaching_history .image_box_wrap::after {
    width: 100%;
    background: linear-gradient(45deg, rgb(226,161,161,0.5), transparent);
    content: '';
    position: absolute;
    opacity: 0.7;
    top: 0;
    left: 0;
    height: 100%;
    mix-blend-mode: overlay;
}.teaching_history .opinion_hub:hover .image_box_wrap {
    transform: rotate(0deg) translateZ(40px) scale(1.05);
}.teaching_history .opinion_hub > div:nth-child(2) {
    transform: translateZ(10px);
    text-align: center;
}.teaching_history .name {
    margin-bottom: 0.5rem;
    font-size: 22px;
    font-weight: 700;
    position: relative;
    letter-spacing: 0.03em;
    display: inline-block;
    color: rgb(226,161,161);
}.teaching_history .name::after {
    transform: translateX(-50%);
    left: 50%;
    height: 3px;
    content: '';
    position: absolute;
    bottom: -8px;
    background: rgb(202,118,118);
    width: 40px;
}.teaching_history .opinion_hub > div:nth-child(2) > div {
    margin-top: 1rem;
    font-weight: 600;
    font-size: calc(15px * 0.95);
    color: #000000;
    letter-spacing: 0.02em;
}.teaching_history .opinion_hub > div:nth-child(3) {
    position: relative;
    transform: translateZ(5px);
}.teaching_history .exp_container {
    line-height: 1.7;
    padding: 0 1rem;
    position: relative;
    color: #000000;
    font-size: 15px;
}.teaching_history .exp_container::before,
.teaching_history .exp_container::after {
    background-size: contain;
    position: absolute;
    width: 25px;
    height: 25px;
    content: '';
    background-repeat: no-repeat;
    opacity: 0.15;
}.teaching_history .exp_container::before {
    left: -10px;
    top: -10px;
}.teaching_history .exp_container::after {
    bottom: -10px;
    right: -10px;
    transform: rotate(180deg);
}

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

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

@media (min-width: 1200px) {.teaching_history .container {
    padding: 0 2rem;
}.teaching_history .opinion_hub {
    padding: 3.5rem;
    grid-template-columns: 320px 1fr;
}.teaching_history .image_box_wrap {
    height: 320px;
    width: 320px;
}@keyframes constellationPulse {
        0%, 100% { opacity: 0.4; }
        50% { opacity: 0.7; }
    }
    
    .teaching_history::before {
    animation: constellationPulse 8s infinite ease-in-out;
}@keyframes orbitalShift {
        0% { transform: rotate(-15deg); }
        50% { transform: rotate(-10deg); }
        100% { transform: rotate(-15deg); }
    }
    
    .teaching_history::before {
    animation: orbitalShift 20s infinite ease-in-out, constellationPulse 8s infinite ease-in-out;
}}.pricing_matrix {
    position: relative;
    padding: 120px 0 100px;
    z-index: 1;
    overflow: hidden;
}.pricing_matrix::before {
    content: "";
    left: 0;
    width: 100%;
    z-index: -1;
    top: 0;
    position: absolute;
    background: linear-gradient(135deg, rgb(202,118,118,0.5), rgba(0, 0, 0, 0.5) 80%);
    height: 100%;
}.pricing_matrix::after {
    width: 200%;
    top: -50%;
    z-index: -1;
    content: "";
    position: absolute;
    left: -50%;
    pointer-events: none;
    height: 200%;
    animation: rotateBackground 180s linear infinite;
    background: radial-gradient(circle at center, transparent 45%, rgba(255, 255, 255, 0.03) 50%, transparent 55%);
}.pricing_matrix .container {
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}.pricing_tiers {
    position: relative;
}.pricing_matrix h2 {
    position: relative;
    transform: perspective(1000px) translateZ(20px);
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}.pricing_matrix h2::after {
    position: absolute;
    bottom: -10px;
    transform: translateX(-50%);
    height: 3px;
    left: 50%;
    background: linear-gradient(90deg, transparent, rgb(226,161,161), transparent);
    width: 80px;
    content: "";
}.pricing_matrix .package_price {
    max-width: 800px;
    opacity: 0.9;
    font-size: 13px;
    margin: 0 auto 60px;
    color: #ffffff;
    text-align: center;
    transform: perspective(1000px) translateZ(10px);
    line-height: 1.6;
}.pricing_matrix .study_offers {
    padding: 0;
    list-style: none;
    display: grid;
    gap: 30px;
    perspective: 1000px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.pricing_matrix .study_offers li {
    transition: transform 0.5s ease-out;
    transform-style: preserve-3d;
}.pricing_matrix .pricing_offers {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
    text-decoration: none;
    height: 100%;
}.pricing_matrix .monthly_rate {
    border-radius: 16px;
    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));
    transform-style: preserve-3d;
    overflow: hidden;
    position: relative;
    height: 100%;
    padding: 30px;
    backdrop-filter: blur(8px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}.pricing_matrix .monthly_rate::before {
    position: absolute;
    width: 80px;
    content: "";
    border-radius: 50%;
    background: rgb(226,161,161);
    right: -40px;
    transition: transform 0.5s ease-out;
    opacity: 0.1;
    top: -40px;
    height: 80px;
}.pricing_matrix .monthly_rate::after {
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(226,161,161), transparent);
    transform-origin: left;
    bottom: 0;
    content: "";
    transform: scaleX(0.7);
    transition: transform 0.5s ease-out;
    width: 100%;
    height: 3px;
}.pricing_matrix .plan_table {
    position: relative;
    transform: translateZ(20px);
    z-index: 2;
}.pricing_matrix .pricing_offers h4 {
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
    font-size: calc(21px + 2px);
}.pricing_matrix .pricing_offers h4::after {
    width: 40px;
    position: absolute;
    content: "";
    transition: width 0.3s ease;
    background: rgb(226,161,161);
    left: 0;
    bottom: -8px;
    height: 2px;
}.pricing_matrix .pricing_offers p {
    max-height: 240px;
    scrollbar-color: rgb(226,161,161) transparent;
    font-size: calc(13px - 1px);
    opacity: 0.8;
    scrollbar-width: thin;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #ffffff;
    padding-right: 10px;
    overflow-y: auto;
}.pricing_matrix .pricing_offers p::-webkit-scrollbar {
    width: 4px;
}.pricing_matrix .pricing_offers p::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}.pricing_matrix .pricing_offers p::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(226,161,161);
}.pricing_matrix .plan_options {
    font-weight: 700;
    font-size: calc(21px + 6px);
    position: relative;
    margin-top: 20px;
    display: block;
    color: #ffffff;
    text-align: right;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}.pricing_matrix .plan_options::before {
    transition: transform 0.3s ease;
    background: rgb(226,161,161);
    bottom: -10px;
    height: 2px;
    content: "";
    transform-origin: right;
    width: 60px;
    right: 0;
    position: absolute;
    transform: scaleX(0);
}.pricing_matrix .pricing_offers:hover .monthly_rate {
    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_matrix .pricing_offers:hover .monthly_rate::before {
    transform: scale(3);
    opacity: 0.05;
}.pricing_matrix .pricing_offers:hover .monthly_rate::after {
    transform: scaleX(1);
}.pricing_matrix .pricing_offers:hover h4::after {
    width: 100%;
}.pricing_matrix .pricing_offers:hover .plan_options::before {
    transform: scaleX(1);
}

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

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

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

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

@media screen and (max-width: 767px) {.pricing_matrix .study_offers {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}.pricing_matrix {
    padding: 60px 0 40px;
}.pricing_matrix h2 {
    font-size: calc(28px - 4px);
}.pricing_matrix .package_price {
    font-size: calc(13px - 1px);
    margin-bottom: 40px;
}.pricing_matrix .monthly_rate {
    padding: 25px 20px;
}
}

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

@media (prefers-reduced-motion: reduce) {.pricing_matrix::after {
    animation: none;
}.pricing_matrix .pricing_offers:hover .monthly_rate {
    transform: none;
}.pricing_matrix .pricing_offers:hover .monthly_rate::before {
    transform: none;
}}header .top_plank {
    background: rgb(226,161,161);
    color:  #ffffff;
}header .top_plank .nav_ribbon div svg, header .top_plank .nav_ribbon div svg path {
    fill: #ffffff;
}header .top_plank .nav_ribbon div span {
    color: #ffffff;
}header .top_plank .nav_ribbon {
    padding: 15px 0 10px 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    line-height: 21px;
    display: flex;
    width: 100%;
    font-size: 15px;
}header .top_plank .nav_ribbon div {
    display: flex;
    justify-content: flex-start;
    margin-right: 24px;
    align-items: center;
}header .top_plank .nav_ribbon div img, header .top_plank .nav_ribbon div svg {
    height: 16px;
    margin-right: 8px;
    width: 16px;
}.study_process {
    padding: 8rem 2rem;
    overflow: hidden;
    position: relative;
    background: rgb(246,214,214);
}.study_process::before {
    z-index: 1;
    background-image: 
        linear-gradient(0deg, transparent 24px, rgb(226,161,161,0.5) 25px, rgb(226,161,161,0.5) 26px, transparent 27px, transparent 49px, rgb(226,161,161,0.5) 50px, rgb(226,161,161,0.5) 51px, transparent 52px),
        linear-gradient(90deg, transparent 24px, rgb(226,161,161,0.5) 25px, rgb(226,161,161,0.5) 26px, transparent 27px, transparent 49px, rgb(226,161,161,0.5) 50px, rgb(226,161,161,0.5) 51px, transparent 52px);
    height: 100%;
    position: absolute;
    content: "";
    background-size: 50px 50px;
    width: 100%;
    left: 0;
    animation: moveGrid 60s linear infinite;
    top: 0;
    opacity: 0.1;
}.study_process::after {
    content: "";
    opacity: 0.15;
    left: -50%;
    z-index: 0;
    background: radial-gradient(circle at center, rgb(202,118,118,0.5) 0%, transparent 60%);
    bottom: -50%;
    animation: pulse 20s infinite alternate;
    width: 200%;
    height: 200%;
    position: absolute;
}.study_process .pro_study {
    position: relative;
    gap: 3rem;
    z-index: 2;
    align-items: center;
    max-width: 1000px;
    flex-direction: column;
    display: flex;
    margin: 0 auto;
}.study_process h3 {
    padding: 2rem;
    animation: pixelateIn 1s ease-out forwards;
    text-align: center;
    border-image: linear-gradient(45deg, rgb(226,161,161), rgb(202,118,118)) 1;
    font-weight: 700;
    max-width: 700px;
    border: 8px solid transparent;
    position: relative;
    margin: 0;
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    font-size: 38px;
    background: #ffffff;
    transform: scale(0);
    color: rgb(226,161,161);
}.study_process h3::before,
.study_process h3::after {
    background: rgb(202,118,118,0.5);
    position: absolute;
    width: 0;
    height: 0;
    content: "";
}.study_process h3::before {
    left: 0;
    top: 0;
    animation: pixelGrow 0.5s 1.2s steps(10) forwards;
}.study_process h3::after {
    animation: pixelGrow 0.5s 1.5s steps(10) forwards;
    right: 0;
    bottom: 0;
}.study_process span {
    text-align: center;
    position: relative;
    background: #ffffff;
    border: 8px solid transparent;
    width: 100%;
    font-size: 14px;
    box-shadow: -20px 20px 0 rgba(0, 0, 0, 0.1);
    padding: 2rem;
    line-height: 1.8;
    color: #000000;
    border-image: linear-gradient(-45deg, rgb(202,118,118), rgb(226,161,161)) 1;
    transform: scale(0);
    animation: pixelateIn 1s 0.5s ease-out forwards;
    max-width: 700px;
    opacity: 0;
}.study_process span::before,
.study_process span::after {
    width: 0;
    content: "";
    background: rgb(226,161,161,0.5);
    height: 0;
    position: absolute;
}.study_process span::before {
    animation: pixelGrow 0.5s 1.8s steps(10) forwards;
    top: 0;
    right: 0;
}.study_process span::after {
    animation: pixelGrow 0.5s 2.1s steps(10) forwards;
    bottom: 0;
    left: 0;
}

@keyframes moveGrid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(1.1);
    }
}

@keyframes pixelateIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    80% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pixelGrow {
    0% {
        width: 8px;
        height: 8px;
    }
    25% {
        width: 8px;
        height: 16px;
    }
    50% {
        width: 16px;
        height: 16px;
    }
    75% {
        width: 16px;
        height: 24px;
    }
    100% {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 992px) {.study_process {
    padding: 6rem 1.5rem;
}.study_process h3 {
    box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.1);
    border-width: 6px;
    padding: 1.8rem;
    font-size: calc(38px * 0.9);
}.study_process span {
    border-width: 6px;
    box-shadow: -15px 15px 0 rgba(0, 0, 0, 0.1);
    padding: 1.8rem;
}
    
    @keyframes pixelGrow {
        0% {
            width: 6px;
            height: 6px;
        }
        25% {
            width: 6px;
            height: 12px;
        }
        50% {
            width: 12px;
            height: 12px;
        }
        75% {
            width: 12px;
            height: 18px;
        }
        100% {
            width: 18px;
            height: 18px;
        }
    }
}

@media (max-width: 768px) {.study_process {
    padding: 5rem 1rem;
}.study_process h3 {
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    font-size: calc(38px * 0.8);
    border-width: 4px;
}.study_process span {
    border-width: 4px;
    padding: 1.5rem;
    font-size: calc(14px * 0.95);
    box-shadow: -10px 10px 0 rgba(0, 0, 0, 0.1);
}.study_process .pro_study {
    gap: 2rem;
}@keyframes pixelGrow {
        0% {
            width: 4px;
            height: 4px;
        }
        25% {
            width: 4px;
            height: 8px;
        }
        50% {
            width: 8px;
            height: 8px;
        }
        75% {
            width: 8px;
            height: 12px;
        }
        100% {
            width: 12px;
            height: 12px;
        }
    }
}.privacy_guardhouse {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
    height: 100%;
    padding: 30px;
}.privacy_guardhouse h1 {
    margin-top: 30px;
    font-size: 38px;
    color: rgb(226,161,161);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid rgb(226,161,161);
    font-family: Arial, sans-serif;
}.privacy_guardhouse h2 {
    margin-top: 25px;
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    text-align: left;
    font-size: 28px;
    border-bottom: 1px solid rgb(202,118,118);
    color: rgb(202,118,118);
}.privacy_guardhouse h3, .privacy_guardhouse h4, .privacy_guardhouse h5, .privacy_guardhouse h6 {
    color: #000000;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 23px;
    margin-top: 20px;
    margin-bottom: 10px;
}.privacy_guardhouse ul, .privacy_guardhouse ol {
    font-family: Arial, sans-serif;
    list-style-position: inside;
    font-size: 16px;
    padding: 10px 0;
    color: #000000;
    list-style: none;
    padding-left: 0;
}.privacy_guardhouse li {
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
}.privacy_guardhouse li::before {
    font-size: 1.2em;
    color: rgb(226,161,161);
    left: 0;
    top: 0;
    line-height: 1em;
    content: "•";
    position: absolute;
}.privacy_guardhouse section {
    background: none;
}.privacy_guardhouse p, .privacy_guardhouse span, .privacy_guardhouse div {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    color: #000000;
    line-height: 1.5;
}

@media only screen and (max-width: 800px) {.privacy_guardhouse {
    padding: 20px 10px;
}.privacy_guardhouse h1 {
    margin-bottom: 15px;
    font-size: calc(23px - 4px);
    margin-top: 20px;
}.privacy_guardhouse h2 {
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: calc(23px - 4px);
}.privacy_guardhouse ul, .privacy_guardhouse ol {
    padding-left: 10px;
}.privacy_guardhouse li {
    padding-left: 15px;
}
}