@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none
}

:root {
    --font: 'Poppins', sans-serif;
    --strong-font: 600;
    --light-font: 400;
    --width: 85%;
    --max-width: 1280px
}

body {
    font-family: var(--font)
}

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
}

.header-content img {
    /* margin-left: auto;
    display: block */
    max-width: 300px;
}

.banner-section {
    /* background-image: url(../images/Web_banner_11zon.webp); */
    background-image: url(../images/iimtrchybg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px 0;
    background-size: cover
}

.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;
    color: #000;
    font-weight: 600px;
    width: max-content;
    margin-top: 20px;
    font-size: 1.3rem;
    color: #203e99;
}

.banner-section .wrapper .child-1 .hero-text {
    font-size: 2rem;
    color: #fff;
    line-height: 2.5rem;
}

.banner-section .wrapper .child-1 .hero-text span {
    font-size: 1.5rem;
}


.banner-section .child-2 {
    align-items: center;
    display: flex;
    height: 100%
}

.banner-section .child-2 .form-wrapper {
    background: #fff;
    border-radius: 20px;
    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: 0.9rem;
    box-shadow: none;
    outline: 0
}

.form-control::placeholder {
    color: #000;
}

.d-flex {
    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: 0.83rem;
}

.btn {
    padding: .5rem .7rem;
    background: #203e99;
    color: #fff;
    border: none;
    border-radius: 6px;
    /* text-transform: uppercase; */
    font-size: 1rem;
    font-weight: var(--strong-font);
    cursor: pointer
}

article section {
    width: var(--width);
    max-width: var(--max-width);
    margin: auto
}

section {
    padding: 0.5rem 0
}

.section-heading {
    text-align: center;
    font-size: 1.7rem;
    font-weight: var(--strong-font);
    color: #203e99;
    position: relative;
    padding: 1rem 0;
    margin-bottom: 2rem
}

.section-heading::after {
    content: '';
    width: 30%;
    background: #f58220;
    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 {
    align-items: start
} */


.check-box-row input[type=checkbox] {
    margin-top: .3rem;
    cursor: pointer
}

.custom-popup {
    position: fixed;
    width: 450px;
    top: -150%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 450ms ease-in-out;
    z-index: 9999;
}

.custom-popup.show {
    top: 50%
}

.custom-popup iframe {
    width: 100%;
    height: 300px
}

.form-popup {
    position: fixed;
    width: 100%;
    max-width: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: all 450ms ease-in-out;
    background: #fff;
    padding: 20px;
    z-index: 1009;
    border-radius: 20px;
    opacity: 0;
}

.form-popup.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.form-popup .heading {
    text-align: center;
    font-size: 1.3rem;
    font-weight: var(--strong-font);
    margin-bottom: 10px;
}

.form-popup .sub-heading {
    text-align: center;
    font-size: 1rem;
    font-weight: var(--light-font);
    margin-bottom: 10px;
}

.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 0;
    width: 100%;
    transition: top 550ms ease;
    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
}

.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::before {
    content: '';
    width: 1px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #fff;
} */

.sticky_section div:nth-child(1)::after,
.sticky_section div:nth-child(2)::after {
    content: '';
    width: 2px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #fff;
}


.grid-alignments-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
    width: 100%;
    margin-left: 0;
    margin-right: auto
}

.grid-alignments-2>div {
    display: flex;
    align-items: start
}

.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: #203e99;
    width: 100%;
    max-width: 100%
}

.set-full-width {
    width: 100%;
    max-width: 100%;
}

.section-imgs .wrapper {
    width: var(--width);
    max-width: var(--max-width);
    margin: auto
}

.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 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
    gap: 20px;
    margin-top: 20px;
    align-items: start;
    margin-left: auto;
    margin-right: auto;
}

.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;
    /* height: 100%; */
}

.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
}

.text-center {
    text-align: center
}

.icon_text_wrapper .icon_text {
    color: #000;
}

.tab-btns {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr;
    /* grid-template-rows: repeat(4, 50px); */
    /* margin-bottom: 20px; */
    column-gap: 25px;
    row-gap: 15px;
    width: 100%;
    margin-left: auto;
    margin-right: auto
}

.tab-btns .tab-btn {
    width: 100%;
    padding: .75rem 1rem;
    background: #dcdcdc;
    color: #000;
    cursor: pointer;
    border-radius: 5px;
    font-weight: var(--strong-font);
    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 th,
.tab-content-wrapper .tab-content table tr td {
    border-color: #000;
    color: #000;
    padding: 7px;
}

.tab-content-wrapper .tab-content.current {
    display: block
}

.tab-content ul {
    margin-left: 20px;
}

.download-btn {
    background: #f58220;
    color: #fff;
    padding: .75rem 1.5rem;
    border-radius: 5px;
    margin: 1.5rem auto 1rem auto;
    width: max-content;
    display: block;
    font-size: 1.2rem;
    max-width: 350px;
    /* width: 100%; */
    text-align: center;
    border-radius: 30px;
}

.img-fluid {
    max-width: 100%
}

.logo-wrapper {
    max-width: 1100px;
    margin: auto
}

.charts-grid {
    margin-top: 30px;
    /* max-width: 1100px; */
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center
}

.section-sub-heading {
    font-size: 1.5rem;
    color: #203e99;
    font-weight: var(--strong-font);
    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;
    /* padding-top: 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: all 350ms ease-in-out;
}

.navigation-buttons.mobile-active .mobile-right-arrow i {
    transform: rotate(180deg);
}

.float-top-arrow {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #f58220;
    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: all 350ms ease;
    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;
}

.otp-check-row {
    display: none;
}

.otp-response-text {
    padding: 10px;
    text-align: center;
    /* margin-top: 10px;
    margin-bottom: 10px; */
    display: none;
    font-size: 0.8rem;
}

.otp-check-btn {
    background: #203e99;
    color: #fff;
    padding: 0.35rem;
    text-align: center;
    cursor: pointer;
    width: 110px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: var(--strong-font);
}

.disabled {
    pointer-events: none;
    opacity: 0.8;
}

.mt-50 {
    margin-top: 50px;
}

.tab-content li {
    font-size: 1rem;
}

.popup-logo {
    margin: auto;
    display: block;
    margin-bottom: 10px;
}

.form-close-btn {
    font-size: 1.5rem;
    font-weight: 600;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.p-relative {
    position: relative;
}

.section-link {
    position: absolute;
    margin-top: -7rem;
    padding: 5rem;
}

.two-columns_align {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
}

.two-columns_align .section-heading {
    font-size: 1.5rem;
}

.two-columns_align .col-1-align {
    position: relative;
}

.two-columns_align .col-1-align::after {
    content: '';
    height: 80%;
    width: 2px;
    background: #203e99;
    position: absolute;
    bottom: 0;
    right: 0;
}

.icons-grid {
    /* max-width: 600px; */
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: 1fr 1fr; */
    gap: 30px;
}

.icons-grid.grid-2 {
    grid-template-columns: 1fr 1fr;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
    gap: 30px;
    margin-top: 30px;
    align-items: start;
    margin-left: auto;
    margin-right: auto;
}

.icons-grid.grid-1 {
    max-width: 300px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    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;
    /* font-size: 0.8rem; */
}

.br-20 {
    border-radius: 20px;
}

.btn-plr-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    max-width: 1200px;
    margin: auto;
}

.testimonial {
    background: #203e99;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    position: relative;
    padding: 100px 20px 20px 20px;
    margin-top: 90px;
    /* margin-left: 20px;
    margin-right: 20px; */
}

.testimonial.glider-slide {
    align-content: start;
}

.testimonial-grid .glider-track .testimonial {
    margin-left: 20px;
    margin-right: 20px;
}

.testimonial .testimonail-name {
    text-align: center;
    font-weight: var(--strong-font);
    margin-bottom: 10px;
    font-size: 1.15rem;
    color: #fff;
}

.testimonial .testimonail-designation {
    font-size: 0.9rem;
    font-weight: var(--light-font);
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
}

.testimonial .testimonail-body {
    color: #fff;
    text-align: center;
}

.testimonail-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    margin-bottom: 20px;
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
}

.eligibility-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 0;
    border-radius: 10px;
    /* border: 1px solid #000; */
}

.eligibility-wrapper .tab-content-wrapper {
    /* border: 1px solid #000; */
    border-radius: 10px;
    /* padding: 20px; */
}

.program-content-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.program-content-tab {
    position: relative;
}

.program-content-tab .program-tab-title {
    padding: 10px 20px;
    color: #000;
    font-weight: var(--strong-font);
    background: #e7e7e7;
    text-align: center;
    border-radius: 10px;
    /* cursor: pointer; */
    transition: all 250ms ease-in-out;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    height: 100%;
    justify-content: center;
    text-align: center;
}

.program-content-tab .arrow {
    transition: all 250ms ease;
}

.program-content-tab.active .arrow {
    transform: rotate(180deg);
}

.program-content-tab.active .program-tab-title {
    color: #fff;
    background: #f58220;
    border: 1px solid #000;
    border-bottom: none;
    border-radius: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.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: all 250ms ease-in-out;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    /* text-align: justify; */
    font-size: 0.9rem;
}

.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: #203e99;
    /* border-radius: 20px; */
}

.no-cost-emi-sec {
    background: #203e99;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.inside-sec-heading {
    font-size: 1.5rem;
    font-weight: var(--strong-font);
    margin-bottom: 20px;
}

.no-cost-emi-sec .description {
    font-size: 1rem;
    margin-bottom: 30px;
}

.icon-row-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon-row-btn div {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 1rem;
    font-weight: var(--strong-font);
}

.icon-row-btn div img {
    margin-right: 20px;
    /* max-width: 130px; */
    /* max-height: 70px; */
    /* width: 100%; */
}

/* 
.white-btn {
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
} */

.white-btn.btn-size,
.white-btn.btn-size:hover {
    color: #203e99;
    font-size: 1.1rem;
    font-weight: var(--strong-font);
    text-align: center;
}

.full-payment-sec {
    padding: 50px 30px 30px 30px;
    border: 2px solid #000;
    border-radius: 20px;
    position: relative;
    margin-top: -40px;
    z-index: 1;
}

.full-payment-sec .description {
    font-size: 1rem;
    margin-bottom: 30px;
}

.orange-btn {
    background: #f58220 !important;
}

.orange-btn.btn-size,
.orange-btn.btn-size:hover {
    color: #fff;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px
}

.faculty-grid .faculty {
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0px 3px 6.58px 0.42px rgba(0, 0, 0, 0.32);
    /* margin-left: 20px;
    margin-right: 20px; */
}

.faculty-grid .glider-track .faculty.glider-slide {
    margin-left: 20px;
    margin-right: 20px;
}

.faculty-grid .faculty-image {
    height: 170px;
    width: 170px;
    overflow: hidden;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    margin: auto;
    margin-bottom: 20px;
}

.faculty-name {
    text-align: center;
    font-size: 1.1rem;
    font-weight: var(--strong-font);
    margin-bottom: 10px;
}

.faculty-designation {
    font-size: 0.9rem;
    text-align: center;
}

.bottom-strip {
    background: #f58220;
    padding: 5px 0;
    position: fixed;
    bottom: -300px;
    width: 100%;
    z-index: 100;
    transition: bottom 400ms ease;
}

.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: 10px;
    color: #f58220;
    font-weight: var(--strong-font);
}

.bottom-strip.show {
    bottom: 0;
}

.top-strip {
    background: #203e99;
    padding: 10px;
    position: fixed;
    left: 0;
    width: 100%;
    top: -300px;
    z-index: 100;
    transition: top 400ms ease;
}

.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:not(:last-child) {
    margin-right: 20px;
}

.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 .heading-text {
    font-size: 1.1rem;
    font-weight: var(--strong-font);
}

.top-strip-wrapper .top-icon-text .text-area .small-text {
    font-size: 1rem;
    font-weight: var(--light-font);
}

.top-icon-text .white-btn {
    color: #203e99;
    border-radius: 10px;
}

.work-tabs .tab-btns,
.overview-tabs .tab-btns {
    display: flex;
}

.work-tabs .tab-btn,
.overview-tabs .tab-btn {
    text-align: center;
}

.work-tab-conten {
    margin-top: 30px;
}

#testimonials,
#faculty {
    position: relative;
}

.glider {
    overflow: hidden;
}

.glider-next,
.glider-prev,
.glider-next:hover,
.glider-prev:hover {
    top: 60%;
    transform: translateY(-50%);
    opacity: 1;
    color: #000 !important;
}

.glider-next.disabled,
.glider-prev.disabled {
    opacity: 0.2;
}

#faculty .glider-track {
    margin-top: 20px;
    margin-bottom: 20px;
}

.response-message-pop {
    position: fixed;
    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, 0.9);
    color: #fff;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 350ms ease-in-out;
    z-index: 100;
    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, 0.6);
    /* color: ; */
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 999;
    display: grid;
    align-content: center;
    justify-content: center;
    display: none;
}



.accordian-tab {
    background: #e7e7e7;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .accordian-content {
    display: none;
  }
  
  .accordian-content.active {
    display: block;
  }
  
  .accordian-tab .minus-icon {
    display: none;
  }
  
  .accordian-tab.active .plus-icon {
    display: none;
  }
  
  .accordian-tab.active .minus-icon {
    display: block;
  }



.loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid #203e99;
    border-top-color: rgb(32, 62, 153);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

.glider-slide img {
    /* height: 100%; */
    object-fit: cover;
    object-position: center;
    height: 170px;
    width: 170px
}

