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

html,body {
    scroll-behavior: smooth;
    color: #000000;
    height: 100%;
    min-height: 100%;
    font-family: Arial, sans-serif;
}

.nav_tutor {
    flex: 1 0 auto;
}

.who_we_are::before {
    width: 40%;
    z-index: 1;
    opacity: 0.4;
    position: absolute;
    content: "";
    background: radial-gradient(circle at top right, rgb(170,178,159,0.5) 0%, transparent 70%);
    top: 0;
    height: 100%;
    right: 0;
}

.who_we_are h3 {
    position: relative;
    grid-column: 1 / -1;
    font-size: 29px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: #000000;
}

.who_we_are .who_mentors:hover {
    transform: translateX(10px);
}

.who_we_are .who_mentors span {
    color: rgb(170,178,159);
    position: relative;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    display: inline-block;
}

.who_we_are .who_mentors p {
    line-height: 1.7;
    font-size: 12px;
    color: #000000;
    margin-bottom: 25px;
}

.who_we_are .img_border_box::after {
    background: linear-gradient(to bottom, transparent 75%, rgba(0, 0, 0, 0.3));
    position: absolute;
    left: 0;
    height: 100%;
    top: 0;
    width: 100%;
    content: "";
}

.who_we_are .expert_learnings {
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 23px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.who_we_are .creds_sect::before {
    top: -100px;
    z-index: -1;
    width: 200px;
    position: absolute;
    opacity: 0.4;
    border: 2px dotted rgb(170,178,159,0.5);
    height: 200px;
    content: "";
    left: -100px;
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.who_we_are .impact_facts::before {
    background: rgb(173,136,123);
}

.payment_plan {
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgb(214,217,211), rgba(0, 0, 0, 0.5));
}

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

.payment_plan .rate_choice {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    order: -1;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.payment_plan .learning_pricing {
    perspective: 1000px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.payment_plan .pricing_list:nth-child(2) {
    animation-delay: 0.2s;
}

.payment_plan .pricing_list:nth-child(4) {
    animation-delay: 0.4s;
}

.payment_plan .pricing_list:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateZ(30px) scale(1.03);
}

.payment_plan .pricing_list:hover::before {
    transform: scaleX(1);
}

.payment_plan .deal_grid {
    flex-direction: column;
    height: 100%;
    display: flex;
}

.payment_plan .premium_grid h3 {
    transition: color 0.3s ease;
    color: #000000;
    font-weight: 700;
    font-size: 22px;
    position: relative;
    margin: 0 0 1rem;
}

.payment_plan .pricing_list:hover .cert_fees {
    transform: translateY(-3px);
}

.payment_plan .pricing_list:hover .cert_fees::after {
    width: 80px;
}

.payment_plan .img_border_box {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.payment_plan .pricing_list:hover .img_border_box {
    transform: scale(1.05);
}

.try_immediately {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgb(214,217,211) 0%, rgba(0, 0, 0, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.try_immediately .container {
    position: relative;
    display: flex;
    padding: 0 2rem;
    max-width: 1200px;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.try_immediately .creds_sect::before {
    width: 100%;
    z-index: -1;
    border-radius: 4px;
    content: "";
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: 
    radial-gradient(circle at 20% 20%, rgba(rgb(170,178,159,0.5), 0.05) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(rgb(173,136,123,0.5), 0.05) 0%, transparent 60%);
}

.try_immediately svg {
    height: 42px;
    transform: translateY(0) rotate(0);
    transform-origin: center;
    animation: floatIcon 6s ease-in-out infinite;
    width: 42px;
    flex-shrink: 0;
    margin-right: 1rem;
}

.try_immediately .query_request:hover {
    box-shadow: 0 10px 20px -5px rgba(rgb(170,178,159,0.5), 0.6),
              0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px) scale(1.02);
}

.try_immediately .query_request:hover::before {
    left: 125%;
    transition: left 0.75s ease-out;
}

.try_immediately .query_request:hover + svg path,
.try_immediately svg:hover path {
    fill: rgb(173,136,123);
}

.welcome_board {
    min-height: 100vh;
    position: relative;
    align-items: center;
    justify-content: center;
    z-index: 1;
    display: flex;
    overflow: hidden;
}

.welcome_board > div {
    flex-direction: column;
    width: 100%;
    gap: 4rem;
    padding: 2rem;
    max-width: 1200px;
    transform: perspective(1000px) rotateX(2deg);
    display: flex;
}

.welcome_board .title_style_header {
    margin: 0;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3), 0 0 20px rgb(170,178,159,0.5);
    position: relative;
    font-size: clamp(2.5rem, 5vw, 42px);
    color: #ffffff;
    line-height: 1.2;
    font-weight: 700;
}

.welcome_board .edu_values {
    position: relative;
    margin-bottom: 1rem;
}

.welcome_board .edu_values::before {
    width: 1.5rem;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    height: 1.5rem;
    animation: pulse 3s infinite alternate;
    top: -0.75rem;
    position: absolute;
    content: "";
    background: rgb(173,136,123);
    left: -1rem;
}

.welcome_board .learn_expressfast span {
    padding-left: 1rem;
    display: block;
    position: relative;
}

.welcome_board .learn_expressfast:hover {
    transform: translateX(0.5rem) translateZ(30px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

footer {
    width: 100%;
    position: relative;
}

footer .campus_links::before {
    left: 0;
    background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, 
                      rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);
    background-size: 60px 60px;
    width: 100%;
    content: "";
    opacity: 0.1;
    position: absolute;
    top: 0;
    height: 100%;
}

footer .info_item:hover {
    transform: translateY(0);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

footer .info_item p,
footer .info_item a {
    font-size: 14px;
    color: #2c3e50;
    position: relative;
    text-decoration: none;
    z-index: 1;
    transition: all 0.3s ease;
}

footer .header_mentor:hover, footer .subscribe_holder:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

footer .header_mentor svg {
    margin-bottom: 20px;
    width: auto;
    height: 45px;
    filter: brightness(0) invert(1);
}

footer .main_top h5::after {
    bottom: 0;
    width: 50px;
    content: "";
    background-color: rgb(170,178,159);
    position: absolute;
    left: 0;
    height: 2px;
}

footer .main_tutor a {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    transition: all 0.3s ease;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
    text-decoration: none;
}

footer .subscribe_holder p {
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

footer .input_holder input[type="email"] {
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

footer .res_connect {
    margin-top: 50px;
    position: relative;
    text-align: center;
}

.alertPrivacySettings {
    bottom: 0;
    border-top: 3px solid rgb(170,178,159);
    background: rgb(214,217,211);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
    z-index: 90;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    position: fixed;
}

.cookie_compl {
    color: #000000;
    margin-right: 15px;
    flex-grow: 1;
}

.alertPrivacySettings p {
    color: #000000;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    font-size: 14px;
}

#grant_cookie_terms_usage {
    background: rgb(170,178,159);
}

#turn_off_privacy_cookies {
    background: rgba(0, 0, 0, 0.5);
}

.alertPrivacySettings p a:hover {
    color: rgb(173,136,123);
}


#cookie_window_box {
    display: none;
}

.teaching_history::before {
    animation: rotateBackground 15s linear infinite;
    opacity: 0.4;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    content: "";
    background: conic-gradient(from 225deg at 50% 50%, rgb(173,136,123,0.5) 0%, transparent 25%, rgb(170,178,159,0.5) 50%, transparent 75%, rgb(173,136,123,0.5) 100%);
    top: 0;
}

.teaching_history .edu_feedback:hover .img_border_box {
    transform: translateZ(50px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5),
                0 0 0 10px rgb(170,178,159);
}

.teaching_history .name {
    font-size: 38px;
    color: #000000;
    grid-area: info;
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: block;
    margin-top: 1rem;
    transform: translateZ(20px);
}

.teaching_history .work_overview {
    line-height: 1.6;
    grid-area: quote;
    font-weight: 400;
    padding: 1.5rem 2rem;
    position: relative;
    border-radius: 0 28px 28px 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.8));
    transform: translateZ(10px);
    font-size: calc(15px * 1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #000000;
    border-left: 4px solid rgb(173,136,123);
}

.contact_form_section .help_grid {
    padding: 50px;
    position: relative;
    background: rgb(214,217,211);
}

.contact_form_section .help_grid h3 {
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 20px;
    position: relative;
    color: #000000;
    font-size: 36px;
}

.contact_form_section .help_grid div::before {
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    content: '';
    position: absolute;
    background: rgb(170,178,159);
    left: 0;
    opacity: 0.5;
    border-radius: 10px;
    width: 5px;
}

.contact_form_section .help_grid div span a:hover {
    color: rgb(170,178,159);
}

.contact_form_section .message_list {
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
}

.contact_form_section form input[type="text"],
.contact_form_section form input[type="email"] {
    margin-bottom: 25px;
    padding: 15px 5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    font-size: 12px;
}

.contact_form_section .request_feedbackPc3F input[type="checkbox"]:checked + label::before {
    background-color: rgb(173,136,123);
    border-color: rgb(173,136,123);
}

.contact_form_section .request_feedbackPc3F input[type="checkbox"]:checked + label::after {
    content: '';
    top: 6px;
    left: 6px;
    border: solid #ffffff;
    width: 6px;
    border-width: 0 2px 2px 0;
    position: absolute;
    transform: rotate(45deg);
    height: 10px;
}

.contact_form_section form .query_request:hover::before {
    width: 100%;
}



.contact_form_section .help_grid div:nth-child(even) {
    animation: pulse 4s infinite;
}

.thanksSpace::before {
    background: 
        radial-gradient(circle at 20% 30%, rgb(170,178,159,0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgb(173,136,123,0.5) 0%, transparent 60%);
    top: 0;
    pointer-events: none;
    animation: backgroundPulse 15s infinite alternate ease-in-out;
    width: 100%;
    position: absolute;
    opacity: 0.15;
    z-index: 0;
    height: 100%;
    left: 0;
    content: "";
}

.thanksSpace h2::after {
    background: rgb(170,178,159);
    content: "";
    transform-origin: left;
    position: absolute;
    transform: scaleX(0);
    width: 80px;
    bottom: -15px;
    left: 0;
    animation: lineExpand 1.2s 0.6s forwards cubic-bezier(0.19, 1, 0.22, 1);
    height: 3px;
}

.thanksSpace .creds_sect:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateZ(15px) rotateX(0deg);
}

.thanksSpace li {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.thanksSpace li span::first-letter {
    font-weight: 700;
    font-size: 1.5em;
    color: rgb(170,178,159);
}

.secure_wrap {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 40px;
    color: #000000;
    font-family: Arial, sans-serif;
    background-color: rgb(214,217,211);
}

.secure_wrap h3,
.secure_wrap h4,
.secure_wrap h5,
.secure_wrap h6 {
    color: rgb(170,178,159);
    margin-bottom: 10px;
    font-weight: 300;
    font-size: 22px;
}

.secure_wrap div {
    margin-bottom: 20px;
}

.subscribe_to_newsletter {
    background: linear-gradient(135deg, rgb(170,178,159,0.5), rgb(214,217,211));
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.subscribe_to_newsletter .container {
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.subscribe_to_newsletter .creds_sect::before {
    position: absolute;
    content: "";
    background: linear-gradient(
        to right,
        rgb(170,178,159,0.5) 0%,
        transparent 10%
    );
    left: 0;
    top: 0;
    height: 100%;
    opacity: 0.2;
    width: 100%;
    z-index: -1;
}

.subscribe_to_newsletter h3::after {
    background: rgb(170,178,159);
    left: 0;
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.5s ease;
    height: 2px;
    bottom: -10px;
    content: "";
    width: 80px;
    position: absolute;
}

.subscribe_to_newsletter .input_holder input[type="email"]:focus {
    border-color: rgb(170,178,159);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.1);
    transform: translateY(-2px);
}

.subscribe_to_newsletter .input_holder .mail_section {
    font-size: 17px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 55px;
    padding: 0 25px;
    font-weight: 600;
    display: flex;
    min-width: 150px;
    align-items: center;
    border: none;
    cursor: pointer;
    justify-content: center;
    overflow: hidden;
    background: rgb(170,178,159);
}

.user_comments::before {
    top: 0;
    background-position: 0 0, 0 0, 25px 25px, 25px 25px, 0 0, 25px 25px;
    width: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(30deg, rgb(170,178,159,0.5) 12%, transparent 12.5%, transparent 87%, rgb(170,178,159,0.5) 87.5%, rgb(170,178,159,0.5)),
        linear-gradient(150deg, rgb(170,178,159,0.5) 12%, transparent 12.5%, transparent 87%, rgb(170,178,159,0.5) 87.5%, rgb(170,178,159,0.5)),
        linear-gradient(30deg, rgb(170,178,159,0.5) 12%, transparent 12.5%, transparent 87%, rgb(170,178,159,0.5) 87.5%, rgb(170,178,159,0.5)),
        linear-gradient(150deg, rgb(170,178,159,0.5) 12%, transparent 12.5%, transparent 87%, rgb(170,178,159,0.5) 87.5%, rgb(170,178,159,0.5)),
        linear-gradient(60deg, rgb(173,136,123,0.5) 25%, transparent 25.5%, transparent 75%, rgb(173,136,123,0.5) 75%, rgb(173,136,123,0.5)),
        linear-gradient(60deg, rgb(173,136,123,0.5) 25%, transparent 25.5%, transparent 75%, rgb(173,136,123,0.5) 75%, rgb(173,136,123,0.5));
    opacity: 0.05;
    left: 0;
    content: "";
    position: absolute;
    z-index: 1;
    height: 100%;
}

.user_comments .img_border_box {
    height: 80px;
    z-index: 3;
    border: 3px solid #ffffff;
    right: 20px;
    width: 80px;
    transition: all 0.4s ease;
    top: -20px;
    position: absolute;
}

.user_comments .edu_feedback span {
    margin-bottom: 15px;
    position: relative;
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 20px;
    display: block;
    border-bottom: 1px dashed rgb(170,178,159,0.5);
    font-weight: 700;
    padding-bottom: 10px;
}

header::before {
    width: 100%;
    opacity: 0.5;
    height: 100%;
    top: 0;
    background: linear-gradient(135deg, 
        rgb(170,178,159,0.5) 0%, 
        transparent 50%, 
        rgb(173,136,123,0.5) 100%);
    left: 0;
    content: '';
    position: absolute;
}

header .top_lesson {
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    position: relative;
    justify-content: center;
    text-decoration: none;
    display: flex;
}

header .top_lesson svg {
    transition: all 0.3s ease;
    width: 160px;
    height: auto;
}

header .main_top {
    padding: 0.6rem;
    background: rgb(214,217,211);
    width: 100%;
    gap: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    justify-content: center;
}

header .nav_master:hover {
    color: #ffffff;
}

header .nav_master:hover::before {
    opacity: 1;
}

header .nav_master::after {
    transform-origin: left;
    height: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    left: 0;
    background: linear-gradient(to right, rgb(170,178,159), rgb(173,136,123));
    width: 100%;
    bottom: 0;
    position: absolute;
    content: '';
}

.course_program_details .container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.course_program_details h2 {
    margin-bottom: 50px;
    max-width: 85%;
    color: #000000;
    font-size: 31px;
    transform: translateX(-5%);
    font-weight: 700;
    line-height: 1.3;
    position: relative;
}

.course_program_details .img_border_box {
    overflow: hidden;
    height: 400px;
    box-shadow: 
        -15px 15px 30px rgba(rgba(0, 0, 0, 0.5), 0.1),
        5px -5px 30px rgba(rgb(255, 255, 255, 0.5), 0.1);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
}

.course_program_details .img_border_box:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 
        -20px 20px 40px rgba(rgba(0, 0, 0, 0.5), 0.15),
        10px -10px 30px rgba(rgb(255, 255, 255, 0.5), 0.05);
}

.course_program_details .description:first-of-type::first-letter {
    font-weight: 700;
    color: rgb(170,178,159);
    margin-right: 1px;
    font-size: 1.5em;
}

.course_program_details .description:last-of-type::before {
    position: absolute;
    height: 10px;
    border-radius: 50%;
    background: rgb(170,178,159);
    left: -5px;
    top: 0;
    width: 10px;
    content: "";
}



@media (max-width: 1200px) {.who_we_are {
    padding: 80px 0;
}.who_we_are .creds_sect {
    grid-gap: 40px;
}.who_we_are h3 {
    margin-bottom: 40px;
}
}



@media (max-width: 768px) {.who_we_are {
    padding: 60px 0;
}.who_we_are h3 {
    font-size: calc(29px * 0.9);
}.who_we_are .who_mentors,
    .who_we_are .impact_facts {
    padding: 25px;
}.who_we_are .who_mentors span {
    font-size: calc(22px * 0.9);
}.who_we_are .img_border_box,
    .who_we_are .expert_learnings {
    height: 220px;
}
}



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



@media (min-width: 1200px) {.payment_plan {
    padding: 8rem 2rem;
}.payment_plan .rate_choice {
    flex: 0 0 25%;
}.payment_plan .learning_pricing {
    flex: 0 0 75%;
}.payment_plan .premium_grid {
    padding: 2.5rem;
}
}



@media screen and (max-width: 991px) {.try_immediately {
    padding: 5rem 0;
}.try_immediately h2 {
    margin-bottom: 2.5rem;
    font-size: calc(29px * 0.9);
}.try_immediately .creds_sect {
    padding: 2rem;
}
}



@media screen and (max-width: 576px) {.try_immediately {
    padding: 3rem 0;
}.try_immediately h2 {
    line-height: 1.5;
    font-size: calc(29px * 0.7);
    margin-bottom: 1.5rem;
}.try_immediately .creds_sect {
    width: 90%;
    padding: 1.5rem;
}.try_immediately .query_request {
    padding: 0.9rem 1.8rem;
    font-size: calc(20px * 0.9);
}}



@media (min-width: 768px) {footer .text_main_holder {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
}footer .input_holder {
    flex-direction: row;
}footer .mail_section {
    white-space: nowrap;
}
}



@media (max-width: 991px) {footer .info_item:nth-child(even) {
    transform: translateY(15px);
}footer .main_top {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}


@media only screen and (max-width: 1200px) {.digital_cookies {
    align-items: center;
    flex-direction: column;
}.cookie_menu {
    margin-bottom: 15px;
}.cookie_compl {
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
}.privacy_ctrl {
    margin-bottom: 10px;
    max-width: 200px;
    width: 100%;
    margin-left: 0;
}
}



@media (max-width: 992px) {.teaching_history .edu_feedback {
    grid-template-rows: auto auto auto;
    grid-template-areas:
            "img_border_box"
            "query_message"
            "work_overview";
    grid-template-columns: 1fr;
    padding: 2rem;
}.teaching_history .img_border_box {
    width: 180px;
    margin: 0 auto;
    height: 180px;
}.teaching_history .name,
    .teaching_history .edu_feedback span:not(.name) {
    margin-top: 1rem;
    text-align: center;
}.teaching_history .edu_feedback span:not(.name) {
    margin-top: 0;
}
}



@media (max-width: 767px) {.thanksSpace {
    padding: 60px 0;
    perspective: 800px;
}.thanksSpace h2 {
    transform: translateZ(20px);
    font-size: calc(29px * 0.8);
    margin-bottom: 25px;
}.thanksSpace .creds_sect {
    padding: 30px 25px;
    transform: translateZ(5px) rotateX(1deg);
}.thanksSpace li::before {
    width: 10px;
    height: 10px;
    left: -20px;
}.thanksSpace li span {
    line-height: 1.6;
    font-size: calc(18px * 0.95);
}
}



@media (max-width: 480px) {.subscribe_to_newsletter {
    padding: 40px 0;
}.subscribe_to_newsletter .creds_sect {
    padding: 25px 20px;
}.subscribe_to_newsletter h3 {
    font-size: calc(16px * 0.9);
}.subscribe_to_newsletter .input_holder {
    margin-top: 20px;
}.subscribe_to_newsletter .input_holder input[type="email"],
    .subscribe_to_newsletter .input_holder .mail_section {
    height: 45px;
    font-size: calc(15px * 0.9);
}
}



@media (max-width: 767px) {.user_comments {
    padding: 70px 0;
}.user_comments h4 {
    font-size: calc(32px * 0.85);
    text-align: center;
    display: block;
    margin-bottom: 60px;
    transform: none;
}.user_comments h4::before {
    width: 100%;
    transform: none;
    left: 0;
}.user_comments .alumni_reviews {
    gap: 50px;
    grid-template-columns: 1fr;
}.user_comments .edu_feedback {
    padding: 30px 25px;
}.user_comments .img_border_box {
    height: 70px;
    top: -15px;
    right: 15px;
    width: 70px;
}.user_comments .edu_feedback span {
    font-size: calc(20px * 0.9);
}.user_comments .edu_feedback p {
    font-size: calc(16px * 0.9);
}}



@media (min-width: 992px) {.course_program_details .container {
    padding: 0 40px;
}.course_program_details h2 {
    transform: translateX(-8%);
    font-size: calc(31px * 1.4);
    max-width: 70%;
}.course_program_details h2::after {
    height: 4px;
    width: 120px;
}.course_program_details .skill_path {
    grid-gap: 80px;
}.course_program_details .img_border_box {
    transform: perspective(2000px) rotateY(-7deg) rotateX(3deg) translateX(-30px);
    height: 550px;
}.course_program_details .img_border_box:hover {
    transform: perspective(2000px) rotateY(-3deg) rotateX(1deg) translateX(-10px);
}.course_program_details .text_body {
    padding: 0 0 0 40px;
}.course_program_details .description {
    font-size: calc(15px * 1.05);
    max-height: 400px;
    line-height: 1.8;
}
}



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



@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}



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



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



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



@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}



@keyframes backgroundPulse {
    0%, 100% { 
        opacity: 0.15;
        transform: scale(1);
    }
    50% { 
        opacity: 0.25;
        transform: scale(1.05);
    }
}



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



@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px) translateZ(10px) rotateX(5deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(10px) rotateX(2deg);
    }
}

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

