@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    /* font-family: 'Lato', sans-serif;
  font-family: 'Nunito Sans', sans-serif;
  font-family: 'Open Sans', sans-serif;
  font-family: 'Source Sans Pro', sans-serif;
    font-family: 'Roboto', sans-serif; */
    font-family: 'Noto Sans', sans-serif;
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-size: 16px;
}

:root {
    --main-color: #5c5a5a;

    --dark-grey: #252525;
    /* --hover-color: rgb(98 0 112); */
    /* --hover-color: #b1319b; */
    --hover-color: #dd4fc4;
    --hover-color2: #cd34b2;
    --primary-color: #a1137f;
    --primary-light-color: #d734ec;
}

button,
.btn {
    border: none;
    outline: none;
    box-shadow: none;
}

.mb-5 {
    margin-bottom: 25px !important;
}

.mr-5 {
    margin-right: 5px;
}

.ml-5 {
    margin-left: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.text-pink-light {
    color: var(--primary-light-color) !important;
}

.text-pink-dark {
    color: var(--primary-color) !important;
}

.text-gray {
    color: var(--main-color);
}

p {
    margin-top: 10px !important;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(---main-color);
}

li {
    letter-spacing: 0;
    line-height: 1.8;
}

.form-control {
    color: #848484;
}

.form-control:focus {
    border-color: #a31d7d;
    box-shadow: none;
}

.box-shadow-wrapper {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 30px;
}

.form-select {
    background-color: #f1f1f1;
}

iframe {
    max-width: 100%;
}

.common-heading-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.common-heading {
    border: 1px solid var(--main-color);
    padding: 10px;
    position: relative;
    display: inline-block;
    border-radius: 7px 7px 0 0;
    border-bottom: 0 !important;
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
}

.common-heading-wrapper::after {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 8px;
    left: 0;
    border-top: 1px solid var(--main-color);
}

.common-main-btn {
    background-color: var(--primary-color) !important;
    color: white !important;
    padding: 10px 30px;
    border-radius: 5px;
}

.common-main-btn:hover {
    background-color: var(--hover-color) !important;
    transition: 0.3s ease;
}

/* Css Animations starts */
@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

.heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
}

/* Css Animations ends */
/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> PRELOADER >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid blue;
    border-right: 16px solid green;
    border-bottom: 16px solid red;
    border-left: 16px solid pink;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#preloader {
    overflow: hidden;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100000;
    background-color: #9836be;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}

.status {
    border-radius: 50%;
    height: 129px;
    position: relative;
    width: 133px;
    z-index: 9;
    background-image: url(/assets/educatenepal_logo_120_112.gif);
    background-position: center;
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<PRELOADER<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

/* Swiper JS Styles starts */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swiper JS Styles ends */

/****************************************NAVBAR START*****************************************/
.gsc-input {
    font-size: 22px;
    padding-right: 0 !important;
}

.gsc-input .gsib_a {
    padding: 5px !important;
}

.gsc-input-box {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-radius: 5px;
}

.gsc-search-button {
    margin-left: 0 !important;
}

.gsc-search-button-v2 {
    font-size: 12px !important;
    padding: 9px 27px !important;
    width: auto;
    border: 1px solid #923c99;
    border-radius: 5px !important;
    margin-left: -5px !important;
}

.gsc-search-button-v2:hover {
    background: var(--hover-color2) !important;
}

.hot-trending h3 b a {
    color: var(--primary-color);
    text-decoration: none;
}

.hot-trending h3 b a:hover {
    text-decoration: underline;
}

.hot-trending {
    margin-top: -35px;
    padding: 15px;
}

.search-by-tags a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 2px 4px;
}

.header-container {
    padding-bottom: 10px;
}

.search-bar-component {
    padding-top: 5px;
    padding-right: 5px;
    padding-left: 5px;
    /* margin-bottom: 20px; */
    padding-bottom: 5px;
}

@media (max-width: 991px) {
    .search-bar-component {
        border-bottom: 2px solid #c3c3c3;
    }
}

.main-logo img {
    max-width: 400px;
    width: 100%;
    min-width: 200px;
}

.search-icon {
    font-size: 18px;
    cursor: pointer;
    text-align: right;
}

.search-icon-wrapper {
    display: none;
}

@media (max-width: 991px) {
    .search-icon-wrapper {
        display: block;
        /* margin-left: auto; */
    }
}

/*******************hamburger*******************/
.hamburger-menu {
    position: relative;
    padding-top: 10px;
}

.hamburger-menu .btn.collapsed i::before {
    content: '\f0c9';
}

.hamburger-menu:hover,
.hamburger-menu:active,
.hamburger-menu:focus {
    border: none;
    outline: none;
}

.hamburger-menu a {
    font-size: 28px;
    color: var(--primary-color);
}

.hamburger-menu a:hover,
.hamburger-menu a:focus {
    color: var(--main-color);
    border: none;
}

.hamburger-menu a i:hover {
    color: var(--main-color);
}

#hamburgerDropdown {
    position: absolute;
    left: 0;
    z-index: 4;
    background: rgb(243, 242, 243);
    border-top: 2px solid lightgrey;
    border-bottom: 1px solid lightgrey;
    margin-top: 5px;
    padding: 20px;
    min-height: 100%;
}

.hamburgerContent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-weight: 500;
    padding: 10px;
}

.hamburgerContent ul {
    list-style: none;
    padding-left: 0 !important;
}

.hamburgerContent ul li {
    font-size: 18px;
    text-transform: uppercase;
    padding: 8px;
    letter-spacing: 0.6px;
}

.hamburgerContent ul li a {
    font-size: 15px;
    letter-spacing: 0;
}

/* *****************hamburger*******************/
.search-bar-wrapper {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: auto;
}

@media (max-width: 991px) {
    .search-bar-wrapper {
        display: none;
    }

    .search-bar-wrapper.show {
        display: block;
    }
}

.search-bar-component .search-bar-wrapper #basic-addon2 {
    background: rgb(162, 19, 137) !important;
}

#basic-addon2 button {
    border: none;
    background: no-repeat;
    color: white;
}

.search-bar-wrapper {
    position: relative;
    z-index: 3;
}

.search-bar-wrapper > form > #searchdropdown {
    list-style: none;
    border-radius: 5px;
    width: calc(100% - 76px);
    position: absolute;
}

.search-bar-wrapper > form #searchdropdown ul {
    list-style: none !important;
    border: 1px solid #80808066;
    padding-left: 0;
    border-radius: 5px;
    background: white;
}

.search-bar-wrapper > form #searchdropdown ul li {
    list-style: none !important;
    border-bottom: 1px solid #80808066;
    padding: 10px;
    background: white;
}

.search-bar-wrapper > form #searchdropdown ul li:hover {
    background: lavender;
    cursor: pointer;
}

.search-bar-wrapper > form #searchdropdown ul:last-child li {
    border: none;
}

.search-bar-wrapper > form #searchdropdown ul li a {
    text-decoration: none;
    color: rgb(75, 74, 74);
}

.search-menu {
    margin-bottom: 0;
}

ul.search-menu {
    padding: 0;
    list-style: none;
    margin-bottom: 0;
}

ul.search-menu li {
    display: inline-block;
    font-size: 13px;
}

ul.search-menu li a {
    text-decoration: none;
    padding: 5px;
    color: var(--primary-color);
    font-weight: bold;
}

ul.search-menu li a:hover {
    text-decoration: underline;
}

.dropdown-toggle:after {
    content: none;
}

.navbar .container {
    padding: 0;
}

.navbar-expand .navbar-collapse,
.navbar-expand .navbar-nav {
    overflow: auto;
}

.navbar-nav .nav-item {
    padding: 5px;
    border-radius: 30px;
}

.navbar-first {
    background: var(--primary-color);
    padding: 0;
    border: 1px solid #c5c5c5;
}

.navbar-first .nav-link,
.navbar-first .navbar-brand,
.navbar-first .nav-link.active {
    color: #fff;
    font-size: 14px;
}

.navbar-first .nav-link.active {
    background: #8f5285;
}

.navbar-first li.nav-item {
    border-right: 0.5px solid white;
}

.navbar-first li.nav-item:hover,
.navbar-first li.nav-item.active {
    transition: 0.5s ease;
    background: white;
}

.navbar-first li.nav-item:hover a,
.navbar-first li.nav-item.active a {
    color: var(--primary-color);
}

.navbar-first li.nav-item:last-child {
    border: none;
}

.navbar-first a.nav-link.dropdown-toggle {
    font-size: 18px;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-first a.nav-link {
    font-size: 16px;
    padding-right: 15px !important;
    padding-left: 15px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.navbar-second {
    border-bottom: 1px solid var(--primary-color);
    padding: 0;
    font-size: 14px;
}

.navbar-second .nav-link,
.navbar-second .navbar-brand,
.navbar-second .nav-link.active {
    color: var(--primary-color);
    font-size: 17px;
    font-weight: bold;
}

.navbar-second .nav-link:hover {
    color: rgb(243 121 222);
    transition: 0.5s ease;
}

.navbar-second .nav-link.active {
    background: #d3d3d3;
}

.navbar-second a.nav-link {
    font-size: 14px;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.news-reel-wrapper {
    flex-wrap: wrap;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.news-reel-wrapper span {
    position: absolute;
    left: 0;
    z-index: 1;
    background: #fff;
    top: 7px;
    font-weight: bold;
    color: #b01093;
}

ul.news-reel {
    display: inline;
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 5px;
    margin-left: 10px;
}

ul.news-reel li {
    float: left !important;
    margin-top: 4px;
    margin-left: 15px;
}

ul.news-reel li a {
    text-decoration: none;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

ul.news-reel li a:hover {
    color: rgb(221 79 196);
}

ul.news-reel li:first-child {
    margin-left: 90px;
}

@media (min-width: 993px) {
    .hamburger-menu {
        display: none;
    }

    .hamburgerContent {
        display: none;
    }

    .hamburgerDropdown {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .navbar-first a.nav-link {
        font-size: 11px !important;
        /* width: 110px !important; */
    }

    .search-bar-wrapper {
        /* display: block; */
    }
}

@media (max-width: 767.98px) {
    .navbar-first a.nav-link {
        font-size: 14px !important;
        /* width: 110px !important; */
        padding-bottom: 0px !important;
        padding-right: 15px !important;
    }

    .navbar-second a.nav-link {
        font-size: 11px;
        /* width: 114px; */
    }

    .news-reel-wrapper span {
        font-size: 12px;
    }
}

@media (max-width: 991.98px) {
    .navbar-first,
    .navbar-second {
        /* display: none; */
    }

    .navbar-first a.nav-link {
        font-size: 14px !important;
        /*min-width: 180px;*/
        /* width: 110px !important; */
    }

    .navbar-first li.nav-item {
        line-height: 2;
    }

    .navbar-second a.nav-link {
        font-size: 11px !important;
        min-width: 130px;
    }

    .navbar-second li.nav-item {
        line-height: 2;
    }

    .news-reel-wrapper span {
        font-size: 14px;
    }

    ul.news-reel li {
        min-width: 230px;
        margin-top: 4px;
    }

    ul.news-reel li a {
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .navbar-first a.nav-link {
        font-size: 14px !important;
        /* width: 110px !important; */
    }

    .navbar-second a.nav-link {
        font-size: 11px;
    }
}

/*>>>>>>>>>>>>>>>>>>>>>>>>>>BREADCRUMBS>>>>>>>>>>>>>>>>*/

ol.breadcrumb li a {
    padding: 5px 10px;
    text-decoration: none;
    color: #6e6e6e;
}

ol.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '' !important;
}

/*<<<<<<<<<<<<<<<<<<<<<<<<< BREADCRUMBS <<<<<<<<<<<<<<<<<<<*/

/********************************************* NAVBAR END *****************************************/

/***********************************************BODY PART START**********************************************/
.body-container {
    padding-bottom: 20px;
}

.co-search-box-wrap {
    padding: 0px 0px 0 0;
    box-shadow: 1px 1px 10px 3px #4a3d4b57;
    margin: 15px 0 10px 0;
    border-radius: 5px;
    border: 1px solid var(--main-color);
}

.home-search.co-search-box-wrap {
    /* position: relative; */
    display: none;
}

.co-search-box-wrap h4 {
    margin-bottom: 0rem !important;
    padding: 12px 10px;
    border-bottom: 1px solid var(--main-color);
    font-size: 22px;
    font-weight: 500;
    color: var(--main-color);
}

.home-search.co-search-box-wrap h4 {
    /* font-size: 19px; */
}

.co-search-box-wrap h4 span {
    /* background: var(--main-color);
    color: #fff;
    font-size: 30px;
    font-size: calc(2vw + 0.4vh + 1vmin);
    letter-spacing: 1.5px;
    font-weight: bold; */
}

.co-search-box-body {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.co-search-box-body img {
    width: 230px;
}

.co-search-box-body .img-wrapper {
    width: 400px;
}

.college-search-box-body .img-wrapper {
    width: 250px;
}

.co-search-box-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-top: 0;
    padding: 20px;
}

.home-search .co-search-box-text {
    /* margin-left: 200px;
    padding: 30px 20px; */
}

@media screen and (max-width: 2559.98px) {
    .co-search-box-text {
        /* padding-left: 203px; */
    }

    /* .co-search-box-body .co-search-box-text h5 {
      font-size: calc(1vw + 0.4vh + 1vmin);
    }

    .co-search-box-body .co-search-box-text p {
      max-width: 682px;
      font-size: calc(0.3vw + 0.4vh + 1vmin);
    } */
}

.co-search-box-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-top: 0;
}

.co-search-box-body .co-search-box-text h5 {
    font-size: 28px;
    font-weight: 700;
    color: var(--main-color);
    /* color: #000; */
}

.home-search .co-search-box-body .co-search-box-text h5 {
    /* font-size: 19px; */
}

.co-search-box-body .co-search-box-text p {
    font-size: 18px;
    max-width: 75%;
    /* color: #897f7f; */
}

.home-search .co-search-box-body .co-search-box-text p {
    /* font-size: 16px; */
}

.home-search .co-search-box-body .co-search-box-text .btn {
    max-width: 130px;
}

.co-search-box-body .co-search-box-text p span {
    color: black;
    font-size: 19px;
    font-weight: 600;
}

.home-search .co-search-box-body .co-search-box-text p span {
    /* font-size: 17px; */
}

@media screen and (max-width: 1479.98px) {
    .co-search-box-text {
        /* padding-left: 198px; */
    }

    .co-search-box-body .co-search-box-text h5 {
        /* font-size: calc(1.3vw + 0.4vh + 1vmin); */
    }

    .co-search-box-body .co-search-box-text p {
        max-width: 632px;
        /* font-size: calc(0.5vw + 0.4vh + 1vmin); */
    }
}

@media screen and (max-width: 1199.98px) {
    .co-search-box-text {
        /* padding-left: 147px; */
    }

    .co-search-box-body .co-search-box-text h5 {
        /* font-size: calc(1.2vw + 0.4vh + 1vmin); */
    }

    .co-search-box-body .co-search-box-text p {
        /* max-width: 486px; */
        /* font-size: calc(0.5vw + 0.4vh + 1vmin); */
    }
}

@media screen and (max-width: 991.98px) {
    .co-search-box-text {
        /* padding-left: 110px; */
    }

    .co-search-box-body .co-search-box-text h5 {
        /* font-size: calc(1vw + 0.4vh + 1vmin);
        margin-bottom: 0; */
    }

    .co-search-box-body .co-search-box-text p {
        /* max-width: 388px;
        font-size: calc(0.3vw + 0.4vh + 1vmin);
        line-height: 1.1;
        margin-top: 5px !important; */
    }
}

@media screen and (max-width: 767.98px) {
    .co-search-box-text {
        /* padding-left: 110px; */
        padding: 0;
    }

    .co-search-box-body .co-search-box-text h5 {
        /* font-size: calc(1.2vw + 0.4vh + 1vmin);
        margin-bottom: 0; */
    }

    .co-search-box-body .co-search-box-text p {
        /* max-width: 365px;
        font-size: calc(0.5vw + 0.4vh + 1vmin);
        line-height: 1.1; */
    }
}

@media screen and (max-width: 599.98px) {
    .co-search-box-text {
        /* padding-left: 110px;
        padding-right: 20px; */
    }

    .co-search-box-body .co-search-box-text h5 {
        /* font-size: calc(1.5vw + 0.4vh + 1vmin);
        margin-bottom: 0; */
    }

    .co-search-box-body .co-search-box-text p {
        /* font-size: calc(0.7vw + 0.4vh + 1vmin);
        line-height: 1.1; */
    }
}

@media screen and (max-width: 479.98px) {
    .co-search-box-text {
        /* padding-left: 100px;
        margin-top: 10px; */
    }

    .co-search-box-body .co-search-box-text h5 {
        /* font-size: calc(1.8vw + 0.4vh + 1vmin);
        margin-bottom: 0; */
    }

    .co-search-box-body .co-search-box-text p {
        /* max-width: 323px;
        font-size: calc(0.9vw + 0.4vh + 1vmin);
        line-height: 1.1; */
    }
}

@media screen and (max-width: 399.98px) {
    .co-search-box-text {
        /* padding-left: 85px; */
        /* margin-top: 10px; */
    }

    .co-search-box-body .co-search-box-text h5 {
        /* font-size: calc(2vw + 0.4vh + 1vmin);
        margin-bottom: 0; */
    }

    .co-search-box-body .co-search-box-text p {
        /* max-width: 266px;
        font-size: calc(0.8vw + 0.4vh + 1vmin);
        line-height: 1.1;
        margin-top: 5px !important; */
    }
}

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>HOME SEARCH BOX>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>*/

.search-box-wrap {
    padding: 10px 0px 0 0;
    /* box-shadow: 1px 1px 10px 3px #4a3d4b57; */
    margin: 15px 0 10px 0;
    border-radius: 5px;
    box-shadow: -1px -1px 30px rgba(0, 0, 0, 0.2);
}

section.search-box-wrap h4 {
    border-bottom: 2.5px solid var(--main-color);
    margin-bottom: 0rem !important;
}

.search-box-wrap h4 span {
    background: var(--main-color);
    color: #fff;
    padding: 2px 8px;
    font-size: 22px;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.search-box-body {
    position: relative;
}

.search-box-body .search-box-text {
    position: absolute;
    top: 0px;
}

.search-box-body .search-box-text h5 {
    padding-left: 10px;
    font-size: 25px;
    color: var(--main-color);
}

.search-box-body .search-box-text p {
    max-width: 146px;
    margin-left: 260px;
    line-height: 1.2;
    margin-top: 30px !important;
}

.search-box-body .search-box-text p span {
    font-size: 20px;
}

.course-search-box {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
    height: 100%;
}

.course-search-box .heading {
    /* padding-left: 20px; */
    margin-bottom: 20px;
}

.course-search-box .heading h4 {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 8px 12px;
    border-radius: 7px 7px 0 0;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 0;
    border-bottom: 0;
}

.course-search-box .heading h5 {
    border-top: 1px solid var(--main-color);
    padding-top: 10px;
    font-size: 19px;
    font-weight: 400;
}

.course-search-box .content {
    /* position: relative; */
}

.course-search-box .content img {
    max-width: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.course-search-box .content .search-box-text p span {
    font-weight: 600;
    font-size: 17px;
}

@media screen and (max-width: 1399.98px) {
    .search-box-body .search-box-text h5 {
        font-size: 22px;
    }

    .search-box-body .search-box-text p {
        max-width: 150px;
        margin-left: 220px;
        line-height: 1.2;
        margin-top: 28px !important;
        font-size: 14px;
    }

    .search-box-text p span {
        /* font-size: 18px; */
    }

    .btn-primary.btn-educate.btn.btn-search-home {
        /* margin-left: -81px !important;
        bottom: -35px !important;
        width: 88px !important;
        padding: 7px 0px !important;
        font-size: 14px !important; */
    }
}

@media screen and (max-width: 1199.98px) {
    .search-box-body .search-box-text h5 {
        font-size: 19px;
    }

    .search-box-text p span {
        /* font-size: 15px !important; */
    }

    .search-box-body .search-box-text p {
        font-size: 12px !important;
        right: -14px !important;
        max-width: 105px;
        margin-left: 191px;
    }

    .btn-primary.btn-educate.btn.btn-search-home {
        /* margin-left: -70px !important;
        width: 75px !important;
        padding: 5px 0px !important;
        font-size: 12px !important;
        bottom: -22px !important; */
    }
}

@media screen and (max-width: 991.98px) {
    .search-box-body .search-box-text h5 {
        font-size: 18px;
    }

    .search-box-text p span {
        /* font-size: 25px !important; */
    }

    .search-box-body .search-box-text p {
        font-size: 17px !important;
        right: -14px !important;
        max-width: 166px;
        margin-left: 296px;
    }

    .btn-primary.btn-educate.btn.btn-search-home {
        /* margin-left: -96px !important;
        width: 90px !important;
        padding: 10px 0px !important;
        font-size: 12px !important;
        bottom: -45px !important; */
    }
}

@media screen and (max-width: 767.98px) {
    .search-box-body .search-box-text h5 {
        font-size: 25px;
    }

    .search-box-body .search-box-text p {
        font-size: 17px !important;
        right: -14px !important;
        max-width: 200px;
        margin-left: 280px;
    }

    .btn-primary.btn-educate.btn.btn-search-home {
        /* margin-left: -129px !important; */
    }
}

@media screen and (max-width: 575.98px) {
    .search-box-body .search-box-text h5 {
        font-size: 25px;
    }

    .search-box-text p span {
        /* font-size: 20px !important; */
    }

    .search-box-body .search-box-text p {
        font-size: 15px !important;
        max-width: 167px !important;
        margin-left: 290px;
    }

    .btn-primary.btn-educate.btn.btn-search-home {
        /* margin-left: -42px !important;
        bottom: -40px !important; */
    }
}

@media only screen and (max-width: 479.98px) {
    .search-box-body .search-box-text h5 {
        font-size: 20px;
    }

    .btn-primary.btn-educate.btn.btn-search-home {
        /* margin-left: 30px !important;
        bottom: -66px !important; */
    }

    .search-box-body .search-box-text p {
        font-size: 13px !important;
        max-width: 137px !important;
        margin-left: 276px;
    }

    .btn-primary.btn-educate.btn.btn-search-home {
        /* margin-left: -72px !important;
        bottom: -30px !important;
        padding: 9px 0px !important; */
    }
}

@media only screen and (max-width: 449.98px) {
    .search-box-body .search-box-text p {
        font-size: 13px !important;
        max-width: 140px !important;
        margin-left: 229px;
    }

    .btn-primary.btn-educate.btn.btn-search-home {
        /* margin-left: -38px !important;
        bottom: -30px !important;
        padding: 8px 0px !important; */
    }
}

@media only screen and (max-width: 400px) {
    .search-box-body .search-box-text p {
        font-size: 12px !important;
        max-width: 111px !important;
        margin-left: 228px;
    }

    .search-box-body p span {
        font-size: 18px !important;
    }

    .btn-primary.btn-educate.btn.btn-search-home {
        /* margin-left: -68px !important;
        bottom: -22px !important;
        padding: 7px 0px !important; */
    }
}

@media screen and (max-width: 375.98px) {
    .search-box-body .search-box-text p {
        max-width: 152px !important;
        font-size: 13px !important;
        margin-left: 200px;
    }

    .btn-primary.btn-educate.btn.btn-search-home {
        /* margin-left: -39px !important;
        padding: 4px 7px !important;
        width: 70px !important;
        bottom: -22px !important; */
    }
}

/* <---------------------home-search-box------------------------> */
/* <------------------------Search-button-home------------------> */
.btn-primary.btn-educate {
    background: purple !important;
    transition: 0.3s ease;
    border: none;
    border-radius: 0px;
    font-size: 16px;
    width: 91px;
    padding: 10px 0px;
    color: white;
    margin-top: 8px;
    font-weight: bolder;
    letter-spacing: 0.4px;
    outline: none;
}

.btn-primary.btn-educate.btn.btn-search-home:hover {
    background: var(--hover-color) !important;
}

.btn-primary.btn-educate.btn:hover {
    background: var(--hover-color2) !important;
}

/* <------------------------Search-button-home---------------------> */

.next.btn.btn-sm {
    color: var(--primary-color);
    font-weight: bold;
    border: none !important;
}

.next.btn.btn-sm:hover i {
    transform: translateX(4px);
    transition-duration: 0.3s;
}

.next.btn.btn-sm:hover {
    color: var(--hover-color);
    border: none !important;
}

section.content-block-wrap {
    /* margin-bottom: 30px; */
    line-height: 1.9;
}

section.content-block-wrap .program-name {
    color: #252525;
    display: inline-block;
}

section.content-block-wrap .program-name span {
    margin-right: 3px;
}

section.content-block-wrap h4 {
    border-bottom: 2px solid var(--main-color);
}

section.content-block-wrap h4 span {
    background: var(--main-color);
    color: #fff;
    font-size: 19px;
    padding: 2px 20px;
    text-transform: uppercase;
}

.content-block {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
    gap: 15px;
    border: 1px solid #d7d7d7;
    padding: 20px;
    border-radius: 10px;
    height: 90%;
}

.content-block:hover {
    background: #f7f7f7;
    transition: 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 8px;
}

.content-image-part {
    /* width: 120px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center; */
}

.content-image-part img {
    width: 90px;
    vertical-align: middle;
    height: 85px;
}

.content-image-part:hover img {
    opacity: 0.6;
}

.content-text-part {
    /* width: calc(100% - 130px); */
}

.content-text-part h5 {
    margin: 0;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    /* font-size: calc(0.4vw + 0.4vh + 1vmin); */
    /* height: 40px; */
}

.content-text-part h5:hover {
    color: var(--hover-color);
}

.content-text-part h5 p {
    margin-top: 0 !important;
}

.content-text-part span {
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    color: #847e7e;
    font-size: 14px;
    margin-top: 8px;
}

.detail-box-wrap > .program-list:not(:last-child):after {
    display: block;
    content: '';
    border-bottom: 1px solid rgb(179, 120, 174);
    max-width: 942px;
    transform: translateY(-1rem);
}

/* <------------------------sub menu------------------------> */
.sub-menu-wrapper {
    border-top: 2px solid lightgrey;
    border-bottom: 2px solid lightgrey;
    text-transform: uppercase;
}

.category-select-btn {
    display: none;
}

ul.sub-menu-up,
ul.sub-menu {
    padding: 5px;
    list-style: none;
    margin-bottom: 0;
}

ul.next-submenu {
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 20px;
}

ul.sub-menu li {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}

ul.sub-menu-up li:nth-child(2) {
    color: #000;
}

ul.sub-menu-up li {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-color);
    line-height: 1;
}

ul.sub-menu li:not(:last-child):after {
    content: '';
    padding-left: 5px;
    border-right: 2px solid #b3b3b3;
}

ul.sub-menu-up li a,
ul.sub-menu li a {
    text-decoration: none;
    padding: 5px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
}

ul.sub-menu-up li a:hover,
ul.sub-menu li a:hover {
    text-decoration: underline;
}

/* <------------------------sub menu------------------------> */

/***************************body-part-end***********************************/

/***************************************************************** DETAIL PAGE**********************************************************************/
.profile-title-block {
    display: inline-flex;
    flex-wrap: no-wrap;
    justify-content: start;
}

@media (max-width: 575px) {
    .profile-title-block {
        max-width: 100%;
    }
}

.profile-title-wrap {
    justify-content: space-between;
    display: flex;
    flex-wrap: revert;
}

.profile-title-image-part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-title-image-part img {
    width: 120px;
    vertical-align: middle;
    height: 110px;
}

.profile-title-text-part h2 {
    font-size: 3.125em;
    line-height: 1;
}

.profile-title-text-part span {
    color: grey;
}

.article-main-image {
    margin-top: 5px !important;
    max-width: 966px;
}

.article-main-image > img.img-fluid.ml-auto.mr-auto {
    margin-bottom: 5px;
    height: auto;
}

.article-title-block {
    display: flex;
    /* flex-wrap: no-wrap; */
    justify-content: start;
    align-items: center;
    margin: 10px 0 10px;
    padding: 10px;
}

.article-title-block h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    /* text-align: center; */
}

.article-title-block .article-title-text-part h2 {
    font-size: 40px;
    font-weight: 500;
}

.article-title-image-part img {
    width: 120px;
    vertical-align: middle;
}

.article-title-text-part {
    /* width: 60%; */
}

@media screen and (max-width: 1399.98px) {
    .article-title-block h2 {
        /* font-size: calc(26px + 8 * ((100vw - 320px) / 680)) !important; */
    }

    .profile-title-block h2 {
        /* font-size: calc(26px + 8 * ((100vw - 320px) / 680)) !important; */
    }
}

@media screen and (max-width: 422.98px) {
    .article-title-block h2 {
        /* font-size: 1.3rem !important; */
    }

    .article-title-text-part {
        width: auto;
    }
}

/* <----------------Share-socials------------------------> */
.connect-box {
    margin-top: 30px;
}

.connect-box h6 {
    text-align: left;
    padding: 10px;
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 17px;
    background-color: #f0f0f0;
    color: var(--main-color);
}

.connect-box h6 ~ hr {
    display: none;
}

.connect-box ul {
    text-align: left;
    padding: 0;
    display: flex;
}

.connect-box ul li {
    list-style: none;
    display: inline;
    font-size: 28px;
    margin: 5px;
}

.connect-box ul li .fa-facebook-f {
    color: white;
    background: #1877f2;
    border-radius: 50%;
    border: 15px solid #1877f2;
    padding: 0px 4px;
}

.connect-box ul li .fa-twitter {
    color: white;
    background: #1da1f2;
    border-radius: 50%;
    border: 15px solid #1da1f2;
}

.connect-box ul li .fa-youtube {
    color: white;
    background: #ff0000;
    border-radius: 50%;
    border: 15px solid #ff0000;
}

.connect-box ul li a:hover .fa-facebook-f {
    filter: saturate(0);
    transition: 0.5s ease;
}

.connect-box ul li a:hover .fa-twitter {
    filter: saturate(0);
    transition: 0.5s ease;
}

.connect-box ul li a:hover .fa-youtube {
    filter: saturate(0);
    transition: 0.5s ease;
}

ul.share-socials {
    padding: 10px 5px;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0 !important;
    font-size: 14px;
}

ul.share-socials a {
    text-decoration: none;
}

ul.share-socials li {
    display: inline-block;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

ul.share-socials li i {
    text-decoration: none;
    margin: 2px;
    border-radius: 50%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
}

ul.share-socials li i:hover {
    background-color: grey;
}

.fb {
    background-color: #39569c;
    color: white;
}

.messenger {
    background-color: #1da1f2;
    color: white;
}

.twitter {
    background-color: #1da1f2;
    color: white;
}

.ig {
    background-color: #833ab4;
    color: white;
}

.linkedin {
    background-color: #0e76a8;
    color: white;
}

.whatsapp {
    background-color: #25d366;
    color: white;
}

.viber {
    background-color: #8f5db7;
    color: white;
}

.email {
    background-color: maroon;
    color: white;
}

@media screen and (max-width: 991.98px) {
    .connect-box ul li {
        font-size: 16px;
    }
}

/* <-------------------------------Share-socials---------------------------> */

.college-detail-box-wrap {
    margin: 20px 0 20px 0;
    letter-spacing: 0.4px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 30px;
}

.detail-box-wrap {
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin: 0px 0 10px 0;
    border-radius: 8px;
    letter-spacing: 0.4px;
}

.detail-box-wrap .detail-text-part {
    width: calc(100% - 300px) !important;
}

.detail-text-part h5 {
    /* color: var(--primary-color); */
    font-size: 21px;
    margin-bottom: 15px;
}

section.detail-box-wrap h4 {
    /* border-bottom: 1px solid var(--primary-color);
    margin-bottom: 0rem !important; */
}

section.detail-box-wrap h4 span {
    background: var(--main-color);
    color: #fff;
    padding: 2px 8px;
    font-size: 18px;
}

.detail-image-part {
    height: auto;
    display: flex;
    align-items: center;
}

.detail-image-part img {
    height: auto;
}

.detail-box-wrap .detail-text-part {
    width: calc(100% - 300px) !important;
}

@media (min-width: 768px) and (max-width: 991px) {
    section.detail-box-wrap .detail-text-part {
        font-size: 13px;
        padding: 0px;
        width: calc(100% - 250px) !important;
    }
}

@media (max-width: 768px) {
    .contact-detail-image-part {
        justify-content: center;
    }

    .main-logo img {
        min-width: 180px;
        margin-top: 8px;
    }

    .category-select-btn {
        display: block;
        color: #575757;
        padding: 5px 12px;
        width: 250px;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #c1c1c1;
        border-radius: 3px;
        background: white;
        font-size: 15px;
        text-align: center;
        position: relative;
    }

    .category-select-btn::after {
        font: var(--fa-font-solid);
        content: '\f078';
        position: absolute;
        right: 8px;
        top: 7px;
        font-size: 16px;
        color: #000;
    }

    .category-select-btn.show::after {
        font: var(--fa-font-solid);
        content: '\f00d';
    }

    ul.sub-menu.next-submenu {
        max-width: 250px;
        display: none;
        padding: 0;
    }

    ul.sub-menu.next-submenu.show {
        display: block;
    }

    ul.sub-menu.next-submenu li a {
        display: block;
        text-align: center;
    }

    ul.sub-menu.next-submenu li:not(:last-child):after {
        display: none;
    }

    ul.sub-menu.next-submenu li {
        display: block;
        background: #ebebeb;
        padding: 8px;
        border-bottom: 1px solid #bcbcbc;
    }

    ul.search-menu {
        display: flex;
    }

    ul.search-menu li {
        min-width: 145px;
    }

    ul.search-menu li a {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    .detail-menu.uni-detail {
        margin-left: 15%;
    }
}

@media screen and (max-width: 480px) {
    .detail-menu.uni-detail {
        margin-left: 7%;
    }
}

.about-detail {
    list-style: none;
    padding-left: 0;
    margin: 30px 0;
}

ul.about-detail li {
    display: flex;
    align-items: center;
    gap: 5px;
}

ul.about-detail li .course-detail-heading {
    width: 216px;
    display: inline-block;
    text-align: right;
}

ul.about-detail li .left {
    flex-basis: 25%;
    /* text-align: right; */
}

.about-detail li span.items {
    font-weight: 600;
    color: #000;
}

.detail-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin-bottom: 10px;
    padding: 10px;
}

.detail-wrap {
    justify-content: space-between;
    display: flex;
    flex-wrap: revert;
}

.detail-image-part {
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-image-part img {
    width: 120px;
    vertical-align: middle;
    height: 110px;
}

.detail-text-part h2 {
    font-size: 3.125em;
    line-height: 1;
}

.detail-text-part span {
    color: grey;
}

ul.detail-menu {
    padding: 0px 5px 5px 0px;
    list-style: none;
    margin-bottom: 0;
}

ul.detail-menu li a {
    text-decoration: none !important;
    /* padding: 5px; */
    color: #a21389;
}

ul.detail-menu li:hover a {
    color: var(--primary-light-color);
}

.mt-5 {
    margin-top: 25px !important;
}

.read-more-button {
    text-decoration: none;
    color: var(--main-color);
    font-weight: 500;
}

.program-list a {
    text-decoration: none;
    color: var(--main-color);
}

.program-list a h6 {
    color: var(--main-color) !important;
}

.pagination {
    margin: 5px;
}

ul.pagination li a:hover {
    color: white;
    background: #c4b8c7;
    transition: 0.5s ease-out 50ms;
}

ul.pagination li a {
    background: white;
    color: #602070 !important;
    padding: 1px 6px;
}

@media screen and (max-width: 575.98px) {
    .detail-block {
        display: flex;
    }

    .detail-text-part h2 {
        font-size: 2em;
        line-height: 1;
    }
}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< DETAIL PAGE <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<*/

/*>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> COLLEGE DETAIL S>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>/


/* <-------------------read-more-button-start---------------------> */
section.content-block-wrap button#myBtn {
    color: var(--primary-color);
    border: none;
    text-transform: uppercase;
    font-weight: bold;
}

section.content-block-wrap button#myBtn:hover i {
    transform: translateX(4px);
    transition-duration: 0.3s;
}

section.content-block-wrap button#myBtn:hover {
    border: none !important;
}

/* <-------------------read-more-button-end---------------------> */

.detail-box-wrap h5 {
    color: rgb(175, 72, 162);
}

ul.detail-menu li span {
    font-weight: 500;
}

.content-block-wrap a {
    text-decoration: none !important;
}

.content-block-wrap a {
    text-decoration: none;
    color: var(--main-color);
}

.content-block-wrap a.university-link {
    display: inline-block;
}

.content-block-wrap a h6 {
    color: var(--primary-color) !important;
}

.content-block-wrap a:hover h6 {
    color: var(--primary-light-color) !important;
}

.content-block-wrap .program-list {
    padding: 20px;
    margin: 10px 0;
}

.content-block-wrap .program-list .detail-menu .course-link {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
}

.content-block-wrap .program-list .detail-menu .course-link:hover {
    text-decoration: underline !important;
}

.content-block-wrap .program-list .btn {
    margin-top: 10px;
}

.content-block-wrap .program-list:nth-child(odd) {
    background: #cbbdcd26;
}

.btn-primary.btn-apply-now.btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0px;
    font-size: 16px;
    padding: 6px 20px;
    color: white;
    font-weight: bold;
    margin-top: 8px;
}

.btn-primary.btn-apply-now.btn:hover {
    background: var(--main-color);
}

/* <-----------------Image/Video Gallery-slider-start---------------------------> */

#gallery {
    padding-bottom: 10px;
}

#gallery .content-block-wrap {
    margin-bottom: 70px;
}

.image-carousel {
    background: #838282;
    padding: 25px 40px 40px;
    /* width: 700px; */
    max-width: 100%;
}

.image-carousel .carousel-inner {
    display: flex;
}

.image-carousel .carousel-inner .carousel-item img {
    /* background: #a5a5a5; */
    max-height: 400px;
    /* object-fit: cover; */
}

.image-carousel.carousel-fade .carousel-item {
    /* padding: 25px 40px; */
    /* height: 400px; */
    width: auto;
    margin-inline: auto;
    height: 450px;
}

.image-carousel.carousel-fade .carousel-item .carousel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.image-carousel .carousel-control-prev {
    left: -5%;
}

.image-carousel .carousel-control-next {
    right: -5%;
}

.carousel-item-caption {
    text-align: left;
    color: white;
    margin-top: 10px;
    text-align: center;
    font-size: 17px;
    height: 30px;
}

.carousel-indicators {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-top: 12px;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators [data-mdb-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    max-height: 50px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.7;
    margin: 0 5px;
    border: 3px solid var(--primary-color);
    transition: opacity 0.6s ease;
}

.carousel-indicators [data-mdb-target] img {
    height: 100%;
    border-radius: 0 !important;
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-dark .carousel-indicators [data-mdb-target] {
    background-color: #000;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-image: none;
    position: relative;
}

.carousel-control-prev-icon::after {
    content: '\f053';
}

.carousel-control-next-icon::after {
    content: '\f054';
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    font: var(--fa-font-solid);
    position: absolute;
    top: 0;
    left: 5px;
    color: white;
    font-size: 34px;
}

.fade {
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

#videoslider .videoslider {
    padding: 10px;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-image {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed;
}

.ripple-wave {
    --mdb-ripple-wave-cubicBezier: cubic-bezier(0, 0, 0.15, 1);
    --mdb-ripple-wave-border-radius: 50%;
    --mdb-ripple-wave-opacity: 0.5;
    --mdb-ripple-wave-transform: scale(0);
    --mdb-ripple-wave-z-index: 999;
    --mdb-ripple-wave-active-transform: scale(1);
    background-image: radial-gradient(
            circle,
            rgba(0, 0, 0, 0.2) 0,
            rgba(0, 0, 0, 0.3) 40%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.5) 60%,
            transparent 70%
    );
    border-radius: var(--mdb-ripple-wave-border-radius);
    opacity: var(--mdb-ripple-wave-opacity);
    pointer-events: none;
    position: absolute;
    touch-action: none;
    transform: var(--mdb-ripple-wave-transform);
    transition-property: transform, opacity;
    transition-timing-function: var(--mdb-ripple-wave-cubicBezier),
    var(--mdb-ripple-wave-cubicBezier);
    z-index: var(--mdb-ripple-wave-z-index);
}

.hover-overlay .mask {
    --mdb-image-hover-transition: all 0.3s ease-in-out;
    opacity: 0;
    transition: var(--mdb-image-hover-transition);
}

.hover-overlay .mask:hover {
    opacity: 1;
}

.hover-zoom {
    --mdb-image-hover-zoom-transition: all 0.3s linear;
    --mdb-image-hover-zoom-transform: scale(1.1);
}

.hover-zoom img,
.hover-zoom video {
    transition: var(--mdb-image-hover-zoom-transition);
}

.hover-zoom:hover img,
.hover-zoom:hover video {
    transform: var(--mdb-image-hover-zoom-transform);
}

.card.hover-shadow,
.card.hover-shadow-soft,
.hover-shadow,
.hover-shadow-soft {
    --mdb-image-hover-shadow-transition: all 0.3s ease-in-out;
    transition: var(--mdb-image-hover-shadow-transition);
}

.card.hover-shadow-soft:hover,
.card.hover-shadow:hover,
.hover-shadow-soft:hover,
.hover-shadow:hover {
    transition: var(--mdb-image-hover-shadow-transition);
}

.card.hover-shadow,
.hover-shadow {
    --mdb-image-hover-shadow-box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.16),
    0 10px 20px -2px rgba(0, 0, 0, 0.1);
    box-shadow: none;
}

.card.hover-shadow:hover,
.hover-shadow:hover {
    box-shadow: var(--mdb-image-hover-shadow-box-shadow);
}

/* <----------------Image/Video Gallery-slider-start------------------> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< COLLEGE DETAILS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/*************************************************Filter-search**************************************************/
.filter-search-part {
    /* border-bottom: 5px solid rgb(205 191 207); */
    /* border-top: 5px solid rgb(205 191 207); */
    padding: 10px 5px 10px 5px;
}

.filter-search-part-small {
    padding: 10px 0px 0px 10px;
}

.filter-wrapper-college {
    width: 20%;
}

.filter-wrapper-course {
    width: 33.33%;
}

.filter-search-part .filter-wrapper-college .levels-filter,
.filter-search-part .filter-wrapper-course .levels-filter {
    height: 300px;
    padding: 5px;
    overflow-y: auto;
    overflow-x: auto;
}

.filter-search-part .filter-wrapper-college .levels-filter .form-check,
.filter-search-part .filter-wrapper-course .levels-filter .form-check {
    min-height: 2rem;
    font-size: 14px;
    margin-bottom: 6px;
}

.filter-search-part .filter-wrapper-college .levels-filter li label,
.filter-search-part .filter-wrapper-course .levels-filter li label {
    line-height: 1.6;
}

.filter-search-part
.filter-wrapper-college
.levels-filter
.form-check-input[type='checkbox'],
.filter-search-part
.filter-wrapper-course
.levels-filter
.form-check-input[type='checkbox'] {
    width: 15px;
    height: 15px;
}

.filter-search-part .filter-wrapper-college .levels-filter,
.filter-search-part .filter-wrapper-course .levels-filter {
    padding-left: 0 !important;
}

.filter-search-part .filter-wrapper-college .filter-header h5,
.filter-search-part .filter-wrapper-course .filter-header h5 {
    /* font-size: calc(0.3vw + 0.4vh + 1.6vmin);
    padding: 2px 0; */
}

.filter-search-part-small .filter-wrapper-small {
    padding-bottom: 20px;
}

.filter-search-part-small .filter-wrapper-small .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 15px;
}

.filter-search-part-small .filter-wrapper-small .collapse-vertical {
    max-height: 200px;
    overflow: auto;
}

.filter-search-part-small .filter-wrapper-small .filter-header span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
}

.filter-button-heading {
    display: flex;
    justify-content: flex-end;
}

.filter-button-heading span {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 24px;
    color: var(--primary-color);
}

.filter-search-part .filter-wrapper-college h5,
.filter-search-part .filter-wrapper-course h5,
.filter-search-part-small .filter-wrapper-small h5 {
    color: #000;
    font-size: 18px;
}

.filter-search-part .filter-wrapper-college h5 button,
.filter-search-part .filter-wrapper-course h5 button,
.filter-search-part-small .filter-wrapper-small h5 button {
    padding: 0;
    border: none;
    background: white;
    color: var(--primary-color);
}

.filter-search-part .filter-wrapper-college h5 button:focus,
.filter-search-part .filter-wrapper-course h5 button:focus,
.filter-search-part-small .filter-wrapper-small h5 button:focus {
    background: none;
    border-color: none;
    outline: 0;
    box-shadow: none;
}

.filter-search-part .filter-wrapper-college h5 button i,
.filter-search-part .filter-wrapper-course h5 button i {
    color: var(--primary-color);
}

.levels-filter h5 {
    color: var(--primary-color);
    padding-bottom: 10px;
}

.levels-filter .form-check-input[type='checkbox'] {
    width: 15px;
    height: 15px;
    margin-top: 5px;
}

.search-input-filter {
    padding: 5px;
    font-size: 15px;
    width: 90%;
    margin-bottom: 5px;
    border: 1px solid #d7d7d7;
    border-radius: 3px;
}

.search-input-filter::placeholder {
    color: rgb(153, 153, 153);
}

.search-input-filter:hover {
    /* border: 1px solid rgb(190, 111, 190) !important; */
    outline: none;
}

.search-input-filter:focus {
    border-color: grey;
    outline: none;
}

.search-input-filter:active {
    border-color: grey;
    outline: none;
}

.search-input-filter-small {
    padding: 8px;
    font-size: 14px;
    width: 97% !important;
    margin: 3px;
    border: 1px solid grey;
}

.search-input-filter-small:hover {
    border: 1px solid rgb(190, 111, 190) !important;
    outline: none;
}

.search-input-filter-small:focus {
    border: 1px solid var(--hover-color);
    border-color: grey;
    outline: none;
}

.search-input-filter-small:active {
    border: 1px solid var(--hover-color);
    border-color: grey;
    outline: none;
}

.form-check {
    min-height: 2rem;
    font-size: 14px;
}

.form-check-input:checked {
    background-color: #c578e6;
    border-color: #c578e6;
}

#filterModal .modal-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.filter-search-button {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
}

.filter-search-button:hover {
    background: var(--main-color);
}

.filter-search-button:focus {
    background: var(--main-color);
    outline: none;
}

.filter-search-button:active {
    background: var(--main-color);
    opacity: 0.6;
}

.close-button-filter {
    background: var(--main-color);
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    border: none;
}

.close-button-filter:hover {
    background: var(--main-color);
    color: white;
}

.go-back-button {
    border: none;
    color: white;
    background: none;
}

.go-back-button:hover {
    color: var(--main-color);
}

@media (min-width: 991.98px) {
    .filter-search-part-small {
        display: block;
    }

    .filter-search-button,
    .filter-button-heading span {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .filter-search-part {
        display: none;
    }

    .filter-search-button {
        display: block;
    }

    .filter-button-heading span {
        display: inline !important;
    }
}

/*************************************************Filter-search-end**************************************************/

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> COLLEGE/COURSE SEARCH >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.btn-primary.btn-college-search.btn {
    background: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 0;
    font-size: 16px;
    width: 126px;
    padding: 8px 13px;
    margin-right: 6px;
    color: white;
    margin-top: 28px;
}

.college-search-form .form-select {
    padding: 1px 8px !important;
    border: 1px solid #59657073;
    border-radius: 5px;
}

.college-search-form.course-form {
    top: 30px !important;
}

.college-search-form .mb-2 select:focus {
    color: #9e9e9e;
}

.college-search-form option {
    color: black;
}

.search-box-block {
    padding: 10px;
    border-radius: 4px;
}

.college-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    box-shadow: 1px 1px 10px 6px #ddd;
    padding: 15px 2px 6px 2px;
    margin: 10px 5px;
    transition: 0.2s ease-out 50ms;
    border-radius: 15px;
    height: 240px;
}

.college-block:hover {
    box-shadow: 1px 1px 10px 6px #bab7bc;
}

.college-image-part {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 3px;
    justify-content: center;
    display: flex;
    height: 120px;
}

.college-image-part img {
    max-width: 200px;
    vertical-align: middle;
    max-height: 400px;
}

.college-name {
    display: flex;
    justify-content: center;
    align-items: center;
}

.college-name h5 {
    margin: 0;
    color: #602070;
    max-height: 50px;
}

.college-text-part {
    font-size: 12px;
    margin-top: 10px;
    list-style: none;
    font-weight: 500;
}

/* .btn-search-home {
  position: absolute;
  bottom: -40px;
} */

.content-text-part a {
    text-decoration: none;
}

ol.college-list-course li a,
ol.related-colleges li a {
    text-decoration: none;
    color: var(--primary-color);
}

ol.college-list-course li a:hover,
ol.related-colleges li a:hover {
    color: var(--primary-light-color);
}

h6.ad-block-title {
    /* padding: 5px; */
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
    animation: heartbeat 1.5s ease-in-out infinite both;
    text-shadow: 5px 30px 30px rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

h6.ad-block-title a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

h6.ad-block-title a span {
    color: var(--main-color);
}

.course-block-wrapper {
    display: flex;
    row-gap: 22px;
}

.course-block {
    word-wrap: break-word;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px;
    transition: background-color 0.2s ease-out 50ms;
    border-radius: 15px;
    height: 100%;
}

.course-block:hover {
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.course-block a {
    text-decoration: none;
}

.course-text-part {
    padding: 10px;
}

.course-text-part {
    color: var(--primary-color) !important;
    font-weight: 500 !important;
    line-height: 1.3;
    /* min-height: 72px; */
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 54px;
}

.course-text-part:hover {
    color: var(--primary-light-color) !important;
}

.course-affilation-part {
    padding: 20px;
    color: #000;
}

.affilation-name {
    text-align: center;
    line-height: 1.1em;
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */
    overflow: hidden;
    font-size: 1em;
    /* min-height: 37px !important; */
    margin-bottom: 10px;
}

.course-text-part h6 {
    margin: 0;
    color: #602070;
    line-height: 1.1em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 54px;
}

.course-image-part {
    width: 120px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    margin-bottom: 3px;
    justify-content: center;
    display: flex;
}

.course-image-part img {
    width: 100%;
    max-width: 200px;
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< COLLEGE/COURSE SEARCH <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> AFFILATIONS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.content-block-wrap h4 {
}

.uni-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 15px 2px 6px 2px;
    margin: 10px 5px;
    transition: background-color 0.2s ease-out 50ms;
    border-radius: 15px;
    height: 230px;
    justify-content: center;
    align-items: center;
}

.uni-block a {
    text-decoration: none;
    color: black;
    transition: background-color 0.5s ease-out 50ms;
}

.uni-block h5 {
    font-size: 16px;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.uni-block:hover {
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.read-more-uni {
    text-decoration: none;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 0;
    padding: 6px 8px;
    margin: 5px;
}

.read-more-uni:hover {
    text-decoration: none;
    background-color: var(--main-color);
    color: #fff;
    padding: 6px 8px;
}

a.read-details {
    color: var(--primary-color) !important;
    font-size: 14px;
    font-weight: bold;
}

a.read-details:hover i {
    transform: translateX(8px);
    transition-duration: 0.5s;
}

a.read-details:hover {
    cursor: pointer;
    border: none !important;
    transform: translateX(8px);
    transition-duration: 0.5s;
}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< AFFILATIONS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> CONTACT US >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.template-box-wrap {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 20px;
    margin: 0px 0 10px 0;
    border-radius: 8px;
    text-align: left;
    letter-spacing: 0.4px;
}

section.template-box-wrap h4 span {
    background: var(--main-color);
    color: #fff;
    padding: 2px 8px;
    font-size: 18px;
    text-transform: uppercase;
}

.template-page-content p {
    letter-spacing: 0;
    line-height: 1.9;
}

.detail-menu-wrapper {
    overflow-wrap: break-word;
}

.detail-menu-wrapper p {
    margin-top: 10px !important;
    letter-spacing: 0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.detail-menu-wrapper .sub-heading-puff,
.detail-menu-wrapper .index {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0;
}

.detail-menu li {
    /* color: var(--primary-color); */
    margin-bottom: 5px;
}

.detail-menu-extra li {
    position: relative;
}

.detail-menu-extra li::before {
    /* font: var(--fa-font-solid);
    content: '\f007';
    position: absolute;
    top: 50%;
    left: -10px;
    font-size: 18px; */
}

.detail-menu li b.detail-heading {
    width: 90px;
    display: inline-block;
    text-align: right;
}

.expert-advice-section {
    margin: 60px 0 40px;
}

.expert-advice-section h5 {
    color: var(--main-color);
    font-size: 21px;
    text-decoration: underline;
    margin-bottom: 10px;
}

.expert-advice-section .template-page-content {
    line-height: 1.7;
}

.contact-detail-image-part {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.contact-detail-image-part img {
    max-height: 150px;
    max-width: 150px;
}

.detail-box-wrap .detail-text {
    width: calc(100% - 300px) !important;
}

.inquiry-section {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 30px;
    margin-top: 40px;
}

@media (min-width: 768px) and (max-width: 991px) {
    section.detail-box-wrap .detail-text {
        font-size: 13px;
        padding: 0px;
        width: calc(100% - 250px) !important;
    }
}

@media (max-width: 991.98px) {
    .contact-detail-image-part {
        justify-content: center;
        /* margin-bottom: 5px; */
    }
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< CONTACT US <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> FORMS >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

section.detail-box-wrap.form-educate h4 {
    border-bottom: 2px solid var(--main-color);
}

.detail-box-wrap.form-educate a {
    text-decoration: none;
    color: #442049;
}

.detail-box-wrap.form-educate a:hover {
    text-decoration: underline;
    color: var(--main-color);
}

section.detail-box-wrap form {
    padding: 20px 20px 0px 20px;
}

.content-block-wrap.form-educate label.col-form-label {
    text-align: right !important;
    text-transform: uppercase;
    font-weight: 500;
    color: #000;
    font-size: 15px;
    min-width: 230px;
}

.content-block-wrap.form-educate input.form-control {
    /* border-radius: 0 !important; */
}

.btn-co-search {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    font-size: 18px;
    padding: 6px 25px;
    margin-right: 7px;
    color: white;
    letter-spacing: 0.6px;
}

.btn-co-search:hover {
    background: var(--main-color);
}

@media screen and (max-width: 991px) {
    .content-block-wrap.form-educate label.col-form-label {
        text-align: left !important;
    }
}

@media screen and (min-width: 575.98px) {
    .btn-co-search {
        text-align: center !important;
    }
}

@media screen and (max-width: 575.98px) {
    .content-block-wrap.form-educate form {
        justify-content: center;
    }

    .content-block-wrap.form-educate label.col-form-label {
        text-align: left !important;
        font-size: 16px;
    }
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< FORMS <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

section.content-block-wrap.page-not-found {
    margin-top: 80px;
    margin-bottom: 100px;
    text-align: left;
}

section.content-block-wrap.page-not-found h2,
section.content-block-wrap.page-not-found h5 {
    text-align: left !important;
}

section.content-block-wrap.page-not-found ul {
    list-style: none;
    margin-left: 0;
    padding-left: 20px;
    margin-top: 40px;
}

section.content-block-wrap.page-not-found ul li {
    padding-left: 1em;
    text-indent: -1em;
    margin: 10px 0;
}

section.content-block-wrap.page-not-found ul li a {
    text-decoration: none;
    color: var(--primary-color) !important;
}

section.content-block-wrap.page-not-found ul li i {
    font-size: 12px;
}

section.page-not-found h2 {
    text-align: center;
    color: rgb(105, 86, 128);
    margin-bottom: 20px;
}

section.page-not-found h5 {
    text-align: center;
    color: rgb(105, 86, 128);
    margin-top: 40px;
    font-size: 24px;
}

.search-page-not-found .search-text {
    font-weight: bold;
    padding: 5px;
    font-size: 20px;
    color: rgb(105, 86, 128);
    letter-spacing: 0.6px;
}

@media screen and (max-width: 991.98px) {
    section.content-block-wrap.page-not-found {
        padding: 0px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767.98px) {
    section.content-block-wrap.page-not-found {
        padding: 20px;
        font-size: 16px;
    }
}

@media screen and (max-width: 575.98px) {
    section.content-block-wrap.page-not-found {
        padding: 12px;
        font-size: 15px;
    }

    section.content-block-wrap.page-not-found ul li {
        font-size: 14px;
    }

    section.page-not-found h2 {
        font-size: 21px !important;
    }

    section.page-not-found h5 {
        font-size: 16px;
    }

    .btn-primary.btn.btn-go-home {
        font-size: 12px;
        padding: 2px 8px;
    }
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< PAGE NOT FOUND <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> FOOTER >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
footer.main-footer-wrap {
    padding: 20px 0;
}

footer.main-footer-wrap .custom-container.footer-main {
    background: #e6e6fa94;
    padding: 30px;
    text-align: center;
}

.footer-heads {
    font-size: 15px;
    color: var(--main-color);
}

.footer-logos .left-section,
.footer-logos .right-section {
    display: flex;
    gap: 15px;
}

.footer-logos img {
    width: 120px;
}

ul.footer-links {
    padding-left: 0;
    font-size: 14px;
}

ul.footer-links li {
    list-style: none;
    padding: 5px 0;
    transition: 0.5s ease;
}

ul.footer-links li a {
    text-decoration: none;
    color: var(--primary-color);
}

ul.footer-links li:hover a {
    /* text-decoration: underline; */
    transition: 0.3s ease;
    color: var(--primary-light-color);
}

ul.footer-quick-links {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
    margin-top: 5px;
}

ul.footer-quick-links li {
    display: inline-block;
    padding: 5px;
    transition: 0.5s ease;
    font-size: 14px;
}

ul.footer-quick-links li:hover {
    transition: 0.5s ease;
}

ul.footer-quick-links li:hover a {
    color: var(--primary-light-color);
}

ul.footer-quick-links li a {
    text-decoration: none;
    color: var(--primary-color);
}

.social-media-bar {
    display: flex;
    justify-content: space-between;
}

.connect-box-footer h6 {
    display: inline;
    color: #898989;
    padding: 5px;
}

.connect-box-footer ul {
    text-align: left;
    padding: 0;
}

.connect-box-footer ul li {
    list-style: none;
    display: inline;
    font-size: 18px;
    padding: 2px;
}

.connect-box-footer ul li .fa-facebook {
    color: #1877f2;
}

.connect-box-footer ul li .fa-twitter {
    color: #1da1f2;
}

.connect-box-footer ul li .fa-youtube {
    color: #ff0000;
}

.connect-box-footer ul li a:hover .fa-facebook {
    filter: saturate(0);
    transition: 0.5s ease;
}

.connect-box-footer ul li a:hover .fa-twitter {
    filter: saturate(0);
    transition: 0.5s ease;
}

.connect-box-footer ul li a:hover .fa-youtube {
    filter: saturate(0);
    transition: 0.5s ease;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-end-bar {
    margin-top: 25px;
}

.footer-logos .right-section {
    text-align: right !important;
}

.social-media-bar .our-associates-footer h6 {
    text-align: right;
    padding: 5px;
    color: #898989;
}

@media (max-width: 575.98px) {
    .footer-logos .right-section {
        text-align: right !important;
    }
}

.mt-4 {
    margin-top: 4px;
}

.copy-section p {
    margin-bottom: 0;
    font-size: 14px;
}

.copy-section span {
    color: #f79d1e;
}

.copy-section a {
    text-decoration: none;
    /* color: rgb(81, 80, 80); */
    color: var(--main-color);
}

.copy-section a:hover {
    color: var(--dark-grey);
}

a.page-link.active-page {
    background-color: #7700918f;
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< FOOTER <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> POP UP >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.modal#popupmodal
.modal-dialog.modal-dialog-centered
.modal-content
.modal-body {
    padding: 0;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.modal#popupmodal
.modal-dialog.modal-dialog-centered
.modal-content
.modal-body
.modal-image {
    margin-left: auto;
    margin-right: auto;
}

.close-popup {
    position: absolute;
    color: red;
    font-size: 25px;
    margin-left: 93%;
    z-index: 7;
    background: none;
    border: none;
}

.close-popup:hover {
    transition: 0.5s ease;
    color: rgb(75, 74, 74);
}

@media (max-width: 480px) {
    .close-popup {
        margin-left: 90%;
    }
}

#popupmodal.open {
    opacity: 1;
    visibility: visible;
}

#popupmodal.open .content {
    transform: scale(1);
}

#popupmodal.open .custom-container.blur {
    filter: blur(2px);
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< POP UP <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> BANNER >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.ad-wrap {
    margin-bottom: 10px;
}

.top-ad-banner {
    padding-top: 10px;
    padding-bottom: 10px;
}

.right-ad-part {
    text-align: left;
}

.right-ad-part h6 a span {
    color: var(--primary-color) !important;
}

.right-ad-part h6 a span:hover {
    /* color: var(--main-color) !important; */
}

.box-ad-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px 0;
}

.box-ad-wrapper > .box-ad-wrap {
    text-align: center;
}

.box-ad-wrap img {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.google-ad-area {
    margin: 10px 0;
}

.ad-sidebar-wrap {
    margin-bottom: 10px;
}

.ad-sidebar-wrap img {
    border: 1px solid #b8b8b8;
}

@media screen and (max-width: 767.98px) {
    .top-ad-banner a img.mobile-banner,
    .ad-wrap a img.mobile-banner {
        display: block;
        width: auto !important;
        max-width: 100%;
        margin-inline: auto;
    }

    .top-ad-banner a img.desktop-banner,
    .ad-wrap a img.desktop-banner {
        display: none;
    }
}

@media screen and (min-width: 767.98px) {
    .top-ad-banner a img.mobile-banner,
    .ad-wrap a img.mobile-banner {
        display: none;
    }

    .top-ad-banner a img.desktop-banner,
    .ad-wrap a img.desktop-banner {
        display: block;
        /* width: auto !important;
        margin-inline: auto;
        max-width: 100%; */
    }
}

@media screen and (max-width: 767.98px) {
    .box-ad-wrapper > .box-ad-wrap a img {
        width: auto !important;
        max-width: 100%;
        /* padding-right: 40px;
        padding-left: 40px; */
    }
}

/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< BANNER <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */

/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>CK EDITOR>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */

.about-us-dynamic-links {
    overflow-wrap: break-word;
}

.ck-editor-description {
    overflow-wrap: break-word;
    font-size: inherit !important;
    line-height: 1.9;
}

.ck-editor-description table tbody td {
    border: 0.5px solid black;
    padding: 2px !important;
}

.ck-editor-description table tbody th {
    background-color: #ffccff;
    border: 0.5px solid black;
    text-align: center;
    padding: 5px !important;
}

.ck-editor-description table {
    border: 0.5px solid black;
}

.small {
    font-size: inherit !important;
}

.levels-filter {
    list-style: none;
    padding: 10px 0;
}

.levels-filter .form-check {
    margin-bottom: 5px;
}

.levels-filter li label {
    line-height: 1.6;
}

.search-menu-wrapper::-webkit-scrollbar-track,
.news-reel::-webkit-scrollbar-track,
.filter-wrapper-small::-webkit-scrollbar-track,
.navbar-nav::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
    background-color: #f5f5f5;
}

.search-menu-wrapper::-webkit-scrollbar,
.news-reel::-webkit-scrollbar,
.-filter::-webkit-scrollbar,
.filter-wrapper-small::-webkit-scrollbar,
.navbar-nav::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    background-color: #f5f5f5;
    /* border-radius: 30px; */
}

.search-menu-wrapper::-webkit-scrollbar-thumb,
.news-reel::-webkit-scrollbar-thumb,
.filter-wrapper-small::-webkit-scrollbar-thumb,
.navbar-nav::-webkit-scrollbar-thumb {
    /* border-radius: 10px; */
    /* scrollbar-width: thin; */
    /* -webkit-box-shadow: inset 0 0 6px rgb(136, 136, 136); */
    height: 5px;
    background-color: rgb(204 204 204);
}

.search-menu-wrapper,
.news-reel,
.filter-wrapper-small,
.navbar-nav {
    /* scrollbar-width: thin; */
    scrollbar-color: rgb(155, 153, 153) transparent;
}

.levels-filter::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

.levels-filter::-webkit-scrollbar-track {
    background-color: #f2f2f2;
}

.levels-filter::-webkit-scrollbar-thumb {
    background: #d0d0d0;
}

/* Code for Mozilla Firefox */

.search-menu-wrapper,
.news-reel,
.levels-filter,
.filter-wrapper-small {
    /* scrollbar-width: thin; */
    scrollbar-color: rgb(155, 153, 153) transparent;
}

/*  To customize the sliding buttons*/

.levels-filter::-webkit-scrollbar-button:single-button {
    /* background-color: #082032; */
    display: block;
    background-size: 10px;
    background-repeat: no-repeat;
}

/* Up */
.levels-filter::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-radius: 5px 5px 0 0;
    height: 16px;
    width: 16px;
    background-position: center 4px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(161, 19, 127)'><polygon points='50,00 0,50 100,50'/></svg>");
    /* background-image: url("data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width='100' height='100' fill='rgb(161, 19, 127)' viewBox="0 0 448 512"><path d="M201.4 342.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 274.7 86.6 137.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z"/></svg>"); */
}

/* ::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(6, 222, 225)'><polygon points='50,00 0,50 100,50'/></svg>");
} */

.levels-filter::-webkit-scrollbar-button:single-button:vertical:decrement:active {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(128, 128, 128)'><polygon points='50,00 0,50 100,50'/></svg>");
    /* background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(161, 19, 127)'><polygon points='50,00 0,50 100,50'/></svg>"); */
}

/* Down */
.levels-filter::-webkit-scrollbar-button:single-button:vertical:increment {
    border-radius: 0px 0px 5px 5px;
    height: 16px;
    width: 16px;
    background-position: center 4px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(161, 19, 127)'><polygon points='0,0 100,0 50,50'/></svg>");
}

/* ::-webkit-scrollbar-button:single-button:vertical:increment:hover {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(6, 222, 225)'><polygon points='0,0 100,0 50,50'/></svg>");
} */

.levels-filter::-webkit-scrollbar-button:single-button:vertical:increment:active {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(161, 19, 127)'><polygon points='0,0 100,0 50,50'/></svg>");
}

/* pagination starts */

.page-item .page-link {
    padding: 4px 12px;
}

/* pagination ends */

/* breadcrumb starts */

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0;
    margin-left: -10px;
}

/* breadcrumb ends */

/* news-details-page starts */

.posted-date {
    color: var(--main-color);
}

/* news-details-page ends */

.video-slider {
    position: relative;
    width: 90%;
    margin-inline: auto;
}

.video-slider .slick-slide {
    margin: 5px;
}

.video-slider .slick-prev {
    position: absolute;
    top: 50%;
    left: -80px;
    width: auto;
    background: var(--primary-color);
    color: white;
}

.video-slider .slick-prev::after {
    /* content: '\f104'; */
    font: var(--fa-font-solid);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: absolute;
    top: 0;
    left: 10px;
    background: #992083;
}

.video-slider .slick-next::after {
    /* content: '\f104'; */
    font: var(--fa-font-solid);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: absolute;
    top: 0;
    right: 10px;
    background: #992083;
}

.video-slider .slick-next {
    position: absolute;
    top: 50%;
    right: -59px;
    width: auto;
    background: var(--primary-color);
    color: white;
}

.notice-detail-inquiry-content .col-md-12,
.notice-detail-inquiry-content p {
    line-height: 1.9 !important;
}

.notice-detail-inquiry-content .news-main-image {
    margin: 20px 0;
}

.toast-wrapper {
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
}

.toast-wrapper .toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.toast-wrapper .toast-container .toast {
    width: 450px !important;
    background: white;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.toast-wrapper .toast-container .toast .toast-body {
    text-align: center;
}

.toast-wrapper .toast-container .toast .toast-body img {
    width: 60px;
}

.toast-wrapper .toast-container .toast .toast-body h4 {
    font-size: 19px;
    margin: 20px 0;
    font-weight: bold;
}

.toast-wrapper .toast-container .toast .toast-footer button {
    background-color: var(--primary-color) !important;
    padding: 8px 20px;
    color: #fff;
}

.toast-footer {
    border: 1px solid #726e6e;
    padding: 2px;
    border-radius: 6px;
}

.add-layer{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.7);
}

.overlay:target{

    visibility: hidden;
    opacity: 0.9;
}

.program-list .program-name {
    color: #252525;
    display: inline-block;
    margin-bottom: 10px;
}

.promotion-link {
    text-transform: capitalize;
    text-decoration: underline;
    margin: 20px 0;
    display: block;
}


/*.carousel-control-next {*/
/*  background-color: red !important;*/
/*  padding: 10px 30px;*/
/*  border-radius: 5px;*/
/*}*/

/*.carousel-control-next:hover {*/
/*  color: var(--hover-color) !important;*/
/*}*/

/* End of CSS Styles */
/* 
@media (min-width: 576px) {
	.container,
	.container-sm {
	  max-width: 95%;
	}
  } */
@media (max-width: 1200px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 95%;
    }

    .image-carousel .carousel-inner .carousel-item {
        height: 400px;
    }

    .image-carousel .carousel-inner .carousel-item img {
        max-height: 330px;
    }
}

@media (max-width: 992px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 98%;
    }

    .image-carousel.carousel-fade .carousel-item {
        padding: 20px;
    }

    .carousel-control-prev-icon::after {
        left: 5px;
        font-size: 28px;
    }

    .carousel-control-next-icon::after {
        right: 0px;
        font-size: 28px;
    }

    h6.ad-block-title {
        text-align: center;
    }

    .ad-sidebar-wrap {
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 1200px) {
    .college-course-search-item {
        width: 100%;
    }

    .course-search-box {
        min-height: 350px;
        margin-bottom: 20px;
    }

    section.co-search-box-wrap h4 {
        font-size: 19px;
    }

    .co-search-box-body .co-search-box-text h5 {
        font-size: 25px;
    }

    .co-search-box-body .co-search-box-text p {
        font-size: 16px;
    }

    .course-text-part {
        font-size: 16px;
    }

    .course-image-part {
        width: 100px;
    }

    .affilation-name,
    .course-affilation-part {
        font-size: 15px;
    }

    .article-title-block h2 {
        font-size: 44px;
    }
}

@media screen and (max-width: 992px) {
    .search-bar-component .search-bar-wrapper {
        margin-inline: auto;
        min-width: 80%;
    }

    .main-nav-bar {
        /* display: none; */
    }

    .expert-advice-section h5 {
        font-size: 19px;
    }

    .connect-box h6 {
        font-size: 15px;
    }

    .connect-box ul li {
        font-size: 14px;
    }

    .article-title-block h2 {
        font-size: 40px;
    }

    .co-search-box-body .co-search-box-text h5 {
        font-size: 23px;
    }
}

@media screen and (min-width: 769px) {
    .gsib_a {
        padding: 5px 9px 4px 9px !important;
    }
}

@media screen and (max-width: 769px) {
    .home-search.co-search-box-wrap {
        display: block;
    }

    .course-search-box {
        display: none;
    }

    .content-text-part h5 {
        font-size: 15px;
    }

    .search-menu-wrapper {
        text-align: left !important;
        overflow: auto;
    }

    .course-search-box .content img {
        position: relative;
    }

    .course-search-box .content .col:nth-of-type(2) {
        flex-basis: 100%;
    }

    .course-search-box .heading h4 {
        font-size: 16px;
    }

    .course-search-box .heading h5 {
        font-size: 17px;
    }

    .co-search-box-body .img-wrapper {
        border: 1px solid #b4b4b4;
        display: block;
        width: 100%;
        border-radius: 8px;
    }

    .btn-primary.btn-educate {
        font-size: 15px;
    }

    .common-heading {
        font-size: 16px;
    }

    .social-media-bar {
        flex-wrap: wrap;
    }

    .social-media-bar .our-associates-footer {
        flex-basis: 100%;
    }

    .detail-menu li b.detail-heading,
    ul.about-detail li .course-detail-heading {
        width: auto;
    }

    .social-media-bar .our-associates-footer h6 {
        text-align: left;
    }

    .footer-logos {
        justify-content: center;
    }

    .connect-box h6 {
        font-size: 16px;
    }

    .connect-box ul li {
        font-size: 14px;
    }

    .hamburger-menu a {
        font-size: 26px;
        padding: 0;
    }

    .expert-advice-section h5 {
        font-size: 18px;
    }

    .detail-menu-wrapper {
        font-size: 15px;
    }

    .inquiry-section {
        padding: 15px 10px;
    }

    .content-block-wrap.form-educate label.col-form-label {
        font-size: 14px;
    }

    .content-block-wrap.form-educate input.form-control,
    .form-control {
        font-size: 14px;
    }

    .common-main-btn {
        font-size: 15px;
    }

    .footer-logos img {
        width: 100px;
    }

    .content-block {
        padding: 15px;
    }

    .content-image-part img {
        width: 70px;
        height: 70px;
    }

    .article-title-block {
        flex-direction: column;
    }

    .article-title-image-part {
        display: flex !important;
        justify-content: center;
    }

    .article-title-block h2 {
        text-align: center;
    }

    .article-title-text-part span {
        display: block;
        text-align: center;
        font-size: 15px;
        color: #777676;
    }

    ul.share-socials {
        flex-wrap: wrap;
    }

    ul.share-socials li i {
        height: 23px;
        width: 23px;
    }

    section.content-block-wrap .program-name {
        font-size: 19px;
    }

    .content-block-wrap .program-list {
        padding: 10px;
    }

    .box-shadow-wrapper {
        padding: 15px 10px;
    }

    .detail-text-part h5 {
        font-size: 19px;
    }

    .content-block-wrap a h6 {
        /* font-size: 15px; */
    }

    ol.breadcrumb li a {
        font-size: 15px;
    }

    .co-search-box-body {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    section.co-search-box-wrap h4 {
        font-size: 17px;
    }

    .co-search-box-body .co-search-box-text h5 {
        font-size: 19px;
    }

    .co-search-box-body .co-search-box-text p {
        font-size: 15px;
    }

    .co-search-box-body .co-search-box-text p span {
        font-size: 16px;
    }

    .course-image-part {
        width: 80px;
    }

    .article-title-image-part img {
        width: 100px;
    }

    .article-title-block h2 {
        font-size: 30px;
        margin-bottom: 15px;
        text-align: center;
    }

    .article-title-block .article-title-text-part h2 {
        font-size: 30px;
    }

    ul.sub-menu-up li a,
    ul.sub-menu li a {
        font-size: 14px;
    }

    ol.college-list-course li a,
    ol.related-colleges li a {
        font-size: 15px;
    }

    .content-block {
        margin-bottom: 20px;
    }

    ul.sub-menu-up li:nth-child(2) {
        font-size: 13px;
    }

    .search-page-not-found .search-text {
        font-size: 18px;
    }

    section.content-block-wrap.page-not-found {
        margin-top: 20px;
    }

    .gsc-search-button-v2 svg {
        width: 13px !important;
    }

    .inquiry-primary-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .contact-detail-image-part {
        margin: 20px 0 30px;
    }

    ul.about-detail li {
        flex-wrap: wrap;
    }

    ul.about-detail li .left {
        flex-basis: auto;
    }

    .template-box-wrap {
        padding: 20px 10px;
    }

    .image-carousel {
        padding: 0;
    }

    .carousel-item-caption {
        padding: 5px;
    }

    .carousel-indicators {
        display: none;
    }

    .program-list .program-name {
        font-size: 19px;
    }
}

@media screen and (max-width: 500px) {
    .content-block {
        padding: 10px;
    }

    .carousel-control-next-icon::after {
        right: 10px;
    }

    .carousel-control-prev-icon::after {
        left: 10px;
    }
}

