* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
svg {
    width: 30px;
    height: 30px;
}
html,body {
    min-height: 100%;
    height: 100%;
    font-family: Playfair Display, sans-serif;
    color: #000000;
}
.wrapper-paddingH {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
}
.container {
    margin: auto;
    width: 1200px;
    max-width: 100%;
}

.nav_tutorj {
    flex: 1 0 auto;
}
a {
    color: inherit;
    text-decoration: none;
}
section {
    background-color: rgb(217,217,228);
}
.footer {
    flex: 0 0 auto;
}
header,footer {
    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;
    }
}.privacy_holdfast4 {
    padding: 50px;
    width: 100%;
    overflow: hidden;
    height: auto;
    background: rgb(101,101,118);
    border: 2px solid rgb(162,178,209);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
}

.privacy_holdfast4 h1 {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 42px;
    font-weight: 700;
    color: rgb(162,178,209);
    border-bottom: 4px solid rgb(101,101,118);
    width: 100%;
    text-align: center;
    padding-bottom: 10px;
}

.privacy_holdfast4 h2 {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 2px solid rgb(162,178,209);
    width: 100%;
    text-align: left;
    padding-bottom: 5px;
}

.privacy_holdfast4 ul, .privacy_holdfast4 ol {
    list-style-type: none;
    padding-left: 0;
    margin: 20px 0;
    width: 100%;
}

.privacy_holdfast4 li {
    margin-bottom: 15px;
    padding: 10px 20px;
    background: rgb(162,178,209,0.5);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    border-left: 4px solid rgb(101,101,118);
}

.privacy_holdfast4 section {
    background: rgb(101,101,118,0.5);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    margin-bottom: 30px;
}

.privacy_holdfast4 p, .privacy_holdfast4 span, .privacy_holdfast4 div {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    font-size: 14px;
}

@media only screen and (max-width: 800px) {
    .privacy_holdfast4 {
        padding: 30px 15px;
    }

    .privacy_holdfast4 h1 {
        font-size: calc(18px - 10px);
    }

    .privacy_holdfast4 h2 {
        font-size: calc(18px - 8px);
    }

    .privacy_holdfast4 li {
        padding: 8px 15px;
        font-size: calc(14px - 2px);
    }
}.study_methodb {
    position: relative;
    padding: 80px 20px;
    background: rgb(101,101,118);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.study_methodb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(162,178,209,0.5) 0%, rgb(101,101,118,0.5) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: -2;
    animation: backgroundAnimation 10s infinite alternate;
}

.study_methodb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgb(162,178,209,0.5), transparent);
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(100px);
}

@keyframes backgroundAnimation {
    0% { clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
    100% { clip-path: polygon(0 15%, 100% 30%, 100% 100%, 0 85%); }
}

.study_methodb .gallery_wrap_boxl {
    position: relative;
    width: 80%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 0 30px rgb(162,178,209,0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.study_methodb .gallery_wrap_boxl:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgb(162,178,209,0.5), 0 0 80px rgb(101,101,118,0.5);
}

.study_methodb h2 {
    font-size: 36px;
    color: rgb(162,178,209);
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.study_methodb h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: rgb(101,101,118);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.study_methodb p {
    font-size: 16px;
    color: #ffffff;
    max-width: 800px;
    line-height: 1.6;
    margin: 0 auto;
}

@media only screen and (max-width: 800px) {
    .study_methodb {
        padding: 30px 10px;
    }

    .study_methodb .gallery_wrap_boxl {
        padding: 20px;
        width: 100%;
    }

    .study_methodb h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .study_methodb p {
        font-size: 16px;
    }
}

.wrapper-paddingH .study_methodb {
    padding-top: 100px;
    padding-bottom: 100px;
}

.wrapper-paddingH .study_methodb::before {
    background: linear-gradient(135deg, rgb(162,178,209) 0%, rgb(101,101,118) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    animation: backgroundAnimation 10s infinite alternate;
}

.wrapper-paddingH .study_methodb .gallery_wrap_boxl {
    width: 60%;
    padding: 40px;
    justify-self: center;
    border-radius: 24px;
    box-shadow: 0 0 30px rgb(162,178,209,0.5);
}

.wrapper-paddingH .study_methodb h2 {
    font-size: 36px;
    text-align: left;
    color: rgb(162,178,209);
}

.wrapper-paddingH .study_methodb h2::after {
    width: 100px;
}

.wrapper-paddingH .study_methodb p {
    width: 100%;
    text-align: left;
}

@media only screen and (max-width: 1200px) {
    .wrapper-paddingH .study_methodb .gallery_wrap_boxl {
        padding: 20px;
        width: 100%;
    }

    .wrapper-paddingH .study_methodb {
        padding: 50px 0;
    }

    .wrapper-paddingH .study_methodb h2 {
        font-size: 20px;
    }

    .wrapper-paddingH .study_methodb p {
        font-size: 16px;
    }
}
.price_rowb {
    background: linear-gradient(-45deg, rgb(162,178,209,0.5), rgb(101,101,118,0.5), rgba(0, 0, 0, 0.5), rgb(217,217,228));
    background-size: 400% 400%;
    animation: backgroundFlow 15s ease infinite;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

@keyframes backgroundFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.price_rowb .container {
    position: relative;
    z-index: 1;
}

.price_rowb .plan_detailsR {
    position: relative;
}

.price_rowb .learn_price1 {
    text-align: center;
    margin-bottom: 60px;
}

.price_rowb .learn_price1 h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.price_rowb .promo_plansm {
    font-size: 15px;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.price_rowb .deal_gridk {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.price_rowb .learning_pland {
    flex-basis: calc(33.333% - 30px);
    min-width: 280px;
    text-decoration: none;
    perspective: 1000px;
}

.price_rowb .sub_optionsO {
    background: #ffffff;
    border-radius: 27px;
    overflow: hidden;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.price_rowb .learning_pland:hover .sub_optionsO {
    transform: rotateY(15deg) translateZ(20px);
}

.price_rowb .hero_imageF {
    height: 200px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    transition: clip-path 0.6s;
}

.price_rowb .learning_pland:hover .hero_imageF {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.price_rowb .hero_imageF::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgb(162,178,209,0.5));
}

.price_rowb .class_ratesx {
    padding: 30px;
    background: #ffffff;
}

.price_rowb .learning_pland h3 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
}

.price_rowb .learning_pland h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: rgb(162,178,209);
    bottom: -5px;
    left: 0;
}

.price_rowb .learn_subt {
    font-size: 20px;
    font-weight: 700;
    color: rgb(162,178,209);
    margin-bottom: 15px;
    display: inline-block;
}

.price_rowb .learning_pland p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .price_rowb .learning_pland {
        flex-basis: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .price_rowb {
        padding: 60px 0;
    }
    .price_rowb .learn_price1 {
        margin-bottom: 40px;
    }
    .price_rowb .learning_pland {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    .price_rowb .learn_price1 h2 {
        font-size: calc(36px * 0.9);
    }
    .price_rowb .promo_plansm {
        font-size: calc(15px * 0.9);
    }
    .price_rowb .learning_pland h3 {
        font-size: calc(20px * 0.9);
    }
    .price_rowb .learn_subt {
        font-size: calc(20px * 0.9);
    }
    .price_rowb .learning_pland p {
        font-size: calc(15px * 0.9);
    }
}.tyHubJ {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(217,217,228);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.tyHubJ .container {
    background-color: rgb(217,217,228);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tyHubJ h2 {
    font-size: 43px;
    color: rgb(162,178,209);
    margin-bottom: 20px;
    font-family: Playfair Display, sans-serif;
    font-weight: 600;
    border-bottom: 4px solid rgb(162,178,209);
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
}
.tyHubJ p {
    font-size: 18px;
    color: #000000;
    font-family: Playfair Display, sans-serif;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto 0;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
    border-left: 4px solid rgb(101,101,118);
}
@media only screen and (max-width: 800px) {
    .tyHubJ {
        padding: 20px;
    }
    .tyHubJ .container {
        padding: 20px;
    }
    .tyHubJ h2 {
        font-size: 37px;
        padding-bottom: 5px;
    }
    .tyHubJ p {
        font-size: 17px;
        padding: 15px;
    }
}
.attempt_nowv {
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(217,217,228) 30%, rgba(0, 0, 0, 0.5) 100%);
    position: relative;
    overflow: hidden;
    border-top: 5px solid rgb(162,178,209);
    border-bottom: 5px solid rgb(101,101,118);
    display: flex;
    justify-content: center;
    align-items: center;
}

.attempt_nowv::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgb(162,178,209,0.5), transparent 70%);
    transform: rotate(45deg);
    opacity: 0.3;
    z-index: 0;
}

.attempt_nowv .container {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 80vw;
}

.attempt_nowv .gallery_wrap_boxl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px 20px;
    background: #ffffff;
    border: 2px solid rgba(0, 0, 0, 0.5);
    max-width: 600px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.attempt_nowv .gallery_wrap_boxl::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 75%, rgb(101,101,118,0.5));
    mix-blend-mode: overlay;
    opacity: 0.5;
    z-index: -1;
}

.attempt_nowv .gallery_wrap_boxl svg, .attempt_nowv .gallery_wrap_boxl svg path {
    fill: rgb(162,178,209);
    width: 10vw;
    height: 10vw;
    max-width: 120px;
    max-height: 120px;
    margin: 0 auto;
    transition: transform 0.5s ease-in-out;
}

.attempt_nowv .gallery_wrap_boxl svg:hover {
    transform: rotate(360deg);
}

.attempt_nowv .gallery_wrap_boxl h2 {
    font-size: 32px;
    color: #000000;
    margin: 20px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-in-out;
}

.attempt_nowv .gallery_wrap_boxl .request_supporte {
    padding: 15px 30px;
    background: linear-gradient(90deg, rgb(162,178,209), rgb(101,101,118));
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: background 0.5s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.attempt_nowv .gallery_wrap_boxl .request_supporte::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(101,101,118,0.5), rgb(162,178,209,0.5));
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 1;
}

.attempt_nowv .gallery_wrap_boxl .request_supporte:hover {
    transform: scale(1.05);
}

.attempt_nowv .gallery_wrap_boxl .request_supporte:hover::after {
    opacity: 0.5;
}

@media only screen and (max-width: 800px) {
    .attempt_nowv .gallery_wrap_boxl {
        padding: 30px 15px;
    }

    .attempt_nowv .gallery_wrap_boxl h2 {
        font-size: 19px;
    }

    .attempt_nowv .gallery_wrap_boxl svg {
        width: 50vw;
        height: 50vw;
        max-width: 100px;
        max-height: 100px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.our_storyi {
    position: relative;
    background: linear-gradient(180deg, rgb(217,217,228) 0%, #ffffff 100%);
    padding: 120px 0;
    overflow: hidden;
}

.our_storyi::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgb(162,178,209,0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgb(101,101,118,0.5) 0%, transparent 30%);
    opacity: 0.3;
    z-index: 1;
}

.our_storyi::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(-45deg, transparent 45%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.5) 55%, transparent 55%),
        linear-gradient(45deg, transparent 45%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.5) 55%, transparent 55%);
    background-size: 100px 100px;
    opacity: 0.03;
    z-index: 1;
}

.our_storyi .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our_storyi h2 {
    font-size: 47px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.our_storyi h2::before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: rgb(162,178,209);
    border-radius: 4px;
}

.our_storyi h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: rgb(101,101,118);
    border-radius: 4px;
    animation: slideAcross 3s infinite;
}

@keyframes slideAcross {
    0% {
        left: calc(50% - 40px);
    }
    50% {
        left: calc(50% + 40px);
    }
    100% {
        left: calc(50% - 40px);
    }
}

.our_storyi .expert_teamf {
    display: flex;
    gap: 30px;
}

.our_storyi .edu_ethosd {
    flex: 1;
    padding: 60px 40px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 2;
    transform: translateY(0);
}

.our_storyi .edu_ethosd:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.our_storyi .edu_ethosd::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    transition: all 0.4s ease;
}

.our_storyi .edu_ethosd:nth-child(1)::before {
    background: rgb(162,178,209);
}

.our_storyi .edu_ethosd:nth-child(2)::before {
    background: rgb(101,101,118);
}

.our_storyi .edu_ethosd::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.03) 100%);
    z-index: -1;
}

.our_storyi .edu_ethosd h3 {
    font-size: 23px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.our_storyi .edu_ethosd h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    transition: width 0.4s ease;
}

.our_storyi .edu_ethosd:nth-child(1) h3::after {
    background: rgb(162,178,209);
}

.our_storyi .edu_ethosd:nth-child(2) h3::after {
    background: rgb(101,101,118);
}

.our_storyi .edu_ethosd:hover h3::after {
    width: 80px;
}

.our_storyi .edu_ethosd p {
    color: #000000;
    font-size: 14px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.our_storyi .edu_ethosd:nth-child(1) {
    transform: translateY(20px);
}

.our_storyi .edu_ethosd:nth-child(1):hover {
    transform: translateY(5px);
}

.our_storyi .edu_ethosd:nth-child(1)::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    background: rgb(162,178,209,0.5);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.our_storyi .edu_ethosd:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
    background: rgb(101,101,118,0.5);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.our_storyi .container::before,
.our_storyi .container::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.05;
    z-index: 1;
}

.our_storyi .container::before {
    top: -150px;
    right: -150px;
    background: rgb(162,178,209);
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    animation: morphShape 15s linear infinite alternate;
}

.our_storyi .container::after {
    bottom: -150px;
    left: -150px;
    background: rgb(101,101,118);
    border-radius: 70% 30% 40% 60% / 60% 40% 50% 40%;
    animation: morphShape 15s linear infinite alternate-reverse;
}

@keyframes morphShape {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }
    50% {
        border-radius: 60% 40% 30% 70% / 60% 50% 30% 40%;
    }
    100% {
        border-radius: 35% 65% 60% 40% / 50% 45% 55% 45%;
    }
}

@media screen and (max-width: 991px) {
    .our_storyi {
        padding: 100px 0;
    }
    
    .our_storyi h2 {
        margin-bottom: 60px;
    }
    
    .our_storyi .edu_ethosd {
        padding: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .our_storyi {
        padding: 80px 0;
    }
    
    .our_storyi h2 {
        margin-bottom: 50px;
        font-size: 31px;
    }
    
    .our_storyi .expert_teamf {
        flex-direction: column;
    }
    
    .our_storyi .edu_ethosd {
        transform: translateY(0) !important;
    }
    
    .our_storyi .edu_ethosd:hover {
        transform: translateY(-10px) !important;
    }
}

@media screen and (max-width: 576px) {
    .our_storyi {
        padding: 60px 0;
    }
    
    .our_storyi h2 {
        margin-bottom: 40px;
    }
    
    .our_storyi .edu_ethosd {
        padding: 30px 25px;
    }
    
    .our_storyi .edu_ethosd h3 {
        font-size: calc(17px + 0.1rem);
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .our_storyi .edu_ethosd p {
        font-size: calc(14px - 0.05rem);
    }
    
    .our_storyi .edu_ethosd:hover {
        transform: translateY(-5px) !important;
    }
}.course_offeringz {
    padding-top: 90px;
    padding-bottom: 90px;
    font-family: Playfair Display, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.course_offeringz h2 {
    color: rgb(162,178,209);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
}
.course_offeringz .nav_tutorj {
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #ffffff;
}
.course_offeringz .nav_tutorj:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    transform: translateY(-10px);
}
.course_offeringz h3 {
    color: rgb(101,101,118);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}
.course_offeringz p {
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
    margin-bottom: 30px;
}
.course_offeringz .request_supporte {
    background: rgb(162,178,209);
    color: #ffffff;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}
.course_offeringz .request_supporte:hover {
    background: rgb(101,101,118);
    transform: translateY(-5px);
}
.course_offeringz .gallery_wrap_boxl {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.course_offeringz .educationJ {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.course_offeringz .learn_developmentT {
    padding: 20px;
    margin-bottom: 40px;
}
.course_offeringz .nav_tutorj {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px;
}
.course_offeringz .reading_areaS {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
}
.course_offeringz .hero_imageF {
    height: 300px;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}
@media only screen and (max-width: 800px) {
    .course_offeringz .educationJ {
        flex-direction: column;
    }
    .course_offeringz h2 {
        font-size: 19px;
    }
    .course_offeringz h3 {
        font-size: 18px;
    }
    .course_offeringz .learn_developmentT {
        max-width: 100%;
        flex-basis: 100%;
        padding: 0;
    }
    .course_offeringz {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .wrapper-paddingH .course_offeringz .nav_tutorj {
        padding: 10px;
    }
}
.wrapper-paddingH .course_offeringz {
    position: relative;
    overflow: hidden;
    background: rgb(217,217,228);
}
.wrapper-paddingH .course_offeringz .educationJ {
    width: 100%;
}
.wrapper-paddingH .course_offeringz .nav_tutorj {
    border-radius: 10px;
    box-shadow: none;
}
.wrapper-paddingH .course_offeringz .reading_areaS {
    position: relative;
    z-index: 3;
    background: none;
    width: 100%;
    min-height: unset;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    color: #000000;
    border: none;
}
.wrapper-paddingH .course_offeringz h3 {
    font-size: 32px;
    font-weight: 700;
    color: rgb(101,101,118);
    margin: 0;
}
.wrapper-paddingH .course_offeringz p {
    padding: 0 40px 0 0;
    margin-top: 20px;
    font-size: 13px;
    color: #000000;
    line-height: 1.7;
    font-weight: 400;
}
.wrapper-paddingH .course_offeringz .request_supporte {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 40px;
    background: rgb(162,178,209);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    border-radius: 10px;
    border: none;
    transition: background 0.3s ease, transform 0.3s ease;
}
.wrapper-paddingH .course_offeringz .request_supporte:hover {
    background: rgb(101,101,118);
    transform: translateY(-5px);
}
@media only screen and (max-width: 800px) {
    .wrapper-paddingH .course_offeringz .reading_areaS {
        width: 100%;
        padding: 20px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .wrapper-paddingH .course_offeringz p {
        padding: 0;
        font-size: 13px;
        line-height: 1.5;
        margin-top: 20px;
    }
    .wrapper-paddingH .course_offeringz h3 {
        font-size: 18px;
    }
    .wrapper-paddingH .course_offeringz .request_supporte {
        margin-top: 20px;
    }
}
.benefits_overviewd .learn_elevationl h2 {
    color: rgb(101,101,118);
}

.benefits_overviewd .expert_benefitsu svg, .benefits_overviewd .expert_benefitsu svg path {
    fill: rgb(162,178,209);
}

.benefits_overviewd .expert_benefitsu p {
    color: #000000;
}

.benefits_overviewd .expert_benefitsu b {
    color: rgb(162,178,209);
}

.benefits_overviewd {
    padding-top: 80px;
    padding-bottom: 80px;
}

.benefits_overviewd .value_points1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.benefits_overviewd .learn_elevationl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.benefits_overviewd .learn_elevationl h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: 33px;
    font-weight: 600;
}

.benefits_overviewd .learn_elevationl h4 {
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
}

.benefits_overviewd .learning_boost8 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    padding: 20px;
}

.benefits_overviewd .expert_benefitsu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 200px;
    width: 25%;
    padding: 10px;
}

.benefits_overviewd .expert_benefitsu svg, .benefits_overviewd .expert_benefitsu img {
    width: 128px;
    height: 128px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-paddingH .benefits_overviewd .value_points1 {
        justify-content: center;
    }
    .wrapper-paddingH .benefits_overviewd .value_points1 .expert_benefitsu {
        width: calc(50% - 20px);
        margin: 10px;
    }
}

@media only screen and (max-width: 800px) {
    .benefits_overviewd .learn_elevationl h2 {
        font-size: 30px;
    }

    .benefits_overviewd .value_points1 {
        flex-direction: column;
    }

    .benefits_overviewd {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .wrapper-paddingH .benefits_overviewd .value_points1 .expert_benefitsu {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.wrapper-paddingH .benefits_overviewd {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(101,101,118,0.5) 100%);
    color: #ffffff;
}

.wrapper-paddingH .benefits_overviewd .learn_elevationl {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    text-align: center;
}

.wrapper-paddingH .benefits_overviewd .learn_elevationl h2 {
    font-size: 33px;
    font-weight: 700;
    color: rgb(162,178,209);
    margin-bottom: 40px;
    position: relative;
}

.wrapper-paddingH .benefits_overviewd .learn_elevationl h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: rgb(162,178,209);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.wrapper-paddingH .benefits_overviewd .learning_boost8 {
    font-size: 17px;
    margin-bottom: 30px;
    color: #ffffff;
    padding: 10px 20px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}


.wrapper-paddingH .benefits_overviewd .value_points1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.wrapper-paddingH .benefits_overviewd .expert_benefitsu {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid rgb(162,178,209);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 23%;
    border-radius: 11px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wrapper-paddingH .benefits_overviewd .expert_benefitsu:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}

.wrapper-paddingH .benefits_overviewd .expert_reasons4 img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
    border: 2px solid rgb(162,178,209);
    padding: 10px;
    background: rgb(162,178,209,0.5);
}

.wrapper-paddingH .benefits_overviewd .expert_benefitsu h4 {
    font-size: 20px;
    font-weight: 700;
    color: rgb(162,178,209);
    margin-top: 10px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
    .wrapper-paddingH .benefits_overviewd .expert_benefitsu {
        width: calc(50% - 10px);
        margin-right: 10px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 800px) {
    .wrapper-paddingH .benefits_overviewd .value_points1 {
        flex-direction: column;
        align-items: center;
    }

    .wrapper-paddingH .benefits_overviewd .expert_benefitsu {
        width: 80%;
        margin-bottom: 20px;
    }

    .wrapper-paddingH .benefits_overviewd .learn_elevationl h2 {
        font-size: 28px;
    }

    .wrapper-paddingH .benefits_overviewd {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}.program_assetsn {
    position: relative;
    padding: 150px 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.5) 0%, rgb(217,217,228) 50%, rgb(101,101,118,0.5) 100%);
    overflow: hidden;
}

.program_assetsn::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background: repeating-linear-gradient(
        45deg,
        rgb(162,178,209,0.5) 0%,
        transparent 1px,
        transparent 50px
    );
    animation: gridMove 30s linear infinite;
    opacity: 0.1;
}

@keyframes gridMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.program_assetsn .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.program_assetsn .gallery_wrap_boxl {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    position: relative;
}

.program_assetsn .hero_imageF {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 120%;
    border-radius: 60px 0 0 60px;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
}

.program_assetsn .hero_imageF::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgb(162,178,209,0.5) 100%
    );
    z-index: 1;
}

.program_assetsn .reading_areaS {
    position: relative;
    padding: 60px;
    background: #ffffff;
    border-radius: 0 18px 18px 0;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-left: 4px solid rgb(162,178,209);
}

.program_assetsn .reading_areaS::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #ffffff 0%,
        rgba(255, 255, 255, 0.9) 100%
    );
    z-index: -1;
    border-radius: 0 18px 18px 0;
}

.program_assetsn .reading_areaS h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.program_assetsn .reading_areaS h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: rgb(162,178,209);
    border-radius: 10px;
}

.program_assetsn .reading_areaS ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 25px;
}

.program_assetsn .reading_areaS ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #000000;
    line-height: 1.6;
    padding: 15px 20px;
    background: linear-gradient(
        to right,
        rgba(rgb(217,217,228), 0.3),
        transparent
    );
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.program_assetsn .reading_areaS ul li:hover {
    transform: translateX(10px);
}

.program_assetsn .reading_areaS ul li svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    fill: rgb(162,178,209);
    filter: drop-shadow(2px 2px 4px rgb(162,178,209,0.5));
}

@media (max-width: 1200px) {
    .program_assetsn .gallery_wrap_boxl {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .program_assetsn .hero_imageF {
        position: relative;
        width: 100%;
        height: 500px;
        right: 0;
        top: 0;
        transform: none;
        border-radius: 18px;
        clip-path: none;
    }

    .program_assetsn .reading_areaS {
        border-radius: 18px;
        border-left: none;
        border-top: 4px solid rgb(162,178,209);
    }
}

@media (max-width: 768px) {
    .program_assetsn {
        padding: 80px 0;
    }

    .program_assetsn .container {
        padding: 0 20px;
    }

    .program_assetsn .hero_imageF {
        height: 400px;
    }

    .program_assetsn .reading_areaS {
        padding: 40px 30px;
    }

    .program_assetsn .reading_areaS h2 {
        font-size: calc(28px * 0.85);
        margin-bottom: 30px;
    }

    .program_assetsn .reading_areaS ul {
        gap: 15px;
    }

    .program_assetsn .reading_areaS ul li {
        font-size: calc(13px * 0.95);
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .program_assetsn {
        padding: 60px 0;
    }

    .program_assetsn .hero_imageF {
        height: 300px;
    }

    .program_assetsn .reading_areaS {
        padding: 30px 20px;
    }

    .program_assetsn .reading_areaS h2 {
        font-size: calc(28px * 0.75);
        margin-bottom: 25px;
        padding-bottom: 15px;
    }

    .program_assetsn .reading_areaS ul li {
        font-size: calc(13px * 0.9);
        padding: 10px;
        gap: 15px;
    }
}.user_testimonials8 {
    background: rgb(217,217,228);
    padding: 80px 0;
    border-top: 5px solid rgb(162,178,209);
    position: relative;
    overflow: hidden;
}

.user_testimonials8::before,
.user_testimonials8::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 300px;
    background-repeat: repeat-x;
    animation: waveAnimation 20s linear infinite;
    pointer-events: none;
}

.user_testimonials8::before {
    top: -150px;
    background-image: 
        radial-gradient(circle at 100% 150%, rgb(162,178,209,0.5) 24%, transparent 25%),
        radial-gradient(circle at 0 150%, rgb(162,178,209,0.5) 24%, transparent 25%);
    background-size: 50px 100px;
    opacity: 0.1;
}

.user_testimonials8::after {
    bottom: -150px;
    background-image: 
        radial-gradient(circle at 100% 150%, rgb(101,101,118,0.5) 24%, transparent 25%),
        radial-gradient(circle at 0 150%, rgb(101,101,118,0.5) 24%, transparent 25%);
    background-size: 70px 140px;
    opacity: 0.05;
    animation-duration: 25s;
}

@keyframes waveAnimation {
    0% { background-position-x: 0; }
    100% { background-position-x: 1000px; }
}

.user_testimonials8 h3 {
    font-size: clamp(24px, 5vw, 29px);
    color: rgb(162,178,209);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.user_testimonials8 h3:hover {
    transform: scale(1.05);
}

.user_testimonials8 h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: rgb(162,178,209);
    transform: translateX(-50%) scaleX(0);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.user_testimonials8 h3:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.user_testimonials8 .gallery_wrap_boxl {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.user_testimonials8 .learning_testimonialsv {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.user_testimonials8 .learning_testimonialsv .feedback_showcase6 {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.user_testimonials8 .learning_testimonialsv .feedback_showcase6:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.user_testimonials8 .learning_testimonialsv .hero_imageF {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid rgb(162,178,209);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.user_testimonials8 .learning_testimonialsv .feedback_showcase6:hover .hero_imageF {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.user_testimonials8 .learning_testimonialsv .text {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.user_testimonials8 .learning_testimonialsv .text p {
    color: #000000;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 10px;
    transition: color 0.3s ease;
}

.user_testimonials8 .learning_testimonialsv .feedback_showcase6:hover .text p {
    color: rgb(162,178,209);
}

.user_testimonials8 .learning_testimonialsv .text span {
    display: block;
    color: #000000;
    font-size: 17px;
    font-weight: 300;
    text-align: center;
    line-height: 1.5;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.user_testimonials8 .learning_testimonialsv .feedback_showcase6:hover .text span {
    opacity: 1;
}

@media only screen and (max-width: 992px) {
    .user_testimonials8 .learning_testimonialsv {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    .user_testimonials8 {
        padding: 60px 0;
    }

    .user_testimonials8 h3 {
        margin-bottom: 30px;
    }

    .user_testimonials8 .learning_testimonialsv {
        grid-template-columns: 1fr;
    }

    .user_testimonials8 .learning_testimonialsv .hero_imageF {
        height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .user_testimonials8::before,
    .user_testimonials8::after,
    .user_testimonials8 h3,
    .user_testimonials8 h3::after,
    .user_testimonials8 .learning_testimonialsv .review,
    .user_testimonials8 .learning_testimonialsv .photo,
    .user_testimonials8 .learning_testimonialsv .text p,
    .user_testimonials8 .learning_testimonialsv .text span {
        transition: none;
        animation: none;
    }
}footer {
    background: linear-gradient(135deg, rgb(162,178,209) 0%, rgb(101,101,118) 100%);
    color: #ffffff;
    font-family: Playfair Display, sans-serif;
    padding: 50px 0;
}
footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
footer .equity_infoh {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
footer .head_baseO {
    margin-bottom: 20px;
}
footer .head_baseO svg, footer .head_baseO img {
    max-height: 80px;
    width: auto;
    fill: #ffffff;
}
footer .menu {
    margin-bottom: 20px;
    width: 100%;
}
footer .nav_mainM {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}
footer .menu a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    padding: 10px;
    border: 1px solid #ffffff;
    border-radius: 10px;
    text-align: center;
    display: block;
}
footer .menu a:hover {
    background: rgb(101,101,118);
    color: rgb(162,178,209);
}
footer .footer_careers6 {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ffffff;
}
footer .exam_prepr {
    font-size: 12px;
    color: #ffffff;
}
footer .exam_prepr a {
    color: #ffffff;
    text-decoration: underline;
}
.wrapper-paddingH footer .footer {
    padding: 0;
    background: transparent;
}
.wrapper-paddingH footer .equity_infoh {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.wrapper-paddingH footer .head_baseO {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px;
    border-bottom: 3px solid rgb(162,178,209);
    margin-bottom: 20px;
}
.wrapper-paddingH footer .head_baseO svg, .wrapper-paddingH footer .head_baseO svg path, .wrapper-paddingH footer .head_baseO img {
    margin: 0;
    fill: #ffffff;
}
.wrapper-paddingH footer .nav_mainM {
    flex-direction: row;
    justify-content: center;
}
.wrapper-paddingH footer .menu a {
    margin: 0;
    padding: 10px 20px;
    font-size: 17px;
    color: #ffffff;
    text-align: center;
}
.wrapper-paddingH footer .footer_careers6 {
    background: rgb(162,178,209,0.5);
    padding-top: 5px;
    padding-bottom: 5px;
}
.wrapper-paddingH footer .exam_prepr {
    text-align: center;
}
@media (max-width: 1200px) {
    footer .container {
        grid-template-columns: 1fr;
    }
    footer .equity_infoh {
        text-align: center;
    }
    footer .nav_mainM {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}
@media (max-width: 800px) {
    footer {
        padding: 40px 0;
    }
    footer .menu a {
        padding: 8px 12px;
        font-size: calc(13px * 0.9);
    }
    footer .exam_prepr {
        font-size: calc(12px * 0.9);
    }
}
header {
    padding-bottom: 10px;
    background: linear-gradient(135deg, rgb(162,178,209), rgb(101,101,118));
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.top_guideD {
    border-top: 10px solid rgb(162,178,209);
    border-bottom: 2px solid rgb(162,178,209);
    background: linear-gradient(135deg, rgb(217,217,228), #ffffff);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    padding: 20px;
}
.top_guideD .main_learning8 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 2px solid rgb(162,178,209);
    border-radius: 21px;
    background: linear-gradient(135deg, #ffffff, rgb(217,217,228));
}
.top_guideD .main_learning8 .head_baseO {
    margin: 10px 0;
    position: relative;
    z-index: 1;
    border: 2px solid rgb(162,178,209);
    border-radius: 10px;
    padding: 10px;
    background: #ffffff;
}
.top_guideD .main_learning8 .head_baseO svg, .top_guideD .main_learning8 .head_baseO img {
    width: 100px;
    height: 100px;
    fill: rgb(162,178,209);
    transition: transform 0.3s ease;
}
.top_guideD .main_learning8 .head_baseO:hover svg, .top_guideD .main_learning8 .head_baseO:hover img {
    transform: scale(1.1);
}
.top_guideD .header_starte {
    width: 50%;
    font-size: 23px;
    text-align: center;
    color: rgb(101,101,118);
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(162,178,209);
    padding-bottom: 10px;
}
.top_guideD .nav_startV {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-bottom: -2px;
    margin-top: 20px;
    position: relative;
    z-index: 11;
    border-top: 2px solid rgb(162,178,209);
    padding-top: 10px;
}
.top_guideD .nav_startV a {
    border: 2px solid transparent;
    border-bottom: 2px solid rgb(162,178,209);
    padding: 10px 16px;
    color: rgb(101,101,118);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

@media only screen and (max-width: 1000px) {
    .top_guideD .header_starte {
        width: 100%;
    }
    .top_guideD .nav_startV {
        flex-direction: column;
    }
}.welcomeU {
    width: 100%;
    padding: 60px 0;
    background-color: rgb(162,178,209);
    color: #ffffff;
    overflow: hidden;
}
.welcomeU .main_homed {
    width: 100%;
    min-height: 600px;
    height: auto;
    position: relative;
    background-size: cover;
    background-position: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.welcomeU .expert_classeso {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 19px;
    max-width: 800px;
    margin: 0 auto;
}
.welcomeU .expert_classeso h1 {
    color: rgb(162,178,209);
    font-size: 47px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.welcomeU .expert_classeso h3 {
    color: rgb(101,101,118);
    font-size: 29px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}
.welcomeU .expert_classeso p {
    color: #000000;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}
@media only screen and (max-width: 800px) {
    .welcomeU .main_homed {
        min-height: 400px;
        height: auto;
    }
    .welcomeU .expert_classeso {
        padding: 20px;
    }
    .welcomeU .expert_classeso h1 {
        font-size: 28px;
    }
    .welcomeU .expert_classeso h3 {
        font-size: 22px;
    }
    .welcomeU .expert_classeso p {
        font-size: 16px;
    }
}
.wrapper-paddingH .welcomeU .expert_classeso {
    position: static;
    width: 100%;
    background: linear-gradient(180deg, rgb(162,178,209,0.5) 0%, rgb(101,101,118,0.5) 100%);
    padding: 100px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 19px;
    text-align: center;
}
.wrapper-paddingH .welcomeU {
    position: relative;
    padding: 0;
}
.wrapper-paddingH .welcomeU::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0.5;
    z-index: 0;
}
.wrapper-paddingH .welcomeU .main_homed {
    min-height: unset;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}
.wrapper-paddingH .welcomeU .expert_classeso h1 {
    text-align: center;
    color: #ffffff;
    font-size: 47px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.wrapper-paddingH .welcomeU .expert_classeso h3 {
    text-align: center;
    font-size: 29px;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.wrapper-paddingH .welcomeU .expert_classeso p {
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    position: relative;
    z-index: 1;
}
.welcomeU .expert_classeso::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgb(162,178,209,0.5);
    z-index: -1;
    border-radius: 19px;
}
.welcomeU .expert_classeso h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: rgb(101,101,118);
    margin: 16px auto 0;
}.contact_section8 {
    position: relative;
    background: rgb(217,217,228);
    padding: 70px 0;
    overflow: hidden;
}

.contact_section8::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.03) 10px, rgba(0, 0, 0, 0.03) 20px),
        repeating-linear-gradient(135deg, transparent, transparent 10px, rgba(0, 0, 0, 0.03) 10px, rgba(0, 0, 0, 0.03) 20px);
    z-index: 0;
}

.contact_section8 .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact_section8 h2 {
    font-size: 34px;
    font-weight: 700;
    color: rgb(101,101,118);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.contact_section8 h2::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgb(162,178,209);
}

.contact_section8 .request_inquirym {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact_section8 .hero_imageF {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
    min-height: 500px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    transition: transform 0.6s ease;
}

.contact_section8 .inquiry_helpq {
    grid-column: 1;
    grid-row: 1;
    padding: 50px 40px;
    background: #ffffff;
}

.contact_section8 #contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact_section8 h3 {
    font-size: 22px;
    font-weight: 600;
    color: rgb(162,178,209);
    margin-bottom: 15px;
}

.contact_section8 input[type="text"] {
    background: #ffffff;
    border: 1px solid rgb(217,217,228);
    border-radius: 10px;
    padding: 15px 20px;
    color: #000000;
    font-size: 18px;
    transition: all 0.3s ease;
    width: 100%;
}

.contact_section8 input[type="text"]:focus {
    border-color: rgb(162,178,209);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    outline: none;
}

.contact_section8 input[type="text"]::placeholder {
    color: #000000;
    opacity: 0.5;
}

.contact_section8 .feedback_blockB {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.contact_section8 .feedback_blockB input[type="checkbox"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid rgb(217,217,228);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact_section8 .feedback_blockB input[type="checkbox"]:checked {
    background: rgb(162,178,209);
    border-color: rgb(162,178,209);
}

.contact_section8 .feedback_blockB input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: #ffffff;
    font-size: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact_section8 .feedback_blockB label {
    font-size: 18px;
    color: #000000;
    line-height: 1.5;
}

.contact_section8 .feedback_blockB a {
    color: rgb(162,178,209);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact_section8 .feedback_blockB a:hover {
    color: rgb(101,101,118);
}

.contact_section8 .request_supporte {
    background: rgb(162,178,209);
    border: none;
    border-radius: 10px;
    padding: 15px 35px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact_section8 .request_supporte::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.contact_section8 .request_supporte:hover {
    background: rgb(101,101,118);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact_section8 .request_supporte:hover::before {
    left: 100%;
}

.contact_section8 svg {
    fill: rgb(162,178,209);
    width: 22px;
    height: 22px;
    margin-right: 10px;
    vertical-align: middle;
}

.contact_section8 svg path {
    fill: rgb(162,178,209);
}

@media (max-width: 992px) {
    .contact_section8 .request_inquirym {
        grid-template-columns: 1fr;
    }

    .contact_section8 .hero_imageF {
        grid-column: 1;
        grid-row: 1;
        min-height: 300px;
        border-radius: 0;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }

    .contact_section8 .inquiry_helpq {
        grid-column: 1;
        grid-row: 2;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact_section8 {
        padding: 50px 0;
    }

    .contact_section8 h2 {
        font-size: calc(34px - 4px);
        margin-bottom: 30px;
    }

    .contact_section8 .inquiry_helpq {
        padding: 30px 25px;
    }

    .contact_section8 .hero_imageF {
        min-height: 250px;
    }
}

@media (max-width: 576px) {
    .contact_section8 {
        padding: 40px 0;
    }

    .contact_section8 .container {
        padding: 0 15px;
    }

    .contact_section8 h2::after {
        width: 40px;
    }

    .contact_section8 .inquiry_helpq {
        padding: 25px 20px;
    }

    .contact_section8 #contact {
        gap: 20px;
    }

    .contact_section8 .request_supporte {
        width: 100%;
        padding: 14px 20px;
    }

    .contact_section8 .hero_imageF {
        min-height: 200px;
    }
}.find_contacta {
    color: #000000;
    background-color: rgb(217,217,228);
    padding: 74px 0;
    font-family: Playfair Display, sans-serif;
}
.find_contacta .get_in_touchQ svg {
    width: 22px;
    height: 22px;
    fill: rgb(162,178,209);
    margin-right: 12px;
    transition: fill 0.3s ease;
}
.find_contacta .get_in_touchQ svg:hover {
    fill: rgb(101,101,118);
}
.find_contacta .send_feedbackt {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 17px 17px 0 0;
}
.find_contacta .gallery_wrap_boxl .get_in_touchQ div.reach_usW {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.find_contacta .gallery_wrap_boxl .get_in_touchQ > div h5 {
    margin: 5px 0;
    font-size: 18px;
}
.find_contacta .gallery_wrap_boxl .get_in_touchQ > div > div {
    margin: 5px 0;
}
.find_contacta .send_feedbackt h2 {
    font-size: 37px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.find_contacta .send_feedbackt .message_card5 {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}
.find_contacta .send_feedbackt .hero_imageF {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 17px 17px 0 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    position: relative;
}
.find_contacta .gallery_wrap_boxl .info_holder>div span {
    margin-left: 8px;
}
.find_contacta .send_feedbackt .hero_imageF::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgb(162,178,209,0.5), rgb(101,101,118,0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 17px 17px 0 0;
}
.find_contacta .send_feedbackt .hero_imageF:hover::before {
    opacity: 0.5;
}
.find_contacta .get_in_touchQ {
    padding: 40px;
    border-radius: 0 0 17px 17px;
    background-color: rgb(217,217,228);
}
.find_contacta .info_holder>div {
    display: flex;
    align-items: center;
    font-size: 15px;
    margin-bottom: 10px;
    position: relative;
}
.find_contacta .ask_formj {
    margin-top: 40px;
    border: 1px dotted rgb(162,178,209,0.5);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(162,178,209,0.5);
}
.find_contacta .contact_politics>div {
    margin-bottom: 14px;
}
.find_contacta .contact_politics>div h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}
.find_contacta .contact_politics>div p {
    font-size: 15px;
    line-height: 1.6;
}
@media only screen and (max-width: 1100px) {
    .find_contacta .send_feedbackt .hero_imageF {
        height: 200px;
    }
    .find_contacta .send_feedbackt h2,
    .find_contacta .send_feedbackt .message_card5 {
        font-size: 22px;
    }
    .find_contacta .info_holder>div,
    .find_contacta .contact_politics>div h4,
    .find_contacta .contact_politics>div p {
        font-size: 15px;
    }
}
.academic_expertiseL {
    position: relative;
    background: rgb(162,178,209);
    padding: 100px 0;
}

.academic_expertiseL::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
        45deg,
        rgb(162,178,209) 0,
        rgb(162,178,209) 2px,
        transparent 2px,
        transparent 8px
    );
}

.academic_expertiseL .gallery_wrap_boxl {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    z-index: 2;
}

.academic_expertiseL .feedback_showcase6 {
    background: #ffffff;
    border-radius: 13px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: box-shadow 0.25s ease-in-out;
}

.academic_expertiseL .feedback_showcase6:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}

.academic_expertiseL .hero_imageF {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.academic_expertiseL .hero_imageF::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5));
}

.academic_expertiseL .career_overviewQ {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    width: 100%;
}

.academic_expertiseL .name {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.academic_expertiseL .work_achievementsD {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: rgb(162,178,209);
    padding: 0.375rem 0.75rem;
    border-radius: 10px;
}

.academic_expertiseL .worker_info {
    padding: 2rem;
    position: relative;
}

.academic_expertiseL .worker_info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: rgb(217,217,228);
}

.academic_expertiseL .employee_sectionr {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    color: rgb(162,178,209);
    padding: 1rem 1.25rem;
    background: rgb(217,217,228);
    border-radius: 10px;
}

.academic_expertiseL .employee_sectionr::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 1.25rem;
    width: 1rem;
    height: 1rem;
    background: rgb(217,217,228);
    transform: rotate(45deg);
}

.academic_expertiseL .job_tasks2 {
    font-size: 16px;
    color: #000000;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .academic_expertiseL .feedback_showcase6 {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }

    .academic_expertiseL .hero_imageF {
        grid-column: span 5;
        height: auto;
    }

    .academic_expertiseL .career_overviewQ {
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
        width: 40%;
    }

    .academic_expertiseL .worker_info {
        grid-column: span 7;
        padding: 2.5rem;
    }

    .academic_expertiseL .worker_info::before {
        top: 2.5rem;
        left: 0;
        width: 1px;
        height: calc(100% - 5rem);
    }

    .academic_expertiseL .employee_sectionr::before {
        top: 1.25rem;
        left: -0.5rem;
    }

    .academic_expertiseL .job_tasks2 {
        padding: 0;
        margin-top: 2rem;
    }
}

@media (min-width: 992px) {
    .academic_expertiseL {
        padding: 120px 0;
    }

    .academic_expertiseL .hero_imageF {
        grid-column: span 4;
    }

    .academic_expertiseL .worker_info {
        grid-column: span 8;
        padding: 3rem;
    }

}

@media (min-width: 1200px) {
    .academic_expertiseL .hero_imageF {
        grid-column: span 5;
    }

    .academic_expertiseL .worker_info {
        grid-column: span 7;
    }
}

@media (max-width: 767px) {
    .academic_expertiseL {
        padding: 60px 0;
    }
    .academic_expertiseL .feedback_showcase6 {
        padding-bottom: 130px;
        position: relative;
    }
    .academic_expertiseL .name {
        color: #000000;
    }
    .academic_expertiseL .worker_info {
        padding: 1.5rem;
    }

    .academic_expertiseL .employee_sectionr {
        margin: 0 -0.5rem 1.5rem;
    }
}