﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}svg {
    width: 30px;
    height: 30px;
}html,body {
    height: 100%;
    font-family: Arial, sans-serif;
    min-height: 100%;
    color: #000000;
    scroll-behavior: smooth;
}a {
    color: inherit;
    text-decoration: none;
}header,footer {
    width: 100%;
}.vr_labs {
    flex: 0 0 auto;
}.container {
    width: 1132px;
    margin: auto;
    max-width: 100%;
}.main_know {
    flex: 1 0 auto;
}.content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
@media only screen and (max-width: 1200px)  {.container {
    padding: 0 20px;
    width: 100%;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.meet_us {
    color: #ffffff;
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}.meet_us::before {
    z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 100%;
}.meet_us::after {
    z-index: 2;
    height: 100%;
    left: 0;
    top: 0;
    background-size: 60px 60px;
    background-image: linear-gradient(30deg, rgb(213,183,172,0.5) 10%, transparent 10.5%),
                     linear-gradient(60deg, rgb(213,183,172,0.5) 25%, transparent 25.5%),
                     linear-gradient(90deg, rgb(185,154,143,0.5) 40%, transparent 40.5%);
    content: "";
    position: absolute;
    opacity: 0.05;
    width: 100%;
    animation: backgroundShift 35s infinite alternate ease-in-out;
}.meet_us h4 {
    animation: fadeInDown 0.8s ease-out;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 1;
    z-index: 5;
    margin-bottom: 2.5rem;
    font-size: calc(20px * 1.2);
    position: relative;
    transform: translateY(0);
    letter-spacing: 3px;
    font-weight: 700;
}.meet_us h4::after {
    transform: translateX(-50%);
    width: 60px;
    left: 50%;
    transition: width 0.3s ease;
    position: absolute;
    content: "";
    bottom: -12px;
    height: 3px;
    background: rgb(185,154,143);
}.meet_us:hover h4::after {
    width: 100px;
}.meet_us .container {
    max-width: 1140px;
    z-index: 5;
    animation: fadeIn 1s ease-out 0.3s both;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}.meet_us .text_overlay {
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    padding: 3rem;
    transform: translateY(0);
    border-left: 4px solid rgb(185,154,143);
    position: relative;
    background: rgba(255, 255, 255, 0.09);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.meet_us .text_overlay:hover {
    transform: translateY(-5px);
}.meet_us .text_overlay::before {
    content: "";
    right: 20px;
    transform: rotate(45deg);
    z-index: -1;
    height: 40px;
    top: -10px;
    opacity: 0.2;
    width: 40px;
    position: absolute;
    background: rgb(185,154,143);
}.meet_us .text_overlay::after {
    height: 20px;
    z-index: -1;
    width: 20px;
    bottom: -10px;
    opacity: 0.15;
    background: rgb(213,183,172);
    content: "";
    transform: rotate(45deg);
    left: 40px;
    position: absolute;
}.meet_us .text_overlay h6 {
    transform: translateX(0);
    animation: slideInLeft 0.7s ease-out 0.5s both;
    color: rgb(185,154,143);
    font-weight: 700;
    font-size: calc(22px * 1.3);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}.meet_us .text_overlay h6::after {
    position: absolute;
    height: 1px;
    content: "";
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgb(185,154,143) 0%, transparent 100%);
    bottom: 0;
}.meet_us .text_overlay div {
    animation: fadeIn 1s ease-out 0.8s both;
    line-height: 1.8;
    position: relative;
}.meet_us .text_overlay span {
    text-align: justify;
    column-gap: 40px;
    column-count: 1;
    opacity: 0.9;
    display: block;
    font-size: 16px;
    color: #ffffff;
    transition: opacity 0.3s ease;
}.meet_us .text_overlay div:hover span {
    opacity: 1;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@media (min-width: 768px) {.meet_us {
    padding: 8rem 0;
}.meet_us h4 {
    font-size: calc(20px * 1.4);
    margin-bottom: 3.5rem;
}.meet_us .text_overlay {
    padding: 4rem;
    border-left-width: 6px;
}.meet_us .text_overlay span {
    column-count: 2;
}
}

@media (min-width: 992px) {.meet_us {
    padding: 10rem 0;
}.meet_us .container {
    justify-content: center;
    display: flex;
}.meet_us .text_overlay {
    padding: 5rem;
    width: 90%;
}.meet_us .text_overlay h6 {
    margin-bottom: 2rem;
    font-size: calc(22px * 1.5);
}.meet_us .text_overlay span {
    font-size: calc(16px * 1.05);
    line-height: 1.9;
}
}

@media (max-width: 767px) {.meet_us {
    padding: 4rem 0;
}.meet_us h4 {
    font-size: 20px;
    margin-bottom: 2rem;
}.meet_us .text_overlay {
    padding: 2rem;
}.meet_us .text_overlay h6 {
    font-size: 22px;
    margin-bottom: 1rem;
}.meet_us .text_overlay span {
    font-size: calc(16px * 0.95);
    line-height: 1.7;
}
}

@media (max-width: 480px) {.meet_us {
    padding: 3rem 0;
}.meet_us h4::after {
    width: 40px;
}.meet_us .text_overlay {
    padding: 1.5rem;
    border-left-width: 3px;
}
}

@media (prefers-reduced-motion) {.meet_us h4,
    .meet_us .container,
    .meet_us .text_overlay h6,
    .meet_us .text_overlay div {
    animation: none;
}.meet_us::after {
    animation: none;
}.meet_us .text_overlay {
    transition: none;
}.meet_us .text_overlay:hover {
    transform: none;
}}.offer_deck {
    overflow: hidden;
    position: relative;
    isolation: isolate;
    padding: 120px 0;
}.offer_deck::before {
    left: 0;
    content: "";
    background: linear-gradient(135deg, rgb(213,183,172,0.5), rgba(0, 0, 0, 0.5) 70%);
    z-index: -1;
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
}.offer_deck::after {
    z-index: -1;
    position: absolute;
    background: linear-gradient(225deg, rgb(185,154,143,0.5) 10%, transparent 65%);
    right: 0;
    height: 100%;
    top: 0;
    width: 45%;
    pointer-events: none;
    content: "";
}.offer_deck .container {
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1320px;
    position: relative;
}.offer_deck .pricing_rates {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
}.offer_deck h2 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    color: #ffffff;
    z-index: 2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 700;
    text-align: center;
}.offer_deck h2::after {
    border-radius: 2px;
    height: 4px;
    transform: translateY(2px);
    width: 80px;
    display: block;
    content: "";
    margin: 16px auto 0;
    background: rgb(213,183,172);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}.offer_deck .cost_deals {
    margin: 0 auto 50px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    max-width: 700px;
    text-align: center;
    opacity: 0.9;
    font-size: calc(14px + 2px);
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.3px;
}.offer_deck .plan_pricing {
    list-style: none;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    padding: 0;
    margin: 0;
    display: grid;
    z-index: 2;
    width: 100%;
}.offer_deck .plan_pricing li {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
}.offer_deck .plan_pricing li:hover {
    transform: translateY(-8px);
}.offer_deck .study_packages {
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1),
                0 5px 15px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    flex-direction: column;
    border-radius: 12px;
    width: 100%;
}.offer_deck .study_packages:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 10px 20px rgba(0, 0, 0, 0.1);
}.offer_deck .rate_schemes {
    box-sizing: border-box;
    border-radius: 12px;
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    overflow: hidden;
}.offer_deck .rate_schemes::before {
    height: 100%;
    content: "";
    top: 0;
    background: linear-gradient(145deg, rgba(rgb(213,183,172), 0.03), rgba(rgb(185,154,143), 0.05));
    position: absolute;
    z-index: -1;
    width: 100%;
    left: 0;
}.offer_deck .rate_schemes::after {
    transition: all 0.5s ease;
    top: 0;
    position: absolute;
    opacity: 0.1;
    right: 0;
    content: "";
    height: 180px;
    transform: translate(50%, -50%);
    background: linear-gradient(225deg, rgb(213,183,172,0.5) 10%, transparent 70%);
    width: 180px;
    border-radius: 0 0 0 180px;
    z-index: -1;
}.offer_deck .study_packages:hover .rate_schemes::after {
    opacity: 0.2;
    transform: translate(40%, -40%) scale(1.1);
}.offer_deck .value_deals {
    position: relative;
    display: flex;
    flex-grow: 1;
    padding: 35px 25px;
    flex-direction: column;
    z-index: 2;
}.offer_deck .value_deals::before {
    height: 40%;
    width: 100%;
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: -1;
    background: linear-gradient(to top, rgba(rgb(213,183,172), 0.03), transparent);
    content: "";
}.offer_deck .value_deals h4 {
    margin: 0 0 20px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    color: #000000;
    font-size: calc(20px + 2px);
}.offer_deck .value_deals h4::after {
    height: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    background: rgb(213,183,172);
    position: absolute;
    width: 40px;
    content: "";
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}.offer_deck .value_deals p {
    flex-grow: 1;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
    margin: 0 0 30px;
    line-height: 1.6;
    font-size: 14px;
    color: #000000;
}.offer_deck .member_fees {
    position: relative;
    box-shadow: 
        6px 6px 12px rgba(0, 0, 0, 0.05),
        -6px -6px 12px rgba(255, 255, 255, 0.8),
        inset 1px 1px 2px rgba(255, 255, 255, 0.6);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 8px;
    padding: 10px 20px;
    backdrop-filter: blur(4px);
    font-weight: 700;
    font-size: calc(20px + 6px);
    color: rgb(213,183,172);
    margin-top: auto;
    transition: all 0.3s ease;
    align-self: flex-start;
    display: inline-block;
}.offer_deck .study_packages:hover .member_fees {
    box-shadow: 
        8px 8px 16px rgba(0, 0, 0, 0.07),
        -8px -8px 16px rgba(255, 255, 255, 0.9),
        inset 1px 1px 2px rgba(255, 255, 255, 0.6);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5));
    transform: scale(1.05);
}

@media (max-width: 1200px) {.offer_deck {
    padding: 100px 0;
}.offer_deck .plan_pricing {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}.offer_deck h2 {
    font-size: calc(28px - 2px);
}.offer_deck .cost_deals {
    margin-bottom: 40px;
    font-size: 14px;
}
}

@media (max-width: 992px) {.offer_deck {
    padding: 80px 0;
}.offer_deck .plan_pricing {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}.offer_deck .value_deals {
    padding: 30px 20px;
}.offer_deck .member_fees {
    padding: 8px 16px;
    font-size: calc(20px + 2px);
}
}

@media (max-width: 768px) {.offer_deck {
    padding: 60px 0;
}.offer_deck .plan_pricing {
    max-width: 500px;
    grid-template-columns: 1fr;
    margin: 0 auto;
}.offer_deck h2 {
    font-size: calc(28px - 4px);
}.offer_deck .value_deals h4 {
    font-size: 20px;
}.offer_deck .value_deals p {
    font-size: calc(14px - 1px);
}
}

@media (max-width: 576px) {.offer_deck {
    padding: 50px 0;
}.offer_deck h2 {
    font-size: calc(28px - 6px);
}.offer_deck .cost_deals {
    font-size: calc(14px - 1px);
    margin-bottom: 30px;
}.offer_deck .value_deals {
    padding: 25px 18px;
}.offer_deck .member_fees {
    font-size: 20px;
    padding: 6px 12px;
}}.teaching_experience {
    background: linear-gradient(135deg, rgb(240,214,205), rgb(213,183,172,0.5));
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}.teaching_experience::before {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
    background: repeating-linear-gradient(45deg, rgb(185,154,143,0.5) 0px, transparent 2px, transparent 10px);
    content: "";
    left: 0;
    opacity: 0.1;
}.teaching_experience .edu_stories {
    display: flex;
    background: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    padding: 0;
    border-radius: 25px;
    z-index: 2;
    overflow: hidden;
    align-items: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}.teaching_experience .img_hover_box {
    transition: all 0.4s ease;
    position: relative;
    flex-shrink: 0;
    width: 40%;
    height: 450px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}.teaching_experience .img_hover_box::after {
    content: "";
    top: 0;
    height: 100%;
    position: absolute;
    opacity: 0.5;
    width: 100%;
    left: 0;
    background: linear-gradient(135deg, rgb(213,183,172,0.5), transparent);
}.teaching_experience .career_section {
    padding: 3rem;
    width: 60%;
    position: relative;
}.teaching_experience .name {
    display: inline-block;
    font-weight: 700;
    position: relative;
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 37px;
}.teaching_experience .name::after {
    width: 50%;
    position: absolute;
    content: "";
    transition: width 0.3s ease;
    height: 3px;
    left: 0;
    background: rgb(213,183,172);
    bottom: -8px;
}.teaching_experience .career_section > div:nth-child(2) {
    color: rgb(185,154,143);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 19px;
    padding-left: 2px;
}.teaching_experience .experience_details {
    color: #000000;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    font-size: 18px;
    padding-left: 1.5rem;
    position: relative;
}.teaching_experience .experience_details::before {
    top: -2rem;
    font-size: 4rem;
    position: absolute;
    left: -1rem;
    opacity: 0.4;
    color: rgb(213,183,172,0.5);
    content: "";
}.teaching_experience .edu_stories:hover .img_hover_box {
    transform: scale(1.03);
}.teaching_experience .edu_stories:hover .name::after {
    width: 100%;
}

@media (max-width: 992px) {.teaching_experience .edu_stories {
    gap: 2rem;
    flex-direction: column;
}.teaching_experience .img_hover_box {
    width: 100%;
    height: 350px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}.teaching_experience .career_section {
    width: 100%;
    padding: 0 2rem 2rem;
}
}

@media (max-width: 576px) {.teaching_experience {
    padding: 3rem 1rem;
}.teaching_experience .img_hover_box {
    height: 280px;
}.teaching_experience .career_section {
    padding: 0 1.5rem 1.5rem;
}.teaching_experience .name {
    font-size: calc(37px * 0.85);
}.teaching_experience .experience_details {
    font-size: calc(18px * 0.95);
}}.statistical_data {
    color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}.statistical_data::before {
    height: 100%;
    background-color: #000000;
    opacity: 0.92;
    content: '';
    top: 0;
    position: absolute;
    width: 100%;
    z-index: -2;
    left: 0;
}.statistical_data::after {
    background: radial-gradient(circle at 20% 30%, rgb(213,183,172,0.5) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgb(185,154,143,0.5) 0%, transparent 50%);
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    position: absolute;
}.statistical_data .container {
    position: relative;
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}.statistical_data .pro_statistics {
    position: relative;
    grid-template-areas:
        "header minisvg"
        "description description"
        "items items";
    margin: 0 auto;
    gap: 30px;
    grid-template-columns: 3fr 1fr;
    display: grid;
    z-index: 1;
    grid-template-rows: auto auto auto;
}.statistical_data .statistics_perks {
    justify-content: flex-end;
    display: flex;
    align-items: flex-start;
    grid-area: minisvg;
}.statistical_data .statistics_perks svg {
    height: 80px;
    fill: rgb(213,183,172);
    filter: drop-shadow(0 0 12px rgb(213,183,172,0.5));
    animation: pulse 3s infinite alternate ease-in-out;
    width: 80px;
}.statistical_data .statistics_perks svg path {
    stroke-width: 0.5;
    stroke: #ffffff;
    fill: rgb(213,183,172);
}.statistical_data .statistics_boosts {
    color: #ffffff;
    letter-spacing: 1px;
    grid-area: header;
    font-weight: 700;
    position: relative;
    align-items: center;
    margin: 0;
    font-size: 29px;
    display: flex;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}.statistical_data .edu_statistics {
    text-align: center;
    border-radius: 20px;
    grid-area: description;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    margin: 0 auto;
    color: #ffffff;
    opacity: 0.9;
    max-width: 85%;
    padding: 20px;
    font-size: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.7;
}.statistical_data .edu_statistics::before {
    right: -60px;
    animation: rotate 60s linear infinite;
    opacity: 0.6;
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgb(213,183,172,0.5);
    content: '';
    top: -60px;
    width: 120px;
    height: 120px;
}.statistical_data .edu_statistics::after {
    border-radius: 50%;
    position: absolute;
    bottom: -40px;
    opacity: 0.6;
    height: 80px;
    width: 80px;
    content: '';
    animation: rotate 40s linear infinite reverse;
    border: 1px solid rgb(185,154,143,0.5);
    left: -40px;
}.statistical_data .edge_statistics {
    grid-area: items;
    padding-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    display: flex;
}.statistical_data .edge_statistics::before {
    transform: translateX(-50%);
    width: 90%;
    content: '';
    height: 1px;
    position: absolute;
    top: 0;
    left: 50%;
    background: linear-gradient(to right, transparent, #ffffff, transparent);
    opacity: 0.5;
}.statistical_data .value_elevation {
    min-width: 220px;
    transform-style: preserve-3d;
    height: 220px;
    max-width: 280px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    flex: 1 1 200px;
    perspective: 1000px;
    position: relative;
}.statistical_data .value_elevation:hover {
    z-index: 2;
    transform: translateY(-10px) rotate3d(1, 2, 0, 5deg);
}.statistical_data .stat_item_inner {
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: center;
    text-align: center;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease;
    position: relative;
    border-radius: 20px;
    width: 100%;
    flex-direction: column;
    display: flex;
    backdrop-filter: blur(5px);
    overflow: hidden;
    padding: 20px;
}.statistical_data .value_elevation::before,
.statistical_data .value_elevation::after {
    opacity: 0;
    border-radius: 50%;
    transition: all 0.5s ease;
    content: '';
    position: absolute;
    background: rgb(213,183,172,0.5);
    z-index: -1;
}.statistical_data .value_elevation::before {
    right: -60px;
    height: 120px;
    width: 120px;
    top: -60px;
}.statistical_data .value_elevation::after {
    height: 100px;
    background: rgb(185,154,143,0.5);
    width: 100px;
    left: -50px;
    bottom: -50px;
}.statistical_data .value_elevation:hover::before,
.statistical_data .value_elevation:hover::after {
    opacity: 0.2;
}.statistical_data .boost_experts {
    margin-bottom: 15px;
    position: relative;
}.statistical_data .boost_experts::after {
    top: 50%;
    filter: blur(15px);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    width: 40px;
    background: rgb(213,183,172,0.5);
    content: '';
    height: 40px;
    z-index: -1;
    left: 50%;
    position: absolute;
}.statistical_data .boost_experts svg {
    fill: rgb(213,183,172);
    transition: transform 0.3s ease;
    width: 45px;
    height: 45px;
    z-index: 1;
    position: relative;
}.statistical_data .boost_experts svg path {
    stroke: #ffffff;
    stroke-width: 0.5;
    fill: rgb(213,183,172);
}.statistical_data .value_elevation:hover .boost_experts svg {
    transform: scale(1.1);
}.statistical_data .value_elevation span {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, #ffffff, rgb(185,154,143));
    background-clip: text !important;
    font-size: calc(29px * 1.1);
    -webkit-background-clip: text !important;
    display: block;
    font-weight: 700;
    text-fill-color: transparent;
    position: relative;
    margin-bottom: 10px;
}.statistical_data .value_elevation p {
    line-height: 1.4;
    margin: 0;
    max-width: 90%;
    opacity: 0.9;
    font-size: 12px;
    color: #ffffff;
}.statistical_data .stat_item_inner::before {
    position: absolute;
    left: -2px;
    border-radius: calc(20px + 2px);
    opacity: 0;
    background: linear-gradient(45deg, transparent, rgb(213,183,172,0.5), transparent);
    top: -2px;
    bottom: -2px;
    right: -2px;
    content: '';
    transition: opacity 0.4s ease;
    z-index: -1;
}.statistical_data .value_elevation:hover .stat_item_inner::before {
    opacity: 1;
}.statistical_data .stat_item_inner::after {
    width: 100%;
    position: absolute;
    transform: translateY(-100%);
    opacity: 0;
    left: 0;
    animation: shine 3s infinite;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.05), transparent);
    top: 0;
    height: 30%;
    content: '';
    transition: opacity 0.3s ease;
}.statistical_data .value_elevation:hover .stat_item_inner::after {
    opacity: 1;
}.statistical_data .statistics_boosts::before {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    content: '';
    background: rgb(213,183,172);
    height: 3px;
    border-radius: 2px;
}.statistical_data .statistics_boosts::after {
    height: 3px;
    left: 60px;
    border-radius: 2px;
    width: 20px;
    bottom: -10px;
    content: '';
    position: absolute;
    background: rgb(185,154,143);
}.statistical_data::before {
    background-image: 
        linear-gradient(to right, #000000 1px, transparent 1px),
        linear-gradient(to bottom, #000000 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center center;
    opacity: 0.3;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes shine {
    0% {
        transform: translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateY(200%) rotate(30deg);
    }
}

@media screen and (max-width: 1200px) {.statistical_data .value_elevation {
    height: 200px;
    min-width: 200px;
    flex: 1 1 180px;
}
}

@media screen and (max-width: 992px) {.statistical_data {
    padding: 100px 0;
}.statistical_data .pro_statistics {
    grid-template-columns: 1fr;
    grid-template-areas:
            "minisvg"
            "header"
            "description"
            "knowledge_flow";
    grid-template-rows: auto auto auto auto;
}.statistical_data .statistics_perks {
    justify-content: center;
    margin-bottom: 20px;
}.statistical_data .statistics_boosts {
    justify-content: center;
    text-align: center;
}.statistical_data .statistics_boosts::before,
    .statistical_data .statistics_boosts::after {
    left: 50%;
}.statistical_data .statistics_boosts::before {
    transform: translateX(calc(-50% - 10px));
}.statistical_data .statistics_boosts::after {
    transform: translateX(calc(-50% + 30px));
}.statistical_data .edu_statistics {
    max-width: 90%;
}
}

@media screen and (max-width: 768px) {.statistical_data {
    padding: 80px 0;
}.statistical_data .statistics_boosts {
    font-size: calc(29px * 0.9);
}.statistical_data .edu_statistics {
    max-width: 95%;
    font-size: calc(12px * 0.95);
    padding: 15px;
}.statistical_data .value_elevation {
    min-width: 170px;
    height: 190px;
    flex: 1 1 170px;
}.statistical_data .value_elevation span {
    font-size: 29px;
}.statistical_data .value_elevation p {
    font-size: calc(12px * 0.9);
}
}

@media screen and (max-width: 576px) {.statistical_data {
    padding: 60px 0;
}.statistical_data .statistics_perks svg {
    height: 60px;
    width: 60px;
}.statistical_data .edu_statistics {
    padding: 15px 10px;
    max-width: 100%;
}.statistical_data .value_elevation {
    flex: 1 1 100%;
    height: auto;
    min-width: 100%;
    aspect-ratio: 16/9;
}.statistical_data .edge_statistics {
    flex-direction: column;
}}

.statistical_data .value_elevation:nth-child(1) {
    transform: translateY(-5px);
}.statistical_data .value_elevation:nth-child(2) {
    transform: translateY(5px);
}.statistical_data .value_elevation:nth-child(3) {
    transform: translateY(-8px);
}.statistical_data .value_elevation:nth-child(4) {
    transform: translateY(8px);
}.statistical_data .value_elevation:hover {
    transform: translateY(-10px) rotate3d(1, 2, 0, 5deg);
}.statistical_data .container::before {
    border-radius: 10px;
    width: 60px;
    right: -30px;
    border: 1px solid rgb(185,154,143,0.5);
    height: 60px;
    top: -30px;
    opacity: 0.3;
    animation: rotate 30s linear infinite;
    content: '';
    position: absolute;
}.statistical_data .container::after {
    animation: rotate 25s linear infinite reverse;
    width: 40px;
    transform: rotate(45deg);
    border: 1px solid rgb(213,183,172,0.5);
    bottom: -20px;
    left: -20px;
    content: '';
    position: absolute;
    height: 40px;
    opacity: 0.3;
}.course_methodology {
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(240,214,205) 0%, rgba(255,255,255,0.9) 100%);
    overflow: hidden;
    position: relative;
}.course_methodology::before {
    left: 0;
    height: 5px;
    z-index: 1;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(213,183,172) 0%, rgb(185,154,143) 100%);
    top: 0;
    right: 0;
}.course_methodology::after {
    width: 100%;
    z-index: 0;
    content: "";
    left: 0;
    top: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(rgb(213,183,172,0.5), 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(rgb(185,154,143,0.5), 0.07) 0%, transparent 40%);
    position: absolute;
    height: 100%;
}.course_methodology .container {
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
    z-index: 2;
    margin: 0 auto;
}.course_methodology .learn_identity {
    align-items: center;
    position: relative;
    justify-content: center;
    display: flex;
}.course_methodology .learn_identity > div {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.4), 
                box-shadow 0.5s ease;
    max-width: 900px;
    position: relative;
    transform: perspective(1000px) rotateY(-2deg);
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 
                0 5px 15px rgba(0, 0, 0, 0.03);
}.course_methodology .learn_identity > div:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 10px 20px rgba(0, 0, 0, 0.05);
    transform: perspective(1000px) rotateY(0deg) translateY(-5px);
}.course_methodology .learn_identity > div::before {
    height: calc(100% - 60px);
    border-left: 2px solid rgb(213,183,172);
    left: -10px;
    top: -10px;
    position: absolute;
    width: calc(100% - 60px);
    z-index: -1;
    opacity: 0.3;
    border-top: 2px solid rgb(213,183,172);
    content: "";
    transition: all 0.4s ease;
}.course_methodology .learn_identity > div::after {
    opacity: 0.3;
    height: calc(100% - 60px);
    transition: all 0.4s ease;
    width: calc(100% - 60px);
    content: "";
    z-index: -1;
    right: -10px;
    position: absolute;
    border-right: 2px solid rgb(185,154,143);
    border-bottom: 2px solid rgb(185,154,143);
    bottom: -10px;
}.course_methodology .learn_identity > div:hover::before,
.course_methodology .learn_identity > div:hover::after {
    opacity: 0.6;
    transform: scale(1.03);
}.course_methodology h3 {
    font-weight: 700;
    transform: translateX(-10px);
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    font-family: Arial, sans-serif;
    margin-bottom: 25px;
    font-size: calc(31px * 0.85);
    color: #000000;
    text-align: left;
    position: relative;
}.course_methodology .learn_identity > div:hover h3 {
    transform: translateX(0);
}.course_methodology h3::after {
    position: absolute;
    left: 0;
    content: "";
    background: linear-gradient(90deg, rgb(213,183,172) 0%, rgb(185,154,143) 100%);
    height: 3px;
    bottom: -8px;
    width: 50px;
    transition: width 0.4s ease;
}.course_methodology .learn_identity > div:hover h3::after {
    width: 80px;
}.course_methodology p {
    transition: transform 0.5s ease, opacity 0.5s ease;
    line-height: 1.8;
    transform: translateY(5px);
    font-family: Arial, sans-serif;
    margin-bottom: 0;
    color: #000000;
    opacity: 0.95;
    font-size: 14px;
}.course_methodology .learn_identity > div:hover p {
    transform: translateY(0);
    opacity: 1;
}.course_methodology p span {
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}.course_methodology p span::before {
    left: 0;
    transition: width 0.6s ease;
    width: 0;
    opacity: 0.5;
    bottom: -2px;
    background-color: rgb(185,154,143);
    height: 1px;
    content: "";
    position: absolute;
}.course_methodology .learn_identity > div:hover p span::before {
    width: 100%;
}

@media (max-width: 991px) {.course_methodology {
    padding: 80px 0;
}.course_methodology .learn_identity > div {
    padding: 30px;
    transform: perspective(1000px) rotateY(-1deg);
}.course_methodology h3 {
    margin-bottom: 20px;
    font-size: calc(31px * 0.75);
}
}

@media (max-width: 767px) {.course_methodology {
    padding: 60px 0;
}.course_methodology .learn_identity > div {
    transform: none;
    padding: 25px;
}.course_methodology .learn_identity > div:hover {
    transform: translateY(-3px);
}.course_methodology h3 {
    margin-bottom: 15px;
    transform: none;
    font-size: calc(31px * 0.7);
}.course_methodology h3::after {
    height: 2px;
}.course_methodology p {
    line-height: 1.7;
    font-size: calc(14px * 0.95);
}
}

@media (max-width: 480px) {.course_methodology {
    padding: 40px 0;
}.course_methodology .learn_identity > div {
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}.course_methodology .learn_identity > div::before,
    .course_methodology .learn_identity > div::after {
    display: none;
}.course_methodology h3 {
    margin-bottom: 15px;
    font-size: calc(31px * 0.65);
}.course_methodology p {
    font-size: calc(14px * 0.9);
    line-height: 1.6;
}
}

@media (hover: none) {.course_methodology .learn_identity > div {
    transform: none;
}.course_methodology .learn_identity > div:hover {
    transform: none;
}.course_methodology h3 {
    transform: none;
}.course_methodology p {
    transform: none;
}}.course_program {
    background: linear-gradient(135deg, rgb(240,214,205) 0%, #ffffff 100%);
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}.course_program::before {
    transform: rotate(-15deg) skew(10deg);
    filter: blur(20px);
    top: -10%;
    opacity: 0.6;
    z-index: 1;
    content: "";
    background: linear-gradient(45deg, rgb(213,183,172,0.5) 0%, rgb(185,154,143,0.5) 100%);
    position: absolute;
    right: -5%;
    height: 70%;
    width: 50%;
}.course_program::after {
    position: absolute;
    left: -5%;
    opacity: 0.4;
    content: "";
    width: 40%;
    z-index: 1;
    filter: blur(20px);
    bottom: -10%;
    background: linear-gradient(225deg, rgb(185,154,143,0.5) 0%, rgb(213,183,172,0.5) 100%);
    height: 60%;
    transform: rotate(15deg) skew(-10deg);
}.course_program .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    z-index: 2;
}.course_program h2 {
    color: #000000;
    margin-bottom: 50px;
    max-width: 80%;
    font-weight: 700;
    transform: translateX(-5px);
    font-size: 29px;
    position: relative;
}.course_program h2::after {
    bottom: -15px;
    height: 3px;
    content: "";
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    background: rgb(213,183,172);
    width: 80px;
    transform-origin: left center;
    left: 0;
    position: absolute;
    transform: scaleX(1);
}.course_program h2:hover::after {
    transform: scaleX(1.5);
}.course_program .program_path {
    grid-template-columns: 1fr;
    gap: 40px;
    display: grid;
    position: relative;
}.course_program .img_hover_box {
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    height: 400px;
    position: relative;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
    transform: perspective(1000px) rotateY(-2deg) translateZ(0);
}.course_program .img_hover_box::before {
    opacity: 0.4;
    position: absolute;
    width: 100%;
    content: "";
    top: 0;
    transition: opacity 0.5s ease;
    height: 100%;
    left: 0;
    background: linear-gradient(to right, rgb(213,183,172,0.5) 0%, transparent 100%);
}.course_program .img_hover_box:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(0) scale(1.02);
}.course_program .img_hover_box:hover::before {
    opacity: 0.2;
}.course_program .text_overlay {
    padding: 20px 0;
    position: relative;
}.course_program .description {
    transition: all 0.3s ease;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    color: #000000;
    margin-bottom: 25px;
    border-left: 2px solid rgb(185,154,143,0.5);
    font-size: 15px;
}.course_program .description:first-child {
    font-weight: 600;
    font-size: calc(15px * 1.05);
}.course_program .description:last-child {
    opacity: 0.85;
    transform: translateY(5px);
}.course_program .description::first-letter {
    color: rgb(213,183,172);
    font-weight: 700;
    font-size: 1.5em;
}.course_program .description:hover {
    border-left-color: rgb(213,183,172);
    transform: translateX(5px);
}

@media (min-width: 768px) {.course_program h2 {
    max-width: 70%;
    font-size: calc(29px * 1.1);
}.course_program .program_path {
    align-items: flex-start;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
}.course_program .img_hover_box {
    height: 500px;
}.course_program .text_overlay {
    padding: 20px 0 20px 20px;
}
}

@media (min-width: 992px) {.course_program {
    padding: 150px 0 100px;
}.course_program h2 {
    max-width: 60%;
    margin-bottom: 70px;
    transform: translateX(-10px);
}.course_program .program_path {
    gap: 80px;
}.course_program .img_hover_box {
    transform: perspective(1000px) rotateY(-5deg) translateZ(0);
    height: 600px;
}.course_program .text_overlay {
    scrollbar-width: thin;
    padding: 40px 0 40px 40px;
    max-height: 600px;
    overflow-y: auto;
    scrollbar-color: rgb(185,154,143) #ffffff;
}.course_program .text_overlay::-webkit-scrollbar {
    width: 6px;
}.course_program .text_overlay::-webkit-scrollbar-track {
    background: #ffffff;
}.course_program .text_overlay::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgb(185,154,143);
}.course_program .description {
    padding-left: 30px;
    margin-bottom: 30px;
}
}

@media (min-width: 1200px) {.course_program h2 {
    font-size: calc(29px * 1.2);
    max-width: 50%;
}.course_program .program_path {
    grid-template-columns: 45% 55%;
}.course_program .img_hover_box {
    height: 650px;
}.course_program .text_overlay {
    padding: 60px 0 60px 60px;
    max-height: 650px;
}.course_program .description {
    font-size: calc(15px * 1.05);
    line-height: 1.8;
}.course_program .description:first-child {
    font-size: calc(15px * 1.1);
}
}

@media (max-width: 767px) {.course_program {
    padding: 80px 0 50px;
}.course_program h2 {
    margin-bottom: 40px;
    max-width: 100%;
    font-size: calc(29px * 0.9);
}.course_program .img_hover_box {
    transform: perspective(1000px) rotateY(-1deg) translateZ(0);
    height: 300px;
}.course_program .description {
    padding-left: 15px;
    font-size: calc(15px * 0.95);
    line-height: 1.6;
}}.title_portal {
    justify-content: center;
    padding: 2rem;
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(240,214,205) 0%, rgb(185,154,143,0.5) 100%);
    position: relative;
    align-items: center;
    overflow: hidden;
    display: flex;
}.title_portal::before {
    left: 0;
    z-index: 1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(45deg, rgb(185,154,143,0.5) 0%, transparent 60%);
}.title_portal::after {
    background: linear-gradient(to right, rgb(213,183,172,0.5), rgb(185,154,143));
    content: "";
    opacity: 0.3;
    z-index: 0;
    transform: rotate(-5deg);
    right: -5px;
    position: absolute;
    bottom: -5px;
    width: 60%;
    height: 40%;
    filter: blur(15px);
}.title_portal .start_front {
    width: 100%;
    display: grid;
    z-index: 2;
    max-width: 1300px;
    grid-template-columns: 1fr;
    position: relative;
    gap: 3rem;
}.title_portal .start_front > div:first-child {
    position: relative;
    transform: translateY(2rem);
    opacity: 0;
    animation: slideUpFade 0.8s 0.3s forwards cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 3;
}.title_portal .start_front > div:first-child p {
    max-width: 90%;
    font-size: calc(13px * 1.4);
    margin-bottom: 1rem;
    font-weight: 600;
    padding-left: 2rem;
    line-height: 1.5;
    position: relative;
    color: #000000;
}.title_portal .start_front > div:first-child p::before {
    transform-origin: top;
    background: rgb(213,183,172);
    top: 0.5rem;
    width: 4px;
    position: absolute;
    height: calc(100% - 1rem);
    left: 0;
    content: "";
    transform: scaleY(0);
    animation: scaleLineDown 0.6s 0.8s forwards cubic-bezier(0.19, 1, 0.22, 1);
}.title_portal .pro_learn {
    transform: translateY(3rem);
    animation: slideUpFade 0.8s 0.6s forwards cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 3;
    opacity: 0;
    position: relative;
}.title_portal .pro_learn > div {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}.title_portal .pro_learn > div:hover {
    transform: translateY(-10px);
}.title_portal .pro_learn > div::before {
    content: "";
    top: 0;
    background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.7)
  );
    position: absolute;
    width: 100%;
    z-index: 1;
    height: 100%;
    left: 0;
}.title_portal .pro_learn > div::after {
    left: 0;
    position: absolute;
    width: 100%;
    opacity: 0.2;
    height: 100%;
    top: 0;
    background: rgb(185,154,143);
    content: "";
    z-index: 2;
    mix-blend-mode: overlay;
}.title_portal .pro_learn h3 {
    padding: 2.5rem 2rem 1rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
    max-width: 90%;
    position: relative;
    font-size: calc(20px * 1.1);
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}.title_portal .pro_learn h3::before {
    position: absolute;
    height: 3px;
    transform-origin: left;
    background: rgb(213,183,172);
    width: 60px;
    top: 1.5rem;
    content: "";
    left: 2rem;
    transform: scaleX(0);
    animation: scaleLineRight 0.6s 1.2s forwards cubic-bezier(0.19, 1, 0.22, 1);
}.title_portal .pro_learn h1.title_style_header {
    font-size: 40px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    z-index: 3;
    position: relative;
    padding: 0 2rem 2.5rem;
}.title_portal .pro_learn > div > div {
    opacity: 0;
    position: relative;
    animation: slideUpFade 0.8s 0.9s forwards cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 3;
    transform: translateY(20px);
}.title_portal .pro_learn > div > div > div {
    display: inline-block;
    position: relative;
}.title_portal .pro_learn > div > div > div::before {
    transform-origin: left;
    content: "";
    animation: scaleLineRight 0.6s 1.5s forwards cubic-bezier(0.19, 1, 0.22, 1);
    height: 2px;
    width: calc(100% - 4rem);
    position: absolute;
    left: 2rem;
    bottom: -10px;
    background: rgb(213,183,172);
    transform: scaleX(0);
}

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

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

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

@media (min-width: 768px) {.title_portal {
    padding: 3rem;
}.title_portal .start_front {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 4rem;
}.title_portal .start_front > div:first-child p {
    font-size: calc(13px * 1.6);
    padding-left: 3rem;
    max-width: 100%;
}.title_portal .start_front > div:first-child p::before {
    width: 6px;
}.title_portal .pro_learn h3 {
    padding: 3rem 3rem 1.5rem;
    font-size: calc(20px * 1.2);
}.title_portal .pro_learn h3::before {
    top: 2rem;
    left: 3rem;
    width: 80px;
}.title_portal .pro_learn h1.title_style_header {
    font-size: calc(40px * 1.2);
    padding: 0 3rem 3rem;
}
}

@media (min-width: 1200px) {.title_portal {
    padding: 4rem;
}.title_portal .start_front {
    gap: 6rem;
}.title_portal .start_front > div:first-child p {
    font-size: calc(13px * 1.8);
    padding-left: 4rem;
}.title_portal .start_front > div:first-child p::before {
    width: 8px;
}.title_portal .pro_learn h3 {
    padding: 4rem 4rem 2rem;
    font-size: calc(20px * 1.3);
}.title_portal .pro_learn h3::before {
    width: 100px;
    top: 2.5rem;
    left: 4rem;
}.title_portal .pro_learn h1.title_style_header {
    padding: 0 4rem 4rem;
    font-size: calc(40px * 1.4);
}.title_portal .pro_learn > div > div > div::before {
    left: 4rem;
    width: calc(100% - 8rem);
}}.gratZone {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(240,214,205) 0%, rgb(213,183,172,0.5) 100%);
    overflow: hidden;
}.gratZone::before {
    background: linear-gradient(120deg, rgb(185,154,143,0.5) 0%, transparent 70%);
    transform: rotate(-15deg) skewX(15deg);
    right: -5%;
    height: 70%;
    opacity: 0.6;
    content: "";
    width: 40%;
    z-index: 1;
    position: absolute;
    top: -10%;
}.gratZone::after {
    height: 60%;
    width: 30%;
    bottom: -5%;
    left: -2%;
    position: absolute;
    content: "";
    opacity: 0.4;
    background: linear-gradient(220deg, rgb(213,183,172,0.5) 0%, transparent 80%);
    z-index: 1;
    transform: rotate(10deg) skewY(-5deg);
}.gratZone .container {
    max-width: 1200px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    margin: 0 auto;
}.gratZone h2 {
    animation: fadeInUp 0.8s ease-out forwards;
    line-height: 1.4;
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
    color: #000000;
    max-width: 90%;
    transform: translateY(0);
    font-size: 31px;
    opacity: 1;
}.gratZone h2::after {
    transform: scaleX(1);
    height: 3px;
    background: linear-gradient(90deg, rgb(213,183,172) 0%, rgb(185,154,143) 100%);
    bottom: -15px;
    position: absolute;
    content: "";
    width: 80px;
    transform-origin: left;
    transition: transform 0.5s ease;
    left: 0;
}.gratZone .learn_identity {
    padding: 40px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 
                0 5px 15px rgba(0, 0, 0, 0.03);
    border-left: 4px solid rgb(213,183,172);
    background: #ffffff;
    position: relative;
    opacity: 0;
    transform: perspective(1000px) rotateY(0deg);
    z-index: 3;
    animation: fadeIn 1s ease-out 0.3s forwards;
}.gratZone .learn_identity::before {
    z-index: -1;
    left: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    content: "";
}.gratZone .learn_identity:hover {
    transform: perspective(1000px) rotateY(2deg) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 10px 20px rgba(0, 0, 0, 0.05);
}.gratZone ul {
    list-style: none;
    margin: 0;
    padding: 0;
}.gratZone li {
    padding-left: 20px;
    margin-bottom: 15px;
    position: relative;
}.gratZone li::before {
    background: rgb(185,154,143);
    width: 6px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    height: 6px;
    content: "";
    top: 10px;
}.gratZone span {
    font-size: calc(16px * 1.05);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    color: #000000;
    line-height: 1.8;
    opacity: 0;
    display: block;
    font-family: Arial, sans-serif;
    transform: translateY(10px);
    letter-spacing: 0.02em;
}

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

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

@media (min-width: 768px) {.gratZone {
    padding: 150px 0;
}.gratZone h2 {
    max-width: 80%;
    font-size: calc(31px * 1.1);
}.gratZone .learn_identity {
    margin-left: 30px;
    padding: 50px 60px;
}.gratZone span {
    font-size: calc(16px * 1.1);
}
}

@media (min-width: 992px) {.gratZone .container {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}.gratZone h2 {
    max-width: 70%;
}.gratZone .learn_identity {
    margin-left: 60px;
    width: 85%;
}.gratZone span {
    line-height: 1.9;
    font-size: calc(16px * 1.15);
}
}

@media (max-width: 767px) {.gratZone {
    padding: 80px 0;
}.gratZone h2 {
    font-size: calc(31px * 0.9);
    margin-bottom: 40px;
}.gratZone .learn_identity {
    padding: 30px 25px;
}.gratZone span {
    font-size: 16px;
    line-height: 1.7;
}.gratZone h2::after {
    width: 60px;
}
}

@media (max-width: 480px) {.gratZone {
    padding: 60px 0;
}.gratZone h2 {
    font-size: calc(31px * 0.8);
    margin-bottom: 35px;
}.gratZone .learn_identity {
    padding: 25px 20px;
}.gratZone span {
    font-size: calc(16px * 0.95);
    line-height: 1.6;
}.gratZone h2::after {
    height: 2px;
    width: 50px;
}}.vr_labs {
    color: #ffffff;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1;
    padding: 80px 0 40px;
}@keyframes pulseLine {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.vr_labs .container {
    position: relative;
    justify-content: space-between;
    display: flex;
}.vr_labs .company_holder {
    padding-right: 30px;
    flex: 0 0 30%;
    position: relative;
}.vr_labs .company_holder::after {
    content: '';
    background: linear-gradient(to bottom, transparent, rgb(213,183,172), transparent);
    width: 1px;
    top: 10%;
    height: 80%;
    right: 0;
    position: absolute;
}.vr_labs .company_holder h3 {
    text-shadow: 0 0 10px rgb(213,183,172,0.5);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: calc(38px * 0.9);
    display: inline-block;
    position: relative;
    color: #ffffff;
}.vr_labs .company_holder h3::after {
    bottom: -5px;
    width: 40%;
    left: 0;
    transition: width 0.3s ease-in-out;
    content: '';
    background: rgb(213,183,172);
    height: 2px;
    position: absolute;
}.vr_labs .company_holder h3:hover::after {
    width: 100%;
}.vr_labs .verify_cta {
    color: #ffffff;
    transition: all 0.3s ease;
    margin-top: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    line-height: 1.6;
    padding: 15px;
    transform: translateZ(0);
}.vr_labs .verify_cta:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}.vr_labs .app_store {
    display: flex;
    position: relative;
    justify-content: space-between;
    flex: 0 0 65%;
}.vr_labs .head_pagebar {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}.vr_labs .nav_begin {
    flex: 0 0 45%;
    padding: 20px;
    border-radius: 29px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}.vr_labs .nav_begin::before {
    position: absolute;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    content: '';
    z-index: -1;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}.vr_labs .nav_begin:hover::before {
    transform: translateX(100%);
}.vr_labs .nav_begin h5 {
    color: #ffffff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 19px;
    position: relative;
    font-weight: 600;
}.vr_labs .nav_begin h5::after {
    left: 0;
    background: rgb(213,183,172);
    content: '';
    bottom: 0;
    position: absolute;
    height: 2px;
    width: 40px;
    transition: width 0.3s ease, box-shadow 0.3s ease;
}.vr_labs .nav_begin:hover h5::after {
    box-shadow: 0 0 8px rgb(213,183,172), 0 0 16px rgb(213,183,172,0.5);
    width: 70px;
}.vr_labs .nav_begin .head_pagebar {
    display: flex;
    gap: 12px;
    flex-direction: column;
}.vr_labs .nav_begin .head_pagebar a {
    opacity: 0.85;
    text-decoration: none;
    padding-left: 0;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    font-size: calc(13px * 0.95);
    color: #ffffff;
}.vr_labs .nav_begin .head_pagebar a::before {
    position: absolute;
    transform-origin: left;
    left: 0;
    width: 0;
    transition: width 0.3s ease, transform 0.3s ease;
    background: linear-gradient(90deg, rgb(213,183,172), transparent);
    height: 1px;
    bottom: -2px;
    content: '';
}.vr_labs .nav_begin .head_pagebar a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #ffffff;
}.vr_labs .nav_begin .head_pagebar a:hover::before {
    width: 100%;
    box-shadow: 0 0 5px rgb(213,183,172,0.5);
}.quiz_links {
    backdrop-filter: blur(10px);
    position: relative;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}.quiz_links::before {
    content: '';
    right: 0;
    left: 0;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(213,183,172,0.5), transparent);
    top: 0;
    height: 1px;
}.quiz_links .container {
    align-items: center;
    display: flex;
    justify-content: center;
}.quiz_links .recycle_info {
    opacity: 0.8;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    font-size: 13px;
    text-align: center;
    color: #ffffff;
}.quiz_links .recycle_info:hover {
    opacity: 1;
}

@media (max-width: 991px) {.vr_labs {
    padding: 60px 0 30px;
}.vr_labs .container {
    flex-direction: column;
}.vr_labs .company_holder {
    padding-right: 0;
    flex: 0 0 100%;
    margin-bottom: 40px;
}.vr_labs .company_holder::after {
    display: none;
}.vr_labs .app_store {
    flex: 0 0 100%;
}.vr_labs .nav_begin {
    flex: 0 0 calc(50% - 20px);
    margin-bottom: 20px;
}
}

@media (max-width: 768px) {.vr_labs {
    padding: 40px 0 20px;
}.vr_labs .head_pagebar {
    flex-direction: column;
}.vr_labs .nav_begin {
    margin-bottom: 20px;
    flex: 0 0 100%;
}.vr_labs .company_holder h3 {
    font-size: calc(38px * 0.8);
}.vr_labs .nav_begin h5 {
    font-size: calc(19px * 0.9);
}.quiz_links .recycle_info {
    font-size: calc(13px * 0.9);
}
}

@media (max-width: 576px) {.vr_labs {
    padding: 30px 0 15px;
}.vr_labs .company_holder {
    margin-bottom: 30px;
}.vr_labs .company_holder h3 {
    font-size: calc(38px * 0.7);
}.vr_labs .nav_begin h5 {
    font-size: calc(19px * 0.8);
}.quiz_links {
    padding: 10px 0;
}.quiz_links .recycle_info {
    font-size: calc(13px * 0.8);
}}


footer {
    position: relative;
}footer::after {
    opacity: 0.3;
    z-index: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, .05) 25%, rgba(255, 255, 255, .05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, .05) 75%, rgba(255, 255, 255, .05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    left: 0;
    right: 0;
    content: '';
    top: 0;
    position: absolute;
    bottom: 0;
}.vr_labs .company_holder h3 {
    position: relative;
    overflow: hidden;
}.vr_labs .company_holder h3::before {
    position: absolute;
    top: 0;
    height: 100%;
    content: '';
    width: 100%;
    left: -100%;
    pointer-events: none;
    transition: 0.5s;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}.vr_labs .company_holder h3:hover::before {
    left: 100%;
}.cookie_banner_window {
    width: 100%;
    border-top: 2px solid rgb(213,183,172);
    position: fixed;
    box-shadow: 0 -10px 30px rgb(213,183,172,0.5);
    bottom: 0;
    z-index: 90;
    background: rgb(185,154,143);
    animation: slideIn 0.5s ease-in-out;
}@keyframes slideIn {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}
.data_approval {
    justify-content: space-between;
    background: linear-gradient(135deg, rgb(185,154,143) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 20px 5%;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    box-shadow: 0 0 20px rgb(213,183,172,0.5);
}.track_prefs {
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px rgb(213,183,172);
    padding: 10px;
}.track_prefs svg, .track_prefs svg path {
    width: 60px;
    transition: transform 0.3s ease;
    height: 60px;
    fill: rgb(213,183,172);
}.track_prefs:hover svg {
    transform: rotate(20deg);
}.cookie_explained {
    color: #ffffff;
    min-width: 300px;
    flex: 1;
}.cookie_explained h5 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 19px;
    color: rgb(213,183,172);
    text-shadow: 0 0 10px rgb(213,183,172);
}.cookie_explained p {
    text-shadow: 0 0 5px rgb(213,183,172,0.5);
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 0;
}.edu_track {
    box-shadow: 0 0 10px rgb(213,183,172,0.5);
    cursor: pointer;
    background: rgb(213,183,172);
    margin-left: 10px;
    border-radius: 10px;
    padding: 12px 25px;
    color: #000000;
    font-size: 16px;
    white-space: nowrap;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}.edu_track:hover {
    background: rgb(185,154,143);
    box-shadow: 0 0 20px rgb(185,154,143,0.5);
}.cookie_banner_window p a {
    transition: color 0.3s ease;
    color: rgb(213,183,172);
    text-decoration: underline;
}.cookie_banner_window p a:hover {
    color: rgb(185,154,143);
}#cookie_popuppanel {
    display: none;
}#cookie_popuppanel:checked ~ .cookie_banner_window {
    visibility: hidden;
    opacity: 0;
}
@media only screen and (max-width: 1200px) {.cookie_banner_window {
    padding: 20px;
}.data_approval {
    padding: 20px 2%;
}
}
@media only screen and (max-width: 800px) {.track_prefs {
    display: none;
}.data_approval {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}.cookie_explained {
    text-align: center;
    margin-bottom: 20px;
}.cookie_banner_window h5, .cookie_banner_window p {
    text-align: center;
}.edu_track {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
    text-align: center;
}}
.future_students {
    overflow: hidden;
    padding: 140px 0;
    position: relative;
    background: rgb(240,214,205);
}.future_students::before {
    width: 100%;
    opacity: 0.03;
    z-index: 0;
    content: "";
    height: 100%;
    position: absolute;
    background-size: 60px 60px;
    background-image: 
        linear-gradient(
            45deg, 
            rgb(213,183,172,0.5) 25%, 
            transparent 25%, 
            transparent 75%, 
            rgb(213,183,172,0.5) 75%
        ),
        linear-gradient(
            -45deg, 
            rgb(213,183,172,0.5) 25%, 
            transparent 25%, 
            transparent 75%, 
            rgb(213,183,172,0.5) 75%
        );
    left: 0;
    background-position: 0 0, 30px 30px;
    top: 0;
}.future_students::after {
    background: linear-gradient(to top, rgb(240,214,205), transparent);
    left: 0;
    height: 150px;
    bottom: 0;
    width: 100%;
    content: "";
    position: absolute;
    z-index: 1;
}.future_students .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}.future_students .learn_identity {
    position: relative;
}.future_students h4 {
    font-size: 32px;
    position: relative;
    padding: 20px 0;
    color: #000000;
    text-align: center;
    font-weight: 700;
    margin-bottom: 80px;
}.future_students h4::before {
    border-radius: 2px;
    content: "";
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    background: rgb(213,183,172,0.5);
    transform: translateX(-50%);
    height: 3px;
}.future_students h4::after {
    border-radius: 2px;
    position: absolute;
    width: 100px;
    bottom: 0;
    left: 50%;
    content: "";
    transform: translateX(-50%);
    height: 3px;
    background: rgb(185,154,143,0.5);
}.future_students div {
    flex-direction: column;
    display: flex;
    position: relative;
    align-items: center;
}.future_students div::before {
    opacity: 0.5;
    background: linear-gradient(180deg, rgb(213,183,172,0.5), rgb(185,154,143,0.5), transparent);
    width: 2px;
    content: "";
    position: absolute;
    top: 0;
    z-index: 0;
    height: 100%;
    left: 50%;
}.future_students div p {
    display: flex;
    z-index: 1;
    transition: all 0.4s ease;
    margin: 0 0 60px 0;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    line-height: 1.6;
    align-items: center;
    color: #000000;
    position: relative;
    font-size: 13px;
    background: #ffffff;
    padding: 25px 30px;
    width: 70%;
}.future_students div p:nth-child(odd) {
    border-top-left-radius: 0;
    align-self: flex-start;
}.future_students div p:nth-child(even) {
    border-top-right-radius: 0;
    align-self: flex-end;
}.future_students div p:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}.future_students div p::before {
    background: #ffffff;
    position: absolute;
    content: "";
    border-radius: 50%;
    z-index: 2;
    width: 30px;
    height: 30px;
}.future_students div p:nth-child(odd)::before {
    left: -15px;
    top: -15px;
}.future_students div p:nth-child(even)::before {
    top: -15px;
    right: -15px;
}.future_students div p::after {
    width: 15px;
    transition: all 0.3s ease;
    border-radius: 50%;
    position: absolute;
    background: linear-gradient(135deg, rgb(213,183,172), rgb(185,154,143));
    z-index: 3;
    content: "";
    height: 15px;
}.future_students div p:nth-child(odd)::after {
    left: -7.5px;
    top: -7.5px;
}.future_students div p:nth-child(even)::after {
    top: -7.5px;
    right: -7.5px;
}.future_students div p:hover::after {
    transform: scale(1.3);
    box-shadow: 0 0 10px rgb(213,183,172,0.5);
}.future_students div p svg {
    width: 32px;
    height: 32px;
    min-width: 32px;
    transition: all 0.3s ease;
    margin-right: 20px;
}.future_students div p:hover svg {
    transform: rotate(15deg);
}.future_students div p svg path {
    fill: rgb(213,183,172);
    transition: fill 0.3s ease;
}.future_students div p:hover svg path {
    fill: rgb(185,154,143);
}

@media (max-width: 991px) {.future_students {
    padding: 120px 0;
}.future_students h4 {
    margin-bottom: 70px;
    font-size: calc(32px - 2px);
}.future_students div p {
    width: 80%;
    padding: 22px 25px;
    margin-bottom: 50px;
}.future_students div p svg {
    min-width: 28px;
    width: 28px;
    height: 28px;
    margin-right: 15px;
}
}

@media (max-width: 767px) {.future_students {
    padding: 100px 0;
}.future_students h4 {
    font-size: calc(32px - 4px);
    margin-bottom: 60px;
}.future_students div p {
    width: 90%;
    padding: 18px 22px;
    border-radius: 30px !important;
    margin-bottom: 40px;
    align-self: center !important;
}.future_students div p::before,
    .future_students div p::after {
    display: none;
}.future_students div p svg {
    margin-right: 12px;
    height: 24px;
    min-width: 24px;
    width: 24px;
}
}

@media (max-width: 479px) {.future_students {
    padding: 80px 0;
}.future_students h4 {
    font-size: calc(32px - 6px);
    margin-bottom: 50px;
}.future_students div p {
    padding: 15px 18px;
    width: 100%;
    margin-bottom: 30px;
    font-size: calc(13px - 1px);
}.future_students div p svg {
    margin-right: 10px;
    width: 22px;
    min-width: 22px;
    height: 22px;
}}.contact_section {
    padding: 90px 0;
    position: relative;
    background: rgb(240,214,205);
    overflow: hidden;
}.contact_section::before {
    background: repeating-linear-gradient(
        45deg,
        rgb(185,154,143,0.5),
        rgb(185,154,143,0.5) 1px,
        transparent 1px,
        transparent 10px
    );
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    content: '';
    opacity: 0.05;
}.contact_section .img_hover_box {
    border-radius: 14px 0 0 14px;
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.2);
    z-index: 1;
    right: 0;
    position: absolute;
    width: 40%;
    top: 5%;
    height: 90%;
}.contact_section .img_hover_box::after {
    height: 100%;
    top: 0;
    content: '';
    border-radius: 14px 0 0 14px;
    width: 100%;
    position: absolute;
    left: 0;
    background: linear-gradient(to right, rgb(213,183,172,0.5), transparent 70%);
}.contact_section .container {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}.contact_section h3 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 50px;
    font-size: 36px;
    font-family: Arial, sans-serif;
    color: rgb(213,183,172);
}.contact_section .query_help {
    display: flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 14px;
    background: #ffffff;
}.contact_section .query_section {
    padding: 50px;
    position: relative;
    flex: 1;
}.contact_section form h3 {
    color: #000000;
    font-size: 19px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
}.contact_section input[type="text"],
.contact_section textarea {
    color: #000000;
    margin-bottom: 20px;
    width: 100%;
    font-size: 12px;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    font-family: Arial, sans-serif;
    padding: 15px;
}.contact_section input[type="text"]:focus,
.contact_section textarea:focus {
    outline: none;
    border-color: rgb(213,183,172);
    box-shadow: 0 0 0 2px rgb(213,183,172,0.5);
}.contact_section textarea {
    resize: none;
    height: 150px;
}.contact_section .request_query {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}.contact_section .request_query input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact_section .request_query label {
    font-size: 14px;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1.5;
    color: #000000;
    position: relative;
}.contact_section .request_query label::before {
    border-radius: 10px;
    top: 2px;
    position: absolute;
    left: 0;
    border: 2px solid rgb(185,154,143);
    transition: all 0.3s ease;
    height: 18px;
    width: 18px;
    content: '';
}.contact_section .request_query input[type="checkbox"]:checked + label::before {
    border-color: rgb(213,183,172);
    background: rgb(213,183,172);
}.contact_section .request_query input[type="checkbox"]:checked + label::after {
    border-width: 0 2px 2px 0;
    border: solid #ffffff;
    height: 10px;
    position: absolute;
    left: 6px;
    top: 6px;
    width: 6px;
    content: '';
    transform: rotate(45deg);
}.contact_section .request_query a {
    transition: all 0.3s ease;
    color: rgb(213,183,172);
    text-decoration: none;
}.contact_section .request_query a:hover {
    text-decoration: underline;
}.contact_section .support_grid {
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 17px;
    background: rgb(213,183,172);
    font-family: Arial, sans-serif;
    padding: 15px 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
}.contact_section .support_grid:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    background: rgb(185,154,143);
}.contact_section .connect_grid {
    position: relative;
    background: rgb(213,183,172);
    width: 35%;
    padding: 50px;
}.contact_section .connect_grid::before {
    content: '';
    width: 100%;
    position: absolute;
    background: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.05) 1px,
        transparent 1px,
        transparent 10px
    );
    top: 0;
    height: 100%;
    left: 0;
}.contact_section .connect_grid h4 {
    color: #ffffff;
    margin-bottom: 40px;
    font-size: 19px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    position: relative;
}.contact_section .connect_grid h4::after {
    bottom: -15px;
    height: 3px;
    content: '';
    width: 40px;
    position: absolute;
    background: #ffffff;
    left: 0;
}.contact_section .message_reach {
    margin: 0;
    list-style: none;
    padding: 0;
}.contact_section .message_reach li {
    margin-bottom: 30px;
    align-items: center;
    display: flex;
}.contact_section .message_reach svg {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    flex-shrink: 0;
}.contact_section .message_reach svg path {
    fill: #ffffff;
}.contact_section .message_reach span {
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 12px;
}.contact_section .message_reach a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}.contact_section .message_reach a:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {.contact_section .img_hover_box {
    display: none;
}.contact_section .query_help {
    flex-direction: column;
}.contact_section .query_section {
    width: 100%;
}.contact_section .connect_grid {
    width: 100%;
}
}

@media (max-width: 768px) {.contact_section {
    padding: 60px 0;
}.contact_section h3 {
    margin-bottom: 40px;
    font-size: calc(36px * 0.9);
}.contact_section .query_section,
    .contact_section .connect_grid {
    padding: 40px;
}
}

@media (max-width: 576px) {.contact_section {
    padding: 40px 0;
}.contact_section h3 {
    font-size: calc(36px * 0.8);
    margin-bottom: 30px;
}.contact_section .query_section,
    .contact_section .connect_grid {
    padding: 30px 20px;
}.contact_section form h3,
    .contact_section .connect_grid h4 {
    font-size: calc(19px * 0.9);
    margin-bottom: 25px;
}.contact_section input[type="text"],
    .contact_section textarea {
    padding: 12px;
    margin-bottom: 15px;
}.contact_section textarea {
    height: 120px;
}.contact_section .support_grid {
    padding: 12px;
    width: 100%;
}.contact_section .message_reach li {
    margin-bottom: 20px;
}}.secure_sanctuary {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(240,214,205) 0%, rgba(255,255,255,0.98) 100%);
    perspective: 1000px;
    padding: 5rem 2rem;
    position: relative;
}.secure_sanctuary::before {
    position: absolute;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgb(213,183,172,0.5) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgb(185,154,143,0.5) 0%, transparent 25%);
    opacity: 0.15;
    content: "";
    left: 0;
    transform: translateZ(-50px);
    width: 100%;
    height: 100%;
    top: 0;
}.secure_sanctuary .container {
    transform-style: preserve-3d;
    border-left: 4px solid rgb(213,183,172);
    position: relative;
    background: #ffffff;
    z-index: 1;
    padding: 2rem;
    max-width: 1140px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.05),
        0 5px 15px rgba(0,0,0,0.03);
    transform: translateZ(0) rotateX(0.5deg);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    margin: 0 auto;
}.secure_sanctuary .container:hover {
    transform: translateZ(10px) rotateX(0deg);
}.secure_sanctuary h1 {
    font-size: calc(44px * 1.2);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: Arial, sans-serif;
    letter-spacing: -0.5px;
    color: #000000;
    margin-bottom: 2rem;
}.secure_sanctuary h1::after {
    left: 0;
    width: 80px;
    bottom: 0;
    transform-origin: left;
    background: linear-gradient(90deg, rgb(213,183,172) 0%, rgb(185,154,143) 100%);
    transition: transform 0.4s ease-out;
    position: absolute;
    content: "";
    height: 4px;
    transform: scaleX(1);
}.secure_sanctuary:hover h1::after {
    transform: scaleX(1.5);
}.secure_sanctuary h2 {
    font-family: Arial, sans-serif;
    font-weight: 600;
    border-left: 3px solid rgb(185,154,143);
    transform: translateX(0);
    font-size: calc(38px * 1.05);
    color: #000000;
    padding-left: 1rem;
    position: relative;
    transition: transform 0.3s ease-out;
    margin: 3rem 0 1.5rem;
}.secure_sanctuary h2:hover {
    transform: translateX(5px);
}.secure_sanctuary h3 {
    position: relative;
    margin: 2.5rem 0 1rem;
    font-family: Arial, sans-serif;
    font-weight: 600;
    color: #000000;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 0.5rem;
    font-size: calc(19px * 1.2);
}.secure_sanctuary h4 {
    margin: 2rem 0 1rem;
    position: relative;
    color: #000000;
    font-family: Arial, sans-serif;
    padding-left: 1.5rem;
    font-weight: 600;
    font-size: calc(22px * 1.1);
}.secure_sanctuary h4::before {
    content: "";
    top: 50%;
    background-color: rgb(213,183,172);
    position: absolute;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    left: 0;
}.secure_sanctuary p {
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.8;
    transform: translateZ(0);
    color: #000000;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease-out;
    font-size: 15px;
}.secure_sanctuary p:hover {
    transform: translateZ(5px);
}.secure_sanctuary strong {
    background: linear-gradient(to bottom, transparent 85%, rgb(185,154,143,0.5) 85%, rgb(185,154,143,0.5) 100%);
    position: relative;
    font-weight: 600;
    color: #000000;
    padding: 0 2px;
    display: inline-block;
}.secure_sanctuary ul {
    position: relative;
    margin: 1.5rem 0 2rem;
    list-style: none;
    padding-left: 1.5rem;
}.secure_sanctuary ul li {
    transition: transform 0.2s ease-out;
    font-family: Arial, sans-serif;
    color: #000000;
    font-size: 15px;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    position: relative;
}.secure_sanctuary ul li:hover {
    transform: translateX(5px);
}.secure_sanctuary ul li::before {
    width: 6px;
    transition: transform 0.2s ease-out, background-color 0.2s ease-out;
    left: 0;
    content: "";
    border-radius: 50%;
    top: 0.65rem;
    height: 6px;
    position: absolute;
    background-color: rgb(213,183,172);
}.secure_sanctuary ul li:hover::before {
    background-color: rgb(185,154,143);
    transform: scale(1.5);
}.secure_sanctuary span {
    color: #000000;
    transform: translateX(0);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 15px;
    background-color: rgba(rgba(0, 0, 0, 0.5), 0.02);
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease-out, border-left-color 0.3s ease-out;
    border-left: 2px solid rgb(185,154,143,0.5);
    padding: 1rem 1.5rem;
    display: block;
}.secure_sanctuary span:hover {
    transform: translateX(5px);
    border-left-color: rgb(185,154,143);
}

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

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

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

@media screen and (max-width: 576px) {.secure_sanctuary {
    padding: 1.5rem 0.5rem;
}.secure_sanctuary .container {
    border-left-width: 3px;
    padding: 1rem;
}.secure_sanctuary h1 {
    font-size: calc(44px * 0.8);
}.secure_sanctuary h1::after {
    height: 3px;
    width: 60px;
}.secure_sanctuary h2 {
    margin: 2rem 0 1rem;
    border-left-width: 2px;
}.secure_sanctuary ul li {
    padding-left: 1.25rem;
}.secure_sanctuary p:hover,
    .secure_sanctuary ul li:hover,
    .secure_sanctuary span:hover,
    .secure_sanctuary h2:hover {
    transform: none;
}}header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
    margin-top: 0;
    background: rgb(240,214,205);
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}header::before {
    height: 100%;
    left: 0;
    width: 100%;
    content: '';
    pointer-events: none;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(rgb(213,183,172), 0.03) 25%, 
        rgba(rgb(213,183,172), 0.05) 50%,
        rgba(rgb(213,183,172), 0.03) 75%,
        transparent 100%
    );
    top: 0;
    position: absolute;
}header .nav_mainwrap {
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    display: flex;
    position: relative;
    z-index: 2;
}header .nav_class {
    margin-right: 2rem;
    max-width: 180px;
    flex: 0 0 auto;
    position: relative;
}header .top_teach {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}header .top_teach:hover {
    transform: translateY(-3px);
}header .top_teach img {
    filter: brightness(1.03);
    display: block;
    height: auto;
    max-width: 100%;
}header .top_teach::before {
    width: 100%;
    bottom: -15px;
    left: 0;
    opacity: 0;
    position: absolute;
    background: rgb(213,183,172);
    border-radius: 10px;
    transform: scaleX(0.7);
    height: 10px;
    content: '';
    transition: all 0.3s ease;
}header .top_teach:hover::before {
    opacity: 0.7;
    transform: scaleX(1);
}header .nav_begin {
    padding: 0;
    display: flex;
    position: relative;
    list-style: none;
    flex-wrap: nowrap;
    margin: 0;
}header .nav_begin::after {
    width: 100%;
    position: absolute;
    height: 1px;
    content: '';
    left: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgb(213,183,172,0.5), 
        transparent
    );
    bottom: -15px;
}header .head_top {
    margin: 0;
    position: relative;
}header .head_top a {
    color: #000000;
    display: block;
    font-weight: 600;
    font-size: 16px;
    padding: 1rem 1.2rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}header .head_top a::before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    transition: transform 0.3s ease;
    position: absolute;
    transform: translateX(-100%);
    content: '';
    background: rgb(213,183,172);
}header .head_top a:hover {
    color: rgb(213,183,172);
}header .head_top a:hover::before {
    transform: translateX(0);
}header .head_top a::after {
    background: rgb(213,183,172,0.5);
    top: 0;
    z-index: -1;
    left: 0;
    opacity: 0;
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: scale(0.8);
    width: 100%;
    position: absolute;
    content: '';
    height: 100%;
    pointer-events: none;
}header .head_top a:hover::after {
    opacity: 0.15;
    transform: scale(1);
}header .nav_mainwrap::before {
    top: 0;
    position: absolute;
    background: linear-gradient(-90deg, rgb(240,214,205), transparent);
    z-index: -1;
    right: 0;
    content: '';
    width: 30%;
    height: 100%;
}header .nav_mainwrap::after {
    content: '';
    width: 30%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgb(240,214,205), transparent);
    height: 100%;
}header .main_know {
    z-index: 1;
    position: relative;
    background: #ffffff;
    padding-top: 2rem;
}

@media (min-width: 1400px) {header .nav_mainwrap {
    margin: 0 auto;
    max-width: 1300px;
}header .head_top a {
    padding: 1rem 1.5rem;
}
}

@media (max-width: 991px) {header .nav_mainwrap {
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    padding: 1rem;
}header .nav_class {
    margin-right: 0;
    margin-bottom: 0;
}header .nav_begin {
    justify-content: flex-end;
    flex-basis: 100%;
    margin-top: 0;
    padding-top: 1rem;
    flex-wrap: wrap;
}header .head_top {
    margin-bottom: 0.5rem;
}header .head_top a {
    padding: 0.7rem 1rem;
    font-size: calc(16px - 1px);
}
}

@media (max-width: 767px) {header {
    margin-top: 0;
}header .nav_mainwrap {
    padding: 1rem 1.5rem;
}header .nav_class {
    flex: 0 0 auto;
    max-width: 150px;
}header .nav_begin {
    flex-wrap: nowrap;
    margin-top: 0.5rem;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
    padding: 0.5rem 0;
}header .nav_begin::-webkit-scrollbar {
    height: 3px;
}header .nav_begin::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(213,183,172,0.5);
}header .head_top {
    flex: 0 0 auto;
}header .head_top a {
    white-space: nowrap;
    font-size: calc(16px - 2px);
    padding: 0.6rem 0.8rem;
}header .nav_begin::after {
    bottom: 0;
}header .top_teach::before {
    display: none;
}
}