/* @import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap); */
/* @import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap); */
*,
.header-content a {
    margin: 0
}

* {
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none
}

:root {
    --font: "Outfit", serif;
    --strong-font: 600;
    --light-font: 400;
    --width: 85%;
    --max-width: 1280px
}

body {
    font-family: var(--font)
}

.glider,
body.no_scroll {
    overflow: hidden
}

header {
    border-bottom: 3px solid #f58220;
    background: #fff
}

.header-content {
    width: var(--width);
    max-width: var(--max-width);
    justify-content: space-between;
    padding: 10px 0;
    margin: auto;
    display: flex;
    align-items: center
}

.header-content img,
.top-icon-text img {
    max-width: 180px
}

.banner-section {
    background-image: linear-gradient(to right, hsl(240deg 1.94% 7.79%) 0, hsl(336.92deg 14.77% 1.93% / 0%) 55%), url(../images/banner.webp);
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 0;
    background-size: cover;
    /* aspect-ratio: 4/1; */
    display: grid;
    align-items: center
}

.banner-section .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    width: var(--width);
    margin: auto;
    max-width: var(--max-width)
}

.banner-section .wrapper .child-1 .batch_number {
    background-color: #ffff;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600px;
    width: max-content;
    margin-top: 20px;
    font-size: 1.3rem;
    color: #203e99
}

.btn,
.form-popup .heading,
.section-heading {
    font-weight: var(--strong-font)
}

.banner-section .wrapper .child-1 .hero-text {
    font-size: 4rem;
    color: #fff;
    line-height: 3rem
}

.banner-section .wrapper .child-1 .hero-text span,
.two-columns_align .section-heading {
    font-size: 1.5rem
}

.banner-section .wrapper .child-1 span {
    font-size: 2.5rem;
    color: #fff;
    line-height: 2.4rem
}

.banner-section .child-2 {
    align-items: center;
    display: flex;
    height: 100%
}

.banner-section .child-2 .form-wrapper {
    background: #fff;
    border-radius: 0;
    padding: 20px;
    width: 100%;
    margin-left: auto;
    max-width: 450px;
    position: relative
}

.banner-section .child-2 .form-wrapper .heading {
    font-size: 1.5rem;
    font-weight: var(--strong-font);
    text-transform: uppercase;
    margin-bottom: 20px
}

.form-group {
    margin-bottom: 10px
}

.form-control,
.form-control:focus,
.form-control:focus-visible,
.form-control:visited {
    width: 100%;
    padding: .45rem .55rem;
    border: 1px solid #a1a1a1;
    border-radius: .35rem;
    font-size: .9rem;
    box-shadow: none;
    outline: 0;
    font-family: Outfit, serif
}

.form-control::placeholder {
    color: #000
}

.d-flex,
.grid-alignments-2>div {
    display: flex;
    align-items: start
}

.ml-2 {
    margin-left: .4rem
}

.same-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.banner-section .child-2 .heading {
    font-size: 1.3rem;
    font-weight: var(--light-font);
    margin-bottom: 10px;
    text-align: center
}

.banner-section .child-2 .sub-heading {
    font-size: .9rem;
    font-weight: var(--light-font);
    margin-bottom: 10px;
    text-align: center
}

.form-group label {
    font-size: .83rem
}

.btn {
    padding: .5rem .7rem;
    background: #203e99;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    font-family: Outfit, serif
}

.section-imgs .wrapper,
article section,
section.main-carousel {
    width: var(--width);
    max-width: var(--max-width);
    margin: auto
}

section {
    padding: .5rem 0
}

.section-heading {
    text-align: center;
    font-size: 1.7rem;
    color: #000;
    position: relative;
    padding: 1rem 0;
    margin-bottom: 2rem
}

.custom-popup,
.form-popup {
    position: fixed;
    transition: 450ms ease-in-out;
    left: 50%
}

.section-heading::after {
    content: "";
    width: 30%;
    background: #f16622;
    height: .25rem;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    max-width: 150px
}

.section-description {
    text-align: justify;
    font-size: 1rem;
    font-weight: var(--light-font)
}

.check-box-row input[type=checkbox] {
    margin-top: .3rem;
    cursor: pointer
}

.custom-popup {
    width: 450px;
    top: -150%;
    transform: translate(-50%, -50%);
    z-index: 9999
}

.custom-popup.show {
    top: 50%
}

.custom-popup iframe {
    width: 100%;
    height: 300px
}

.form-popup {
    width: 100%;
    max-width: 450px;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: #fff;
    padding: 20px;
    z-index: 1009;
    border-radius: 0;
    opacity: 0
}

.form-popup.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1
}

.form-popup .heading {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 10px
}

.form-popup .sub-heading {
    text-align: center;
    font-size: 1rem;
    font-weight: var(--light-font);
    margin-bottom: 10px
}

.otp-check-btn,
.section-sub-heading,
.tab-btns .tab-btn,
.testimonial .testimonail-name {
    font-weight: var(--strong-font)
}

.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    cursor: pointer;
    color: #fff;
    z-index: 999
}

.popup-overlay {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 100
}

.stcicky_area {
    background: #203e99;
    padding: 10px 0 15px;
    width: 100%;
    transition: top 550ms;
    top: -300px
}

.stcicky_area.stick {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99
}

.sticky_section {
    display: grid;
    align-items: start;
    width: var(--width);
    max-width: 950px;
    margin: auto;
    grid-template-columns: repeat(4, 1fr)
}

.section-imgs.full-width,
.set-full-width {
    max-width: 100%;
    width: 100%
}

.grid-alignments-2,
.icon_text_grid.grid-2 {
    grid-template-columns: 1fr 1fr;
    display: grid;
    margin-top: 20px
}

.sticky_section>div {
    padding: 10px 20px;
    height: 100%;
    color: #fff;
    font-size: 1rem;
    position: relative
}

.sticky_section>div .label_heading {
    font-weight: var(--strong-font);
    font-size: 1.3rem;
    margin-bottom: 0;
    text-align: center
}

.sticky_section>div .label_sub_heading {
    font-weight: var(--light-font);
    font-size: 1.15rem;
    text-align: center
}

.sticky_section div:first-child::after,
.sticky_section div:nth-child(2)::after,
.sticky_section div:nth-child(3)::after {
    content: "";
    width: 2px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #fff
}

.grid-alignments-2 {
    gap: 30px;
    width: 100%;
    margin-left: 0;
    margin-right: auto
}

.grid-alignments-2>div .icons {
    font-size: 2rem;
    margin-right: 15px;
    line-height: 1rem
}

.section-imgs {
    background: #e8ebf5;
    padding-bottom: 3rem
}

.section-imgs.full-width {
    background-image: linear-gradient(to left, #ff6600bf 0, #09143ecc 65%)
}

.main-testimonial h2,
.orange-btn.btn-size,
.orange-btn.btn-size:hover,
.section-imgs.full-width .section-description,
.section-imgs.full-width .section-heading {
    color: #fff
}

.icon_text_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    align-items: start
}

.icon_text_grid.grid-2 {
    max-width: 600px;
    gap: 20px;
    align-items: start;
    margin-left: auto;
    margin-right: auto
}

.icon_text_grid.grid-1,
.tab-btns {
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto
}

.icon_text_grid.grid-1 {
    max-width: 300px
}

.icon_text_wrapper {
    width: 100%;
    max-width: 250px;
    margin: auto;
    display: grid;
    grid-template-rows: max-content max-content;
    gap: 20px;
    height: 100%
}

.icon_text_wrapper .icon-background-circle {
    height: 130px;
    width: 130px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: auto
}

.circle-color-1 {
    background: #f0aa71 !important
}

.circle-color-2 {
    background: #abb7d9 !important
}

.circle-color-3 {
    background: #bfc1c5 !important
}

.icon_text_wrapper img {
    margin: auto;
    max-width: 70px
}

.overview-tabs .tab-btn,
.text-center,
.work-tabs .tab-btn {
    text-align: center
}

.icon_text_wrapper .icon_text {
    color: #000
}

.tab-btns {
    display: grid;
    align-items: center;
    column-gap: 25px;
    row-gap: 15px;
    width: 100%
}

.charts-grid,
.icons-grid.grid-2 {
    grid-template-columns: 1fr 1fr
}

.tab-btns .tab-btn {
    width: 100%;
    padding: .75rem 1rem;
    background: #dcdcdc;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.1rem
}

.tab-btns .tab-btn.current {
    background: #203e99;
    color: #fff
}

.tab-content-wrapper .tab-content {
    display: none;
    color: #000
}

.tab-content-wrapper .tab-content table {
    color: #000;
    border-color: #000
}

.tab-content-wrapper .tab-content table tr,
.tab-content-wrapper .tab-content table tr td,
.tab-content-wrapper .tab-content table tr th {
    border-color: #000;
    color: #000;
    padding: 7px
}

.accordian-content.active,
.accordian-tab.active .minus-icon,
.tab-content-wrapper .tab-content.current {
    display: block
}

.tab-content ul {
    margin-left: 20px
}

.download-btn,
a.down-btn {
    background: #09143e;
    color: #fff;
    padding: .75rem 1.5rem;
    border-radius: 5px;
    margin: 1.5rem auto 1rem;
    width: max-content;
    display: block;
    font-size: 1.2rem;
    max-width: 350px;
    text-align: center
}

.img-fluid {
    max-width: 100%
}

.logo-wrapper {
    max-width: 1100px;
    margin: auto
}

.charts-grid {
    margin: auto;
    display: grid;
    gap: 30px;
    align-items: center
}

.section-sub-heading {
    font-size: 1.5rem;
    color: #203e99;
    text-align: center;
    margin-bottom: 20px
}

.col-1 #video,
.col-1 img {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%
}

.col-1 #video iframe,
.col-1 img {
    margin-bottom: 0 !important
}

.text-left {
    text-align: left
}

.message_wrapper {
    padding: .7rem .5rem;
    border-radius: 10px;
    margin-bottom: 20px
}

.message_wrapper p {
    color: #fff;
    margin-bottom: 0
}

.message_wrapper.success {
    background: green
}

.message_wrapper.danger {
    background: red
}

.navigation-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 767px;
    width: var(--width);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 0
}

.navigation-buttons a {
    width: 100%;
    text-align: center;
    padding: .75rem .5rem;
    background: #4265cf;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    display: block
}

.navigation-buttons a.active {
    background: #f58220
}

.mobile-right-arrow {
    background: #e7e7e7;
    color: #203e99;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 40px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    position: absolute;
    top: 50%;
    right: -39px;
    transform: translateY(-50%);
    font-size: 35px
}

.navigation-buttons .mobile-right-arrow i {
    transition: 350ms ease-in-out
}

.navigation-buttons.mobile-active .mobile-right-arrow i,
.program-content-tab.active .arrow {
    transform: rotate(180deg)
}

.float-top-arrow {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #f16622;
    border-radius: 50%;
    font-size: 1.5rem;
    position: fixed;
    bottom: 100px;
    right: 50px;
    -webkit-box-shadow: 3px 3px 15px -2px rgb(0 0 0 / 75%);
    -moz-box-shadow: 3px 3px 15px -2px rgb(0 0 0 / 75%);
    box-shadow: 3px 3px 15px -2px rgb(0 0 0 / 75%);
    opacity: 0;
    pointer-events: none;
    transition: 350ms;
    cursor: pointer;
    z-index: 99
}

.mobile-otp-row {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr max-content;
    gap: 20px
}

.mobile-otp-row:last-child {
    margin-top: 10px
}

.icons-grid.grid-1,
.icons-grid.grid-2 {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto
}

.accordian-content,
.accordian-tab .minus-icon,
.accordian-tab.active .plus-icon,
.otp-check-row {
    display: none
}

.otp-response-text {
    padding: 10px;
    text-align: center;
    display: none;
    font-size: .8rem
}

.otp-check-btn {
    background: #203e99;
    color: #fff;
    padding: .35rem;
    text-align: center;
    cursor: pointer;
    width: 110px;
    border-radius: 5px;
    text-transform: uppercase
}

.disabled {
    pointer-events: none;
    opacity: .8
}

.mt-50 {
    margin-top: 50px
}

.tab-content li {
    font-size: 1rem
}

.popup-logo {
    margin: auto;
    display: block;
    max-width: 120px;
    margin-bottom: 10px
}

.form-close-btn {
    font-size: 1.5rem;
    font-weight: 600;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer
}

#faculty,
#testimonials,
.p-relative,
.program-content-tab,
.two-columns_align .col-1-align {
    position: relative
}

.section-link {
    position: absolute;
    margin-top: -7rem;
    padding: 5rem
}

#program-content .tab-btn,
.btn-plr-20 {
    padding-left: 20px;
    padding-right: 20px
}

.two-columns_align {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px
}

.icons-grid,
.testimonial-grid {
    grid-template-columns: repeat(3, 1fr)
}

.two-columns_align .col-1-align::after {
    content: "";
    height: 80%;
    width: 2px;
    background: #203e99;
    position: absolute;
    bottom: 0;
    right: 0
}

.icons-grid {
    margin: auto;
    display: grid;
    gap: 30px
}

.icons-grid.grid-2 {
    display: grid;
    max-width: 600px;
    gap: 30px;
    align-items: start
}

.icons-grid.grid-1 {
    max-width: 300px;
    display: block
}

.icon-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.icon-text .text-for-icon {
    text-align: center;
    max-width: 250px
}

.br-20 {
    border-radius: 20px
}

.testimonial-grid {
    display: grid;
    gap: 70px
}

.testimonial {
    background: #fff;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    position: relative;
    padding: 100px 20px 20px;
    margin-top: 90px
}

.faculty-grid .glider-track .faculty.glider-slide,
.testimonial-grid .glider-track .testimonial {
    margin-left: 20px;
    margin-right: 20px
}

.testimonial .testimonail-name {
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: #000
}

.testimonial .testimonail-designation {
    font-size: .9rem;
    font-weight: var(--light-font);
    margin-bottom: 20px;
    color: #000;
    text-align: center
}

.testimonial .testimonail-body {
    color: #000;
    text-align: center
}

.testimonail-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    margin-bottom: 20px;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #fff
}

.eligibility-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 10px
}

.faculty-grid,
.program-content-tabs {
    grid-template-columns: repeat(3, 1fr)
}

.eligibility-wrapper .tab-content-wrapper {
    border-radius: 10px
}

.eligibility-wrapper .tab-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 10px
}

.eligibility-wrapper .tab-btn {
    width: 220px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 1px 1px #373733;
    height: 60px;
    align-content: center
}

.eligibility-wrapper .tab-btns .tab-btn.current {
    height: 60px;
    background: #f16622;
    box-shadow: 1px 1px #373733;
    color: #fff
}

.box-eli-1,
.box-eli-2,
.box-eli-3 {
    background: #fff;
    padding: 30px 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, .25) 0 25px 50px -12px;
    border: 1px solid #09143e
}

.contaent-main h3 {
    font-weight: 600;
    font-size: 25px;
    color: #000;
    margin-bottom: 10px;
    margin-top: 5px
}

.contaent-main li {
    list-style: none;
    margin-bottom: 5px;
    display: flex;
    gap: 4px
}

.contaent-main img {
    width: 20px;
    filter: brightness(.1)
}

.box-eli-1 img,
.box-eli-2 img,
.box-eli-3 img {
    filter: brightness(.1);
    height: fit-content
}

.contaent-main ul {
    margin-left: 0
}

.program-content-tabs {
    display: grid;
    gap: 20px
}

.program-content-tab .program-tab-title {
    padding: 10px 20px;
    color: #000;
    font-weight: var(--strong-font);
    background: #e7e7e7;
    border-radius: 10px;
    transition: 250ms ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .85rem;
    height: 100%;
    justify-content: center;
    text-align: center
}

.icon-row-btn,
.icon-row-btn div {
    display: flex;
    align-items: center
}

.program-content-tab .arrow {
    transition: 250ms
}

.program-content-tab.active .program-tab-title {
    color: #fff;
    background: #f58220;
    border: 1px solid #000;
    border-bottom: none;
    border-radius: 10px 10px 0 0
}

.program-content-tab .program-tab-content {
    background: #fff;
    padding: 10px 20px;
    position: absolute;
    top: 46px;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 0;
    transition: 250ms ease-in-out;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    font-size: .9rem
}

.faculty-grid .faculty-image,
.faculty-grid .faculty-image img {
    height: 170px;
    width: 170px;
    object-fit: cover;
    object-position: center
}

.program-content-tab.active .program-tab-content {
    height: 145px;
    border: 1px solid #000;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top: none;
    opacity: 1;
    pointer-events: painted;
    overflow: auto;
    z-index: 99
}

.blue-btn {
    background: #09143e
}

.no-cost-emi-sec {
    background-image: linear-gradient(to left, #ff6600bf 0, #09143ecc 65%);
    padding: 30px;
    border-radius: 0;
    color: #fff;
    position: relative;
    z-index: 2
}

.inside-sec-heading {
    font-size: 1.5rem;
    font-weight: var(--strong-font);
    margin-bottom: 20px
}

.full-payment-sec .description,
.no-cost-emi-sec .description {
    font-size: 1rem;
    margin-bottom: 30px
}

.faculty-name,
.top-strip-wrapper .top-icon-text .text-area .heading-text,
.white-btn.btn-size,
.white-btn.btn-size:hover {
    font-size: 1.1rem;
    font-weight: var(--strong-font)
}

.icon-row-btn {
    justify-content: space-between
}

.icon-row-btn div {
    color: #000;
    font-size: 1rem;
    font-weight: var(--strong-font)
}

.icon-row-btn div img,
.top-strip-wrapper .top-icon-text:not(:last-child) {
    margin-right: 20px
}

.white-btn.btn-size,
.white-btn.btn-size:hover {
    color: #203e99;
    text-align: center
}

.full-payment-sec {
    padding: 30px;
    border: 1px solid #000;
    border-radius: 0;
    position: relative;
    margin-top: 0;
    z-index: 1
}

.bottom-strip,
.response-message-pop,
.top-strip {
    position: fixed;
    z-index: 100
}

.orange-btn {
    background: #09143e !important
}

.faculty-grid {
    display: grid;
    gap: 40px
}

.faculty-grid .faculty {
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 3px 6.58px .42px rgba(0, 0, 0, .32);
    background: #09143ecc;
    color: #fff
}

.faculty-grid .faculty-image {
    overflow: hidden;
    border-radius: 50%;
    margin: auto auto 20px;
    border: 5px solid #fff
}

.faculty-name {
    text-align: center;
    margin-bottom: 10px
}

.faculty-designation {
    font-size: .9rem;
    text-align: center
}

.bottom-strip {
    background: #f16622;
    padding: 5px 0;
    bottom: -300px;
    width: 100%;
    transition: bottom .4s
}

.bottom-strp-text {
    width: max-content;
    margin: auto;
    display: flex;
    align-items: center
}

.bottom-strp-text span {
    color: #fff;
    margin-right: 20px
}

.white-btn {
    background-color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    color: #000;
    font-weight: var(--strong-font)
}

.bottom-strip.show {
    bottom: 0
}

.top-strip {
    background: #fff;
    padding: 5px 10px;
    left: 0;
    width: 100%;
    top: -300px;
    transition: top .4s;
    border-bottom: 3px solid #f16622
}

.top-strip.show {
    top: 0
}

.top-strip-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    width: var(--width);
    margin: auto
}

.top-strip-wrapper .top-icon-text {
    display: flex;
    align-items: center
}

.top-strip-wrapper .top-icon-text .text-area {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-left: 20px;
    color: #fff
}

.top-strip-wrapper .top-icon-text .text-area .small-text {
    font-size: 1rem;
    font-weight: var(--light-font)
}

.top-icon-text .white-btn {
    color: #fff;
    border-radius: 5px;
    background: #09143e
}

.overview-tabs .tab-btns,
.work-tabs .tab-btns {
    display: flex
}

.work-tab-conten {
    margin-top: 30px
}

.glider-next,
.glider-next:hover,
.glider-prev,
.glider-prev:hover {
    top: 60%;
    transform: translateY(-50%);
    opacity: 1;
    color: #fff !important
}

.glider-next.disabled,
.glider-prev.disabled {
    opacity: .2
}

#faculty .glider-track {
    margin-top: 20px;
    margin-bottom: 20px
}

.response-message-pop {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 700px;
    width: 100%;
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 1fr max-content;
    gap: 15px;
    align-items: center;
    background: rgb(245, 130, 32, .9);
    color: #fff;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: 350ms ease-in-out;
    font-weight: var(--strong-font)
}

.response-message-pop.show {
    opacity: 1;
    pointer-events: painted
}

.response-pop-close {
    font-size: 1.2rem;
    font-weight: var(--strong-font);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.mb-30 {
    margin-bottom: 30px
}

.charts-content {
    width: 100%
}

.charts-content img {
    max-width: 100%;
    width: auto;
    margin: auto;
    display: block
}

.iti {
    width: 100% !important
}

.loader-wrapper,
.loader-wrapper-otp {
    background-color: rgba(255, 255, 255, .6);
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    align-content: center;
    justify-content: center;
    display: none
}

.loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid #203e99;
    border-radius: 50%;
    border-top-color: #fff;
    animation: 1s ease-in-out infinite spin;
    -webkit-animation: 1s ease-in-out infinite spin
}

.container-fluid,
.main-testimonial {
    width: var(--width);
    max-width: var(--max-width)
}

.program-higlights,
.semester-higlights {
    box-shadow: rgba(0, 0, 0, .25) 0 25px 50px -12px;
    border-bottom: 8px solid #f16622
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg)
    }
}

.accordian-tab {
    background: #e7e7e7;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.content-center {
    display: flex;
    align-items: center;
    justify-content: center
}

#program-content .tab-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: 15px
}

#program-content .tab-btn {
    text-align: center;
    position: relative
}

#program-content .tab-btn::after {
    font-size: 1em;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    content: "\f107";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

#program-content .tab-btn.current::after {
    content: "\f106"
}

.topul {
    font-size: 1.5rem;
    line-height: 2.8rem;
    color: #fff;
    margin-top: 15px;
    margin-left: 0;
    list-style-type: none
}

ul.topul img {
    width: 24px;
    position: relative;
    bottom: 10px
}

.container-fluid {
    margin: auto;
    padding-bottom: 0
}

.slick-slide img {
    display: block;
    width: 220px;
    object-fit: contain;
    height: 90px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid #9c9c9c;
    padding: 4px
}

.ranking-heading {
    margin-bottom: 20px
}

.all-program-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px
}

.program-higlights {
    background: #fff;
    border-radius: 8px
}

.text-container,
section#testimonials {
    background-image: linear-gradient(to left, #ff6600bf 0, #09143ecc 65%)
}

.program-content-container h3,
.program-content-container-2 h3,
.program-higlights h3 {
    background: #f16622;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 22px;
    font-weight: 600;
    border-radius: 8px 8px 0 0
}

.pointers {
    padding: 0 20px 40px
}

.pointers li {
    list-style: none;
    display: flex;
    gap: 5px;
    margin-top: 15px
}

.pointers img {
    width: 24px;
    height: fit-content;
    border: 1px solid #f16622;
    padding: 3px
}

section#testimonials {
    max-width: 100%;
    width: 100%
}

.main-testimonial {
    margin: auto;
    position: relative;
    padding-bottom: 50px
}

.certification-main-container {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center
}

.text-container {
    height: 100%;
    padding: 17% 30px;
    color: #fff
}

.img-container img {
    height: 100%;
    border: 5px solid #3b4365
}

.img-container {
    height: 100%
}

.program-content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 25px
}

.program-content-container-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px
}

.semester-higlights {
    background: #fff;
    border-radius: 8px;
    position: relative
}

img.sem-cal {
    position: absolute;
    transform: translateX(-50%);
    background: #f16622;
    padding: 5px;
    border-radius: 50%;
    top: 10px;
    border: 3px solid #fff;
    width: 51px
}

.semester-higlights .pointers {
    height: 270px;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none
}

section#program-content h4 {
    font-size: 22px;
    margin-bottom: 30px;
    background: #3a4365;
    width: fit-content;
    padding: 6px 30px;
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    box-shadow: 3px 2px 3px 0 #a3a3a3
}

a.fee-main-btn {
    background: #09143e;
    color: #fff;
    padding: .6rem 1.5rem;
    border-radius: 5px;
    margin: 1.5rem auto 1rem;
    width: max-content;
    display: block;
    font-size: 1.2rem;
    max-width: 350px;
    text-align: center
}