﻿* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}svg {
    height: 30px;
    width: 30px;
}header,footer {
    width: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.wrapper-viewport {
    flex-direction: column;
    display: flex;
    min-height: 100%;
    height: 100%;
}html,body {
    scroll-behavior: smooth;
    min-height: 100%;
    color: #000000;
    height: 100%;
    font-family: Arial, sans-serif;
}.top_lesson {
    flex: 1 0 auto;
}.container {
    margin: auto;
    width: 1240px;
    max-width: 100%;
}.recycle_info {
    flex: 0 0 auto;
}
@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.study_method {
    perspective: 1200px;
    background: rgb(192,198,211);
    padding: 9rem 2rem 7rem;
    overflow: hidden;
    position: relative;
}.study_method::before {
    z-index: 1;
    left: 0;
    opacity: 0.15;
    height: 100%;
    position: absolute;
    content: "";
    background: linear-gradient(
        45deg,
        transparent,
        rgb(147,161,189,0.5) 70%,
        transparent
    );
    top: 0;
    width: 100%;
    animation: bgSweep 8s linear infinite alternate;
}.study_method::after {
    left: -10%;
    animation: rotateBg 30s linear infinite;
    height: 120%;
    z-index: 0;
    opacity: 0.2;
    top: -10%;
    transform-origin: center;
    filter: blur(60px);
    content: "";
    background: 
        radial-gradient(circle at 30% 30%, rgb(147,161,189,0.5) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgb(110,121,175,0.5) 0%, transparent 50%);
    position: absolute;
    width: 120%;
}.study_method .training_space {
    gap: 4rem;
    position: relative;
    z-index: 2;
    align-items: center;
    margin: 0 auto;
    display: flex;
    transform-style: preserve-3d;
    max-width: 1000px;
    flex-direction: column;
}.study_method h3 {
    font-weight: 700;
    transform: translateZ(50px) rotateX(5deg);
    animation: floatHeader 6s ease-in-out infinite, fadeIn 1s ease-out forwards;
    margin: 0;
    border-radius: 27px;
    color: #000000;
    position: relative;
    padding: 2.5rem 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    font-size: 35px;
    text-align: center;
}.study_method h3::before,
.study_method h3::after {
    height: 90%;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    left: 5%;
    border-radius: inherit;
    width: 90%;
    position: absolute;
    top: 5%;
    content: "";
    animation: floatShadow 6s ease-in-out infinite;
    z-index: -1;
}.study_method h3::before {
    background: rgb(147,161,189,0.5);
    transform: translateZ(-20px) scale(0.98);
}.study_method h3::after {
    background: rgb(110,121,175,0.5);
    transform: translateZ(-40px) scale(0.96);
}.study_method span {
    border-radius: 27px;
    background: #ffffff;
    padding: 3rem;
    font-size: 17px;
    opacity: 0;
    position: relative;
    width: 90%;
    line-height: 1.8;
    animation: floatContent 6s ease-in-out infinite 1s, fadeIn 1s 0.3s ease-out forwards;
    transform: translateZ(30px) rotateX(-3deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    color: #000000;
}.study_method span::before,
.study_method span::after {
    top: 2.5%;
    border-radius: inherit;
    animation: floatShadow 6s ease-in-out infinite 1s;
    z-index: -1;
    position: absolute;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    left: 2.5%;
    width: 95%;
    content: "";
    height: 95%;
}.study_method span::before {
    transform: translateZ(-20px) scale(0.98);
    background: rgb(110,121,175,0.5);
}.study_method span::after {
    transform: translateZ(-40px) scale(0.96);
    background: rgb(147,161,189,0.5);
}

@keyframes bgSweep {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatHeader {
    0%, 100% {
        transform: translateZ(50px) rotateX(5deg) translateY(0);
    }
    50% {
        transform: translateZ(50px) rotateX(5deg) translateY(-15px);
    }
}

@keyframes floatContent {
    0%, 100% {
        transform: translateZ(30px) rotateX(-3deg) translateY(0);
    }
    50% {
        transform: translateZ(30px) rotateX(-3deg) translateY(-10px);
    }
}

@keyframes floatShadow {
    0%, 100% {
        opacity: 0.3;
        transform: translateZ(var(--z, -20px));
    }
    50% {
        opacity: 0.5;
        transform: translateZ(var(--z, -20px));
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) translateZ(var(--z, 0px)) rotateX(var(--rx, 0deg));
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(var(--z, 0px)) rotateX(var(--rx, 0deg));
    }
}

@media (max-width: 992px) {.study_method {
    perspective: 800px;
    padding: 7rem 1.5rem 5rem;
}.study_method h3 {
    --rx: 3deg;
    font-size: calc(35px * 0.9);
    padding: 2rem;
    --z: 30px;
    transform: translateZ(30px) rotateX(3deg);
}.study_method span {
    width: 95%;
    --z: 20px;
    transform: translateZ(20px) rotateX(-2deg);
    --rx: -2deg;
    padding: 2rem;
}.study_method .training_space {
    gap: 3rem;
}
    
    @keyframes floatHeader {
        0%, 100% {
            transform: translateZ(30px) rotateX(3deg) translateY(0);
        }
        50% {
            transform: translateZ(30px) rotateX(3deg) translateY(-10px);
        }
    }
    
    @keyframes floatContent {
        0%, 100% {
            transform: translateZ(20px) rotateX(-2deg) translateY(0);
        }
        50% {
            transform: translateZ(20px) rotateX(-2deg) translateY(-7px);
        }
    }
}

@media (max-width: 768px) {.study_method {
    padding: 5rem 1rem 4rem;
    perspective: 500px;
}.study_method h3 {
    transform: translateZ(15px) rotateX(2deg);
    padding: 1.5rem;
    --z: 15px;
    --rx: 2deg;
    font-size: calc(35px * 0.8);
}.study_method span {
    padding: 1.5rem;
    transform: translateZ(10px) rotateX(-1deg);
    --rx: -1deg;
    width: 100%;
    font-size: calc(17px * 0.95);
    --z: 10px;
}.study_method .training_space {
    gap: 2rem;
}@keyframes floatHeader {
        0%, 100% {
            transform: translateZ(15px) rotateX(2deg) translateY(0);
        }
        50% {
            transform: translateZ(15px) rotateX(2deg) translateY(-7px);
        }
    }
    
    @keyframes floatContent {
        0%, 100% {
            transform: translateZ(10px) rotateX(-1deg) translateY(0);
        }
        50% {
            transform: translateZ(10px) rotateX(-1deg) translateY(-5px);
        }
    }
}.course_program {
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(192,198,211) 0%, rgba(249, 249, 249, 0.95) 100%);
}.course_program::before {
    height: 100%;
    content: "";
    z-index: 1;
    left: 0;
    width: 100%;
    position: absolute;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(var(--primary-color-rgb, 0, 110, 255), 0.02) 15px,
        rgba(var(--primary-color-rgb, 0, 110, 255), 0.02) 30px
    );
    top: 0;
}.course_program .container {
    z-index: 2;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
}.course_program .career_ready {
    gap: 2.5rem;
    transform: perspective(1000px) rotateX(0deg);
    display: grid;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    grid-template-columns: 1fr;
}.course_program .career_ready:hover {
    transform: perspective(1000px) rotateX(1deg);
}.course_program .img_card_item {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 300px;
    transform: translateZ(20px);
    position: relative;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}.course_program .img_card_item::after {
    inset: 0;
    position: absolute;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(var(--primary-color-rgb, 0, 110, 255), 0.3) 100%
    );
    content: '';
}.course_program .img_card_item:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: translateZ(30px);
}.course_program .content_wrapper {
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
    position: relative;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    transform: translateZ(10px);
    border-left: 4px solid rgb(147,161,189);
}.course_program .content_wrapper::before {
    z-index: -1;
    transform: rotate(45deg);
    width: 30px;
    left: 30px;
    top: -15px;
    content: '';
    position: absolute;
    height: 30px;
    background-color: rgb(147,161,189);
}.course_program .content_wrapper:hover {
    transform: translateZ(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}.course_program h3 {
    padding-bottom: 0.75rem;
    transform: translateY(0);
    font-size: 20px;
    position: relative;
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #000000;
    font-weight: 700;
}.course_program h3::after {
    content: '';
    width: 50px;
    height: 3px;
    transition: width 0.4s ease;
    bottom: 0;
    background: linear-gradient(
        to right,
        rgb(147,161,189) 0%,
        rgb(110,121,175) 100%
    );
    position: absolute;
    left: 0;
}.course_program .content_wrapper:hover h3 {
    transform: translateY(-5px);
}.course_program .content_wrapper:hover h3::after {
    width: 100px;
}.course_program .description {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s forwards 0.2s;
    font-size: 18px;
    line-height: 1.75;
    transform: translateY(20px);
    color: #000000;
    opacity: 0;
}.course_program span.description {
    display: none;
}

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

@media (min-width: 768px) {.course_program {
    padding: 7rem 0;
}.course_program .career_ready {
    grid-template-columns: 40% 1fr;
    align-items: center;
    gap: 3.5rem;
}.course_program .img_card_item {
    height: 450px;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}.course_program h3 {
    font-size: calc(20px * 1.2);
}.course_program .description {
    column-gap: 2.5rem;
    column-count: 2;
}
}

@media (min-width: 992px) {.course_program {
    padding: 8rem 0;
}.course_program .career_ready {
    grid-template-columns: 45% 1fr;
    gap: 4rem;
}.course_program .img_card_item {
    height: 550px;
}.course_program .content_wrapper {
    padding: 3.5rem;
}.course_program h3 {
    margin-bottom: 2rem;
    font-size: calc(20px * 1.4);
}
}

@media (max-width: 767px) {.course_program .container {
    padding: 0 15px;
}.course_program .img_card_item {
    margin-top: 1rem;
    margin-bottom: 1rem;
}.course_program .content_wrapper {
    padding: 1.5rem;
}.course_program h3 {
    font-size: calc(20px * 0.9);
}.course_program .description {
    font-size: calc(18px * 0.95);
}}.prospective_students {
    padding: 5rem 0;
    background-color: rgb(192,198,211);
    position: relative;
    overflow: hidden;
}.prospective_students::before {
    width: 100%;
    opacity: 0.4;
    top: 0;
    content: '';
    left: 0;
    position: absolute;
    background: 
        radial-gradient(circle at 20% 30%, rgb(110,121,175,0.5) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgb(147,161,189,0.5) 0%, transparent 30%);
    height: 100%;
    z-index: 1;
}.prospective_students::after {
    background: linear-gradient(45deg, transparent 48%, rgb(110,121,175,0.5) 49%, rgb(110,121,175,0.5) 51%, transparent 52%);
    z-index: 1;
    left: -50%;
    opacity: 0.05;
    animation: moveGradient 120s linear infinite;
    width: 200%;
    background-size: 100px 100px;
    height: 200%;
    top: -50%;
    content: '';
    position: absolute;
}.prospective_students .training_space {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 80px rgb(110,121,175,0.5);
    position: relative;
    padding: 3rem;
    max-width: 1100px;
    border-radius: 26px;
    z-index: 2;
}.prospective_students h3 {
    position: relative;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 38px;
    margin-bottom: 3.5rem;
    text-align: center;
    color: #000000;
}.prospective_students h3::before {
    background: rgb(110,121,175);
    width: 60px;
    border-radius: 50px;
    top: -30px;
    left: 50%;
    content: '';
    height: 5px;
    transform: translateX(-50%);
    position: absolute;
}.prospective_students h3::after {
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgb(110,121,175), transparent);
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 40%;
    height: 1px;
}.prospective_students ul {
    flex-direction: column;
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}.prospective_students li {
    padding: 2.5rem 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.02),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    border-radius: 26px;
    align-items: center;
    text-align: center;
    display: flex;
    position: relative;
    background-color: rgba(255, 255, 255, 0.7);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    flex-direction: column;
}.prospective_students li::before {
    background: linear-gradient(90deg, rgb(110,121,175,0.5), rgb(147,161,189,0.5));
    width: 100%;
    opacity: 0.3;
    position: absolute;
    content: '';
    transition: opacity 0.4s ease;
    top: 0;
    left: 0;
    height: 5px;
}.prospective_students li::after {
    bottom: 0;
    transition: opacity 0.5s ease;
    height: 100%;
    opacity: 0;
    content: '';
    width: 100%;
    z-index: -1;
    background: radial-gradient(circle at center bottom, rgb(110,121,175,0.5) 0%, transparent 70%);
    position: absolute;
    left: 0;
}.prospective_students li:hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    transform: translateY(-8px);
}.prospective_students li:hover::before {
    opacity: 1;
}.prospective_students li:hover::after {
    opacity: 0.15;
}.prospective_students li svg {
    transition: all 0.4s ease;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 3px 6px rgb(110,121,175,0.5));
    fill: rgb(110,121,175);
    display: block;
}.prospective_students li:hover svg {
    fill: rgb(147,161,189);
    filter: drop-shadow(0 5px 10px rgb(147,161,189,0.5));
    transform: scale(1.05);
}.prospective_students li svg path {
    transition: all 0.4s ease;
}.prospective_students li:hover svg path {
    fill: rgb(147,161,189);
}.prospective_students li {
    padding-bottom: 1rem;
    font-size: 14px;
    position: relative;
    color: #000000;
    font-weight: 300;
    line-height: 1.6;
}.prospective_students li:nth-child(1) {
    background-color: rgba(255, 255, 255, 0.75);
}.prospective_students li:nth-child(2) {
    background-color: rgba(255, 255, 255, 0.8);
}.prospective_students li:nth-child(3) {
    background-color: rgba(255, 255, 255, 0.85);
}.prospective_students li:nth-child(4) {
    background-color: rgba(255, 255, 255, 0.9);
}

@keyframes moveGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (min-width: 992px) {.prospective_students ul {
    gap: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}.prospective_students li:nth-child(even) {
    transform: translateY(20px);
}.prospective_students li:nth-child(even):hover {
    transform: translateY(12px);
}.prospective_students li:nth-child(1),
    .prospective_students li:nth-child(4) {
    animation: float 8s ease-in-out infinite;
}.prospective_students li:nth-child(2),
    .prospective_students li:nth-child(3) {
    animation: float 8s ease-in-out infinite reverse;
}
}

@media (max-width: 991px) {.prospective_students .training_space {
    padding: 2rem;
}.prospective_students h3 {
    margin-bottom: 2.5rem;
    font-size: calc(38px * 0.9);
}.prospective_students li {
    padding: 2rem 1.5rem;
}.prospective_students li svg {
    width: 50px;
    margin-bottom: 1rem;
    height: 50px;
}
}

@media (max-width: 767px) {.prospective_students {
    padding: 3rem 0;
}.prospective_students .training_space {
    padding: 1.5rem;
}.prospective_students h3 {
    font-size: calc(38px * 0.8);
    margin-bottom: 2rem;
}.prospective_students h3::before {
    top: -20px;
    width: 50px;
}.prospective_students h3::after {
    width: 70%;
}.prospective_students ul {
    gap: 1.5rem;
}.prospective_students li {
    padding: 1.5rem 1rem;
}.prospective_students li svg {
    height: 45px;
    width: 45px;
}}.get_in_touch {
    overflow: hidden;
    padding: 100px 0;
    position: relative;
    background: linear-gradient(90deg, #ffffff 50%, rgb(192,198,211) 50%);
}.get_in_touch::before {
    position: absolute;
    top: 0;
    background-size: 60px 60px;
    z-index: 0;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 20%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 0%, transparent 20%);
}.get_in_touch .container {
    z-index: 1;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}.get_in_touch h2 {
    color: rgb(147,161,189);
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 33px;
}.get_in_touch h2::after {
    height: 3px;
    content: "";
    left: 50%;
    position: absolute;
    width: 60px;
    transform: translateX(-50%);
    background: rgb(147,161,189);
    bottom: -15px;
}.get_in_touch .request_form {
    overflow: hidden;
    background: #ffffff;
    display: flex;
    border-radius: 27px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}.get_in_touch .request_form::before {
    left: 0;
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
    content: "";
    background: linear-gradient(90deg, rgb(147,161,189), rgb(110,121,175));
}.get_in_touch .img_card_item {
    position: relative;
    transition: all 0.5s ease;
    flex: 0 0 50%;
    min-height: 550px;
}.get_in_touch .img_card_item::after {
    width: 100%;
    top: 0;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    background: linear-gradient(45deg, rgb(147,161,189,0.5), transparent);
}.get_in_touch .connect_links {
    flex: 0 0 50%;
    position: relative;
    padding: 60px 50px;
    background: #ffffff;
}.get_in_touch .connect_links::before {
    content: "";
    height: 100%;
    width: 10px;
    left: 0;
    background: rgb(192,198,211);
    top: 0;
    position: absolute;
}.get_in_touch #contact {
    gap: 30px;
    display: flex;
    flex-direction: column;
}.get_in_touch h3 {
    padding-bottom: 10px;
    font-size: 19px;
    position: relative;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 600;
    display: inline-block;
}.get_in_touch h3::after {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: rgb(147,161,189,0.5);
    bottom: 0;
    content: "";
}.get_in_touch input[type="text"] {
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #000000;
    padding: 18px 20px;
    border: 2px solid rgb(192,198,211);
    background: #ffffff;
    font-size: 16px;
    width: 100%;
}.get_in_touch input[type="text"]:focus {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    outline: none;
    border-color: rgb(147,161,189);
}.get_in_touch input[type="text"]::placeholder {
    opacity: 0.6;
    color: #000000;
}.get_in_touch .message_support {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 10px;
}.get_in_touch .message_support input[type="checkbox"] {
    border-radius: 10px;
    appearance: none;
    width: 24px;
    position: relative;
    cursor: pointer;
    margin-top: 2px;
    height: 24px;
    transition: all 0.3s ease;
    border: 2px solid rgb(192,198,211);
}.get_in_touch .message_support input[type="checkbox"]:checked {
    border-color: rgb(147,161,189);
    background: rgb(147,161,189);
}.get_in_touch .message_support input[type="checkbox"]:checked::after {
    content: "";
    top: 5px;
    width: 6px;
    left: 8px;
    transform: rotate(45deg);
    height: 10px;
    border-bottom: 2px solid #ffffff;
    position: absolute;
    border-right: 2px solid #ffffff;
}.get_in_touch .message_support label {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
}.get_in_touch .message_support a {
    font-weight: 600;
    transition: all 0.3s ease;
    color: rgb(147,161,189);
    text-decoration: none;
}.get_in_touch .message_support a:hover {
    color: rgb(110,121,175);
}.get_in_touch .query_panel {
    font-weight: 600;
    box-shadow: 0 8px 20px rgb(147,161,189,0.5);
    overflow: hidden;
    color: #ffffff;
    background: rgb(147,161,189);
    border: none;
    transition: all 0.3s ease;
    font-size: 15px;
    position: relative;
    padding: 16px 40px;
    cursor: pointer;
    margin-top: 20px;
    align-self: flex-start;
    border-radius: 10px;
}.get_in_touch .query_panel::before {
    height: 100%;
    top: 0;
    content: "";
    transition: all 0.6s ease;
    left: -100%;
    position: absolute;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}.get_in_touch .query_panel:hover {
    background: rgb(110,121,175);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgb(110,121,175,0.5);
}.get_in_touch .query_panel:hover::before {
    left: 100%;
}.get_in_touch svg {
    width: 22px;
    transition: all 0.3s ease;
    height: 22px;
    fill: rgb(147,161,189);
}.get_in_touch svg path {
    transition: all 0.3s ease;
    fill: rgb(147,161,189);
}.get_in_touch svg:hover {
    transform: translateY(-2px);
    fill: rgb(110,121,175);
}.get_in_touch svg:hover path {
    fill: rgb(110,121,175);
}

@media (max-width: 1200px) {.get_in_touch {
    background: #ffffff;
}
}

@media (max-width: 992px) {.get_in_touch {
    padding: 80px 0;
}.get_in_touch .request_form {
    flex-direction: column-reverse;
}.get_in_touch .img_card_item {
    flex: 0 0 auto;
    min-height: 350px;
}.get_in_touch .connect_links {
    padding: 50px 40px;
    flex: 0 0 auto;
}.get_in_touch .connect_links::before {
    left: 0;
    top: 0;
    height: 10px;
    width: 100%;
}
}

@media (max-width: 768px) {.get_in_touch {
    padding: 60px 0;
}.get_in_touch h2 {
    font-size: calc(33px - 4px);
    margin-bottom: 40px;
}.get_in_touch .connect_links {
    padding: 40px 30px;
}.get_in_touch #contact {
    gap: 25px;
}.get_in_touch .img_card_item {
    min-height: 300px;
}
}

@media (max-width: 576px) {.get_in_touch {
    padding: 50px 0;
}.get_in_touch .container {
    padding: 0 15px;
}.get_in_touch h2 {
    font-size: calc(33px - 6px);
    margin-bottom: 30px;
}.get_in_touch .connect_links {
    padding: 35px 25px;
}.get_in_touch #contact {
    gap: 20px;
}.get_in_touch input[type="text"] {
    padding: 15px;
}.get_in_touch .query_panel {
    padding: 15px 25px;
    width: 100%;
}.get_in_touch .img_card_item {
    min-height: 250px;
}}header {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 100;
    top: 0;
    position: fixed;
    left: 0;
}header::before {
    top: 0;
    animation: pulse 15s infinite alternate;
    z-index: -1;
    content: "";
    opacity: 0.3;
    background: 
        radial-gradient(circle at 10% 20%, rgb(147,161,189,0.5) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgb(110,121,175,0.5) 0%, transparent 20%);
    position: absolute;
    height: 100%;
    left: 0;
    width: 100%;
}header .container {
    position: relative;
    padding: 1rem 2rem;
}header .main_bar {
    z-index: 2;
    justify-content: space-between;
    position: relative;
    align-items: center;
    display: flex;
}header .top_site {
    align-items: center;
    display: flex;
    gap: 2rem;
    position: relative;
}header .top_site::before {
    left: -30px;
    border-radius: 16px;
    background: linear-gradient(90deg, transparent 0%, rgb(147,161,189,0.5) 50%, transparent 100%);
    z-index: -1;
    width: calc(100% + 60px);
    content: "";
    position: absolute;
    opacity: 0.1;
    top: -15px;
    height: calc(100% + 30px);
    transform: skewX(-15deg);
}header .site_study {
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.5rem 0;
    font-size: 14px;
    font-weight: 600;
}header .site_study::before {
    left: 0;
    height: 2px;
    content: "";
    position: absolute;
    background: linear-gradient(to right, rgb(147,161,189), rgb(110,121,175));
    transition: width 0.3s ease;
    width: 0;
    bottom: 0;
}header .site_study:hover {
    color: rgb(147,161,189);
    transform: translateY(-2px);
}header .site_study:hover::before {
    width: 100%;
}header .header_lesson {
    z-index: 2;
    align-items: center;
    text-decoration: none;
    display: flex;
    position: relative;
}header .header_lesson svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
    width: auto;
    height: 40px;
}header .header_lesson:hover svg {
    filter: drop-shadow(0 0 12px rgb(147,161,189,0.5));
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

@media (max-width: 991px) {header .container {
    padding: 0.8rem 1.5rem;
}header .top_site {
    gap: 1.5rem;
}header .site_study {
    font-size: calc(14px - 1px);
}
}

@media (max-width: 767px) {header {
    position: relative;
}header .main_bar {
    padding: 1rem 0;
    gap: 1rem;
    flex-direction: column-reverse;
}header .header_lesson {
    margin-bottom: 0.5rem;
}header .top_site {
    overflow-x: auto;
    justify-content: flex-start;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    padding: 0.5rem 0;
}header .top_site::before {
    display: none;
}header .site_study {
    white-space: nowrap;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}header .site_study::before {
    display: none;
}}.program_outcomes {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(192,198,211) 0%, #ffffff 100%);
}.program_outcomes::before {
    border-radius: 50%;
    content: "";
    opacity: 0.4;
    background: linear-gradient(45deg, rgb(147,161,189,0.5) 0%, rgb(110,121,175,0.5) 100%);
    z-index: 0;
    right: -50px;
    filter: blur(60px);
    animation: float 15s infinite alternate ease-in-out;
    width: 300px;
    top: -50px;
    height: 300px;
    position: absolute;
}.program_outcomes::after {
    position: absolute;
    left: -100px;
    z-index: 0;
    background: linear-gradient(225deg, rgb(110,121,175,0.5) 0%, rgb(147,161,189,0.5) 100%);
    height: 400px;
    opacity: 0.3;
    width: 400px;
    filter: blur(80px);
    bottom: -100px;
    border-radius: 50%;
    content: "";
    animation: float 18s infinite alternate-reverse ease-in-out;
}.program_outcomes .container {
    z-index: 1;
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    padding: 0 20px;
    flex-direction: column;
}.program_outcomes .img_card_item {
    height: 380px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    filter: brightness(1.05) contrast(1.05);
    width: 100%;
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
    clip-path: polygon(0 0, 100% 4%, 97% 100%, 3% 96%);
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}.program_outcomes .img_card_item:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}.program_outcomes .training_space {
    z-index: 2;
    position: relative;
    margin-top: -120px;
    padding: 40px 0 0;
}.program_outcomes .content_wrapper {
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 45px;
    animation: slideUp 0.8s forwards 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateY(30px);
    opacity: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
}.program_outcomes h1 {
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
    animation: fadeIn 0.6s forwards 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(10px);
    position: relative;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    color: #000000;
}.program_outcomes h1::after {
    width: 80px;
    bottom: -10px;
    animation: lineExpand 0.6s forwards 1s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left;
    height: 3px;
    left: 0;
    content: "";
    background: linear-gradient(90deg, rgb(147,161,189) 0%, rgb(110,121,175) 100%);
    transform: scaleX(0);
    position: absolute;
}.program_outcomes ul {
    margin: 0;
    display: grid;
    list-style: none;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0;
}.program_outcomes li {
    opacity: 0;
    padding-left: 40px;
    transform: translateX(15px);
    position: relative;
}.program_outcomes li:nth-child(1) {
    animation: slideIn 0.5s forwards 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}.program_outcomes li:nth-child(2) {
    animation: slideIn 0.5s forwards 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}.program_outcomes li:nth-child(3) {
    animation: slideIn 0.5s forwards 1s cubic-bezier(0.22, 1, 0.36, 1);
}.program_outcomes li:nth-child(4) {
    animation: slideIn 0.5s forwards 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}.program_outcomes li:nth-child(5) {
    animation: slideIn 0.5s forwards 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}.program_outcomes li p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}.program_outcomes li svg {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 24px;
    width: 24px;
    position: absolute;
    left: 0;
    top: 0;
}.program_outcomes li:hover svg {
    transform: translateY(-3px) scale(1.1);
}.program_outcomes svg path {
    transition: fill 0.3s ease;
    fill: rgb(147,161,189);
}.program_outcomes li:hover svg path {
    fill: rgb(110,121,175);
}

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

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

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

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

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, -30px);
    }
}

@media (min-width: 768px) {.program_outcomes .container {
    align-items: center;
    gap: 30px;
    flex-direction: row;
}.program_outcomes .img_card_item {
    clip-path: polygon(0 0, 100% 4%, 96% 100%, 4% 96%);
    height: 450px;
    width: 45%;
}.program_outcomes .training_space {
    width: 55%;
    padding: 0;
    margin-top: 0;
}.program_outcomes .content_wrapper {
    padding: 50px;
}.program_outcomes h1 {
    font-size: 43px;
}.program_outcomes ul {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 992px) {.program_outcomes {
    padding: 150px 0;
}.program_outcomes .img_card_item {
    height: 550px;
}.program_outcomes .content_wrapper {
    padding: 60px;
}.program_outcomes h1::after {
    width: 100px;
}
}

@media (max-width: 767px) {.program_outcomes {
    padding: 80px 0;
}.program_outcomes .content_wrapper {
    padding: 30px;
}.program_outcomes h1 {
    margin-bottom: 25px;
    font-size: calc(30px * 0.9);
}.program_outcomes li {
    padding-left: 35px;
}.program_outcomes li p {
    font-size: calc(13px * 0.95);
}
}

@media (hover: none) {.program_outcomes .img_card_item {
    transform: none;
}.program_outcomes li:hover svg {
    transform: none;
}}.privacy_shield {
    padding: 40px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    color: #000000;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 90%;
    font-family: Arial, sans-serif;
}.privacy_shield:before, .privacy_shield:after {
    z-index: 0;
    transform-origin: center;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.2;
    content: "";
    pointer-events: none;
    background: linear-gradient(45deg, rgb(147,161,189,0.5), rgb(110,121,175,0.5));
    transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    height: 100%;
}.privacy_shield h1 {
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    color: #000000;
    font-size: 42px;
    border-bottom: 2px solid rgb(147,161,189);
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    z-index: 1;
    text-transform: uppercase;
}.privacy_shield h2 {
    letter-spacing: 1.5px;
    font-size: 37px;
    z-index: 1;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgb(110,121,175,0.5);
    font-weight: 600;
    color: rgb(110,121,175);
    position: relative;
}.privacy_shield ul, .privacy_shield ol {
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
    padding-left: 0;
    list-style: none;
}.privacy_shield li {
    counter-increment: list-counter;
    font-size: 15px;
    line-height: 1.6;
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
}.privacy_shield li:before {
    color: rgb(147,161,189);
    left: 0;
    font-size: 15px;
    font-weight: 700;
    content: counter(list-counter, decimal-leading-zero);
    position: absolute;
    top: 0;
}.privacy_shield div {
    background: #ffffff;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
    line-height: 1.8;
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
    padding: 20px;
}.privacy_shield .container {
    z-index: 1;
    position: relative;
}.privacy_shield h3, .privacy_shield h4, .privacy_shield h5, .privacy_shield h6 {
    z-index: 1;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    margin-top: 20px;
    font-size: 24px;
    color: rgb(147,161,189);
}.privacy_shield p, .privacy_shield span {
    position: relative;
    font-size: 15px;
    margin-bottom: 10px;
    color: #000000;
    line-height: 1.6;
    z-index: 1;
}.privacy_shield a {
    border-bottom: 1px solid rgb(110,121,175);
    color: rgb(110,121,175);
    z-index: 1;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}.privacy_shield a:hover {
    color: rgb(147,161,189);
    border-bottom: 1px solid rgb(147,161,189);
}.privacy_shield button {
    z-index: 1;
    background: rgb(147,161,189);
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    border: none;
    font-size: 15px;
    padding: 15px 30px;
    cursor: pointer;
}.privacy_shield button:hover {
    background: rgb(110,121,175);
}

@media only screen and (max-width: 800px) {.privacy_shield {
    padding: 20px;
    width: 95%;
}.privacy_shield h1 {
    font-size: calc(24px - 5px);
}.privacy_shield h2 {
    font-size: calc(24px - 3px);
}.privacy_shield ul, .privacy_shield ol {
    padding-left: 10px;
}.privacy_shield li {
    padding-left: 20px;
}.privacy_shield button {
    padding: 10px 20px;
}}.our_info {
    overflow: hidden;
    padding: 5rem 0;
    background-color: rgb(192,198,211);
    position: relative;
    z-index: 1;
}.our_info::before {
    content: "";
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 20%, rgb(147,161,189,0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgb(110,121,175,0.5) 0%, transparent 40%);
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    animation: ambientGlow 15s infinite alternate;
    left: 0;
}.our_info::after {
    content: "";
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;
    z-index: -1;
    width: 100%;
}.our_info .container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    position: relative;
}.our_info .message_info {
    padding: 3rem;
    transform: translateY(0);
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    border-radius: 29px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}.our_info .message_info::before {
    animation: shineEffect 6s infinite;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 30%,
        rgba(255, 255, 255, 0.07) 50%,
        rgba(255, 255, 255, 0.03) 70%,
        transparent 100%
    );
    position: absolute;
    top: -150%;
    height: 200%;
    left: -50%;
    transition: all 0.7s ease;
    width: 200%;
    transform: rotate(45deg);
    content: "";
    z-index: -1;
}.our_info .get_contactpanel {
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-size: 29px;
    color: rgb(147,161,189);
    display: inline-block;
    align-self: center;
    text-align: center;
}.our_info .get_contactpanel::after {
    height: 3px;
    content: "";
    animation: headerUnderline 3s infinite;
    width: 100%;
    position: absolute;
    background: linear-gradient(90deg, transparent, rgb(147,161,189), transparent);
    left: 0;
    bottom: -10px;
}.our_info .img_card_item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    width: 200px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    position: relative;
    border-radius: 10px;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
    height: 200px;
}.our_info .img_card_item:hover {
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4);
    transform: scale(1.02);
}.our_info .img_card_item::after {
    width: 100%;
    content: "";
    height: 100%;
    z-index: 1;
    top: 0;
    position: absolute;
    background: linear-gradient(
        135deg,
        rgba(0, 123, 255, 0.2) 0%,
        transparent 100%
    );
    left: 0;
}.our_info .instant_help {
    position: relative;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    overflow: hidden;
    border-radius: 29px;
}.our_info .instant_help::before {
    background: linear-gradient(to bottom, rgb(147,161,189), rgb(110,121,175));
    width: 5px;
    height: 100%;
    top: 0;
    border-radius: 10px;
    position: absolute;
    content: "";
    left: 0;
}.our_info .instant_help p {
    padding-left: 2rem;
    color: #000000;
    flex-direction: column;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 17px;
    transition: transform 0.3s ease;
    display: flex;
}.our_info .instant_help p:hover {
    transform: translateX(5px);
}.our_info .instant_help p:last-child {
    margin-bottom: 0;
}.our_info .instant_help p span {
    margin-top: 0.3rem;
    font-weight: 600;
}.our_info .instant_help p a {
    display: inline-block;
    color: rgb(147,161,189);
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}.our_info .instant_help p a:hover {
    transform: scale(1.03);
    color: rgb(110,121,175);
}.our_info .instant_help svg {
    transition: transform 0.3s ease;
    top: 5px;
    width: 18px;
    fill: none;
    stroke-width: 2;
    position: absolute;
    height: 18px;
    left: 0;
    stroke-linejoin: round;
    stroke-linecap: round;
}.our_info .instant_help p:hover svg {
    transform: scale(1.1);
}.our_info .instant_help svg path {
    stroke: rgb(147,161,189);
    transition: stroke 0.3s ease;
}.our_info .instant_help p:hover svg path {
    stroke: rgb(110,121,175);
}.our_info .instant_help p:nth-child(1) svg path {
    stroke-dashoffset: 50;
    stroke-dasharray: 50;
    animation: drawSVG 1.5s forwards;
}.our_info .instant_help p:nth-child(2) svg path {
    animation: drawSVG 1.5s 0.2s forwards;
    stroke-dashoffset: 50;
    stroke-dasharray: 50;
}.our_info .instant_help p:nth-child(3) svg path {
    animation: drawSVG 1.5s 0.4s forwards;
    stroke-dashoffset: 50;
    stroke-dasharray: 50;
}.our_info .instant_help p:nth-child(4) svg path {
    stroke-dashoffset: 50;
    animation: drawSVG 1.5s 0.6s forwards;
    stroke-dasharray: 50;
}.our_info .help_question {
    padding-top: 2rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}.our_info .submit_request {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: rgb(147,161,189);
    text-align: center;
    margin-bottom: 1.5rem;
}.our_info .submit_request::before,
.our_info .submit_request::after {
    content: "";
    top: 50%;
    width: 30px;
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(147,161,189,0.5), transparent);
}.our_info .submit_request::before {
    left: 20%;
}.our_info .submit_request::after {
    right: 20%;
}.our_info .submit_request svg {
    fill: none;
    height: 18px;
    vertical-align: middle;
    width: 18px;
    stroke: rgb(147,161,189);
    stroke-width: 2;
    margin-right: 8px;
    animation: pulseAnimation 2s infinite;
}.our_info .contact_query {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}.our_info .message_request {
    font-size: calc(17px - 2px);
    color: #000000;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}.our_info .message_request:hover {
    background: rgba(0, 123, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 123, 255, 0.2);
    transform: translateY(-3px);
}.our_info .message_request svg {
    transition: transform 0.3s ease;
    height: 12px;
    stroke: rgb(147,161,189);
    margin-right: 5px;
    width: 12px;
    stroke-width: 2;
    fill: none;
}.our_info .message_request:hover svg {
    transform: rotate(15deg);
    stroke: rgb(110,121,175);
}

@keyframes shineEffect {
    0% {
        top: -150%;
        left: -50%;
    }
    100% {
        top: 150%;
        left: 150%;
    }
}

@keyframes headerUnderline {
    0%, 100% {
        width: 30%;
        left: 35%;
    }
    50% {
        width: 100%;
        left: 0;
    }
}

@keyframes ambientGlow {
    0% {
        opacity: 0.5;
        background-position: 0% 0%;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.5;
        background-position: 100% 100%;
    }
}

@keyframes drawSVG {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (min-width: 768px) {.our_info .message_info {
    justify-content: space-between;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
}.our_info .get_contactpanel {
    width: 100%;
    margin-bottom: 3rem;
}.our_info .img_card_item {
    flex-shrink: 0;
    height: 250px;
    width: 250px;
    margin: 0;
}.our_info .instant_help {
    margin-left: 2.5rem;
    flex: 1;
}.our_info .instant_help svg {
    width: 20px;
    height: 20px;
}.our_info .contact_query {
    grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 992px) {.our_info .message_info {
    padding: 4rem;
}.our_info .img_card_item {
    height: 300px;
    width: 300px;
}.our_info .instant_help {
    padding: 2.5rem;
}.our_info .instant_help svg {
    width: 22px;
    height: 22px;
}.our_info .contact_query {
    grid-template-columns: repeat(4, 1fr);
}
}

@media (max-width: 767px) {.our_info {
    padding: 3rem 0;
}.our_info .message_info {
    padding: 2rem;
}.our_info .instant_help {
    padding: 1.5rem;
}.our_info .get_contactpanel {
    font-size: calc(29px - 4px);
}.our_info .submit_request {
    font-size: calc(18px - 2px);
}.our_info .contact_query {
    grid-template-columns: 1fr;
    gap: 0.8rem;
}.our_info .instant_help svg {
    width: 16px;
    height: 16px;
}}.about_this {
    color: #ffffff;
    overflow: hidden;
    padding: 120px 0;
    position: relative;
}.about_this::before {
    left: 0;
    top: 0;
    backdrop-filter: blur(2px);
    background: linear-gradient(145deg, rgba(0,0,0,0.9), rgba(0,0,0,0.5), rgba(0,0,0,0.85));
    z-index: 1;
    right: 0;
    position: absolute;
    content: "";
    bottom: 0;
}.about_this::after {
    width: 80%;
    position: absolute;
    right: -20%;
    content: "";
    transform: rotate(-15deg);
    opacity: 0.15;
    animation: shine 15s infinite alternate ease-in-out;
    z-index: 0;
    height: 200%;
    background: rgb(147,161,189,0.5);
    top: -50%;
}.about_this .container {
    max-width: 1200px;
    position: relative;
    grid-template-columns: 1fr;
    margin: 0 auto;
    display: grid;
    padding: 0 20px;
    gap: 2rem;
    z-index: 2;
}.about_this h2 {
    font-weight: 700;
    animation: slideInTitle 0.8s ease-out forwards;
    display: inline-block;
    transform: translateX(-10px);
    position: relative;
    margin-bottom: 2rem;
    font-size: calc(28px * 1.2);
    color: #ffffff;
}.about_this h2::after {
    content: "";
    position: absolute;
    width: 60px;
    left: 0;
    background: linear-gradient(90deg, rgb(147,161,189), rgb(110,121,175));
    bottom: -10px;
    transform: scaleX(0);
    transform-origin: left;
    height: 3px;
    animation: lineGrow 1s 0.6s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}.about_this .content_wrapper {
    backdrop-filter: blur(5px);
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    border-left: 1px solid rgba(255,255,255,0.1);
    border-radius: 2px;
    position: relative;
    animation: fadeSlideUp 1s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
    transform: translateY(20px);
    padding: 40px;
}.about_this .content_wrapper::before {
    left: -10px;
    opacity: 0.6;
    height: 80px;
    z-index: -1;
    width: 20px;
    top: 20px;
    position: absolute;
    background: rgb(147,161,189);
    content: "";
}.about_this .content_wrapper > div {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}.about_this .content_wrapper p {
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    font-size: calc(17px * 1.5);
    letter-spacing: 0.5px;
    transform: translateX(-10px);
    position: relative;
    opacity: 0;
    margin: 0 0 10px;
    animation: fadeIn 0.5s 0.8s forwards;
}.about_this .content_wrapper p::after {
    left: 0;
    position: absolute;
    width: 40px;
    bottom: -5px;
    height: 2px;
    background: rgb(110,121,175);
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 0.6s 1s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
    content: "";
}.about_this .content_wrapper div div {
    opacity: 0;
    line-height: 1.8;
    column-count: 1;
    position: relative;
    color: #ffffff;
    animation: fadeSlideUp 0.8s 1s forwards cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.9;
    transform: translateY(10px);
    column-gap: 40px;
    font-size: 17px;
}.about_this .content_wrapper div div::first-letter {
    padding-right: 8px;
    float: left;
    line-height: 1;
    font-size: 1.5em;
    color: rgb(147,161,189);
    font-weight: 700;
}

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

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

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

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shine {
    0% {
        opacity: 0.1;
        transform: rotate(-15deg) translateX(5%);
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.15;
        transform: rotate(-15deg) translateX(-5%);
    }
}


@media (min-width: 768px) {.about_this {
    padding: 150px 0;
}.about_this .container {
    grid-template-columns: 1fr;
}.about_this h2 {
    margin-bottom: 3rem;
    font-size: calc(28px * 1.4);
}.about_this .content_wrapper {
    padding: 50px;
}.about_this .content_wrapper::before {
    height: 120px;
}.about_this .content_wrapper div div {
    column-count: 2;
}
}

@media (min-width: 992px) {.about_this {
    padding: 180px 0;
}.about_this::after {
    width: 60%;
}.about_this .container {
    padding: 0 40px;
}.about_this h2 {
    font-size: calc(28px * 1.6);
}.about_this h2::after {
    width: 80px;
}.about_this .content_wrapper {
    padding: 60px 70px;
}.about_this .content_wrapper::before {
    width: 25px;
    height: 150px;
}.about_this .content_wrapper div div {
    column-gap: 60px;
    column-count: 2;
}
}

@media (min-width: 1200px) {.about_this .container {
    padding: 0 60px;
}.about_this h2 {
    margin-left: 30px;
}.about_this .content_wrapper {
    margin-left: 30px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}.about_this .content_wrapper:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
    transform: translateY(-5px);
}
}

@media (max-width: 767px) {.about_this {
    padding: 80px 0;
}.about_this::after {
    opacity: 0.1;
}.about_this h2 {
    font-size: calc(28px * 1.1);
    margin-bottom: 1.5rem;
}.about_this h2::after {
    height: 2px;
    width: 50px;
}.about_this .content_wrapper {
    padding: 30px 25px;
}.about_this .content_wrapper::before {
    height: 60px;
    width: 10px;
}.about_this .content_wrapper p {
    font-size: calc(17px * 1.2);
}.about_this .content_wrapper div div {
    line-height: 1.6;
    font-size: calc(17px * 0.95);
}}.recycle_info {
    padding: 6rem 0 4rem;
    z-index: 1;
    position: relative;
    color: #ffffff;
}.recycle_info::before {
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    background: #000000;
    opacity: 0.85;
    z-index: -1;
    top: 0;
}.recycle_info::after {
    width: 100%;
    background-position: center;
    z-index: -1;
    background: 
        linear-gradient(rgba(rgb(147,161,189), 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(rgb(147,161,189), 0.2) 1px, transparent 1px);
    content: "";
    background-size: 30px 30px;
    top: 0;
    height: 100%;
    animation: gridAnimate 15s linear infinite;
    left: 0;
    position: absolute;
    opacity: 0.15;
}@keyframes gridAnimate {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

.recycle_info .container {
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 2rem;
    display: grid;
}.recycle_info .company_holder {
    grid-column: 1 / 5;
    position: relative;
    grid-row: 1;
}.recycle_info .company_holder::before {
    border-left: 2px solid rgb(147,161,189);
    width: 60px;
    position: absolute;
    opacity: 0.7;
    left: -20px;
    content: "";
    height: 60px;
    top: -20px;
    border-top: 2px solid rgb(147,161,189);
}.recycle_info .company_holder::after {
    bottom: -20px;
    content: "";
    position: absolute;
    border-right: 2px solid rgb(147,161,189);
    right: -20px;
    width: 60px;
    opacity: 0.7;
    height: 60px;
    border-bottom: 2px solid rgb(147,161,189);
}.recycle_info .company_holder h3 {
    margin-bottom: 1.5rem;
    -webkit-text-fill-color: transparent;
    position: relative;
    -webkit-background-clip: text !important;
    font-weight: 700;
    display: inline-block;
    font-size: 30px;
    background: linear-gradient(90deg, #ffffff, rgb(147,161,189));
}.recycle_info .company_holder h3::after {
    width: 30%;
    height: 2px;
    content: "";
    left: 0;
    background: rgb(147,161,189);
    box-shadow: 0 0 10px rgb(147,161,189);
    position: absolute;
    bottom: -5px;
}.recycle_info .trial_offer {
    line-height: 1.6;
    opacity: 0.8;
    font-size: 16px;
    color: #ffffff;
    margin-top: 1.5rem;
}.recycle_info .privacy_cta {
    justify-content: flex-end;
    grid-row: 1;
    grid-column: 6 / 13;
    display: flex;
}.recycle_info .main_core {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    width: 100%;
    gap: 3rem;
}.recycle_info .top_site {
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    padding: 1.5rem;
}.recycle_info .top_site:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}.recycle_info .top_site::before {
    height: 0;
    background: rgb(147,161,189);
    transition: height 0.3s ease;
    left: 0;
    position: absolute;
    width: 3px;
    top: 0;
    content: "";
}.recycle_info .top_site:hover::before {
    height: 100%;
}.recycle_info .top_site h5 {
    letter-spacing: 1px;
    padding-left: 1rem;
    font-size: 22px;
    color: rgb(110,121,175);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}.recycle_info .top_site h5::before {
    transform: translateY(-50%);
    background: rgb(147,161,189);
    left: 0;
    box-shadow: 0 0 10px rgb(147,161,189);
    border-radius: 50%;
    top: 50%;
    position: absolute;
    content: "";
    height: 5px;
    width: 5px;
}.recycle_info .top_site .main_core {
    flex-direction: column;
    display: flex;
    gap: 0.7rem;
}.recycle_info .top_site .main_core a {
    position: relative;
    font-size: 16px;
    z-index: 1;
    overflow: hidden;
    color: #ffffff;
    padding: 0.4rem 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 10px;
}.recycle_info .top_site .main_core a::before {
    left: 0;
    height: 100%;
    transform: translateX(-100%);
    width: 100%;
    background: linear-gradient(90deg, rgba(rgb(147,161,189,0.5), 0.1), transparent);
    position: absolute;
    z-index: -1;
    top: 0;
    transition: transform 0.3s ease;
    content: "";
}.recycle_info .top_site .main_core a:hover {
    opacity: 1;
    color: #ffffff;
    padding-left: 1.5rem;
}.recycle_info .top_site .main_core a:hover::before {
    transform: translateX(0);
}.media_kit {
    grid-row: 2;
    position: relative;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    grid-column: 1 / 13;
    margin-top: 4rem;
}.media_kit::before {
    width: 60%;
    top: 0;
    left: 50%;
    background: linear-gradient(90deg, transparent, rgb(147,161,189), transparent);
    position: absolute;
    height: 1px;
    transform: translateX(-50%);
    content: "";
}.media_kit .container {
    align-items: center;
    justify-content: center;
    display: flex;
}.media_kit .hackathon {
    opacity: 0.7;
    text-align: center;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
}

@media screen and (max-width: 992px) {.recycle_info .container {
    grid-template-columns: repeat(1, 1fr);
}.recycle_info .company_holder {
    grid-row: 1;
    grid-column: 1;
}.recycle_info .privacy_cta {
    margin-top: 2rem;
    grid-row: 2;
    grid-column: 1;
}.media_kit {
    margin-top: 3rem;
    grid-row: 3;
}
}

@media screen and (max-width: 768px) {.recycle_info {
    padding: 4rem 0 3rem;
}.recycle_info .main_core {
    grid-template-columns: 1fr;
    gap: 2rem;
}.recycle_info .top_site {
    padding: 1.2rem;
}.recycle_info .top_site h5 {
    font-size: calc(22px * 0.9);
}.recycle_info .company_holder::before,
    .recycle_info .company_holder::after {
    height: 40px;
    width: 40px;
}
}

@media screen and (max-width: 576px) {.recycle_info {
    padding: 3rem 0 2rem;
}.recycle_info .company_holder h3 {
    font-size: calc(30px * 0.9);
}.recycle_info .trial_offer {
    font-size: calc(16px * 0.9);
}.recycle_info .top_site .main_core a {
    font-size: calc(16px * 0.9);
}.media_kit {
    padding: 1rem 0;
    margin-top: 2rem;
}}.academic_experience {
    position: relative;
    background: linear-gradient(135deg, rgb(192,198,211) 0%, #ffffff 100%);
    overflow: hidden;
    padding: 5rem 0;
}.academic_experience::before {
    content: "";
    background: 
        linear-gradient(45deg, transparent 49.5%, rgb(147,161,189,0.5) 49.5%, rgb(147,161,189,0.5) 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgb(110,121,175,0.5) 49.5%, rgb(110,121,175,0.5) 50.5%, transparent 50.5%);
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
    opacity: 0.1;
    width: 100%;
    transform: perspective(1000px) rotateX(5deg);
    z-index: 0;
    background-size: 120px 120px;
}.academic_experience .container {
    transform-style: preserve-3d;
    position: relative;
    perspective: 1000px;
    max-width: 1200px;
    z-index: 1;
    margin: 0 auto;
}.academic_experience .feedback_views {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 
                0 5px 15px rgba(0, 0, 0, 0.05),
                0 0 0 1px rgba(0, 0, 0, 0.02);
    padding: 3rem;
    grid-template-columns: 1fr;
    display: grid;
    position: relative;
    transform: perspective(1000px) rotateY(-2deg);
    background: #ffffff;
    grid-gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}.academic_experience .feedback_views:hover {
    transform: perspective(1000px) rotateY(0deg);
}.academic_experience .feedback_views::before {
    content: "";
    left: -10px;
    right: -10px;
    top: -10px;
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity 0.5s ease;
    position: absolute;
    background: linear-gradient(135deg, rgb(147,161,189,0.5) 0%, rgb(110,121,175,0.5) 100%);
    bottom: -10px;
}.academic_experience .feedback_views:hover::before {
    opacity: 0.7;
}.academic_experience .feedback_views > div:nth-child(1) {
    grid-area: photo;
}.academic_experience .feedback_views > div:nth-child(2) {
    grid-area: info;
}.academic_experience .feedback_views > div:nth-child(3) {
    grid-area: quote;
}.academic_experience .img_card_item {
    clip-path: polygon(0% 15%, 15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%);
    width: 240px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    height: 240px;
    transform: translateZ(30px);
}.academic_experience .feedback_views:hover .img_card_item {
    transform: translateZ(50px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}.academic_experience .img_card_item::after {
    left: 0;
    content: "";
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgb(147,161,189,0.5) 0%, transparent 100%);
    opacity: 0.3;
    height: 100%;
    transition: opacity 0.4s ease;
    position: absolute;
}.academic_experience .feedback_views:hover .img_card_item::after {
    opacity: 0.5;
}.academic_experience .name {
    position: relative;
    margin: 0 0 0.5rem;
    color: rgb(147,161,189);
    transition: transform 0.3s ease;
    font-weight: 700;
    transform: translateZ(15px);
    font-size: calc(20px * 1.2);
}.academic_experience .name::after {
    left: 0;
    background: rgb(110,121,175);
    transform: scaleX(0.7);
    position: absolute;
    bottom: -10px;
    height: 3px;
    transition: transform 0.4s ease-out;
    transform-origin: left;
    width: 60px;
    content: "";
}.academic_experience .feedback_views:hover .name::after {
    transform: scaleX(1);
}.academic_experience .feedback_views > div:nth-child(2) > div {
    color: rgb(110,121,175);
    transform: translateZ(10px);
    font-size: calc(12px * 1.1);
    position: relative;
    font-weight: 600;
    margin-top: 1.5rem;
    font-family: Arial, sans-serif;
}.academic_experience .work_overview {
    text-align: justify;
    color: #000000;
    font-size: 12px;
    transform: translateZ(5px);
    line-height: 1.8;
    font-family: Arial, sans-serif;
    position: relative;
}.academic_experience .work_overview::before {
    left: -1.5rem;
    transform: translateZ(5px);
    font-family: Georgia, serif;
    color: rgb(147,161,189,0.5);
    transition: all 0.4s ease;
    font-size: 6rem;
    content: "";
    position: absolute;
    top: -3.5rem;
    opacity: 0.2;
}.academic_experience .feedback_views:hover .work_overview::before {
    transform: translateZ(15px) translateY(-10px);
    opacity: 0.4;
}

@media (min-width: 768px) {.academic_experience .feedback_views {
    align-items: center;
    grid-template-areas:
            "photo info"
            "quote quote";
    grid-template-columns: auto 1fr;
    padding: 4rem;
}.academic_experience .feedback_views > div:nth-child(2) {
    padding-left: 2rem;
}.academic_experience .work_overview {
    margin-top: 2rem;
}
}

@media (min-width: 992px) {.academic_experience {
    padding: 8rem 0;
}.academic_experience .feedback_views {
    grid-template-columns: auto 1fr;
    padding: 5rem;
    grid-template-areas:
            "photo info"
            "photo quote";
    grid-template-rows: auto 1fr;
}.academic_experience .work_overview {
    padding-left: 2rem;
    margin-top: 0;
}.academic_experience .img_card_item {
    width: 280px;
    height: 280px;
}
}

@media (max-width: 767px) {.academic_experience .feedback_views {
    transform: perspective(1000px) rotateY(0deg);
    padding: 2rem;
    grid-template-areas:
            "img_card_item"
            "inquiry_inquiry"
            "work_overview";
}.academic_experience .img_card_item {
    width: 180px;
    margin: 0 auto;
    height: 180px;
}.academic_experience .name {
    text-align: center;
    margin-top: 1.5rem;
}.academic_experience .name::after {
    transform: translateX(-50%) scaleX(0.7);
    left: 50%;
}.academic_experience .feedback_views:hover .name::after {
    transform: translateX(-50%) scaleX(1);
}.academic_experience .feedback_views > div:nth-child(2) > div {
    margin-top: 1rem;
    text-align: center;
}.academic_experience .work_overview {
    text-align: left;
    margin-top: 1.5rem;
}}#privacyWarningBox {
    display: none;
}#privacyWarningBox:checked ~ .consentSettingsDialog {
    opacity: 0;
    visibility: hidden;
}.consentSettingsDialog {
    position: fixed;
    border-top: 3px solid rgb(147,161,189);
    z-index: 90;
    bottom: 0;
    width: 100%;
    font-family: Arial, sans-serif;
    padding: 20px 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.5);
    background: rgb(110,121,175);
}.privacy_cookies {
    border: 2px dashed rgb(147,161,189);
    justify-content: space-between;
    gap: 20px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    padding: 20px 5%;
    align-items: center;
    border-radius: 11px;
}.consentSettingsDialog h5 {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgb(147,161,189);
    font-weight: 700;
    font-size: 23px;
    margin: 0;
}.consentSettingsDialog p {
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
    position: relative;
    color: #ffffff;
}.cookie_layer {
    background: rgb(147,161,189,0.5);
    flex-shrink: 0;
    padding: 10px;
    display: flex;
    margin-right: 20px;
    border-radius: 11px;
    align-items: center;
    justify-content: center;
}.cookie_layer svg {
    fill: rgb(147,161,189);
    height: 60px;
    width: 60px;
}.cookie_updates {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    line-height: 40px;
    min-width: 140px;
    text-decoration: none;
    text-align: center;
    background: rgb(147,161,189);
    margin-left: 10px;
    padding: 10px 20px;
    border: 2px solid rgb(147,161,189);
    flex-shrink: 0;
    color: #000000;
    white-space: nowrap;
    cursor: pointer;
    font-size: 17px;
}.cookie_updates:hover {
    background-color: rgb(110,121,175);
    box-shadow: 0 0 10px rgb(110,121,175);
}.cookie_button.cookie_box {
    border: 2px solid rgb(110,121,175);
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
}.cookie_button.cookie_box:hover {
    box-shadow: 0 0 10px rgb(110,121,175);
}.consentSettingsDialog p a {
    text-decoration: none;
    color: rgb(147,161,189);
    transition: color 0.3s ease;
    border-bottom: 1px dashed rgb(147,161,189);
}.consentSettingsDialog p a:hover {
    color: rgb(110,121,175);
}
@media only screen and (max-width: 1200px) {.consentSettingsDialog {
    padding: 15px 0;
}.privacy_cookies {
    padding: 15px 5%;
}.cookie_layer {
    display: none;
}.privacy_cookies {
    text-align: center;
    flex-direction: column;
    align-items: center;
}.consentSettingsDialog h5 {
    margin-bottom: 10px;
    font-size: 17px;
}.user_dialog {
    margin-bottom: 15px;
}.cookie_updates {
    min-width: 100%;
    margin: 10px 0;
}}
.thankYouWeb {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(192,198,211) 0%, rgb(147,161,189,0.5) 100%);
}.thankYouWeb::before {
    top: 0;
    position: absolute;
    background: 
        radial-gradient(circle at 15% 15%, rgb(147,161,189,0.5) 0%, transparent 50%),
        radial-gradient(circle at 85% 85%, rgb(110,121,175,0.5) 0%, transparent 50%);
    opacity: 0.25;
    left: 0;
    animation: backgroundPulse 12s infinite alternate ease-in-out;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 0;
}.thankYouWeb::after {
    z-index: 0;
    right: -10%;
    height: 40%;
    top: -10%;
    background: rgb(147,161,189,0.5);
    animation: floatElement 15s infinite alternate ease-in-out;
    filter: blur(120px);
    width: 40%;
    opacity: 0.2;
    content: "";
    position: absolute;
}.thankYouWeb .container {
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1200px;
    z-index: 2;
}.thankYouWeb h2 {
    color: #000000;
    max-width: 90%;
    padding-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    font-family: Arial, sans-serif;
    transform: perspective(1000px) rotateX(2deg);
    margin-bottom: 3rem;
    font-size: 34px;
    line-height: 1.3;
}.thankYouWeb h2::after {
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(147,161,189) 0%, rgb(110,121,175) 100%);
    transform-origin: left center;
    content: "";
    width: 120px;
    position: absolute;
    left: 0;
}.thankYouWeb h2:hover::after {
    width: 180px;
}.thankYouWeb .training_space {
    border-radius: 0 10px 10px 0;
    padding: 2.5rem;
    background: linear-gradient(145deg, #ffffff 0%, rgb(255, 255, 255, 0.5) 100%);
    transform: perspective(1000px) rotateY(-1deg);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 
        0 10px 30px -15px rgba(0, 0, 0, 0.5),
        0 2px 5px rgba(0,0,0,0.05);
    position: relative;
    border-left: 4px solid rgb(147,161,189);
}.thankYouWeb .training_space:hover {
    transform: perspective(1000px) rotateY(0);
}.thankYouWeb .training_space::before {
    background: 
        linear-gradient(45deg, transparent 49.5%, rgb(110,121,175,0.5) 49.5%, rgb(110,121,175,0.5) 50.5%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgb(110,121,175,0.5) 49.5%, rgb(110,121,175,0.5) 50.5%, transparent 50.5%);
    content: "";
    width: 100%;
    z-index: 0;
    position: absolute;
    height: 100%;
    left: 0;
    opacity: 0.05;
    background-size: 40px 40px;
    top: 0;
    pointer-events: none;
}.thankYouWeb ul {
    padding: 0;
    position: relative;
    margin: 0;
    list-style: none;
    z-index: 1;
}.thankYouWeb li {
    padding-left: 2rem;
    position: relative;
}.thankYouWeb li::before {
    background: rgb(147,161,189);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    width: 12px;
    position: absolute;
    animation: rotateDiamond 8s infinite linear;
    height: 12px;
    content: "";
    top: 0.5rem;
    left: 0;
}.thankYouWeb span {
    font-family: Arial, sans-serif;
    display: block;
    line-height: 1.8;
    color: #000000;
    font-size: 13px;
    position: relative;
}.thankYouWeb span::after {
    width: 60px;
    right: 0;
    bottom: -15px;
    content: "";
    background: linear-gradient(90deg, transparent, rgb(110,121,175,0.5));
    position: absolute;
    height: 4px;
}

@keyframes backgroundPulse {
    0% {
        opacity: 0.2;
        transform: scale(1);
    }
    100% {
        opacity: 0.35;
        transform: scale(1.1);
    }
}

@keyframes floatElement {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(3deg);
    }
    100% {
        transform: translate(20px, -20px) rotate(-3deg);
    }
}

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

@media (max-width: 991px) {.thankYouWeb {
    padding: 5rem 0;
}.thankYouWeb h2 {
    font-size: calc(34px * 0.9);
    margin-bottom: 2rem;
    max-width: 100%;
}.thankYouWeb .training_space {
    padding: 2rem;
}
}

@media (max-width: 767px) {.thankYouWeb {
    padding: 4rem 0;
}.thankYouWeb h2 {
    margin-bottom: 1.5rem;
    transform: perspective(1000px) rotateX(1deg);
    font-size: calc(34px * 0.8);
}.thankYouWeb .training_space {
    padding: 1.5rem;
    transform: perspective(1000px) rotateY(-0.5deg);
}.thankYouWeb li {
    padding-left: 1.5rem;
}.thankYouWeb li::before {
    height: 10px;
    width: 10px;
    top: 0.4rem;
}
}

@media (max-width: 575px) {.thankYouWeb {
    padding: 3rem 0;
}.thankYouWeb h2 {
    transform: none;
    font-size: calc(34px * 0.7);
}.thankYouWeb h2::after {
    height: 3px;
    width: 80px;
}.thankYouWeb h2:hover::after {
    width: 120px;
}.thankYouWeb .training_space {
    padding: 1.25rem;
    transform: none;
    border-left-width: 3px;
}.thankYouWeb span {
    line-height: 1.7;
    font-size: calc(13px * 0.95);
}.thankYouWeb span::after {
    bottom: -10px;
    height: 3px;
    width: 40px;
}}.pricing_item {
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}.pricing_item::before {
    top: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
    right: 0;
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
}.pricing_item .container {
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    max-width: 1200px;
}.pricing_item .plan_matrix {
    position: relative;
}.pricing_item h2 {
    font-size: 38px;
    opacity: 0;
    transform: translateY(20px);
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
}.pricing_item .study_sub {
    transform: translateY(20px);
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: rgb(255, 255, 255, 0.5);
}.pricing_item .learn_offers {
    padding: 0;
    display: grid;
    list-style: none;
    margin: 0;
    perspective: 1000px;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}.pricing_item .learn_offers li {
    opacity: 0;
    animation: fadeInStagger 0.8s ease-out forwards;
    transform: translateZ(0) rotateY(5deg) translateX(20px);
}.pricing_item .learn_offers li:nth-child(1) {
    animation-delay: 0.3s;
}.pricing_item .learn_offers li:nth-child(2) {
    animation-delay: 0.5s;
}.pricing_item .learn_offers li:nth-child(3) {
    animation-delay: 0.7s;
}.pricing_item .learn_offers li:nth-child(4) {
    animation-delay: 0.9s;
}.pricing_item .pro_rates {
    display: block;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}.pricing_item .payment_plans {
    border: 1px solid rgba(255,255,255,0.1);
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    transform: translateZ(0);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.1);
}.pricing_item .payment_plans::before {
    background: linear-gradient(45deg, rgb(147,161,189,0.5), rgb(110,121,175,0.5));
    opacity: 0;
    width: 100%;
    position: absolute;
    top: 0;
    transition: opacity 0.6s ease;
    height: 100%;
    left: 0;
    z-index: -1;
    content: "";
}.pricing_item .learn_deals {
    min-height: 400px;
    color: #ffffff;
    flex-direction: column;
    display: flex;
    height: 100%;
    padding: 35px 30px;
}.pricing_item .learn_deals h4 {
    font-weight: 700;
    padding-bottom: 15px;
    color: #ffffff;
    position: relative;
    transition: transform 0.3s ease-out;
    margin: 0 0 15px;
    font-size: calc(21px * 1.1);
}.pricing_item .learn_deals h4::after {
    transition: width 0.4s ease;
    width: 60px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    background: rgb(147,161,189);
    height: 3px;
}.pricing_item .learn_deals p {
    word-wrap: break-word;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    overflow-wrap: break-word;
    margin: 0 0 auto;
    flex-grow: 1;
    hyphens: auto;
    font-size: 17px;
}.pricing_item .cost_table {
    padding: 10px 20px;
    background: linear-gradient(135deg, rgb(147,161,189) 0%, rgb(110,121,175) 100%);
    font-size: calc(21px * 1.3);
    color: #ffffff;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    font-weight: 700;
    margin-top: 25px;
    align-self: flex-start;
}.pricing_item .pro_rates:hover {
    transform: translateY(-10px) scale(1.02);
}.pricing_item .pro_rates:hover .payment_plans {
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 15px 20px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.2);
}.pricing_item .pro_rates:hover .payment_plans::before {
    opacity: 0.05;
}.pricing_item .pro_rates:hover .learn_deals h4 {
    transform: translateY(-5px);
}.pricing_item .pro_rates:hover .learn_deals h4::after {
    width: 100px;
}.pricing_item .pro_rates:hover .cost_table {
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transform: scale(1.05) translateY(-5px);
}

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

@keyframes fadeInStagger {
    from {
        opacity: 0;
        transform: translateZ(-50px) rotateY(10deg) translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateZ(0) rotateY(0) translateX(0);
    }
}

@media (max-width: 1024px) {.pricing_item {
    padding: 80px 0;
}.pricing_item .learn_offers {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}.pricing_item .learn_deals {
    min-height: 380px;
    padding: 30px 25px;
}
}

@media (max-width: 768px) {.pricing_item {
    padding: 60px 0;
}.pricing_item h2 {
    font-size: calc(38px * 0.9);
}.pricing_item .study_sub {
    margin-bottom: 40px;
    font-size: calc(17px * 0.95);
}.pricing_item .learn_offers {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}.pricing_item .learn_deals {
    padding: 25px 20px;
    min-height: 350px;
}.pricing_item .learn_deals h4 {
    font-size: 21px;
}.pricing_item .cost_table {
    font-size: calc(21px * 1.1);
}
}

@media (max-width: 576px) {.pricing_item {
    padding: 50px 0;
}.pricing_item .container {
    padding: 0 15px;
}.pricing_item h2 {
    font-size: calc(38px * 0.8);
}.pricing_item .study_sub {
    font-size: calc(17px * 0.9);
    margin-bottom: 30px;
}.pricing_item .learn_offers {
    gap: 25px;
    grid-template-columns: 1fr;
}.pricing_item .learn_deals {
    min-height: auto;
}.pricing_item .learn_deals p {
    font-size: calc(17px * 0.9);
}.pricing_item .cost_table {
    align-self: center;
    margin-top: 20px;
}}.opening_page {
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    justify-content: center;
    display: flex;
    min-height: 100vh;
}.opening_page .fast_studypro {
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
    z-index: 1;
    height: 100vh;
    justify-content: center;
}.opening_page .fast_studypro::before {
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    backdrop-filter: blur(3px);
    background: linear-gradient(135deg, rgb(147,161,189,0.5), rgba(0, 0, 0, 0.5));
    z-index: -1;
    content: "";
}.opening_page .learn_pro {
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}.opening_page .learn_pro::before {
    opacity: 0.3;
    right: -5px;
    top: -5px;
    transform: perspective(1000px) rotateX(-1deg);
    z-index: -1;
    position: absolute;
    content: "";
    filter: blur(8px);
    background: linear-gradient(45deg, rgb(147,161,189), rgb(110,121,175));
    bottom: -5px;
    left: -5px;
}.opening_page .learn_pro > div {
    position: relative;
    transform: translateZ(20px);
    margin-bottom: 2rem;
}.opening_page .learn_pro > div:first-child {
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1.5rem;
}.opening_page .learn_pro > div:first-child::after {
    height: 3px;
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    width: 0;
    background: rgb(110,121,175);
    animation: lineGrow 2s ease-out forwards;
}.opening_page .title_style_header {
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: calc(46px * 1.2);
    color: #ffffff;
    transform: translateY(-5px);
    opacity: 0;
    animation: fadeSlideIn 1s ease-out forwards 0.3s;
    letter-spacing: 1px;
    font-weight: 700;
}.opening_page h3 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    animation: fadeSlideIn 1s ease-out forwards 0.6s;
    font-size: 34px;
    line-height: 1.4;
    transform: translateY(10px);
    color: #ffffff;
}.opening_page p {
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    max-width: 90%;
    animation: fadeSlideIn 1s ease-out forwards 0.9s;
    font-size: calc(16px * 1.2);
    transform: translateY(10px);
    opacity: 0;
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  to {
    width: 80px;
  }
}

@media (max-width: 992px) {.opening_page .learn_pro {
    padding: 2.5rem;
    transform: perspective(1000px) rotateX(1deg);
}.opening_page .title_style_header {
    font-size: calc(46px * 1.1);
}.opening_page h3 {
    font-size: calc(34px * 0.9);
}
}

@media (max-width: 768px) {.opening_page .fast_studypro {
    height: auto;
    min-height: 100vh;
}.opening_page .learn_pro {
    transform: none;
    padding: 2rem;
    width: 95%;
}.opening_page .learn_pro::before {
    transform: none;
}.opening_page .title_style_header {
    font-size: 46px;
}.opening_page h3 {
    font-size: calc(34px * 0.8);
}.opening_page p {
    font-size: 16px;
    max-width: 100%;
}
}

@media (max-width: 576px) {.opening_page .learn_pro {
    padding: 1.5rem;
}.opening_page .title_style_header {
    font-size: calc(46px * 0.85);
}.opening_page h3 {
    margin-bottom: 1rem;
    font-size: calc(34px * 0.7);
}.opening_page p {
    font-size: calc(16px * 0.9);
    line-height: 1.5;
}
  
  @keyframes lineGrow {
    to {
      width: 60px;
    }
  }
}

@media (hover: hover) {.opening_page .learn_pro:hover {
    transform: perspective(1000px) rotateX(0);
    transition: transform 0.5s ease;
}.opening_page .learn_pro:hover::before {
    transition: all 0.5s ease;
    filter: blur(10px);
    opacity: 0.4;
}
}

@media (prefers-reduced-motion: reduce) {.opening_page .learn_pro,
  .opening_page .learn_pro::before {
    transform: none;
    transition: none;
}.opening_page .title_style_header,
  .opening_page h3,
  .opening_page p {
    transform: none;
    opacity: 1;
    animation: none;
}
  
  @keyframes lineGrow {
    to {
      width: 80px;
    }
  }
}