* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}.insta_feed {
    flex: 0 0 auto;
}header,footer {
    width: 100%;
}.first_section {
    flex: 1 0 auto;
}html,body {
    color: #000000;
    font-family: Arial, sans-serif;
    min-height: 100%;
    height: 100%;
    scroll-behavior: smooth;
}.container {
    max-width: 100%;
    margin: auto;
    width: 1279px;
}.wrap-structure {
    height: 100%;
    flex-direction: column;
    display: flex;
    min-height: 100%;
}svg {
    width: 30px;
    height: 30px;
}a {
    text-decoration: none;
    color: inherit;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.course_features {
    display: grid;
    position: relative;
    background: rgb(202,158,166);
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    overflow: hidden;
}.course_features .program_track {
    width: 50%;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    overflow: hidden;
    top: 0;
    height: 100%;
    right: 0;
    position: absolute;
}.course_features .skill_explorer {
    flex-direction: column;
    animation: verticalScroll 25s ease-in-out infinite alternate;
    width: 100%;
    height: 400%;
    display: flex;
}.course_features .program_track:hover .skill_explorer {
    animation-play-state: paused;
}.course_features .class_route {
    transform: scale(1.1);
    position: relative;
    width: 100%;
    height: 25%;
    transition: transform 0.5s ease;
}.course_features .class_route::after {
    inset: 0;
    content: "";
    z-index: 1;
    background: linear-gradient(to right, #000000 0%, transparent 50%);
    position: absolute;
}.course_features .class_route img {
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease;
    filter: saturate(0.8) contrast(1.2);
    width: 100%;
}.course_features .class_route:hover img {
    filter: saturate(1.2) contrast(1.3);
}@keyframes verticalScroll {
    0%, 5% {
        transform: translateY(0);
    }
    23%, 28% {
        transform: translateY(-25%);
    }
    48%, 53% {
        transform: translateY(-50%);
    }
    73%, 78% {
        transform: translateY(-75%);
    }
    95%, 100% {
        transform: translateY(-75%);
    }
}

.course_features .container {
    display: flex;
    grid-column: 1;
    height: 100%;
    position: relative;
    z-index: 5;
    align-items: center;
}.course_features .learn_sessions {
    width: 100%;
    padding-right: 10%;
    padding-left: 10%;
}.course_features .tech_skills {
    position: relative;
    border-left: 4px solid rgb(225,195,200);
    background: transparent;
    padding: 4rem 3rem;
}.course_features .tech_skills::before {
    z-index: -1;
    position: absolute;
    width: 0;
    content: "";
    height: 100%;
    top: 0;
    background: rgb(225,195,200,0.5);
    transition: width 0.6s ease;
    left: 0;
}.course_features .tech_skills:hover::before {
    width: 100%;
}.course_features .tech_skills::after {
    left: -20px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    content: "";
    background: rgb(225,195,200);
    position: absolute;
}.course_features .tech_skills h3 {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 2rem;
}.course_features .tech_skills span > * {
    transform: skewX(15deg);
    display: inline-block;
}.course_features .tech_skills p {
    margin-bottom: 2.5rem;
    font-size: 18px;
    line-height: 1.8;
    border-left: 2px solid rgb(202,158,166);
    color: #ffffff;
    padding-left: 1rem;
    position: relative;
}.course_features .tech_skills .message_query {
    font-size: 16px;
    color: #ffffff;
    z-index: 1;
    overflow: hidden;
    border: 2px solid rgb(225,195,200);
    letter-spacing: 1px;
    position: relative;
    background: transparent;
    transition: color 0.3s ease;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}.course_features .tech_skills .message_query::before {
    width: 0;
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    height: 100%;
    transition: width 0.3s ease;
    background: rgb(225,195,200);
    left: 0;
}.course_features .tech_skills .message_query:hover {
    color: #000000;
}.course_features .tech_skills .message_query:hover::before {
    width: 100%;
}

@media screen and (max-width: 1200px) {.course_features .tech_skills h3 {
    font-size: calc(47px * 0.85);
}.course_features .learn_sessions {
    padding-left: 5%;
    padding-right: 0;
}
}

@media screen and (max-width: 992px) {.course_features {
    grid-template-rows: 40vh 1fr;
    grid-template-columns: 1fr;
}.course_features .program_track {
    position: relative;
    clip-path: none;
    height: 40vh;
    width: 100%;
}.course_features .skill_explorer {
    animation: horizontalScroll 25s ease-in-out infinite alternate;
    flex-direction: row;
    height: 100%;
    width: 400%;
}.course_features .class_route {
    width: 25%;
    height: 100%;
}.course_features .class_route::after {
    background: linear-gradient(to bottom, #000000 0%, transparent 50%);
}.course_features .container {
    padding: 3rem 0;
    grid-column: auto;
    grid-row: 2;
}.course_features .learn_sessions {
    padding: 0 5%;
}
    
    @keyframes horizontalScroll {
        0%, 5% {
            transform: translateX(0);
        }
        23%, 28% {
            transform: translateX(-25%);
        }
        48%, 53% {
            transform: translateX(-50%);
        }
        73%, 78% {
            transform: translateX(-75%);
        }
        95%, 100% {
            transform: translateX(-75%);
        }
    }
}

@media screen and (max-width: 768px) {.course_features .tech_skills {
    padding: 3rem 1.5rem;
}.course_features .tech_skills h3 {
    font-size: 31px;
    margin-bottom: 1.5rem;
}.course_features .tech_skills::after {
    width: 30px;
    height: 30px;
    left: -15px;
}
}

@media screen and (max-width: 480px) {.course_features {
    grid-template-rows: 30vh 1fr;
}.course_features .program_track {
    height: 30vh;
}.course_features .skill_explorer {
    animation-duration: 20s;
    width: 300%;
}.course_features .class_route {
    width: 33.333%;
}.course_features .tech_skills {
    padding: 2rem 1rem;
    border-left-width: 3px;
}.course_features .tech_skills h3 {
    font-size: calc(31px * 0.9);
    letter-spacing: 1px;
}.course_features .tech_skills p {
    font-size: calc(18px * 0.9);
    padding-left: 0.5rem;
}.course_features .tech_skills .message_query {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: calc(16px * 0.9);
    text-align: center;
}.course_features .tech_skills::after {
    width: 20px;
    left: -10px;
    height: 20px;
}@keyframes horizontalScroll {
        0%, 5% {
            transform: translateX(0);
        }
        30%, 35% {
            transform: translateX(-33.333%);
        }
        60%, 65% {
            transform: translateX(-66.666%);
        }
        95%, 100% {
            transform: translateX(-66.666%);
        }
    }
}.training_specialist {
    position: relative;
    min-height: 700px;
    padding: 7rem 0;
    background: rgb(242,228,230);
    overflow: hidden;
}.training_specialist::before {
    left: 0;
    top: 0;
    opacity: 0.15;
    width: 100%;
    content: "";
    height: 100%;
    background-size: 50px 50px;
    position: absolute;
    animation: gridMove 20s linear infinite;
    background: 
        linear-gradient(0deg, transparent 49.5%, rgb(225,195,200,0.5) 49.5%, rgb(225,195,200,0.5) 50.5%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgb(225,195,200,0.5) 49.5%, rgb(225,195,200,0.5) 50.5%, transparent 50.5%);
}.training_specialist .container {
    z-index: 2;
    position: relative;
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 1200px;
}.training_specialist .edu_testimonials {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    height: 650px;
    position: relative;
    margin: 0 auto;
    perspective: 2000px;
}.training_specialist .img_stack {
    filter: contrast(1.1) brightness(1.05);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 18px;
    transform: translateZ(100px) rotateY(-15deg);
    height: 400px;
    right: 0;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.5);
    position: absolute;
    width: 400px;
    z-index: 3;
    top: -20px;
}.training_specialist .edu_testimonials:hover .img_stack {
    transform: translateZ(120px) rotateY(-10deg) translateX(-20px);
}.training_specialist .name {
    min-width: 300px;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 4;
    position: absolute;
    top: 100px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    transform: translateZ(70px) rotateY(5deg);
    font-weight: 700;
    left: 0;
    padding: 1.5rem 2rem;
    color: #ffffff;
    background: rgb(225,195,200);
    font-size: 30px;
}.training_specialist .edu_testimonials:hover .name {
    transform: translateZ(90px) rotateY(0deg) translateX(20px);
}.training_specialist .edu_testimonials span:not(.name) {
    font-size: 19px;
    background: #ffffff;
    border-radius: 10px;
    transform: translateZ(50px) rotateY(5deg);
    padding: 1rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    top: 190px;
    z-index: 3;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
    color: #000000;
    position: absolute;
    font-weight: 600;
    left: 40px;
}.training_specialist .edu_testimonials:hover span:not(.name) {
    transform: translateZ(70px) rotateY(0deg) translateX(30px);
}.training_specialist .job_background {
    right: 0;
    border-radius: 18px;
    font-size: 16px;
    backdrop-filter: blur(10px);
    left: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-top: 4px solid rgb(202,158,166);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    color: #000000;
    bottom: 0;
    border-bottom: 4px solid rgb(225,195,200);
    padding: 3rem;
    line-height: 1.8;
    position: absolute;
    transform: translateZ(30px);
}.training_specialist .edu_testimonials:hover .job_background {
    transform: translateZ(40px) translateY(-10px);
}.training_specialist .job_background::before {
    left: 0;
    opacity: 0.1;
    background: 
        linear-gradient(45deg, transparent 49.5%, rgb(202,158,166,0.5) 49.5%, rgb(202,158,166,0.5) 50.5%, transparent 50.5%);
    height: 100%;
    content: "";
    top: 0;
    width: 100%;
    mix-blend-mode: overlay;
    position: absolute;
    background-size: 20px 20px;
}.training_specialist .container::after {
    top: 0;
    position: absolute;
    background: 
        radial-gradient(circle at 80% 20%, rgb(225,195,200,0.5) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgb(202,158,166,0.5) 0%, transparent 50%);
    left: 0;
    filter: blur(100px);
    content: "";
    height: 100%;
    animation: colorPulse 10s ease-in-out infinite alternate;
    width: 100%;
    z-index: -1;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

@keyframes colorPulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.3;
    }
}

@media (max-width: 992px) {.training_specialist .edu_testimonials {
    padding: 20px 0;
    flex-direction: column;
    height: auto;
}.training_specialist .img_stack {
    transform: none;
    position: relative;
    top: auto;
    height: 300px;
    right: auto;
    width: 300px;
    border-radius: 20px;
    margin: 0 auto 30px;
}.training_specialist .edu_testimonials:hover .img_stack {
    transform: translateY(-10px);
}.training_specialist .name {
    transform: none;
    text-align: center;
    width: 90%;
    position: relative;
    top: auto;
    margin: 0 auto 30px;
    left: auto;
}.training_specialist .edu_testimonials:hover .name {
    transform: translateY(-5px);
}.training_specialist .edu_testimonials span:not(.name) {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 45px;
    text-align: center;
    display: block;
    top: auto;
    width: max-content;
}.training_specialist .edu_testimonials:hover span:not(.name) {
    transform: translateY(-5px);
}.training_specialist .job_background {
    bottom: auto;
    position: relative;
    transform: none;
}.training_specialist .edu_testimonials:hover .job_background {
    transform: translateY(-5px);
}
}

@media (max-width: 576px) {.training_specialist {
    padding: 4rem 0;
}.training_specialist .img_stack {
    width: 220px;
    margin-bottom: 35px;
    height: 220px;
}.training_specialist .name {
    min-width: auto;
    margin-bottom: 25px;
    width: 100%;
    font-size: 19px;
    padding: 1rem 1.5rem;
}.training_specialist .edu_testimonials span:not(.name) {
    margin-bottom: 35px;
    padding: 0.5rem 1rem;
    font-size: 16px;
}.training_specialist .job_background {
    padding: 2rem 1.5rem;
    font-size: calc(16px * 0.9);
}}.contact_box {
    background: linear-gradient(160deg, rgb(242,228,230) 0%, rgb(225,195,200,0.5) 100%);
    overflow: hidden;
    padding: 90px 0;
    position: relative;
}.contact_box::before {
    opacity: 0.03;
    width: 100%;
    left: 0;
    background: repeating-linear-gradient(
        -45deg,
        rgb(225,195,200,0.5),
        rgb(225,195,200,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
}.contact_box .container {
    z-index: 1;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
}.contact_box h2 {
    color: #000000;
    font-size: 43px;
    text-align: center;
    font-weight: 700;
    font-family: Arial, sans-serif;
    position: relative;
    margin-bottom: 50px;
}.contact_box .message_feedback {
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    margin: 0 auto;
    flex-direction: column;
    border-radius: 26px;
    display: flex;
    max-width: 800px;
}.contact_box .img_stack {
    position: relative;
    width: 100%;
    height: 200px;
}.contact_box .help_inquiry {
    position: relative;
    width: 100%;
    padding: 50px;
}.contact_box form {
    width: 100%;
}.contact_box form h3 {
    position: relative;
    margin-bottom: 30px;
    font-size: 21px;
    color: #000000;
    font-weight: 700;
    display: inline-block;
    font-family: Arial, sans-serif;
}.contact_box form h3::after {
    position: absolute;
    bottom: -10px;
    content: "";
    width: 100%;
    background: rgb(225,195,200);
    height: 3px;
    left: 0;
    border-radius: 1.5px;
}.contact_box form input[type="text"] {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    font-size: 15px;
    color: #000000;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px 20px;
    font-family: Arial, sans-serif;
    background: rgb(242,228,230);
}.contact_box form input[type="text"]:focus {
    border-color: rgb(225,195,200);
    outline: none;
}.contact_box form input[type="text"]::placeholder {
    color: rgba(0, 0, 0, 0.35);
}.contact_box .reach_card {
    align-items: flex-start;
    display: flex;
    margin-bottom: 30px;
}.contact_box .reach_card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.contact_box .reach_card label {
    line-height: 1.6;
    color: #000000;
    cursor: pointer;
    padding-left: 35px;
    font-size: 16px;
    position: relative;
}.contact_box .reach_card label::before {
    position: absolute;
    height: 22px;
    background: rgb(242,228,230);
    top: 2px;
    border-radius: 10px;
    transition: all 0.3s ease;
    left: 0;
    content: "";
    width: 22px;
}.contact_box .reach_card input[type="checkbox"]:checked + label::before {
    background: rgb(225,195,200);
}.contact_box .reach_card input[type="checkbox"]:checked + label::after {
    border-bottom: 2px solid #ffffff;
    position: absolute;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    left: 8px;
    content: "";
    width: 6px;
    height: 12px;
    top: 5px;
}.contact_box .reach_card label a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: rgb(225,195,200);
}.contact_box .reach_card label a:hover {
    text-decoration: underline;
}.contact_box form .message_query {
    background: rgb(225,195,200);
    overflow: hidden;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    color: #ffffff;
    position: relative;
    font-size: 14px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    border: none;
    padding: 16px 20px;
    transition: all 0.3s ease;
    text-align: center;
}.contact_box form .message_query:hover {
    background: rgb(202,158,166);
}.contact_box svg {
    width: 20px;
    fill: rgb(225,195,200);
    height: 20px;
}.contact_box svg path {
    transition: fill 0.3s ease;
    fill: rgb(225,195,200);
}

@media screen and (min-width: 768px) {.contact_box .message_feedback {
    flex-direction: row;
    max-width: 1000px;
}.contact_box .img_stack {
    width: 40%;
    height: auto;
    min-height: 400px;
}.contact_box .help_inquiry {
    width: 60%;
}
}

@media screen and (min-width: 992px) {.contact_box .img_stack {
    width: 50%;
}.contact_box .help_inquiry {
    padding: 60px;
    width: 50%;
}
}

@media screen and (min-width: 1200px) {.contact_box .message_feedback {
    max-width: 1100px;
}.contact_box .img_stack {
    min-height: 500px;
}
}

@media screen and (max-width: 576px) {.contact_box {
    padding: 60px 0;
}.contact_box h2 {
    font-size: calc(43px * 0.7);
    margin-bottom: 30px;
}.contact_box .help_inquiry {
    padding: 30px 20px;
}.contact_box form h3 {
    font-size: calc(21px * 0.9);
}}.support {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: rgb(242,228,230);
}.support::before {
    top: 0;
    left: 0;
    width: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgb(225,195,200,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgb(202,158,166,0.5) 0%, transparent 40%);
    content: "";
    z-index: 0;
    position: absolute;
    height: 100%;
}.support .container {
    padding: 0 1.5rem;
    max-width: 1200px;
    z-index: 1;
    margin: 0 auto;
    position: relative;
}.support .edu_help {
    flex-wrap: wrap;
    display: flex;
    position: relative;
}.support .talk_team {
    position: relative;
    z-index: 1;
}.support .talk_team:nth-child(1) {
    flex-direction: column;
    padding: 3rem;
    background: linear-gradient(225deg, rgb(225,195,200) 0%, #000000 100%);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    display: flex;
    width: 35%;
    justify-content: center;
    border-radius: 12px 0 0 12px;
}.support .talk_team:nth-child(2) {
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    width: 30%;
    z-index: 0;
    position: relative;
}.support .talk_team:nth-child(3) {
    flex-direction: column;
    padding: 3rem;
    background: linear-gradient(225deg, rgb(202,158,166,0.5) 0%, #000000 100%);
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 12px 12px 0;
    width: 35%;
    display: flex;
    justify-content: center;
}.support .talk_team h2 {
    position: relative;
    padding-left: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-size: 32px;
}.support .talk_team h2::before {
    content: "";
    top: 0;
    width: 4px;
    left: 0;
    background: rgb(202,158,166);
    border-radius: 2px;
    height: 100%;
    position: absolute;
}.support .edu_askus {
    font-size: calc(17px * 1.2);
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}.support .send_info {
    line-height: 1.7;
    opacity: 0.9;
    color: #ffffff;
    margin-bottom: 2rem;
}.support .talk_team p {
    align-items: center;
    color: #ffffff;
    gap: 1rem;
    margin-bottom: 1rem;
    display: flex;
}.support .talk_team p span {
    font-weight: 600;
}.support .contact_panel {
    position: relative;
    margin-top: 2rem;
}.support .contact_panel::before {
    left: 0;
    width: 100%;
    content: "";
    position: absolute;
    background: linear-gradient(90deg, rgb(202,158,166), transparent);
    top: 0;
    height: 1px;
}.support .contact_panel h3 {
    font-weight: 600;
    margin: 1rem 0;
    color: #ffffff;
    font-size: 21px;
}.support .course_ask {
    flex-direction: column;
    gap: 0.5rem;
    display: flex;
}.support .course_ask span {
    align-items: center;
    padding: 0.5rem 0;
    color: #ffffff;
    position: relative;
    padding-left: 1.5rem;
    display: flex;
    font-size: calc(17px * 0.9);
    transition: all 0.3s ease;
}.support .course_ask span::before {
    transform: translateY(-50%);
    border-radius: 50%;
    content: "";
    left: 0;
    width: 8px;
    height: 8px;
    position: absolute;
    background: rgb(202,158,166);
    top: 50%;
}.support .course_ask span:hover {
    transform: translateX(5px);
}.support .talk_team .img_stack {
    min-height: 400px;
    position: relative;
    filter: saturate(0.8) contrast(1.1);
    height: 100%;
    transition: all 0.5s ease;
}.support .talk_team .img_stack:hover {
    filter: saturate(1) contrast(1);
}.support .talk_team .img_stack::before {
    background: linear-gradient(135deg, rgb(225,195,200,0.5) 0%, transparent 50%);
    content: '';
    top: 0;
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    height: 100%;
}.support .help_question {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 2rem;
}.support .help_question a {
    padding: 1.25rem;
    display: flex;
    gap: 1.5rem;
    overflow: hidden;
    border-radius: 10px;
    align-items: center;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-right: 3px solid rgb(202,158,166);
    transition: all 0.3s ease;
}.support .help_question a::before {
    z-index: -1;
    width: 0;
    left: 0;
    background: rgb(202,158,166,0.5);
    content: '';
    top: 0;
    transition: all 0.3s ease;
    position: absolute;
    height: 100%;
}.support .help_question a:hover::before {
    width: 100%;
}.support .help_question a:hover {
    transform: translateX(-5px);
}.support .help_question a span {
    display: flex;
    font-size: calc(17px * 0.9);
    flex: 0 0 auto;
    align-items: center;
    color: #ffffff;
    opacity: 0.7;
    gap: 0.5rem;
}.support .help_question a p {
    font-size: 17px;
    margin: 0;
    flex: 1;
    color: #ffffff;
    font-weight: 600;
    text-align: right;
}.support svg {
    height: 20px;
    fill: none;
    width: 20px;
}.support svg path {
    fill: rgb(202,158,166);
    transition: fill 0.3s ease;
}.support .help_question a:hover svg path {
    fill: #ffffff;
}

@media (max-width: 1200px) {.support .talk_team:nth-child(1) {
    width: 40%;
}.support .talk_team:nth-child(2) {
    width: 25%;
}.support .talk_team:nth-child(3) {
    width: 35%;
}
}

@media (max-width: 992px) {.support .edu_help {
    flex-direction: column;
}.support .talk_team:nth-child(1),
    .support .talk_team:nth-child(2),
    .support .talk_team:nth-child(3) {
    clip-path: none;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
}.support .talk_team .img_stack {
    min-height: 300px;
}.support .help_question {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1rem;
}.support .help_question a {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 250px;
}
}

@media (max-width: 768px) {.support {
    padding: 4rem 0;
}.support .talk_team:nth-child(1),
    .support .talk_team:nth-child(3) {
    padding: 2rem;
}.support .help_question {
    flex-direction: column;
}.support .help_question a {
    width: 100%;
}.support .talk_team .img_stack {
    min-height: 250px;
}.support .talk_team h2 {
    margin-bottom: 1.5rem;
    font-size: calc(32px * 0.9);
}
}

@media (max-width: 480px) {.support {
    padding: 3rem 0;
}.support .talk_team:nth-child(1),
    .support .talk_team:nth-child(3) {
    padding: 1.5rem;
}.support .talk_team .img_stack {
    min-height: 200px;
}.support .contact_panel {
    margin-top: 1.5rem;
}.support .contact_panel h3 {
    font-size: calc(21px * 0.9);
}.support .help_question a {
    padding: 1rem;
}}.welcome_section {
    background: linear-gradient(135deg, rgb(242,228,230) 0%, #ffffff 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}.welcome_section::before {
    left: 0;
    opacity: 0.5;
    width: 100%;
    position: absolute;
    height: 100%;
    content: "";
    top: 0;
}.welcome_section > div {
    gap: 50px;
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}.welcome_section h1.edu_entry {
    font-size: 45px;
    position: relative;
    display: inline-block;
    color: #000000;
    margin: 0 0 30px;
    font-weight: 700;
    line-height: 1.2;
}.welcome_section h1.edu_entry::after {
    bottom: -12px;
    transform-origin: left;
    width: 80px;
    transition: transform 0.6s ease;
    transform: scaleX(1);
    content: "";
    position: absolute;
    left: 0;
    height: 4px;
    background: rgb(225,195,200);
}.welcome_section h1.edu_entry:hover::after {
    transform: scaleX(1.5);
}.welcome_section p {
    color: #000000;
    max-width: 90%;
    border-left: 1px solid rgb(202,158,166,0.5);
    font-size: calc(16px * 1.2);
    line-height: 1.6;
    margin-bottom: 40px;
    padding-left: 20px;
    position: relative;
}.learn_expressfast {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(3deg);
    position: relative;
    transition: transform 0.5s ease;
    width: 100%;
}.learn_expressfast:hover {
    transform: perspective(1000px) rotateY(0);
}.welcome_section .learn_classes {
    position: relative;
    padding: 30px;
    align-items: center;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: 350px;
}.welcome_section .learn_classes::before {
    opacity: 0.7;
    width: 100%;
    transition: opacity 0.4s ease;
    height: 100%;
    content: "";
    background: linear-gradient(to right, 
    rgba(0, 0, 0, 0.5), 
    #000000
  );
    top: 0;
    position: absolute;
    left: 0;
}.welcome_section .learn_classes:hover::before {
    opacity: 0.5;
}.welcome_section .learn_classes span {
    border-left: 5px solid rgb(225,195,200);
    background-color: rgb(255, 255, 255, 0.5);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 90%;
    z-index: 2;
    padding: 25px;
    backdrop-filter: blur(3px);
}.welcome_section .learn_classes:hover span {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}.welcome_section .learn_classes h3 {
    color: #000000;
    font-size: calc(23px * 1.05);
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: 600;
}

@media (min-width: 768px) {.welcome_section > div {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}.welcome_section h1.edu_entry {
    max-width: 90%;
    font-size: calc(45px * 1.2);
}.welcome_section .learn_classes {
    height: 400px;
}.welcome_section p {
    padding-left: 30px;
    font-size: calc(16px * 1.3);
}
}

@media (max-width: 767px) {.welcome_section {
    padding: 80px 0 60px;
}.welcome_section h1.edu_entry {
    font-size: calc(45px * 0.9);
}.welcome_section .learn_classes span {
    padding: 15px;
}.welcome_section .learn_classes h3 {
    font-size: 23px;
}
}

@media (max-width: 480px) {.welcome_section {
    padding: 60px 0 40px;
}.welcome_section > div {
    gap: 30px;
}.welcome_section h1.edu_entry {
    font-size: calc(45px * 0.8);
    margin-bottom: 20px;
}.welcome_section p {
    padding-left: 15px;
    margin-bottom: 25px;
}.welcome_section .learn_classes {
    height: 300px;
}.welcome_section .learn_classes span {
    padding: 12px;
}.welcome_section .learn_classes h3 {
    font-size: calc(23px * 0.9);
}}.meet_us {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}.meet_us::before {
    background: #000000;
    left: 0;
    top: 0;
    width: 100%;
    opacity: 0.85;
    content: "";
    height: 100%;
    position: absolute;
    z-index: 1;
}.meet_us::after {
    border-radius: 50%;
    position: absolute;
    filter: blur(40px);
    bottom: -50px;
    right: -50px;
    z-index: 2;
    content: "";
    animation: float 10s ease-in-out infinite;
    height: 250px;
    opacity: 0.15;
    background: rgb(225,195,200);
    width: 250px;
}.meet_us .container {
    transform: perspective(1000px) rotateX(2deg);
    z-index: 3;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
    border-radius: 10px;
    max-width: 1200px;
    backdrop-filter: blur(10px);
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 auto;
}.meet_us h2 {
    font-weight: 700;
    color: #ffffff;
    font-size: 37px;
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
}.meet_us h2::after {
    border-radius: 10px;
    background: rgb(225,195,200);
    content: "";
    transition: width 0.5s ease;
    width: 60px;
    bottom: -10px;
    left: 0;
    position: absolute;
    box-shadow: 0 0 15px rgb(225,195,200);
    height: 4px;
}.meet_us:hover h2::after {
    width: 100%;
}.meet_us .statement_holder {
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 10px;
    display: flex;
    position: relative;
    box-shadow: 
        inset 2px 2px 5px rgba(255, 255, 255, 0.05),
        inset -2px -2px 5px rgba(0, 0, 0, 0.25);
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.03);
}.meet_us .statement_holder:hover {
    transform: translateY(-10px);
}.meet_us .statement_holder > div {
    padding: 30px;
    width: 100%;
}.meet_us .statement_holder p {
    background: linear-gradient(135deg, #ffffff, rgb(202,158,166));
    -webkit-background-clip: text !important;
    color: #ffffff;
    display: inline-block;
    font-size: calc(17px * 1.4);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    -webkit-text-fill-color: transparent;
}.meet_us .statement_holder p::before {
    left: -10px;
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgb(225,195,200);
    content: "";
    border-radius: 10px;
}.meet_us .statement_holder div div {
    line-height: 1.8;
    box-shadow: 
        inset 5px 5px 10px rgba(0, 0, 0, 0.2),
        inset -5px -5px 10px rgba(255, 255, 255, 0.05);
    color: rgb(255, 255, 255, 0.5);
    font-size: 17px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    text-align: justify;
    position: relative;
    border-radius: 10px;
}.meet_us .statement_holder div div::first-letter {
    margin-right: 10px;
    font-size: calc(17px * 2.5);
    color: rgb(225,195,200);
    font-weight: 700;
    float: left;
    line-height: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

@media (min-width: 768px) {.meet_us {
    padding: 150px 0;
}.meet_us .container {
    transform: perspective(1000px) rotateX(2deg);
    padding: 60px;
}.meet_us h2 {
    font-size: calc(37px * 1.2);
    margin-bottom: 50px;
}.meet_us .statement_holder {
    box-shadow: 
            inset 3px 3px 7px rgba(255, 255, 255, 0.05),
            inset -3px -3px 7px rgba(0, 0, 0, 0.25),
            10px 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
}.meet_us .statement_holder > div {
    padding: 40px;
}.meet_us .statement_holder p {
    font-size: calc(17px * 1.8);
    margin-bottom: 30px;
}.meet_us .statement_holder div div {
    padding: 30px;
    column-count: 2;
    column-gap: 40px;
    column-rule: 1px solid rgba(255, 255, 255, 0.1);
}
}

@media (max-width: 767px) {.meet_us {
    padding: 80px 0;
}.meet_us .container {
    transform: perspective(1000px) rotateX(1deg);
    padding: 30px;
}.meet_us h2 {
    font-size: 37px;
    margin-bottom: 30px;
}.meet_us .statement_holder > div {
    padding: 20px;
}.meet_us .statement_holder p {
    margin-bottom: 15px;
    font-size: calc(17px * 1.2);
}.meet_us .statement_holder div div {
    padding: 15px;
    font-size: calc(17px * 0.9);
}
}

@media (max-width: 480px) {.meet_us {
    padding: 60px 0;
}.meet_us .container {
    padding: 20px;
    transform: none;
}.meet_us h2 {
    margin-bottom: 20px;
    font-size: calc(37px * 0.9);
}.meet_us .statement_holder > div {
    padding: 15px;
}.meet_us .statement_holder p {
    font-size: 17px;
    margin-bottom: 10px;
}.meet_us .statement_holder div div {
    font-size: calc(17px * 0.85);
    padding: 10px;
}}.modalDataProtection {
    bottom: 0;
    width: 100%;
    animation: slideIn 0.5s ease-in-out;
    background: rgb(202,158,166);
    position: fixed;
    z-index: 90;
    box-shadow: 0 -10px 30px rgb(225,195,200,0.5);
    border-top: 2px solid rgb(225,195,200);
}@keyframes slideIn {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}
.track_bar {
    display: flex;
    box-shadow: 0 0 20px rgb(225,195,200,0.5);
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 5%;
    background: linear-gradient(135deg, rgb(202,158,166) 0%, rgba(0, 0, 0, 0.5) 100%);
}.cookie_compl {
    padding: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgb(225,195,200);
    background: rgba(0, 0, 0, 0.5);
    border-radius: 19px;
    flex-shrink: 0;
    margin-right: 20px;
}.cookie_compl svg, .cookie_compl svg path {
    fill: rgb(225,195,200);
    transition: transform 0.3s ease;
    width: 60px;
    height: 60px;
}.cookie_compl:hover svg {
    transform: rotate(20deg);
}.cookie_gate {
    flex: 1;
    color: #ffffff;
    min-width: 300px;
}.cookie_gate h5 {
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgb(225,195,200);
    font-size: 24px;
    color: rgb(225,195,200);
    font-weight: 700;
}.cookie_gate p {
    font-size: 17px;
    color: #ffffff;
    text-shadow: 0 0 5px rgb(225,195,200,0.5);
    margin-bottom: 0;
}.cookie_check {
    box-shadow: 0 0 10px rgb(225,195,200,0.5);
    margin-left: 10px;
    font-size: 19px;
    color: #000000;
    border-radius: 10px;
    cursor: pointer;
    background: rgb(225,195,200);
    text-decoration: none;
    padding: 12px 25px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}.cookie_check:hover {
    box-shadow: 0 0 20px rgb(202,158,166,0.5);
    background: rgb(202,158,166);
}.modalDataProtection p a {
    transition: color 0.3s ease;
    color: rgb(225,195,200);
    text-decoration: underline;
}.modalDataProtection p a:hover {
    color: rgb(202,158,166);
}#popupCookieConsent {
    display: none;
}#popupCookieConsent:checked ~ .modalDataProtection {
    visibility: hidden;
    opacity: 0;
}
@media only screen and (max-width: 1200px) {.modalDataProtection {
    padding: 20px;
}.track_bar {
    padding: 20px 2%;
}
}
@media only screen and (max-width: 800px) {.cookie_compl {
    display: none;
}.track_bar {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}.cookie_gate {
    margin-bottom: 20px;
    text-align: center;
}.modalDataProtection h5, .modalDataProtection p {
    text-align: center;
}.cookie_check {
    margin-top: 10px;
    margin-left: 0;
    text-align: center;
    width: 100%;
}}
header {
    z-index: 100;
    background: linear-gradient(to right, #ffffff, rgb(242,228,230));
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    width: 100%;
    position: relative;
    padding: 0;
}header::before {
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    position: absolute;
    content: '';
    top: 0;
    width: 100%;
    left: 0;
}header::after {
    z-index: 1;
    height: 100%;
    background: linear-gradient(to bottom, rgb(225,195,200), rgb(202,158,166));
    left: 0;
    width: 5px;
    top: 0;
    content: '';
    position: absolute;
}header .container {
    max-width: 100%;
    padding: 0;
    z-index: 2;
    position: relative;
    margin: 0;
    width: 100%;
}header .nav_sitebar {
    margin-left: 5px;
    justify-content: space-between;
    padding: 0.9rem 3%;
    display: flex;
    align-items: center;
}header .top_start {
    transition: all 0.3s ease;
    display: flex;
    background: rgba(255, 255, 255, 0.4);
    align-items: center;
    padding: 0.5rem;
    position: relative;
    border-radius: 10px;
    text-decoration: none;
}header .top_start:hover {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}header .top_start svg {
    transition: all 0.3s ease;
    height: auto;
    width: 140px;
}header .top_page {
    position: relative;
    border-radius: 10px;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.3);
    gap: 0.4rem;
    display: flex;
    align-items: center;
}header .top_page::before {
    z-index: -1;
    right: -2px;
    opacity: 0.5;
    border-radius: calc(10px + 2px);
    top: -2px;
    position: absolute;
    background: linear-gradient(135deg, rgb(225,195,200,0.5), rgb(202,158,166,0.5));
    left: -2px;
    bottom: -2px;
    content: '';
}header .header_mainbar {
    overflow: hidden;
    border-radius: 10px;
    font-weight: 400;
    z-index: 1;
    font-size: 19px;
    font-family: Arial, sans-serif;
    color: #000000;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    padding: 0.4rem 0.7rem;
    transition: all 0.3s ease;
    position: relative;
    background: #ffffff;
}header .header_mainbar::before {
    position: absolute;
    z-index: -1;
    height: 100%;
    content: '';
    opacity: 0;
    transition: opacity 0.3s ease;
    background: linear-gradient(45deg, rgb(225,195,200,0.5), rgb(202,158,166,0.5));
    top: 0;
    width: 100%;
    left: 0;
}header .header_mainbar:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}header .header_mainbar:hover::before {
    opacity: 1;
}

@media (max-width: 991px) {header .nav_sitebar {
    padding: 0.8rem 2.5%;
}header .top_start svg {
    width: 130px;
}header .top_page {
    padding: 0.35rem 0.5rem;
    gap: 0.3rem;
}header .header_mainbar {
    padding: 0.35rem 0.6rem;
    font-size: calc(19px - 1px);
}
}

@media (max-width: 767px) {header::after {
    width: 3px;
}header .nav_sitebar {
    gap: 0.7rem;
    padding: 0.8rem 2%;
    margin-left: 3px;
    flex-direction: column;
    align-items: flex-start;
}header .top_start {
    padding: 0.4rem;
}header .top_start svg {
    width: 120px;
}header .top_page {
    overflow-x: auto;
    width: 98%;
    justify-content: flex-start;
    padding: 0.4rem;
}header .top_page::-webkit-scrollbar {
    height: 2px;
}header .top_page::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(225,195,200);
}header .header_mainbar {
    padding: 0.3rem 0.5rem;
    white-space: nowrap;
    font-size: calc(19px - 1px);
}
}

@media (max-width: 480px) {header::after {
    width: 2px;
}header .nav_sitebar {
    margin-left: 2px;
    padding: 0.7rem 1.5%;
}header .top_start svg {
    width: 110px;
}header .top_page {
    padding: 0.3rem;
}header .header_mainbar {
    font-size: calc(19px - 2px);
    padding: 0.3rem 0.4rem;
}}.access_now {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(120deg, rgb(202,158,166,0.5) 0%, #ffffff 100%);
}.access_now::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 200%;
    top: -50%;
    opacity: 0.1;
    transform: rotate(-15deg);
    background: rgb(225,195,200,0.5);
    right: -20%;
    z-index: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}.access_now::after {
    width: 60%;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    left: -10%;
    background: rgb(202,158,166,0.5);
    bottom: -30%;
    opacity: 0.1;
    height: 150%;
    z-index: 1;
    position: absolute;
    transform: rotate(15deg);
    content: '';
}.access_now .learn_sessions {
    flex-direction: column;
    position: relative;
    padding: 0;
    align-items: center;
    display: flex;
    z-index: 10;
}.access_now .container p {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    position: relative;
    padding: 40px 60px;
    font-weight: 700;
    font-size: 37px;
    z-index: 5;
    text-align: center;
    margin: 0 0 60px 0;
    line-height: 1.4;
    color: #000000;
    background: #ffffff;
}.access_now .message_query {
    background: linear-gradient(90deg, rgb(225,195,200), rgb(202,158,166));
    padding: 20px 50px;
    transition: all 0.4s ease;
    z-index: 5;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    font-weight: 600;
    border-radius: 30px;
    font-size: 15px;
    position: relative;
}.access_now .message_query::before {
    transition: opacity 0.4s ease;
    left: 0;
    background: linear-gradient(90deg, rgb(202,158,166), rgb(225,195,200));
    top: 0;
    opacity: 0;
    z-index: -1;
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
}.access_now .message_query:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px) scale(1.05);
}.access_now .message_query:hover::before {
    opacity: 1;
}.access_now .container p::before {
    opacity: 0.4;
    height: 120%;
    animation: morph 8s ease-in-out infinite;
    left: -20%;
    content: '';
    position: absolute;
    background: #ffffff;
    top: -10%;
    z-index: -1;
    border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    width: 140%;
}.access_now .message_query::after {
    animation: shine 6s infinite;
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-15deg);
    width: 30px;
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 40% 60% / 20% 40% 60% 80%;
    }
    50% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
}

@keyframes shine {
    0% {
        left: -100px;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

@media (max-width: 991px) {.access_now {
    padding: 90px 0;
}.access_now .container p {
    margin-bottom: 50px;
    font-size: calc(19px * 1.2);
    padding: 35px 50px;
}.access_now .message_query {
    padding: 18px 40px;
}
}

@media (max-width: 767px) {.access_now {
    padding: 70px 0;
}.access_now .container p {
    padding: 30px 40px;
    font-size: 19px;
    margin-bottom: 40px;
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
}.access_now .message_query {
    padding: 15px 35px;
}.access_now .container p::before {
    animation: none;
}
}

@media (max-width: 480px) {.access_now {
    padding: 50px 0;
}.access_now .container p {
    margin-bottom: 30px;
    font-size: calc(12px * 1.2);
    border-radius: 30px;
    padding: 25px 30px;
}.access_now .message_query {
    padding: 12px 30px;
    font-size: calc(15px * 0.9);
}}.plan_list {
    padding: 4rem 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}.plan_list::before {
    z-index: 1;
    bottom: 0;
    left: 0;
    position: absolute;
    content: "";
    background: linear-gradient(135deg, rgba(34, 30, 80, 0.95), rgba(19, 31, 60, 0.85));
    right: 0;
    top: 0;
}.plan_list .container {
    z-index: 2;
    margin: 0 auto;
    padding: 0 1.5rem;
    max-width: 1200px;
    position: relative;
}.plan_list .price_panel {
    position: relative;
}.plan_list h2 {
    transform: translateY(10px);
    font-weight: 700;
    color: transparent;
    -webkit-background-clip: text !important;
    margin-bottom: 1.5rem;
    text-align: center;
    background-clip: text !important;
    background: linear-gradient(90deg, rgb(225,195,200), rgb(202,158,166));
    animation: fadeIn 0.8s ease-out forwards;
    font-size: 33px;
}.plan_list .cost_rates {
    margin: 0 auto 3rem;
    transform: translateY(15px);
    position: relative;
    max-width: 800px;
    line-height: 1.6;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    text-align: center;
    color: #ffffff;
    font-size: calc(13px * 1.1);
    padding: 0 1rem;
    opacity: 0;
}.plan_list .pricing_levels {
    padding: 0;
    list-style: none;
    margin: 0;
    perspective: 1000px;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    display: grid;
}.plan_list .pricing_levels li {
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}.plan_list .pricing_levels li:nth-child(1) {
    animation-delay: 0.2s;
}.plan_list .pricing_levels li:nth-child(2) {
    animation-delay: 0.3s;
}.plan_list .pricing_levels li:nth-child(3) {
    animation-delay: 0.4s;
}.plan_list .pricing_levels li:nth-child(4) {
    animation-delay: 0.5s;
}.plan_list .pro_fees {
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    text-decoration: none;
}.plan_list .pro_fees:hover {
    transform: translateY(-12px) scale(1.02);
}.plan_list .cost_options {
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    position: relative;
    display: flex;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
}.plan_list .cost_options::before {
    height: 5px;
    background: linear-gradient(90deg, rgb(225,195,200), rgb(202,158,166));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    content: "";
    position: absolute;
    left: 0;
    transform-origin: left;
    top: 0;
    transform: scaleX(0);
}.plan_list .pro_fees:hover .cost_options::before {
    transform: scaleX(1);
}.plan_list .study_offers {
    padding: 2.5rem 2rem;
    flex-direction: column;
    display: flex;
    height: 100%;
    color: #ffffff;
}.plan_list .study_offers h4 {
    padding-bottom: 0.75rem;
    position: relative;
    margin-top: 0;
    font-size: calc(23px * 1.2);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}.plan_list .study_offers h4::after {
    position: absolute;
    bottom: 0;
    content: "";
    background: rgb(202,158,166);
    left: 0;
    width: 50px;
    height: 2px;
}.plan_list .study_offers p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    word-break: break-word;
    font-size: 13px;
    word-wrap: break-word;
    line-height: 1.6;
    overflow-wrap: break-word;
    flex-grow: 1;
    hyphens: auto;
}.plan_list .learn_packs {
    font-weight: 700;
    font-size: calc(13px * 1.3);
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(120deg, rgb(225,195,200), rgb(202,158,166));
    margin-top: auto;
    align-self: flex-start;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
}.plan_list .pro_fees:hover .learn_packs {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

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

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


@media (max-width: 1200px) {.plan_list .pricing_levels {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}.plan_list .study_offers {
    padding: 2rem 1.5rem;
}
}

@media (max-width: 991px) {.plan_list {
    padding: 3.5rem 0;
}.plan_list h2 {
    font-size: calc(33px * 0.9);
}.plan_list .cost_rates {
    margin-bottom: 2.5rem;
    font-size: 13px;
}
}

@media (max-width: 768px) {.plan_list {
    padding: 3rem 0;
}.plan_list h2 {
    font-size: calc(33px * 0.85);
}.plan_list .pricing_levels {
    margin: 0 auto;
    grid-template-columns: 1fr;
    max-width: 480px;
}.plan_list .study_offers h4 {
    font-size: 23px;
}.plan_list .learn_packs {
    padding: 0.6rem 1.2rem;
    font-size: calc(13px * 1.2);
}
}

@media (max-width: 480px) {.plan_list {
    padding: 2.5rem 0;
}.plan_list h2 {
    font-size: calc(33px * 0.8);
}.plan_list .cost_rates {
    margin-bottom: 2rem;
    font-size: calc(13px * 0.95);
}.plan_list .study_offers {
    padding: 1.75rem 1.25rem;
}.plan_list .study_offers p {
    margin-bottom: 1.5rem;
    font-size: calc(13px * 0.95);
}}.gratSpot {
    overflow: hidden;
    background: linear-gradient(135deg, rgb(225,195,200,0.5), rgb(242,228,230), rgb(202,158,166,0.5));
    position: relative;
    padding: 120px 0;
    perspective: 1000px;
}.gratSpot::before {
    left: 0;
    top: 0;
    right: 0;
    content: "";
    bottom: 0;
    opacity: 0.7;
    z-index: 0;
    animation: pulse 10s infinite alternate ease-in-out;
    background: 
        radial-gradient(circle at 20% 30%, rgb(225,195,200,0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgb(202,158,166,0.5) 0%, transparent 60%);
    position: absolute;
}.gratSpot::after {
    content: "";
    height: 200%;
    animation: patternMove 60s linear infinite;
    transform: rotate(15deg);
    width: 200%;
    z-index: 1;
    top: -50%;
    pointer-events: none;
    position: absolute;
    left: -50%;
}.gratSpot .container {
    max-width: 1200px;
    transform-style: preserve-3d;
    margin: 0 auto;
    z-index: 2;
    padding: 0 20px;
    position: relative;
}.gratSpot h2 {
    margin-bottom: 40px;
    position: relative;
    line-height: 1.3;
    border-left: 4px solid rgb(225,195,200);
    font-size: 36px;
    color: #000000;
    font-family: Arial, sans-serif;
    transform: translateZ(30px);
    text-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding-left: 20px;
    font-weight: 700;
    text-align: left;
    transition: transform 0.5s ease;
}.gratSpot h2::after {
    bottom: -12px;
    position: absolute;
    background: rgb(202,158,166);
    animation: lineGrow 1.2s 0.5s forwards cubic-bezier(0.17, 0.67, 0.83, 0.67);
    width: 60px;
    transform: scaleX(0);
    left: 20px;
    transform-origin: left;
    height: 3px;
    content: "";
}.gratSpot .learn_sessions {
    position: relative;
    border-radius: 13px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 
        0 15px 30px -10px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.05),
        0 30px 60px -30px rgba(rgb(225,195,200), 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: translateZ(20px) rotateX(2deg);
}.gratSpot .learn_sessions::before {
    height: 5px;
    left: 0;
    z-index: 3;
    background: linear-gradient(90deg, rgb(225,195,200), rgb(202,158,166));
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
}.gratSpot .learn_sessions:hover {
    transform: translateZ(30px) rotateX(0deg);
    box-shadow: 
        0 20px 40px -15px rgba(0,0,0,0.15),
        0 10px 20px rgba(0,0,0,0.08),
        0 40px 70px -40px rgba(rgb(225,195,200), 0.4);
}.gratSpot ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.gratSpot li {
    position: relative;
    background: #ffffff;
    transition: transform 0.3s ease;
    padding: 40px;
}.gratSpot li::before {
    background: rgb(225,195,200);
    content: "✓";
    top: -15px;
    display: flex;
    font-size: 16px;
    align-items: center;
    color: #ffffff;
    left: 40px;
    box-shadow: 0 5px 15px rgba(rgb(225,195,200), 0.3);
    border-radius: 50%;
    justify-content: center;
    position: absolute;
    width: 30px;
    height: 30px;
}.gratSpot span {
    z-index: 2;
    display: block;
    font-family: Arial, sans-serif;
    text-align: left;
    color: #000000;
    font-size: 15px;
    position: relative;
    line-height: 1.7;
}

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

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.5;
    }
}

@keyframes patternMove {
    0% {
        transform: rotate(15deg) translateY(0);
    }
    100% {
        transform: rotate(15deg) translateY(-100px);
    }
}

@media (max-width: 991px) {.gratSpot {
    padding: 80px 0;
}.gratSpot h2 {
    font-size: calc(36px * 0.9);
    padding-left: 15px;
}.gratSpot li {
    padding: 30px;
}.gratSpot li::before {
    left: 30px;
}
}

@media (max-width: 767px) {.gratSpot {
    padding: 60px 0;
}.gratSpot h2 {
    transform: translateZ(20px);
    margin-bottom: 30px;
    font-size: calc(36px * 0.8);
}.gratSpot h2::after {
    width: 40px;
}.gratSpot .learn_sessions {
    transform: translateZ(10px) rotateX(1deg);
}.gratSpot .learn_sessions:hover {
    transform: translateZ(15px) rotateX(0deg);
}.gratSpot li {
    padding: 25px 20px;
}.gratSpot li::before {
    top: -12px;
    width: 24px;
    height: 24px;
    left: 20px;
    font-size: 14px;
}.gratSpot span {
    font-size: calc(15px * 0.95);
    line-height: 1.6;
}
}

@media (max-width: 480px) {.gratSpot {
    padding: 40px 0;
}.gratSpot h2 {
    font-size: calc(36px * 0.7);
    padding-left: 12px;
    border-left: 3px solid rgb(225,195,200);
}.gratSpot .container {
    padding: 0 15px;
}.gratSpot .learn_sessions {
    transform: translateZ(5px) rotateX(0.5deg);
}.gratSpot .learn_sessions:hover {
    transform: translateZ(10px) rotateX(0deg);
}.gratSpot li {
    padding: 20px 15px;
}.gratSpot li::before {
    font-size: 12px;
    height: 20px;
    width: 20px;
    left: 15px;
}.gratSpot span {
    font-size: calc(15px * 0.9);
    line-height: 1.5;
}}.statistical_data {
    overflow: hidden;
    color: #ffffff;
    padding: 120px 0;
    position: relative;
}.statistical_data::before {
    left: 0;
    height: 100%;
    position: absolute;
    background-color: #000000;
    opacity: 0.85;
    top: 0;
    content: "";
    width: 100%;
    z-index: 1;
}.statistical_data::after {
    content: "";
    opacity: 0.1;
    left: 0;
    background: repeating-linear-gradient(
        45deg,
        rgb(225,195,200,0.5) 0,
        rgb(225,195,200,0.5) 2px,
        transparent 2px,
        transparent 8px
    );
    top: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 2;
}.statistical_data .container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
    position: relative;
    z-index: 5;
}.statistical_data .statistics_advantage {
    flex-direction: column;
    display: flex;
    position: relative;
}.statistical_data .pro_gains {
    position: absolute;
    width: 90px;
    animation: glowCircle 3s infinite alternate ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    left: 50%;
    background: linear-gradient(135deg, rgb(225,195,200) 0%, rgb(202,158,166) 100%);
    display: flex;
    transform: translateX(-50%) translateY(-50%);
    height: 90px;
    justify-content: center;
    padding: 20px;
    align-items: center;
    border: 5px solid rgba(255, 255, 255, 0.15);
    top: 0;
    z-index: 10;
    border-radius: 50%;
}@keyframes glowCircle {
    0% {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        box-shadow: 0 8px 25px rgb(225,195,200,0.5);
    }
}

.statistical_data .pro_gains svg {
    fill: #ffffff;
    height: 100%;
    width: 100%;
}.statistical_data .pro_gains svg path {
    fill: #ffffff;
}.statistical_data .expert_upgrade {
    letter-spacing: 2px;
    padding-top: 50px;
    text-align: center;
    font-size: 38px;
    position: relative;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 700;
}.statistical_data .expert_upgrade::after {
    content: "";
    width: 80px;
    transform: translateX(-50%);
    left: 50%;
    bottom: -15px;
    background: rgb(225,195,200);
    position: absolute;
    height: 3px;
}.statistical_data .statistics_upsides {
    font-size: 14px;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.85);
    margin: 30px auto;
    text-align: center;
    line-height: 1.7;
}.statistical_data .statistics_advances {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    position: relative;
}.statistical_data .statistics_advances::before {
    height: 1px;
    top: 50%;
    position: absolute;
    z-index: 1;
    width: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    content: "";
}.statistical_data .statistics_advances::after {
    position: absolute;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    top: 0;
    left: 50%;
    width: 1px;
    content: "";
}.statistical_data .boost_growth {
    position: relative;
    align-items: center;
    height: 200px;
    transition: all 0.3s ease;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    display: flex;
    text-align: center;
    padding: 30px;
    width: 50%;
}.statistical_data .boost_growth::before {
    content: "";
    left: 0;
    z-index: -1;
    opacity: 0.1;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    height: 100%;
    background: rgb(225,195,200,0.5);
    width: 0;
}.statistical_data .boost_growth:hover::before {
    width: 100%;
}.statistical_data .statistics_support {
    height: 55px;
    align-items: center;
    transition: transform 0.3s ease;
    display: flex;
    transform: translateY(0);
    margin-bottom: 20px;
    width: 55px;
    justify-content: center;
}.statistical_data .boost_growth:hover .statistics_support {
    transform: translateY(-5px);
}.statistical_data .statistics_support svg {
    height: 100%;
    width: 100%;
    fill: rgb(202,158,166);
}.statistical_data .statistics_support svg path {
    fill: rgb(202,158,166);
}.statistical_data .boost_growth span {
    line-height: 1;
    font-weight: 700;
    position: relative;
    margin-bottom: 10px;
    display: block;
    color: #ffffff;
    font-size: calc(38px * 1.2);
}.statistical_data .boost_growth span::after {
    left: 50%;
    bottom: -5px;
    width: 30px;
    height: 2px;
    transform: translateX(-50%);
    background: rgb(202,158,166);
    position: absolute;
    transition: width 0.3s ease;
    content: "";
}.statistical_data .boost_growth:hover span::after {
    width: 50px;
}.statistical_data .boost_growth p {
    margin: 0;
    line-height: 1.4;
    max-width: 200px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}.statistical_data .boost_growth:nth-child(1) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease forwards;
}.statistical_data .boost_growth:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease forwards 0.2s;
}.statistical_data .boost_growth:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 0.5s ease forwards 0.4s;
}.statistical_data .boost_growth:nth-child(4) {
    animation: fadeIn 0.5s ease forwards 0.6s;
}@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.statistical_data .statistics_advantage::before {
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseCircle 4s infinite;
    border: 1px solid rgb(225,195,200);
    opacity: 0.15;
    content: "";
    height: 200px;
    position: absolute;
    width: 200px;
}.statistical_data .statistics_advantage::after {
    top: 50%;
    border: 1px dashed rgb(202,158,166);
    content: "";
    width: 300px;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.15;
    position: absolute;
    height: 300px;
    animation: pulseCircle 4s infinite 1s;
}

@keyframes pulseCircle {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.15;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.25;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.15;
    }
}

@media screen and (max-width: 991px) {.statistical_data {
    padding: 100px 0;
}.statistical_data .statistics_upsides {
    max-width: 600px;
}.statistical_data .boost_growth {
    height: 180px;
    padding: 20px;
}.statistical_data .boost_growth span {
    font-size: 38px;
}.statistical_data .pro_gains {
    padding: 18px;
    width: 80px;
    height: 80px;
}
}

@media screen and (max-width: 767px) {.statistical_data {
    padding: 80px 0;
}.statistical_data .statistics_advantage::before,
    .statistical_data .statistics_advantage::after {
    display: none;
}.statistical_data .statistics_advances::before,
    .statistical_data .statistics_advances::after {
    display: none;
}.statistical_data .boost_growth {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 25px 15px;
    width: 100%;
    height: auto;
    border: none !important;
}.statistical_data .boost_growth:last-child {
    border-bottom: none !important;
}.statistical_data .pro_gains {
    width: 70px;
    height: 70px;
    padding: 15px;
}.statistical_data .expert_upgrade {
    font-size: calc(38px - 2px);
}.statistical_data .statistics_support {
    width: 45px;
    height: 45px;
    margin-bottom: 15px;
}.statistical_data .boost_growth span {
    font-size: calc(38px - 4px);
}.statistical_data .boost_growth p {
    font-size: calc(14px - 1px);
}
}

@media screen and (max-width: 576px) {.statistical_data {
    padding: 60px 0;
}.statistical_data .container {
    padding: 0 15px;
}.statistical_data .pro_gains {
    height: 60px;
    padding: 12px;
    width: 60px;
}.statistical_data .expert_upgrade {
    letter-spacing: 1px;
    font-size: calc(38px - 4px);
    padding-top: 40px;
}.statistical_data .expert_upgrade::after {
    width: 60px;
}.statistical_data .statistics_upsides {
    font-size: calc(14px - 1px);
    margin: 25px auto;
}.statistical_data .boost_growth {
    padding: 20px 10px;
}.statistical_data .statistics_support {
    margin-bottom: 12px;
    height: 40px;
    width: 40px;
}.statistical_data .boost_growth span {
    font-size: calc(38px - 6px);
}.statistical_data .boost_growth p {
    font-size: calc(14px - 2px);
}}header .top_plank {
    background: rgb(225,195,200);
    color:  #ffffff;
}header .top_plank .top_techpro div svg, header .top_plank .top_techpro div svg path {
    fill: #ffffff;
}header .top_plank .top_techpro div span {
    color: #ffffff;
}header .top_plank .top_techpro {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
    line-height: 21px;
    font-size: 16px;
    padding: 15px 0 10px 0;
    align-items: center;
    justify-content: flex-start;
}header .top_plank .top_techpro div {
    align-items: center;
    justify-content: flex-start;
    margin-right: 24px;
    display: flex;
}header .top_plank .top_techpro div img, header .top_plank .top_techpro div svg {
    width: 16px;
    margin-right: 8px;
    height: 16px;
}.secure_depository {
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background: linear-gradient(135deg, rgb(242,228,230) 0%, rgba(255,255,255,0.95) 100%);
    position: relative;
    padding: 5rem 2rem;
}.secure_depository::before {
    content: "";
    top: -5%;
    position: absolute;
    width: 40%;
    background: linear-gradient(225deg, rgb(225,195,200,0.5) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    transform: rotate(-15deg);
    height: 40%;
    right: -5%;
    animation: float 15s ease-in-out infinite;
    opacity: 0.15;
}.secure_depository::after {
    animation: float 18s ease-in-out infinite reverse;
    transform: rotate(10deg);
    filter: blur(30px);
    height: 35%;
    bottom: -5%;
    width: 35%;
    left: -5%;
    background: linear-gradient(45deg, rgb(202,158,166,0.5) 0%, transparent 80%);
    content: "";
    opacity: 0.15;
    position: absolute;
    z-index: 0;
}@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(-15deg); }
    50% { transform: translate(10px, 15px) rotate(-5deg); }
}

.secure_depository .container {
    z-index: 2;
    transform: perspective(1000px) rotateX(0.5deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.04), 0 5px 10px rgba(0,0,0,0.02);
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 3rem;
    margin: 0 auto;
    max-width: 1140px;
}.secure_depository .container:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
}.secure_depository h1 {
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-size: 47px;
    margin-bottom: 2rem;
    color: #000000;
    position: relative;
    display: inline-block;
    font-weight: 700;
}.secure_depository h1::after {
    background: linear-gradient(90deg, rgb(225,195,200) 0%, rgb(202,158,166) 100%);
    position: absolute;
    width: 40%;
    content: "";
    bottom: -0.5rem;
    transition: width 0.3s ease;
    left: 0;
    height: 4px;
    transform-origin: left;
}.secure_depository h2 {
    border-left: 3px solid rgb(225,195,200);
    font-size: 36px;
    padding-left: 1rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
    color: #000000;
    transition: all 0.3s ease;
}.secure_depository h2:hover {
    transform: translateX(5px);
    border-left-width: 5px;
}.secure_depository h3 {
    padding-left: 0.8rem;
    border-left: 2px solid rgb(202,158,166);
    font-size: calc(36px * 0.8);
    margin: 2rem 0 1.2rem;
    font-weight: 600;
    position: relative;
    color: #000000;
}.secure_depository h4 {
    font-size: calc(36px * 0.7);
    color: #000000;
    font-weight: 600;
    border-left: 1px solid rgb(202,158,166);
    padding-left: 0.6rem;
    position: relative;
    margin: 1.8rem 0 1rem;
}.secure_depository p {
    z-index: 1;
    font-size: 17px;
    line-height: 1.7;
    position: relative;
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
    color: #000000;
}.secure_depository p:hover {
    transform: translateX(3px);
}.secure_depository p strong {
    position: relative;
    color: rgb(225,195,200);
    font-weight: 600;
    display: inline-block;
}.secure_depository p strong::after {
    width: 100%;
    background: rgb(225,195,200,0.5);
    transition: transform 0.3s ease;
    content: "";
    transform-origin: left;
    bottom: -2px;
    transform: scaleX(0);
    left: 0;
    height: 1px;
    position: absolute;
}.secure_depository p:hover strong::after {
    transform: scaleX(1);
}.secure_depository span {
    color: #000000;
    display: block;
    position: relative;
    border-left: 1px dashed rgb(202,158,166,0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    font-size: 17px;
}.secure_depository ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0 2rem;
    position: relative;
}.secure_depository ul::before {
    width: 1px;
    background: linear-gradient(to bottom, rgb(225,195,200,0.5), transparent);
    left: 0.8rem;
    transform: scaleY(0.95);
    transform-origin: top;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
}.secure_depository li {
    position: relative;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    transition: transform 0.2s ease;
}.secure_depository li:hover {
    transform: translateX(5px);
}.secure_depository li::before {
    content: "";
    height: 8px;
    transition: all 0.2s ease;
    left: 0.5rem;
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 0 2px rgb(225,195,200,0.5);
    width: 8px;
    top: 0.6rem;
    background: rgb(225,195,200);
}.secure_depository li:hover::before {
    background: rgb(202,158,166);
    transform: scale(1.2);
}

@media (max-width: 992px) {.secure_depository {
    padding: 4rem 1.5rem;
}.secure_depository .container {
    padding: 2.5rem;
    transform: perspective(800px) rotateX(0.3deg);
}.secure_depository h1 {
    font-size: calc(47px * 0.9);
}.secure_depository h2 {
    padding-left: 0.8rem;
    font-size: calc(36px * 0.9);
}
}

@media (max-width: 768px) {.secure_depository {
    padding: 3rem 1rem;
}.secure_depository .container {
    padding: 2rem;
    transform: none;
}.secure_depository h1 {
    font-size: calc(47px * 0.8);
}.secure_depository h2 {
    font-size: calc(36px * 0.8);
    margin: 2rem 0 1rem;
}.secure_depository h3 {
    font-size: calc(36px * 0.7);
}.secure_depository h4 {
    font-size: calc(36px * 0.6);
}.secure_depository p, 
    .secure_depository span, 
    .secure_depository li {
    font-size: calc(17px * 0.95);
}.secure_depository ul {
    margin: 1.2rem 0 1.5rem;
}.secure_depository li {
    padding-left: 2rem;
}
}

@media (max-width: 576px) {.secure_depository {
    padding: 2rem 0.8rem;
}.secure_depository .container {
    padding: 1.5rem;
}.secure_depository h1 {
    font-size: calc(47px * 0.7);
    margin-bottom: 1.5rem;
}.secure_depository h1::after {
    height: 3px;
}.secure_depository h2 {
    padding-left: 0.6rem;
    font-size: calc(36px * 0.7);
    border-left-width: 2px;
}.secure_depository p, 
    .secure_depository span, 
    .secure_depository li {
    font-size: calc(17px * 0.9);
    line-height: 1.6;
}.secure_depository li {
    padding-left: 1.8rem;
}.secure_depository li::before {
    height: 6px;
    width: 6px;
}}footer {
    z-index: 1;
    perspective: 1000px;
    position: relative;
}footer::before {
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.9;
    content: "";
    position: absolute;
    background: linear-gradient(135deg, rgb(202,158,166,0.5) 0%, rgb(225,195,200,0.5) 100%);
    z-index: -2;
    top: 0;
}footer::after {
    z-index: -1;
    bottom: 0;
    position: absolute;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, transparent 0, transparent 80px, rgba(255, 255, 255, 0.03) 81px),
        radial-gradient(circle at 80% 40%, transparent 0, transparent 120px, rgba(255, 255, 255, 0.03) 121px),
        radial-gradient(circle at 40% 70%, transparent 0, transparent 100px, rgba(255, 255, 255, 0.03) 101px);
    top: 0;
    content: "";
    right: 0;
}.insta_feed {
    color: #ffffff;
    padding: 5rem 0 2.5rem;
    position: relative;
}.insta_feed::before {
    background: repeating-linear-gradient(
        90deg,
        rgb(225,195,200) 0px,
        rgb(225,195,200) 40px,
        rgb(202,158,166) 40px,
        rgb(202,158,166) 80px
    );
    top: 0;
    width: 100%;
    height: 20px;
    left: 0;
    position: absolute;
    content: "";
}.insta_feed .container {
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
    justify-content: space-between;
    display: flex;
}.insta_feed .company_holder {
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    padding: 2rem;
    transform: rotateX(5deg);
    transform-style: preserve-3d;
    position: relative;
    border-bottom: 6px solid rgb(225,195,200);
    background: rgb(225,195,200,0.5);
    flex: 1 1 380px;
    border-radius: 0;
}.insta_feed .company_holder:hover {
    transform: rotateX(0deg);
}.insta_feed .company_holder h3 {
    letter-spacing: 1px;
    margin: 0 0 1.5rem;
    position: relative;
    font-weight: 700;
    display: inline-block;
    font-size: 35px;
    color: #ffffff;
    transform: translateZ(20px);
}.insta_feed .company_holder h3::before {
    left: -10px;
    height: 30px;
    position: absolute;
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    content: "";
    width: 30px;
    top: -10px;
}.insta_feed .company_holder h3::after {
    width: 30px;
    position: absolute;
    bottom: -10px;
    height: 30px;
    right: -10px;
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    content: "";
}.insta_feed .digital_res {
    padding: 1.5rem;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transform: translateZ(10px);
    border-radius: 10px;
    font-size: 14px;
}.insta_feed .syllabus_ref {
    min-width: 400px;
    flex: 1 1 calc(100% - 480px);
}.insta_feed .nav_info {
    flex-wrap: wrap;
    gap: 3rem;
    display: flex;
}.insta_feed .top_page {
    transition: all 0.4s ease;
    flex: 1 1 calc(50% - 1.5rem);
    transform: rotateX(-5deg);
    min-width: 220px;
    transform-style: preserve-3d;
    position: relative;
}.insta_feed .top_page:hover {
    transform: rotateX(0deg);
}.insta_feed .top_page h5 {
    color: #ffffff;
    min-width: 200px;
    padding: 1rem 1.5rem;
    font-size: 18px;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    transform: translateZ(15px);
    font-weight: 600;
    display: inline-block;
    margin: 0 0 1.5rem;
    background: rgb(202,158,166,0.5);
    position: relative;
}.insta_feed .top_page h5::after {
    background: rgb(202,158,166);
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    bottom: -5px;
    height: 5px;
}.insta_feed .top_page .nav_info {
    padding: 1rem;
    border-radius: 10px;
    flex-direction: column;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    transform: translateZ(5px);
    display: flex;
}.insta_feed .top_page .nav_info a {
    transition: all 0.3s ease;
    transform: translateZ(10px);
    border-radius: 10px;
    display: block;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    text-decoration: none;
    overflow: hidden;
    padding: 0.7rem 1rem;
    color: #ffffff;
}.insta_feed .top_page .nav_info a::before {
    transition: all 0.5s ease;
    width: 100%;
    top: 0;
    content: "";
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    left: -100%;
}.insta_feed .top_page .nav_info a:hover {
    color: #ffffff;
    background: rgb(202,158,166,0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}.insta_feed .top_page .nav_info a:hover::before {
    left: 100%;
}.student_aid {
    background: rgb(202,158,166,0.5);
    margin-top: 3rem;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    padding: 2rem 0;
}.student_aid::before {
    height: 20px;
    position: absolute;
    top: -20px;
    left: 0;
    content: "";
    width: 100%;
    transform: rotateX(45deg);
    transform-origin: bottom;
    background: rgb(202,158,166);
}.student_aid .container {
    display: flex;
    align-items: center;
    justify-content: center;
}.student_aid .access_help {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    padding: 0.8rem 2rem;
    transform: translateZ(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    text-align: center;
}

@media (max-width: 1200px) {.insta_feed .container {
    gap: 3rem;
}.insta_feed .company_holder {
    flex: 1 1 350px;
}.insta_feed .syllabus_ref {
    flex: 1 1 calc(100% - 430px);
    min-width: 350px;
}.insta_feed .nav_info {
    gap: 2rem;
}
}

@media (max-width: 992px) {.insta_feed {
    padding: 4rem 0 2rem;
}.insta_feed .container {
    flex-direction: column;
    gap: 3rem;
}.insta_feed .company_holder,
    .insta_feed .syllabus_ref {
    min-width: 100%;
    flex: 1 1 100%;
}.insta_feed .top_page {
    min-width: 220px;
    flex: 1 1 calc(50% - 1.5rem);
}.insta_feed .company_holder,
    .insta_feed .top_page {
    transform: none;
}
}

@media (max-width: 768px) {.insta_feed {
    padding: 3.5rem 0 1.5rem;
}.insta_feed .nav_info {
    gap: 1.5rem;
}.insta_feed .company_holder h3 {
    font-size: calc(35px - 2px);
}.insta_feed .company_holder h3::before,
    .insta_feed .company_holder h3::after {
    height: 20px;
    width: 20px;
}.student_aid {
    margin-top: 2rem;
}.student_aid::before {
    height: 15px;
    top: -15px;
}
}

@media (max-width: 576px) {.insta_feed {
    padding: 3rem 0 1rem;
}.insta_feed .top_page {
    min-width: 100%;
    flex: 1 1 100%;
}.insta_feed .nav_info {
    gap: 0.7rem;
}.insta_feed .top_page .nav_info a {
    padding: 0.6rem 0.8rem;
}.student_aid {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
}.student_aid::before {
    display: none;
}
}

@media (max-width: 420px) {.insta_feed::before {
    height: 10px;
}.insta_feed .company_holder h3::before,
    .insta_feed .company_holder h3::after {
    display: none;
}.insta_feed .top_page h5 {
    width: 100%;
    min-width: auto;
}.student_aid .access_help {
    padding: 0.7rem 1.5rem;
    width: 90%;
}}.educational_rewards {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgb(242,228,230) 0%, rgba(245, 247, 250, 0.9) 100%);
    overflow: hidden;
}.educational_rewards::before {
    position: absolute;
    top: 0;
    z-index: 0;
    content: "";
    height: 100%;
    left: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(rgb(202,158,166,0.5), 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(rgb(225,195,200,0.5), 0.04) 0%, transparent 60%);
    width: 100%;
}.educational_rewards::after {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    position: absolute;
    border: 2px solid rgba(rgb(202,158,166,0.5), 0.1);
    height: 300px;
    content: "";
    animation: floatShape 15s infinite alternate ease-in-out;
    right: -5%;
    z-index: 0;
    top: -10%;
    width: 300px;
    transform: rotate(-15deg);
}.educational_rewards .container {
    position: relative;
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
}.educational_rewards .learn_sessions {
    gap: 60px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}.educational_rewards .statement_holder {
    max-width: 650px;
    flex: 1;
}.educational_rewards h4 {
    color: #000000;
    font-size: 30px;
    opacity: 0;
    font-weight: 700;
    transform: translateY(20px);
    line-height: 1.3;
    margin-bottom: 40px;
    animation: fadeSlideUp 0.8s 0.2s forwards ease-out;
    position: relative;
}.educational_rewards h4::after {
    content: "";
    bottom: -15px;
    transform-origin: left;
    transform: scaleX(0);
    animation: scaleIn 0.8s 0.6s forwards ease-out;
    height: 4px;
    background: rgb(202,158,166);
    position: absolute;
    width: 80px;
    left: 0;
}.educational_rewards .statement_holder > div {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
}.educational_rewards .statement_holder > div:first-of-type {
    animation: fadeIn 0.8s 0.4s forwards ease-out;
    opacity: 0;
}.educational_rewards .statement_holder > div:last-of-type {
    opacity: 0;
    animation: fadeIn 0.8s 0.6s forwards ease-out;
}.educational_rewards ul {
    margin: 0;
    min-width: 280px;
    flex: 1;
    list-style: none;
    padding: 0;
}.educational_rewards li {
    opacity: 0;
    transform: translateX(15px);
    margin-bottom: 20px;
    animation: fadeSlideRight 0.6s forwards ease-out;
}.educational_rewards li:nth-child(1) {
    animation-delay: 0.7s;
}.educational_rewards li:nth-child(2) {
    animation-delay: 0.9s;
}.educational_rewards li:nth-child(3) {
    animation-delay: 1.1s;
}.educational_rewards li p {
    display: flex;
    padding: 15px 20px;
    border-left: 3px solid rgb(202,158,166);
    box-shadow: 0 6px 24px -8px rgba(rgba(0, 0, 0, 0.5), 0.08);
    margin: 0;
    align-items: flex-start;
    border-radius: 10px;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 15px;
}.educational_rewards li p:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px -10px rgba(rgba(0, 0, 0, 0.5), 0.12);
}.educational_rewards li p span:first-child {
    width: 40px;
    flex-shrink: 0;
    background: rgba(rgb(202,158,166,0.5), 0.1);
    padding: 8px;
    justify-content: center;
    height: 40px;
    align-items: center;
    display: flex;
    border-radius: 50%;
}.educational_rewards li p span:last-child {
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    font-size: calc(18px - 1px);
}.educational_rewards svg {
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}.educational_rewards li p:hover svg {
    transform: translateY(-2px);
}.educational_rewards svg path {
    transition: fill 0.3s ease;
    fill: rgb(202,158,166);
}.educational_rewards li p:hover svg path {
    fill: rgb(225,195,200);
}.educational_rewards .img_stack {
    max-width: 450px;
    border-radius: 0 30px 30px 30px;
    animation: photoReveal 1.2s 0.8s forwards ease-out;
    box-shadow: 
        30px 30px 60px -15px rgba(rgba(0, 0, 0, 0.5), 0.15),
        -2px -2px 10px rgba(rgb(255, 255, 255, 0.5), 0.8),
        0 0 0 3px rgba(rgb(202,158,166,0.5), 0.15);
    opacity: 0;
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateZ(0);
    object-fit: cover;
    flex: 0 0 40%;
    height: auto;
}

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

@keyframes fadeSlideRight {
    from {
        transform: translateX(15px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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

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

@keyframes photoReveal {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateZ(0) translateX(40px);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateZ(0) translateX(0);
    }
}

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

@media (max-width: 992px) {.educational_rewards {
    padding: 80px 0;
}.educational_rewards .learn_sessions {
    flex-direction: column-reverse;
    gap: 40px;
}.educational_rewards .statement_holder {
    max-width: 100%;
}.educational_rewards h4 {
    font-size: calc(30px - 4px);
    margin-bottom: 30px;
}.educational_rewards .img_stack {
    align-self: center;
    max-width: 90%;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg) translateZ(0);
}
}

@media (max-width: 768px) {.educational_rewards {
    padding: 60px 0;
}.educational_rewards .statement_holder > div {
    flex-direction: column;
    gap: 10px;
}.educational_rewards h4 {
    font-size: calc(30px - 6px);
}.educational_rewards ul {
    width: 100%;
}.educational_rewards .img_stack {
    transform: perspective(1000px) rotateY(0) rotateX(0) translateZ(0);
    max-width: 100%;
    box-shadow: 
            15px 15px 30px -10px rgba(rgba(0, 0, 0, 0.5), 0.15),
            -1px -1px 5px rgba(rgb(255, 255, 255, 0.5), 0.8),
            0 0 0 2px rgba(rgb(202,158,166,0.5), 0.15);
}
}

@media (max-width: 576px) {.educational_rewards {
    padding: 50px 0;
}.educational_rewards h4 {
    font-size: calc(30px - 8px);
}.educational_rewards li p {
    padding: 12px 15px;
}.educational_rewards li p span:first-child {
    height: 32px;
    width: 32px;
}.educational_rewards svg {
    width: 20px;
    height: 20px;
}.educational_rewards li p span:last-child {
    font-size: calc(18px - 2px);
}
}