/* Global css */

@import url("https://cdnjs.cloudflare.com/ajax/libs/line-awesome/1.3.0/line-awesome/css/line-awesome.min.css");
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

/*font-family: 'Oswald', sans-serif;*/

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    width: 100%;
    height: 100%;
}

body {
    color: #222;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    min-width: 360px;
    width: 100%;
}

button,
input[type="submit"],
input[type="search"],
a {
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
    color: #3C0008;
}

a.text-link {
    color: #0600ff;
}

a:focus {
    outline: none!important;
    outline-offset: inherit!important;
    text-decoration: none!important;
}

button:focus {
    outline: none;
}

a,
img {
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

label {
    font-weight: 400;
    font-size: 15px;
    line-height: normal;
    margin-bottom: 0;
}

dl,
ol,
ul {
    list-style-position: inside;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 600;
}

p {
    display: block;
    margin: 0;
    padding: 0 0 15px;
    word-wrap: break-word;
    letter-spacing: .2px;
}

.check-custom input[type="checkbox"] {
    display: none;
}

.check-custom input[type="checkbox"]+label {
    background: rgba(0, 0, 0, 0) url('../images/chkbox.png') no-repeat left top;
    font-weight: 300;
    line-height: 22px;
    margin: 0;
    min-height: 22px;
    min-width: 22px;
    padding: 0 0 0 30px;
    margin-right: 10px;
}

.check-custom input[type="checkbox"]:checked+label {
    background-image: url('../images/chkbox-chacked.png');
}

.radio-custom input[type="radio"] {
    display: none;
}

.radio-custom input[type="radio"]+label {
    background: rgba(0, 0, 0, 0) url('../images/chkbox.png') no-repeat left top;
    font-weight: 300;
    line-height: 22px;
    margin: 0;
    min-height: 22px;
    min-width: 22px;
    padding: 0 0 0 30px;
    margin-right: 10px;
}

.radio-custom input[type="radio"]:checked+label {
    background-image: url('../images/chkbox-chacked.png');
}

.form-group {
    display: block;
    position: relative;
    float: left;
    width: 100%;
}

.form-control {
    background: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow: none;
    color: #555555;
    font-size: 14px;
    font-weight: 300;
    height: 48px;
    padding: 0 15px;
}

.with-left-icon .form-control {
    padding-left: 58px;
}

.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 none;
}

*:focus {
    outline: none;
}

select,
select.form-control {
    height: 48px !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 28px;
    padding-left: 8px;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
}

select option {
    background: #fff;
    padding: 5px 10px;
    font-size: 14px;
    color: #000;
    border-bottom: 1px solid #ddd;
}

select option:last-child {
    border-bottom: none;
}

.select-upper {
    float: left;
    width: 100%;
    position: relative;
}

.select-upper::after {
    content: "\f078";
    color: #666;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    text-decoration: inherit;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    text-shadow: none;
}

.select-upper.no-arrow::after {
    display: none;
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
    height: auto;
    padding: 10px;
}

.inp-left-icon {
    position: relative;
}

.inp-left-icon::after {
    content: "\f0d7";
    color: #fff;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    text-decoration: inherit;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    text-shadow: none;
}


/* Buttons CSS */

.btn-inline {
    margin-bottom: 15px;
}

.btn-inline .btn {
    margin: 0 5px 5px 5px;
}

.btn:focus {
    outline: normal;
    box-shadow: none !important;
}

.btn-custom {
    height: 36px;
    padding: 0 15px;
    line-height: 33px;
    min-width: 130px;
    color: #fff;
    background: var(--primary);
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    text-shadow: none;
    border: 1px solid var(--primary);
    font-family: 'Open Sans', sans-serif;
    text-transform: capitalize;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.btn-custom:hover,
.btn-custom:focus {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.hvr-sweep-to-right {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: white;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.relative {
    position: relative;
}

.col-centered {
    float: none;
    margin: 0 auto;
}

.no-gutter {
    padding: 0;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.full {
    width: 100%;
}

hr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.container {
    width: 90%;
    max-width: 1410px;
}

.link-blue {
    color: #224e96;
}

.link-blue i {
    margin: 0 5px;
    vertical-align: middle;
}

.link-blue:hover {
    color: #ff9301;
}

.underline {
    text-decoration: underline;
}

.paddTB80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.paddT80 {
    padding-top: 80px;
}

.paddB80 {
    padding-bottom: 80px;
}

.bg-lightgray {
    background: #F9F9F9;
}

.marB0 {
    margin-bottom: 0 !important;
}


/* For Placeholder Color */

input::-webkit-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

input:-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

input::-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

input:-ms-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea::-webkit-input-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea:-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea::-moz-placeholder {
    color: #666 !important;
    opacity: 1;
}

textarea:-ms-input-placeholder {
    color: #666 !important;
    opacity: 1;
}


/*Header*/

header {
    background: var(--white);
    width: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fixed {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
}

.header-top {
    min-height: 43px;
    background: var(--secondary);
    display: flex;
    align-items: center;
}

.header-top .col-12 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top .emails {
    display: flex;
}

.header-top .emails p {
    color: #fff;
    padding-bottom: 0;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.header-top .emails p img {
    margin-right: 5px;
}

.header-top .emails p span {
    margin-right: 5px;
}

.header-mode {
    display: flex;
}

.header-mode a {
    color: var(--primary);
    background-color: var(--white);
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    font-size: 12px;
    margin-left: 8px;
}

.header-mode a.active,
.header-mode a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.header-mode a:last-child {
    margin-right: 0;
}

.header-links {
    margin-left: auto;
    margin-right: 15px;
}

.header-links a {
    color: #fff;
    padding-left: 15px;
    font-weight: 500;
}

.header-links a:hover {
    color: var(--primary);
}


/* Site languages */

.header-lang {
    margin-left: auto;
    margin-right: 5px;
}

.lang-btns a {
    color: var(--white);
}

body.lang-en lang[type="en"] {
    display: contents;
}

body.lang-en lang[type="hi"] {
    display: none;
}

body.lang-hi lang[type="hi"] {
    display: contents;
}

body.lang-hi lang[type="en"] {
    display: none;
}

body.lang-hi .btn-en {
    display: block;
}

body.lang-en .btn-en {
    display: none;
}

body.lang-en .btn-hi {
    display: block;
}

body.lang-hi .btn-hi {
    display: none;
}


/* Site languages */

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 142px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    flex-shrink: 0;
}

.logo img {
    display: block;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}


/* .logo-middle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
} */

input::-ms-clear,
input::-ms-reveal {
    display: none !important;
}

.head-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.head-right-logoes {
    display: flex;
}

.head-right-logoes a {
    margin-left: 7px;
}

.head-right-btns {
    display: flex;
}

.head-right-btns a {
    border-radius: 3px;
    height: 33px;
    padding: 7px 15px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 19px;
    background-color: #363991;
    color: #fff;
    margin-left: 10px;
}

.head-right-logoes a img {
    border-radius: 5px;
    border: 1px solid #dddddd;
    max-height: 65px;
}

.head-right-btns a.btn-red {
    background-color: #E6646E;
}

.head-content {
    padding-top: 15px;
}

.head-content.for-mobile {
    display: none;
}

.head-content p {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 27px;
    text-align: right;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    padding-bottom: 0;
}

.header-menu {
    display: flex;
    gap: 10px;
}

.header-menu a {
    background: var(--white);
    font-size: 14px;
    border-radius: 3px;
    padding: 3px 15px;
    line-height: normal;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.header-menu a.login {
    position: relative;
    padding-right: 40px;
}

.login::after {
    position: absolute;
    content: "\f30b";
    height: 100%;
    width: 27px;
    background: var(--yellow);
    right: 0;
    top: 0;
    border-radius: 0 3px 3px 0;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}


/* Main Navbar */

.main-navbar {
    display: flex;
    background: var(--primary);
    padding: 0px 0;
}

.main-navbar.primary-navbar {
    background: transparent;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.collapse.navbar-collapse {
    justify-content: space-around;
}

.main-navbar.primary-navbar .collapse.navbar-collapse {
    justify-content: flex-end;
}

.main-navbar .navbar-dark {
    padding: 0;
}

.main-navbar .navbar-dark .navbar-nav {}

.main-navbar .navbar-dark.nav-secondary .navbar-nav .nav-link {
    padding: 18px 10px;
    position: relative;
}

.main-navbar .navbar-dark.nav-secondary .navbar-nav .nav-item .nav-link::before {
    position: absolute;
    left: 10px;
    bottom: 5px;
    width: 0;
    height: 2px;
    content: "";
    background: #dd1c1a;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.main-navbar .navbar-dark.nav-secondary .navbar-nav .nav-item:hover .nav-link::before {
    width: calc(100% - 20px);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.main-navbar .navbar-dark.nav-primary .navbar-nav {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: flex-end;
}

.main-navbar .navbar-dark .navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.main-navbar .navbar-dark .navbar-nav .nav-item:hover .nav-link {
    color: var(--secondary);
    background: var(--primary);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.main-navbar .navbar-dark.nav-primary .navbar-nav .nav-item:hover .nav-link {
    color: var(--secondary);
    background: transparent;
}

.main-navbar .navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    line-height: 16px;
    transition: all .3s ease;
    text-transform: uppercase;
}

.main-navbar .navbar-dark.nav-primary .navbar-nav .nav-link {
    color: var(--text-color);
}

.main-navbar .navbar-dark .navbar-nav .nav-link.dropdown-toggle::after {
    margin-left: 7px;
    font-size: 12px;
}

.main-navbar .navbar-dark .navbar-nav .nav-link:focus,
.main-navbar .navbar-dark .navbar-nav .nav-link:hover,
.main-navbar .navbar-dark .navbar-nav .nav-link.active {
    color: var(--secondary);
    background: var(--primary);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.main-navbar .navbar-dark.nav-primary .navbar-nav .nav-link:focus,
.main-navbar .navbar-dark.nav-primary .navbar-nav .nav-link:hover,
.main-navbar .navbar-dark.nav-primary .navbar-nav .nav-link.active {
    background: transparent;
    color: var(--secondary);
}

.main-navbar .btn {
    min-width: 145px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.main-navbar .navbar-dark .navbar-nav .dropdown-menu {
    padding: 0;
    margin-top: 0;
    border-radius: 0;
    top: calc(100% - 1px);
    min-width: 200px;
}

.main-navbar .navbar-dark .navbar-nav .dropdown-menu li a {
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.main-navbar .navbar-dark .navbar-nav .dropdown-menu li a:hover {
    background: var(--primary);
    color: #fff;
}

.main-navbar .navbar-dark .navbar-nav .nav-item.dropdown:hover>ul {
    display: block;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu {
    position: relative;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu>a.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu>a.dropdown-toggle::after {
    margin-left: 10px;
    font-size: 14px;
}

.main-navbar .navbar-dark .navbar-nav .nav-item .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}


/* .main-navbar .navbar-dark .navbar-nav .nav-item:last-child .dropdown-submenu .dropdown-menu {
    left: inherit;
    right: 100%;
} */

.main-navbar .navbar-dark .navbar-nav .nav-item.last-menu .dropdown-submenu .dropdown-menu {
    left: inherit;
    right: 100%;
}

.main-navbar .navbar-dark .navbar-nav .nav-item.dropdown:hover>ul li:hover>ul {
    display: block;
}

.nav-sec-outer .head-right-logoes {
    display: none;
}


/* Navbar end */

.college-ranking-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.college-ranking-section p {
    padding-bottom: 0;
    padding: 0 25px 0 25px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.main-banner-outer {
    margin-top: 15px;
}

.main-banner {
    position: relative;
    background: #fff;
}

.main-banner .owl-carousel .owl-nav {
    margin-top: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.main-banner .owl-carousel .owl-nav button {
    margin: 0;
    width: 50px;
}

.main-banner .owl-carousel .owl-nav button span {
    font-size: 50px;
    color: #fff;
}

.main-banner .owl-carousel .owl-nav [class*="owl-"]:hover {
    background: transparent;
}

.main-banner .owl-carousel {
    height: 100%;
}

.main-banner .banner-col {
    overflow: hidden;
}

.main-banner .owl-carousel .owl-item .banner-col img {
    width: 100%;
    aspect-ratio: 8/3.5;
    object-fit: cover;
}

.main-banner .banner-col::before {
    background: rgba(0, 0, 0, .3);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    pointer-events: none;
}

.slider-caption {
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 2;
    text-align: center;
    width: 100%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.slider-caption h1 {
    font-size: 54px;
    color: #fff;
    line-height: 75px;
}

.slider-caption p {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    line-height: 44px;
}

.main-slider .owl-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    margin: 0 !important;
    left: 0;
    z-index: 3;
}

.main-slider .owl-dots button span {
    margin: 5px 4px !important;
}

.main-slider .owl-dots .owl-dot.active span,
.main-slider .owl-dots .owl-dot:hover span {
    background: #FF784F;
}

.slider-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background: rgba(0, 0, 0, .7);
    z-index: 2;
    line-height: 44px;
    display: flex;
    align-items: flex-start;
}

.slider-marquee marquee {
    display: flex;
}

.slider-marquee marquee p {
    color: #fff;
    display: inline-block;
    margin-right: 20px;
}

.slider-marquee marquee p a {
    color: var(--secondary);
    font-weight: 600;
}

.slider-marquee a {
    color: #fff;
    display: inline-block;
    margin-right: 25px;
}

.slider-marquee h3 {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    left: 0;
    height: 100%;
    width: 210px;
    text-align: right;
    line-height: 45px;
    font-family: var(--font-body);
    font-weight: 500;
    padding: 0 20px;
    z-index: 2;
    font-size: 24px;
}

.slider-marquee h3::after {
    width: 0;
    height: 0;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 20px solid var(--primary);
    position: absolute;
    left: 100%;
    top: 0;
    content: "";
}

.card-principal {
    align-items: flex-start;
    display: flex;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.principal-thumb {
    width: 160px;
    flex-shrink: 0;
}

.principal-cont {
    width: 100%;
    padding-left: 20px;
}

.principal-cont p {
    text-align: justify;
}

.about-collage {
    padding: 0 60px;
}

.about-collage p {
    text-align: justify;
}

.stack-numbers-row {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    flex-wrap: wrap;
}

.number-item {
    max-width: 100px;
    width: 100%;
}

.number {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--poppins);
    color: var(--secondary);
    font-family: 'Oswald', sans-serif;
}

.number-text {
    font-weight: 600;
    line-height: 120%;
    border-top: solid 1px #2C3333;
    padding-top: 10px;
    margin-top: 5px;
}

a.btn-more {
    border-bottom: 2px solid #ff0000;
    padding: 7px 30px 7px 0px;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    font-size: 16px;
}

a.btn-more::after {
    position: absolute;
    content: "\f30b";
    height: 100%;
    width: 27px;
    right: 0;
    top: 0;
    border-radius: 0 3px 3px 0;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.eventSlider img {
    background: var(--gray);
    padding: 0px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.owl-theme.eventSlider .owl-dots {
    margin-top: 0;
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
}

.owl-theme.eventSlider .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 5px 5px;
    background: var(--gray);
}

.owl-theme.eventSlider .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary);
}


/* notices */

.notice-outer {
    background-color: #F0F3F5;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-bottom: 3px solid var(--secondary);
}

.card-head-links {
    background: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid #ddd;
}

.card-head-links a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 10px;
    line-height: 14px;
    color: var(--text-color);
    border-right: 1px solid #ddd;
    height: 50px;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.card-head-links a:last-child {
    border-right: none;
}

.card-head-links a:hover,
.card-head-links a.active {
    color: var(--white);
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.marquee-outer {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: space-between;
    border: solid 1px var(--gray_2);
    border-top: none;
}

.notice-outer marquee {
    height: 420px;
    margin-bottom: 20px;
}

ul.list-with-date {
    height: 100%;
}

.list-with-date li {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #bdb9b9;
    padding-bottom: 20px;
}

.list-with-date li .card-date-col {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    border-radius: 0px;
    display: flex;
    margin-right: 15px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-left: 4px solid var(--secondary);
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    color: var(--text-color);
}

.list-with-date li:hover .card-date-col {
    background-color: var(--primary-light);
    color: var(--primary);
}

.list-with-date li .card-date-col span {
    color: #222;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    line-height: normal;
    padding-bottom: 2px;
    font-family: var(--font-body);
}

.list-with-date li .card-detail-col {
    width: 100%;
    display: flex;
    align-items: center;
}

.list-with-date li .card-detail-col p {
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 0;
}

.list-with-date li .card-detail-col p a {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.list-with-date.with-sep li .card-detail-col p a {
    -webkit-line-clamp: 2;
}

.list-with-date li .card-detail-col p:hover a {
    color: var(--primary);
}

.list-with-date.with-sep li {
    margin-bottom: 0;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

.list-with-date.with-sep li:last-child {
    border-bottom: none;
}

.list-with-date.with-ico li {
    position: relative;
    padding: 10px 0px 10px 15px;
}

.list-with-date.with-ico li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 4px;
    height: 4px;
    background: #666;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
}

.notice-more {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

a.arrow-btn {
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

a.arrow-btn img {}

a.arrow-btn:hover {
    background: var(--secondary);
}


/* Notice end */


/* usefull links */

.useful-list-section {
    padding-top: 30px;
    padding-bottom: 20px;
}

.useful-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
}

.useful-item {
    background: var(--white);
    border-radius: 7px;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-content: flex-start;
    min-height: 144px;
    position: relative;
    text-align: center;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    height: 100%;
}

.useful-img {
    height: 45px;
    margin-bottom: 15px;
}

.useful-img img {
    height: 100%;
}

.useful-text {
    font-weight: 500;
    line-height: 110%;
    font-size: 15px;
}


/* usefull links end */

.about-college-section {
    background: var(--light-gray);
}


/* Focus */


/* Quick links */

.thumbslide img {
    aspect-ratio: 3/4;
    object-fit: cover;
}

.owl-theme.thumbslide .owl-nav {
    margin-top: 0;
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.owl-theme.thumbslide .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 0px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    width: 35px;
    background: var(--secondary) !important;
    height: 35px;
}

.owl-theme.thumbslide .owl-nav [class*=owl-] span {
    font-size: 26px;
}

.recognitions .item {
    width: 100%;
    aspect-ratio: 286/381;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c1f5a;
}
.recognitions .item img {
    aspect-ratio: inherit;
    object-fit: contain;
    width: 100%;
    display: inline-block;
}

.bestpractice-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--secondary);
}

.bestpractice-row [class^="best-prac-"] {
    width: 50%;
}

.bestpractice-row:nth-child(even) {
    background-color: var(--primary);
}

.best-prac-thumb img {
    width: 100%;
}

.best-prac-cont {
    color: var(--white);
    padding: 0 35px;
}

.best-prac-cont p {
    padding-bottom: 0;
}

.best-prac-cont h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
    color: var(--white);
}

.best-prac-cont h3 a {
    color: var(--white);
}
.best-prac-cont:hover h3 a {
    text-decoration: underline;
}

.event-col {
    position: relative;
}

.event-cap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: var(--primary);
    color: var(--white);
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-col+p {
    padding-bottom: 0;
    line-height: normal;
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

.owl-theme.thumbslide.eventSlider .owl-nav {
    top: inherit;
    bottom: 75px;
}

.quicklinks {
    background: var(--secondary);
}

.gallery-cap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.gallery-cap p {
    color: var(--white);
    font-size: 35px;
    font-weight: 400;
    text-align: center;
    line-height: 46px;
}

.activity-section {
    background-color: var(--light-gray);
    position: relative;
}

.recentactivity-outer {
    display: flex;
}

.recentactivity-title {
    width: 327px;
    flex-shrink: 0;
    background: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-right: 35px;
    aspect-ratio: 25/36;
}

span.date {
    position: absolute;
    top: 10px;
    left: 15px;
    font-weight: 600;
    color: #fff;
}

span.act-title {
    position: absolute;
    bottom: 0;
    left: 0;
    font-weight: 600;
    color: var(--white);
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
}

.recentactivity-slides {
    width: 67%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.activitySlides .item .banner-col img {
    aspect-ratio: 25/36;
    width: 100%;
    object-fit: cover;
}

.activity-more {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.activity-more .arrow-btn {
    background-color: var(--yellow);
    color: var(--secondary);
}

.activity-more .arrow-btn:hover {
    background-color: var(--primary);
}


/* Top Scroll */

.scrollup {
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    z-index: 1;
    color: var(--white);
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}

.ban-ser-thumb {
    flex-shrink: 0;
    margin-right: 35px;
}

.ban-ser-content {
    width: 100%;
}

.ban-ser-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.ban-ser-content a {
    font-size: 16px;
    font-weight: 400;
    color: #FFDC13;
    position: relative;
}

.ban-ser-content a::after {
    background: url(../images/yellow-right-arrow.svg) no-repeat center center;
    background-size: 32px;
    width: 32px;
    height: 8px;
    content: "";
    position: absolute;
    left: calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.banner-three-servies .row [class^="col-"]:hover .ban-ser-content a::after {
    left: calc(100% + 50px);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    color: var(--dark);
    font-size: 36px;
    position: relative;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.section-title h2::before {
    content: "";
    background-color: var(--dark);
    height: 2px;
    width: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0 auto;
}

.section-subtitle {
    margin-bottom: 10px;
}

.section-subtitle h3 {
    font-size: 30px;
    text-transform: uppercase;
    color: var(--dark);
}

.section-subtitle h3 span {
    color: var(--primary);
    padding-left: 5px;
}

.hvr-top {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-top:hover,
.hvr-top:focus,
.hvr-top:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.square-animate-img {
    position: relative;
}

.square-animate-img::before {
    content: '';
    width: 72px;
    height: 72px;
    top: 0px;
    left: 40px;
    position: absolute;
    background: url(../images/square-shape.svg) no-repeat top center;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}

.square-animate-img::after {
    content: '';
    width: 72px;
    height: 72px;
    bottom: 0px;
    right: 40px;
    position: absolute;
    background: url(../images/square-shape.svg) no-repeat top center;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}

@keyframes floating2 {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}


/* Custom Table */

.table .thead-dark th {
    color: #fff;
    background-color: var(--primary);
    border-color: #52608f;
    padding: 8px 10px;
    font-weight: 500;
    vertical-align: middle;
    line-height: 22px;
}

.table tbody td {
    padding: 8px 10px;
    font-weight: 400;
    vertical-align: middle;
    line-height: 22px;
}

.table-responsive table tbody tr td a {
    color: #3062b4;
}

.table-responsive table tbody tr td a.btn {
    color: var(--white);
    min-width: auto;
}


/* Card Sidebar */

.content-area-third {
    padding: 40px 0;
}

.card-sidebar {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.card-sidebar .card-header {
    height: 57px;
    font-family: Poppins;
    font-style: normal;
    text-align: center;
    font-weight: 600;
    font-size: 26px;
    line-height: 57px;
    color: #fff;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #363991;
    border-color: #363991;
}

.card-sidebar .card-body {
    background: #F1F2F2;
}

.card-sidebar .card-body img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    height: 200px;
    object-fit: cover;
}

.card-sidebar .card-body p {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    padding-bottom: 15px;
}

.card-sidebar .card-body .video-block {
    position: relative;
    margin-bottom: 20px;
}

.card-sidebar .card-body .video-block img {
    height: auto;
}

.card-sidebar .card-body .video-block iframe,
.card-sidebar .card-body .video-block video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.video-block {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    aspect-ratio: 16/9;
}

.video-block video,
.video-block iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


/* Video Gallery */

.card-videos-outer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-videos-outer .item {
    width: calc(50% - 9px);
}

.card-videos-outer .item .gallery-col {
    width: 100%;
}

.card-videos-outer .item .gallery-col img {
    width: 100%;
}

.card-video-btn {
    margin-top: 29px;
}


/* Footer */

footer {
    background: var(--primary);
    position: relative;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
}

.footer-left {
    width: 30%;
    display: flex;
    align-items: flex-end;
    background: #f0dcbb;
}

.footer-left img {
    object-fit: cover;
}

.footer-right {
    width: 70%;
    padding: 60px 50px 0px 50px;
}

footer::before {
    content: '';
    width: 108px;
    height: 127px;
    background: url(../images/arrowshade.png) no-repeat top center;
    background-size: 108px;
    bottom: 40px;
    left: 0px;
    position: absolute;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}

footer::after {
    content: '';
    width: 108px;
    height: 127px;
    background: url(../images/arrowshade.png) no-repeat top center;
    background-size: 108px;
    top: 0px;
    right: 0px;
    position: absolute;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}

.footer-top ul li {
    color: var(--white);
}

.footer-top ul li a {
    color: var(--white);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    position: relative;
    padding-left: 10px;
}

.footer-top ul li a::before {
    background: var(--white);
    height: 1.5px;
    width: 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.footer-top ul li a:hover {
    color: #FF8C9C;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    padding-left: 20px;
}

footer .footer-btm {
    height: 50px;
    display: flex;
    align-items: center;
    border-top: 1px solid #1D2A3A;
    justify-content: center;
    margin-left: -50px;
    width: calc(100% + 100px);
    margin-top: 20px;
}

footer .footer-btm p {
    color: var(--white);
    font-weight: 300;
    padding-bottom: 0;
}

footer .footer-btm p a {
    color: var(--secondary);
    font-weight: 500;
}

.footer-top h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    padding-bottom: 12px;
    position: relative;
}

.footer-top h3::before {
    background-color: var(--yellow);
    width: 50px;
    height: 3px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
}

.footer-top ul li,
.footer-top ul {
    list-style-type: none;
    margin-bottom: 0;
}

footer .row>[class^="col-"] ul li {
    text-align: left;
    margin-bottom: 5px;
}

.logo-footer {
    display: flex;
    align-items: flex-start;
}

.logo-footer img {
    width: 95px;
}

.header-social {
    display: flex;
}

.header-social a {
    font-size: 14px;
    color: var(--primary);
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin-right: 8px;
}

.header-social a:last-child {
    margin-right: 0;
}

.header-social a:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.footer-social {
    display: flex;
    margin-top: 5px;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1;
}

.footer-social a {
    font-size: 13px;
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 8px;
}

.footer-social a:last-child {
    margin-right: 0;
}

.footer-social a:hover {
    background-color: var(--secondary);
    color: #ffffff;
    border-color: #FF8C9C;
}

.footer-visitor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.footer-visitor p {
    color: var(--white);
    padding-bottom: 0;
    margin-right: 15px;
}

ul.vcounter {
    display: flex;
}

ul.vcounter li {
    display: block;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #000;
    text-align: center;
    margin-left: 1px;
    line-height: 30px;
    font-weight: 600;
    font-size: 20px;
}

.visitor.librarypage {
    display: flex;
    justify-content: flex-end;
}

.visitor.librarypage .footer-visitor {
    margin-top: 0;
    margin-bottom: 15px;
}

.visitor.librarypage .footer-visitor p {
    color: #333;
}

.visitor.librarypage ul.vcounter {
    margin-bottom: 0;
}

.visitor.librarypage ul.vcounter li {
    background: #0d1f5b;
    color: #fff;
    margin-bottom: 0;
}


/* Inner page */

.middle-container {
    margin-top: 239px;
}

.middle-container.homepage {
    margin-top: 254px;
}

.middle-container.page-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--light-gray);
}

.middle-container.page-inner.withimg {
    background-color: #9ea8c95e;
}


/* .middle-container.page-inner.withimg {
    background-image: url(../images/mait-bg-trans.png);
    background-position: center center;
    background-size: contain;
    background-color: #0d1f5b5e;
} */

.sidebar {
    height: 100%;
}

.sidebar h3 {
    background: var(--primary);
    color: #fff;
    padding: 14px 15px;
    font-size: 18px;
    width: 100%;
}

.sidebar .sidebar-list {
    margin-bottom: 0;
}

.sidebar .sidebar-list li,
.sidebar .sidebar-list {
    list-style-type: none;
}

.sidebar-list li a {
    background: #fff;
    display: block;
    margin-bottom: 1px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    border-left: 2px solid transparent;
}

.sidebar-list li:hover a,
.sidebar-list li a.active {
    background: #3739912e;
    font-weight: 500;
    color: var(--primary);
    border-color: var(--primary);
}

.sidebar-list li:hover a::after,
.sidebar-list li a.active::after {
    position: absolute;
    right: -15px;
    top: 50%;
    content: "";
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 15px solid #dbdbeb;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.page-title {
    border-bottom: 2px solid #ccc;
    margin-bottom: 20px;
}

.page-title h1 {
    padding-bottom: 5px;
    position: relative;
}

.page-title h1:before {
    position: absolute;
    background: #ffca2c;
    height: 4px;
    content: '';
    width: 80px;
    bottom: -2px;
    left: 0;
}

.content-area {
    padding: 20px;
    background: #fff;
    height: 100%;
}

.content-area p {
    text-align: justify;
}

.content-area .page-title h1 {
    font-size: 26px;
}

.content-area h2 {
    font-size: 26px;
}

.content-area h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--dark);
}

.content-area h4 {
    font-size: 17px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.image-block img {
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 5px;
}

.content-area ul {
    list-style-type: circle;
    margin-left: 20px;
}

.content-area ol {
    list-style-type: decimal;
    margin-left: 20px;
}

.content-area ul li ul,
.content-area ol li ol {
    padding-left: 20px;
}

.content-area ul li ul {
    list-style-type: lower-alpha;
}

.content-area ol li ol {
    list-style-type: upper-roman;
}

.content-area ul li a,
.content-area ol li a {
    color: var(--font-body);
}

.content-area ul li,
.content-area ol li {
    margin-bottom: 5px;
}

.content-area ul li a.text-link,
.content-area ol li a.text-link {
    color: #0600ff;
}

.content-area ul li a:hover,
.content-area ol li a:hover {
    color: var(--secondary);
}

.title-custom h2 {
    background: #3739912e;
    padding: 6px 15px 5px 15px;
    color: #202020;
    font-size: 22px;
    margin-bottom: 15px;
}

.title-custom h3 {
    background: #3739912e;
    padding: 6px 15px 5px 15px;
    color: #202020;
    font-size: 20px;
    margin-bottom: 15px;
}

.title-custom h4 {
    background: #3739912e;
    padding: 7px 15px 6px 15px;
    color: #202020;
    font-size: 16px;
    margin-bottom: 15px;
}


/* Custom tabs */

.custom-tabs ul.nav.nav-tabs {
    background: transparent;
    border-bottom: 1px solid #666;
    margin-bottom: -1px !important;
    margin-left: 0 !important;
}

.custom-tabs ul.nav.nav-tabs li {
    margin-bottom: 0;
    margin-right: 5px;
    list-style: none;
    display: flex;
}

.custom-tabs ul.nav.nav-tabs li a {
    font-weight: 500;
    background: #f7f7f7;
    color: #333;
    padding: 5px 20px;
    border-radius: 5px 5px 0 0;
    font-size: 14px;
    border: 1px solid #666;
    margin-bottom: -1px;
    border-bottom-color: #666;
}

.custom-tabs ul.nav.nav-tabs li a.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.cust-tab-inner {
    padding: 15px 0;
}

.custom-tabs.tab-large-inner ul.nav.nav-tabs {
    border-bottom: none;
}

.custom-tabs.tab-large-inner ul.nav.nav-tabs li {
    margin-bottom: 5px;
}

.pdf-viewer {
    width: 100%;
    position: relative;
}

.pdf-viewer iframe {
    width: 100%;
    aspect-ratio: 3/4;
}

.uniresultcol table tbody tr td:first-child {
    width: 20%;
}

.uniresultcol table tbody tr td:nth-child(2) {
    width: 60%;
}

.uniresultcol table tbody tr td:last-child {
    width: 20%;
}

.inner-page-banner {
    position: relative;
    height: 200px;
}

.inner-page-banner::before {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    position: absolute;
    content: "";
}

.inner-page-banner img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.innerbanner-cap {
    position: absolute;
    left: 50%;
    top: 0;
    display: flex;
    width: 90%;
    height: 100%;
    justify-content: flex-start;
    align-items: flex-end;
    max-width: 1410px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    padding: 0 0px 40px 15px;
}

.innerbanner-cap h1 {
    color: #fff;
    font-size: 48px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.profile-section {
    display: flex;
    padding: 80px 0px;
    position: relative;
    flex-wrap: wrap;
}

.profile-thumb {
    width: 25%;
    flex-shrink: 0;
    display: flex;
}

.profile-thumb img {
    aspect-ratio: 5/6;
    object-fit: cover;
    width: 100%;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 5px;
    z-index: 1;
}

.profile-section::after {
    position: absolute;
    left: 19%;
    top: 20px;
    width: 60%;
    height: calc(100% - 40px);
    background-color: var(--light-gray);
    content: "";
    border-radius: 5px;
}

.profile-content {
    position: relative;
    z-index: 1;
    width: 75%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--white);
    padding-left: 0;
    text-align: center;
}

.profile-content>div {
    width: 100%;
    padding-right: 28%;
}

.profile-content p {
    padding-bottom: 0;
    font-size: 15px;
    text-align: center;
}

.profile-content h3,
.profile-content h4,
.profile-content p {
    color: var(--dark);
}

p:empty {
    display: none;
}

.alumni-col {
    display: flex;
    background: #f7f7f7;
    padding: 15px;
    margin-bottom: 20px;
}

.alumni-thumb {
    width: 120px;
    flex-shrink: 0;
}

.alumni-thumb img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5/6;
    border: 1px solid #ddd;
    padding: 5px;
    background: #fff;
}

.alumni-cont {
    padding-left: 15px;
}

.alumni-cont h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.alumni-cont h4 {
    font-size: 13px;
    margin-bottom: 6px;
    color: #333;
}

.alumni-cont p {
    line-height: normal;
    font-size: 13px;
    letter-spacing: normal;
    text-align: left;
}


/* Faculty */

.member-card-col {
    background: #f7f7f7;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.member-thumb {
    width: 110px;
    flex-shrink: 0;
    height: 135px;
    border: 1px solid #ddd;
    padding: 2px;
    background: #fff;
    margin-right: 0
}

.member-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-cont {
    width: 100%;
}

.member-cont h4 {
    margin-bottom: 5px;
    text-align: center;
}

.member-card-col ul {
    margin-bottom: 10px;
    list-style: none;
    margin-left: 0;
}

.member-card-col ul li {
    margin-bottom: 0;
    display: flex;
    font-size: 13px;
    font-weight: 500;
    justify-content: center;
    line-height: 21px;
}

.member-card-col ul li strong {
    font-weight: 600;
    width: 120px;
}

.socities-card-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 20px;
}

.societies-card {
    width: 100%;
    background-color: #fafafa;
    padding: 15px;
    display: flex;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.soc-thumb {
    width: 30%;
    margin-right: 15px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.soc-thumb img {
    max-width: 90%;
    max-height: 90%;
}

.soc-cont {
    width: 100%;
}

.soc-cont h3 {
    font-size: 16px;
    margin-bottom: 0px;
    color: var(--dark);
}

.soc-cont p {
    padding-bottom: 5px;
}

.content-area.facultyprofile p,
.content-area.facultyprofile ul li,
.content-area.facultyprofile ol li {
    font-size: 13px;
}

.content-area.facultyprofile ul li,
.content-area.facultyprofile ol li {
    margin-bottom: 10px;
}

.custom-collapse-col .collapse-title {
    background: #3739912e;
    display: block;
    padding: 5px 40px 5px 15px;
    color: #000;
    font-weight: 500;
    position: relative;
}

.custom-collapse-col {
    margin-bottom: 5px;
}

.custom-collapse-col .collapse-title i {
    position: absolute;
    right: 15px;
    top: 12px;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.cust-collapse-inner {
    padding: 15px;
    background: #f7f7f7;
}

.collegemap {
    margin-bottom: 30px;
}

.collegemap iframe {
    width: 100%;
    aspect-ratio: 5/2;
    display: block;
}

.officeberrers {
    position: relative;
    margin-bottom: 20px;
}

.officeberrers img {
    border: 1px solid #ddd;
    padding: 5px;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.officeberrers span {
    position: absolute;
    left: 5px;
    bottom: 5px;
    padding: 8px 10px;
    width: calc(100% - 10px);
    background: rgba(0, 0, 0, .5);
    color: #fff;
}

.grid-pdf-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 15px;
    column-gap: 15px;
}

.grid-pdf-thumb {
    position: relative;
}

.grid-pdf-thumb img {
    border: 1px solid #ddd;
    padding: 5px;
    aspect-ratio: 4/5.2;
    background: #f7f7f7;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.grid-pdf-thumb h3 {
    position: absolute;
    bottom: 0px;
    left: 6px;
    width: calc(100% - 12px);
    font-size: 14px;
    background: rgba(0, 0, 0, .5);
    padding: 12px 12px;
    color: #fff;
    font-weight: 400;
}

.grid-pdf-thumb a {
    display: block;
}


/* Alubm page */

.album-row [class^="col-"] {
    margin-bottom: 30px;
}

.album-col {
    position: relative;
}

.album-col .album-title {
    background: var(--primary);
    padding: 15px 40px 15px 15px;
    text-align: left;
    position: relative;
}

.album-col .album-title .download-img-zip {
    position: absolute;
    right: 15px;
    top: 50%;
    color: #fff;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.album-col .album-title h3 {
    font-size: 16px;
    color: #fff;
}

.gallery-album-col {
    position: relative;
}

.gallery-album-col a {
    display: block;
}

.gallery-album-col a img {
    object-fit: cover;
    aspect-ratio: 5/3;
}

.gallery-listing .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
    top: inherit;
}

.owl-theme .owl-nav button i {
    font-size: 22px;
    display: block;
    color: #273E47;
}

.owl-theme.mediagalleryalbum .owl-nav button i {
    background: #fff;
    border-radius: 3px;
    padding: 5px;
}

.owl-theme .owl-nav button:hover i {
    font-size: 22px;
    display: block;
    color: #A4243B;
}

.image-block-multiple .image-block img {
    aspect-ratio: 5/3;
    width: 100%;
    object-fit: cover;
}

.best-practice-section .event-slider .item {
    width: 100%;
    aspect-ratio: 4/5.5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-error {
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 40px;
}

.page-error-thumb {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.page-error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-error-content h3 {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 30px;
}

p:empty {
    display: none;
}

.card-custom2 {
    background: #F2F2F2;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-custom2 .card-thumb {
    position: relative;
}

.card-custom2 .card-thumb img+a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.card-custom2 .card-thumb img+a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-thumb img {
    width: 100%;
}

.card-thumb-det {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.card-thumb-det h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.card-thumb-det p {
    padding-bottom: 8px;
    text-align: inherit;
}

.link-card {
    margin-bottom: 30px;
}

.link-card-head {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 14px 15px;
    font-weight: 500;
}

.link-card-head h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #fff;
    margin-bottom: 0;
}

.link-card-body {
    background: #f7f7f7;
}

.link-card-body ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
}

.link-card-body ul li {
    border-bottom: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 0;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.link-card-body ul li a {
    display: block;
}

.sitemap-page .link-card-body>ul li.menu-collapse .dropdown-toggle {
    position: relative;
}

.sitemap-page .link-card-body>ul li.menu-collapse .dropdown-toggle::after {
    position: absolute;
    right: 5px;
    top: 10px;
    transform: inherit;
    color: #666;
}

.sitemap-page .link-card-body>ul li.menu-collapse ul {
    list-style: none;
    padding-left: 0;
    margin-left: -15px;
    width: calc(100% + 30px);
}

.sitemap-page .link-card-body>ul li.menu-collapse ul li {
    padding-left: 25px;
}

.link-block-custom {
    display: flex;
    flex-direction: column;
}

.link-block-custom a {
    background: #3739912e;
    display: block;
    padding: 5px 40px 5px 15px;
    color: #000;
    font-weight: 500;
    position: relative;
    margin-bottom: 5px;
}

.link-block-custom a:hover {
    background: var(--secondary);
    color: #fff;
}

.translator {
    display: flex;
    z-index: 1;
    position: relative;
    top: -2px;
}

#google_translate_element {
    height: 30px;
}
#google_translate_element .skiptranslate.goog-te-gadget span {
    display: none !important;
}
.goog-te-gadget .goog-te-combo {
    background: #fff;
    outline: none;
    border: solid 1px #273e47;
    padding: 4px 0px;
    color: #273e47;
    height: auto !important;
    appearance: auto;
}
.goog-te-gadget .goog-te-combo option {
    font-family: Arial !important;
}
#google_translate_element .skiptranslate.goog-te-gadget {
    color: transparent !important;
}