* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}html,body {
    color: #000000;
    min-height: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
}.first_class_app {
    flex: 1 0 auto;
}.container {
    margin: auto;
    max-width: 100%;
    width: 1170px;
}svg {
    height: 30px;
    width: 30px;
}a {
    color: inherit;
    text-decoration: none;
}.wrapper-section_app {
    height: 100%;
    display: flex;
    min-height: 100%;
    flex-direction: column;
}header,footer {
    width: 100%;
}.debate_club_app {
    flex: 0 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.meet_us_app {
    overflow: hidden;
    padding: 6rem 0;
    color: #ffffff;
    position: relative;
}.meet_us_app::before {
    left: 0;
    width: 100%;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.65) 50%, 
        rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
    top: 0;
    height: 100%;
}.meet_us_app::after {
    content: "";
    opacity: 0.15;
    background: rgb(137,160,184);
    width: 40%;
    transform: rotate(-15deg) skewX(-15deg);
    z-index: 0;
    animation: float 12s ease-in-out infinite;
    position: absolute;
    top: -10%;
    right: -5%;
    height: 70%;
}.meet_us_app h4 {
    transform: translateX(-2rem);
    font-size: calc(18px * 1.2);
    position: relative;
    z-index: 2;
    padding-left: 4rem;
    animation: slideInLeft 0.8s ease-out forwards 0.3s;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    opacity: 0;
    color: #ffffff;
}.meet_us_app h4::before {
    left: 0;
    background: rgb(137,160,184);
    content: "";
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
    width: 3rem;
    height: 2px;
}.meet_us_app .container {
    position: relative;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}.meet_us_app .insight_box_app {
    padding: 3.5rem;
    backdrop-filter: blur(10px);
    animation: fadeUp 1s ease-out forwards 0.5s;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    opacity: 0;
    border-left: 3px solid rgb(137,160,184);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(20px);
}.meet_us_app .insight_box_app::before {
    left: 0;
    content: "";
    background: linear-gradient(
        to right,
        rgb(137,160,184,0.5) 0%,
        transparent 15%
    );
    opacity: 0.2;
    position: absolute;
    width: 100%;
    z-index: -1;
    top: 0;
    height: 100%;
}.meet_us_app .insight_box_app::after {
    right: 30px;
    bottom: -10px;
    content: "";
    height: 10px;
    background: rgb(137,160,184);
    width: 60%;
    transform-origin: left center;
    transform: scaleX(0);
    position: absolute;
    animation: scaleIn 1.5s ease-out forwards 1.2s;
    opacity: 0.3;
    filter: blur(10px);
}.meet_us_app h6 {
    margin-bottom: 1.5rem;
    transform-origin: left center;
    opacity: 0;
    position: relative;
    animation: popUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 0.7s;
    transform: translateY(15px);
    font-size: calc(20px * 1.5);
    font-weight: 700;
    display: inline-block;
    color: rgb(137,160,184);
}.meet_us_app h6::after {
    bottom: -8px;
    transform: scaleX(0);
    animation: expandWidth 0.8s ease-out forwards 1s;
    width: 100%;
    background: rgb(137,160,184);
    position: absolute;
    transform-origin: right center;
    height: 2px;
    left: 0;
    content: "";
}.meet_us_app .insight_box_app div {
    overflow-y: auto;
    overflow: hidden;
    padding-right: 15px;
    scrollbar-color: rgb(137,160,184) rgba(255, 255, 255, 0.1);
    position: relative;
    scrollbar-width: thin;
    max-height: 320px;
}.meet_us_app .insight_box_app div::-webkit-scrollbar {
    width: 6px;
}.meet_us_app .insight_box_app div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(137,160,184);
}.meet_us_app .insight_box_app div::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
}.meet_us_app span {
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-out forwards 1.2s;
    letter-spacing: 0.02em;
    opacity: 0;
    font-size: 12px;
    line-height: 1.8;
    display: block;
    color: #ffffff;
}

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

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

@keyframes popUp {
    0% {
        transform: translateY(15px);
        opacity: 0;
    }
    70% {
        transform: translateY(-5px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

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

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

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

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

@media (min-width: 992px) {.meet_us_app {
    padding: 8rem 0;
}.meet_us_app .insight_box_app {
    margin-left: 4rem;
    padding: 4rem;
    margin-right: 2rem;
}.meet_us_app h4 {
    padding-left: 6rem;
    font-size: calc(18px * 1.5);
}.meet_us_app h4::before {
    width: 5rem;
}.meet_us_app h6 {
    font-size: calc(20px * 1.8);
    margin-bottom: 2rem;
}.meet_us_app .insight_box_app div {
    padding-right: 25px;
    max-height: 380px;
}.meet_us_app span {
    line-height: 1.9;
    font-size: calc(12px * 1.05);
}
}

@media (max-width: 991px) {.meet_us_app {
    padding: 5rem 0;
}.meet_us_app .container {
    padding: 0 1.5rem;
}.meet_us_app .insight_box_app {
    padding: 2.5rem;
    margin: 0 1rem;
}
}

@media (max-width: 767px) {.meet_us_app {
    padding: 4rem 0;
}.meet_us_app h4 {
    font-size: calc(18px * 1.1);
    padding-left: 3rem;
    text-align: left;
}.meet_us_app h4::before {
    width: 2rem;
}.meet_us_app .insight_box_app {
    padding: 2rem;
    margin: 0 0.5rem;
}.meet_us_app h6 {
    font-size: calc(20px * 1.3);
    margin-bottom: 1.25rem;
}.meet_us_app span {
    font-size: 12px;
    line-height: 1.7;
}.meet_us_app .insight_box_app div {
    max-height: 280px;
}
}

@media (max-width: 480px) {.meet_us_app {
    padding: 3rem 0;
}.meet_us_app .insight_box_app {
    padding: 1.5rem;
    margin: 0;
}.meet_us_app h4 {
    padding-left: 2.5rem;
    font-size: 18px;
    margin-bottom: 1.5rem;
}.meet_us_app h4::before {
    width: 1.8rem;
}.meet_us_app h6 {
    font-size: 20px;
    margin-bottom: 1rem;
}.meet_us_app span {
    line-height: 1.6;
    font-size: calc(12px * 0.95);
}.meet_us_app .insight_box_app div {
    max-height: 240px;
}}.statistical_report_app {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    font-family: Arial, sans-serif;
    overflow: hidden;
    background: linear-gradient(145deg, rgb(215,222,236), rgb(137,160,184,0.5));
    padding: 5rem 1rem;
    position: relative;
}.statistical_report_app::before,
.statistical_report_app::after {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    width: 30vw;
    filter: blur(15px);
    content: '';
    background: linear-gradient(
        135deg,
        rgb(177,191,210,0.5) 0%,
        rgb(177,191,210) 100%
    );
    opacity: 0.07;
    height: 30vw;
    animation: floatAnimation 20s infinite alternate ease-in-out;
    z-index: 0;
    position: absolute;
}.statistical_report_app::before {
    top: -10%;
    right: -10%;
}.statistical_report_app::after {
    animation-delay: 5s;
    bottom: -10%;
    left: -10%;
}.statistical_report_app h3 {
    z-index: 1;
    color: #000000;
    transform: translateZ(0);
    text-align: center;
    font-weight: 700;
    font-size: calc(32px * 0.85);
    position: relative;
    letter-spacing: 0.03em;
    margin-bottom: 2.5rem;
}.statistical_report_app h3::after {
    left: 50%;
    height: 4px;
    background: linear-gradient(90deg, rgb(177,191,210), rgb(137,160,184));
    border-radius: 10px;
    transform: translateX(-50%);
    content: '';
    width: 60px;
    bottom: -15px;
    position: absolute;
}.statistical_report_app .container {
    perspective: 1000px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
}.statistical_report_app ul {
    margin: 0;
    list-style: none;
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    padding: 0;
}.statistical_report_app .statistics_advantage_app {
    align-items: center;
    transform: translateZ(0);
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.05),
        -8px -8px 16px rgba(255, 255, 255, 0.8),
        inset 1px 1px 1px rgba(255, 255, 255, 0.6);
    padding: 2rem 1.5rem;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.85),
        rgba(255, 255, 255, 0.5)
    );
    overflow: hidden;
    min-height: 180px;
    backdrop-filter: blur(10px);
    border-radius: 27px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    display: flex;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}.statistical_report_app .statistics_advantage_app::before {
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(
        145deg,
        transparent,
        rgba(rgb(137,160,184), 0.05)
    );
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    height: 100%;
}.statistical_report_app .statistics_advantage_app:hover {
    box-shadow: 
        10px 10px 20px rgba(0, 0, 0, 0.08),
        -8px -8px 16px rgba(255, 255, 255, 0.8),
        inset 1px 1px 1px rgba(255, 255, 255, 0.6);
    transform: translateY(-8px) translateZ(0);
}.statistical_report_app .statistics_advantage_app:hover::before {
    opacity: 1;
}.statistical_report_app .statistics_advantage_app span {
    font-size: calc(15px * 1.05);
    line-height: 1.4;
    display: block;
    text-align: center;
    position: relative;
    color: #000000;
    transition: transform 0.3s ease, color 0.3s ease;
    letter-spacing: 0.02em;
    font-weight: 600;
    margin-bottom: 1rem;
}.statistical_report_app .statistics_advantage_app p {
    margin: 0;
    font-size: calc(32px * 1.2);
    position: relative;
    color: rgb(177,191,210);
    font-weight: 700;
    transition: transform 0.3s ease, color 0.3s ease;
}.statistical_report_app .statistics_advantage_app p::after {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    height: 2px;
    transform-origin: center;
    position: absolute;
    width: 40px;
    content: '';
    background: linear-gradient(90deg, rgb(177,191,210), transparent);
    bottom: -10px;
}.statistical_report_app .statistics_advantage_app:hover p::after {
    transform: translateX(-50%) scaleX(1);
}.statistical_report_app .statistics_advantage_app:hover span {
    transform: translateY(-5px);
}.statistical_report_app .statistics_advantage_app:hover p {
    transform: scale(1.1);
    color: rgb(137,160,184);
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5%, 5%) rotate(5deg);
    }
    50% {
        transform: translate(0%, 10%) rotate(0deg);
    }
    75% {
        transform: translate(-5%, 5%) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@media (max-width: 992px) {.statistical_report_app {
    padding: 4rem 1rem;
}.statistical_report_app ul {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}.statistical_report_app .statistics_advantage_app {
    min-height: 160px;
    padding: 1.75rem 1.25rem;
}.statistical_report_app h3 {
    font-size: calc(32px * 0.8);
}
}

@media (max-width: 768px) {.statistical_report_app {
    padding: 3.5rem 1rem;
}.statistical_report_app ul {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}.statistical_report_app .statistics_advantage_app {
    min-height: 150px;
    padding: 1.5rem 1rem;
}.statistical_report_app .statistics_advantage_app span {
    font-size: 15px;
}.statistical_report_app .statistics_advantage_app p {
    font-size: calc(32px * 1.1);
}
}

@media (max-width: 576px) {.statistical_report_app {
    padding: 3rem 0.75rem;
}.statistical_report_app ul {
    margin: 0 auto;
    grid-template-columns: 1fr;
    max-width: 320px;
}.statistical_report_app h3 {
    margin-bottom: 2rem;
    font-size: calc(32px * 0.75);
}.statistical_report_app .statistics_advantage_app {
    padding: 1.5rem 1rem;
    min-height: auto;
}.statistical_report_app .statistics_advantage_app span {
    margin-bottom: 0.75rem;
}.statistical_report_app .statistics_advantage_app p {
    font-size: calc(32px);
}.statistical_report_app h3::after {
    width: 50px;
    height: 3px;
    bottom: -10px;
}}.help_center_app {
    z-index: 1;
    background: linear-gradient(135deg, rgb(177,191,210,0.5) 0%, rgb(137,160,184,0.5) 100%);
    position: relative;
    overflow: hidden;
    padding: 90px 0;
}.help_center_app::before {
    content: "";
    border-radius: 50%;
    opacity: 0.6;
    transform: scale(2);
    height: 100%;
    right: -50%;
    top: -50%;
    width: 100%;
    z-index: -1;
    background: radial-gradient(circle, rgb(177,191,210,0.5) 0%, transparent 70%);
    filter: blur(60px);
    position: absolute;
}.help_center_app::after {
    border-radius: 50%;
    width: 80%;
    filter: blur(80px);
    height: 80%;
    background: radial-gradient(circle, rgb(137,160,184,0.5) 0%, transparent 70%);
    left: -20%;
    position: absolute;
    bottom: -30%;
    content: "";
    opacity: 0.5;
    z-index: -1;
}.help_center_app .container {
    max-width: 1200px;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}.help_center_app .learn_faq_app {
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(20px);
    position: relative;
    border-radius: 20px;
}.help_center_app .learn_faq_app::before {
    height: 1px;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    right: 0;
}.help_center_app .learn_faq_app::after {
    position: absolute;
    right: 0;
    z-index: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    bottom: 0;
    content: "";
    left: 0;
    height: 1px;
}.help_center_app h2 {
    font-weight: 700;
    position: relative;
    color: #000000;
    margin-bottom: 30px;
    font-size: 38px;
}.help_center_app p {
    margin-bottom: 40px;
    max-width: 700px;
    color: #000000;
    font-size: 15px;
    line-height: 1.7;
}.help_center_app .write_form_app {
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
}.help_center_app .contact_box_app {
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
    font-size: 15px;
    transition: all 0.3s ease;
    align-items: center;
    position: relative;
    border-radius: 10px;
    color: #000000;
    font-weight: 400;
    padding: 16px 25px;
    display: flex;
}.help_center_app .contact_box_app::before {
    transition: all 0.6s ease;
    transform: skewX(-25deg) translateX(-60px);
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    height: 100%;
    top: 0;
    width: 50px;
    left: 0;
}.help_center_app .contact_box_app:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}.help_center_app .contact_box_app:hover::before {
    transform: skewX(-25deg) translateX(200px);
}.help_center_app .contact_box_app svg {
    height: 22px;
    transition: transform 0.3s ease;
    width: 22px;
    margin-right: 12px;
}.help_center_app .contact_box_app:hover svg {
    transform: scale(1.15);
}.help_center_app .contact_box_app svg path {
    transition: fill 0.3s ease;
    fill: rgb(177,191,210);
}.help_center_app .contact_box_app:hover svg path {
    fill: #000000;
}.help_center_app p svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}.help_center_app p svg path {
    fill: rgb(177,191,210);
}.help_center_app p:nth-last-child(2) {
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    width: fit-content;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-bottom: 30px;
}@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.help_center_app .container::before {
    height: 120px;
    border-radius: 50%;
    content: "";
    animation: floating 6s ease-in-out infinite;
    right: 10%;
    background: rgba(255, 255, 255, 0.1);
    top: -60px;
    z-index: -1;
    position: absolute;
    width: 120px;
}.help_center_app .container::after {
    left: 15%;
    content: "";
    width: 80px;
    z-index: -1;
    background: rgba(255, 255, 255, 0.15);
    bottom: -40px;
    animation: floating 8s ease-in-out infinite;
    animation-delay: 1s;
    position: absolute;
    border-radius: 50%;
    height: 80px;
}

@media (max-width: 991px) {.help_center_app {
    padding: 70px 0;
}.help_center_app .learn_faq_app {
    padding: 40px 30px;
}.help_center_app h2 {
    font-size: calc(38px * 0.9);
    margin-bottom: 25px;
}.help_center_app p {
    margin-bottom: 30px;
}.help_center_app .write_form_app {
    gap: 15px;
}
}

@media (max-width: 767px) {.help_center_app {
    padding: 50px 0;
}.help_center_app .learn_faq_app {
    padding: 30px 20px;
}.help_center_app h2 {
    font-size: calc(38px * 0.85);
    margin-bottom: 20px;
}.help_center_app p {
    font-size: calc(15px * 0.95);
    margin-bottom: 25px;
}.help_center_app .write_form_app {
    gap: 12px;
    flex-direction: column;
}.help_center_app .contact_box_app {
    padding: 14px 20px;
    width: 100%;
}.help_center_app .contact_box_app svg {
    margin-right: 10px;
    height: 20px;
    width: 20px;
}.help_center_app .container::before,
  .help_center_app .container::after {
    display: none;
}}

.help_center_app .contact_box_app:active {
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.5);
}.help_center_app .contact_box_app:nth-child(1) {
    animation: floating 6s ease-in-out infinite;
}.help_center_app .contact_box_app:nth-child(2) {
    animation-delay: 0.3s;
    animation: floating 6s ease-in-out infinite;
}.help_center_app .contact_box_app:nth-child(3) {
    animation-delay: 0.6s;
    animation: floating 6s ease-in-out infinite;
}.potential_enrollees_app {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%, 
        rgb(137,160,184,0.5) 100%);
}.potential_enrollees_app::before {
    width: 100%;
    left: 0;
    content: "";
    background-size: 40px 40px;
    top: 0;
    z-index: -1;
    height: 100%;
    position: absolute;
    background-image: 
        linear-gradient(0deg, transparent 24%, 
            rgba(#ffffff, 0.05) 25%, 
            rgba(#ffffff, 0.05) 26%, 
            transparent 27%, transparent 74%, 
            rgba(#ffffff, 0.05) 75%, 
            rgba(#ffffff, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, 
            rgba(#ffffff, 0.05) 25%, 
            rgba(#ffffff, 0.05) 26%, 
            transparent 27%, transparent 74%, 
            rgba(#ffffff, 0.05) 75%, 
            rgba(#ffffff, 0.05) 76%, transparent 77%, transparent);
}.potential_enrollees_app::after {
    content: "";
    width: 100%;
    left: 0;
    position: absolute;
    z-index: -1;
    background: 
        radial-gradient(circle at 90% 10%, rgba(rgb(177,191,210,0.5), 0.2) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(rgb(137,160,184,0.5), 0.2) 0%, transparent 50%);
    height: 100%;
    top: 0;
}.potential_enrollees_app .community_ed_app {
    display: flex;
    max-width: 1100px;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}.potential_enrollees_app h3 {
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(#ffffff, 0.1);
    display: inline-block;
    font-size: 35px;
    font-weight: 600;
    align-self: flex-end;
    background: rgba(rgb(177,191,210,0.5), 0.2);
    text-align: right;
    border-radius: 10px 0 0 10px;
    margin-bottom: 3rem;
    padding: 1rem 0;
    color: #ffffff;
    padding: 0.8rem 2rem;
}.potential_enrollees_app h3::before {
    content: "";
    position: absolute;
    background: rgb(177,191,210);
    width: 10px;
    right: 0;
    top: 0;
    height: 100%;
}.potential_enrollees_app h3::after {
    height: 1px;
    position: absolute;
    background: linear-gradient(
        to left,
        rgb(177,191,210),
        transparent
    );
    width: 100%;
    bottom: -10px;
    content: "";
    right: 0;
}.potential_enrollees_app ul {
    margin: 0;
    display: grid;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
}.potential_enrollees_app li {
    padding: 1.5rem;
    border: 1px solid rgba(#ffffff, 0.1);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(#ffffff, 0.05);
    transition: all 0.3s ease;
    display: flex;
    background: rgba(rgba(0, 0, 0, 0.5), 0.3);
    position: relative;
    align-items: flex-start;
    border-radius: 10px;
    overflow: hidden;
}.potential_enrollees_app li::before {
    opacity: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        rgb(177,191,210,0.5),
        rgb(137,160,184,0.5)
    );
    width: 100%;
    transition: opacity 0.3s ease;
    top: 0;
    position: absolute;
    content: "";
    left: 0;
}.potential_enrollees_app li::after {
    z-index: 1;
    top: 0;
    opacity: 0;
    content: "";
    background: 
        linear-gradient(135deg, transparent 50%, rgba(rgb(177,191,210,0.5), 0.2) 50%);
    height: 30px;
    position: absolute;
    transition: opacity 0.3s ease;
    width: 30px;
    right: 0;
}.potential_enrollees_app li:hover {
    transform: translateY(-5px);
    border-color: rgba(rgb(177,191,210,0.5), 0.3);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(#ffffff, 0.1);
}.potential_enrollees_app li:hover::before,
.potential_enrollees_app li:hover::after {
    opacity: 1;
}.potential_enrollees_app li svg {
    margin-right: 1.2rem;
    top: 2px;
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    fill: rgb(137,160,184);
    position: relative;
}.potential_enrollees_app li svg path {
    transition: fill 0.3s ease;
    fill: rgb(137,160,184);
}.potential_enrollees_app li:hover svg {
    transform: scale(1.2);
}.potential_enrollees_app li:hover svg path {
    fill: rgb(177,191,210);
}.potential_enrollees_app li::before {
    width: 100%;
    opacity: 0.5;
    position: absolute;
    transition: opacity 0.3s ease;
    left: 0;
    top: 0;
    height: 2px;
    content: "";
    background: linear-gradient(
        90deg,
        rgb(137,160,184),
        transparent
    );
}.potential_enrollees_app li {
    line-height: 1.5;
    font-weight: 400;
    color: #ffffff;
    font-size: 17px;
}

@media (min-width: 992px) {.potential_enrollees_app ul {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
}.potential_enrollees_app li:first-child {
    grid-row: 1;
    grid-column: 1;
}.potential_enrollees_app li:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}.potential_enrollees_app li:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}.potential_enrollees_app li:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}.potential_enrollees_app li:nth-child(5) {
    grid-row: 2;
    grid-column: 2;
}.potential_enrollees_app li:nth-child(6) {
    grid-row: 2;
    grid-column: 3;
}
}

@media (max-width: 991px) {.potential_enrollees_app {
    padding: 4rem 0;
}.potential_enrollees_app h3 {
    padding: 0.7rem 1.5rem;
    font-size: calc(35px * 0.9);
    margin-bottom: 2.5rem;
}.potential_enrollees_app ul {
    gap: 1.2rem;
}
}

@media (max-width: 768px) {.potential_enrollees_app {
    padding: 3.5rem 0;
}.potential_enrollees_app .community_ed_app {
    padding: 0 1.5rem;
}.potential_enrollees_app h3 {
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-size: calc(35px * 0.8);
    margin-bottom: 2rem;
    align-self: center;
    width: auto;
    text-align: center;
}.potential_enrollees_app h3::before {
    right: 0;
    left: 0;
    width: 100%;
    top: auto;
    height: 4px;
    bottom: 0;
}.potential_enrollees_app h3::after {
    display: none;
}.potential_enrollees_app ul {
    gap: 1rem;
    grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {.potential_enrollees_app {
    padding: 3rem 0;
}.potential_enrollees_app .community_ed_app {
    padding: 0 1rem;
}.potential_enrollees_app h3 {
    padding: 0.5rem 1.2rem;
    font-size: calc(35px * 0.7);
    margin-bottom: 1.5rem;
}.potential_enrollees_app li {
    padding: 1.2rem;
}.potential_enrollees_app li svg {
    width: 28px;
    height: 28px;
    margin-right: 0.8rem;
}}.contact_us_app {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, rgb(215,222,236) 0%, rgb(177,191,210,0.5) 100%);
}.contact_us_app::before {
    opacity: 0.03;
    top: 0;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(177,191,210,0.5),
        rgb(177,191,210,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
}.contact_us_app .container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 0 20px;
}.contact_us_app h2 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    text-align: center;
    color: #000000;
    font-size: 40px;
    margin-bottom: 50px;
    position: relative;
}.contact_us_app .message_inquiry_app {
    flex-direction: column;
    display: flex;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 11px;
    background: #ffffff;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}.contact_us_app .img_grid_app {
    width: 100%;
    position: relative;
    height: 200px;
}.contact_us_app .connect_panel_app {
    width: 100%;
    position: relative;
    padding: 50px;
}.contact_us_app form {
    width: 100%;
}.contact_us_app form h3 {
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
    color: #000000;
    font-weight: 700;
    font-size: 21px;
    font-family: Arial, sans-serif;
}.contact_us_app form h3::after {
    width: 100%;
    border-radius: 1.5px;
    height: 3px;
    position: absolute;
    background: rgb(177,191,210);
    content: "";
    left: 0;
    bottom: -10px;
}.contact_us_app form input[type="text"] {
    margin-bottom: 20px;
    font-size: 15px;
    padding: 15px 20px;
    border: 2px solid transparent;
    color: #000000;
    border-radius: 10px;
    background: rgb(215,222,236);
    font-family: Arial, sans-serif;
    width: 100%;
    transition: all 0.3s ease;
}.contact_us_app form input[type="text"]:focus {
    border-color: rgb(177,191,210);
    outline: none;
}.contact_us_app form input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.35);
}.contact_us_app .message_widget_app {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}.contact_us_app .message_widget_app input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact_us_app .message_widget_app label {
    line-height: 1.6;
    padding-left: 35px;
    color: #000000;
    position: relative;
    font-size: 15px;
    cursor: pointer;
}.contact_us_app .message_widget_app label::before {
    width: 22px;
    transition: all 0.3s ease;
    background: rgb(215,222,236);
    border-radius: 10px;
    content: "";
    height: 22px;
    position: absolute;
    top: 2px;
    left: 0;
}.contact_us_app .message_widget_app input[type="checkbox"]:checked + label::before {
    background: rgb(177,191,210);
}.contact_us_app .message_widget_app input[type="checkbox"]:checked + label::after {
    left: 8px;
    top: 5px;
    content: "";
    position: absolute;
    width: 6px;
    height: 12px;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    border-right: 2px solid #ffffff;
}.contact_us_app .message_widget_app label a {
    transition: all 0.3s ease;
    color: rgb(177,191,210);
    text-decoration: none;
}.contact_us_app .message_widget_app label a:hover {
    text-decoration: underline;
}.contact_us_app form .query_inquiry_app {
    font-family: Arial, sans-serif;
    border: none;
    padding: 16px 20px;
    background: rgb(177,191,210);
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
    overflow: hidden;
    font-weight: 600;
    width: 100%;
    position: relative;
    font-size: 18px;
    color: #ffffff;
}.contact_us_app form .query_inquiry_app:hover {
    background: rgb(137,160,184);
}.contact_us_app svg {
    width: 20px;
    height: 20px;
    fill: rgb(177,191,210);
}.contact_us_app svg path {
    fill: rgb(177,191,210);
    transition: fill 0.3s ease;
}

@media screen and (min-width: 768px) {.contact_us_app .message_inquiry_app {
    flex-direction: row;
    max-width: 1000px;
}.contact_us_app .img_grid_app {
    height: auto;
    width: 40%;
    min-height: 400px;
}.contact_us_app .connect_panel_app {
    width: 60%;
}
}

@media screen and (min-width: 992px) {.contact_us_app .img_grid_app {
    width: 50%;
}.contact_us_app .connect_panel_app {
    width: 50%;
    padding: 60px;
}
}

@media screen and (min-width: 1200px) {.contact_us_app .message_inquiry_app {
    max-width: 1100px;
}.contact_us_app .img_grid_app {
    min-height: 500px;
}
}

@media screen and (max-width: 576px) {.contact_us_app {
    padding: 60px 0;
}.contact_us_app h2 {
    margin-bottom: 30px;
    font-size: calc(40px * 0.7);
}.contact_us_app .connect_panel_app {
    padding: 30px 20px;
}.contact_us_app form h3 {
    font-size: calc(21px * 0.9);
}}.course_summary_app {
    background: rgb(215,222,236);
    display: flex;
    min-height: 100vh;
    position: relative;
    justify-content: center;
    overflow: hidden;
    align-items: center;
    padding: 4rem 2rem;
}.course_summary_app .education_guide_app {
    transform: translateY(-50%);
    border-top-left-radius: 150px;
    overflow: hidden;
    height: 70vh;
    top: 50%;
    border-bottom-left-radius: 150px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.08);
    right: 0;
    width: 45%;
    z-index: 1;
    position: absolute;
}.course_summary_app .education_guide_app::before {
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(215,222,236), transparent);
    z-index: 2;
    pointer-events: none;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
}.course_summary_app .class_route_app {
    height: 500%;
    width: 100%;
    animation: carousel-vertical 25s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    flex-direction: column;
    display: flex;
}.course_summary_app .education_guide_app:hover .class_route_app {
    animation-play-state: paused;
}.course_summary_app .learn_more_app {
    position: relative;
    width: 100%;
    height: 20%;
    flex-shrink: 0;
}.course_summary_app .learn_more_app img {
    object-position: center;
    height: 100%;
    object-fit: cover;
    width: 100%;
    filter: brightness(1.05) contrast(1.08);
    transition: transform 0.7s ease;
}.course_summary_app .learn_more_app:hover img {
    transform: scale(1.05);
}.course_summary_app .container {
    max-width: 1200px;
    justify-content: flex-start;
    z-index: 2;
    width: 100%;
    display: flex;
    margin: 0 auto;
    position: relative;
}.course_summary_app .community_ed_app {
    padding-right: 10%;
    width: 60%;
}.course_summary_app .skill_explorer_app {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    padding: 3.5rem;
    background: #ffffff;
    border-radius: 12px;
    position: relative;
}.course_summary_app .skill_explorer_app::before {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    height: calc(100% - 3rem);
    border-radius: 10px;
    border: 1px solid rgb(177,191,210,0.5);
    width: calc(100% - 3rem);
    content: "";
    pointer-events: none;
    opacity: 0.3;
}.course_summary_app .skill_explorer_app h3 {
    margin-bottom: 1.25rem;
    color: rgb(177,191,210);
    font-weight: 700;
    font-size: 29px;
}.course_summary_app .skill_explorer_app p {
    font-size: 14px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 2rem;
}.course_summary_app .skill_explorer_app .query_inquiry_app {
    transition: all 0.3s ease;
    font-size: 15px;
    padding: 0.9rem 2.25rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 12px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    background: rgb(177,191,210);
}.course_summary_app .skill_explorer_app .query_inquiry_app::before {
    width: 100%;
    z-index: -1;
    top: 0;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    content: "";
    left: 0;
    height: 100%;
}.course_summary_app .skill_explorer_app .query_inquiry_app:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}.course_summary_app .skill_explorer_app .query_inquiry_app:hover::before {
    transform: translateX(100%);
}

@keyframes carousel-vertical {
    0%, 16% {
        transform: translateY(0);
    }
    20%, 36% {
        transform: translateY(-20%);
    }
    40%, 56% {
        transform: translateY(-40%);
    }
    60%, 76% {
        transform: translateY(-60%);
    }
    80%, 96% {
        transform: translateY(-80%);
    }
    100% {
        transform: translateY(0);
    }
}

@media (min-width: 768px) and (max-width: 991px) {.course_summary_app {
    padding: 3rem 2rem;
}.course_summary_app .education_guide_app {
    height: 60vh;
    border-bottom-left-radius: 100px;
    width: 40%;
    border-top-left-radius: 100px;
}.course_summary_app .community_ed_app {
    padding-right: 5%;
    width: 65%;
}.course_summary_app .skill_explorer_app {
    padding: 2.5rem;
}.course_summary_app .skill_explorer_app::before {
    width: calc(100% - 2rem);
    left: 1rem;
    top: 1rem;
    height: calc(100% - 2rem);
}.course_summary_app .skill_explorer_app h3 {
    font-size: calc(29px * 0.9);
}

}

@media (max-width: 767px) {.course_summary_app {
    display: block;
    padding: 3rem 1.5rem;
    min-height: auto;
}.course_summary_app .education_guide_app {
    width: 100%;
    transform: none;
    margin-bottom: 2rem;
    height: 40vh;
    border-bottom-left-radius: 50px;
    right: auto;
    border-bottom-right-radius: 50px;
    position: relative;
    border-radius: 0;
    top: auto;
}.course_summary_app .education_guide_app::before {
    height: 100px;
    bottom: 0;
    width: 100%;
    top: auto;
    background: linear-gradient(0deg, rgb(215,222,236), transparent);
}.course_summary_app .class_route_app {
    width: 500%;
    height: 100%;
    animation: carousel-horizontal-mobile 20s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    flex-direction: row;
}.course_summary_app .learn_more_app {
    width: 20%;
    height: 100%;
}.course_summary_app .container {
    width: 100%;
    justify-content: center;
}.course_summary_app .community_ed_app {
    max-width: 500px;
    width: 100%;
    padding-right: 0;
}.course_summary_app .skill_explorer_app {
    padding: 2rem 1.5rem;
}.course_summary_app .skill_explorer_app::before {
    width: calc(100% - 1.5rem);
    height: calc(100% - 1.5rem);
    top: 0.75rem;
    left: 0.75rem;
}.course_summary_app .skill_explorer_app h3 {
    font-size: 24px;
}.course_summary_app .skill_explorer_app p {
    font-size: calc(14px * 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}.course_summary_app .skill_explorer_app .query_inquiry_app {
    text-align: center;
    padding: 0.8rem 1.5rem;
    width: 100%;
}@keyframes carousel-horizontal-mobile {
        0%, 16% {
            transform: translateX(0);
        }
        20%, 36% {
            transform: translateX(-20%);
        }
        40%, 56% {
            transform: translateX(-40%);
        }
        60%, 76% {
            transform: translateX(-60%);
        }
        80%, 96% {
            transform: translateX(-80%);
        }
        100% {
            transform: translateX(0);
        }
    }
}.gratitudeBox_app {
    background: linear-gradient(135deg, rgb(215,222,236) 25%, rgba(rgb(177,191,210,0.5), 0.05) 100%);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}.gratitudeBox_app::before {
    right: -10%;
    background: linear-gradient(120deg, rgb(137,160,184), rgba(rgb(137,160,184,0.5), 0.2));
    filter: blur(80px);
    animation: float 15s ease-in-out infinite alternate;
    width: 40%;
    transform: rotate(35deg) skew(15deg);
    content: "";
    height: 70%;
    position: absolute;
    top: -15%;
    z-index: 0;
    opacity: 0.1;
}.gratitudeBox_app::after {
    content: "";
    height: 10px;
    position: absolute;
    opacity: 0.3;
    left: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(177,191,210) 20%, 
        rgb(137,160,184) 50%, 
        rgb(177,191,210) 80%, 
        transparent);
    z-index: 1;
    bottom: 0;
    width: 100%;
}.gratitudeBox_app .container {
    z-index: 2;
    max-width: 1140px;
    position: relative;
    margin: 0 auto;
    padding: 0 1.5rem;
}.gratitudeBox_app .community_ed_app {
    gap: 2rem;
    background: rgba(rgb(255, 255, 255, 0.5), 0.9);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 3.5rem;
    display: flex;
    box-shadow: 
        0 10px 30px rgba(rgba(0, 0, 0, 0.5), 0.05),
        0 1px 0 rgba(rgb(255, 255, 255, 0.5), 0.95) inset,
        0 -20px 50px rgba(rgb(137,160,184,0.5), 0.1) inset;
    position: relative;
    transform: perspective(1000px) rotateY(1deg);
}.gratitudeBox_app .community_ed_app:hover {
    transform: perspective(1000px) rotateY(-1deg);
    box-shadow: 
        0 15px 35px rgba(rgba(0, 0, 0, 0.5), 0.08),
        0 1px 0 rgba(rgb(255, 255, 255, 0.5), 0.95) inset,
        0 -20px 50px rgba(rgb(137,160,184,0.5), 0.15) inset;
}.gratitudeBox_app .community_ed_app > div:first-child {
    position: relative;
    padding-bottom: 1.5rem;
}.gratitudeBox_app .community_ed_app > div:first-child::after {
    transform-origin: left;
    height: 3px;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    left: 0;
    background: rgb(177,191,210);
    position: absolute;
    bottom: 0;
    width: 60px;
    content: "";
}.gratitudeBox_app .community_ed_app:hover > div:first-child::after {
    width: 120px;
}.gratitudeBox_app h5 {
    transition: transform 0.4s ease;
    transform: translateX(-5px);
    color: #000000;
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    position: relative;
    font-weight: 700;
}.gratitudeBox_app .community_ed_app:hover h5 {
    transform: translateX(0);
}.gratitudeBox_app a {
    position: relative;
    text-decoration: none;
    transition: transform 0.3s ease-out;
    display: block;
}.gratitudeBox_app a:hover {
    transform: translateY(-3px);
}.gratitudeBox_app p {
    color: #000000;
    position: relative;
    line-height: 1.8;
    transition: color 0.3s ease;
    font-size: 17px;
    font-family: Arial, sans-serif;
    margin: 0;
    font-weight: 400;
}.gratitudeBox_app a:hover p {
    color: rgb(177,191,210);
}.gratitudeBox_app a::before {
    width: 0;
    left: 0;
    background: linear-gradient(90deg, 
        rgb(177,191,210), 
        rgb(137,160,184));
    content: "";
    height: 1px;
    position: absolute;
    opacity: 0.7;
    bottom: -10px;
    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}.gratitudeBox_app a:hover::before {
    width: 100%;
}.gratitudeBox_app .community_ed_app > div:first-child::before {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.1;
    transform: rotate(-5deg) scale(0.9);
    right: 0;
    font-size: calc(31px * 1.5);
    color: rgb(137,160,184);
    content: "✓";
    top: -20px;
    position: absolute;
}.gratitudeBox_app .community_ed_app:hover > div:first-child::before {
    transform: rotate(5deg) scale(1.1);
    opacity: 0.2;
}

@keyframes float {
    0% {
        transform: rotate(35deg) skew(15deg) translate(0, 0);
    }
    50% {
        transform: rotate(38deg) skew(12deg) translate(-20px, 20px);
    }
    100% {
        transform: rotate(32deg) skew(18deg) translate(20px, -10px);
    }
}

@media (max-width: 992px) {.gratitudeBox_app {
    padding: 4rem 0;
}.gratitudeBox_app .community_ed_app {
    padding: 2.5rem;
}.gratitudeBox_app h5 {
    font-size: calc(18px * 0.9);
}
}

@media (max-width: 768px) {.gratitudeBox_app {
    padding: 3rem 0;
}.gratitudeBox_app .community_ed_app {
    transform: perspective(1000px) rotateY(0deg);
    gap: 1.5rem;
    padding: 2rem;
}.gratitudeBox_app .community_ed_app:hover {
    transform: perspective(1000px) rotateY(0deg);
}.gratitudeBox_app h5 {
    transform: translateX(0);
    font-size: calc(18px * 0.85);
}.gratitudeBox_app p {
    font-size: calc(17px * 0.95);
}.gratitudeBox_app::before {
    width: 60%;
    top: -10%;
    height: 50%;
    right: -30%;
}
}

@media (max-width: 576px) {.gratitudeBox_app {
    padding: 2.5rem 0;
}.gratitudeBox_app .community_ed_app {
    gap: 1.25rem;
    padding: 1.5rem;
}.gratitudeBox_app h5 {
    font-size: calc(18px * 0.8);
}.gratitudeBox_app p {
    line-height: 1.6;
    font-size: calc(17px * 0.9);
}.gratitudeBox_app .community_ed_app > div:first-child {
    padding-bottom: 1rem;
}.gratitudeBox_app .community_ed_app > div:first-child::after {
    height: 2px;
    width: 40px;
}.gratitudeBox_app .community_ed_app:hover > div:first-child::after {
    width: 80px;
}.gratitudeBox_app .community_ed_app > div:first-child::before {
    top: -15px;
    font-size: calc(31px * 1.2);
}}.leadership_profile_app {
    background: linear-gradient(135deg, rgb(215,222,236) 0%, rgb(137,160,184,0.5) 100%);
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
}.leadership_profile_app::before {
    right: -5%;
    z-index: 0;
    position: absolute;
    background: rgb(177,191,210,0.5);
    animation: floating 15s ease-in-out infinite;
    opacity: 0.3;
    height: 40%;
    transform-origin: center;
    filter: blur(60px);
    content: "";
    top: -5%;
    width: 40%;
}.leadership_profile_app::after {
    opacity: 0.2;
    bottom: -5%;
    background: rgb(137,160,184,0.5);
    left: -5%;
    z-index: 0;
    position: absolute;
    height: 30%;
    filter: blur(50px);
    width: 30%;
    animation: floating 18s ease-in-out infinite reverse;
    transform-origin: center;
    content: "";
}.leadership_profile_app .container {
    padding: 0 1.5rem;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    max-width: 1200px;
}.leadership_profile_app .client_review_app {
    gap: 2rem;
    border-radius: 4px;
    opacity: 0;
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    display: grid;
    background: rgba(255, 255, 255, 0.85);
    animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
    grid-template-columns: 1fr;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transform-style: preserve-3d;
}.leadership_profile_app .client_review_app:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 
                0 8px 20px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}.leadership_profile_app .client_review_app > div:first-child {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}.leadership_profile_app .client_review_app .img_grid_app {
    width: 100%;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    animation: fadeInLeft 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
    position: relative;
    transform: translateZ(30px);
    border-radius: 3px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 
                0 5px 15px rgba(0, 0, 0, 0.1);
    height: 280px;
}.leadership_profile_app .client_review_app .img_grid_app::before {
    left: 0;
    z-index: 1;
    width: 100%;
    top: 0;
    position: absolute;
    content: "";
    background: linear-gradient(
        to bottom,
        transparent 65%,
        rgba(rgb(177,191,210), 0.2) 100%
    );
    height: 100%;
}.leadership_profile_app .client_review_app .img_grid_app::after {
    content: "";
    opacity: 0;
    position: absolute;
    transition: opacity 0.5s ease;
    top: -10%;
    height: 120%;
    width: 120%;
    z-index: 2;
    left: -10%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        transparent 80%
    );
}.leadership_profile_app .client_review_app .img_grid_app:hover::after {
    opacity: 1;
}.leadership_profile_app .client_review_app > div:nth-child(2) {
    text-align: center;
    animation: fadeInUp 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s forwards;
    opacity: 0;
}.leadership_profile_app .client_review_app .name {
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    color: #000000;
    font-size: 18px;
    display: inline-block;
}.leadership_profile_app .client_review_app .name::after {
    bottom: -8px;
    left: 50%;
    border-radius: 1px;
    background: rgb(177,191,210);
    transform: translateX(-50%);
    content: "";
    height: 3px;
    position: absolute;
    width: 40px;
}.leadership_profile_app .client_review_app > div:nth-child(2) > div {
    font-size: calc(13px - 0.1rem);
    margin-top: 1rem;
    font-weight: 600;
    color: rgb(137,160,184);
}.leadership_profile_app .client_review_app > div:nth-child(3) {
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s forwards;
}.leadership_profile_app .client_review_app .career_wrap_app {
    padding-left: 1.5rem;
    font-size: 13px;
    position: relative;
    line-height: 1.7;
    color: #000000;
    border-left: 3px solid rgb(177,191,210,0.5);
    margin: 0;
}.leadership_profile_app .client_review_app .career_wrap_app::before {
    color: rgb(177,191,210,0.5);
    opacity: 0.2;
    position: absolute;
    font-family: Georgia, serif;
    content: "";
    left: -15px;
    font-size: 5rem;
    top: -20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes floating {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5%, 5%) rotate(2deg);
    }
    50% {
        transform: translate(0, 8%) rotate(0deg);
    }
    75% {
        transform: translate(-5%, 3%) rotate(-2deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@media (min-width: 768px) {.leadership_profile_app {
    padding: 7rem 0;
}.leadership_profile_app .client_review_app {
    row-gap: 1.5rem;
    grid-template-columns: 280px 1fr;
    padding: 3rem;
    column-gap: 3rem;
    grid-template-rows: auto 1fr;
}.leadership_profile_app .client_review_app > div:first-child {
    grid-row: 1 / span 2;
}.leadership_profile_app .client_review_app > div:nth-child(2) {
    align-self: flex-end;
    text-align: left;
}.leadership_profile_app .client_review_app .name::after {
    transform: none;
    left: 0;
}
}

@media (min-width: 992px) {.leadership_profile_app .client_review_app {
    padding: 3.5rem;
    grid-template-columns: 320px 1fr;
}.leadership_profile_app .client_review_app > div:first-child {
    max-width: 320px;
}.leadership_profile_app .client_review_app .img_grid_app {
    height: 350px;
}.leadership_profile_app .client_review_app .career_wrap_app {
    line-height: 1.8;
    font-size: calc(13px + 0.05rem);
}
}

@media (max-width: 767px) {.leadership_profile_app {
    padding: 4rem 0;
}.leadership_profile_app .container {
    padding: 0 1rem;
}.leadership_profile_app .client_review_app {
    padding: 2rem;
}.leadership_profile_app .client_review_app .img_grid_app {
    height: 240px;
}}.privacyAgreementDialog_app {
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    border-top: 3px solid rgb(137,160,184);
    bottom: 0;
    transition: transform 0.5s ease-in-out;
    position: fixed;
    background: rgb(137,160,184);
    animation: slideUp 0.5s forwards;
    transform: translateY(100%);
    padding: 20px 0;
    font-family: Arial, sans-serif;
    z-index: 90;
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
.cookie_rules_app {
    padding: 20px 5%;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}.privacyAgreementDialog_app h5 {
    font-size: 23px;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
}.privacyAgreementDialog_app p {
    line-height: 1.5;
    font-size: 12px;
    color: #ffffff;
    margin: 0;
}.user_dialog_app {
    filter: drop-shadow(0 0 10px rgb(177,191,210));
    justify-content: center;
    align-items: center;
    display: flex;
    margin-right: 15px;
    flex-shrink: 0;
}.user_dialog_app svg {
    height: 80px;
    transition: transform 0.3s ease-in-out;
    fill: rgb(177,191,210);
    width: 80px;
}.user_dialog_app:hover svg {
    transform: scale(1.1);
}.cookie_window_app {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 10px;
    min-width: 140px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    color: #000000;
    background: linear-gradient(90deg, rgb(177,191,210), rgb(137,160,184));
    box-shadow: 0 0 15px rgb(177,191,210);
    margin-left: 10px;
    text-decoration: none;
}.cookie_window_app:hover {
    box-shadow: 0 0 20px rgb(137,160,184);
}.cookie_button.cookie_preference_app:hover {
    box-shadow: 0 0 15px rgb(137,160,184);
}.privacyAgreementDialog_app p a {
    text-decoration: none;
    transition: color 0.3s ease;
    color: rgb(177,191,210);
}.privacyAgreementDialog_app p a:hover {
    color: rgb(137,160,184);
}#cookie_alert_modal_app {
    display: none;
}#cookie_alert_modal_app:checked ~ .privacyAgreementDialog_app {
    opacity: 0;
    visibility: hidden;
}
@media only screen and (max-width: 1200px) {.privacyAgreementDialog_app {
    padding: 15px 0;
}.cookie_rules_app {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.user_dialog_app {
    display: none;
}.cookie_rules_app {
    text-align: center;
    flex-direction: column;
    align-items: center;
}.privacyAgreementDialog_app h5 {
    margin-bottom: 5px;
    font-size: 16px;
}.learn_prefs_app {
    margin-bottom: 15px;
}.cookie_window_app {
    margin: 10px 0;
    min-width: 100%;
}}
.pricing_options_app {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}.pricing_options_app::before {
    z-index: 1;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    top: 0;
    content: "";
}.pricing_options_app .container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 15px;
    z-index: 2;
    position: relative;
}.pricing_options_app .learn_deals_app {
    perspective: 1000px;
}.pricing_options_app h2 {
    font-weight: 700;
    text-align: center;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateZ(50px);
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    font-size: 32px;
}.pricing_options_app h2::after {
    position: absolute;
    bottom: -10px;
    background: rgb(177,191,210);
    width: 80px;
    content: "";
    box-shadow: 0 0 15px rgb(177,191,210,0.5);
    left: 50%;
    height: 3px;
    transform: translateX(-50%);
}.pricing_options_app .learn_sub_app {
    line-height: 1.6;
    font-size: 13px;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #ffffff;
    text-align: center;
    opacity: 0.9;
}.pricing_options_app .study_rates_app {
    margin: 0;
    gap: 30px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.pricing_options_app .fee_plans_app {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    text-decoration: none;
    transform-style: preserve-3d;
    display: block;
    will-change: transform;
}.pricing_options_app .cert_fees_app {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
        15px 15px 30px rgba(0, 0, 0, 0.3),
        -15px -15px 30px rgba(255, 255, 255, 0.02),
        inset 2px 2px 5px rgba(255, 255, 255, 0.05),
        inset -2px -2px 5px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    height: 100%;
}.pricing_options_app .cert_fees_app::before {
    background-size: 200% 200%;
    z-index: -1;
    bottom: -5px;
    transition: opacity 0.4s ease;
    animation: shimmer 3s infinite linear;
    content: "";
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.1) 55%, transparent 60%);
    position: absolute;
    opacity: 0;
    left: -5px;
    top: -5px;
    right: -5px;
}.pricing_options_app .learn_offers_app {
    height: 100%;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    transition: all 0.3s ease;
    border-radius: 4px;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    padding: 35px 25px;
    display: flex;
}.pricing_options_app .learn_offers_app h4 {
    font-size: 19px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
}.pricing_options_app .learn_offers_app h4::after {
    content: "";
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
    width: 40px;
    position: absolute;
    height: 2px;
    background: rgb(177,191,210);
}.pricing_options_app .learn_offers_app p {
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 25px;
    font-size: calc(13px - 2px);
    opacity: 0.8;
    flex-grow: 1;
}.pricing_options_app .fee_options_app {
    overflow: hidden;
    display: inline-block;
    border-radius: 30px;
    position: relative;
    font-weight: 700;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.1);
    background: linear-gradient(135deg, rgb(177,191,210) 0%, rgb(137,160,184) 100%);
    padding: 12px 25px;
    font-size: calc(19px + 4px);
    align-self: flex-start;
    color: #ffffff;
}.pricing_options_app .fee_options_app::before {
    transition: 0.5s;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    left: -100%;
    top: 0;
    position: absolute;
    height: 100%;
    content: "";
}.pricing_options_app .fee_plans_app:hover {
    transform: translateY(-10px) rotateX(5deg);
}.pricing_options_app .fee_plans_app:hover .cert_fees_app {
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.4),
        -20px -20px 40px rgba(255, 255, 255, 0.03),
        inset 2px 2px 5px rgba(255, 255, 255, 0.05),
        inset -2px -2px 5px rgba(0, 0, 0, 0.15);
}.pricing_options_app .fee_plans_app:hover .cert_fees_app::before {
    opacity: 1;
}.pricing_options_app .fee_plans_app:hover .learn_offers_app h4::after {
    width: 80px;
}.pricing_options_app .fee_plans_app:hover .fee_options_app::before {
    left: 100%;
}.pricing_options_app .fee_plans_app:hover .learn_offers_app {
    border-color: rgba(255,255,255,0.1);
    transform: translateZ(20px);
}

@keyframes shimmer {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

@media (max-width: 1200px) {.pricing_options_app {
    padding: 100px 0;
}.pricing_options_app .study_rates_app {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}.pricing_options_app .learn_offers_app {
    padding: 30px 20px;
}
}

@media (max-width: 768px) {.pricing_options_app {
    padding: 80px 0;
}.pricing_options_app h2 {
    font-size: calc(32px - 4px);
}.pricing_options_app .learn_sub_app {
    margin-bottom: 40px;
}.pricing_options_app .study_rates_app {
    grid-template-columns: 1fr;
    margin: 0 auto;
    max-width: 450px;
}.pricing_options_app .learn_offers_app h4 {
    font-size: calc(19px - 1px);
}.pricing_options_app .fee_options_app {
    font-size: calc(19px + 2px);
    padding: 10px 20px;
}
}

@media (max-width: 480px) {.pricing_options_app {
    padding: 60px 0;
}.pricing_options_app h2 {
    font-size: calc(32px - 6px);
}.pricing_options_app .learn_sub_app {
    font-size: calc(13px - 1px);
    margin-bottom: 30px;
}.pricing_options_app .learn_offers_app {
    padding: 25px 15px;
}.pricing_options_app .learn_offers_app p {
    font-size: calc(13px - 3px);
    margin-bottom: 20px;
}.pricing_options_app .fee_options_app {
    font-size: calc(19px + 0px);
    padding: 8px 15px;
}
}

@media (hover: none) {.pricing_options_app .fee_plans_app:hover {
    transform: none;
}.pricing_options_app .cert_fees_app {
    box-shadow: 
            5px 5px 15px rgba(0, 0, 0, 0.2),
            -5px -5px 15px rgba(255, 255, 255, 0.02);
}.pricing_options_app .fee_plans_app:active {
    transform: scale(0.98);
}}.debate_club_app {
    padding: 5rem 0 3rem;
    z-index: 1;
    color: #ffffff;
    position: relative;
}.debate_club_app::before {
    height: 100%;
    backdrop-filter: blur(8px);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgb(177,191,210,0.5) 100%);
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    position: absolute;
    z-index: -1;
}.debate_club_app .container {
    gap: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    position: relative;
}.debate_club_app .company_holder {
    border-left: 2px solid rgb(177,191,210);
    animation: borderPulse 4s infinite alternate;
    position: relative;
    padding-left: 2rem;
}@keyframes borderPulse {
    0% {
        border-left-color: rgb(177,191,210);
    }
    50% {
        border-left-color: rgb(137,160,184);
    }
    100% {
        border-left-color: rgb(177,191,210);
    }
}

.debate_club_app .company_holder h3 {
    font-size: calc(30px * 1.2);
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, #ffffff, rgb(137,160,184));
    margin-bottom: 1.5rem;
    -webkit-background-clip: text !important;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}.debate_club_app .proposal_cta_app {
    line-height: 1.6;
    margin-top: 1rem;
    opacity: 0.8;
    color: #ffffff;
    font-size: 15px;
}.debate_club_app .scholar_cta_app {
    justify-content: flex-end;
    display: flex;
}.debate_club_app .head_know_app {
    display: flex;
    gap: 4rem;
}.debate_club_app .nav_mainbar_app {
    position: relative;
}.debate_club_app .nav_mainbar_app::before {
    width: 40px;
    height: 40px;
    opacity: 0.4;
    left: -20px;
    content: "";
    position: absolute;
    top: -10px;
    border-top: 1px solid rgb(177,191,210);
    border-left: 1px solid rgb(177,191,210);
}.debate_club_app .nav_mainbar_app::after {
    right: -20px;
    bottom: -10px;
    width: 40px;
    content: "";
    position: absolute;
    opacity: 0.4;
    border-bottom: 1px solid rgb(177,191,210);
    height: 40px;
    border-right: 1px solid rgb(177,191,210);
}.debate_club_app .nav_mainbar_app h5 {
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgb(137,160,184);
    font-size: 19px;
}.debate_club_app .nav_mainbar_app .head_know_app {
    flex-direction: column;
    display: flex;
    gap: 0.8rem;
}.debate_club_app .nav_mainbar_app .head_know_app a {
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    opacity: 0.8;
    padding-left: 1rem;
    color: #ffffff;
    text-decoration: none;
}.debate_club_app .nav_mainbar_app .head_know_app a::before {
    transition: all 0.3s ease;
    height: 5px;
    position: absolute;
    border-radius: 50%;
    transform: translateY(-50%);
    width: 5px;
    background-color: rgb(177,191,210);
    content: "";
    left: 0;
    top: 50%;
}.debate_club_app .nav_mainbar_app .head_know_app a:hover {
    opacity: 1;
    color: rgb(177,191,210);
    transform: translateX(5px);
}.debate_club_app .nav_mainbar_app .head_know_app a:hover::before {
    width: 7px;
    background-color: rgb(137,160,184);
    height: 7px;
}.recycle_info_app {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 0;
    position: relative;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}.recycle_info_app::before {
    width: 100%;
    position: absolute;
    left: 0;
    opacity: 0.5;
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(177,191,210), transparent);
    top: 0;
    content: "";
}.recycle_info_app .container {
    justify-content: center;
    display: flex;
    align-items: center;
}.recycle_info_app .policy_links_app {
    color: #ffffff;
    font-size: 14px;
    opacity: 0.7;
    text-align: center;
}

@media screen and (max-width: 992px) {.debate_club_app .container {
    gap: 2rem;
    grid-template-columns: 1fr;
}.debate_club_app .company_holder {
    padding-left: 1rem;
    margin-bottom: 2rem;
}.debate_club_app .scholar_cta_app {
    justify-content: flex-start;
}.debate_club_app .head_know_app {
    gap: 2rem;
}
}

@media screen and (max-width: 768px) {.debate_club_app {
    padding: 3rem 0 2rem;
}.debate_club_app .head_know_app {
    flex-direction: column;
    gap: 2rem;
}.debate_club_app .nav_mainbar_app::before,
    .debate_club_app .nav_mainbar_app::after {
    display: none;
}.debate_club_app .nav_mainbar_app {
    margin-bottom: 1.5rem;
}.recycle_info_app {
    padding: 1rem 0;
}
}

@media screen and (max-width: 576px) {.debate_club_app .company_holder h3 {
    font-size: 30px;
}.debate_club_app .nav_mainbar_app h5 {
    font-size: calc(21px * 1.1);
}.debate_club_app .nav_mainbar_app .head_know_app a {
    font-size: calc(15px * 0.9);
}}.customer_reviews_app {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(215,222,236) 0%, rgba(245, 248, 255, 0.95) 100%);
    overflow: hidden;
}.customer_reviews_app::before {
    position: absolute;
    content: "";
    opacity: 0.15;
    animation: float 15s infinite alternate ease-in-out;
    width: 35%;
    right: -5%;
    height: 40%;
    background: radial-gradient(circle at center, rgb(177,191,210,0.5) 0%, transparent 70%);
    top: -5%;
}.customer_reviews_app::after {
    position: absolute;
    opacity: 0.12;
    width: 25%;
    height: 30%;
    transform: rotate(-15deg);
    bottom: -8%;
    animation: float 18s infinite alternate-reverse ease-in-out;
    left: -3%;
    background: radial-gradient(ellipse at center, rgb(137,160,184,0.5) 0%, transparent 75%);
    content: "";
}.customer_reviews_app .container {
    max-width: 1280px;
    z-index: 2;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}.customer_reviews_app h2 {
    font-size: calc(28px * 1.05);
    color: #000000;
    line-height: 1.3;
    transform: perspective(1000px) rotateX(2deg);
    margin-bottom: 3.5rem;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
    text-align: center;
}.customer_reviews_app h2::after {
    content: "";
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    bottom: -1rem;
    width: 5rem;
    position: absolute;
    background: linear-gradient(90deg, rgb(177,191,210) 0%, rgb(137,160,184) 100%);
}.customer_reviews_app .learner_quotes_app {
    margin: 0;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
    padding: 0;
    gap: 2.5rem;
    list-style: none;
}.customer_reviews_app .client_review_app {
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.08);
    isolation: isolate;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 2px;
    z-index: 1;
    transform: translateY(0);
    padding: 2.2rem 2rem;
    background: #ffffff;
}.customer_reviews_app .client_review_app::before {
    color: rgb(137,160,184);
    right: 1.5rem;
    font-size: 8rem;
    font-family: Georgia, serif;
    z-index: -1;
    top: 1.2rem;
    content: "";
    line-height: 0;
    opacity: 0.07;
    position: absolute;
}.customer_reviews_app .client_review_app::after {
    content: "";
    background: linear-gradient(90deg, rgb(177,191,210) 0%, rgb(137,160,184) 100%);
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 3px;
    bottom: 0;
    position: absolute;
    width: 0;
    left: 0;
}.customer_reviews_app .client_review_app:hover {
    box-shadow: 0 22px 40px -15px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}.customer_reviews_app .client_review_app:hover::after {
    width: 100%;
}.customer_reviews_app .client_review_app div {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}.customer_reviews_app .client_review_app img {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 55px;
    margin-right: 1rem;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    height: 55px;
    object-fit: cover;
}.customer_reviews_app .client_review_app:hover img {
    transform: scale(1.08) rotate(3deg);
}.customer_reviews_app .client_review_app h4 {
    font-weight: 600;
    position: relative;
    color: #000000;
    margin: 0;
    font-size: calc(20px * 0.95);
}.customer_reviews_app .client_review_app h4::after {
    height: 2px;
    bottom: -5px;
    content: "";
    background-color: rgb(177,191,210,0.5);
    position: absolute;
    left: 0;
    transition: width 0.3s ease;
    width: 25px;
}.customer_reviews_app .client_review_app:hover h4::after {
    width: 40px;
}.customer_reviews_app .description {
    line-height: 1.6;
    font-family: Arial, sans-serif;
    margin: 0;
    position: relative;
    font-size: calc(16px * 0.95);
    color: #000000;
    z-index: 2;
}.customer_reviews_app a {
    border-radius: 3px;
    font-size: 15px;
    transform: translateX(-50%);
    display: inline-block;
    transition: all 0.4s ease;
    z-index: 1;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    position: relative;
    text-decoration: none;
    color: #ffffff;
    left: 50%;
    overflow: hidden;
    margin-top: 3.5rem;
    background: linear-gradient(90deg, rgb(177,191,210) 0%, rgb(177,191,210) 100%);
    box-shadow: 0 10px 25px -10px rgb(177,191,210,0.5);
}.customer_reviews_app a::before {
    transition: left 0.7s ease;
    height: 100%;
    content: "";
    position: absolute;
    left: -100%;
    z-index: -1;
    top: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    width: 100%;
}.customer_reviews_app a:hover {
    box-shadow: 0 15px 30px -10px rgb(177,191,210,0.5);
    transform: translateX(-50%) translateY(-3px);
}.customer_reviews_app a:hover::before {
    left: 100%;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(20px, 20px) rotate(5deg);
    }
}

@media (max-width: 992px) {.customer_reviews_app {
    padding: 6rem 0;
}.customer_reviews_app h2 {
    font-size: calc(28px * 0.95);
    margin-bottom: 3rem;
}.customer_reviews_app .learner_quotes_app {
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
}

@media (max-width: 768px) {.customer_reviews_app {
    padding: 5rem 0;
}.customer_reviews_app h2 {
    font-size: calc(28px * 0.9);
    transform: none;
    margin-bottom: 2.5rem;
}.customer_reviews_app .learner_quotes_app {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 1.8rem;
}.customer_reviews_app .client_review_app {
    padding: 1.8rem 1.6rem;
}.customer_reviews_app .client_review_app:hover {
    transform: translateY(-5px);
}.customer_reviews_app a {
    padding: 0.8rem 2rem;
    margin-top: 2.5rem;
}
}

@media (max-width: 480px) {.customer_reviews_app {
    padding: 4rem 0;
}.customer_reviews_app h2 {
    font-size: calc(28px * 0.8);
    margin-bottom: 2rem;
}.customer_reviews_app .container {
    padding: 0 1.5rem;
}.customer_reviews_app .client_review_app {
    padding: 1.6rem 1.4rem;
}.customer_reviews_app .client_review_app img {
    width: 45px;
    height: 45px;
}.customer_reviews_app .client_review_app::before {
    font-size: 6rem;
}.customer_reviews_app a {
    padding: 0.7rem 1.8rem;
    margin-top: 2rem;
}}.title_board_app {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, rgb(137,160,184,0.5), rgba(0, 0, 0, 0.5));
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}.title_board_app::before {
    background: 
    radial-gradient(circle at 75% 25%, rgb(137,160,184,0.5) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgb(177,191,210,0.5) 0%, transparent 50%);
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.7;
    height: 100%;
    content: "";
}.title_board_app::after {
    height: 200%;
    content: "";
    pointer-events: none;
    position: absolute;
    top: -50%;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    animation: orbitRotate 40s infinite linear;
    left: -50%;
    width: 200%;
    z-index: 2;
}.title_board_app .start_primary_app {
    width: 90%;
    position: relative;
    max-width: 1200px;
    z-index: 5;
    transform: translateY(-2vh);
}.title_board_app .course_page_app {
    box-shadow: 
    0 15px 35px rgba(0, 0, 0, 0.2),
    0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    padding: 4rem 3rem;
    border-radius: 2px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}.title_board_app .course_page_app::before {
    top: 0;
    background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgb(137,160,184,0.5) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
    opacity: 0.85;
    content: "";
    width: 100%;
    z-index: 1;
    height: 100%;
    position: absolute;
    left: 0;
}.title_board_app .course_page_app::after {
    left: -25%;
    z-index: 2;
    position: absolute;
    top: -25%;
    animation: rotateBg 120s linear infinite;
    opacity: 0.1;
    width: 150%;
    background: 
    repeating-conic-gradient(
      rgb(137,160,184,0.5) 0deg,
      rgb(137,160,184) 1deg,
      transparent 1.5deg,
      transparent 10deg
    );
    height: 150%;
    content: "";
}.title_board_app .course_page_app > * {
    position: relative;
    z-index: 10;
}.title_board_app .course_page_app span {
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(20px);
    display: block;
}.title_board_app .course_page_app h3 {
    line-height: 1.5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    max-width: 90%;
    border-left: 3px solid rgb(177,191,210);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-left: 1rem;
    font-size: calc(22px * 0.9);
}.title_board_app .course_page_app h1 {
    margin-bottom: 2rem;
    text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.1);
    animation: 
    fadeInUp 0.8s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1),
    gradientFlow 8s ease infinite;
    opacity: 0;
    font-weight: 700;
    transform: translateY(20px);
    background: linear-gradient(
    90deg, 
    #ffffff 0%, 
    rgb(177,191,210) 50%, 
    #ffffff 100%
  );
    -webkit-background-clip: text !important;
    background-size: 200% auto;
    background-clip: text !important;
    line-height: 1.2;
    animation: fadeInUp 0.8s 0.4s forwards cubic-bezier(0.19, 1, 0.22, 1);
    color: #ffffff;
    -webkit-text-fill-color: transparent;
    font-size: calc(47px * 1.1);
}.title_board_app .course_page_app div div {
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.6s forwards cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
}.title_board_app .course_page_app p {
    line-height: 1.6;
    font-size: calc(18px * 1.1);
    max-width: 80%;
    color: #ffffff;
    margin-bottom: 2.5rem;
    position: relative;
    padding-right: 1rem;
}.title_board_app .course_page_app p::after {
    height: 2px;
    left: 0;
    content: "";
    background: linear-gradient(
    90deg,
    rgb(177,191,210) 0%,
    transparent 100%
  );
    width: 60%;
    position: absolute;
    bottom: -10px;
}

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

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

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

@media screen and (max-width: 1200px) {.title_board_app .course_page_app {
    padding: 3.5rem 2.5rem;
}.title_board_app .course_page_app h1 {
    font-size: calc(47px * 0.95);
}.title_board_app .course_page_app h3 {
    max-width: 95%;
    font-size: calc(22px * 0.85);
}.title_board_app .course_page_app p {
    max-width: 85%;
}
}

@media screen and (max-width: 992px) {.title_board_app {
    min-height: 90vh;
}.title_board_app .course_page_app {
    padding: 3rem 2rem;
}.title_board_app .course_page_app h1 {
    font-size: calc(47px * 0.85);
}.title_board_app .course_page_app h3 {
    border-left-width: 2px;
    font-size: calc(22px * 0.8);
}.title_board_app .course_page_app p {
    max-width: 90%;
    font-size: 18px;
}
}

@media screen and (max-width: 768px) {.title_board_app {
    min-height: 80vh;
}.title_board_app .start_primary_app {
    width: 95%;
}.title_board_app .course_page_app {
    padding: 2.5rem 1.5rem;
}.title_board_app .course_page_app h1 {
    margin-bottom: 1.5rem;
    font-size: calc(47px * 0.75);
}.title_board_app .course_page_app h3 {
    font-size: calc(22px * 0.75);
    margin-bottom: 1.2rem;
    max-width: 100%;
}.title_board_app .course_page_app p {
    font-size: calc(18px * 0.95);
    max-width: 100%;
}.title_board_app .course_page_app p::after {
    width: 50%;
}
}

@media screen and (max-width: 576px) {.title_board_app {
    min-height: 70vh;
}.title_board_app .course_page_app {
    padding: 2rem 1.25rem;
}.title_board_app .course_page_app h1 {
    margin-bottom: 1.2rem;
    font-size: calc(47px * 0.65);
}.title_board_app .course_page_app h3 {
    padding-left: 0.75rem;
    font-size: calc(22px * 0.7);
    margin-bottom: 1rem;
}.title_board_app .course_page_app p {
    font-size: calc(18px * 0.9);
    margin-bottom: 2rem;
}.title_board_app .course_page_app p::after {
    width: 40%;
}}header {
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgb(215,222,236);
    background-color: #ffffff;
    left: 0;
    z-index: 1000;
}header:before {
    background-size: 200% 100%;
    animation: gradientMove 6s infinite linear;
    left: 0;
    height: 4px;
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(177,191,210), rgb(137,160,184), rgb(177,191,210));
    content: '';
}header .first_teach_app {
    width: 100%;
    padding: 0;
}header .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 20px;
}header .top_master_app {
    justify-content: space-between;
    align-items: center;
    position: relative;
    display: flex;
}header .nav_mainbar_app {
    gap: 35px;
    display: flex;
    align-items: center;
}header .main_info_app {
    text-decoration: none;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    color: #000000;
    transition: all 0.3s ease;
    padding: 5px 0;
}header .main_info_app:before {
    transition: transform 0.3s ease;
    left: -15px;
    top: 50%;
    border-radius: 10px;
    position: absolute;
    width: 6px;
    background-color: rgb(177,191,210);
    content: '';
    height: 6px;
    transform: translateY(-50%) scale(0);
}header .main_info_app:after {
    background-color: rgb(177,191,210);
    left: 0;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    bottom: 0;
    position: absolute;
    width: 100%;
    transform-origin: center;
    content: '';
    height: 2px;
}header .main_info_app:hover {
    color: rgb(177,191,210);
}header .main_info_app:hover:before {
    transform: translateY(-50%) scale(1);
}header .main_info_app:hover:after {
    transform: scaleX(1);
}header .top_header_app {
    padding: 5px 10px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    text-decoration: none;
    align-items: center;
}header .top_header_app:before {
    background: linear-gradient(to right, rgb(177,191,210), rgb(137,160,184)) border-box;
    border: 2px solid transparent;
    -webkit-mask-composite: xor;
    transition: opacity 0.3s ease;
    left: 0;
    border-radius: 10px;
    position: absolute;
    top: 0;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    content: '';
    mask-composite: exclude;
    opacity: 0;
    width: 100%;
    height: 100%;
}header .top_header_app:hover:before {
    opacity: 1;
}header .top_header_app svg {
    width: auto;
    height: 42px;
    transition: transform 0.3s ease;
}header .top_header_app:hover svg {
    transform: scale(1.05);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

@media (max-width: 991px) {header .container {
    padding: 15px;
}header .nav_mainbar_app {
    gap: 20px;
}header .main_info_app:before {
    left: -10px;
}header .top_header_app svg {
    height: 38px;
}
}

@media (max-width: 767px) {header .nav_mainbar_app {
    padding: 0;
    gap: 0;
    max-height: 0;
    top: 100%;
    background-color: #ffffff;
    left: 0;
    transition: max-height 0.4s ease;
    border-bottom: 3px solid rgb(177,191,210);
    z-index: 1001;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: absolute;
    flex-direction: column;
    overflow: hidden;
}header .menu.active {
    max-height: 400px;
}header .main_info_app {
    width: 100%;
    border-bottom: 1px solid rgb(215,222,236);
    padding: 12px 20px;
}header .main_info_app:last-child {
    border-bottom: none;
}header .main_info_app:before {
    left: 5px;
}header .top_master_app {
    padding: 5px 0;
}header .top_header_app {
    margin: 0 auto;
}
}

@media (max-width: 480px) {header .container {
    padding: 12px 10px;
}header .top_header_app svg {
    height: 32px;
}}.privacy_cover_app {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    z-index: 1;
    background: linear-gradient(145deg, rgb(215,222,236) 0%, rgb(215,222,236) 85%, rgb(177,191,210,0.5) 100%);
}.privacy_cover_app::before {
    background-size: 20px 20px;
    background-image: 
        linear-gradient(45deg, rgb(215,222,236) 25%, transparent 25%),
        linear-gradient(-45deg, rgb(215,222,236) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgb(215,222,236) 75%),
        linear-gradient(-45deg, transparent 75%, rgb(215,222,236) 75%);
    z-index: -1;
    position: absolute;
    top: 0;
    opacity: 0.03;
    width: 100%;
    height: 100%;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    content: "";
    left: 0;
}.privacy_cover_app::after {
    top: -50%;
    transform: scale(1);
    animation: pulse 15s infinite alternate ease-in-out;
    background: radial-gradient(circle at center, rgb(177,191,210,0.5) 0%, transparent 70%);
    position: absolute;
    z-index: -1;
    content: "";
    opacity: 0.05;
    height: 200%;
    left: -50%;
    width: 200%;
}@keyframes pulse {
    0% { transform: scale(1); opacity: 0.05; }
    50% { transform: scale(1.05); opacity: 0.08; }
    100% { transform: scale(1); opacity: 0.05; }
}

.privacy_cover_app .container {
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 
                0 2px 5px rgba(0, 0, 0, 0.03),
                0 -1px 0 rgb(177,191,210,0.5);
    margin: 0 auto;
    background: #ffffff;
    max-width: 1200px;
    padding: 3rem;
    position: relative;
}.privacy_cover_app .container:hover {
    transform: translateY(-5px);
}.privacy_cover_app h1 {
    color: #000000;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    transform: translateX(0);
    position: relative;
    transition: transform 0.3s ease-out;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.2;
}.privacy_cover_app h1::after {
    width: 60px;
    height: 3px;
    bottom: 0;
    content: "";
    background: rgb(177,191,210);
    transform: scaleX(1);
    left: 0;
    position: absolute;
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}.privacy_cover_app:hover h1::after {
    transform: scaleX(1.5);
}.privacy_cover_app h2 {
    margin: 2.5rem 0 1.5rem;
    font-weight: 600;
    color: #000000;
    transition: padding 0.3s ease;
    padding-left: 1rem;
    position: relative;
    font-size: 31px;
}.privacy_cover_app h2::before {
    top: 0.25em;
    transform: scaleY(1);
    left: 0;
    position: absolute;
    width: 3px;
    height: 70%;
    background: rgb(137,160,184);
    transition: transform 0.3s ease;
    content: "";
}.privacy_cover_app h2:hover::before {
    transform: scaleY(1.2);
}.privacy_cover_app h3 {
    margin: 1.75rem 0 1rem;
    font-weight: 600;
    font-size: calc(18px + 0.1rem);
    position: relative;
    color: #000000;
}.privacy_cover_app h4 {
    color: #000000;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    font-size: 19px;
}.privacy_cover_app p {
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
    color: #000000;
    max-width: 90ch;
    font-size: 18px;
}.privacy_cover_app span {
    color: rgb(177,191,210);
    position: relative;
    transition: color 0.3s ease;
    font-weight: 600;
    display: inline-block;
}.privacy_cover_app span:hover {
    color: rgb(137,160,184);
}.privacy_cover_app ul {
    margin: 1.5rem 0 2rem 1.25rem;
    list-style-type: none;
}.privacy_cover_app li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: #000000;
    font-size: 18px;
    line-height: 1.6;
    transition: transform 0.2s ease-out;
}.privacy_cover_app li::before {
    border-radius: 1px;
    top: 0.7em;
    transition: transform 0.3s ease, background-color 0.3s ease;
    left: 0;
    transform: rotate(45deg);
    position: absolute;
    content: "";
    height: 8px;
    background: rgb(177,191,210,0.5);
    width: 8px;
}.privacy_cover_app li:hover::before {
    background: rgb(177,191,210);
    transform: rotate(135deg);
}.privacy_cover_app li:hover {
    transform: translateX(3px);
}.privacy_cover_app div {
    position: relative;
}

@media (max-width: 992px) {.privacy_cover_app {
    padding: 3rem 1.5rem;
}.privacy_cover_app .container {
    padding: 2.5rem 2rem;
}.privacy_cover_app h1 {
    font-size: calc(44px - 0.2rem);
}.privacy_cover_app h2 {
    font-size: calc(31px - 0.15rem);
}
}

@media (max-width: 768px) {.privacy_cover_app {
    padding: 2.5rem 1rem;
}.privacy_cover_app .container {
    padding: 2rem 1.5rem;
}.privacy_cover_app h1 {
    font-size: calc(44px - 0.4rem);
    margin-bottom: 1.5rem;
}.privacy_cover_app h2 {
    margin: 2rem 0 1rem;
    font-size: calc(31px - 0.3rem);
}.privacy_cover_app h3 {
    font-size: 18px;
    margin: 1.5rem 0 0.75rem;
}.privacy_cover_app p {
    font-size: calc(18px - 0.05rem);
}.privacy_cover_app ul {
    margin-left: 0.5rem;
}.privacy_cover_app li {
    font-size: calc(18px - 0.05rem);
    padding-left: 1.25rem;
}
}

@media (max-width: 576px) {.privacy_cover_app {
    padding: 2rem 0.75rem;
}.privacy_cover_app .container {
    padding: 1.5rem 1.25rem;
}.privacy_cover_app h1 {
    font-size: calc(44px - 0.6rem);
}.privacy_cover_app h2 {
    padding-left: 0.75rem;
    font-size: calc(31px - 0.4rem);
}.privacy_cover_app h2::before {
    width: 2px;
}.privacy_cover_app li::before {
    width: 6px;
    height: 6px;
}
}

@media (prefers-reduced-motion: reduce) {.privacy_cover_app::after {
    animation: none;
}.privacy_cover_app .container,
    .privacy_cover_app li,
    .privacy_cover_app h1::after,
    .privacy_cover_app h2::before {
    transition: none;
}
}