@font-face {
    font-family: Hind Siliguri;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/hind-siliguri/hind_siliguri_regular.woff) format("woff")
}

@font-face {
    font-family: Hind Siliguri;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/hind-siliguri/hind_siliguri_medium.woff) format("woff")
}

@font-face {
    font-family: Hind Siliguri;
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/hind-siliguri/hind_siliguri_semi_bold.woff) format("woff")
}

@font-face {
    font-family: Hind Siliguri;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/hind-siliguri/hind_siliguri_bold.woff) format("woff")
}

*,
:after,
:before {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
    --bs-primary: #103466;
    --bs-secondary: #0cb766;
    --bs-light: #F1F5F9;
    --bs-dark: #101828;
    --bs-text: #787878;
    --bs-border: #E9E9E9;
}

body {
    margin: 0px;
    font-family: "Hind Siliguri", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-text);
    background-color: var(--bs-light);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 500;
    color: var(--bs-dark);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

a:hover,
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: inherit;
    box-shadow: none;
}

.py-5px {
    padding-top: 5px;
    padding-bottom: 5px;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.bg-dark {
    background-color: var(--bs-dark) !important;
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.form-select:focus,
.form-control:focus,
.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

.scrollTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 350;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 10px 10px 20px -10px rgb(155 32 144 / 60%);
}

.scrollTop:hover {
    color: var(--bs-white);
    background-color: rgba(0, 0, 0, 0.5);
}

.scrollTop.show {
    opacity: 1;
    transform: none;
    pointer-events: visible;
}

.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-normal {
    font-size: 16px;
}

.text-lg {
    font-size: 18px;
}

.text-xl {
    font-size: 26px;
}

/*** ========== Animated Checkbox css ========== ***/
.text-success-500 {
    color: #14b8a6;
}

.animated-checkbox {
    border-radius: 50%;
    height: 32px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.animated-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    cursor: pointer;
}

.animated-checkbox label::before {
    content: '';
    border: 1px solid #d4d4d5;
    border-radius: 3px;
    height: 18px;
    left: 0;
    opacity: 1;
    /* position: absolute; */
    top: 3px;
    transition: all .2s;
    width: 18px;
    z-index: 0;
    pointer-events: none;
}

.animated-checkbox label::after {
    content: '\f00c';
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 75%;
    left: 4px;
    color: var(--bs-white);
    opacity: 0;
}

.animated-checkbox input:checked~label::before {
    background-color: #2dde98;
    border-color: #2dde98;
}

.animated-checkbox input:checked~label::after {
    opacity: 1;
}

.animated-checkbox input {
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    display: none;
}

.animated-checkbox label svg {
    border-radius: 50%;
    display: block;
    height: 22px;
    width: 22px;
    stroke-width: 2;
    color: currentColor;
    stroke: currentColor;
    stroke-miterlimit: 10;
    box-shadow: inset 0 0 0 currentColor;
    margin: 0 auto;
    cursor: pointer;
    margin-top: -4px;
}

.animated-checkbox label svg circle {
    height: 32px;
    width: 32px;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: currentColor;
    fill: none;
}

.animated-checkbox label svg circle {
    animation: reverseCircle .6s cubic-bezier(.65, 0, .45, 1) .2s both;
}

@keyframes reverseCircle {
    0% {
        stroke-dashoffset: 0
    }

    to {
        stroke-dashoffset: 166
    }
}

.animated-checkbox label svg path {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: currentColor;
}

.animated-checkbox label svg path {
    animation: reverseCheck .3s cubic-bezier(.65, 0, .45, 1) .1s both;
}

@keyframes reverseCheck {
    0% {
        stroke-dashoffset: 0
    }

    to {
        stroke-dashoffset: 48
    }
}

.animated-checkbox input:checked~label svg circle {
    animation: strokeanim .6s cubic-bezier(.65, 0, .45, 1) both;
}

.animated-checkbox input:checked~label svg path {
    animation: strokeanim .3s cubic-bezier(.65, 0, .45, 1) .8s both;
}

@keyframes strokeanim {
    to {
        stroke-dashoffset: 0
    }
}

/*** ========== Animated Checkbox css ========== ***/

/*** ========== Header css ========== ***/
.header.sticky {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    animation: 200ms ease-in-out 0s 1 normal none running fadeInDown;
    z-index: 997;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0px, -100%, 0px);
    }

    100% {
        opacity: 1;
        transform: translateZ(0px);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0px, -100%, 0px);
    }

    100% {
        opacity: 1;
        transform: translateZ(0px);
    }
}

.promo-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.promo-show {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: var(--bs-primary);
    color: var(--bs-white) !important;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 3px 3px;
}

.show-wrapper {
    position: relative;
    border-bottom: 3px solid var(--bs-primary);
}

.header {
    background-color: var(--bs-white);
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
}

@keyframes ping {

    75%,
    to {
        transform: scale(2);
        opacity: 0
    }
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}

.notification-trigger {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #e0e6ed66;
    border-radius: 50%;
}

.notification-trigger:hover {
    background-color: #e0e6ede6;
    color: var(--bs-secondary);
}

.ping {
    position: absolute;
    right: -4px;
    top: -4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.ping>span:first-child {
    width: 13px;
    height: 13px;
    background-color: #00ab5580;
    display: inline-flex;
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 6px;
}

.ping>span:last-child {
    width: 7px;
    height: 7px;
    display: inline-flex;
    background-color: rgb(0 171 85/1);
    border-radius: 50%;
}

.dropdown-menu {
    min-width: 240px;
}

.dropdown-menu-md {
    min-width: 350px;
}

.dropdown-menu {
    border: 1px solid #e5e7eb;
    padding: 0;
}

.border-top {
    border-top: 1px solid #e5e7eb !important;
}

.btn-primary,
.btn-primary:hover {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    font-weight: 400;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-primary,
.btn-primary:hover {
    box-shadow: 10px 10px 20px -10px rgb(16 52 102 / 10%);
}

.header-profile img {
    width: 45px;
    height: 45px;
    border-radius: 0.5rem;
}

.location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    background-color: rgb(155 32 144 / 20%);
    color: var(--bs-white);
    color: var(--bs-secondary);
}

/*** ========== Header css ========== ***/

/*** ========== Hero Section css ========== ***/
.hero-card {
    position: relative;
    padding: 20px;
    border-radius: 16px;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background: #f3f5f9;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .08);
    border: 1px solid #98a2b3;
}

.hero-description {
    font-size: 14px;
}

.hero-banner img {
    border-radius: 16px;
    max-height: 360px;
    width: 100%;
}

.form-select,
.form-control {
    padding: 13px;
    border-radius: 5px;
    border: 1px solid #cccdd3;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #636b6a;
}

.form-select:focus,
.form-control:focus {
    border-color: #ccc;
    box-shadow: inset 0 0 10px rgb(155 32 144 / 5%);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--bs-secondary);
}

.select2-container .select2-selection--single {
    height: auto;
    min-height: 44px;
    border-color: #cccdd3;
    line-height: 44px;
    border-radius: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    width: 30px;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-dropdown {
    border: 1px solid #cccdd3;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 4px;
}

.rounded-3 {
    border-radius: 5px !important;
}

/*** ========== Hero Section css ========== ***/

/*** ========== Section css ========== ***/
.category-section {
    width: 100%;
    padding-top: 48px;
    padding-bottom: 24px;
    background: #1d2939;
    position: relative;
    background-image: url(../images/icons/bg-icons.webp);
    background-position-x: center;
    background-size: contain;
    background-repeat: no-repeat;
    overflow: hidden;
}

.header-style {
    padding: 16px;
    border-radius: 40px 40px 0 0;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, .1), hsla(0, 0%, 100%, 0) 114.21%);
}

.Categories_card {
    display: flex;
    padding: 12px 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex: 1 0;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all;
    transition-duration: .4s;
    height: 100%;
    z-index: 5 !important;
}

.cat-item:nth-child(8n+1) .Categories_card {
    background: #e9efff;
}

.cat-item:nth-child(8n+2) .Categories_card {
    background: #f9f9fa;
}

.cat-item:nth-child(8n+3) .Categories_card {
    background: var(--bs-white);
}

.cat-item:nth-child(8n+4) .Categories_card {
    background: #e9efff;
}

.cat-item:nth-child(8n+5) .Categories_card {
    background: var(--bs-white);
}

.cat-item:nth-child(8n+6) .Categories_card {
    background: #fef6f6;
}

.cat-item:nth-child(8n+7) .Categories_card {
    background: #f9f9fa;
}

.cat-item:nth-child(8n) .Categories_card {
    background: #f6fef9;
}

.Categories_card .btn {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    background-color: rgb(16 24 40/1);
    color: var(--bs-white);
}

.fw-semibold {
    font-weight: 600 !important;
}

.article-badges {
    display: flex;
    gap: 4px;
    padding: 6px;
    background-color: rgb(16 52 102 / 8%);
}

.badge {
    background-color: rgb(16 52 102 / 15%);
    color: var(--bs-dark);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
}

.badge-icon {
    height: 14px;
}

.badge-text {
    display: flex;
    padding-top: 2px;
    font-weight: 500;
}

.article-title {
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: calc(2*1.5rem);
    min-height: calc(2*1.5rem);
    line-height: 1.5rem;
    margin-bottom: 12px;
}

.article-card {
    border: 1px solid #dad8d4;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bs-white);
    border-color: rgb(16 52 102 / 50%);
}

.article-image {
    position: relative;
    z-index: 1;
}

.article-image::before {
    content: '';
    display: block;
    padding-top: 60%;
}

.article-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rounded-2xl {
    border-radius: 1rem;
}

.posts-wrapper {
    border: 1px solid rgb(222 226 231/1) !important;
    background-color: rgb(249 249 250/1) !important;
}

.search-form {
    background-color: rgb(233 233 233);
    border: 1px solid rgb(222 226 231/1) !important;
    padding: 10px;
    border-radius: .375rem;
    background-color: rgb(234 236 240/1);
}

.form-wrapper {
    display: flex;
    margin: 0 -5px;
    flex-wrap: wrap;
}

.search-input {
    flex: 0 0 auto;
    width: calc(33.33% - 50px);
    padding: 0 5px;
}

.devide-two .search-input {
    width: calc(100% - 150px);
}

.search-btn {
    flex-shrink: 0;
    width: 150px;
    padding: 0 5px;
}

.search-btn button {
    height: 100%;
    width: 100%;
    border-radius: 5px;
}

.select2-container {
    width: 100% !important;
}

.sm-input .form-select,
.sm-input .form-control {
    padding: 10px;
    border-radius: 4px;
    height: 44px;
    font-size: 15px;
}

.sm-input .select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 0;
    font-size: 14px;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    padding-left: 6px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #cccdd3;
}

.search-input .select2-container .select2-selection--single {
    min-height: 44px;
    line-height: 44px;
    border-radius: 5px;
}

.sm-input .select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
    font-family: inherit;
    height: 23px;
}

.sm-input .select2-container--default .select2-selection--multiple {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding-bottom: 0;
}

.search-input .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
}

.search-input .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    width: 40px;
}

.btn-group-sm>.btn,
.btn-sm {
    padding: .325rem .5rem;
}

.bg-white .institute-card {
    border-color: rgb(16 52 102 / 50%);
    background-color: rgb(243 244 247);
}

.border-bottom-dashed {
    border-bottom: 1px dashed #dbdfe9;
}

.institute-card__title {
    margin-bottom: 20px;
    padding-right: 20px;
}

.intitute__features {
    flex-grow: 1;
}

.intitute__features ul li {
    margin-bottom: 3px;
    padding-bottom: 3px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #333;
}

.intitute__features ul li:not(:last-child) {
    border-bottom: 1px dashed #dbdfe9;
}

.institute-card__middle {
    display: flex;
    gap: 20px;
    align-items: start;
}

.institute__logo {
    flex-shrink: 0;
    background-color: var(--bs-white);
    border: 1px solid #dad8d4;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 4px;
}

.institute-card__footer {
    padding: 10px;
    margin-top: 0;
    padding-top: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.institute-card__link {
    display: block;
    width: 100%;
    background-color: rgb(240 136 49 / 10%);
    color: var(--bs-secondary);
    padding: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid rgb(240 136 49 / 30%);
    line-height: 1.5;
    padding-top: 8px;
}

.institute-card__link:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
}

.top-institutes .institute-card__link {
    background-color: rgb(16 52 102 / 30%);
    color: var(--bs-primary);
    border-color: rgb(16 52 102 / 50%);
}

.top-institutes .institute-card__link:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.featured-icon {
    position: absolute;
    right: 0;
    top: 0;
    color: #f8b940;
}

.footer {
    background-color: #2C3851;
    padding: 16px 0;
    color: var(--bs-white);
    font-size: 14px;
}

.division-card {
    background-color: var(--bs-white);
    border: 1px solid #dad8d4;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    box-shadow: 0 4px 8px -8px rgba(8, 31, 77, .2);
    border-color: #ccc;
}

.division-card__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background-color: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background-color: rgb(16 52 102 / 10%);
    box-shadow: 0px 1px 2px 0px rgb(16 52 102 / 20%) !important;
}

.division-card__title {
    color: #101828;
    font-weight: 500;
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.division-card:hover .division-card__title {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.division-card__items {
    font-size: 12px;
    color: #333;
}

.htab__sec {
    display: flex;
    overflow-x: auto;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.htab__sec .htab__prev,
.htab__sec .htab__next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 12px;
    line-height: 40px;
    box-sizing: border-box;
    padding: 14px;
    border-radius: 50%;
    background: #F4F4F4;
    flex-shrink: 0;
}

.slidergrp {
    display: flex;
    width: 100%;
    margin: 0 16px !important;
    overflow-x: hidden;
    overflow: auto;
}

.htab__item {
    padding: 10px 20px;
    color: #595959;
    background: #F4F4F4;
    border: 1px solid #DDD;
    color: #595959;
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    white-space: nowrap;
}

.htab__item:first-child {
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
}

.htab__item:last-child {
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important;
}

.htab__item.active {
    background: rgb(118 109 118 / 30%);
    color: var(--bs-dark);
    font-size: 14px;
}

.job-card {
    padding: 20px;
    border-radius: 8px;
    background-color: rgb(243 244 247);
    border: 1px solid rgb(16 52 102 / 50%);
    position: relative;
    padding-bottom: 50px;
    height: 100%;
}

.job-card.featured {
    background-color: rgb(155 32 144 / 5%);
    border-color: rgb(155 32 144 / 50%);
}

.job-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    width: calc(100% + 16px);
    margin: -8px;
}

.job-content>* {
    padding: 8px;
}

.author_image img {
    object-fit: contain;
    background-color: var(--bs-white);
    border: 2px solid rgb(219, 222, 221);
    border-radius: 6px;
}

.job-title {
    font-weight: 600;
    color: var(--bs-dark);
}

.jobs-company {
    font-size: 14px;
    font-weight: 500;
}

.jobs__features {
    width: 100%;
}

.jobs__features ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 5px;
}

.jobs-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgb(16 52 102 / 50%);
    margin-top: 15px;
    font-size: 14px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.jobs-footer a {
    display: inline-flex;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
}

.jobs-footer .deaddate {
    flex-grow: 1;
    border-right: 1px solid rgb(16 52 102 / 50%);
    padding: 10px;
}

.job-card.featured .jobs-footer {
    border-color: rgb(155 32 144 / 60%);
}

.job-card.featured .jobs-footer .deaddate {
    border-color: rgb(155 32 144 / 60%);
}

.job-card.featured .jobs-footer a {
    color: var(--bs-secondary);
}

.card-header {
    background-color: var(--bs-secondary);
}

strong {
    font-weight: 600;
}

.card-title {
    color: var(--bs-white);
    line-height: 1;
    padding: 3px 0;
}

.card-body {
    padding: 0.7rem;
}

.optn_sec1 {
    border-bottom: 1px dashed #dbdfe9;
    padding: 6px 0;
    font-size: 14px;
    color: var(--bs-dark);
}

.sm-tag {
    background: var(--bs-white);
    border: 1px solid #ddd;
    color: var(--bs-dark);
    font-size: 12px;
    padding: .3em .4em .3em;
    display: inline-block;
    line-height: 1;
}

.jobcontent {
    border-radius: 4px;
    border: 0.5px solid #DDD;
    padding: 10px;
}

.accordion .accordion .title,
.accordion .title {
    padding: .45em 1em;
    font-weight: 700;
    border-top: 1px solid rgba(34, 36, 38, .15);
    cursor: pointer;
}

.accordion .accordion .title:first-child,
.accordion>.title:first-child {
    border-top: none;
}

.accordion,
.accordion .accordion {
    border-radius: .2357rem;
    background: var(--bs-white);
    box-shadow: 0 1px 2px 0 rgba(34, 36, 38, .15), 0 0 0 1px rgba(34, 36, 38, .15);
}

.accordion .accordion .active.title,
.accordion .active.title {
    color: rgba(0, 0, 0, .95);
}

.accordion .accordion .content,
.accordion .content {
    margin: 0;
    padding: .5em 1em 1.5em;
}

.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.badge-count {
    font-size: 12px;
    font-weight: 400;
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.accordion .form-select,
.accordion .form-control {
    padding: 10px;
    border-radius: 4px;
    height: auto;
    font-size: 14px;
}

.accordion .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
    padding-left: 10px;
}

.accordion .select2-container .select2-selection--single {
    height: auto;
    min-height: 36px;
    line-height: 36px;
    border-radius: 4px;
    font-size: 14px;
}

.accordion .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px;
    width: 32px;
}

.card {
    border-radius: .2357rem;
    box-shadow: 0 1px 2px 0 rgba(34, 36, 38, .15), 0 0 0 1px rgba(34, 36, 38, .15);
    border: none;
}

.sidebar_item {
    background-color: var(--bs-white);
    border: 1px solid rgb(209 218 226/1);
    border-radius: 6px;
    overflow: hidden;
}

.institute_img {
    background-color: var(--bs-white);
    border: 1px solid #eee;
    padding: 10px;
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.sidebar_title {
    background-color: #eaecf0;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
}

.sidebar_body {
    padding: 10px 15px;
}

#social-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
    flex-wrap: wrap;
}

#social-links ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bs-light);
    border-radius: 50%;
    font-size: 17px;
    color: var(--bs-secondary);
}

#social-links ul li a:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
}

.institute-header {
    position: relative;
    z-index: 9;
}

.cover_image {
    width: 100%;
    height: 300px;
    background-color: #eaecf0;
    border: 1px solid rgb(209 218 226/1);
    position: relative;
}

.Image-actual {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.institute-meta {
    display: flex;
    align-items: flex-end;
    position: relative;
}

.institute-logo {
    position: absolute;
    left: 30px;
    bottom: 0;
    background-color: var(--bs-white);
    width: 160px;
    height: 160px;
    box-shadow: 2px 2px 26px 0 rgba(0, 0, 0, .2);
    border: 1px solid rgb(209 218 226/1);
}

.institute-logo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.institute-info {
    padding-left: 210px;
    padding-top: 20px;
    flex-grow: 1;
}

.institute-info .institute-name {
    margin-bottom: 0;
}

.newsline {
    display: flex;
    background-color: #eaecf0;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.newsline .heading {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    padding: 5px 10px 4px;
    border-color: var(--bs-secondary);
}

.newsline>* {
    border: 1px solid rgb(209 218 226/1);
    border-left: none;
    display: flex;
    align-items: center;
}

.institute-slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 10px;
}

.institute-slider .slick-dots button {
    width: 10px;
    height: 10px;
    background-color: var(--bs-white);
    border-radius: 50%;
    margin: 5px;
    opacity: 0.5;
}

.institute-slider .slick-dots button.active {
    opacity: 1;
}

.w-fit {
    width: fit-content;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-light {
    background-color: #eaecf0 !important;
}

.iframe-container {
    background-color: hsla(0, 0%, 100%, .5);
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.carousel .slick-dots,
.video-gallery .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 15px 0 0; */
}

.carousel .slick-dots button,
.video-gallery .slick-dots button {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    font-size: 0;
    border: none;
    margin: 0 5px;
    padding: 0;
}

.carousel .slick-dots li.slick-active button,
.video-gallery .slick-dots li.slick-active button {
    background-color: #444;
}

.single-gallery {
    position: relative;
    z-index: 1;
}

.single-gallery::before {
    content: '';
    display: block;
    padding-top: 60%;
}

.gallery-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-icon {
    position: absolute;
    text-align: center;
    top: 40%;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 14px;
    color: var(--bs-primary);
    width: 34px;
    height: 34px;
    border-radius: 0 7px 0 7px;
    line-height: 34px;
    background-color: var(--bs-white);
    transform: scale(0.5);
    opacity: 0;
    transition: .4s all ease-in-out;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes ripple {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    75% {
        -webkit-transform: scale(1.75);
        transform: scale(1.75);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

.single-gallery .gallery-icon::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 0 7px 0 7px;
    left: 0;
    border: 1px solid var(--bs-white);
    animation: ripple 1s linear 2s infinite;
}

.single-gallery:hover .gallery-icon {
    transform: scale(1);
    opacity: 1;
}

.sidebar-institute .institute-card__link {
    font-size: 14px;
    padding: 4px;
}

.main-page-wrapper {
    min-height: calc(100vh - 218px);
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #cccdd3;
}

.login-body {
    display: table;
    height: 100vh;
    min-height: 100vh;
}

.login-wrapper .loginbox {
    background-color: var(--bs-white);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    margin: 1.875rem auto;
    max-width: 800px;
    min-height: 500px;
    width: 100%;
}

.login-wrapper .loginbox .login-left {
    align-items: center;
    background: #18aefa;
    flex-direction: column;
    justify-content: end;
    width: 400px;
    display: flex;
    background-blend-mode: multiply;
    border-radius: 8px 20px 20px 8px;
    position: relative;
}

.login-wrapper .loginbox .login-left:before {
    content: "";
    background-image: url(../images/icons/login-icon-01.png);
    position: absolute;
    top: 0;
    left: 0;
    width: 144px;
    height: 144px;
}

.login-wrapper .loginbox .login-left:after {
    content: "";
    background-image: url(../images/icons/login-icon-02.png);
    position: absolute;
    top: 0;
    right: 0;
    width: 144px;
    height: 144px;
}

.login-wrapper .loginbox .login-right {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 40px;
    width: 400px;
}

.login-wrapper .loginbox .login-right .login-right-wrap {
    max-width: 100%;
    flex: 0 0 100%;
}

.login-wrapper .loginbox .form-group {
    position: relative;
}

.login-wrapper .loginbox .form-group label {
    font-size: 13px;
    font-weight: 500;
    position: absolute;
    top: -10px;
    left: 10px;
    background: var(--bs-white);
    margin-bottom: 0;
    padding: 0px 5px;
    color: var(--bs-secondary);
    z-index: 9;
}

.login-danger,
.star-red {
    color: #FF0000;
}

.login-wrapper .loginbox .login-right h1 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
}

.account-subtitle {
    color: #AAAAAA;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: left;
}

.account-subtitle a {
    color: #18AEFA;
}

.login-wrapper .loginbox .login-right .forgotpass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}

.remember-me .custom_check {
    color: #878787;
    font-size: 14px;
    font-weight: 400;
}

.remember-me .custom_check .checkmark {
    width: 20px;
    height: 20px;
    top: 0px;
    border: 1px solid #C1CCDB;
}

.login-wrapper .loginbox .login-right .forgotpass a {
    color: #18AEFA;
    font-size: 15px;
    margin-left: auto;
}

.login-wrapper .loginbox .login-right .forgotpass a:hover {
    color: #333;
    text-decoration: underline;
}

.login-wrapper .loginbox .login-right .dont-have {
    color: #a0a0a0;
    margin: 20px 0px;
}

.login-wrapper .loginbox .login-right .dont-have a {
    color: #18AEFA;
    font-weight: 500;
}

.login-wrapper .loginbox .login-right .dont-have a:hover {
    text-decoration: underline;
}

.social-login {
    text-align: center;
}

.social-login>span {
    color: #a0a0a0;
    margin-right: 8px;
}

.social-login>a {
    background-color: rgb(155 32 144 / 15%);
    border-radius: 4px;
    color: var(--bs-secondary);
    display: inline-block;
    font-size: 16px;
    height: 34px;
    line-height: 34px;
    margin-right: 6px;
    text-align: center;
    width: 34px;
}

.social-login>a:hover {
    background-color: var(--bs-secondary);
    color: var(--bs-white) !important;
}

.social-login>a i.fa-twitter:hover,
.social-login>a i.fa-linkedin-in:hover {
    color: var(--bs-white);
}

.social-login>a:last-child {
    margin-right: 0;
}

.social-login>a.facebook {
    background-color: #4b75bd;
}

.social-login>a.google {
    background-color: #fe5240;
}

.login-or {
    color: #a0a0a0;
    margin-bottom: 20px;
    margin-top: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    position: relative;
}

.or-line {
    background-color: #e5e5e5;
    height: 1px;
    margin-bottom: 0;
    margin-top: 0;
    display: block;
}

.span-or {
    background-color: var(--bs-white);
    display: block;
    left: 50%;
    margin-left: -20px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    width: 42px;
}

.btn-primary.primary-reset {
    background-color: #18AEFA;
    border-color: #18AEFA;
}

.btn-primary.primary-reset:hover {
    background-color: #3d5ee1;
    border: 1px solid #3d5ee1;
}

.profile-views {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    cursor: pointer;
}

.custom_check {
    color: #1B2559;
    display: inline-block;
    position: relative;
    font-size: 14px;
    margin-bottom: 15px;
    padding-left: 30px;
    cursor: pointer;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom_check .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 19px;
    width: 21px;
    border: 1px solid #C4C4C4;
    background-color: var(--bs-white);
    border-radius: 6px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.remember-me .custom_check .checkmark {
    width: 20px;
    height: 20px;
    top: 0px;
    border: 1px solid #C1CCDB;
}

.custom_check input:checked~.checkmark {
    background-color: #3d5ee1;
    border-color: #3d5ee1;
}

.custom_check .checkmark::after {
    content: "\f00c";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    color: var(--bs-white);
    font-size: 9px;
}

.custom_check input:checked~.checkmark:after {
    display: block;
}

.custom_check input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.splash-screen .btn-close {
    position: absolute;
    z-index: 10;
    top: 10px;
    right: 10px;
    opacity: 1 !important;
    height: 20px;
    width: 20px;
    background-blend-mode: color-dodge;
}

.splash-screen .modal-header {
    padding: 0;
    border-bottom: 0;
}

.splash-screen .modal-body {
    padding: 0px !important;
}

.btn-close:focus {
    box-shadow: none;
}

.border-custom {
    height: 48px;
    width: 48px;
    border: 2px solid var(--bs-secondary);
    padding: 4px 0 0 4px;
    border-radius: 25px;
    margin: 0 12px 0 0;
}

.counter-icon {
    height: 36px;
    width: 36px;
    color: var(--bs-white);
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon,
.sliderSidebar {
    background-color: var(--bs-secondary);
}

.animate-ripple {
    -webkit-animation: animate-ripple 0.6s linear infinite;
    animation: animate-ripple 0.6s linear infinite;
}

@keyframes animate-ripple {
    0% {
        box-shadow: 0 4px 10px rgb(155 32 144 / 10%), 0 0 0 0 rgb(155 32 144 / 10%), 0 0 0 5px rgb(155 32 144 / 10%), 0 0 0 10px rgb(155 32 144 / 10%);
    }

    100% {
        box-shadow: 0 4px 10px rgb(155 32 144 / 10%), 0 0 0 5px rgb(155 32 144 / 10%), 0 0 0 10px rgb(155 32 144 / 10%), 0 0 0 20px rgba(0, 117, 255, 0);
    }
}

.btn-secondary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-secondary:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.sticky-footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    z-index: 999;
    background-color: var(--bs-white);
    box-shadow: 0 -0.125rem 0.25rem rgba(0, 0, 0, .075);
}

.sticky-footer-item {
    flex: 1;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.sticky-footer-item>a {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 18px 10px;
    font-size: 1.5rem;
    color: var(--bs-primary);
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    float: left;
    font-weight: 400;
    height: 100%;
    margin-right: 0px;
    padding-left: 13px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--bs-primary);
}

/*** ========== Section css ========== ***/

.pagination {
    justify-content: center;
}

.pagination li>* {
    min-width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ddd;
    color: var(--bs-secondary);
    border-radius: 3px;
    margin: 2px;
    font-size: 15px;
}

.pagination li a {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
}

.custom-nav.nav-tabs {
    border: none;
    background-color: var(--bs-primary);
    border-radius: 7px;
    display: inline-flex;
}

.custom-nav.nav-tabs button {
    background-color: var(--bs-primary);
    color: var(--bs-white);
    border: none;
    border-radius: 7px;
    margin-bottom: 0 !important;
    font-size: 16px;
    padding: 10px 25px 8px;
}

.custom-nav.nav-tabs button.active {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
}

.blog-card {
    background-color: var(--bs-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 5px rgb(0 0 0 / 10%);
}

.text-truncate-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.text-truncate-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 42px;
    line-height: 22px;
}

.text-truncate-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-card__image {
    position: relative;
}

.blog-card__image::before {
    content: '';
    display: block;
    padding-top: 70%;
}

.blog-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-area {
    position: relative;
}

.map-area::before {
    content: '';
    padding-top: 30%;
    display: block;
    min-height: 300px;
}

.map-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-wrapper iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.absolute-form {
    position: relative;
    z-index: 9;
    padding: 80px 0;
    max-width: fit-content;
    width: 100%;
}

.css-1kwr6bz.sk-three-bounce {
    display: inline-block;
    width: 50px;
}

.sk-three-bounce .sk-child {
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 100%;
    display: inline-block;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}

.css-1kwr6bz.sk-three-bounce .sk-child {
    width: 12.5px;
    height: 12.5px;
    background-color: rgb(77, 77, 77);
}

.sk-three-bounce .sk-bounce1 {
    animation-delay: -.32s;
}

.sk-three-bounce .sk-bounce2 {
    animation-delay: -.16s;
}

@keyframes sk-three-bounce {

    0%,
    80%,
    to {
        transform: scale(0)
    }

    40% {
        transform: scale(1)
    }
}

.img-cover {
    object-fit: cover;
}

.institute-slider img {
    max-height: 350px;
    object-fit: cover;
    width: 100%;
}

#share #social-links ul li a {
    width: 24px;
    height: 24px;
    color: var(--bs-white);
    border-radius: 2px;
    margin-top: 10px;
}

#share #social-links ul {
    justify-content: flex-start;
}

#share #social-links ul li a.facebook {
    background-color: #37579a;
}

#share #social-links ul li a.twitter {
    background-color: #29a2c9;
}

#share #social-links ul li a.linkedin {
    background-color: #1a86af;
}

#share #social-links ul li a.telegram {
    background-color: #239AD3;
}

#share #social-links ul li a.whatsapp {
    background-color: #00CC5D;
}



.switch {
    position: relative;
    display: inline-block;
    margin: 0 25px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .08);
    align-self: center;
}

.switch>span {
    position: absolute;
    top: 5px;
    pointer-events: none;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    width: 50%;
    text-align: center;
}

input.check-toggle-round-flat:checked~.off {
    color: #157347;
}

input.check-toggle-round-flat:checked~.on {
    color: var(--bs-white);
}

.switch>span.on {
    left: 2px;
    color: #157347;
}

.switch>span.off {
    right: -1px;
    color: var(--bs-white);
}

.check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.check-toggle+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input.check-toggle-round-flat+label {
    width: 66px;
    height: 25px;
    background-color: var(--bs-primary);
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
    box-shadow: 0 0 5px;
}

input.check-toggle-round-flat+label:before,
input.check-toggle-round-flat+label:after {
    display: block;
    position: absolute;
    content: "";
}

input.check-toggle-round-flat+label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: var(--bs-primary);
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}

input.check-toggle-round-flat+label:after {
    top: -3px;
    left: 0;
    bottom: 4px;
    width: 30px;
    height: 30px;
    background-color: var(--bs-white);
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
}

input:checked.check-toggle-round-flat+label:after {
    left: 2px;
}

input.check-toggle-round-flat:checked+label:after {
    margin-left: 34px;
}

.article-image .free {
    position: absolute;
    z-index: 3;
    background-color: var(--bs-white);
    color: var(--bs-red);
    left: 8px;
    top: 8px;
    line-height: 1;
    padding: 4px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
}

.institute__location {
    font-size: 14px;
    padding-top: 10px;
}

.top-institutes .institute__location {
    padding-bottom: 10px;
}

.profile__link_wrapper {
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 5px;
}

.profile__link_wrapper .form-control {
    padding: 8px 12px;
    border-radius: 0;
}

.profile__link_wrapper .input-group-text {
    padding: 0 12px;
    cursor: pointer;
    border-radius: 0;
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    position: relative;
}

.profile__link_wrapper .input-group-text .tooltiptext {
    visibility: hidden;
    width: 110px;
    background-color: #555;
    color: var(--bs-white);
    text-align: center;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
}

.profile__link_wrapper .input-group-text .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.profile__link_wrapper .input-group-text:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.hero__slide_image {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.hero-section {
    position: relative;
}

.hero-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 99;
}

.scroll_arrow {
    position: absolute;
    left: 0;
    bottom: 30px;
    font-size: 50px;
    color: var(--bs-white);
    z-index: 9;
    display: flex;
    width: 100%;
    justify-content: center;
}

.scroll_arrow>a {
    display: inline-flex;
}

.scroll_arrow .chevron {
    color: var(--bs-white);
    font-size: 40px;
    text-shadow: 1px 1px 1px #000;
}

.bounce {
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px)
    }
}

@-moz-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0)
    }

    40% {
        -moz-transform: translateY(-30px)
    }

    60% {
        -moz-transform: translateY(-15px)
    }
}

@-o-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0)
    }

    40% {
        -o-transform: translateY(-30px)
    }

    60% {
        -o-transform: translateY(-15px)
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-30px)
    }

    60% {
        transform: translateY(-15px)
    }
}

.search_functionality_container {
    max-width: 560px;
    width: 100%;
    padding: 5px 0;
    margin: 0 auto;
}

.search_functionality_container .search-field {
    padding-inline: 20px;
}

#searchsubmit {
    -moz-border-radius: 0 3px 3px 0;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-border-radius: 0 3px 3px 0;
    -o-transition: all .3s;
    -webkit-border-radius: 0 3px 3px 0;
    -webkit-transition: all .3s;
    background-color: var(--bs-secondary);
    border: none;
    border-radius: 0 3px 3px 0;
    color: var(--bs-white);
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    padding: 12px 34px;
    position: relative;
    text-transform: uppercase;
    vertical-align: top;
    transition: all .3s;
}

#searchsubmit:hover {
    background-color: var(--bs-primary);
}

.top_interest {
    background: rgba(0, 0, 0, .6);
    border-radius: 4px;
    font-size: 16px;
    height: 44px;
    margin: 4px 2px 0;
    overflow: hidden;
    padding: 10px 16px;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    /* background-color: var(--bs-secondary); */
    /* background-color: var(--bs-primary); */
}

.top_interest .title {
    float: left;
    margin-right: 10px;
    color: var(--bs-white);
}

.top_interest .ticker_wrapper span#typed {
    color: var(--bs-white);
    font-size: 14px;
}

.typed-cursor {
    opacity: 1;
}

.typed-cursor.typed-cursor--blink {
    animation: typedjsBlink 0.7s infinite;
    -webkit-animation: typedjsBlink 0.7s infinite;
    animation: typedjsBlink 0.7s infinite;
}

@keyframes typedjsBlink {
    50% {
        opacity: 0.0;
    }
}

@-webkit-keyframes typedjsBlink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.0;
    }

    100% {
        opacity: 1;
    }
}

#typed a {
    color: var(--bs-white);
}


/*** ========== Institute Section css ========== ***/
.institute-section {
    background-color: #fcf9ed;
    background-color: #eff8f3;
    /* background-color: #fff; */
    padding-block: 40px 50px;
    overflow: hidden;
}

.institute-card {
    padding: 16px 12px;
    border-radius: 14px;
    background: var(--bs-white);
    box-shadow: 0 4px 10px 0 rgba(16, 24, 64, .05);
    --from-bg: #ebf9f0;
    --to-bg: #f4fdf7;
    --line-bg: rgba(90, 188, 132, .4);
    background: linear-gradient(28deg, var(--from-bg) 16%, var(--to-bg) 81%);
    position: relative;
    z-index: 2;
    margin-top: 6px;
    font-size: 14px;
}

.institute-card>div {
    position: relative;
    z-index: 2;
}

.institute-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: -0.25rem;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    background: var(--line-bg);
    z-index: -1;
}

.institute-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* background: linear-gradient(28deg,var(--from-bg) 16%,var(--to-bg) 81%); */
    background-color: var(--bs-white);
}

.institute-card__top {
    display: flex;
    gap: 10px;
}

.institute-card__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-primary);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 18px;
    -webkit-line-clamp: 2;
    max-height: 36px;
    min-height: 36px;
    flex-grow: 1;
}

.institute-card__title a:hover {
    color: var(--bs-secondary);
}

.institute-card__logo {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    border: 1px solid #dfdfdf;
    overflow: hidden;
    flex-shrink: 0;
    padding: 3px;
}

.single-job .institute-card__logo {
    width: 56px;
    height: 56px;
}

.fit-cover {
    object-fit: cover;
}

.institute-card__logo img {
    object-fit: cover;
    max-height: 100%;
}

.institute-card__location .location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--bs-secondary);
}

.institute-card__location .location>span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 16px;
    max-height: 16px;
}

.institute-card__location .location svg {
    flex-shrink: 0;
    width: 15px;
    height: 15px;
}

.institute-card__meta {
    border-top: 1px solid #eee;
    padding-top: 16px;
    margin: 12px 0 0;
    display: flex;
    justify-content: space-between;
}

.institute-card__meta_item label {
    display: block;
    font-size: 12px;
    margin-bottom: 2px;
}

.institute-card__course_link {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.institute-card__course_link .link {
    color: var(--bs-primary);
    text-decoration: underline;
}

.institute-card__course_link .link:hover {
    color: var(--bs-secondary);
}

.institute-card__rating {
    margin-left: 5px;
    padding-left: 10px;
    border-left: 1px solid #ddd;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.institute-card__meta_item .fees_range {
    color: var(--bs-dark);
    font-weight: 500;
    font-size: 13px;
}

.institute-card__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-bottom: 5px;
}

.institute-card__btn {
    font-size: 13px;
}

.institute-card__btn i {
    font-size: 75%;
    margin-left: 4px;
}

.institute-card__btn.featured__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--bs-white);
    border: 1px solid #dfdfdf;
    padding: 0;
    margin-right: 10px;
}

.institute-card__btn:last-child {
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    border-radius: 30px;
    padding-inline: 20px;
    padding-top: 7px;
}

.institute-card__btn:last-child:hover {
    background-color: var(--bs-primary);
}

.institute-cards__wrapper .slick-dots {
    width: fit-content;
    margin: 15px auto 0;
    display: flex;
    background-color: rgb(240 136 49 / 20%);
    border-radius: 20px;
}

.institute-cards__wrapper .slick-dots li {
    display: flex;
}

.institute-cards__wrapper .slick-dots button {
    width: 20px;
    height: 5px;
    background-color: transparent;
    border-radius: 20px;
    transition: all 0.1s ease-in-out;
    border: none;
    font-size: 0;
}

.institute-cards__wrapper .slick-dots .slick-active button {
    background-color: var(--bs-secondary);
    width: 20px;
}

.institute-cards__wrapper .slick-arrow {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(calc(-50% + -11px));
    background-color: var(--bs-white) !important;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd !important;
    border-radius: 50%;
    font-size: 14px !important;
    color: var(--bs-primary) !important;
    box-shadow: 0 4px 10px 0 rgba(16, 24, 64, .05);
    z-index: 9;
}

.institute-cards__wrapper .slick-arrow.slick-next {
    left: auto;
    right: -10px;
}

.institute-cards__wrapper .slick-arrow.slick-disabled {
    display: none !important;
}

.view-link {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    color: var(--bs-primary);
    /* font-weight: 500; */
    white-space: nowrap;
    position: relative;
}

.view-link::after {
    content: '';
    position: absolute;
    left: -2px;
    bottom: 0px;
    width: 100%;
    border-bottom: 1px solid var(--bs-primary);
}

.view-link i {
    font-size: 80%;
    margin-left: 5px;
    transform: translateY(1px);
}

.view-link:hover {
    color: var(--bs-secondary);
}

.view-link:hover::after {
    border-color: var(--bs-secondary);
}

.location-trigger {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.location-trigger__item {
    flex-shrink: 0;
}

.location-trigger__item span {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--bs-white);
    border: 1px solid #cacaca;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.location-trigger__item span:hover,
.location-trigger__item.active span {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}


.bg-white .institute-card::after {
    background: linear-gradient(28deg, var(--from-bg) 16%, var(--to-bg) 81%);
    border: 1px solid rgb(0 155 93 / 20%);
    border-top: none;
    background: var(--bs-white);
}

/*** ========== Institute Section css ========== ***/

.partner-card {
    box-shadow: 0 2px 1px rgba(220, 230, 235, .3);
    border: 1px solid #dee2e6;
    border-radius: 25px;
    background-color: var(--bs-white);
    padding: 15px 25px;
    height: 100%;
}
