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

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

.uigrant_info {
    flex: 0 0 auto;
}


.uiinfo_hub {
    z-index: 1;
    position: relative;
    perspective: 1000px;
    padding: 120px 0;
    background: rgb(226,234,237);
    overflow: hidden;
}

.uiinfo_hub .uiwrite_page {
    z-index: 2;
    background: #ffffff;
    backdrop-filter: blur(5px);
    overflow: hidden;
    position: relative;
    padding: 60px;
    border-radius: 0;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    clip-path: polygon(
        0 5%, 5% 0, 95% 0, 100% 5%,
        100% 95%, 95% 100%, 5% 100%, 0 95%
    );
}

.uiinfo_hub h3::before {
    bottom: 0;
    height: 2px;
    content: '';
    width: 100%;
    background: linear-gradient(to right, rgb(187,200,207), transparent);
    left: 0;
    position: absolute;
}

.uiinfo_hub .uihelp_desk {
    gap: 30px;
    position: relative;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    display: grid;
}

.uiinfo_hub .uihelp_desk span {
    padding: 25px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 1;
    clip-path: polygon(
        0 0, 90% 0, 100% 10%, 
        100% 100%, 10% 100%, 0 90%
    );
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.uiinfo_hub .uihelp_desk span p {
    display: flex;
    position: relative;
    font-weight: 600;
    align-items: center;
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    z-index: 2;
}

.uiinfo_hub .uihelp_desk span:hover svg path {
    animation: dashAnimation 1.5s ease forwards;
    stroke-dashoffset: 100;
}

.uiinfo_hub .uihelp_desk span span a svg {
    vertical-align: middle;
    stroke: currentColor;
    width: 16px;
    fill: currentColor;
    transform-origin: center;
    stroke-width: 0.5;
    height: 16px;
    margin-right: 5px;
}

.uiinfo_hub .uimessage_request::after {
    border-style: solid;
    top: 0;
    right: 0;
    border-color: transparent rgb(187,200,207,0.5) transparent transparent;
    height: 0;
    width: 0;
    content: '';
    position: absolute;
    border-width: 0 50px 50px 0;
}



.uiinfo_hub .uimessage_request span {
    position: relative;
    display: block;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    padding: 12px 15px;
    clip-path: polygon(
        0 0, 100% 0, 100% 100%, 
        15px 100%, 0 calc(100% - 15px)
    );
    background: rgba(255, 255, 255, 0.7);
    transform-origin: left;
    margin-bottom: 12px;
}

.uiinfo_hub .uimessage_request span svg path {
    stroke-dashoffset: 50;
    fill-opacity: 0.7;
    stroke-dasharray: 50;
    transition: all 0.5s ease;
}

.uisecure_nest h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.uisecure_nest ul, .uisecure_nest ol {
    padding-left: 25px;
    z-index: 1;
    list-style: none;
    margin-bottom: 25px;
    position: relative;
}

.uisecure_nest ol {
    counter-reset: item;
}

.uisecure_nest p, .uisecure_nest span {
    position: relative;
    text-align: justify;
    z-index: 1;
    font-size: 14px;
    margin-bottom: 25px;
}

.uiacademic_experience::after {
    transform: translateZ(0);
    content: "";
    bottom: -5%;
    opacity: 0.1;
    background: radial-gradient(circle, rgb(150,168,177,0.5) 0%, transparent 70%);
    left: -10%;
    width: 30vw;
    position: absolute;
    height: 30vw;
}

.uiacademic_experience .uithumbnail::after {
    position: absolute;
    top: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(rgb(187,200,207), 0.1) 100%);
    content: "";
    left: 0;
    z-index: 1;
    width: 100%;
}

.uiacademic_experience .name::after {
    position: absolute;
    transform: scaleX(0.8);
    background: linear-gradient(90deg, rgb(150,168,177) 0%, transparent 100%);
    content: "";
    bottom: -8px;
    width: 60%;
    transition: transform 0.4s ease;
    transform-origin: left;
    left: 0;
    height: 3px;
}

.uinewsletter {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgb(187,200,207) 100%);
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.uinewsletter .uiour_journey {
    position: relative;
    gap: 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    transform: perspective(1000px) rotateY(2deg);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.uinewsletter .input_holder div {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.uinewsletter .input_holder div::before {
    bottom: 0;
    height: 2px;
    left: 0;
    z-index: 1;
    content: "";
    background: rgb(150,168,177);
    position: absolute;
    width: 0;
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.uinewsletter .uisupport_feedback:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.uinewsletter .uisupport_feedback:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.uioffer_package::before {
    top: 0;
    pointer-events: none;
    height: 100%;
    left: 0;
    background: radial-gradient(circle at 30% 70%, rgb(150,168,177,0.5) 0%, transparent 60%);
    width: 100%;
    z-index: 0;
    position: absolute;
    content: "";
}

.uioffer_package .uilearning_fees {
    grid-template-columns: 1fr;
    display: grid;
    gap: 30px;
    position: relative;
}

.uioffer_package .uipackage_price {
    overflow: hidden;
    position: relative;
    display: block;
    border-radius: 4px;
    transform: translateY(0);
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.uioffer_package .uiprogram_fees h3 {
    font-size: calc(22px + 2px);
    margin-bottom: 15px;
    transform-origin: left;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    transition: transform 0.3s ease;
    font-weight: 700;
    text-overflow: ellipsis;
    color: #000000;
}

.uioffer_package .uiprogram_fees p {
    flex: 1;
    -webkit-line-clamp: 5;
    overflow-wrap: break-word;
    line-height: 1.6;
    margin-bottom: 0;
    word-break: break-word;
    color: #000000;
    font-size: 12px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.uiwho_we_are::before {
    background-size: 20px 20px;
    top: 0;
    position: absolute;
    z-index: -1;
    left: 0;
    height: 100%;
    animation: backgroundMove 20s linear infinite;
    opacity: 0.3;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.02) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.02) 75%, transparent 75%, transparent);
    content: "";
    width: 100%;
}

.uiwho_we_are .uiedu_leadership::before {
    opacity: 0.1;
    transform-origin: center;
    z-index: -1;
    left: -50%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.03) 10px,
        rgba(0, 0, 0, 0.03) 20px
    );
    animation: patternRotate 60s linear infinite;
    height: 200%;
    position: absolute;
    top: -50%;
    width: 200%;
    content: "";
}



.uiwho_we_are .uiedu_leadership p {
    font-size: 18px;
    position: relative;
    border-left: 2px solid rgb(187,200,207,0.5);
    padding-left: 20px;
    margin-bottom: 0;
    line-height: 1.8;
    grid-column: 1 / 2;
    color: #000000;
    grid-row: 2 / 3;
}

.uiwho_we_are .uiedu_leadership .uithumbnail::after {
    height: 30%;
    position: absolute;
    background: linear-gradient(
        to top, 
        #000000 0%, 
        transparent 100%
    );
    opacity: 0.5;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

.uiwho_we_are .uilearn_experts:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 25px 25px 70px rgba(0, 0, 0, 0.08),
                -25px -25px 70px rgba(255, 255, 255, 0.08);
}

.uiwho_we_are .uilearn_experts p {
    border-left: 2px solid rgb(150,168,177);
    font-size: 18px;
    color: #000000;
    position: relative;
    border-radius: 0 10px 10px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    line-height: 1.8;
}

.uiwho_we_are .uilearn_experts .uisuccess_metric::before {
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.5) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.5) 100%
    );
    width: 100%;
    opacity: 0.4;
    height: 100%;
    transition: opacity 0.4s ease;
    z-index: 1;
    content: "";
    left: 0;
    top: 0;
    position: absolute;
}

.uiwho_we_are .uiour_journey::before {
    left: -80px;
    top: 30%;
    width: 100px;
    animation: floatBlob 12s ease-in-out 1s infinite alternate;
    height: 100px;
    background: rgb(187,200,207);
}

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

.uicookiePolicyContainer p {
    font-size: 18px;
}

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

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

.uicontact_panel h2::after {
    bottom: 0;
    background: linear-gradient(to right, transparent, rgb(187,200,207), transparent);
    left: 50%;
    position: absolute;
    width: 80px;
    height: 3px;
    content: "";
    transform: translateX(-50%);
}

.uicontact_panel .uithumbnail::after {
    top: 0;
    height: 100%;
    position: absolute;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
    content: "";
    left: 0;
    width: 100%;
}

.uicontact_panel form h3 {
    font-family: Arial, sans-serif;
    margin-bottom: 30px;
    font-weight: 600;
    color: #ffffff;
    padding-left: 15px;
    font-size: 20px;
    position: relative;
}

.uicontact_panel form input[type="text"] {
    font-size: 18px;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    border-radius: 10px;
}

.uicontact_panel .uirequest_inquiry input[type="checkbox"]:checked + label::after {
    position: absolute;
    border-bottom: 2px solid #ffffff;
    top: 11px;
    transform: rotate(-45deg);
    content: "";
    border-left: 2px solid #ffffff;
    width: 8px;
    height: 4px;
    left: 7px;
}

.uicontact_panel svg {
    width: 24px;
    height: 24px;
    fill: rgb(187,200,207);
    margin-right: 15px;
}

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

footer .uigrant_info {
    padding: 80px 0 30px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
    background: linear-gradient(135deg, #000000 0%, rgb(187,200,207) 100%);
    position: relative;
}

footer .uiask_feedback {
    justify-content: space-between;
    padding-bottom: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

footer .info_item p,
footer .info_item a {
    color: #ffffff;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    font-weight: 400;
    text-decoration: none;
}

footer .uinav_guide svg {
    max-width: 160px;
    filter: drop-shadow(0 0 5px rgb(187,200,207,0.5));
    height: auto;
}

footer .uinav_prime h5::after {
    position: absolute;
    width: 50px;
    background: rgb(150,168,177);
    content: '';
    bottom: 0;
    border-radius: 10px;
    height: 3px;
    left: 0;
}

footer .uiheader_wrap a:hover::before {
    box-shadow: 0 0 10px rgb(150,168,177);
    width: 8px;
    opacity: 1;
    height: 8px;
}

footer .subscribe_holder h5 {
    color: #ffffff;
    margin-bottom: 5px;
    font-size: 19px;
    font-weight: 700;
}

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

footer .uicampus_links {
    text-align: center;
    padding-top: 30px;
    position: relative;
}

footer .uicampus_links::before {
    top: 0;
    height: 1px;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgb(150,168,177,0.5) 50%, 
        transparent 100%);
    width: 100%;
    content: '';
}

.uiwelcome_board .uitext_block_wrap {
    order: 2;
    padding: 2rem 0;
    position: relative;
}

.uiwelcome_board .uitext_block_wrap::before {
    width: 4px;
    transform-origin: top;
    animation: growDown 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    position: absolute;
    height: 60%;
    animation-delay: 0.8s;
    content: "";
    transform: scaleY(0);
    left: -1rem;
    background: linear-gradient(to bottom, rgb(187,200,207), rgb(150,168,177));
    top: 0;
}

.uiwelcome_board svg {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    width: 80px;
    height: 80px;
    animation: pulse 4s ease-in-out infinite;
    transform-origin: center;
    margin-bottom: 1rem;
}

.uiwelcome_board .uisupport_feedback::before {
    opacity: 0;
    width: 100%;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: linear-gradient(135deg, rgb(150,168,177) 0%, rgb(187,200,207) 100%);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: -1;
}

.uiwelcome_board .uithumbnail::after {
    animation: shine 6s infinite;
    content: "";
    position: absolute;
    height: 200%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    width: 200%;
    top: -50%;
    left: -50%;
}

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

header .uipage_header {
    overflow: hidden;
    position: relative;
    font-size: 17px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    z-index: 1;
    color: #000000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 400;
}

.uigratitudeWeb {
    overflow: hidden;
    padding: 120px 0 100px;
    position: relative;
    background: linear-gradient(135deg, rgb(226,234,237) 0%, rgba(245, 247, 250, 0.95) 100%);
}

.uigratitudeWeb .container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    padding: 0 20px;
}

.uigratitudeWeb h2::after {
    width: 80px;
    animation: expandLine 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.4s;
    bottom: -12px;
    left: 0;
    background: linear-gradient(90deg, rgb(187,200,207) 0%, rgb(150,168,177) 100%);
    content: "";
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    height: 3px;
}

.uigratitudeWeb span {
    font-size: calc(17px * 1.05);
    transform: translateY(15px);
    line-height: 1.7;
    animation: fadeText 0.8s ease forwards 0.8s;
    opacity: 0;
    font-family: Arial, sans-serif;
    color: #000000;
    display: block;
}

.uicourse_program_details .container {
    padding: 0 15px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    max-width: 1000px;
}

.uicourse_program_details .uithumbnail {
    border-radius: 17px;
    height: 450px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.6s;
    overflow: hidden;
    transform: translateZ(0);
    z-index: 1;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.uicourse_program_details .uieducation_route:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.uicourse_program_details .uinav_guide {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: rgb(226,234,237);
    border-radius: 10px;
    position: relative;
    justify-content: center;
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    padding: 15px;
}

.uicourse_program_details .uieducation_route h3 {
    font-weight: 700;
    font-size: 36px;
    position: relative;
    font-family: Arial, sans-serif;
    margin-bottom: 20px;
    padding-bottom: 15px;
    color: #000000;
}


@media only screen and (max-width: 800px)  {.container {
    padding: 0 12px;
}}


@media only screen and (max-width: 800px) {.uisecure_nest {
    padding: 40px 20px;
}.uisecure_nest h1 {
    font-size: calc(22px - 10px);
}.uisecure_nest h2 {
    font-size: calc(22px - 8px);
}.uisecure_nest p, .uisecure_nest li {
    font-size: calc(14px - 2px);
}}



@media (min-width: 768px) {.uiacademic_experience {
    padding: 8rem 0;
}.uiacademic_experience .uilearner_insights {
    grid-template-columns: auto 1fr;
    gap: 2.5rem 3rem;
    grid-template-rows: auto 1fr;
    padding: 3rem;
}.uiacademic_experience .uilearner_insights > div:first-child {
    grid-row: span 2;
}.uiacademic_experience .uithumbnail {
    height: 260px;
    width: 260px;
}.uiacademic_experience .name {
    font-size: calc(24px + 0.2rem);
}.uiacademic_experience .uicareer_expertise {
    font-size: calc(14px + 0.05rem);
}
}



@media (min-width: 992px) {.uinewsletter {
    padding: 7rem 4rem;
}.uinewsletter .uiour_journey {
    gap: 4rem;
}.uinewsletter h3 {
    font-size: calc(18px * 1.1);
}.uinewsletter::before {
    background-size: 20px 20px;
}
}



@media (hover: none) {.uinewsletter .uiour_journey:hover {
    transform: none;
}.uinewsletter .uisupport_feedback:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: none;
}.uinewsletter .uinews_signup:focus {
    transform: none;
}}



@media (min-width: 1200px) {.uioffer_package {
    padding: 120px 0;
}.uioffer_package .uilearning_fees {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}.uioffer_package .uicost_matrix h2 {
    font-size: calc(29px + 4px);
}.uioffer_package .uiprogram_fees h3 {
    font-size: calc(22px + 4px);
}.uioffer_package .uidiscount_grid {
    font-size: calc(22px + 8px);
}.uioffer_package .uithumbnail {
    height: 280px;
}
}



@media screen and (max-width: 991px) {.uiwho_we_are {
    padding: 80px 0 60px;
}.uiwho_we_are .uiour_journey {
    gap: 40px;
}.uiwho_we_are h3 {
    font-size: calc(35px - 0.4rem);
    margin-bottom: 30px;
}.uiwho_we_are .uiedu_leadership,
    .uiwho_we_are .uilearn_experts {
    gap: 30px;
    padding: 25px;
}.uiwho_we_are .uiedu_leadership {
    grid-template-columns: 1fr 1fr;
}.uiwho_we_are .uilearn_experts {
    grid-template-columns: 1fr;
}.uiwho_we_are .uiedu_leadership .uithumbnail {
    min-height: 300px;
}.uiwho_we_are .uilearn_experts .uisuccess_metric {
    height: 350px;
    max-width: 85%;
    margin: 0 auto;
}.uiwho_we_are .uilearn_experts p {
    grid-row: 1 / 2;
}.uiwho_we_are .uilearn_experts .uisuccess_metric {
    grid-row: 2 / 3;
}.uiwho_we_are .container::before,
    .uiwho_we_are .container::after {
    height: 120px;
    width: 120px;
}.uiwho_we_are .uiour_journey::before,
    .uiwho_we_are .uiour_journey::after {
    height: 80px;
    width: 80px;
}
}



@media screen and (max-width: 767px) {.uicontact_panel {
    padding: 60px 0;
}.uicontact_panel h2 {
    margin-bottom: 40px;
}.uicontact_panel .uithumbnail {
    min-height: 200px;
}.uicontact_panel .uiquery_list {
    padding: 30px 20px;
}.uicontact_panel form .uisupport_feedback {
    text-align: center;
    width: 100%;
}
}



@media (max-width: 576px) {footer .uigrant_info {
    padding: 40px 0 30px;
}footer .uinav_guide {
    text-align: center;
    margin: 0 auto;
    align-items: center;
}footer .uigrant_cta {
    text-align: center;
    margin: 0 auto;
}footer .uinav_prime h5 {
    text-align: center;
}footer .uinav_prime h5::after {
    transform: translateX(-50%);
    left: 50%;
}footer .uiheader_wrap {
    align-items: center;
}footer .uiheader_wrap a {
    text-align: center;
}footer .subscribe_holder {
    padding: 20px;
    text-align: center;
}footer .subscribe_holder h5,
    footer .subscribe_holder p {
    text-align: center;
}}



@media (max-width: 991px) {header {
    padding: 1rem 0;
}header .uiheader_lesson {
    padding: 0.8rem;
    gap: 0.8rem;
}header .uinav_master svg {
    width: 140px;
}header .uinav_prime {
    padding: 0.5rem;
}header .uipage_header {
    font-size: calc(17px - 1px);
    padding: 0.4rem 0.8rem;
}
}



@media (max-width: 767px) {.uigratitudeWeb {
    padding: 70px 0 50px;
}.uigratitudeWeb h2 {
    line-height: 1.4;
    margin-bottom: 30px;
    font-size: calc(35px * 0.8);
}.uigratitudeWeb .uiour_journey {
    padding: 35px 25px;
}.uigratitudeWeb span {
    font-size: 17px;
    line-height: 1.6;
}.uigratitudeWeb h2::after {
    width: 60px;
    height: 2px;
}
}



@media (min-width: 768px) and (max-width: 991px) {.uicourse_program_details {
    padding: 70px 0;
}.uicourse_program_details .uithumbnail {
    height: 350px;
}.uicourse_program_details .uieducation_route {
    padding: 30px;
}.uicourse_program_details .uinav_guide {
    padding: 12px;
}.uicourse_program_details .uinav_guide svg {
    width: 70px;
}
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@keyframes borderPulse {
    0%, 100% {
        height: 100%;
    }
    50% {
        height: 70%;
    }
}



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



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



@keyframes growDown {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}



@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}



@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}



@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, -15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

