* {
    padding: 0;
    box-sizing: border-box;
    margin: 0;
}html,body {
    scroll-behavior: auto;
    height: 100%;
    font-family: Arial, sans-serif;
    min-height: 100%;
    color: #000000;
}.testimoniala {
    flex: 0 0 auto;
}svg {
    width: 30px;
    height: 30px;
}.nav_infoX {
    flex: 1 0 auto;
}.viewport-containerq {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}header,footer {
    width: 100%;
}a {
    color: inherit;
    text-decoration: none;
}.container {
    width: 1129px;
    margin: auto;
    max-width: 100%;
}

@media only screen and (max-width: 1200px)  {.container {
    width: 100%;
    padding: 0 20px;
}
}
@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}
.thanks_noted {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(223,222,227) 0%, rgb(182,178,194,0.5) 30%, rgb(223,222,227) 70%, rgb(133,106,160,0.5) 100%);
}.thanks_noted::before {
    left: 0;
    content: "";
    background: radial-gradient(circle at 30% 50%, rgb(182,178,194,0.5) 0%, transparent 60%);
    z-index: 0;
    top: 0;
    position: absolute;
    animation: pulseGlow 10s ease-in-out infinite;
    height: 100%;
    width: 100%;
}.thanks_noted::after {
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 85% 15%, #ffffff 50%, transparent 60%),
        radial-gradient(2px 2px at 10% 75%, #ffffff 50%, transparent 60%),
        radial-gradient(2px 2px at 20% 20%, #ffffff 50%, transparent 60%),
        radial-gradient(2px 2px at 70% 80%, #ffffff 50%, transparent 60%),
        radial-gradient(2px 2px at 90% 60%, #ffffff 50%, transparent 60%);
    opacity: 0.7;
    z-index: 0;
    position: absolute;
    content: "";
}.thanks_noted .container {
    padding: 0 20px;
    margin: 0 auto;
    z-index: 1;
    max-width: 1200px;
    position: relative;
}.thanks_noted .study_learnJ {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    backdrop-filter: blur(10px);
    display: flex;
    gap: 2.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    padding: 3.5rem;
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: perspective(1000px) rotateX(2deg);
    position: relative;
    flex-direction: column;
}.thanks_noted .study_learnJ::before {
    opacity: 0.6;
    border-radius: 10px;
    width: 80%;
    height: 10px;
    left: 50%;
    content: "";
    transform: translateX(-50%);
    position: absolute;
    top: -5px;
    background: linear-gradient(90deg, transparent, rgb(182,178,194) 50%, transparent);
}.thanks_noted .study_learnJ::after {
    position: absolute;
    height: 10px;
    background: linear-gradient(90deg, transparent, rgb(133,106,160) 50%, transparent);
    transform: translateX(-50%);
    border-radius: 10px;
    width: 80%;
    content: "";
    bottom: -5px;
    opacity: 0.6;
    left: 50%;
}.thanks_noted .study_learnJ > div:first-child {
    padding-bottom: 1.5rem;
    position: relative;
}.thanks_noted .study_learnJ > div:first-child::after {
    transform-origin: left;
    background: rgb(182,178,194);
    animation: expandLine 1.5s ease-out forwards;
    width: 60px;
    height: 3px;
    left: 0;
    position: absolute;
    content: "";
    bottom: 0;
}.thanks_noted h5 {
    position: relative;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
    color: #000000;
    font-weight: 700;
    transform: translateY(0);
}.thanks_noted a {
    position: relative;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}.thanks_noted a::before {
    position: absolute;
    width: 10px;
    top: 0;
    transform: skewX(-20deg);
    background: linear-gradient(to right, transparent, rgb(182,178,194,0.5), transparent);
    opacity: 0;
    height: 100%;
    animation: shine 3s infinite;
    content: "";
    transition: opacity 0.3s ease;
    left: -30px;
}.thanks_noted a:hover::before {
    opacity: 1;
}.thanks_noted p {
    padding: 0.5rem 1rem;
    line-height: 1.7;
    transition: all 0.3s ease;
    font-size: 12px;
    margin: 0;
    position: relative;
    color: #000000;
    border-left: 3px solid rgb(133,106,160,0.5);
}.thanks_noted a:hover p {
    color: rgb(182,178,194);
    transform: translateX(5px);
}.thanks_noted .study_learnJ:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 50px rgba(255, 255, 255, 0.3);
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes expandLine {
    0% {
        width: 0;
    }
    100% {
        width: 60px;
    }
}

@keyframes shine {
    0% {
        left: -30px;
    }
    20% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

@media (min-width: 768px) {.thanks_noted {
    padding: 150px 0;
}.thanks_noted .study_learnJ {
    margin: 0 auto;
    max-width: 85%;
    padding: 4rem 5rem;
    transform: perspective(1000px) rotateX(2deg) rotateY(1deg);
}.thanks_noted .study_learnJ:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}.thanks_noted h5 {
    font-size: calc(20px * 1.2);
}.thanks_noted p {
    padding: 1rem 1.5rem;
    line-height: 1.8;
    font-size: calc(12px * 1.1);
}
}

@media (min-width: 992px) {.thanks_noted .study_learnJ {
    gap: 3rem;
    max-width: 75%;
}.thanks_noted .study_learnJ > div:first-child::after {
    width: 80px;
}
    
    @keyframes expandLine {
        0% {
            width: 0;
        }
        100% {
            width: 80px;
        }
    }
}

@media (max-width: 767px) {.thanks_noted {
    padding: 60px 0;
}.thanks_noted .study_learnJ {
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
}.thanks_noted h5 {
    font-size: calc(20px * 0.9);
}.thanks_noted p {
    padding: 0.5rem;
    border-left-width: 2px;
}
}

@media (max-width: 480px) {.thanks_noted {
    padding: 40px 0;
}.thanks_noted .study_learnJ {
    padding: 2rem 1.25rem;
    transform: perspective(1000px) rotateX(1deg);
}.thanks_noted h5 {
    font-size: calc(20px * 0.8);
}.thanks_noted p {
    font-size: calc(12px * 0.9);
    line-height: 1.6;
}}.user_reviewsI {
    overflow: hidden;
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, rgb(223,222,227) 0%, rgb(182,178,194,0.5) 100%);
}.user_reviewsI::before {
    width: 100%;
    content: "";
    background: radial-gradient(circle at 70% 30%, rgb(133,106,160,0.5) 0%, transparent 60%);
    z-index: 1;
    top: 0;
    height: 100%;
    left: 0;
    position: absolute;
    opacity: 0.4;
}.user_reviewsI::after {
    opacity: 0.3;
    left: -10%;
    position: absolute;
    height: 20px;
    transform: rotate(-1deg);
    content: "";
    background: #ffffff;
    bottom: -10px;
    width: 120%;
    filter: blur(15px);
}.user_reviewsI h2 {
    text-shadow: 2px 2px 4px rgb(255, 255, 255, 0.5);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: 0.5px;
    font-size: 31px;
    text-align: center;
    color: #000000;
    transform: perspective(1000px) rotateX(2deg);
    z-index: 2;
}.user_reviewsI h2::after {
    width: 80px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    height: 4px;
    bottom: -15px;
    content: "";
    border-radius: 10px;
    background: linear-gradient(90deg, rgb(182,178,194) 0%, rgb(133,106,160) 100%);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}.user_reviewsI .container.study_learnJ {
    margin: 0 auto;
    z-index: 2;
    position: relative;
    max-width: 1200px;
}.user_reviewsI .student_glowj {
    gap: 2rem;
    padding: 0.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
}.user_reviewsI .rating_voicesS {
    box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.08), 
                -12px -12px 24px rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    padding: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease-out;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}.user_reviewsI .rating_voicesS:hover {
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1), 
                -15px -15px 30px rgba(255, 255, 255, 1),
                0 10px 20px rgba(rgb(182,178,194,0.5), 0.2);
    transform: translateY(-8px) scale(1.02);
}.user_reviewsI .rating_voicesS::before {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scaleX(0);
    transform-origin: left;
    left: 0;
    height: 5px;
    background: linear-gradient(90deg, rgb(182,178,194) 0%, rgb(133,106,160) 100%);
    top: 0;
    content: "";
    width: 100%;
    position: absolute;
}.user_reviewsI .rating_voicesS:hover::before {
    transform: scaleX(1);
}.user_reviewsI .rating_voicesS h3 {
    font-weight: 600;
    color: #000000;
    position: relative;
    font-size: 19px;
    display: inline-block;
    margin-bottom: 0.75rem;
}.user_reviewsI .rating_voicesS h3::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
    background: rgb(133,106,160);
    width: 30px;
    height: 2px;
}.user_reviewsI .rating_voicesS:hover h3::after {
    width: 100%;
}.user_reviewsI .rating_voicesS .description {
    color: #000000;
    margin-bottom: 1.5rem;
    font-size: 12px;
    z-index: 1;
    line-height: 1.6;
    position: relative;
}.user_reviewsI .rating_voicesS .description::before {
    z-index: -1;
    position: absolute;
    content: "";
    left: -1rem;
    opacity: 0.15;
    font-size: 5rem;
    top: -2rem;
    color: rgb(133,106,160,0.5);
    transition: transform 0.4s ease, opacity 0.3s ease;
}.user_reviewsI .rating_voicesS:hover .description::before {
    opacity: 0.25;
    transform: translateY(-5px) rotate(-5deg);
}.user_reviewsI .rating_voicesS div {
    width: 70px;
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    transition: transform 0.4s ease;
    box-shadow: 
        inset 4px 4px 8px rgba(0, 0, 0, 0.1),
        inset -4px -4px 8px rgba(255, 255, 255, 0.8),
        4px 4px 10px rgba(0, 0, 0, 0.05);
    height: 70px;
}.user_reviewsI .rating_voicesS:hover div {
    transform: scale(1.1) translateX(5px);
}.user_reviewsI .rating_voicesS div::before {
    transition: opacity 0.3s ease;
    width: 100%;
    z-index: 2;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    position: absolute;
    opacity: 0;
    content: "";
}.user_reviewsI .rating_voicesS:hover div::before {
    opacity: 1;
}.user_reviewsI .rating_voicesS div img {
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
    height: 100%;
}.user_reviewsI .rating_voicesS:hover div img {
    transform: scale(1.1);
}

@media (max-width: 991px) {.user_reviewsI {
    padding: 4rem 0;
}.user_reviewsI h2 {
    font-size: calc(31px * 0.9);
    margin-bottom: 2.5rem;
}.user_reviewsI .student_glowj {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
}

@media (max-width: 767px) {.user_reviewsI {
    padding: 3rem 0;
}.user_reviewsI h2 {
    transform: perspective(1000px) rotateX(1deg);
    font-size: calc(31px * 0.8);
    margin-bottom: 2rem;
}.user_reviewsI h2::after {
    height: 3px;
    width: 60px;
}.user_reviewsI .student_glowj {
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}.user_reviewsI .rating_voicesS {
    padding: 1.25rem;
}
}

@media (max-width: 575px) {.user_reviewsI {
    padding: 2.5rem 0;
}.user_reviewsI h2 {
    padding: 0 1rem;
    font-size: calc(31px * 0.7);
    transform: none;
}.user_reviewsI .student_glowj {
    gap: 1.5rem;
    padding: 0 1rem;
    grid-template-columns: 1fr;
}.user_reviewsI .rating_voicesS {
    padding: 1.25rem;
}.user_reviewsI .rating_voicesS:hover {
    transform: translateY(-5px);
}
}

@media (min-width: 1400px) {.user_reviewsI h2 {
    font-size: calc(31px * 1.1);
}.user_reviewsI .student_glowj {
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}.user_reviewsI .rating_voicesS {
    padding: 2rem;
}
}

@media (prefers-reduced-motion: reduce) {.user_reviewsI .rating_voicesS,
    .user_reviewsI .rating_voicesS::before,
    .user_reviewsI .rating_voicesS h3::after,
    .user_reviewsI .rating_voicesS div,
    .user_reviewsI .rating_voicesS div img,
    .user_reviewsI .rating_voicesS .description::before {
    transition: none;
}.user_reviewsI .rating_voicesS:hover {
    transform: none;
}.user_reviewsI .rating_voicesS:hover div {
    transform: none;
}.user_reviewsI .rating_voicesS:hover div img {
    transform: none;
}}.metrics_summaryC {
    position: relative;
    overflow: hidden;
    background: rgb(223,222,227);
    padding: 5rem 0;
}.metrics_summaryC::before {
    top: 0;
    background: linear-gradient(135deg, rgb(182,178,194,0.5) 0%, transparent 70%);
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0.1;
    z-index: 0;
    content: "";
    position: absolute;
}.metrics_summaryC::after {
    content: "";
    height: 100%;
    z-index: 0;
    position: absolute;
    width: 100%;
    background: 
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 11px),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 11px);
    left: 0;
    top: 0;
    opacity: 0.5;
}.metrics_summaryC .container {
    z-index: 1;
    padding: 0 1.5rem;
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
}.metrics_summaryC .knowledge_upgradec {
    position: relative;
    margin-bottom: 3rem;
    background: linear-gradient(to right, rgb(182,178,194,0.5) 0%, transparent 100%);
    padding: 3rem;
    border-radius: 13px 0 0 13px;
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.05);
}.metrics_summaryC .knowledge_upgradec::before {
    top: 0;
    height: 100%;
    position: absolute;
    border-radius: 10px 0 0 10px;
    left: 0;
    width: 5px;
    content: "";
    background: rgb(182,178,194);
}.metrics_summaryC .statistics_upgradeK {
    margin: 0 0 1.5rem;
    font-size: 32px;
    color: #000000;
    position: relative;
    display: inline-block;
    font-weight: 700;
}.metrics_summaryC .statistics_upgradeK::after {
    content: "";
    border-radius: 10px;
    left: 0;
    bottom: -0.5rem;
    position: absolute;
    height: 3px;
    background: rgb(133,106,160);
    width: 50%;
}.metrics_summaryC .statistics_extras4 {
    line-height: 1.7;
    margin: 0;
    max-width: 80%;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
}.metrics_summaryC .expert_prosa {
    flex-wrap: wrap;
    margin: -1rem;
    display: flex;
}.metrics_summaryC .key_prosy {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 13px;
    margin: 1rem;
    flex: 0 0 calc(50% - 2rem);
    align-items: flex-start;
    transition: all 0.3s ease;
    display: flex;
    overflow: hidden;
    padding: 0;
}.metrics_summaryC .key_prosy:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}.metrics_summaryC .key_prosy h4 {
    color: #ffffff;
    margin: 0;
    padding: 2.5rem;
    position: relative;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 40%;
    font-size: calc(32px * 1.5);
    background: rgb(182,178,194);
    overflow: hidden;
    display: flex;
    align-items: center;
}.metrics_summaryC .key_prosy:nth-child(even) h4 {
    background: rgb(133,106,160);
}.metrics_summaryC .key_prosy h4::before {
    height: 200%;
    position: absolute;
    width: 200%;
    transition: opacity 0.3s ease;
    opacity: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    top: -50%;
    left: -50%;
    content: "";
}.metrics_summaryC .key_prosy:hover h4::before {
    opacity: 1;
}.metrics_summaryC .key_prosy span {
    font-size: 14px;
    align-items: center;
    font-weight: 400;
    padding: 2.5rem;
    color: #000000;
    flex: 1;
    display: flex;
}.metrics_summaryC svg {
    width: 24px;
    right: 1rem;
    height: 24px;
    transition: all 0.3s ease;
    top: 1rem;
    position: absolute;
    fill: rgba(255, 255, 255, 0.5);
}.metrics_summaryC svg path {
    fill: inherit;
}.metrics_summaryC .key_prosy:hover svg {
    transform: scale(1.2) rotate(15deg);
    fill: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {.metrics_summaryC .statistics_extras4 {
    max-width: 100%;
}.metrics_summaryC .key_prosy h4 {
    padding: 2rem;
    font-size: calc(32px * 1.3);
}.metrics_summaryC .key_prosy span {
    padding: 2rem;
}
}

@media (max-width: 768px) {.metrics_summaryC {
    padding: 4rem 0;
}.metrics_summaryC .knowledge_upgradec {
    margin-bottom: 2rem;
    padding: 2rem;
}.metrics_summaryC .key_prosy {
    flex: 0 0 calc(100% - 2rem);
}.metrics_summaryC .key_prosy h4 {
    font-size: calc(32px * 1.2);
    padding: 1.8rem;
}.metrics_summaryC .key_prosy span {
    padding: 1.8rem;
}.metrics_summaryC .statistics_upgradeK {
    margin-bottom: 1.2rem;
    font-size: calc(32px * 0.9);
}.metrics_summaryC .statistics_extras4 {
    line-height: 1.6;
    font-size: calc(14px * 0.95);
}
}

@media (max-width: 480px) {.metrics_summaryC {
    padding: 3rem 0;
}.metrics_summaryC .knowledge_upgradec {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}.metrics_summaryC .key_prosy {
    flex-direction: column;
}.metrics_summaryC .key_prosy h4 {
    flex: 0 0 auto;
    padding: 1.5rem;
    font-size: 32px;
    width: 100%;
}.metrics_summaryC .key_prosy span {
    text-align: center;
    padding: 1.5rem;
    justify-content: center;
}.metrics_summaryC .statistics_upgradeK {
    font-size: calc(32px * 0.8);
    margin-bottom: 1rem;
}.metrics_summaryC .statistics_extras4 {
    line-height: 1.5;
    font-size: calc(14px * 0.9);
}.metrics_summaryC svg {
    top: 0.8rem;
    right: 0.8rem;
    width: 20px;
    height: 20px;
}}.greeting_pagev {
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, rgb(223,222,227) 0%, rgba(0, 0, 0, 0.5) 100%);
    padding: 4rem 2rem;
    position: relative;
}.greeting_pagev::before {
    bottom: 0;
    right: 0;
    content: "";
    z-index: 1;
    position: absolute;
    background: radial-gradient(circle at 30% 40%, rgb(182,178,194,0.5) 0%, transparent 60%);
    opacity: 0.15;
    top: 0;
    left: 0;
}.greeting_pagev::after {
    z-index: 1;
    content: "";
    position: absolute;
    width: 80%;
    transform: rotate(15deg);
    opacity: 0.1;
    top: -50%;
    background: linear-gradient(45deg, rgb(133,106,160,0.5) 0%, transparent 70%);
    height: 200%;
    right: -25%;
}.greeting_pagev .start_headM {
    transform: translateY(0);
    grid-template-columns: 1fr;
    position: relative;
    width: 100%;
    gap: 3rem;
    animation: fadeInUp 1.2s ease-out forwards;
    max-width: 1200px;
    display: grid;
    z-index: 2;
}@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.greeting_pagev .start_headM > div:first-child {
    position: relative;
    transform: translateX(0);
    border-left: 3px solid rgb(182,178,194);
    padding: 2rem;
    animation: slideInLeft 1s ease-out 0.3s both;
}@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.greeting_pagev .start_headM > div:first-child::before {
    height: 1px;
    position: absolute;
    background: linear-gradient(to right, rgb(182,178,194) 0%, transparent 100%);
    width: 30%;
    top: 0;
    content: "";
    left: 0;
}.greeting_pagev .start_headM > div:first-child::after {
    position: absolute;
    content: "";
    background: linear-gradient(to right, rgb(182,178,194) 0%, transparent 100%);
    height: 1px;
    bottom: 0;
    left: 0;
    width: 50%;
}.greeting_pagev .start_headM > div:first-child p {
    margin: 0;
    letter-spacing: 0.03em;
    font-size: calc(16px * 1.25);
    color: #000000;
    font-family: Arial, sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    transform: translateY(0);
    line-height: 1.6;
    animation: fadeIn 1.4s ease-out 0.5s both;
}@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.greeting_pagev .skill_spaceX {
    animation: revealUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.6s both;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 15px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(0) scale(1);
    transition: transform 0.4s ease-out;
    position: relative;
    overflow: hidden;
}@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.greeting_pagev .skill_spaceX:hover {
    transform: translateY(-5px) scale(1.01);
}.greeting_pagev .skill_spaceX > div {
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    padding: 3rem;
    position: relative;
    min-height: 400px;
}.greeting_pagev .skill_spaceX > div::before {
    right: 0;
    left: 0;
    content: "";
    top: 0;
    z-index: 1;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 80%);
    position: absolute;
}.greeting_pagev .skill_spaceX > div::after {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: linear-gradient(to right, rgb(182,178,194) 0%, rgb(133,106,160) 100%);
    transform: scaleX(0);
    left: 0;
    width: 100%;
    transform-origin: left;
    position: absolute;
    content: "";
    height: 5px;
    bottom: 0;
}.greeting_pagev .skill_spaceX:hover > div::after {
    transform: scaleX(1);
}.greeting_pagev .skill_spaceX h3 {
    font-size: calc(21px * 1.1);
    animation: fadeSlideUp 1s ease-out 0.9s forwards;
    z-index: 2;
    position: relative;
    color: #ffffff;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    opacity: 0;
}@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.greeting_pagev .skill_spaceX > div > div {
    position: relative;
    transform: translateY(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    animation: fadeSlideUp 1s ease-out 1.2s forwards;
    opacity: 0;
    z-index: 2;
}.greeting_pagev .skill_spaceX .title_style_header {
    font-size: calc(41px * 1.2);
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}.greeting_pagev .skill_spaceX .title_style_header::before {
    left: -10px;
    background: rgb(182,178,194);
    position: absolute;
    width: 3px;
    transform: translateY(-50%) scaleY(0);
    height: 70%;
    animation: growDown 0.6s ease-out 1.5s forwards;
    top: 50%;
    transform-origin: top;
    content: "";
}

@keyframes growDown {
  from {
    transform: translateY(-50%) scaleY(0);
  }
  to {
    transform: translateY(-50%) scaleY(1);
  }
}

@media (min-width: 768px) {.greeting_pagev {
    padding: 5rem 3rem;
}.greeting_pagev .start_headM {
    grid-template-columns: 0.4fr 0.6fr;
    gap: 4rem;
}.greeting_pagev .start_headM > div:first-child {
    align-items: center;
    border-left: 4px solid rgb(182,178,194);
    padding: 2.5rem;
    display: flex;
}.greeting_pagev .skill_spaceX > div {
    padding: 4rem;
    min-height: 500px;
}.greeting_pagev .skill_spaceX h3 {
    max-width: 90%;
    font-size: calc(21px * 1.2);
}.greeting_pagev .skill_spaceX .title_style_header {
    font-size: calc(41px * 1.4);
}
}

@media (min-width: 1200px) {.greeting_pagev {
    padding: 6rem 4rem;
}.greeting_pagev .start_headM {
    grid-template-columns: 0.35fr 0.65fr;
    gap: 5rem;
}.greeting_pagev .start_headM > div:first-child p {
    font-size: calc(16px * 1.4);
}.greeting_pagev .skill_spaceX > div {
    padding: 5rem;
    min-height: 550px;
}.greeting_pagev .skill_spaceX h3 {
    max-width: 80%;
    font-size: calc(21px * 1.3);
}.greeting_pagev .skill_spaceX .title_style_header {
    font-size: calc(41px * 1.5);
}
}

@media (max-width: 767px) {.greeting_pagev {
    padding: 3rem 1.5rem;
}.greeting_pagev .start_headM > div:first-child {
    padding: 1.5rem;
}.greeting_pagev .start_headM > div:first-child p {
    font-size: 16px;
}.greeting_pagev .skill_spaceX > div {
    padding: 2rem;
    min-height: 350px;
}.greeting_pagev .skill_spaceX h3 {
    font-size: 21px;
}.greeting_pagev .skill_spaceX .title_style_header {
    font-size: 28px;
}}.academic_expertiseR {
    position: relative;
    overflow: hidden;
    background-color: rgb(223,222,227);
    perspective: 1000px;
    padding: 80px 0;
}.academic_expertiseR::before {
    height: 120%;
    top: -10%;
    width: 120%;
    transform: skewY(-5deg);
    left: -5%;
    background: linear-gradient(
        135deg,
        rgb(133,106,160,0.5) 0%,
        transparent 40%,
        rgb(182,178,194,0.5) 100%
    );
    position: absolute;
    content: "";
    z-index: 0;
}.academic_expertiseR .container {
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
    position: relative;
    max-width: 1200px;
}.academic_expertiseR .rating_voicesS {
    display: grid;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    grid-template-columns: 1fr;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: rgba(255, 255, 255, 0.95);
    transform: perspective(1000px) rotateY(-2deg);
    border-left: 4px solid rgb(182,178,194);
    transform-style: preserve-3d;
    gap: 30px;
    padding: 40px;
}.academic_expertiseR .rating_voicesS:hover {
    transform: perspective(1000px) rotateY(0deg) translateZ(10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(0, 0, 0, 0.07),
        0 0 0 1px rgba(0, 0, 0, 0.03);
}.academic_expertiseR .rating_voicesS > div:first-child {
    transform: translateZ(20px);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease-out;
    height: 240px;
    position: relative;
}.academic_expertiseR .rating_voicesS:hover > div:first-child {
    transform: translateZ(40px) translateY(-5px);
}.academic_expertiseR .rating_voicesS .img_grid_wrapperI {
    width: 100%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
}.academic_expertiseR .rating_voicesS:hover .img_grid_wrapperI {
    transform: scale(1.03);
}.academic_expertiseR .rating_voicesS > div:nth-child(2) {
    position: relative;
    transform: translateZ(10px);
    padding-left: 15px;
}.academic_expertiseR .rating_voicesS > div:nth-child(2)::before {
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    top: 0;
    transform-origin: top;
    width: 3px;
    position: absolute;
    content: "";
    height: 100%;
    transform: scaleY(0);
    left: 0;
    background: linear-gradient(
        to bottom,
        rgb(182,178,194) 0%,
        rgb(133,106,160) 100%
    );
}.academic_expertiseR .rating_voicesS:hover > div:nth-child(2)::before {
    transform: scaleY(1);
}.academic_expertiseR .name {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    position: relative;
    display: inline-block;
}.academic_expertiseR .name::after {
    content: "";
    left: 0;
    transition: width 0.4s ease;
    width: 40%;
    position: absolute;
    background-color: rgb(182,178,194);
    bottom: -5px;
    height: 2px;
}.academic_expertiseR .rating_voicesS:hover .name::after {
    width: 100%;
}.academic_expertiseR .rating_voicesS > div:nth-child(2) > div {
    font-size: calc(14px - 2px);
    opacity: 0.9;
    margin-top: 5px;
    color: rgb(133,106,160);
    font-weight: 600;
    letter-spacing: 0.5px;
}.academic_expertiseR .rating_voicesS > div:nth-child(3) {
    transition: transform 0.4s ease-out;
    position: relative;
    transform: translateZ(5px);
}.academic_expertiseR .rating_voicesS:hover > div:nth-child(3) {
    transform: translateZ(15px);
}.academic_expertiseR .career_sectionz {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000000;
    position: relative;
    box-shadow: 
        inset 0 0 0 1px rgba(rgb(182,178,194,0.5), 0.1),
        0 10px 30px rgba(0, 0, 0, 0.03);
    font-size: 14px;
    margin: 0;
    line-height: 1.8;
    padding: 20px 10px 20px 25px;
    border-radius: 10px;
}.academic_expertiseR .career_sectionz::before {
    top: 10px;
    position: absolute;
    opacity: 0.4;
    font-size: calc(44px * 1.5);
    color: rgb(182,178,194,0.5);
    content: "";
    line-height: 1;
    left: 5px;
}

@media screen and (min-width: 768px) {.academic_expertiseR {
    padding: 100px 0;
}.academic_expertiseR .rating_voicesS {
    grid-template-rows: auto 1fr;
    grid-template-columns: 300px 1fr;
    padding: 50px;
}.academic_expertiseR .rating_voicesS > div:first-child {
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    height: 100%;
    grid-row: 1 / span 2;
}.academic_expertiseR .rating_voicesS > div:nth-child(2) {
    grid-column: 2;
    align-self: start;
    grid-row: 1;
    padding-left: 40px;
}.academic_expertiseR .rating_voicesS > div:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
    padding-left: 40px;
}.academic_expertiseR .career_sectionz {
    padding: 25px 20px 25px 35px;
    font-size: calc(14px + 1px);
}
}

@media screen and (min-width: 992px) {.academic_expertiseR {
    padding: 120px 0;
}.academic_expertiseR .rating_voicesS {
    padding: 60px;
    transform: perspective(1200px) rotateY(-3deg);
    gap: 40px;
    grid-template-columns: 380px 1fr;
}.academic_expertiseR .name {
    font-size: calc(22px + 2px);
}.academic_expertiseR .rating_voicesS > div:nth-child(2) > div {
    font-size: 14px;
}.academic_expertiseR .career_sectionz {
    line-height: 1.9;
    padding: 30px 25px 30px 45px;
}.academic_expertiseR .career_sectionz::before {
    font-size: calc(44px * 2);
}
}

@media (hover: none) {.academic_expertiseR .rating_voicesS {
    transform: none !important;
}.academic_expertiseR .rating_voicesS > div:first-child,
    .academic_expertiseR .rating_voicesS > div:nth-child(3) {
    transform: none !important;
}
}

@media (prefers-reduced-motion) {.academic_expertiseR .rating_voicesS,
    .academic_expertiseR .rating_voicesS > div,
    .academic_expertiseR .name::after,
    .academic_expertiseR .img_grid_wrapperI {
    transition: none !important;
    transform: none !important;
}}.pricing_zoneP {
    padding: 5rem 1rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgb(223,222,227), rgba(0, 0, 0, 0.5));
}.pricing_zoneP::before {
    left: 0;
    pointer-events: none;
    background: linear-gradient(45deg, transparent 0%, rgb(182,178,194,0.5) 30%, transparent 70%);
    z-index: 1;
    opacity: 0.1;
    top: 0;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
}.pricing_zoneP .container {
    max-width: 1400px;
    z-index: 2;
    position: relative;
    margin: 0 auto;
}.pricing_zoneP .learning_packagesQ {
    flex-direction: column;
    gap: 3rem;
    display: flex;
}.pricing_zoneP .pro_fees6 {
    max-width: 800px;
    opacity: 0;
    text-align: center;
    transform: translateY(20px);
    margin: 0 auto 2rem;
    animation: fadeUp 0.8s ease-out forwards;
    order: -1;
}.pricing_zoneP .pro_fees6 h2 {
    color: #000000;
    display: inline-block;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}.pricing_zoneP .pro_fees6 h2::after {
    transform: translateX(-50%);
    position: absolute;
    border-radius: 10px;
    width: 80px;
    height: 3px;
    bottom: -10px;
    left: 50%;
    background: linear-gradient(90deg, rgb(182,178,194), rgb(133,106,160));
    content: "";
}.pricing_zoneP .learning_ratesz {
    color: #000000;
    font-size: 17px;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}.pricing_zoneP .pricing_pack8 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    perspective: 1000px;
    gap: 2rem;
    display: grid;
}.pricing_zoneP .payment_schemeO {
    position: relative;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    border-radius: 29px;
    background: #ffffff;
    color: #000000;
    overflow: hidden;
    text-decoration: none;
    transform: translateZ(0) scale(1);
}.pricing_zoneP .payment_schemeO:nth-child(1) {
    animation-delay: 0.1s;
}.pricing_zoneP .payment_schemeO:nth-child(2) {
    animation-delay: 0.2s;
}.pricing_zoneP .payment_schemeO:nth-child(3) {
    animation-delay: 0.3s;
}.pricing_zoneP .payment_schemeO:nth-child(4) {
    animation-delay: 0.4s;
}.pricing_zoneP .payment_schemeO::before {
    width: 100%;
    content: "";
    background: linear-gradient(90deg, rgb(182,178,194), rgb(133,106,160));
    position: absolute;
    left: 0;
    height: 5px;
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: scaleX(0);
    top: 0;
}.pricing_zoneP .payment_schemeO:hover {
    transform: translateZ(30px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}.pricing_zoneP .payment_schemeO:hover::before {
    transform: scaleX(1);
}.pricing_zoneP .edu_deals1 {
    height: 100%;
    display: flex;
    flex-direction: column;
}.pricing_zoneP .bundle_rateD {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 2rem;
}.pricing_zoneP .bundle_rateD h3 {
    font-size: 22px;
    color: #000000;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 700;
    margin: 0 0 1rem;
}.pricing_zoneP .payment_schemeO:hover .bundle_rateD h3 {
    color: rgb(182,178,194);
}.pricing_zoneP .group_ratesQ {
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: 700;
    font-size: 2rem;
    display: inline-block;
    position: relative;
    color: rgb(182,178,194);
    margin-bottom: 1.5rem;
}.pricing_zoneP .group_ratesQ::after {
    transition: width 0.3s ease;
    position: absolute;
    bottom: -8px;
    height: 2px;
    width: 40px;
    background-color: rgb(133,106,160);
    left: 0;
    content: "";
}.pricing_zoneP .payment_schemeO:hover .group_ratesQ {
    transform: translateY(-3px);
}.pricing_zoneP .payment_schemeO:hover .group_ratesQ::after {
    width: 80px;
}.pricing_zoneP .bundle_rateD p {
    color: #000000;
    margin: 0;
    flex-grow: 1;
    font-size: calc(17px - 2px);
    overflow-wrap: break-word;
    line-height: 1.6;
    word-break: break-word;
}.pricing_zoneP .img_grid_wrapperI {
    overflow: hidden;
    position: relative;
    height: 200px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
}.pricing_zoneP .img_grid_wrapperI::after {
    transition: opacity 0.5s ease;
    left: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    right: 0;
    opacity: 0.7;
    bottom: 0;
    content: "";
    position: absolute;
    top: 0;
}.pricing_zoneP .payment_schemeO:hover .img_grid_wrapperI {
    transform: scale(1.05);
}.pricing_zoneP .payment_schemeO:hover .img_grid_wrapperI::after {
    opacity: 0.4;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) rotateX(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

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

@media (min-width: 768px) {.pricing_zoneP {
    padding: 7rem 2rem;
}.pricing_zoneP .learning_packagesQ {
    flex-direction: row;
    align-items: flex-start;
}.pricing_zoneP .pro_fees6 {
    flex: 0 0 30%;
    display: flex;
    order: 0;
    flex-direction: column;
    padding-right: 2rem;
    margin: 0;
    text-align: left;
    justify-content: center;
}.pricing_zoneP .pro_fees6 h2 {
    text-align: left;
}.pricing_zoneP .pro_fees6 h2::after {
    left: 0;
    transform: none;
}.pricing_zoneP .learning_ratesz {
    max-width: 100%;
    margin: 0;
}.pricing_zoneP .pricing_pack8 {
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 1rem), 1fr));
    flex: 0 0 70%;
}
}

@media (min-width: 992px) {.pricing_zoneP .pricing_pack8 {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (min-width: 1200px) {.pricing_zoneP {
    padding: 8rem 2rem;
}.pricing_zoneP .pro_fees6 {
    flex: 0 0 25%;
}.pricing_zoneP .pricing_pack8 {
    flex: 0 0 75%;
}.pricing_zoneP .bundle_rateD {
    padding: 2.5rem;
}
}

@media (max-width: 767px) {.pricing_zoneP .payment_schemeO {
    margin: 0 auto;
    max-width: 400px;
}.pricing_zoneP .pro_fees6 h2 {
    font-size: calc(38px * 0.9);
}.pricing_zoneP .learning_ratesz {
    font-size: calc(17px * 0.95);
}}footer {
    position: relative;
    width: 100%;
}.testimoniala {
    background-color: #ffffff;
    color: #000000;
    font-family: Arial, sans-serif;
    padding: 80px 0 30px;
    position: relative;
}.testimoniala::before {
    content: "";
    bottom: 0;
    background-image: repeating-linear-gradient(
        to right,
        rgb(182,178,194),
        rgb(182,178,194) 10px,
        transparent 10px,
        transparent 20px
    );
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
}footer .training_zone4 {
    position: relative;
    z-index: 1;
}footer .contact_team0 {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 100px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}footer .info_item {
    padding: 0 25px;
    margin-right: 1px;
    min-width: 250px;
    display: flex;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
    background-color: rgb(133,106,160);
    flex: 1;
    cursor: pointer;
    align-items: center;
    height: 100px;
}footer .info_item:last-child {
    margin-right: 0;
}footer .info_item:hover {
    flex: 1.5;
    background-color: rgb(182,178,194);
}footer .info_item::after {
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    right: 0;
    width: 1px;
    height: 100%;
    top: 0;
    content: "";
}footer .info_item:last-child::after {
    display: none;
}footer .info_item svg {
    position: relative;
    fill: #ffffff;
    z-index: 2;
    height: 24px;
    width: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}footer .info_item p,
footer .info_item a {
    max-width: 100%;
    z-index: 2;
    font-size: 17px;
    position: relative;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
    overflow: hidden;
    color: #ffffff;
}footer .info_item::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    width: 100%;
    left: 0;
    content: "";
    transition: opacity 0.5s ease;
    height: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
}footer .info_item:hover::before {
    opacity: 1;
}footer .text_main_holder {
    margin: 0 -20px;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 0;
}footer .text_main_holder::-webkit-scrollbar {
    display: none;
}footer .first_class0, footer .header_primaryt, footer .subscribe_holder {
    padding: 30px;
    height: 450px;
    flex: 0 0 100%;
    transition: all 0.4s ease;
    border-radius: 19px;
    margin-right: 30px;
    min-width: 280px;
    max-width: 500px;
    position: relative;
    scroll-snap-align: start;
}footer .first_class0 {
    align-items: center;
    display: flex;
    background-color: rgb(223,222,227);
    flex-direction: column;
    justify-content: center;
    text-align: center;
}footer .first_class0 svg {
    width: auto;
    margin-bottom: 30px;
    height: 50px;
}footer .edu_linksQ {
    max-width: 300px;
    color: #000000;
    font-size: 12px;
    line-height: 1.6;
}footer .header_primaryt {
    color: #ffffff;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(133,106,160,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(182,178,194,0.5) 0%, transparent 40%);
    flex-direction: column;
    background-color: rgb(133,106,160);
}footer .header_primaryt::after {
    content: "";
    opacity: 0.3;
    top: 0;
    position: absolute;
    pointer-events: none;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 92%, rgba(255, 255, 255, 0.05) 93%, transparent 94%),
        linear-gradient(135deg, transparent 92%, rgba(255, 255, 255, 0.05) 93%, transparent 94%);
    background-size: 30px 30px;
    left: 0;
    right: 0;
}footer .header_primaryt h5 {
    font-size: 22px;
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}footer .header_primaryt h5::after {
    background-color: rgb(182,178,194);
    position: absolute;
    content: "";
    width: 30px;
    bottom: -10px;
    height: 2px;
    left: 0;
}footer .main_mentorL {
    max-height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    height: auto;
}footer .main_mentorL a {
    font-size: 17px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}footer .main_mentorL a:hover {
    padding-left: 10px;
    border-bottom-color: rgb(182,178,194);
    color: #ffffff;
}footer .subscribe_holder {
    background-color: rgb(182,178,194);
    flex-direction: column;
    display: flex;
    color: #ffffff;
    justify-content: center;
}footer .subscribe_holder h5 {
    font-weight: 700;
    font-size: 22px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}footer .subscribe_holder p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.6;
}footer .input_holder {
    gap: 15px;
    flex-direction: column;
    display: flex;
}footer .input_holder input[type="email"] {
    padding: 15px;
    border-radius: 10px;
    font-size: 17px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
}footer .input_holder input[type="email"]:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
}footer .input_holder input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}footer .updates_form0 {
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    font-size: 17px;
    padding: 15px;
    transition: all 0.3s ease;
    border: none;
    background-color: rgb(133,106,160);
    color: #ffffff;
}footer .updates_form0:hover {
    background-color: rgb(133,106,160,0.5);
}footer .eco_footj {
    margin-top: 40px;
    position: relative;
    padding-top: 20px;
}footer .eco_footj::before {
    height: 1px;
    right: 20%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5), transparent);
    content: "";
    left: 20%;
    top: 0;
    position: absolute;
}footer .edu_globalS {
    font-size: 12px;
    color: #000000;
    text-align: center;
}

@media (min-width: 992px) {footer .text_main_holder {
    scroll-snap-type: none;
    flex-wrap: wrap;
    overflow-x: visible;
    margin: 0;
    gap: 30px;
    padding: 0;
}footer .first_class0, footer .header_primaryt, footer .subscribe_holder {
    margin-right: 0;
    flex: 1;
    min-width: 0;
    height: 500px;
}
}

@media (max-width: 991px) {footer .info_item {
    min-width: 200px;
}footer .first_class0::before,
    footer .header_primaryt::before,
    footer .subscribe_holder::before {
    font-size: 3rem;
}
}

@media (max-width: 767px) {footer .testimoniala {
    padding: 60px 0 30px;
}footer .contact_team0 {
    height: auto;
    flex-direction: column;
    margin-bottom: 40px;
}footer .info_item {
    width: 100%;
    margin-bottom: 1px;
    margin-right: 0;
}footer .info_item:hover {
    flex: 1;
    padding-left: 35px;
}footer .first_class0, footer .header_primaryt, footer .subscribe_holder {
    min-height: 350px;
    height: auto;
    padding: 25px 20px;
}
}

@media (max-width: 576px) {footer .testimoniala {
    padding: 50px 0 20px;
}footer .first_class0::before,
    footer .header_primaryt::before,
    footer .subscribe_holder::before {
    font-size: 2rem;
    top: 15px;
    left: 15px;
}footer .main_mentorL {
    max-height: 220px;
    height: auto;
}footer .first_class0, footer .header_primaryt, footer .subscribe_holder {
    min-height: 300px;
    padding: 20px 15px;
}footer .header_primaryt h5, footer .subscribe_holder h5 {
    font-size: calc(22px - 2px);
    margin-bottom: 15px;
}footer .subscribe_holder p {
    margin-bottom: 20px;
}footer .input_holder input[type="email"],
    footer .updates_form0 {
    padding: 12px;
}}.program_structured {
    background-color: rgb(223,222,227);
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
}.program_structured .training_mapk {
    width: 100%;
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    overflow: hidden;
    z-index: 1;
}.program_structured .study_track1 {
    animation: carousel-slide 30s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
    height: 100%;
    display: flex;
    width: calc(100% * var(--slide-count, 5));
}.program_structured .training_mapk:hover .study_track1 {
    animation-play-state: paused;
}.program_structured .education_flowe {
    width: calc(100% / var(--slide-count, 5));
    position: relative;
    overflow: hidden;
    height: 100%;
}.program_structured .education_flowe::before {
    transition: opacity 0.5s ease;
    z-index: 1;
    opacity: 0.8;
    position: absolute;
    top: 0;
    background: linear-gradient(
        135deg,
        rgb(182,178,194,0.5) 0%,
        transparent 30%,
        transparent 70%,
        rgb(133,106,160,0.5) 100%
    );
    content: "";
    left: 0;
    bottom: 0;
    right: 0;
}.program_structured .education_flowe:hover::before {
    opacity: 0.4;
}.program_structured .education_flowe img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transform: scale(1.05);
    transition: transform 0.7s ease-out;
    filter: brightness(0.85) contrast(1.1);
}.program_structured .education_flowe:hover img {
    transform: scale(1);
    filter: brightness(0.95) contrast(1.05);
}.program_structured .container {
    height: 100%;
    margin: auto;
    display: flex;
    padding: 4rem 2rem;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
    position: relative;
}.program_structured .study_learnJ {
    position: relative;
    max-width: 600px;
    margin-right: 5%;
    width: 100%;
}.program_structured .program_mapk {
    border-radius: 24px;
    overflow: hidden;
    transform: translateY(0);
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 
                0 1px 3px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(8px);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(var(--dark-color, 21, 20, 26), 0.75);
}.program_structured .program_mapk::before {
    height: 3px;
    background: linear-gradient(
        90deg,
        rgb(182,178,194) 0%,
        rgb(133,106,160) 100%
    );
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}.program_structured .program_mapk::after {
    content: "";
    height: 1px;
    right: 0;
    width: 50%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgb(182,178,194,0.5) 100%
    );
    bottom: 0;
    position: absolute;
}.program_structured .program_mapk:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 
                0 2px 5px rgba(0, 0, 0, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transform: translateY(-5px);
}.program_structured .program_mapk h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}.program_structured .program_mapk h3::after {
    bottom: -8px;
    content: "";
    position: absolute;
    width: 40%;
    left: 0;
    background-color: rgb(182,178,194);
    height: 2px;
    transition: width 0.3s ease;
}.program_structured .program_mapk:hover h3::after {
    width: 60%;
}.program_structured .program_mapk p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 300;
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.6;
}.program_structured .program_mapk .inquiry_infox {
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    position: relative;
    display: inline-block;
    font-weight: 600;
    padding: 0.85rem 2rem;
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient(
        45deg,
        rgb(182,178,194) 0%,
        rgb(133,106,160) 100%
    );
    border-radius: 10px;
    color: #ffffff;
    box-shadow: 0 4px 15px rgb(182,178,194,0.5);
}.program_structured .program_mapk .inquiry_infox::before {
    width: 100%;
    left: 0;
    background: linear-gradient(
        45deg,
        rgb(133,106,160) 0%,
        rgb(182,178,194) 100%
    );
    opacity: 0;
    content: "";
    top: 0;
    position: absolute;
    height: 100%;
    z-index: -1;
    transition: opacity 0.3s ease;
}.program_structured .program_mapk .inquiry_infox:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(182,178,194,0.5);
}.program_structured .program_mapk .inquiry_infox:hover::before {
    opacity: 1;
}@keyframes carousel-slide {
    0% {
        transform: translateX(0);
    }
    16% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(calc(-100% / var(--slide-count, 5)));
    }
    36% {
        transform: translateX(calc(-100% / var(--slide-count, 5)));
    }
    40% {
        transform: translateX(calc(-200% / var(--slide-count, 5)));
    }
    56% {
        transform: translateX(calc(-200% / var(--slide-count, 5)));
    }
    60% {
        transform: translateX(calc(-300% / var(--slide-count, 5)));
    }
    76% {
        transform: translateX(calc(-300% / var(--slide-count, 5)));
    }
    80% {
        transform: translateX(calc(-400% / var(--slide-count, 5)));
    }
    96% {
        transform: translateX(calc(-400% / var(--slide-count, 5)));
    }
    100% {
        transform: translateX(0);
    }
}

.program_structured::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    background: radial-gradient(circle at 75% 25%, 
                transparent 0%,
                rgba(0, 0, 0, 0.5) 70%);
    z-index: 1;
    top: 0;
}

@media (max-width: 992px) {.program_structured .container {
    padding: 3rem 1.5rem;
    justify-content: center;
}.program_structured .study_learnJ {
    max-width: 540px;
    margin-right: 0;
}.program_structured .program_mapk {
    padding: 2.5rem;
}.program_structured .program_mapk h3 {
    font-size: calc(38px * 0.9);
}
}

@media (max-width: 768px) {.program_structured .container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}.program_structured .program_mapk {
    padding: 2rem;
}.program_structured .program_mapk h3 {
    margin-bottom: 1.2rem;
    font-size: calc(38px * 0.8);
}.program_structured .program_mapk p {
    margin-bottom: 1.5rem;
}.program_structured .program_mapk .inquiry_infox {
    padding: 0.75rem 1.75rem;
}
    
    @keyframes carousel-slide {
        0% {
            transform: translateX(0);
        }
        20% {
            transform: translateX(0);
        }
        25% {
            transform: translateX(calc(-100% / var(--slide-count, 5)));
        }
        45% {
            transform: translateX(calc(-100% / var(--slide-count, 5)));
        }
        50% {
            transform: translateX(calc(-200% / var(--slide-count, 5)));
        }
        70% {
            transform: translateX(calc(-200% / var(--slide-count, 5)));
        }
        75% {
            transform: translateX(calc(-300% / var(--slide-count, 5)));
        }
        95% {
            transform: translateX(calc(-300% / var(--slide-count, 5)));
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 576px) {.program_structured .study_track1 {
    animation-duration: 20s;
}.program_structured .container {
    padding: 3rem 1rem;
}.program_structured .program_mapk {
    padding: 1.5rem;
}.program_structured .program_mapk h3 {
    font-size: calc(38px * 0.7);
    margin-bottom: 1rem;
}.program_structured .program_mapk p {
    font-size: calc(12px * 0.9);
    margin-bottom: 1.25rem;
}.program_structured .program_mapk .inquiry_infox {
    font-size: calc(16px * 0.9);
    padding: 0.65rem 1.5rem;
}}

.program_structured .study_track1::before {
    animation: set-slide-count 0.1s forwards;
    position: fixed;
    height: 1px;
    width: 1px;
    content: "";
}@keyframes set-slide-count {
    to {
        --slide-count: attr(data-slides integer);
    }
}

.program_structured .education_flowe:nth-child(1) {
    --slide-color: rgb(182,178,194);
}.program_structured .education_flowe:nth-child(2) {
    --slide-color: rgb(133,106,160);
}.program_structured .education_flowe:nth-child(3) {
    --slide-color: rgb(182,178,194);
}.program_structured .education_flowe:nth-child(4) {
    --slide-color: rgb(133,106,160);
}.program_structured .education_flowe:nth-child(5) {
    --slide-color: rgb(182,178,194);
}.program_structured .education_flowe::after {
    top: 0;
    position: absolute;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        var(--slide-color, rgb(182,178,194)) 150%
    );
    transition: opacity 0.5s ease;
    height: 100%;
    left: 0;
    content: "";
    width: 100%;
    mix-blend-mode: soft-light;
    opacity: 0.3;
}.program_structured .education_flowe:hover::after {
    opacity: 0.5;
}.connect_formw {
    padding: 120px 0;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(180deg, rgb(223,222,227) 0%, rgb(133,106,160,0.5) 100%);
    position: relative;
}.connect_formw::before {
    background-size: 100% 15px;
    top: 0;
    animation: scanlines 10s linear infinite;
    position: absolute;
    background: linear-gradient(0deg, transparent 40%, rgba(0,0,0,0.05) 60%, transparent 80%);
    content: '';
    height: 100%;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}.connect_formw::after {
    z-index: 0;
    content: '';
    position: absolute;
    pointer-events: none;
    background-size: 150px 150px, 200px 200px, 100px 100px, 250px 250px;
    width: 100%;
    top: 0;
    background: 
        radial-gradient(1px at 30% 20%, rgb(182,178,194,0.5) 0%, transparent 50%),
        radial-gradient(1px at 70% 40%, rgb(133,106,160,0.5) 0%, transparent 50%),
        radial-gradient(1px at 40% 60%, rgb(182,178,194,0.5) 0%, transparent 50%),
        radial-gradient(1px at 60% 80%, rgb(133,106,160,0.5) 0%, transparent 50%);
    left: 0;
    height: 100%;
    opacity: 0.4;
}.connect_formw .img_grid_wrapperI {
    left: 0;
    top: 0;
    position: absolute;
    filter: grayscale(100%) contrast(150%);
    mix-blend-mode: overlay;
    height: 100%;
    opacity: 0.08;
    width: 100%;
    z-index: 0;
}.connect_formw .container {
    padding: 0 20px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}.connect_formw h3 {
    position: relative;
    perspective: 800px;
    margin-bottom: 60px;
    font-family: Arial, sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    font-size: 29px;
    letter-spacing: 3px;
    color: #000000;
}.connect_formw h3::before {
    opacity: 0.4;
    content: attr(id);
    color: rgb(133,106,160,0.5);
    letter-spacing: 5px;
    position: absolute;
    transform: translateX(-50%);
    top: -10px;
    left: 50%;
    font-size: calc(29px - 10px);
}.connect_formw h3::after {
    bottom: -15px;
    background: linear-gradient(90deg, transparent, rgb(182,178,194), transparent);
    width: 100px;
    content: '';
    left: 50%;
    position: absolute;
    height: 1px;
    transform: translateX(-50%);
}.connect_formw .feedback_formt {
    transition: transform 0.5s ease;
    grid-template-columns: 1.5fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateX(0deg);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    transform-style: preserve-3d;
    display: grid;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 0 20px rgb(182,178,194,0.5) inset;
    overflow: hidden;
}.connect_formw .feedback_formt:hover {
    transform: perspective(1000px) rotateX(2deg);
}.connect_formw .feedback_formt::before {
    z-index: -1;
    position: absolute;
    background: linear-gradient(45deg, 
        rgb(182,178,194,0.5), 
        transparent, 
        rgb(133,106,160,0.5), 
        transparent);
    content: '';
    animation: border-flow 6s linear infinite;
    bottom: -2px;
    left: -2px;
    right: -2px;
    top: -2px;
    border-radius: calc(10px + 2px);
}.connect_formw .feedback_formt::after {
    width: 100%;
    height: 100%;
    top: 0;
    content: '';
    pointer-events: none;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    left: 0;
    background-size: 20px 20px;
    position: absolute;
}.connect_formw .request_messageW {
    padding: 60px;
    position: relative;
    background: #ffffff;
    overflow: hidden;
}.connect_formw .request_messageW::before {
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    content: '';
    top: 0;
    background: linear-gradient(90deg, 
        rgb(182,178,194), 
        rgb(133,106,160));
}.connect_formw .request_messageW::after {
    pointer-events: none;
    top: 0;
    content: '';
    position: absolute;
    right: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 0, 0, 0.01));
    width: 50%;
    height: 100%;
}.connect_formw .request_messageW #contact {
    z-index: 2;
    position: relative;
}.connect_formw .request_messageW h3 {
    margin-bottom: 40px;
    color: #000000;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: left;
    font-size: 20px;
    text-transform: uppercase;
}.connect_formw .request_messageW h3::before {
    display: none;
}.connect_formw .request_messageW h3::after {
    transform: none;
    height: 2px;
    left: 0;
    width: 50px;
    background: rgb(182,178,194);
}.connect_formw .request_messageW input[type="text"],
.connect_formw .request_messageW textarea {
    border-radius: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
    font-family: Arial, sans-serif;
    border: none;
    margin-bottom: 25px;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    color: #000000;
    box-shadow: none;
    padding: 20px 25px;
}.connect_formw .request_messageW input[type="text"]::placeholder,
.connect_formw .request_messageW textarea::placeholder {
    transition: opacity 0.3s ease;
    color: #000000;
    opacity: 0.6;
}.connect_formw .request_messageW input[type="text"]:focus::placeholder,
.connect_formw .request_messageW textarea:focus::placeholder {
    opacity: 0.3;
}.connect_formw .request_messageW input[type="text"]:focus,
.connect_formw .request_messageW textarea:focus {
    outline: none;
    border-bottom-color: rgb(182,178,194);
    background-color: rgba(0, 0, 0, 0.01);
}.connect_formw .request_messageW textarea {
    overflow: hidden;
    transition: height 0.3s ease;
    resize: vertical;
    min-height: 150px;
}.connect_formw .request_messageW .query_requestE {
    margin-bottom: 30px;
    align-items: flex-start;
    display: flex;
}.connect_formw .request_messageW .query_requestE input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}.connect_formw .request_messageW .query_requestE label {
    color: #000000;
    cursor: pointer;
    line-height: 1.6;
    padding-left: 40px;
    position: relative;
    font-size: calc(18px - 2px);
}.connect_formw .request_messageW .query_requestE label::before {
    content: '';
    left: 0;
    position: absolute;
    height: 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: transparent;
    width: 25px;
    top: 0;
}.connect_formw .request_messageW .query_requestE label::after {
    transition: all 0.3s ease;
    transform: rotate(45deg) scale(0);
    opacity: 0;
    width: 7px;
    left: 9px;
    top: 5px;
    position: absolute;
    content: '';
    height: 12px;
    border-bottom: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}.connect_formw .request_messageW .query_requestE input[type="checkbox"]:checked + label::before {
    border-color: rgb(182,178,194);
    background-color: rgb(182,178,194);
}.connect_formw .request_messageW .query_requestE input[type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}.connect_formw .request_messageW .query_requestE a {
    border-bottom: 1px solid transparent;
    text-decoration: none;
    padding-bottom: 2px;
    transition: color 0.3s ease;
    font-weight: 600;
    color: rgb(182,178,194);
}.connect_formw .request_messageW .query_requestE a:hover {
    border-bottom-color: rgb(133,106,160);
    color: rgb(133,106,160);
}.connect_formw .request_messageW .inquiry_infox {
    color: #000000;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 2px;
    font-size: 17px;
    z-index: 1;
    border: 1px solid rgb(182,178,194);
    position: relative;
    display: inline-block;
    padding: 18px 40px;
    overflow: hidden;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
}.connect_formw .request_messageW .inquiry_infox::before {
    height: 100%;
    content: '';
    left: 0;
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    position: absolute;
    transform: scaleX(0);
    top: 0;
    background: rgb(182,178,194);
    z-index: -1;
}.connect_formw .request_messageW .inquiry_infox:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}.connect_formw .message_listj {
    position: relative;
    background: linear-gradient(135deg, rgb(182,178,194) 0%, rgb(133,106,160) 100%);
    padding: 60px;
    overflow: hidden;
}.connect_formw .message_listj::before {
    z-index: 0;
    height: 100%;
    width: 100%;
    content: '';
    left: 0;
    position: absolute;
    background: 
        linear-gradient(45deg, rgba(0,0,0,0.2) 25%, transparent 25%) -10px 0,
        linear-gradient(135deg, rgba(0,0,0,0.2) 25%, transparent 25%) -10px 0,
        linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.2) 75%) -10px 0,
        linear-gradient(135deg, transparent 75%, rgba(0,0,0,0.2) 75%) -10px 0;
    opacity: 0.1;
    top: 0;
    background-size: 20px 20px;
}.connect_formw .message_listj::after {
    animation: pulse-light 10s infinite;
    width: 200%;
    content: '';
    height: 200%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    top: -50%;
    z-index: 0;
    position: absolute;
}.connect_formw .message_listj h4 {
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 20px;
    color: #ffffff;
    z-index: 1;
}.connect_formw .message_listj h4::after {
    background: #ffffff;
    content: '';
    height: 2px;
    width: 50px;
    left: 0;
    position: absolute;
    bottom: -10px;
}.connect_formw .message_listj .inquiry_map2 {
    list-style: none;
    margin: 0;
    z-index: 1;
    position: relative;
    padding: 0;
}.connect_formw .message_listj .inquiry_map2 li {
    align-items: flex-start;
    padding: 15px 0;
    display: flex;
    position: relative;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}.connect_formw .message_listj .inquiry_map2 li:hover {
    transform: translateX(10px);
}.connect_formw .message_listj .inquiry_map2 li::before {
    transition: width 0.3s ease;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 0;
    content: '';
    left: 0;
    width: 0;
}.connect_formw .message_listj .inquiry_map2 li:hover::before {
    width: 100%;
}.connect_formw .message_listj .inquiry_map2 li::after {
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    position: absolute;
    right: 0;
    content: '';
    height: 1px;
    transition: width 0.3s ease;
    width: 0;
}.connect_formw .message_listj .inquiry_map2 li:hover::after {
    width: 100%;
}.connect_formw .message_listj .inquiry_map2 li svg {
    flex-shrink: 0;
    margin-right: 20px;
    width: 24px;
    height: 24px;
}.connect_formw .message_listj .inquiry_map2 li svg path {
    fill: #ffffff;
    transition: fill 0.3s ease;
}.connect_formw .message_listj .inquiry_map2 li span {
    color: #ffffff;
    line-height: 1.5;
    font-size: 18px;
}.connect_formw .message_listj .inquiry_map2 li a {
    text-decoration: none;
    position: relative;
    color: #ffffff;
    transition: all 0.3s ease;
}.connect_formw .message_listj .inquiry_map2 li a::before {
    height: 1px;
    transform: scaleX(0);
    content: '';
    transition: transform 0.3s ease;
    position: absolute;
    transform-origin: right;
    width: 100%;
    left: 0;
    background: #ffffff;
    bottom: -2px;
}.connect_formw .message_listj .inquiry_map2 li a:hover {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}.connect_formw .message_listj .inquiry_map2 li a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

@keyframes scanlines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}

@keyframes border-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse-light {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    25% {
        transform: translate(10%, 10%);
        opacity: 0.3;
    }
    50% {
        transform: translate(0%, 20%);
        opacity: 0.5;
    }
    75% {
        transform: translate(-10%, 10%);
        opacity: 0.3;
    }
}

@media (max-width: 992px) {.connect_formw {
    padding: 80px 0;
}.connect_formw .container {
    padding: 0 20px;
}.connect_formw .feedback_formt {
    grid-template-columns: 1fr;
}.connect_formw .request_messageW,
    .connect_formw .message_listj {
    padding: 40px;
}
}

@media (max-width: 768px) {.connect_formw {
    padding: 60px 0;
}.connect_formw h3 {
    margin-bottom: 40px;
    font-size: calc(29px - 4px);
}.connect_formw .request_messageW h3,
    .connect_formw .message_listj h4 {
    font-size: calc(20px - 2px);
    margin-bottom: 30px;
}.connect_formw .request_messageW input[type="text"],
    .connect_formw .request_messageW textarea {
    padding: 15px 20px;
    margin-bottom: 20px;
}.connect_formw .request_messageW .inquiry_infox {
    padding: 15px 30px;
}
}

@media (max-width: 576px) {.connect_formw {
    padding: 40px 0;
}.connect_formw .request_messageW,
    .connect_formw .message_listj {
    padding: 30px 20px;
}.connect_formw h3 {
    font-size: calc(29px - 6px);
    letter-spacing: 2px;
}.connect_formw .request_messageW .query_requestE label {
    font-size: calc(18px - 3px);
}}.company_infol {
    position: relative;
    overflow: hidden;
    background: rgb(223,222,227);
    padding: 100px 0;
}.company_infol::before {
    content: "";
    z-index: 0;
    background: linear-gradient(45deg, transparent 30%, rgb(182,178,194,0.5) 100%);
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}.company_infol::after {
    left: 0;
    top: 0;
    position: absolute;
    height: 100%;
    background: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.5) 0,
        rgba(0, 0, 0, 0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    opacity: 0.05;
    z-index: 0;
    content: "";
    width: 100%;
    animation: backgroundShift 30s linear infinite;
}@keyframes backgroundShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.company_infol .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}.company_infol .study_learnJ {
    position: relative;
}.company_infol h3 {
    display: inline-block;
    margin-bottom: 60px;
    font-weight: 700;
    color: #000000;
    font-size: 38px;
    position: relative;
}.company_infol h3::after {
    bottom: -15px;
    transform: scaleX(0.7);
    width: 100%;
    position: absolute;
    transition: transform 0.6s ease;
    content: "";
    height: 4px;
    transform-origin: left;
    background: rgb(133,106,160);
    left: 0;
}.company_infol h3:hover::after {
    transform: scaleX(1);
}.company_infol .study_proi {
    flex-wrap: wrap;
    position: relative;
    display: flex;
    flex-direction: row;
    margin-bottom: 80px;
}.company_infol .study_proi::before {
    left: -20px;
    width: 40px;
    content: "";
    height: 40px;
    border-top: 3px solid rgb(182,178,194);
    position: absolute;
    top: -20px;
    border-left: 3px solid rgb(182,178,194);
}.company_infol .study_proi::after {
    height: 40px;
    bottom: -20px;
    position: absolute;
    border-right: 3px solid rgb(182,178,194);
    width: 40px;
    content: "";
    border-bottom: 3px solid rgb(182,178,194);
    right: -20px;
}.company_infol .study_proi span {
    font-size: 24px;
    margin-bottom: 20px;
    width: 100%;
    font-weight: 600;
    position: relative;
    color: rgb(182,178,194);
    padding-left: 15px;
    display: block;
}.company_infol .study_proi span::before {
    transform: translateY(-50%);
    top: 50%;
    height: 80%;
    left: 0;
    position: absolute;
    background: rgb(182,178,194);
    width: 6px;
    border-radius: 10px;
    content: "";
}.company_infol .study_proi p {
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 17px;
    max-width: 600px;
    color: #000000;
}.company_infol .study_proi .img_grid_wrapperI {
    transform: perspective(1000px) rotateY(-5deg);
    margin-left: 50px;
    width: 450px;
    height: 350px;
    position: relative;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease;
    border-radius: 20px;
}.company_infol .study_proi .img_grid_wrapperI:hover {
    transform: perspective(1000px) rotateY(0);
}.company_infol .learning_zonen {
    flex-direction: row-reverse;
    position: relative;
    margin-top: 50px;
    display: flex;
}.company_infol .learning_zonen::before {
    width: 40px;
    border-right: 3px solid rgb(133,106,160);
    content: "";
    position: absolute;
    right: -20px;
    top: -20px;
    border-top: 3px solid rgb(133,106,160);
    height: 40px;
}.company_infol .learning_zonen::after {
    border-bottom: 3px solid rgb(133,106,160);
    left: -20px;
    width: 40px;
    border-left: 3px solid rgb(133,106,160);
    content: "";
    height: 40px;
    bottom: -20px;
    position: absolute;
}.company_infol .learning_zonen p {
    line-height: 1.8;
    max-width: 600px;
    padding-right: 20px;
    position: relative;
    font-size: 17px;
    color: #000000;
    margin-bottom: 0;
}.company_infol .learning_zonen p::before {
    position: absolute;
    background: linear-gradient(to bottom, rgb(133,106,160), transparent);
    content: "";
    height: 100%;
    top: 0;
    border-radius: 10px;
    width: 3px;
    left: -20px;
}.company_infol .learning_zonen .academy_track7 {
    width: 450px;
    height: 350px;
    position: relative;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease;
    transform: perspective(1000px) rotateY(5deg);
    border-radius: 20px;
    margin-right: 50px;
}.company_infol .learning_zonen .academy_track7:hover {
    transform: perspective(1000px) rotateY(0);
}.company_infol .learning_zonen .academy_track7::after {
    content: "";
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    bottom: 0;
    position: absolute;
    z-index: 1;
    height: 30%;
    left: 0;
    width: 100%;
}.company_infol .study_proi .img_grid_wrapperI::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    left: 0;
    content: "";
    height: 30%;
    z-index: 1;
    position: absolute;
    bottom: 0;
    width: 100%;
}

@media screen and (max-width: 1100px) {.company_infol .study_proi .img_grid_wrapperI,
    .company_infol .learning_zonen .academy_track7 {
    width: 400px;
    height: 320px;
}
}

@media screen and (max-width: 992px) {.company_infol {
    padding: 80px 0;
}.company_infol h3 {
    margin-bottom: 50px;
}.company_infol .study_proi,
    .company_infol .learning_zonen {
    margin-bottom: 60px;
    flex-direction: column;
}.company_infol .study_proi .img_grid_wrapperI,
    .company_infol .learning_zonen .academy_track7 {
    height: 300px;
    width: 100%;
    margin: 30px 0 0;
    transform: perspective(1000px) rotateY(0);
}.company_infol .learning_zonen p {
    padding-left: 20px;
    padding-right: 0;
}.company_infol .learning_zonen p::before {
    left: 0;
}
}

@media screen and (max-width: 768px) {.company_infol {
    padding: 60px 0;
}.company_infol h3 {
    margin-bottom: 40px;
    font-size: calc(38px * 0.9);
}.company_infol .study_proi,
    .company_infol .learning_zonen {
    margin-bottom: 50px;
}.company_infol .study_proi span {
    font-size: calc(24px * 0.9);
}.company_infol .study_proi::before,
    .company_infol .study_proi::after,
    .company_infol .learning_zonen::before,
    .company_infol .learning_zonen::after {
    height: 30px;
    width: 30px;
}
}

@media screen and (max-width: 576px) {.company_infol {
    padding: 40px 0;
}.company_infol h3 {
    font-size: calc(38px * 0.8);
    margin-bottom: 30px;
}.company_infol h3::after {
    height: 3px;
    bottom: -10px;
}.company_infol .study_proi,
    .company_infol .learning_zonen {
    margin-bottom: 40px;
}.company_infol .study_proi span {
    font-size: calc(24px * 0.85);
    margin-bottom: 15px;
}.company_infol .study_proi p,
    .company_infol .learning_zonen p {
    font-size: calc(17px * 0.95);
    line-height: 1.6;
}.company_infol .study_proi .img_grid_wrapperI,
    .company_infol .learning_zonen .academy_track7 {
    margin-top: 20px;
    height: 250px;
}.company_infol .study_proi::before,
    .company_infol .study_proi::after,
    .company_infol .learning_zonen::before,
    .company_infol .learning_zonen::after {
    width: 25px;
    height: 25px;
}}header {
    margin-top: 0;
    overflow: visible;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    background: rgb(223,222,227);
    z-index: 100;
}header::before {
    position: absolute;
    background: 
        linear-gradient(135deg, transparent 25%, rgba(rgb(182,178,194), 0.03) 25%) 0 0 / 20px 20px,
        linear-gradient(225deg, transparent 25%, rgba(rgb(182,178,194), 0.03) 25%) 0 0 / 20px 20px,
        linear-gradient(315deg, transparent 25%, rgba(rgb(182,178,194), 0.03) 25%) 0 0 / 20px 20px,
        linear-gradient(45deg, transparent 25%, rgba(rgb(182,178,194), 0.03) 25%) 0 0 / 20px 20px;
    top: 0;
    height: 100%;
    content: '';
    z-index: 0;
    left: 0;
    width: 100%;
}header::after {
    content: '';
    left: 0;
    bottom: 0;
    height: 5px;
    transition: transform 0.5s ease;
    background: linear-gradient(to right, 
        rgb(182,178,194), 
        rgb(133,106,160), 
        rgb(182,178,194)
    );
    transform-origin: center;
    width: 100%;
    position: absolute;
    transform: scaleX(0.7);
}header:hover::after {
    transform: scaleX(1);
}header .top_learninge {
    padding: 1.3rem 2.5rem;
    align-items: center;
    justify-content: space-between;
    display: flex;
    position: relative;
    z-index: 5;
}header .first_class0 {
    margin-right: 2rem;
    perspective: 800px;
    flex: 0 0 auto;
    position: relative;
}header .head_sectionG {
    transform-style: preserve-3d;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}header .head_sectionG:hover {
    transform: rotateY(10deg) rotateX(5deg);
}header .head_sectionG::before {
    content: '';
    filter: blur(10px);
    width: 100%;
    transform: translateZ(-10px);
    position: absolute;
    opacity: 0.1;
    height: 100%;
    left: 0;
    background: rgb(182,178,194);
    top: 0;
}header .head_sectionG img {
    transform: translateZ(20px);
    max-height: 40px;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}header .header_primaryt {
    display: flex;
    padding: 0;
    position: relative;
    perspective: 1000px;
    list-style: none;
    transform-style: preserve-3d;
    margin: 0;
}header .header_primaryt::before {
    content: '';
    width: 100%;
    left: 0;
    position: absolute;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.05));
    top: 100%;
    transform: rotateX(90deg);
    transform-origin: top;
    height: 10px;
}header .top_baseY {
    margin: 0 0.3rem;
    transform-style: preserve-3d;
    position: relative;
}header .top_baseY a {
    font-weight: 600;
    color: #000000;
    align-items: center;
    transition: all 0.4s ease;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    transform-style: preserve-3d;
    border-radius: 10px;
    transform: translateZ(0);
    padding: 0.7rem 1.2rem;
    font-size: 15px;
    justify-content: center;
    display: flex;
    text-decoration: none;
}header .top_baseY a::before {
    border-radius: 10px;
    transform: translateZ(-5px);
    transition: opacity 0.4s ease;
    opacity: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgb(182,178,194,0.5) 0%, 
        rgb(133,106,160,0.5) 100%
    );
    position: absolute;
    top: 0;
    content: '';
    left: 0;
    height: 100%;
}header .top_baseY a:hover {
    color: #ffffff;
    transform: translateZ(15px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}header .top_baseY a:hover::before {
    opacity: 1;
}header .top_baseY a::after {
    position: absolute;
    height: 5px;
    content: '';
    opacity: 0;
    bottom: -5px;
    transition: all 0.4s ease;
    background: rgb(182,178,194);
    left: 5px;
    right: 5px;
    transform: translateZ(-10px);
}header .top_baseY a:hover::after {
    opacity: 0.3;
    bottom: -8px;
}header .top_learninge::before {
    position: absolute;
    content: '';
    top: 0;
    left: 35%;
    background: linear-gradient(to right, 
        transparent, 
        rgb(182,178,194), 
        transparent
    );
    height: 1px;
    width: 30%;
}.nav_infoX {
    position: relative;
    z-index: 1;
    background: #ffffff;
    padding-top: 2rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@media (min-width: 1400px) {header .top_learninge {
    max-width: 1320px;
    margin: 0 auto;
}header .top_baseY {
    margin: 0 0.5rem;
}header .top_baseY a {
    padding: 0.7rem 1.5rem;
}
}

@media (max-width: 991px) {header .top_learninge {
    flex-wrap: wrap;
    padding: 1rem 2rem;
}header .first_class0 {
    margin-right: 0;
    margin-bottom: 0;
}header .header_primaryt {
    justify-content: flex-end;
    margin-top: 1rem;
    flex-basis: 100%;
}header .top_baseY a {
    padding: 0.6rem 1rem;
    font-size: calc(15px - 1px);
}
}

@media (max-width: 767px) {header {
    padding: 0;
}header .top_learninge {
    padding: 0.8rem 1.5rem;
}header .first_class0 {
    max-width: 140px;
}header .head_sectionG img {
    max-height: 35px;
}header .header_primaryt {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    margin-top: 0.8rem;
}header .header_primaryt::-webkit-scrollbar {
    height: 3px;
}header .header_primaryt::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgb(182,178,194,0.5);
}header .top_baseY {
    flex: 0 0 auto;
    margin: 0 0.2rem;
}header .top_baseY a {
    font-size: calc(15px - 2px);
    padding: 0.5rem 0.8rem;
    white-space: nowrap;
}
}

@media (max-width: 479px) {header .top_learninge {
    padding: 0.7rem 1.2rem;
}header .first_class0 {
    max-width: 120px;
}header .top_baseY a {
    padding: 0.4rem 0.6rem;
    font-size: calc(15px - 3px);
}header::after {
    height: 3px;
}
}

@supports not (transform-style: preserve-3d) {header .head_sectionG:hover {
    transform: translateY(-3px);
}header .top_baseY a:hover {
    transform: translateY(-3px);
}}.program_resultsj {
    position: relative;
    background: linear-gradient(110deg, rgb(223,222,227) 60%, rgb(182,178,194,0.5) 100%);
    padding: 90px 0;
    overflow: hidden;
}.program_resultsj::before {
    background: radial-gradient(circle at top right, rgb(133,106,160,0.5) 0%, transparent 70%);
    top: 0;
    right: 0;
    position: absolute;
    opacity: 0.4;
    width: 60%;
    content: "";
    height: 100%;
}.program_resultsj .container {
    max-width: 1200px;
    z-index: 2;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}.program_resultsj .study_learnJ {
    align-items: center;
    position: relative;
    display: flex;
    gap: 50px;
    flex-direction: row-reverse;
}.program_resultsj .img_grid_wrapperI {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    position: relative;
    transform: translateY(-15px);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
    z-index: 1;
    max-width: 500px;
    border-radius: 12px;
    flex: 0 0 45%;
}.program_resultsj .img_grid_wrapperI::after {
    transition: all 0.6s ease;
    content: "";
    z-index: -1;
    bottom: -15px;
    border: 2px solid rgb(182,178,194);
    left: 15px;
    opacity: 0.3;
    border-radius: 12px;
    position: absolute;
    right: -15px;
    top: 15px;
}.program_resultsj .img_grid_wrapperI:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.18);
}.program_resultsj .img_grid_wrapperI:hover::after {
    right: -10px;
    left: 10px;
    top: 10px;
    opacity: 0.6;
    bottom: -10px;
}.program_resultsj .text_postK {
    background: #ffffff;
    padding: 40px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    flex: 1;
    border-radius: 12px;
}.program_resultsj h3 {
    font-size: 36px;
    position: relative;
    margin-bottom: 35px;
    font-weight: 700;
    color: #000000;
    display: inline-block;
}.program_resultsj h3::after {
    background: linear-gradient(to right, rgb(182,178,194), rgb(133,106,160));
    content: "";
    width: 100%;
    left: 0;
    bottom: -12px;
    position: absolute;
    height: 4px;
    border-radius: 10px;
}.program_resultsj ul {
    margin: 0;
    list-style: none;
    gap: 25px;
    flex-direction: column;
    padding: 0;
    display: flex;
}.program_resultsj li {
    border-radius: 10px;
    background: linear-gradient(to right, #ffffff, rgb(223,222,227) 120%);
    transition: all 0.3s ease;
    position: relative;
    padding: 15px 20px;
}.program_resultsj li:hover {
    background: linear-gradient(to right, #ffffff, rgb(133,106,160,0.5) 120%);
    transform: translateX(5px);
}.program_resultsj li p {
    align-items: center;
    line-height: 1.5;
    gap: 16px;
    margin: 0;
    display: flex;
    font-size: 18px;
    color: #000000;
    font-weight: 400;
}.program_resultsj svg {
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 4px;
    align-items: center;
    height: 22px;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 22px;
    background: #ffffff;
    justify-content: center;
}.program_resultsj svg path {
    fill: rgb(182,178,194);
    transition: fill 0.3s ease;
}.program_resultsj li:hover svg {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}.program_resultsj li:hover svg path {
    fill: rgb(133,106,160);
}

@media (max-width: 992px) {.program_resultsj {
    padding: 70px 0;
}.program_resultsj .study_learnJ {
    flex-direction: column;
    gap: 40px;
}.program_resultsj .img_grid_wrapperI {
    margin: 0 auto;
    flex: 0 0 100%;
    transform: translateY(0);
    width: 85%;
}.program_resultsj .text_postK {
    width: 100%;
    padding: 35px 30px;
}
}

@media (max-width: 576px) {.program_resultsj {
    padding: 50px 0;
}.program_resultsj .img_grid_wrapperI {
    width: 100%;
}.program_resultsj .img_grid_wrapperI::after {
    display: none;
}.program_resultsj .text_postK {
    padding: 30px 25px;
}.program_resultsj h3 {
    margin-bottom: 30px;
    font-size: 20px;
}.program_resultsj ul {
    gap: 20px;
}.program_resultsj li {
    padding: 12px 15px;
}.program_resultsj svg {
    height: 20px;
    width: 20px;
}}.get_updatese {
    margin: 4rem 0;
    position: relative;
    padding: 3rem;
    background: linear-gradient(90deg, rgb(223,222,227) 0%, rgba(0, 0, 0, 0.5) 100%);
    perspective: 1000px;
    overflow: hidden;
}.get_updatese::before {
    left: 0;
    opacity: 0.4;
    animation: breathe 8s infinite alternate;
    width: 100%;
    content: "";
    position: absolute;
    background: radial-gradient(circle at 30% 50%, rgb(182,178,194,0.5) 0%, transparent 60%);
    top: 0;
    z-index: 1;
    height: 100%;
}.get_updatese::after {
    height: 50%;
    left: -10%;
    background: linear-gradient(90deg, rgb(133,106,160,0.5) 0%, transparent 100%);
    position: absolute;
    filter: blur(20px);
    width: 120%;
    content: "";
    bottom: -30%;
    z-index: 0;
    transform: rotate(-5deg);
}.get_updatese .study_learnJ {
    transform: rotateX(5deg);
    position: relative;
    align-items: center;
    transition: transform 0.5s ease;
    justify-content: space-between;
    transform-style: preserve-3d;
    display: flex;
    z-index: 2;
}.get_updatese .study_learnJ:hover {
    transform: rotateX(0deg);
}.get_updatese p {
    flex: 0 0 40%;
    font-size: 18px;
    position: relative;
    transform: translateZ(20px);
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: #ffffff;
    padding-right: 2rem;
}.get_updatese p::after {
    left: 0;
    transition: transform 0.4s ease;
    width: 60px;
    bottom: -10px;
    content: "";
    transform-origin: left;
    transform: scaleX(0.5);
    position: absolute;
    height: 3px;
    background: rgb(133,106,160);
}.get_updatese .study_learnJ:hover p::after {
    transform: scaleX(1);
}.get_updatese .input_holder {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateZ(40px);
    flex: 0 0 60%;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
}.get_updatese .mail_groupA {
    font-size: 12px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    background: #ffffff;
    flex: 1;
    color: #000000;
    border: none;
    padding: 1.2rem 1.5rem;
}.get_updatese .mail_groupA:focus {
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.9));
    outline: none;
}.get_updatese .mail_groupA::placeholder {
    opacity: 0.6;
    color: #000000;
}.get_updatese .updates_form0 {
    overflow: hidden;
    transition: all 0.4s ease;
    padding: 0 2rem;
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, rgb(182,178,194) 0%, rgb(133,106,160) 100%);
    cursor: pointer;
    font-weight: 600;
    position: relative;
    color: #ffffff;
    font-size: 15px;
    border: none;
}.get_updatese .updates_form0::after {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    top: -50%;
    height: 200%;
    left: -50%;
    opacity: 0;
    position: absolute;
    transform: scale(0.5);
    transition: opacity 0.4s ease;
    content: "";
    width: 200%;
}.get_updatese .updates_form0:hover::after {
    opacity: 1;
    transform: scale(1);
}.get_updatese .updates_form0:hover {
    background: linear-gradient(45deg, rgb(133,106,160) 0%, rgb(182,178,194) 100%);
    box-shadow: 0 0 15px rgb(182,178,194,0.5);
}

@keyframes breathe {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {.get_updatese {
    padding: 2rem 1.5rem;
}.get_updatese .study_learnJ {
    flex-direction: column;
    transform: none;
    align-items: stretch;
}.get_updatese p {
    padding-right: 0;
    margin-bottom: 1.5rem;
    flex: none;
    transform: none;
}.get_updatese .input_holder {
    transform: none;
    flex-direction: column;
    flex: none;
}.get_updatese .mail_groupA {
    border-radius: 10px;
    margin-bottom: 1rem;
    width: 100%;
}.get_updatese .updates_form0 {
    border-radius: 10px;
    width: 100%;
    padding: 1rem;
}}.cookie_warning_popupQ {
    bottom: 0;
    border-top: 3px solid rgb(133,106,160);
    font-family: Arial, sans-serif;
    transform: translateY(100%);
    background: rgb(133,106,160);
    padding: 20px 0;
    animation: slideUp 0.5s forwards;
    z-index: 90;
    width: 100%;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    transition: transform 0.5s ease-in-out;
}@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}
.cookies_techM {
    padding: 20px 5%;
    align-items: center;
    gap: 20px;
    display: flex;
    justify-content: space-between;
}.cookie_warning_popupQ h5 {
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 24px;
}.cookie_warning_popupQ p {
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    font-size: 15px;
}.privacy_notifyi {
    justify-content: center;
    flex-shrink: 0;
    display: flex;
    margin-right: 15px;
    filter: drop-shadow(0 0 10px rgb(182,178,194));
    align-items: center;
}.privacy_notifyi svg {
    transition: transform 0.3s ease-in-out;
    width: 80px;
    fill: rgb(182,178,194);
    height: 80px;
}.privacy_notifyi:hover svg {
    transform: scale(1.1);
}.gdpr_banner5 {
    line-height: 40px;
    text-align: center;
    background: linear-gradient(90deg, rgb(182,178,194), rgb(133,106,160));
    border-radius: 17px;
    padding: 10px 20px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: #000000;
    min-width: 140px;
    cursor: pointer;
    font-size: 19px;
    margin-left: 10px;
    flex-shrink: 0;
    text-decoration: none;
    box-shadow: 0 0 15px rgb(182,178,194);
    white-space: nowrap;
}.gdpr_banner5:hover {
    box-shadow: 0 0 20px rgb(133,106,160);
}.cookie_button.data_approveR:hover {
    box-shadow: 0 0 15px rgb(133,106,160);
}.cookie_warning_popupQ p a {
    color: rgb(182,178,194);
    transition: color 0.3s ease;
    text-decoration: none;
}.cookie_warning_popupQ p a:hover {
    color: rgb(133,106,160);
}#cookiePolicyPopupW {
    display: none;
}#cookiePolicyPopupW:checked ~ .cookie_warning_popupQ {
    visibility: hidden;
    opacity: 0;
}
@media only screen and (max-width: 1200px) {.cookie_warning_popupQ {
    padding: 15px 0;
}.cookies_techM {
    padding: 15px 5%;
}
}
@media only screen and (max-width: 800px) {.privacy_notifyi {
    display: none;
}.cookies_techM {
    text-align: center;
    align-items: center;
    flex-direction: column;
}.cookie_warning_popupQ h5 {
    font-size: 16px;
    margin-bottom: 5px;
}.policy_ack0 {
    margin-bottom: 15px;
}.gdpr_banner5 {
    margin: 10px 0;
    min-width: 100%;
}}
.secure_shellf {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    padding: 40px;
    width: 100%;
    background-color: #ffffff;
    height: auto;
    transition: all 0.3s ease;
}.secure_shellf:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
}.secure_shellf h1 {
    font-size: 46px;
    font-family: Arial, sans-serif;
    margin-bottom: 15px;
    font-weight: 700;
    margin-top: 20px;
    color: rgb(182,178,194);
    text-transform: uppercase;
}.secure_shellf h2 {
    color: rgb(133,106,160);
    margin-top: 15px;
    border-bottom: 2px solid rgb(182,178,194,0.5);
    font-size: 34px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}.secure_shellf h3, .secure_shellf h4, .secure_shellf h5, .secure_shellf h6 {
    text-transform: capitalize;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-top: 10px;
    color: #000000;
    margin-bottom: 5px;
}.secure_shellf ul, .secure_shellf ol {
    color: #000000;
    font-size: 16px;
    line-height: 1.6;
    list-style-position: inside;
    font-family: Arial, sans-serif;
    padding-left: 20px;
    margin: 10px 0;
    list-style: none;
}.secure_shellf li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}.secure_shellf li::before {
    left: 0;
    color: rgb(182,178,194);
    position: absolute;
    font-size: 1.2em;
    content: "•";
}.secure_shellf section {
    transition: background 0.3s ease;
    padding: 20px;
    background: rgb(223,222,227);
    border-radius: 10px;
}.secure_shellf section:hover {
    background: rgb(182,178,194,0.5);
}.secure_shellf p, .secure_shellf span, .secure_shellf div {
    margin-bottom: 10px;
    transition: color 0.3s ease;
    color: #000000;
    font-family: Arial, sans-serif;
    line-height: 1.8;
    font-size: 16px;
}.secure_shellf p:hover, .secure_shellf span:hover, .secure_shellf div:hover {
    color: #000000;
}

@media only screen and (max-width: 800px) {.secure_shellf {
    padding: 20px;
}.secure_shellf h1 {
    font-size: calc(20px - 10px);
}.secure_shellf h2 {
    font-size: calc(20px - 8px);
}.secure_shellf h3, .secure_shellf h4, .secure_shellf h5, .secure_shellf h6 {
    font-size: calc(20px - 5px);
}.secure_shellf ul, .secure_shellf ol {
    padding-left: 15px;
    font-size: calc(16px - 2px);
}
}