svg {
    width: 30px;
    height: 30px;
}

header,footer {
    width: 100%;
}

header {
    z-index: 100;
    padding: 1.5rem 3%;
    width: 100%;
    position: relative;
    background: linear-gradient(to right, rgb(179,199,210,0.5), rgb(140,164,184,0.5));
}

.wrapper-container {
    height: 100%;
    flex-direction: column;
    display: flex;
    min-height: 100%;
}

.container {
    max-width: 100%;
    width: 1194px;
    margin: auto;
}


.landing_page {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgb(223,232,236) 0%, rgba(0, 0, 0, 0.5) 100%);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing_page::after {
    z-index: 2;
    background: linear-gradient(to top, rgb(223,232,236) 0%, transparent 100%);
    position: absolute;
    content: '';
    left: 0;
    height: 30%;
    bottom: 0;
    pointer-events: none;
    width: 100%;
}

.landing_page .start_intro > div:first-child {
    padding: 2rem;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(120deg, rgb(179,199,210,0.5) 0%, transparent 80%);
    position: relative;
    backdrop-filter: blur(8px);
    transform: translateX(-20px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.landing_page .start_intro > div:first-child:hover::before {
    transform: scaleY(1);
}

.landing_page h3 {
    font-size: 21px;
    margin: 0;
    line-height: 1.5;
    color: #ffffff;
    max-width: 90%;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.landing_page .promise_block {
    max-width: 600px;
    transform: translateY(20px);
    background: linear-gradient(210deg, #000000 0%, rgba(0, 0, 0, 0.5) 100%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15), 0 5px 15px rgba(0,0,0,0.1);
    padding: 2.5rem;
    border-radius: 27px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.landing_page .promise_block > div {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.landing_page .promise_block > div::before {
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #000000 100%);
    top: 0;
    position: absolute;
    left: 0;
    content: '';
}

.course_overview {
    padding: 120px 0;
    background: rgb(223,232,236);
    overflow: hidden;
    position: relative;
}

.course_overview::after {
    bottom: -50px;
    position: absolute;
    left: -50px;
    transform: rotate(15deg);
    height: 200px;
    z-index: 1;
    background: linear-gradient(225deg, rgb(140,164,184,0.5) 0%, transparent 70%);
    width: 200px;
    content: "";
    opacity: 0.5;
}

.course_overview .program_path {
    position: relative;
    gap: 40px;
    display: grid;
    grid-template-columns: 1fr;
}

.course_overview .gallery_slider::before {
    inset: 0;
    position: absolute;
    background: linear-gradient(
        to right,
        rgb(179,199,210,0.5) 0%,
        transparent 20%,
        transparent 80%,
        rgb(140,164,184,0.5) 100%
    );
    transition: opacity 0.5s ease;
    opacity: 0.4;
    content: "";
}

.course_overview .note_holder:hover {
    transform: translateY(-5px);
}

.course_overview .note_holder::before {
    transition: height 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    position: absolute;
    height: 0;
    content: "";
    left: 0;
    width: 4px;
    top: 0;
    background: linear-gradient(to bottom, rgb(179,199,210), rgb(140,164,184));
}

.course_overview .note_holder:hover h3 {
    transform: translateX(10px);
}

.course_overview h3::after {
    content: "";
    left: 0;
    bottom: 0;
    height: 2px;
    transition: width 0.4s ease;
    width: 60px;
    position: absolute;
    background: rgb(179,199,210);
}

.course_overview .description {
    transition: opacity 0.3s ease;
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #000000;
    font-family: Arial, sans-serif;
}

.course_overview span.description {
    display: none;
}

.educational_yield {
    background: linear-gradient(135deg, rgb(223,232,236) 0%, #ffffff 75%);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.educational_yield {
    padding: 150px 0;
}

.educational_yield::after {
    height: 200%;
    z-index: 0;
    content: "";
    width: 60%;
    transform: rotate(15deg);
    right: -20%;
    position: absolute;
    background: linear-gradient(135deg, rgb(179,199,210,0.5) 0%, transparent 70%);
    opacity: 0.07;
    top: -50%;
}

.educational_yield .edu_values {
    flex-direction: column-reverse;
    gap: 50px;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    display: flex;
}

.educational_yield .edu_values {
    gap: 80px;
}

.educational_yield .note_holder:hover {
    transform: translateZ(30px) translateX(5px);
}

.educational_yield h4 {
    margin: 0 0 30px;
    position: relative;
    color: #000000;
    line-height: 1.4;
    font-size: 18px;
    font-weight: 700;
}

.educational_yield h4 {
    margin-bottom: 40px;
    font-size: calc(18px * 1.2);
}

.educational_yield .note_holder:hover h4::after {
    transform: scaleX(1.5);
}

.educational_yield .note_holder > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.educational_yield ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.educational_yield li {
    margin-bottom: 18px;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(0);
}

.educational_yield li {
    margin-bottom: 22px;
}

.educational_yield li p span:first-child {
    margin-top: 2px;
    flex-shrink: 0;
}

.educational_yield li p span:last-child {
    flex-grow: 1;
}

.educational_yield li:hover svg {
    transform: translateY(-3px) scale(1.1);
}

.educational_yield svg path {
    transition: fill 0.3s ease;
    fill: rgb(179,199,210);
}

.educational_yield .gallery_slider {
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg) translateZ(0);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 30px 30px 60px rgba(0, 0, 0, 0.1),
                15px 15px 30px rgba(0, 0, 0, 0.07),
                5px 5px 10px rgb(179,199,210,0.5);
    height: auto;
    border-radius: 3px;
    filter: saturate(1.1) contrast(1.05);
    object-fit: cover;
    max-width: 100%;
}

.educational_yield .gallery_slider {
    max-width: 45%;
}


    
    .educational_yield .gallery_slider {
    animation: floatAnimation 8s ease-in-out infinite;
}

.tariff_wrapper::after {
    bottom: -15%;
    height: 500px;
    z-index: 0;
    background: linear-gradient(225deg, rgb(140,164,184,0.5), rgb(179,199,210,0.5));
    left: -10%;
    content: "";
    position: absolute;
    width: 500px;
    filter: blur(100px);
    opacity: 0.1;
}

.tariff_wrapper .study_cost {
    transform: translateX(5%);
    order: -1;
    z-index: 2;
    margin-bottom: 20px;
    position: relative;
}

.tariff_wrapper .study_cost .price_opts {
    line-height: 1.6;
    margin-left: 5px;
    transform: translateY(0);
    font-size: 12px;
    transition: transform 0.4s ease;
    color: #000000;
    max-width: 700px;
}

.tariff_wrapper .study_cost:hover h2 {
    transform: perspective(1000px) rotateX(5deg);
}

.tariff_wrapper .study_cost:hover .price_opts {
    transform: translateY(3px);
}

.tariff_wrapper .annual_fee {
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    transform: translateZ(0) scale(1);
    text-decoration: none;
    height: 100%;
    transform-style: preserve-3d;
    overflow: hidden;
}

.tariff_wrapper .annual_fee:hover .learning_packages {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgb(179,199,210,0.5);
}

.tariff_wrapper .learning_packages::before {
    transform: scaleX(0);
    height: 5px;
    content: "";
    background: linear-gradient(90deg, rgb(179,199,210), rgb(140,164,184));
    transform-origin: left;
    right: 0;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.tariff_wrapper .annual_fee:hover .tuition_plans h3 {
    transform: translateY(-2px);
    color: rgb(179,199,210);
}

.tariff_wrapper .tuition_plans .access_cost {
    color: rgb(179,199,210);
    font-size: calc(20px + 6px);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow-wrap: break-word;
    margin: 5px 0 20px;
    position: relative;
    font-weight: 700;
    display: block;
    word-break: break-word;
}

.tariff_wrapper .annual_fee:hover .tuition_plans .access_cost::after {
    width: 80px;
}

.tariff_wrapper .tuition_plans p {
    line-height: 1.7;
    word-break: break-word;
    flex-grow: 1;
    color: #000000;
    font-size: 12px;
    margin-top: 10px;
    white-space: normal;
    opacity: 0.85;
    overflow-wrap: break-word;
    transition: opacity 0.3s ease;
}

.tariff_wrapper .annual_fee:hover .gallery_slider {
    height: 240px;
}

.tariff_wrapper .annual_fee:hover .gallery_slider::after {
    opacity: 1;
}

.tariff_wrapper .annual_fee:nth-child(odd) .learning_packages {
    flex-direction: column-reverse;
}

.tyPage {
    background: linear-gradient(135deg, rgb(223,232,236) 0%, rgb(179,199,210,0.5) 100%);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.tyPage::after {
    left: -5%;
    transform: rotate(15deg) skewX(-10deg);
    filter: blur(60px);
    position: absolute;
    background: linear-gradient(220deg, rgb(179,199,210,0.5) 20%, transparent 80%);
    height: 70%;
    width: 40%;
    animation: floatElement 15s ease-in-out infinite reverse;
    z-index: 1;
    content: "";
    bottom: -10%;
}

.tyPage h2 {
    font-size: 38px;
    color: #000000;
    margin-bottom: 40px;
    opacity: 0;
    line-height: 1.4;
    position: relative;
    margin-right: auto;
    max-width: 800px;
    animation: slideUp 0.8s forwards 0.2s ease-out;
    letter-spacing: -0.01em;
    transform: translateY(20px);
    text-align: center;
    margin-left: auto;
    font-weight: 700;
}

.tyPage .edu_values::before {
    left: 0;
    height: 6px;
    position: absolute;
    width: 100%;
    background: linear-gradient(90deg, rgb(179,199,210) 0%, rgb(140,164,184) 100%);
    content: "";
    top: 0;
}

.tyPage ul {
    padding: 0;
    position: relative;
    margin: 0;
    list-style: none;
}

.tyPage li {
    display: grid;
    position: relative;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tyPage li::before {
    width: 12px;
    animation: pulse 2s infinite;
    content: "";
    background: rgb(179,199,210);
    border-radius: 50%;
    position: absolute;
    left: -30px;
    height: 12px;
    top: 8px;
}

.course_candidates {
    position: relative;
    background: rgb(223,232,236);
    padding: 120px 0;
    overflow: hidden;
}

.course_candidates .edu_values {
    z-index: 1;
    padding: 0 30px;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
}

.course_candidates h3 {
    font-family: Arial, sans-serif;
    left: 50%;
    font-size: 30px;
    margin-bottom: 70px;
    display: inline-block;
    color: #000000;
    font-weight: 700;
    text-align: center;
    transform: translateX(-50%);
    position: relative;
}

.course_candidates h3::after {
    z-index: -1;
    border: 2px solid rgb(140,164,184,0.5);
    height: 60px;
    width: 60px;
    border-radius: 50%;
    bottom: -15px;
    content: "";
    position: absolute;
    right: -20px;
}

.course_candidates ul li {
    background: #ffffff;
    color: #000000;
    overflow: hidden;
    flex-direction: column;
    width: 220px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    height: 220px;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    border-radius: 50%;
    padding: 0;
    display: flex;
}

.course_candidates ul li:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
    color: #ffffff;
}

.course_candidates ul li:hover::before {
    opacity: 1;
}

.course_candidates ul li:hover::after {
    transform: scale(1.1) rotate(15deg);
    border-color: rgb(140,164,184);
    opacity: 0.7;
}

.course_candidates ul li:hover svg {
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
    transform: scale(1.1);
}

.course_candidates ul li:hover svg path {
    fill: #ffffff;
}

.course_candidates ul li > span {
    max-height: 100px;
    overflow: hidden;
    display: block;
    padding: 0 30px;
    max-width: 100%;
}

.stay_updated::before {
    content: "";
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgb(179,199,210,0.5) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgb(140,164,184,0.5) 0%, transparent 40%);
    opacity: 0.3;
    z-index: -1;
    position: absolute;
}

.stay_updated .edu_values {
    display: grid;
    position: relative;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.stay_updated .edu_values::before {
    content: "";
    height: 100px;
    opacity: 0.15;
    width: 100px;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    animation: rotate-shape 20s linear infinite;
    top: -30px;
    position: absolute;
    right: -30px;
    background: rgb(179,199,210);
}

.stay_updated p {
    z-index: 1;
    margin: 0;
    color: #000000;
    font-family: Arial, sans-serif;
    font-weight: 700;
    position: relative;
    line-height: 1.6;
    font-size: 23px;
}

.stay_updated p::after {
    z-index: -1;
    bottom: -10px;
    position: absolute;
    height: 3px;
    content: "";
    left: 20px;
    background: rgb(140,164,184);
    animation: line-extend 3s infinite alternate;
    width: 50px;
}

.stay_updated .input_holder::before {
    border-radius: 10px;
    background: linear-gradient(45deg, transparent, rgb(179,199,210,0.5), transparent);
    left: -10px;
    z-index: -1;
    content: "";
    position: absolute;
    bottom: -10px;
    filter: blur(5px);
    right: -10px;
    opacity: 0.2;
    transform: rotateX(10deg) rotateY(-10deg);
    top: -10px;
}

.stay_updated .sub_objective:focus {
    outline: none;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border-color: rgb(179,199,210);
}

.stay_updated .upgrade_skills::before {
    z-index: -1;
    inset: 0;
    background: rgb(140,164,184);
    position: absolute;
    transform: translateY(100%);
    content: "";
    transition: transform 0.3s ease;
}

.stay_updated .upgrade_skills:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stay_updated .upgrade_skills:hover::before {
    transform: translateY(0);
}

footer {
    margin-top: 0;
    background-color: #000000;
    position: relative;
}

.tutor_match .container {
    grid-template-columns: repeat(12, 1fr);
    display: grid;
    position: relative;
    grid-gap: 30px;
}

.tutor_match .company_holder {
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.03);
    grid-column: span 4;
    position: relative;
    border-radius: 10px;
}

.tutor_match .company_holder h3::after {
    content: "";
    background: rgb(179,199,210);
    height: 2px;
    left: 0;
    width: 100%;
    position: absolute;
    bottom: -8px;
}

.tutor_match .top_train {
    position: relative;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 30px;
}

.tutor_match .top_train h5::after {
    position: absolute;
    left: 0;
    bottom: -8px;
    content: "";
    width: 100%;
    height: 2px;
    background: rgb(140,164,184);
}

.tutor_match .top_train .head_primary {
    display: grid;
    grid-gap: 15px;
}

.tutor_match .top_train .head_primary a {
    opacity: 0.8;
    text-decoration: none;
    position: relative;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
    padding-left: 15px;
    color: #ffffff;
    font-size: 12px;
}

.tutor_match .top_train .head_primary a:hover {
    transform: translateX(5px);
    opacity: 1;
    color: rgb(179,199,210);
}

.diploma_cta .container {
    display: flex;
    align-items: center;
    justify-content: center;
}



.tutor_match .company_holder:hover,
.tutor_match .top_train:hover {
    transition: background-color 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.tutor_match .company_holder::before {
    background: rgb(179,199,210);
    width: 5px;
    top: 0;
    opacity: 0.5;
    height: 100%;
    position: absolute;
    left: 0;
    content: "";
}

.tutor_match .top_train::before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: rgb(140,164,184);
    height: 100%;
    opacity: 0.5;
    width: 5px;
}

.tutor_match .head_primary {
    position: relative;
}

.tutor_match .head_primary::after {
    background: rgb(140,164,184,0.5);
    bottom: -15px;
    height: 1px;
    opacity: 0.2;
    position: absolute;
    left: 0;
    width: 100%;
    content: "";
}

.tutor_match .top_train:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}

.diploma_cta .digital_res::after {
    right: -40px;
    width: 30px;
    height: 1px;
    opacity: 0.5;
    background: rgb(179,199,210);
    position: absolute;
    top: 50%;
    content: "";
    transform: translateY(-50%);
}

#cookie_banner_alert {
    display: none;
}

#cookie_banner_alert:checked ~ .trackingSettingsBox {
    opacity: 0;
    visibility: hidden;
}

.user_tracker {
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding: 20px 0;
}

.visitor_controls {
    margin-right: 10px;
    flex-shrink: 0;
}

.edu_approve {
    margin-left: 10px;
    min-width: 120px;
    border-bottom: 2px solid rgb(179,199,210);
    cursor: pointer;
    flex-shrink: 0;
    color: rgb(179,199,210);
    line-height: 35px;
    text-align: center;
    font-size: 24px;
    white-space: nowrap;
    text-decoration: none;
}

.wrapper-container .user_tracker {
    justify-content: space-between;
    padding: 40px 0;
}

.wrapper-container .gdpr_banner {
    text-align: left;
    color: #ffffff;
}

.wrapper-container .gdpr_banner h5 {
    font-weight: 700;
}

.wrapper-container .gdpr_banner h5, .wrapper-container .gdpr_banner p {
    color: #ffffff;
}

header .top_plank .best_learn div svg, header .top_plank .best_learn div svg path {
    fill: #ffffff;
}

header .top_plank .best_learn {
    line-height: 21px;
    padding: 15px 0 10px 0;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    display: flex;
    font-size: 12px;
}

header::before {
    pointer-events: none;
    bottom: 0.5rem;
    right: 0.5rem;
    left: 0.5rem;
    top: 0.5rem;
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    z-index: 0;
}

header .container {
    max-width: 100%;
    padding: 0;
    width: 100%;
    position: relative;
    margin: 0;
    z-index: 1;
}

header .nav_study {
    align-items: center;
    position: relative;
    padding: 1.5rem;
    display: flex;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .main_tutor {
    text-decoration: none;
    padding: 0 0 1rem 0;
    position: relative;
    display: flex;
    justify-content: center;
}

header .main_tutor::after {
    height: 1px;
    width: 80px;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    content: '';
    bottom: 0;
    background: rgb(179,199,210,0.5);
}

header .top_train {
    padding-top: 1rem;
    gap: 0.7rem;
    display: flex;
    max-width: 90%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

header .main_pro::before {
    width: 3px;
    top: 0;
    content: '';
    background: linear-gradient(to bottom, rgb(179,199,210), rgb(140,164,184));
    transition: width 0.3s ease;
    z-index: -1;
    height: 100%;
    border-radius: 10px 0 0 10px;
    left: 0;
    position: absolute;
}

header .main_pro:hover::before {
    width: 100%;
}

.confidential_hearth {
    height: auto;
    color: #ffffff;
    width: 100%;
    padding: 60px;
}

.confidential_hearth h2 {
    border-bottom: 2px solid rgb(179,199,210);
    margin-top: 0;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 25px;
    color: rgb(140,164,184);
    font-size: 36px;
}

.confidential_hearth li {
    border-left: 4px solid rgb(179,199,210);
    background: rgb(179,199,210,0.5);
    color: #000000;
    padding: 10px 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-weight: 400;
    font-size: 16px;
}

.who_we_are {
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.who_we_are::before {
    right: 0;
    position: absolute;
    top: 0;
    content: "";
    z-index: 1;
    background: rgb(179,199,210,0.5);
    left: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.65) 100%);
}

.who_we_are h2::after {
    bottom: -12px;
    width: 80px;
    content: "";
    background: rgb(140,164,184);
    position: absolute;
    height: 4px;
    left: 0;
    transform-origin: left center;
    animation: expandWidth 1.2s ease-out forwards;
}

.who_we_are .note_holder:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    transform: translateY(-5px);
}

.who_we_are .note_holder::before {
    animation: growHeight 1s 0.4s ease-out forwards;
    position: absolute;
    content: "";
    height: 0;
    background: rgb(179,199,210);
    top: 0;
    width: 4px;
    left: 0;
}

.who_we_are .note_holder p {
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 700;
    color: rgb(179,199,210);
    position: relative;
    font-size: calc(18px * 1.4);
}

.who_we_are .note_holder div div {
    line-height: 1.8;
    opacity: 0;
    text-align: justify;
    color: #000000;
    columns: 1;
    font-size: 18px;
    hyphens: auto;
    column-gap: 40px;
    animation: fadeIn 1s 0.8s forwards;
}

.customer_support::before {
    width: 100%;
    content: "";
    left: 0;
    z-index: 1;
    opacity: 0.4;
    position: absolute;
    background: linear-gradient(135deg, rgb(179,199,210,0.5) 0%, transparent 40%, rgb(140,164,184,0.5) 100%);
    height: 100%;
    top: 0;
}



.customer_support .container {
    z-index: 2;
    position: relative;
}

.customer_support .contact_feedback {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    padding: 40px;
    border-radius: 10px;
}

.customer_support .contact_feedback::after {
    height: 2px;
    bottom: 0;
    width: 100%;
    animation: slideLine 8s infinite;
    content: "";
    background: linear-gradient(90deg, transparent 0%, rgb(179,199,210) 50%, transparent 100%);
    z-index: -1;
    left: 0;
    position: absolute;
}

.customer_support p {
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    font-size: 16px;
}

.customer_support .write_form {
    gap: 40px;
    justify-content: center;
    position: relative;
    margin-top: 40px;
    display: flex;
}

.customer_support .contact_assistance {
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    height: 70px;
    border-radius: 50%;
    display: flex;
    z-index: 1;
    position: relative;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    width: 70px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.customer_support .contact_assistance::after {
    right: -2px;
    border-top-color: rgb(179,199,210);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
    z-index: -1;
    transition: all 0.4s ease;
    bottom: -2px;
    opacity: 0.3;
    background: transparent;
    border-right-color: rgb(140,164,184);
    position: absolute;
    content: "";
    top: -2px;
    border: 2px solid transparent;
    left: -2px;
}

.customer_support .contact_assistance:hover::after {
    left: -3px;
    right: -3px;
    top: -3px;
    border-width: 3px;
    opacity: 0.8;
    bottom: -3px;
}

.customer_support .contact_assistance:hover svg {
    transform: scale(1.2);
    fill: #ffffff;
    filter: drop-shadow(0 0 8px rgb(179,199,210));
    stroke: #ffffff;
}

.customer_support .contact_assistance:hover svg path {
    fill: #ffffff;
    stroke: #ffffff;
}

.customer_support p svg {
    stroke: rgb(179,199,210);
    vertical-align: middle;
    width: 20px;
    transition: all 0.3s ease;
    margin-right: 10px;
    height: 20px;
    fill: rgb(179,199,210);
}

.customer_support p:hover svg path {
    stroke: rgb(140,164,184);
    fill: rgb(140,164,184);
}

.attempt_now::before {
    animation: patternMove 30s linear infinite;
    right: 0;
    background: repeating-linear-gradient(
    45deg,
    rgb(140,164,184,0.5),
    rgb(140,164,184,0.5) 10px,
    transparent 10px,
    transparent 20px
  );
    content: "";
    opacity: 0.1;
    top: 0;
    z-index: 1;
    bottom: 0;
    left: 0;
    position: absolute;
    transform: scale(1.05);
}

.attempt_now .container {
    flex-direction: column;
    position: relative;
    transform: translateZ(0);
    z-index: 10;
    margin: 0 auto;
    align-items: center;
    max-width: 1200px;
    display: flex;
    padding: 0 20px;
}

.attempt_now h6::after {
    width: 80px;
    position: absolute;
    bottom: -12px;
    background: #ffffff;
    content: "";
    height: 3px;
    transform: translateX(-50%);
    left: 50%;
    opacity: 0.7;
}

.attempt_now div:nth-child(2) {
    display: flex;
    justify-content: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(10px);
}

.attempt_now .inquiry_form::before {
    height: 100%;
    transform: translateX(-100%);
    left: 0;
    content: "";
    top: 0;
    transition: transform 0.7s ease;
    width: 100%;
    position: absolute;
    background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.attempt_now .inquiry_form span {
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    transform: none;
}

.attempt_now .inquiry_form:hover {
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 
              0 5px 10px rgba(0, 0, 0, 0.08),
              0 0 0 2px rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.02);
    color: rgb(179,199,210);
}

.attempt_now .inquiry_form:active {
    transition: all 0.1s ease;
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.user_testimonials::after {
    content: "";
    z-index: 0;
    opacity: 0.07;
    animation: floating 15s infinite ease-in-out;
    border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    background: rgb(179,199,210);
    top: -5%;
    width: 300px;
    position: absolute;
    height: 300px;
    right: -5%;
}

.user_testimonials .container {
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.user_testimonials h2::after {
    animation: expandWidth 1s ease-out forwards;
    bottom: -15px;
    content: "";
    height: 4px;
    left: 0;
    background: linear-gradient(90deg, rgb(179,199,210) 0%, rgb(140,164,184) 100%);
    transform-origin: left center;
    position: absolute;
    width: 120px;
}

.user_testimonials .edu_reviews {
    opacity: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    padding: 30px 25px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    justify-content: space-between;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    animation-delay: calc(0.15s * var(--i, 0));
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    animation: fadeUpIn 0.6s forwards;
}

.user_testimonials .edu_reviews::after {
    transform: scaleX(0);
    position: absolute;
    content: "";
    transform-origin: left;
    transition: transform 0.4s ease-out;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, rgb(179,199,210) 0%, rgb(140,164,184) 100%);
}

.user_testimonials .edu_reviews:hover img {
    transform: scale(1.1);
}

.user_testimonials .edu_reviews h4 {
    margin: 0;
    font-size: 23px;
    font-weight: 600;
    color: #000000;
    position: relative;
}

.user_testimonials .edu_reviews h4::after {
    left: 0;
    position: absolute;
    content: "";
    transition: width 0.3s ease;
    background-color: rgb(140,164,184);
    height: 2px;
    bottom: -5px;
    width: 30px;
}

.user_testimonials a {
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    margin-top: 50px;
    padding: 14px 32px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 19px;
    font-weight: 600;
    color: #ffffff;
    z-index: 2;
    display: inline-block;
    background: linear-gradient(45deg, rgb(179,199,210) 0%, rgb(140,164,184) 100%);
}

.developer_experience {
    background: linear-gradient(135deg, rgb(223,232,236) 0%, rgb(140,164,184,0.5) 100%);
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.developer_experience::after {
    height: 30%;
    bottom: -5%;
    z-index: 0;
    filter: blur(50px);
    transform-origin: center;
    position: absolute;
    background: rgb(140,164,184,0.5);
    animation: floating 18s ease-in-out infinite reverse;
    opacity: 0.2;
    width: 30%;
    content: "";
    left: -5%;
}

.developer_experience .edu_reviews:hover {
    transform: perspective(1000px) rotateX(0deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 
                0 8px 20px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.developer_experience .edu_reviews > div:first-child {
    max-width: 280px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.developer_experience .edu_reviews .gallery_slider {
    position: relative;
    animation: fadeInLeft 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0.2s forwards;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 
                0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 280px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateZ(30px);
    border-radius: 3px;
}

.developer_experience .edu_reviews .gallery_slider::after {
    z-index: 2;
    transition: opacity 0.5s ease;
    position: absolute;
    top: -10%;
    width: 120%;
    opacity: 0;
    left: -10%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.25) 0%,
        transparent 80%
    );
    height: 120%;
    content: "";
}

.developer_experience .edu_reviews .name::after {
    height: 3px;
    border-radius: 1px;
    content: "";
    position: absolute;
    transform: translateX(-50%);
    background: rgb(179,199,210);
    bottom: -8px;
    left: 50%;
    width: 40px;
}

.developer_experience .edu_reviews > div:nth-child(3) {
    animation: fadeInUp 0.7s cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s forwards;
    opacity: 0;
}

.developer_experience .edu_reviews .career_details::before {
    font-family: Georgia, serif;
    position: absolute;
    content: "";
    opacity: 0.2;
    font-size: 5rem;
    left: -15px;
    color: rgb(179,199,210,0.5);
    top: -20px;
}

.contact_boxHY0::before {
    top: 0;
    position: absolute;
    background: repeating-linear-gradient(
        -45deg,
        rgb(179,199,210,0.5),
        rgb(179,199,210,0.5) 1px,
        transparent 1px,
        transparent 20px
    );
    width: 100%;
    opacity: 0.03;
    left: 0;
    content: "";
    height: 100%;
}

.contact_boxHY0 .feedback_widget {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-radius: 19px;
    max-width: 800px;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    background: #ffffff;
    margin: 0 auto;
}

.contact_boxHY0 form {
    width: 100%;
}

.contact_boxHY0 form h3 {
    margin-bottom: 30px;
    font-weight: 700;
    color: #000000;
    position: relative;
    font-size: 20px;
    font-family: Arial, sans-serif;
    display: inline-block;
}

.contact_boxHY0 form input[type="text"] {
    background: rgb(223,232,236);
    transition: all 0.3s ease;
    color: #000000;
    width: 100%;
    font-family: Arial, sans-serif;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 2px solid transparent;
    font-size: 15px;
}

.contact_boxHY0 .connect_reach label {
    padding-left: 35px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    cursor: pointer;
    color: #000000;
}

.contact_boxHY0 .connect_reach input[type="checkbox"]:checked + label::before {
    background: rgb(179,199,210);
}

.contact_boxHY0 .connect_reach input[type="checkbox"]:checked + label::after {
    border-bottom: 2px solid #ffffff;
    content: "";
    width: 6px;
    border-right: 2px solid #ffffff;
    top: 5px;
    transform: rotate(45deg);
    left: 8px;
    position: absolute;
    height: 12px;
}

.contact_boxHY0 form .inquiry_form:hover {
    background: rgb(140,164,184);
}

.contact_boxHY0 svg {
    fill: rgb(179,199,210);
    width: 20px;
    height: 20px;
}

.contact_boxHY0 svg path {
    fill: rgb(179,199,210);
    transition: fill 0.3s ease;
}



::-webkit-scrollbar {
    padding: 4px;
    width: 1rem;
}

::-webkit-scrollbar-track {
    margin: 5px 0;
    box-shadow: inset 2px 4px 2px 0px rgba(0, 0, 0, 0.6);
    background: linear-gradient(340deg, #ffffff 69%, rgb(255, 255, 255, 0.5) 68%, rgb(140,164,184) 1%, rgb(140,164,184,0.5) 19%, rgb(179,199,210) 74%, rgb(179,199,210,0.5) 52%, rgb(223,232,236) 21%);
}

::-webkit-scrollbar-thumb {
    animation: glow_scrollbar 5.5s ease-in-out 3;
    border-radius: 20px;
    background: rgb(179,199,210);
    border: 3px ridge rgb(179,199,210);
    transition: all 4.2s ease-out;
}

::-webkit-scrollbar-thumb:hover {
    background: radial-gradient(circle at top left, #ffffff 32%, rgb(255, 255, 255, 0.5) 93%, rgb(140,164,184) 22%, rgb(140,164,184,0.5) 61%, rgb(179,199,210) 94%, rgb(179,199,210,0.5) 81%, rgb(223,232,236) 83%);
}

.course_overview p.description::-webkit-scrollbar {
    width: 6px;
}

.course_overview p.description::-webkit-scrollbar-track {
    background: #ffffff;
}

.course_overview p.description::-webkit-scrollbar-thumb {
    background-color: rgb(179,199,210,0.5);
    border-radius: 10px;
}



@media (min-width: 768px) {.course_overview {
    padding: 150px 0;
}.course_overview .program_path {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}.course_overview .gallery_slider {
    transform: perspective(1000px) rotateY(3deg) translateX(-20px);
    height: 450px;
}.course_overview .gallery_slider:hover {
    transform: perspective(1000px) rotateY(0deg) translateX(0);
}.course_overview .note_holder {
    padding: 40px;
}.course_overview h3 {
    font-size: 19px;
    margin-bottom: 30px;
}.course_overview p.description {
    max-height: 350px;
}
}



@media (min-width: 1200px) {.course_overview .program_path {
    gap: 100px;
}.course_overview .gallery_slider {
    height: 550px;
    transform: perspective(1200px) rotateY(5deg) translateX(-30px);
}.course_overview .gallery_slider:hover {
    transform: perspective(1200px) rotateY(0deg) translateX(0);
}.course_overview .note_holder {
    padding: 60px 70px 60px 60px;
}.course_overview h3 {
    margin-bottom: 35px;
    font-size: calc(19px * 1.3);
    padding-bottom: 20px;
}.course_overview p.description {
    max-height: 450px;
}
}



@media (min-width: 1200px) {.educational_yield .edu_values {
    gap: 100px;
}.educational_yield .note_holder {
    flex: 0 0 45%;
    padding: 60px;
}.educational_yield h4 {
    font-size: calc(18px * 1.3);
}.educational_yield li p {
    font-size: calc(13px * 1.1);
}.educational_yield svg {
    width: 24px;
    height: 24px;
}
}



@media (max-width: 767px) {.educational_yield {
    padding: 80px 0;
}.educational_yield .note_holder {
    padding: 30px;
}.educational_yield h4 {
    margin-bottom: 25px;
    font-size: calc(18px * 0.9);
}.educational_yield li {
    margin-bottom: 15px;
}.educational_yield li p {
    font-size: calc(13px * 0.95);
}.educational_yield .gallery_slider {
    width: 90%;
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
}}



@media (min-width: 1200px) {.tariff_wrapper .price_plan {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.tariff_wrapper .study_cost h2 {
    font-size: calc(31px + 5px);
}
}



@media (max-width: 767px) {.tariff_wrapper {
    padding: 60px 0;
}.tariff_wrapper .price_plan {
    grid-template-columns: 1fr;
}.tariff_wrapper .tuition_plans {
    padding: 25px 20px;
}.tariff_wrapper .annual_fee .gallery_slider {
    height: 180px;
}.tariff_wrapper .study_cost h2 {
    font-size: calc(31px - 2px);
}
}



@media (max-width: 991px) {.tyPage {
    padding: 80px 0;
}.tyPage h2 {
    font-size: calc(38px * 0.85);
}.tyPage .edu_values {
    padding: 40px 30px;
}.tyPage li::before {
    left: -20px;
}
}



@media (max-width: 480px) {.tyPage {
    padding: 40px 0;
}.tyPage h2 {
    font-size: calc(38px * 0.6);
    margin-bottom: 25px;
}.tyPage .edu_values {
    padding: 25px 15px;
}.tyPage span {
    border-left: 2px solid rgb(179,199,210,0.5);
    padding-left: 10px;
}}



@media (max-width: 992px) {.course_candidates {
    padding: 100px 0;
}.course_candidates h3 {
    font-size: calc(30px * 0.9);
    margin-bottom: 60px;
}.course_candidates ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    grid-template-rows: repeat(4, 1fr);
}.course_candidates ul li {
    width: 220px;
    height: 220px;
}.course_candidates ul li svg {
    margin-top: 45px;
}
}



@media (max-width: 580px) {.course_candidates {
    padding: 60px 0;
}.course_candidates .edu_values {
    padding: 0 20px;
}.course_candidates h3 {
    margin-bottom: 40px;
    font-size: calc(30px * 0.7);
}.course_candidates ul {
    gap: 25px;
    grid-template-columns: 1fr;
}.course_candidates ul li {
    height: 220px;
    width: 220px;
}
}



@media (max-width: 991px) {.tutor_match .container {
    grid-gap: 30px;
    grid-template-columns: 1fr;
}.tutor_match .company_holder {
    grid-column: span 12;
}.tutor_match .footer_account {
    grid-column: span 12;
    grid-template-columns: 1fr 1fr;
}
}



@media (max-width: 767px) {.tutor_match {
    padding: 40px 0 30px;
}.tutor_match .footer_account {
    grid-template-columns: 1fr;
}.tutor_match .company_holder {
    padding: 25px;
}.tutor_match .top_train {
    padding: 25px;
}.tutor_match .company_holder h3 {
    font-size: calc(31px - 2px);
}.tutor_match .top_train h5 {
    font-size: calc(18px - 1px);
}
}


@media only screen and (max-width: 1200px) {.trackingSettingsBox {
    padding: 20px;
}
}



@media (max-width: 991px) {header {
    padding: 1.2rem 2.5%;
}header .nav_study {
    padding: 1.2rem;
}header .main_tutor {
    padding: 0 0 0.8rem 0;
}header .main_tutor svg {
    width: 150px;
}header .top_train {
    padding-top: 0.8rem;
    gap: 0.6rem;
}header .main_pro {
    padding: 0.6rem 1.1rem;
}
}



@media (max-width: 767px) {header {
    padding: 1rem 2%;
}header .nav_study {
    padding: 1rem;
}header .main_tutor {
    padding: 0 0 0.7rem 0;
}header .main_tutor svg {
    width: 130px;
}header .top_train {
    max-width: 95%;
    gap: 0.5rem;
    padding-top: 0.7rem;
}header .main_pro {
    font-size: calc(18px - 1px);
    padding: 0.5rem 1rem;
}
}



@media only screen and (max-width: 800px) {.confidential_hearth {
    grid-template-columns: 1fr;
    padding: 30px 15px;
}.confidential_hearth h1 {
    font-size: calc(24px - 10px);
}.confidential_hearth h2 {
    font-size: calc(24px - 8px);
}.confidential_hearth li {
    padding: 8px 15px;
    font-size: calc(16px - 2px);
}}



@media (min-width: 768px) {.who_we_are {
    padding: 150px 0 100px;
}.who_we_are h2 {
    margin-bottom: 60px;
    font-size: calc(28px * 1.2);
}.who_we_are .note_holder {
    padding: 60px;
    margin-left: 40px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40px 100%, 0 calc(100% - 40px));
    transform: perspective(1000px) rotateY(-2deg);
}.who_we_are .note_holder:hover {
    transform: perspective(1000px) rotateY(-1deg) translateY(-5px);
}.who_we_are .note_holder div div {
    columns: 2;
}
}



@media (min-width: 1200px) {.who_we_are {
    padding: 200px 0 150px;
}.who_we_are::after {
    width: 400px;
    height: 400px;
}.who_we_are h2 {
    font-size: calc(28px * 1.6);
}.who_we_are .note_holder {
    padding: 100px;
}.who_we_are .note_holder div div {
    font-size: calc(18px * 1.05);
    column-gap: 60px;
    line-height: 1.9;
}}



@media (max-width: 768px) {.customer_support {
    padding: 50px 0;
}.customer_support .contact_feedback {
    padding: 25px;
}.customer_support h2 {
    font-size: calc(33px * 0.8);
    margin-bottom: 20px;
}.customer_support p {
    margin-bottom: 20px;
    font-size: calc(16px * 0.95);
}.customer_support .write_form {
    gap: 25px;
}.customer_support .contact_assistance {
    width: 60px;
    height: 60px;
}.customer_support .contact_assistance svg {
    height: 24px;
    width: 24px;
}
}



@media (prefers-reduced-motion) {.customer_support::after,
    .customer_support .contact_feedback::after {
    animation: none;
}}



@media screen and (max-width: 992px) {.attempt_now {
    padding: 4rem 1rem;
    margin: 3rem 0;
}.attempt_now h6 {
    font-size: 21px;
    margin-bottom: 2rem;
}.attempt_now .inquiry_form {
    padding: 12px 24px;
    min-width: 200px;
}
}



@media screen and (max-width: 768px) {.attempt_now {
    padding: 3.5rem 0.75rem;
    margin: 2.5rem 0;
}.attempt_now h6 {
    line-height: 1.5;
    margin-bottom: 1.8rem;
    font-size: calc(21px * 0.9);
}.attempt_now h6::after {
    bottom: -10px;
    width: 60px;
}.attempt_now .inquiry_form {
    font-size: calc(20px * 0.95);
    min-width: 180px;
    padding: 12px 20px;
}
}



@media (hover: none) {.attempt_now .inquiry_form:hover {
    transform: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.05);
}.attempt_now .inquiry_form:hover span {
    transform: none;
}
}



@media (max-width: 1200px) {.user_testimonials {
    padding: 100px 0 60px;
}.user_testimonials h2 {
    margin-bottom: 50px;
    font-size: calc(36px - 4px);
    max-width: 90%;
}.user_testimonials .edu_ratings {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}
}



@media (max-width: 768px) {.user_testimonials {
    padding: 60px 15px 40px;
}.user_testimonials h2 {
    margin-bottom: 40px;
    font-size: calc(36px - 8px);
}.user_testimonials .edu_ratings {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
}.user_testimonials a {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    display: block;
}
}



@media (min-width: 768px) {.developer_experience {
    padding: 7rem 0;
}.developer_experience .edu_reviews {
    grid-template-rows: auto 1fr;
    row-gap: 1.5rem;
    column-gap: 3rem;
    padding: 3rem;
    grid-template-columns: 280px 1fr;
}.developer_experience .edu_reviews > div:first-child {
    grid-row: 1 / span 2;
}.developer_experience .edu_reviews > div:nth-child(2) {
    align-self: flex-end;
    text-align: left;
}.developer_experience .edu_reviews .name::after {
    left: 0;
    transform: none;
}
}



@media (max-width: 767px) {.developer_experience {
    padding: 4rem 0;
}.developer_experience .container {
    padding: 0 1rem;
}.developer_experience .edu_reviews {
    padding: 2rem;
}.developer_experience .edu_reviews .gallery_slider {
    height: 240px;
}}



@media screen and (min-width: 992px) {.contact_boxHY0 .gallery_slider {
    width: 50%;
}.contact_boxHY0 .feedback_help {
    padding: 60px;
    width: 50%;
}
}



@media screen and (min-width: 1200px) {.contact_boxHY0 .feedback_widget {
    max-width: 1100px;
}.contact_boxHY0 .gallery_slider {
    min-height: 500px;
}
}

@keyframes glow_scrollbar { 0% { box-shadow: 0 0 5px rgba(0,0,0,0.2); } 50% { box-shadow: 0 0 15px rgba(0,0,0,0.5); } 100% { box-shadow: 0 0 5px rgba(0,0,0,0.2); } }

@keyframes floatAnimation {
        0% { transform: translateY(0) rotateY(-8deg) rotateX(5deg); }
        50% { transform: translateY(-10px) rotateY(-7deg) rotateX(3deg); }
        100% { transform: translateY(0) rotateY(-8deg) rotateX(5deg); }
    }



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



@keyframes line-extend {
    0% {
        width: 50px;
    }
    100% {
        width: 100px;
    }
}



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



@keyframes expandLine {
  from { transform: scaleX(0); transform-origin: right; }
  to { transform: scaleX(1); transform-origin: left; }
}



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

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
}



@keyframes patternMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100px 100px;
  }
}



@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}



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



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}



@keyframes floating {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(5%, 5%) rotate(2deg);
    }
    50% {
        transform: translate(0, 8%) rotate(0deg);
    }
    75% {
        transform: translate(-5%, 3%) rotate(-2deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

