* {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #ffffff #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}


.course_instructor {
    background: linear-gradient(135deg, rgb(183,192,210) 0%, rgba(240, 242, 245, 0.9) 100%);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

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

.course_instructor .student_insights {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    background: #ffffff;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: perspective(1000px) rotateX(2deg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05), 
                0 5px 20px rgba(0, 0, 0, 0.02);
}



.course_instructor .student_insights {
    animation: fadeInUp 0.8s ease-out forwards;
}

.course_instructor .name {
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    color: #000000;
    font-size: 22px;
}

.course_instructor .student_insights > div:nth-child(2) div {
    font-size: calc(15px - 1px);
    transform: translateX(0);
    font-weight: 600;
    margin-top: 5px;
    color: rgb(81,114,179);
    opacity: 0.85;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.about_this {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgb(183,192,210) 0%, #ffffff 100%);
}

.about_this .container {
    z-index: 5;
    position: relative;
}

.about_this h2::after {
    height: 3px;
    position: absolute;
    bottom: 0;
    content: "";
    background: rgb(131,151,190);
    transform: translateX(-50%);
    left: 50%;
    width: 80px;
}

.about_this .timeline_hist {
    overflow: hidden;
    flex: 1 1 calc(50% - 20px);
    z-index: 2;
    border-radius: 22px;
    background: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin: 0 10px;
}

.about_this .timeline_hist:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about_this .timeline_hist:hover h3 {
    color: rgb(131,151,190);
    transform: translateX(10px);
}

.about_this .timeline_hist:hover p {
    transform: translateX(10px);
}

.about_this .timeline_hist:last-child {
    border-top: 3px solid rgb(81,114,179);
}



.about_this .creds_sect::before {
    left: 50%;
    content: "";
    z-index: 1;
    top: 0;
    background: linear-gradient(to bottom, transparent, rgb(131,151,190,0.5), transparent);
    width: 1px;
    bottom: 0;
    opacity: 0.5;
    position: absolute;
}

.primary_page::before {
    opacity: 0.1;
    height: 100%;
    position: absolute;
    background: 
        repeating-linear-gradient(
            45deg,
            rgb(131,151,190) 0px,
            rgb(131,151,190) 10px,
            rgb(131,151,190,0.5) 10px,
            rgb(131,151,190,0.5) 20px
        );
    width: 100%;
    content: "";
    left: 0;
    z-index: 0;
    top: 0;
}

.primary_page .learn_main input {
    display: none;
}

.primary_page .skill_plus {
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
}

.primary_page .learn_main input:nth-child(1):checked ~ .skill_plus .learning_welcome:nth-child(1),
.primary_page .learn_main input:nth-child(2):checked ~ .skill_plus .learning_welcome:nth-child(2),
.primary_page .learn_main input:nth-child(3):checked ~ .skill_plus .learning_welcome:nth-child(3),
.primary_page .learn_main input:nth-child(4):checked ~ .skill_plus .learning_welcome:nth-child(4),
.primary_page .learn_main input:nth-child(5):checked ~ .skill_plus .learning_welcome:nth-child(5),
.primary_page .learn_main input:nth-child(6):checked ~ .skill_plus .learning_welcome:nth-child(6),
.primary_page .learn_main input:nth-child(7):checked ~ .skill_plus .learning_welcome:nth-child(7),
.primary_page .learn_main input:nth-child(8):checked ~ .skill_plus .learning_welcome:nth-child(8),
.primary_page .learn_main input:nth-child(9):checked ~ .skill_plus .learning_welcome:nth-child(9),
.primary_page .learn_main input:nth-child(10):checked ~ .skill_plus .learning_welcome:nth-child(10) {
    transform: translateY(0);
    opacity: 1;
    z-index: 2;
}

.primary_page .details_box {
    animation: slideUp 0.8s ease forwards 0.3s;
    max-width: 600px;
    border-radius: 29px;
    width: 45%;
    transform: translateY(30px);
    opacity: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 40px;
    position: absolute;
    backdrop-filter: blur(10px);
    left: 10%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.5) 0%,
        rgb(131,151,190,0.5) 100%
    );
    z-index: 10;
    border: 1px solid rgb(81,114,179,0.5);
    bottom: 15%;
}

.primary_page .details_box {
    transform: translateX(-50%) translateY(30px);
    bottom: 10%;
    padding: 25px;
    width: 80%;
    left: 50%;
    max-width: none;
}

.primary_page .details_box h3 {
    text-shadow: 0 2px 4px #000000;
    font-size: 24px;
    margin-bottom: 20px;
    color: rgb(81,114,179);
    font-weight: 600;
}

.primary_page .details_box h3 {
    font-size: calc(24px * 0.9);
    margin-bottom: 15px;
}

.primary_page .online_skills label:hover {
    transform: scale(1.2);
}

.primary_page .details_box::after {
    border-width: 0 3px 3px 0;
    right: 15px;
    bottom: 15px;
}



.primary_page .learn_main input:checked ~ .skill_plus .learning_welcome img {
    animation: kenBurns 10s ease infinite alternate;
}

header .main_skill {
    width: 100%;
    padding: 0;
}

header .head_section {
    position: relative;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

header .site_study:before {
    top: 50%;
    position: absolute;
    width: 6px;
    border-radius: 10px;
    content: '';
    height: 6px;
    transition: transform 0.3s ease;
    background-color: rgb(131,151,190);
    transform: translateY(-50%) scale(0);
    left: -15px;
}

header .site_study:hover:after {
    transform: scaleX(1);
}

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

header .head_guide svg {
    transition: transform 0.3s ease;
    width: auto;
    height: 42px;
}

.study_method {
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(183,192,210) 0%, rgba(244, 247, 255, 0.92) 100%);
    position: relative;
}

.study_method::after {
    background: linear-gradient(135deg, rgb(131,151,190,0.5) 0%, transparent 70%);
    position: absolute;
    pointer-events: none;
    content: "";
    right: -25%;
    opacity: 0.03;
    width: 80%;
    animation: gradientShift 25s infinite alternate ease-in-out;
    top: -50%;
    z-index: 1;
    transform: rotate(-15deg);
    height: 200%;
}

.study_method .learn_academy > div::before {
    content: "";
    background: linear-gradient(to bottom, rgb(131,151,190), rgb(81,114,179));
    transform: scaleY(1);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    position: absolute;
    width: 4px;
    transform-origin: top;
    left: 0;
    top: 0;
    height: 100%;
}

.study_method h3::after {
    width: 60px;
    left: 0;
    content: "";
    position: absolute;
    height: 2px;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.1s;
    bottom: 0;
    transform-origin: left;
    transform: scaleX(1);
    background: rgb(131,151,190);
}

.study_method p span {
    display: inline-block;
    z-index: 1;
    position: relative;
}

.study_method .learn_academy > div:hover h3::after {
    transform: scaleX(1.5);
}

.contact_form_box {
    padding: 100px 0;
    position: relative;
}

.contact_form_box .help_query {
    overflow: hidden;
    flex-wrap: wrap;
    transform-style: preserve-3d;
    position: relative;
    display: flex;
    perspective: 1000px;
    border-radius: 27px;
}

.contact_form_box .support_grid h3 {
    color: #000000;
    font-weight: 700;
    font-size: 32px;
    padding-left: 20px;
    margin-bottom: 50px;
    position: relative;
}

.contact_form_box .support_grid div {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateZ(0);
    transition: all 0.3s ease;
    padding: 15px 20px;
    margin-bottom: 25px;
    align-items: center;
    display: flex;
}

.contact_form_box .support_grid div span a:hover {
    color: rgb(131,151,190);
}

.contact_form_box .query_support h3 {
    font-weight: 600;
    font-size: 19px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.contact_form_box form input[type="text"]:focus,
.contact_form_box form input[type="email"]:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
}

.contact_form_box .reach_message input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.contact_form_box .reach_message label::before {
    left: 0;
    border-radius: 10px;
    top: 2px;
    transition: all 0.3s ease;
    content: "";
    width: 20px;
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.4);
    height: 20px;
}

.contact_form_box .reach_message label a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact_form_box form .request_request::before {
    transform: translateY(100%);
    height: 100%;
    width: 100%;
    z-index: -1;
    position: absolute;
    content: "";
    left: 0;
    background: linear-gradient(135deg, rgb(81,114,179), rgb(131,151,190));
    top: 0;
    transition: transform 0.3s ease;
}

.contact_form_box .support_grid div:nth-child(3) {
    animation: float 7s infinite ease-in-out;
}

.privacy_depot {
    font-family: Arial, sans-serif;
    padding: 50px;
    margin: 0 auto;
    max-width: 1100px;
    position: relative;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 0, 0, 0.5);
    color: #000000;
    background: #ffffff;
    overflow: hidden;
}

.privacy_depot h2::before {
    top: 50%;
    width: 10px;
    background: rgb(131,151,190);
    position: absolute;
    transform: translateY(-50%);
    border-radius: 50%;
    height: 10px;
    content: '';
    left: -15px;
}

.privacy_depot ul li::before {
    transform: translateY(-50%);
    color: rgb(131,151,190);
    content: '•';
    left: 0;
    font-size: 1.5em;
    position: absolute;
    top: 50%;
}

.privacy_depot h3::after, .privacy_depot h4::after, .privacy_depot h5::after, .privacy_depot h6::after {
    bottom: -5px;
    height: 2px;
    width: 20px;
    left: 0;
    background: rgb(81,114,179);
    content: '';
    position: absolute;
}

.cookie_overlay_dialog h5 {
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgb(131,151,190);
    margin: 0;
}

.cookie_overlay_dialog p {
    color: #ffffff;
    line-height: 1.5;
    margin: 0;
    position: relative;
    font-size: 15px;
}

.edu_track {
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    font-size: 19px;
    margin-left: 10px;
    border: 2px solid rgb(131,151,190);
    padding: 10px 20px;
    flex-shrink: 0;
    line-height: 40px;
    min-width: 140px;
    background: rgb(131,151,190);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    color: #000000;
    white-space: nowrap;
}

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

.program_overview .learn_academy {
    position: relative;
    display: flex;
    min-height: 480px;
    flex-direction: column;
}

.program_overview .image_stack::after {
    content: "";
    background: linear-gradient(135deg, rgb(131,151,190,0.5) 0%, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
    left: 0;
    mix-blend-mode: multiply;
    width: 100%;
    position: absolute;
    top: 0;
    height: 100%;
}

.program_overview .top_master {
    border-radius: 50%;
    position: absolute;
    z-index: 4;
    padding: 15px;
    top: -35px;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    left: 2.5rem;
}

.program_overview .top_master:hover svg path {
    fill: rgb(81,114,179);
}

.program_overview .education_flow p {
    color: #000000;
    font-size: 18px;
    line-height: 1.7;
}

.program_overview .learn_academy::before {
    height: 120px;
    width: 120px;
    border: 2px solid rgb(131,151,190,0.5);
    top: 10%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    content: "";
    animation: floatAnimation 8s infinite ease-in-out;
    position: absolute;
    right: 65%;
    z-index: 0;
}

.science_ref .container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.science_ref .company_holder {
    background: rgba(0, 0, 0, 0.4);
    clip-path: polygon(
        0 0,
        calc(100% - 30px) 0,
        100% 30px,
        100% 100%,
        30px 100%,
        0 calc(100% - 30px)
    );
    border-radius: 10px;
    margin-bottom: 4rem;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(rgb(131,151,190), 0.3);
    backdrop-filter: blur(5px);
}

.science_ref .company_holder h3::before {
    filter: blur(1px);
    position: absolute;
    z-index: -1;
    content: attr(data-text);
    color: rgb(131,151,190);
    opacity: 0.7;
    left: 2px;
    top: 2px;
}

.science_ref .mobile_cta {
    justify-content: space-between;
    display: flex;
    position: relative;
}

.science_ref .top_bar {
    justify-content: space-between;
    display: flex;
    gap: 2rem;
    width: 100%;
}

.science_ref .top_start:hover {
    background: rgba(rgb(131,151,190,0.5), 0.1);
    transform: translateY(-5px);
    box-shadow: -8px 8px 20px rgba(0, 0, 0, 0.4);
}

.science_ref .top_start h5::after {
    background: rgb(131,151,190);
    height: 2px;
    left: 0;
    position: absolute;
    content: "";
    box-shadow: 0 0 10px rgb(131,151,190);
    bottom: -8px;
    width: 40px;
}

.science_ref .top_start .top_bar a:hover {
    opacity: 1;
    text-shadow: 0 0 5px rgb(131,151,190);
    color: rgb(131,151,190);
}

.transcript::before {
    position: absolute;
    width: 100%;
    content: "";
    top: 0;
    height: 1px;
    left: 0;
    background-image: 
        linear-gradient(90deg, transparent, rgb(131,151,190), transparent);
}

.sign_up_now {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, rgb(183,192,210) 0%, rgb(81,114,179,0.5) 100%);
    overflow: hidden;
    perspective: 1000px;
}

.sign_up_now .container {
    transform-style: preserve-3d;
    z-index: 2;
    margin: 0 auto;
    position: relative;
    max-width: 1200px;
    padding: 0 2rem;
}

.sign_up_now h2 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    font-weight: 700;
    text-align: center;
    position: relative;
    transform: translateZ(20px);
    margin-bottom: 2.5rem;
    opacity: 0;
    color: #000000;
    font-size: 36px;
}

.sign_up_now svg {
    transform: translateZ(10px) translateY(-5px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 4.5rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
    width: 4.5rem;
}

.sign_up_now .learn_academy > div {
    transform: translateZ(15px);
    text-align: center;
}

.sign_up_now .request_request::before {
    position: absolute;
    z-index: -1;
    transition: transform 0.6s ease;
    content: '';
    width: 100%;
    left: -100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    top: 0;
}

.sign_up_now .request_request:hover::before {
    transform: translateX(200%);
}

.price_offering {
    color: #ffffff;
    overflow: hidden;
    position: relative;
    padding: 4rem 0;
}

.price_offering::before {
    right: 0;
    background: linear-gradient(135deg, rgba(34, 30, 80, 0.95), rgba(19, 31, 60, 0.85));
    content: "";
    left: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
    top: 0;
}

.price_offering .rate_card {
    gap: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 0;
    list-style: none;
    margin: 0;
    perspective: 1000px;
}

.price_offering .rate_card li {
    animation: fadeInUp 0.8s ease-out forwards;
    transform: translateY(30px);
    opacity: 0;
}

.price_offering .rate_panel {
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: block;
}

.price_offering .rate_panel:hover .pricing_catalog::before {
    transform: scaleX(1);
}

.price_offering .plan_details {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 2.5rem 2rem;
}

.price_offering .plan_details h4 {
    font-size: calc(21px * 1.2);
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    position: relative;
    margin-top: 0;
    font-weight: 600;
}

.price_offering .fee_struct {
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    font-weight: 700;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    align-self: flex-start;
    justify-content: center;
    margin-top: auto;
    font-size: calc(17px * 1.3);
    background: linear-gradient(120deg, rgb(131,151,190), rgb(81,114,179));
}

.thanksPart .container {
    transform-style: preserve-3d;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.thanksPart h2::after {
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    transform: translateZ(15px) scaleX(1);
    content: '';
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, rgb(131,151,190) 0%, rgb(131,151,190,0.5) 100%);
    height: 3px;
    bottom: -0.8rem;
    transform-origin: left;
    width: 80px;
}

.thanksPart .learn_academy:hover {
    box-shadow: 
        0 25px 35px -15px rgba(rgba(0, 0, 0, 0.5), 0.15),
        0 15px 25px -10px rgba(rgba(0, 0, 0, 0.5), 0.1);
    transform: translateZ(25px) rotateY(0deg);
}

.thanksPart li {
    padding-left: 0;
    position: relative;
}

::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-track {
    background: repeating-radial-gradient(circle at center, rgb(183,192,210), rgb(183,192,210) 15px, rgb(131,151,190,0.5) 15px, rgb(131,151,190,0.5) 18px);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(265deg, #ffffff 17%, rgb(131,151,190) 42%, rgb(183,192,210) 87%);
    transition: all, box-shadow, transform 4.3s linear;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(81,114,179);
    transform: translateX(2px);
    border-color: rgb(255, 255, 255, 0.5);
    box-shadow: 3px 3px 7px -1px rgba(0, 0, 0, 0.5);
}



@media (max-width: 767px) {.course_instructor {
    padding: 80px 0;
}.course_instructor .student_insights {
    padding: 30px;
    gap: 25px;
}.course_instructor .image_stack {
    height: 150px;
    width: 150px;
}.course_instructor .name {
    font-size: calc(22px - 2px);
}.course_instructor .experience_block {
    font-size: calc(15px - 1px);
}
}



@media screen and (max-width: 576px) {.about_this {
    padding: 50px 0;
}.about_this h2 {
    font-size: calc(28px * 0.8);
    padding-bottom: 12px;
    margin-bottom: 15px;
}.about_this h2::after {
    width: 50px;
    height: 2px;
}.about_this .creds_sect {
    margin-top: 30px;
}.about_this .timeline_hist {
    padding: 25px;
}.about_this .timeline_hist h3 {
    margin-bottom: 12px;
    font-size: calc(24px * 0.85);
}.about_this .timeline_hist p {
    line-height: 1.6;
    font-size: calc(18px * 0.9);
}.about_this .timeline_hist:hover h3,
    .about_this .timeline_hist:hover p {
    transform: translateX(5px);
}}



@media (max-width: 767px) {header .top_start {
    max-height: 0;
    flex-direction: column;
    position: absolute;
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    z-index: 1001;
    border-bottom: 3px solid rgb(131,151,190);
    transition: max-height 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    top: 100%;
    padding: 0;
    left: 0;
    gap: 0;
}header .menu.active {
    max-height: 400px;
}header .site_study {
    padding: 12px 20px;
    width: 100%;
    border-bottom: 1px solid rgb(183,192,210);
}header .site_study:last-child {
    border-bottom: none;
}header .site_study:before {
    left: 5px;
}header .head_section {
    padding: 5px 0;
}header .head_guide {
    margin: 0 auto;
}
}



@media screen and (max-width: 576px) {.contact_form_box {
    padding: 60px 0;
}.contact_form_box .support_grid,
    .contact_form_box .query_support {
    padding: 30px 20px;
}.contact_form_box .support_grid h3 {
    margin-bottom: 30px;
    font-size: calc(32px * 0.8);
}.contact_form_box form input[type="text"],
    .contact_form_box form input[type="email"] {
    padding: 15px 20px;
}.contact_form_box form .request_request {
    padding: 15px 20px;
    width: 100%;
}}



@media screen and (max-width: 991px) {.program_overview .learn_academy {
    min-height: 420px;
}.program_overview .education_flow {
    padding: 2rem;
    width: 75%;
}.program_overview .top_master {
    left: 2rem;
    padding: 12px;
    top: -30px;
}.program_overview .top_master svg {
    height: 40px;
    width: 40px;
}.program_overview .education_flow h3 {
    font-size: calc(30px - 0.2rem);
}
}



@media screen and (max-width: 992px) {.science_ref .mobile_cta {
    flex-direction: column;
}.science_ref .top_bar {
    flex-direction: column;
}.science_ref .top_start {
    width: 100%;
    margin-bottom: 1rem;
}.transcript {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}
}



@media screen and (max-width: 768px) {.science_ref {
    padding: 4rem 0 2rem;
}.science_ref .company_holder {
    margin-bottom: 3rem;
    padding: 1.5rem;
}.science_ref .company_holder h3 {
    font-size: 35px;
}.science_ref .top_start h5 {
    font-size: calc(19px * 0.9);
}.transcript {
    margin-top: 2rem;
    padding: 1.2rem 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}
}



@media (max-width: 768px) {.sign_up_now {
    padding: 3.5rem 0;
}.sign_up_now h2 {
    line-height: 1.4;
    font-size: calc(36px * 0.8);
}.sign_up_now .learn_academy {
    text-align: center;
    grid-template-columns: 1fr;
    padding: 2rem;
    transform: translateZ(15px) rotateX(0deg);
    gap: 1.5rem;
    grid-template-rows: auto auto;
}.sign_up_now svg {
    height: 4rem;
    width: 4rem;
    margin: 0 auto;
}.sign_up_now .request_request {
    padding: 0.9rem 2rem;
}.sign_up_now::after {
    height: 10rem;
    width: 10rem;
}
}



@media (max-width: 991px) {.price_offering {
    padding: 3.5rem 0;
}.price_offering h2 {
    font-size: calc(33px * 0.9);
}.price_offering .learning_fees {
    font-size: 17px;
    margin-bottom: 2.5rem;
}
}



@media (min-width: 992px) {.thanksPart {
    padding: 8rem 0;
}.thanksPart h2 {
    transform: translateZ(15px);
    font-size: calc(29px * 1.1);
    max-width: 80%;
}.thanksPart h2::after {
    width: 100px;
}.thanksPart .learn_academy {
    padding: 3.5rem 4rem;
    margin: 2rem 0;
}.thanksPart li span {
    font-size: calc(13px * 1.05);
    line-height: 1.8;
}.thanksPart li::before {
    height: 80px;
    width: 80px;
}
}



@media (max-width: 480px) {.thanksPart {
    padding: 3rem 0;
}.thanksPart .container {
    padding: 0 1.5rem;
}.thanksPart h2 {
    margin-bottom: 1.5rem;
    font-size: calc(29px * 0.7);
}.thanksPart .learn_academy {
    margin: 0.5rem 0;
    padding: 1.25rem 1.5rem;
}.thanksPart li span {
    font-size: calc(13px * 0.95);
    line-height: 1.6;
}}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.1) rotate(1deg); }
}



@keyframes gradientShift {
    0% {
        transform: rotate(-15deg) translateX(0);
        opacity: 0.02;
    }
    50% {
        opacity: 0.04;
    }
    100% {
        transform: rotate(-15deg) translateX(5%);
        opacity: 0.03;
    }
}



@keyframes scan-lines {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 100%;
    }
}



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



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

