@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: #9b2090;
    --bs-light: #f5f9fc;
    --bs-dark: #101828;
    --bs-text: #787878;
    --bs-border: #E9E9E9;
}

body {
    margin: 0px;
    font-family: "Hind Siliguri", sans-serif;
    font-size: 14px;
    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:hover {
    box-shadow: 13px 10px 20px -10px rgb(155 32 144 / 30%);
}

.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: var(--bs-white);
    box-shadow: 0 4px 0px 0 rgb(16 52 102 / 20%);
    border: 1px solid #98a2b3;
    border-color: #dee2e6;
}

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

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

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

.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: 38px;
    border-color: #cccdd3;
    line-height: 38px;
    border-radius: 5px;
}

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

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    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;
    padding: 2px;
    border-radius: 0;
}

.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 #f7f7f7;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bs-white);
    border-color: rgb(16 52 102 / 20%);
}

.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);
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.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;
}

.institute-card {
    background-color: var(--bs-white);
    transition: all 0.5s ease-in-out;
    position: relative;
    border-radius: 0.625rem;
    border: 1px solid #dad8d4;
    padding: 16px;
    overflow: hidden;
    padding-bottom: 55px;
    height: 100%;
}

.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%;
}

.top-institutes .institute-card__footer {
    border-top: 1px solid rgb(226 232 240);
    padding-top: 10px;
    background-color: var(--bs-light);
}

.institute-card__link {
    display: block;
    width: 100%;
    background-color: rgb(155 32 144 / 10%);
    color: var(--bs-secondary);
    padding: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid rgb(155 32 144 / 60%);
    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 2px 1px rgba(220, 230, 235, .3);
    border-color: #dee2e6;
}

.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(155 32 144 / 10%);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, .16) !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 .owl-dots {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 10px;
}

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

.institute-slider .owl-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 .owl-dots,
.video-gallery .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 0;
}

.carousel .owl-dots button,
.video-gallery .owl-dots button {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 5px;
}

.carousel .owl-dots button.active,
.video-gallery .owl-dots button.active {
    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: #fff;
    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;
}

.header__btn {
    font-size: 14px;
    border-radius: 50px;
    box-shadow: none;
}

.header__btn:hover {
    box-shadow: 10px 10px 20px -10px rgb(64 64 64 / 40%);
}

.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%;
}

.all_courses>div:nth-child(8n+1) .article-card {
    background: #FEF7FC;
}

.all_courses>div:nth-child(8n+2) .article-card {
    background: #fffcf2;
}

.all_courses>div:nth-child(8n+3) .article-card {
    background: var(--bs-white);
}

.all_courses>div:nth-child(8n+4) .article-card {
    background: #f0f7ff;
}

.all_courses>div:nth-child(8n+5) .article-card {
    background: #e4f5f2;
}

.all_courses>div:nth-child(8n+6) .article-card {
    background: #fef6f6;
}

.all_courses>div:nth-child(8n+7) .article-card {
    background: #f9f9fa;
}

.all_courses>div:nth-child(8n) .article-card {
    background: #f6fef9;
}

.article-badges~div {
    background-color: var(--bs-white);
}

.whatsapp-contact {
    color: #fff;
    position: fixed;
    bottom: 80px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    font-family: 'Cairo';
}

.whatsapp-icon {
    background-color: #3be159;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-contact span {
    background-color: #3be159;
    position: absolute;
    font-size: 14px;
    color: #fff;
    right: calc(100% - 15px);
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    white-space: nowrap;
    width: 0;
    overflow: hidden;
    transition: 0.5s all ease-in-out;
    z-index: 1;
}

.whatsapp-contact:hover span {
    width: 100px;
    transition: 0.5s all ease-in-out;
    padding-right: 20px;
    padding: 3px 9px 4px;
}

.underlined-link {
    text-decoration: underline;
}

.login__body:has(#resetOtpForm:not([style*="display: none"])) .login__header {
    display: none;
}

#resetOtpForm .login__input {
    min-height: 39px;
    border-radius: 3px;
}

.is-valid+.otp__btn {
    display: flex !important;
}

.is-invalid+.otp__btn {
    display: none !important;
}

.alert:empty {
    display: none;
}

/* ======================= Login Register Modal ======================= */
.modal__close {
    position: absolute;
    right: 12px;
    top: 12px;
}

.login__body {
    padding: 2rem 2rem 1.8rem;
    border-radius: 15px;
    box-shadow: 0 2px 5px 0px rgb(0 0 0 / 20%);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}

.login__close {
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.login__close:focus {
    box-shadow: none;
}

.login__label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
    letter-spacing: 0.2px;
}

.login__input_wrapper {
    position: relative;
}

.login__input_icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login__input {
    padding-left: 2.3rem;
    background-color: rgb(248, 248, 248);
    border: 1px solid rgb(212, 212, 212);
    border-radius: 10px;
}

.verify__form .login__input {
    min-height: 39px;
    border-radius: 3px;
    padding-block: 5px;
}

.login__input:-webkit-autofill,
.login__input:-webkit-autofill:hover,
.login__input:-webkit-autofill:focus,
.login__input:-webkit-autofill:active,
.login__input:not(:placeholder-shown),
.login__input:focus,
.login__input:hover {
    -webkit-box-shadow: 0 0 0 30px rgb(248, 248, 248) inset !important;
    background-color: rgb(248, 248, 248) !important;
    border-color: var(--bs-primary);
}

.login__footer {
    margin-top: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login__btn {
    border-radius: 10px;
    color: var(--bs-white);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    padding: 8px 18px;
    border: none;
    font-size: 14px;
    min-width: 90px;
    justify-content: center;
}

.login__btn svg {
    font-size: 20px;
    margin-right: 5px;
}

.login__btn:hover,
.login__btn:focus {
    color: var(--bs-white) !important;
    background-color: var(--bs-secondary) !important;
}

.password__reset {
    margin-bottom: 0;
}

.password__reset a {
    color: var(--bs-danger);
    text-decoration: underline;
}

.login__header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.login__subheading {
    font-weight: 400;
    color: var(--bs-secondary);
    font-size: 13px;
}

.login__register_trigger {
    display: flex;
    margin-bottom: 1rem;
    flex-direction: column;
}

.login__form_check {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
}

.login__checkbox {
    appearance: none;
    font: inherit;
    color: currentcolor;
    width: 20px;
    height: 20px;
    border: 2px solid currentcolor;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.login__checkbox::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: transform 120ms ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    background-color: canvastext;
}

.login__checkbox:checked::before {
    transform: scale(1);
}

.login__checkbox_label {
    font-size: 14px;
    cursor: pointer;
}

.toggle_password {
    position: absolute;
    right: 5px;
    top: 0;
    width: 2.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.password_hiden,
.password_shown {
    position: absolute;
    display: flex;
}

.reset__form_header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.reset__form_title {
    font-size: 1.4rem;
    color: #000;
    font-weight: 600;
    color: var(--bs-danger);
}

.reset__form_subtitle {
    font-family: monospace;
    font-size: 13px;
    margin-bottom: 0;
}

.otp__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 5px;
    color: var(--bs-white);
    width: 106px;
    border: none;
    background: var(--bs-primary);
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    position: absolute;
    right: 3px;
    top: 3px;
    height: 33px;
    font-weight: 400;
}

.otp__btn svg {
    margin-right: 5px;
    font-size: 16px;
}

.otp__btn:focus,
.otp__btn:hover {
    color: var(--bs-white) !important;
    background-color: var(--bs-secondary) !important;
}

.opt__inputs {
    display: flex;
    align-items: center;
    column-gap: 8px;
    column-gap: 12px;
}

.opt__inputs.invalid .opt__input {
    border-color: var(--bs-danger);
}

.opt__input {
    text-align: center;
    width: 32px;
    height: 32px;
    font-size: 20px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    background: rgb(248, 248, 248);
    outline: transparent;
    border-radius: 3px;
    transition: border-color 0.3s, color 0.3s;
    width: 38px;
    height: 38px;
    padding: 0;
}

.opt__input:focus {
    border: 2px solid rgb(0, 0, 0);
    color: rgb(0, 0, 0);
}

.email_error,
.phone_error,
.custom_error,
.wrong__otp {
    display: none;
    align-items: center;
    color: var(--bs-danger);
    column-gap: 5px;
    margin-top: 5px;
}

.validation_input:has(.is-invalid)+.custom_error {
    display: flex;
}

.validation_input:has(.invalid-phone)~.phone_error {
    display: flex;
}

.validation_input:has(.invalid-email)~.email_error {
    display: flex;
}

.validation_input:has(.invalid-email.is-invalid)+.custom_error,
.validation_input:has(.invalid-phone.is-invalid)+.custom_error {
    display: none;
}

.custom_error__text,
.wrong__otp_text {
    color: var(--bs-danger);
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 600;
}

.form-control.is-invalid,
.form-control.is-invalid:not(:placeholder-shown),
.was-validated .form-control:invalid {
    border-color: var(--bs-danger) !important;
    box-shadow: 0 0 0 30px rgb(220 56 72 / 05%) inset !important;
    background-color: transparent !important;
    color: var(--bs-danger) !important;
    padding-right: 12px;
}

.form-control.is-invalid {
    background-image: none !important;
}

.form-control.is-invalid+div {
    color: var(--bs-danger);
}

.alert:empty {
    display: none;
}

.spinner_DupU {
    animation: spinner_sM3D 1.2s infinite
}

.spinner_GWtZ {
    animation-delay: .1s
}

.spinner_dwN6 {
    animation-delay: .2s
}

.spinner_46QP {
    animation-delay: .3s
}

.spinner_PD82 {
    animation-delay: .4s
}

.spinner_eUgh {
    animation-delay: .5s
}

.spinner_eUaP {
    animation-delay: .6s
}

.spinner_j38H {
    animation-delay: .7s
}

.spinner_tVmX {
    animation-delay: .8s
}

.spinner_DQhX {
    animation-delay: .9s
}

.spinner_GIL4 {
    animation-delay: 1s
}

.spinner_n0Yb {
    animation-delay: 1.1s
}

@keyframes spinner_sM3D {

    0%,
    50% {
        animation-timing-function: cubic-bezier(0, 1, 0, 1);
        r: 0
    }

    10% {
        animation-timing-function: cubic-bezier(.53, 0, .61, .73);
        r: 2px
    }
}

.btn-primary .spinner,
.otp__btn .spinner,
.login__btn .spinner {
    position: absolute;
    display: none;
    color: var(--bs-white);
}

.loading.btn-primary,
.loading.otp__btn,
.loading.login__btn {
    color: transparent;
}

.loading .spinner {
    display: block;
}

.form-check-input:checked {
    background-color: var(--bs-dark);
    border-color: var(--bs-dark);
}

.form-check-input:focus {
    border-color: var(--bs-dark);
    box-shadow: 0 0 0 .25rem rgb(0 0 0 / 25%);
}

.form-check {
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    color: #222;
    letter-spacing: 0.2px;
}

.form-check-input {
    font-size: 16px;
}

.form-check .form-check-input {
    margin-left: -1.2em;
    margin-right: 6px;
    margin-top: 0;
    margin-top: 2px;
}

.author__header {
    padding: 10px 0;
    border-bottom: 1px solid hsl(0 0% 87% / 1);
    background-color: var(--bs-white);
}

.author__header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn__account {
    color: #707070;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.avatar__wrapper.hidden {
    display: none;
}

.avatar__wrapper:not(.hidden)~* {
    display: none;
}

.avatar__wrapper {
    border-radius: 50%;
    overflow: hidden;
    background-color: #f5f5f5;
    outline: 2px solid var(--bs-gray-300);
}

.avatar {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.avatar__wrapper.hidden {
    display: none;
}

.btn__account.show,
.btn__account:active {
    border-color: transparent !important;
}

.btn__edit {
    padding: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: var(--bs-primary);
}

.svg__icon,
.edit__icon,
.info__icon,
.dropdown__arrow,
.user__icon {
    fill: none;
    height: 1em;
}

.svg__icon circle,
.svg__icon path,
.edit__icon path,
.info__icon path,
.info__icon circle,
.dropdown__arrow path,
.user__icon path,
.user__icon circle {
    vector-effect: non-scaling-stroke;
    stroke-width: 1.4px;
    stroke: currentColor;
    fill: none;
}

.dropdown-menu {
    font-size: 14px;
    min-width: 220px;
    padding: 13px;
    padding-bottom: 12px;
}

.dropdown__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dedede;
    margin-bottom: 12px;
    font-size: 13px;
}

.dropdown__header_icon {
    color: rgb(23 115 176);
}

.header__left {
    display: flex;
    flex-grow: 1;
    align-items: center;
    gap: 20px;
}

.dropdown__list a {
    display: block;
    padding: 7px 13px;
    margin-top: 5px;
    border-radius: 3px;
}

.dropdown__list a:hover {
    background-color: #f5f5f5;
}

.verify__wrapper {
    min-height: calc(100vh - 67px);
    display: flex;
    justify-content: center;
    padding-block: 2rem;
}

.verify__form {
    max-width: 440px;
    width: 100%;
    padding-inline: 1rem;
}

#editViewContent .form__input {
    min-height: 36px;
}

.close__form_btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
}

.underlined-link {
    text-decoration: underline;
}

.login__body:has(#resetOtpForm:not([style*="display: none"])) .login__header {
    display: none;
}

#resetOtpForm .login__input {
    min-height: 39px;
    border-radius: 3px;
}

.is-valid+.otp__btn {
    display: flex !important;
}

.is-invalid+.otp__btn {
    display: none !important;
}

/* ======================= Login Register Modal ======================= */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
