@font-face {
    font-family: 'Kruti';
    src: url('../fonts/k010-webfont.woff2') format('woff2'), url('../fonts/k010-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* Global css */

* {
    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: var(--font-size-body);
    line-height: 24px;
    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: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;
}

.roboto {
    font-family: 'Roboto', sans-serif;
}

.open-sans {
    font-family: 'Open Sans', sans-serif;
}

.poppins {
    font-family: 'Poppins', sans-serif;
}

.crimson {
    font-family: 'Crimson Text', serif;
}

.alegreya {
    font-family: 'Alegreya', serif;
}

.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 .btn {
    margin: 0 5px;
}

.btn-inline .btn:first-child {
    margin-left: 0;
}

.btn-inline .btn:last-child {
    margin-right: 0;
}

.btn:focus {
    outline: normal;
    box-shadow: none !important;
}

.btn {
    height: 38px;
    padding: 0 15px;
    line-height: 38px;
    min-width: 130px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    text-shadow: none;
    border-radius: 5px;
    text-transform: capitalize;
}

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

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

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.active {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}

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


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

.paddTB50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.marTB50 {
    margin-top: 50px;
    margin-bottom: 50px;
}
.marT50 {
    margin-top: 50px;
}
.marB50 {
    margin-bottom: 50px;
}

.paddT50 {
    padding-top: 50px;
}

.paddB50 {
    padding-bottom: 50px;
}

.bg-lightgray {
    background-color: #F9F9F9;
}

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

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

.marT0 {
    margin-top: 0 !important;
}

.marT15 {
    margin-top: 15px !important;
}

.marB0 {
    margin-bottom: 0 !important;
}

.paddT0 {
    padding-top: 0 !important;
}

.marB5 {
    margin-bottom: 5px;
}


/* 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(--light-secondary);
    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 {
    position: relative;
    height: 36px;
    background: var(--white);
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
.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-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    background: var(--secondary);
    padding: 15px 20px 15px 0px;
    position: relative;
    flex-shrink: 0;
}

.logo::after {
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-top: 128px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 100px solid var(--secondary);
    content: "";
}

.logo::before {
    background: var(--secondary);
    right: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
}

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

.head-center {
    display: grid;
    grid-template-columns: repeat(2, 1fr );
    margin-left: 120px;
}
.head-center a {
    border: 1px solid #ddd;
    background: #fff;
    padding:10px 5px;
    border-radius: 5px;
    margin: 0 5px;
    text-align: center;
}
.head-center a img{

}

input::-ms-clear,
input::-ms-reveal {
    display: none !important;
}

.header-links {
    color: #fff;
    margin-left: auto;
}

.header-links a {
    color: var(--black);
    font-size: 13px;
    padding: 0 10px;
    border-right: 1px solid var(--black);
    line-height: 12px;
    display: inline-block;
    font-weight: 500;
}

.header-links a:first-child {
    padding-left: 0;
}

.header-links a:nth-last-child(2) {
        border-right: none;
}
.header-links a:last-child {
    border-right: none;
}
.header-links a:hover {
    color: var(--secondary);
}

.header-links.rightside {
    margin-right: auto;
    margin-left: inherit;
}

a.login {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 18px !important;
    text-align: center;
}
a.login:hover {
    background: var(--primary);
    color: var(--white);
}


.lang-btns a,
.lang-btns a:first-child {
    padding-left: 10px !important;
    border-right: none !important;
}
.head-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}
a.jublee-logo {
    margin-top: -24px;
}

.jublee-logo img {
    width: 70px;
}

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

.main-navbar {
    display: flex;
    background: var(--primary);
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.collapse.navbar-collapse {
    justify-content: flex-start;
}

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

.main-navbar .navbar-dark {
    padding: 0;
}

.main-navbar .navbar-dark .navbar-nav {
    height: 50px;
}

.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: #fff;
    background: var(--dark-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 .navbar-nav .nav-link {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 400;
    padding: 18px 13px;
    line-height: 14px;
    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 .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: #fff;
    background: var(--dark-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 .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: #fff;
    color: var(--secondary);
}

.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.dropdown:hover>ul li:hover>ul {
    display: block;
}


.main-navbar .navbar-dark .navbar-nav .dropdown-menu.multiple-menu {
    width: 420px; 
 
}
.main-navbar .navbar-dark .navbar-nav .nav-item.dropdown:hover>ul.multiple-menu{
    display: flex; 
    flex-wrap: wrap; 
}
.main-navbar .navbar-dark .navbar-nav .dropdown-menu.multiple-menu li {
    width: 50%;
}
.main-navbar .navbar-dark .navbar-nav .dropdown-menu.multiple-menu li:nth-child(odd){border-right:1px solid #ddd;}
.main-navbar .navbar-dark .navbar-nav .dropdown-menu.multiple-menu li a { height: 100%;}


.banner-section {
    display: flex;
    padding: 10px;
}

.main-banner {
    position: relative;
    background: #666;
    width: 75%;
    flex-shrink: 0;
}

.main-banner .item::before {
    background: rgba(0, 0, 0, .2);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.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;
    display: none;
}

.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 .banner-col {
    overflow: hidden;
}
.main-banner .banner-col img{ 
    aspect-ratio: 1033/339;
}

.main-banner .slider-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    text-align: center;
    width: 100%;
    pointer-events: none;
    background: rgba(0,0,0,.5);
}

.main-banner .slider-caption h1 {
    font-size: 72px;
    color: #fff;
    line-height: 105px;
    text-transform: uppercase;
    font-weight: 700;
}

.main-banner .slider-caption p {
    font-size: 16px;
    color: #fff;
    padding: 10px 0;
}
.main-banner .main-slider .owl-dots {
    position: absolute;
    top: 5px;
    width: auto;
    margin: 0 !important;
    right: 10px;
    z-index: 3;
}
.main-banner .main-slider .owl-dots button span {
    margin: 5px 4px !important;
}

.main-banner .main-slider .owl-dots .owl-dot.active span,
.main-banner .main-slider .owl-dots .owl-dot:hover span {
    background: var(--secondary);
}

.slider-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background: rgba(0, 0, 0, .7);
    z-index: 2;
    line-height: 44px;
}

.slider-marquee a {
    color: #fff;
}


/* Focus */
.section-title.focusheading h2{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fcous-section {
    background-color: var(--light-gray);
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fcous-section .section-title h2::after {
    width: 100px;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.focus-marquee {
    height: 100%;
    padding: 20px;
}

.focus-marquee marquee {
    height: 260px;
}

.focus-marquee marquee ul {
    padding: 0;
    margin: 0;
}

.focus-marquee marquee ul li {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.focus-marquee marquee ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.focus-marquee marquee ul li a {
    color: var(--secondary);
}

.focus-marquee marquee ul li a:hover {
    color: var(--primary);
}

/* Floting social icons */

.floating-icons {
    position: fixed;
    right: 0;
    top: 35%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floating-icons a {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.floating-icons a span {
    color: #fff;
    position: absolute;
    left: 150px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    opacity: 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;
}

.floating-icons a:first-child {
    border-top-left-radius: 5px;
}

.floating-icons a:last-child {
    border-bottom-left-radius: 5px;
}

.floating-icons a:hover {
    width: 90px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.floating-icons a:hover i {opacity: 0;}
.floating-icons a:hover span {opacity: 1; 
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    left: 15px;
}
.floating-icons a i {
    color: #fff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}
.floating-icons a img {
    width: 25px;
}

.floating-icons a.fb {
    background-color: #337FFF;
}

.floating-icons a.tw {
    background-color: #000;
}

.floating-icons a.ins {
    background-color: #DA3A8D;
}

.floating-icons a.link {
    background-color: #0277b5;
}

.floating-icons a.you {
    background-color: #D72A2A;
}

.floating-icons a.new {
    background-color: #169499;
}


/* visitor */
.footer-visitor {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 20px;
}
.footer-visitor p {
    color: var(--white);
    padding-bottom: 0;
    margin-right: 15px;
}
.footer-top ul.vcounter {
    display: flex;
    list-style-type: none;
    margin-bottom: 0;
}
.footer-top ul.vcounter li {
    display: block;
    width: 30px;
    height: 30px;
    background: #fff;
    color: #000 !important;
    text-align: center !important;
    margin-left: 1px;
    line-height: 30px;
    font-weight: 600;
    font-size: 15px;
    padding: 0;
    justify-content: center;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    color: #222;
    font-size: var(--font-size-heading);
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    background-color: var(--secondary);
    width: 110px;
    height: 2px;
    content: "";
    top: calc(100% + 4px);
    right: 0;
    position: absolute;
}

.section-title h2 span.text-red {
    color: var(--secondary);
}

.marquee-section {
    position: relative;
}

.marquee-inner {
    background: var(--primary);
    height: 50px;
    text-align: left;
    position: relative;
    padding-left: 130px;
    padding-right: 10px;
    display: flex;
    align-items: center;
}

.marquee-inner h3 {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    position: absolute;
    background: var(--secondary);
    left: 0;
    top: 0;
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
}

.marquee-inner h3::after {
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid var(--secondary);
    position: absolute;
    left: 100%;
    top: 8px;
    content: "";
}

/* .marquee-inner h3::before{width: 50px; height: 1px; background-color: #fff; position: absolute; right:calc(100% + 8px); top: 8px;content:"";  
} 
.marquee-inner h3::after{width: 50px; height: 1px; background-color: #fff; position: absolute; left:calc(100% + 8px); top: 8px;;content:"";  
 }  */

.marquee-inner p {
    color: #fff;
    padding-bottom: 0;
    text-overflow: ellipsis;
    background-color: var(--primary);
    overflow: hidden;
    white-space: nowrap;
    width: 90%;
}
.marquee-inner .owl-theme .owl-nav {
    margin-top: 0;
    top: 50%;
    width: auto;
    left: inherit;
    line-height: inherit;
    right: 0;
    transform: translateY(50%);
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
}

.marquee-inner .owl-theme .owl-nav button {
    margin: 0;
    width: 30px;
    height: 30px;
    background: var(--secondary);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    position: absolute;
    top: -16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-inner .owl-theme .owl-nav button:hover {
    background: var(--secondary) !important;
}

.marquee-inner .owl-theme .owl-nav button.owl-prev {
    left: -70px;
}

.marquee-inner .owl-theme .owl-nav button.owl-next {
    right: 0px;
}

.marquee-inner .owl-theme .owl-nav button span {
    font-size: 20px;
    height: 28px;
}

.marquee-slide p img {
    width: auto !important;
    height: auto;
    display: inline-block !important;
    margin-right: 5px;
}

/* Card One */
.card_one {
    background: var(--light-primary);
    padding: 15px;
}

.card_one .card_thumb {
    margin-bottom: 15px;
}

.card_one h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
}


/* Slide Box One */
.slide_box_one {
    position: relative;
}

.slide_box_one .owl-slide-one .item {
    border: 1px solid #ddd;
    padding: 5px;
}

.slide_box_one .owl-slide-one .item img {
    aspect-ratio: 466/493;
    object-fit: cover;
}

.slide_box_one .slider-caption p {
    font-family: var(--font-body);
    font-size: ;
}

.slide_box_one .owl-theme .owl-dots {
    position: absolute;
    top: 0px;
    right: 5px;
}

.slide_box_one .owl-theme .owl-dots .owl-dot.active span,
.slide_box_one .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary);
}

.owl-theme .owl-dots .owl-dot span {
    width: 5px;
    height: 5px;
    margin: 5px 3px;
    background: var(--primary);
}

.slide_box_one .slider-caption {
    padding: 15px 20px;
    position: absolute;
    left: 5px;
    bottom: 0;
    z-index: 2;
    text-align: center;
    width: calc(100% - 10px);
    pointer-events: none;
    background: rgb(19, 70, 132);
    background: linear-gradient(180deg, rgba(19, 70, 132, 0) 50%, rgba(20, 54, 95, 1) 100%);
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.slide_box_one .slider-caption p {
    font-size: var(--font-size-body);
    color: var(--white);
    padding-bottom: 0;
    1
}

/* Notice Accordian */
.home-notice-col .accordion-item {
    margin-bottom: 5px;
}

.home-notice-col .accordion-button::after {
    display: none;
}

.home-notice-col .accordion-header button {
    background: var(--primary);
    color: var(--white);
    padding-left: 70px;
    padding-right: 15px;
    position: relative;
    font-family: var(--font-body);
    font-size: 15px;
}
.home-notice-col .accordion-header button i {
    background-color: var(--secondary);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-notice-col .accordion-header button i::after {
    position: absolute;
    left: 100%;
    top: 0;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 15px solid var(--secondary);
    content: "";
}

.home-notice-col .accordion-header button:focus:not(:focus-visible) {
    outline: none;
    border: none;
    box-shadow: none;
}

.home-notice-col .accordion-body marquee {
    height: 132px;
}

.home-notice-col .accordion-body ul {
    padding: 0;
    margin: 0;
}

.home-notice-col .accordion-body ul li {
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.page-inner .home-notice-col .accordion-body ul {
    list-style-position: outside;
    margin-left: 20px;
}
.page-inner .home-notice-col .accordion-body ul li {
    text-align: left;
    border-bottom: none;
    padding: 0;
}

.home-notice-col .accordion-body ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.home-notice-col .accordion-body ul li a {
    color: var(--black);
}

.home-notice-col .accordion-body ul li a:hover {
    color: var(--secondary);
}

/* Event Section */
.owl-carousel.event-slide .owl-stage {
    height: 100%;
}
.owl-carousel.event-slide .owl-item, .owl-carousel.event-slide .owl-item .item {
    height: 100%;
}
.event-slide-row .item {
    padding-top: 65px;
}

.event-col {
    background-color: var(--light-primary);
    padding: 15px;
    position: relative;
    height: 100%;
}

.event-col .event-thumb {
    margin-top: -75px;
    position: relative;
    overflow: hidden;
    border: 5px solid var(--white);
    border-radius: 10px;
}

.event-col .event-thumb img {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    aspect-ratio: 4/5;
}

.event-col .event-thumb:hover img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.event-col .event-conent {
    padding-top: 30px;
    padding-bottom: 10px;
    position: relative;
}

.event-col .event-conent .event-date {
    position: absolute;
    background: var(--secondary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 15px 7px 15px;
    line-height: normal;
    right: 20px;
    top: -30px;
    font-size: 26px;
    font-weight: 600;
    border-radius: 3px;
}

.event-col .event-conent .event-date span {
    font-size: var(--font-size-body);
    font-weight: normal;
}

.event-col .event-conent p {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    text-align: center;
    padding-bottom: 5px;
    font-weight: 500;
    color: var(--primary);
}

.event-col .event-conent h3 {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    text-align: center;
    font-weight: 500;
    line-height: inherit;
}

.event-slide-row .owl-carousel .owl-dots.disabled,
.event-slide-row .owl-carousel .owl-nav.disabled {
    display: flex;
    bottom: 0px;
    margin-top: 50px;
}

.event-slide-row .owl-theme .owl-nav button i {
    color: var(--white);
}

.btn-inline-tabs {
    display: flex;
    justify-content: center; 
    margin-top: 10px;
    margin-bottom: 20px;
}
.btn-inline-tabs ul {
    background-color: var(--white);
    border: none;
    border-radius: 5px;
    display: flex;
    padding: 0;
}
.btn-inline-tabs ul li a {
    padding: 0 15px;
    height: 38px;
    color: var(--primary) !important;
    background-color: none !important;
    border: none;
    border-radius: 5px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    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-inline-tabs ul li a.active, .btn-inline-tabs ul li a:hover{
    background-color: var(--secondary);
    border: none;
    color: var(--white) !important;
    transition:all .3s ease;-moz-transition:all .3s ease;-webkit-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;
}
.custom-tab-content{opacity: 0; visibility: hidden; height: 0; overflow: hidden; transition:all .3s ease;-moz-transition:all .3s ease;-webkit-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;}
.custom-tab-content.active{opacity: 1; visibility: visible; height: auto; transition:all .3s ease;-moz-transition:all .3s ease;-webkit-transition:all .3s ease;-ms-transition:all .3s ease;-o-transition:all .3s ease;}

/* Alumni section */
.alumni-section .event-col .event-conent .event-date {
    padding: 7px 15px 7px 15px;
    right: 15px;
    top: -19px;
}
.alumni-section .event-col .event-conent .event-date span {
    font-size: 16px;
}
.alumni-section .event-slide-row .owl-theme .owl-nav button i {
    color: var(--primary);
}
/* Useful links */
.useful-list {
    margin-top: 20px;
}

.useful-list ul {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 0;
}
.useful-item {
    background: #fff;
    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;
    height: 100%;
    box-shadow: var(--box-shadow);
}
.useful-img {
    height: 85px;
    margin-bottom: 10px;
}
.useful-text {
    font-weight: 500;
    line-height: 110%;
    color: #000;
}
.magazines-section .banner-col{position: relative; overflow: hidden;}
.magazines-section .slide_box_one .owl-slide-one .item img, .magazines-section .slide_box_one .owl-slide-two .item img{
    aspect-ratio: 5/7;
    object-fit: cover;
}
.magazines-section .slide_box_one .owl-slide-two .item {
    border: 1px solid #ddd;
    padding: 5px;
}
.magazines-section .slide_box_one .owl-theme .owl-nav {
    position: relative;
    margin-top: 40px;
}
.viewallmag {
    position: absolute;
    right: 5px;
    bottom: 5px;
    background: var(--secondary);
    color: var(--white);
    padding: 3px 15px;
    font-size: 12px;
    border-radius: 3px;
}
.viewallmag:hover {
    color: var(--white);
}
/* alumni css */ 
.alumnilist [class^="col-"]{margin-bottom: 15px;}
.alumni-col {
    text-align: center;
    padding: 10px;
    border-radius: 7px;
    border: solid 1px #E4E0E1;
    background: #FBFBFB;
    height: 100%;
}
.alumni-thumb img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 2/2.4;
    object-position: center; 
    border-radius: 7px;
} 
.content-area .alumni-cont h3 {
    font-size: 15px;
    margin: 12px 0;
}
.alumni-cont .organization {
        margin-bottom: 10px;
}
.content-area .alumni-col p {
    text-align: center;
}




















































.noticeboard-section {
    background: #FCEADE;
}

.noticeboard-section .card-body {
    height: 420px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.noticeboard-section .card-body ul {
    margin-bottom: 0;
    width: 100%;
    height: auto;
}

.noticeboard-section .card-body ul.marquee {
    position: relative;
    box-sizing: border-box;
    animation: marquee 15s linear infinite;
}

.noticeboard-section .card-body ul.marquee:hover {
    animation-play-state: paused;
}


/* Make it move! */

@keyframes marquee {
    0% {
        top: calc(100% + 10px)
    }

    100% {
        top: -120%
    }
}

.card-custom2 {
    background: #F2F2F2;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    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;
}


/* .media-coverage-section .row [class^="col-"]:first-child .card-custom2{background-color: #FCEADE;}  */


/* Owl carousel button */

.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: center;
}

.owl-theme .owl-nav button {
    margin: 0 3px !important;
}

.owl-theme .owl-nav button:hover {
    background: none !important;
}

.owl-theme .owl-nav button i {
    font-size: 22px;
    display: block;
    color: var(--primary);
}

.owl-theme .owl-nav button:hover i {
    font-size: 22px;
    display: block;
    color: var(--secondary);
}


/* Owl carousel button end*/

.services-section {
    background-color: var(--primary);
}

.thumb-with-title-col {
    overflow: hidden;
    position: relative;
}

.thumb-with-title-col::before {
    width: 100%;
    height: 100%;
    background: rgba(11, 33, 47, .9);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .5s ease 0s;
    z-index: 2;
}

.thumb-with-title-col::before {
    content: "";
}

.thumb-with-title-col:hover::before {
    opacity: 1;
}

.thumb-with-title-col::after {
    background: rgba(255, 255, 255, .3);
    border: 2px solid var(--secondary);
    top: 0;
    width: 100%;
    height: 100%;
    left: 170%;
    opacity: 1;
    z-index: 1;
    transform: skewX(45deg);
    transition: all 1s ease 0s;
    content: "";
    position: absolute;
    z-index: 3;
}

.thumb-with-title-col:hover::after {
    left: -170%;
}

.thumb-with-title-col img {
    width: 100%;
    max-width: 100%;
}

.thumb-with-title-col h3 {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500;
    background: #fff;
    height: 75px;
    line-height: 75px;
    text-align: center;
    margin-left: 10%;
    width: calc(100% - 20%);
    margin-top: -40px;
    z-index: 1;
    position: relative;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.thumb-with-title-col h3 a {
    display: block;
}

.thumb-with-title-col:hover h3 {
    background-color: var(--secondary);
    color: #fff;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.thumb-with-title-col:hover h3 a {
    color: #fff;
}

.thumb-with-title-col-inner {}

.thumb-with-title-col .thumb-with-title-col-inner {
    width: 100%;
    position: absolute;
    bottom: -100%;
    left: 0;
    transition: all .5s ease 0s;
    text-align: center;
    z-index: 3;
}

.thumb-with-title-col .thumb-with-title-col-inner h4 {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

.thumb-with-title-col .thumb-with-title-col-inner ul {
    margin-bottom: 15px;
    margin-top: 10px;
}

.thumb-with-title-col .thumb-with-title-col-inner ul li a {
    color: #fff;
    font-size: 15px;
    line-height: 32px;
}

.thumb-with-title-col .thumb-with-title-col-inner ul li a:hover {
    color: var(--secondary);
    font-size: 15px;
    line-height: 32px;
}

.thumb-with-title-col:hover .thumb-with-title-col-inner {
    bottom: 50%;
    transform: translateY(50%);
}

.gallery-slide .owl-nav {
    bottom: -10px;
}

.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: #fff;
    -webkit-animation: floating2 7s infinite;
    -o-animation: floating2 7s infinite;
    animation: floating2 7s infinite;
}
.accesibility {
    position: fixed;
    left: 10px;
    top: 90%;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-direction: row;
}
.accesibility a {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.1);
}
.accesibility a i {
    animation: ring 1s infinite ease-in-out;
}
@keyframes ring {
    0% { transform: rotate(0); }
    15% { transform: rotate(-15deg); }
    30% { transform: rotate(15deg); }
    45% { transform: rotate(-10deg); }
    60% { transform: rotate(10deg); }
    75% { transform: rotate(-5deg); }
    100% { transform: rotate(0); }
}   

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(164, 36, 59, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(164, 36, 59, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(164, 36, 59, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(164, 36, 59, 0.4);
        box-shadow: 0 0 0 0 rgba(164, 36, 59, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(164, 36, 59, 0);
        box-shadow: 0 0 0 10px rgba(164, 36, 59, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(164, 36, 59, 0);
        box-shadow: 0 0 0 0 rgba(164, 36, 59, 0);
    }
}


/* Header mode */

.header-mode {
    display: flex;
}

.header-mode a {
    color: var(--white);
    border: 1px solid var(--primary);
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
    font-size: 12px;
    margin-right: 7px;
    background-color: var(--primary);
}

.header-mode a:last-child {
    margin-right: 0;
}

.header-mode a.active,
.header-mode a:hover {
    background-color: var(--white);
    color: var(--black);
}




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

@keyframes floating2 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.photo-gallery-section {
    background: url(../images/gallery-bg.jpg) no-repeat center center;
    background-size: cover;
}

.gallery-col {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    padding: 12px;
    background: rgb(163,181,203);
    background: linear-gradient(180deg, rgba(163,181,203,1) 0%, rgba(0,0,0,1) 100%);
}
.gallery-col span {
    color: #fff;
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(0,0,0,.7);
    padding: 10px 15px;
    width: calc(100% - 10px);
}
.gallery-col::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.gallery-col:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

.gallery-col a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.gallery-col a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.gallery-col img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.award-recognition-section {
    background-color: #F4F6FA;
}

.award-col {
    text-align: center;
}

.award-thumb {
    border: 5px solid #FFDC13;
    margin-bottom: 30px;
    overflow: hidden;
    height: 197px;
}

.award-thumb img {
    width: 100%;
    max-width: 120%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.award-col:hover .award-thumb img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.award-col h3 {
    font-size: 18px;
    font-weight: 600;
    color: #363991;
    margin-bottom: 15px;
}

.award-col p {
    color: #636F78;
    padding-bottom: 0;
    font-weight: 600;
    line-height: 20px;
}


/* Custom Table */

.table-custom table thead tr th,
.table-custom table tbody tr td {
    width: 20%;
}

.table-custom table thead tr th {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background: #333;
    padding: 10px 20px;
    border: none;
}

.table-custom table tbody tr td {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #9D9696;
    padding: 10px 20px;
}

.table-custom table tbody tr td img {
    height: 28px;
}

.table-custom table tbody tr td .btn {
    width: 120px;
    height: 32px;
    border-radius: 100px;
    color: #fff;
    background: #000;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 30px;
    display: block;
    text-align: center;
}

.table-responsive table tbody tr td a {
    color: #3062b4;
}

.table-responsive table tbody tr td a:hover {
    color: #ff9301;
}


/* Card Sidebar */
.content-area {
    background: #fff;
    height: 100%;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    border: 1px solid #bbc4cf;
}

.content-area-third {
    padding: 40px 0;
}

.card-sidebar {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.card-sidebar .card-header {
    height: 57px;
    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 {
    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;
}

/* location section */
.location-section {
    padding: 0 7%;
    margin-top: -84px;
    margin-bottom: 50px;
}
.footer-top .location-section ul {
    background: var(--secondary);
    border-radius: 150px;
    display: flex;
    margin-bottom: 0;
    padding: 15px 30px;
}
.footer-top .location-section ul li {
    width: 33.33%;
    padding: 0px 20px;
    border-right: 1px solid rgba(255,255,255,.3);
}
.loc-col {
    display: flex;

}
.footer-top .location-section ul li:last-child{border:none;}
.loc-icon {
    margin-right: 10px;
    flex-shrink: 0;
}
.loc-col h4 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-body);
    margin-bottom: 3px;
}
.loc-col p {
    color: var(--white);
    font-weight: 400;
    text-align: left;
}

/* Footer */

footer {
    background: #fff;
    position: relative;
}

footer .footer-top {
    padding: 40px 0;
    background: var(--dark-primary);
}

footer .footer-top .logo a img {
    width: 100px;
    height: 100px;
}

footer .footer-top .logo-title {
    text-align: left;
}

footer .footer-top .logo-title h1 {
    font-size: 28px;
    line-height: 33px;
    color: #fff;
}

footer .footer-top .logo-title p {
    font-size: 18px;
    line-height: 27px;
    color: #fff;
}

footer .footer-top .logo-title span {
    font-size: 13px;
    line-height: 17px;
    color: #fff;
}

.footer-top ul { padding: 0;}
.footer-top ul.two-col {
    column-count: 2;
    column-gap: 0;
}
.footer-top ul li {
    color: #E9F9FF;
    padding: 4px 0;
}

.footer-top ul li a {
    color: #E9F9FF;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    font-weight: 300;
    position: relative;
    padding-left: 10px;
}

.footer-top ul li a::before {
    background: #E9F9FF;
    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;
    border-top: 1px solid rgba(255,255,255,.1);
    align-items: center;
    background: var(--dark-primary);
}

footer .footer-btm p {
    color: #fff;
    font-weight: 400;
    font-size: 13px;
}

.footer-top h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    font-family: var(--font-body);
}
.footer-top h3::after {
    background-color: var(--secondary);
    width: 50px;
    height: 3px;
    content: "";
    top: calc(100% + 4px);
    left: 0;
    position: absolute;
}
.footer-top ul li,
.footer-top ul {
    list-style-type: none;
}

footer .row>[class^="col-"] ul li {
    text-align: left;
}

.logo-footer {
    text-align: center;
}

.logo-footer img {
    width: 95px;
}

footer p {
    line-height: 22px;
    padding-bottom: 0;
    color: #202020;
    font-weight: 600;
    text-align: center;
}
.footer-map iframe {
    width: 100%;
    aspect-ratio: 4/1.8;
    margin-top: 10px;
    border: 1px solid rgba(255,255,255,.2);
    padding: 5px;
}

/* Inner page */

.middle-container.page-inner {
    padding-top: 20px;
    padding-bottom: 100px;
    background: url(../images/bhartiinnerbg.jpg);
    background-attachment: fixed;
    background-size: contain;
    background-repeat: repeat;
}
.page-inner p a {  
    color: var(--secondary);  
} 
.page-inner p a:hover {  
  text-decoration: underline;
  color: var(--primary); 
} 

.sidebar {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,.1);
    border: 1px solid #bbc4cf;
}

.sidebar h3 {
    color: #333;
    padding: 0px 0px 5px 0px;
    font-size: 22px;
    width: 100%;
    border-bottom: 1px solid #c1c1c1;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}
.sidebar h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--secondary);
    width: 90px;
    height: 3px;
}
.sidebar .sidebar-list {
    margin-bottom: 0;
    padding-left: 0;
}
.sidebar .sidebar-list li,
.sidebar .sidebar-list {
    list-style-type: none;
}

.sidebar-list li {
    margin-bottom: 5px;
    position: relative;
    background: var(--primary);
}

.sidebar-list li a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.sidebar-list li a.active {
    background: var(--secondary);
}
.sidebar-list li::before {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    width: 6px;
    height: 100%;
    background: var(--secondary);
    z-index: 0;
}
.sidebar-list li::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    opacity: 0;
}
.sidebar-list li:hover::after {
opacity: 1;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
/* .sidebar-list li::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    width: 6px;
    height: 100%;
    background: var(--secondary);
    z-index: 0;
    transition: all 1s ease;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
}
.sidebar-list li:hover::after {
    width: 100%;
    transition: all 1s ease;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
} */
.sidebar-list li:hover a {
    color: var(--white);
}

.sidebar-list li.menu-collapse .dropdown-toggle {
    position: relative;
}

.sidebar-list li.menu-collapse .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 21px;
    transform: inherit;
    color: #fff;
}

.sidebar .sidebar-list li.menu-collapse ul {
    margin-top: 0px;
}

.sidebar .sidebar-list li.menu-collapse ul li {
    margin-bottom: 0px;
}

.sidebar .sidebar-list li.menu-collapse ul li a {
    border-left: 0;
    border-right: 0;
    background: var(--primary)24;
    color: #222;
    border-bottom: 1px solid var(--primary)1f;
}

.sidebar .sidebar-list li.menu-collapse ul li a:hover {
    background: var(--primary)38;
}

.page-title {
    border-bottom: 1px solid #c1c1c1;
    margin-bottom: 20px;
    position: relative;
}
.page-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    background: var(--secondary);
    width: 90px;
    height: 3px;
}

.page-title h1 {
    padding-bottom: 10px;
}

.content-area .page-title h1 {
    font-size: 22px;
    padding-bottom: 10px;
}



.content-area h2 {
    font-size: 26px;
}

.content-area h3 {
    font-size: 22px;
}

.content-area h4 {
    font-size: 18px;
}
.content-area p {
text-align: justify;
}

.image-block {
    margin-bottom: 20px;
}

.image-block img {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 8px;
}

.content-area ul {
    list-style-type: circle;
}

.content-area ol {
    list-style-type: decimal; 
    margin-left: 15px;
}

.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 ol li,
.content-area ul li {
    margin-bottom: 10px;
}
.content-area ol.ist-group li,
.content-area ul.list-group li {
    margin-bottom: 0px;
}

.title-custom h2 {
    background: var(--light-primary);
    padding: 5px 15px 5px 15px;
    color: #202020;
    font-size: 22px;
    margin-bottom: 15px;
}

.title-custom h3 {
    background: var(--light-primary);
    padding: 6px 15px 5px 15px;
    color: #202020;
    font-size: 20px;
    margin-bottom: 15px;
}

.title-custom h4 {
    background: var(--light-primary);
    padding: 7px 15px 6px 15px;
    color: #202020;
    font-size: 16px;
    margin-bottom: 15px;
}


/* The Overlay (background) */

.overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 99;
    left: 0;
    top: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

.customnav {
    display: none;
}

.customnav.searchOpen {
    display: block;
}


/* Position the content inside the overlay */

.overlay-content {
    position: relative;
    top: 35%;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.custom-search-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-autocomplete-outer {
    width: 60%;
}

.custom-autocomplete-outer input {
    background: transparent;
    border: 2px solid #fff;
    border-radius: 45px;
    height: 60px;
    width: 100%;
    color: #fff;
    padding: 0 30px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 40px;
    color: #fff;
}

.custom-autocomplete-outer ul {
    border: 1px solid #ddd;
    width: 50%;
    margin: 0 auto;
    margin-top: 20px; 
    padding: 0;
}

.custom-autocomplete-outer ul li {}

.custom-autocomplete-outer ul li a {
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
    display: block;
    padding: 9px 0;
    line-height: normal;
}

.custom-autocomplete-outer ul li a:hover {
    color: var(--secondary);
}

.custom-autocomplete-outer ul li:last-child a {
    border-bottom: none;
}


/* Innerpage banner */

.inner-page-banner {
    position: relative;
}

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

.inner-page-banner::before {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    left: 0;
    top: 0;
    position: absolute;
    content: "";
}


/* Breadcrumbh */

.breadcrumbh-sec ol.breadcrumb {
    margin: 0;
    background: none;
    padding: 10px 0;
}

.breadcrumbh-sec ol.breadcrumb li,
.breadcrumbh-sec ol.breadcrumb li a {
    font-size: 13px;
}

/* .breadcrumb-item+.breadcrumb-item::before {
    content: ">";
} */

.breadcrumbh-sec ol.breadcrumb li::before {
       color: var(--black);
}

.breadcrumbh-sec ol.breadcrumb li a {
    color: var(--black);
}

.breadcrumbh-sec ol.breadcrumb li.active {
    color: var(--secondary);
}

.min-width-auto {
    min-width: auto;
}


/* 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;
}

.table .thead-dark th {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 8px 10px;
    font-weight: 500;
    vertical-align: middle;
    line-height: 22px;
}

.table tbody tr th,
.table tbody tr td {}

.table tbody tr td .btn {
    font-size: 13px;
    text-transform: inherit;
    color: #fff;
}

.table tbody tr td .btn:hover {
    color: #fff;
}

.fac-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.fac-thumb {
    margin-bottom: 15px;
    overflow: hidden;
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    padding-top: 120%;
    position: relative;
}

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

.fac-col h3 {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.fac-col p {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 20px;
    padding-top: 3px;
}


/* Video Block */

.video-block {
    width: 100%;
    padding-top: 56.25%;
    height: 0px;
    background: #000;
    position: relative;
}

.video-block video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


/* PDF Viewer */

.pdf-viewer {
    position: relative;
    background-color: #f7f7f7;
    z-index: 0;
}

.pdf-viewer iframe {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.pdf-viewer2 {
    position: relative;
    background-color: #f7f7f7;
    z-index: 0;
}

.pdf-viewer2 iframe {
    position: relative;
    left: 0;
    top: 0;
    z-index: 1;
}

.h-auto {
    height: auto;
}

.top-quote {
    display: flex;
    align-items: flex-start;
}

.top-quote .image-block {
    width: 180px;
    margin-right: 20px;
    flex-shrink: 0;
}

.top-quote .image-block img {
    margin-bottom: 20px;
    width: 100%;
}

.quote-text {
    width: 100%;
    background: #ddd;
    padding: 20px;
}

.quote-text p {
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    padding-bottom: 0;
}

.committees-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.committees-block-col {
    width: calc(50% - 15px);
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 15px;
}

.grid-pdf-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: -10px;
    width: calc(100% + 10px);
}

.grid-pdf-col {
    width: calc(25% - 10px);
    margin-bottom: 13px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}
.grid-pdf-col::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.grid-pdf-col:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}
.grid-pdf-thumb img {
    border: 1px solid #ddd;
    padding: 5px;
    background: #f7f7f7;
}

.grid-pdf-thumb {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.grid-pdf-thumb h3, .magzine-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    font-size: 12px;
    background: #14365fe0;
    padding: 14px 15px;
    color: #fff;
    font-weight: 400;
    font-family: var(--font-body);
    line-height: normal;
}
.grid-pdf-actions {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    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;
}

.grid-pdf-actions i {
    background: var(--secondary);
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin: 0 4px;
    border-radius: 2px;
    font-size: 20px;
    color: #fff;
}

.grid-pdf-thumb:hover .grid-pdf-actions {
    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;
}

.links-card-section {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    width: calc(100% + 15px);
}

.links-card-section a {
    width: calc(33.33% - 15px);
    margin-left: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.links-card-section .link-card {
    background: var(--primary);
    color: #fff;
    width: 100%;
    height: 200px;
    display: flex;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    justify-content: center;
    text-transform: uppercase;
    line-height: 30px;
    align-items: center;
    margin-bottom: 5px;
    border-bottom: 6px solid var(--secondary);
    overflow: hidden;
    position: relative;
}

.links-card-section .link-card-title {
    font-size: 16px;
    font-weight: 600;
    display: none;
    color: #666;
}

.links-card-section .link-card::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.links-card-section a:hover .link-card::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

.links-card-section a:hover .link-card-title {
    color: var(--secondary);
}


/* Faculty */

.member-card-col {
    background: var(--extra-light-primary);
    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: 15px;
}

.member-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-cont {
    width: 100%;
}

.member-cont h4 {
    margin-bottom: 5px;
}
.member-card-col ul {
    margin-bottom: 0;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.member-card-col ul li {
    margin-bottom: 0;
    display: flex;
    line-height: 26px;
}
.member-card-col ul li strong {
    font-weight: 600;
    width: 120px;
}


/* Custom collapse */

.custom-collapse-col {
    margin-bottom: 5px;
}

.custom-collapse-col .collapse-title {
    background: var(--secondary);
    display: block;
    padding: 5px 40px 5px 15px;
    color: #000;
    font-weight: 500;
    position: relative;
}

.custom-collapse.blue .custom-collapse-col .collapse-title {
    background: var(--primary)6b;
}

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

.custom-collapse-col .collapse-title[aria-expanded="true"] i {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    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;
}

.btn-inline {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-inline .btn {
    width: auto;
    margin: 0 3px 6px 3px;
    text-transform: inherit;
    font-weight: 400;
}


/*  */

.socities-card-section {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
}

.societies-card {
    width: calc(50% - 15px);
    background-color: #fafafa;
    padding: 15px;
    margin-left: 15px;
    display: flex;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
}

.societies-card:hover {
    background-color: #f5dccc;
}

.soc-thumb {
    width: 40%;
    margin-right: 15px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.soc-thumb img {
    max-width: 90%;
    max-height: 90%;
}

.soc-cont {
    width: 100%;
}

.soc-cont h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.soc-cont p {
    line-height: normal;
    padding-bottom: 10px;
    font-size: 13px;
    font-weight: 500;
}

.achievements-row [class^="col-"] {
    margin-bottom: 30px;
}

.grid-space-row [class^="col-"] {
    margin-bottom: 30px;
}

.content-area .achievements-row h3 {
    font-size: 18px;
    line-height: 26px;
}

.title-custom-collapse i {}

.title-custom-collapse h3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.mempic-with-sep .title-custom h3 {
    margin-bottom: 0;
    margin-top: 20px;
}


/* Library  */

.library-top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.library-top-links a {
    border: 1px solid var(--primary);
    border-radius: 5px;
    width: calc(50% - 10px);
    padding: 15px;
    margin-bottom: 20px;
    background: var(--primary);
    position: relative;
    color: #fff;
    text-align: left;
}

.library-top-links a h3 {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.library-top-links a i {
    position: absolute;
    right: 15px;
    top: 17px;
}

.libarary-timeing-col {
    border-radius: 5px;
    display: flex;
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.libarary-timeing-col::before {
    background-image: url('../images/library-img-blur.jpg');
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: 100%;
    ;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.libarary-timeing-col::after {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    z-index: 1;
}

.libarary-timeing-col h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.librar-inner-col {
    width: calc(50% - 10px);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #fff;
    position: relative;
    z-index: 2;
}

.librar-inner-col h4 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 5px;
    color: #fff704;
    font-weight: 500;
}

.librar-inner-col p {
    display: flex;
    font-weight: 500;
    padding-bottom: 0;
    color: #fff;
    justify-content: space-start;
}

.librar-inner-col p span:first-child {
    margin-right: 10px;
}

.librar-inner-col small {
    margin-top: 5px !important;
    display: block;
    color: #fff;
}

.links-card-section.library-links-card a {
    width: calc(25% - 15px);
}

.links-card-section.library-links-card .link-card {
    height: 200px;
    font-size: 16px;
    line-height: 24px;
    border-radius: 5px;
}

.library-top-links.min-type {
    margin-left: -10px;
    justify-content: flex-start;
}

.library-top-links.min-type a {
    width: calc(33.33% - 10px);
    margin-left: 10px;
}

.library-top-links.min-type a h3 {
    font-size: 14px;
}

.bookarival-slides .owl-nav {
    bottom: -20px;
}

.ask-libr-outer {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ask-lib-col {
    background: #FCEADE;
    width: calc(50% - 10px);
    display: flex;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.ask-lib-thumb {
    width: 100px;
    margin-right: 15px;
    flex-shrink: 0;
}

.ask-lib-thumb img {
    background: #fff;
    padding: 5px;
}

.ask-lib-cont {
    width: 100%;
}

.ask-lib-cont h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.ask-lib-cont p {
    padding-bottom: 5px;
    line-height: normal;
}

.ask-lib-cont .btn {
    margin-top: 5px;
}

.ask-lib-thumb.lib-form img {
    padding: 0;
    background: none;
}

.ask-lib-thumb.lib-icon {
    width: 70px;
}


/* Student learning */

.socities-card-section.student-learning-poster .soc-thumb img {
    height: 140px;
    object-fit: cover;
}


/* .socities-card-section.student-learning-poster .soc-thumb img {  height: 140px;  object-fit: cover;  border: 1px solid #ddd;  background: #fff;  padding: 5px;} */

.socities-card-section.student-learning-poster .soc-cont h3 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}


/* Alubm page */

.album-row [class^="col-"] {
    margin-bottom: 30px;
}

.album-col {
    position: relative;
}

.album-col .album-title {
    background: var(--secondary);
    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 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.gallery-album-col a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owl-theme.mediagalleryalbum .owl-nav button i {
    background: #fff;
    border-radius: 3px;
    padding: 5px;
}


/* Forms page */

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

.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:hover {
    background: #ebebeb;
    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:last-child {
    border-bottom: none;
}

.link-card-body ul li a {
    display: block;
}

.pagination-custom ul.pagination {
    margin-left: 0;
    list-style: none;
}

.pagination-custom ul.pagination li {
    margin-bottom: 0;
    padding: 0 2px;
}

.pagination-custom ul.pagination li .page-link {
    color: #fff;
    background-color: var(--primary);
    border: 1px solid #182A31;
    margin-left: 0;
    min-width: 35px;
    text-align: center;
}

.pagination-custom ul.pagination li:hover .page-link,
.pagination-custom ul.pagination li.currentpage .page-link {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.pagination-custom ul.pagination li .page-link:focus {
    box-shadow: none;
}

.table-hover tbody tr:hover {
    background-color: rgb(39 62 71 / 15%);
}


/* Placement */

.title-placement {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.title-placement h2 {
    font-size: 32px;
}

.process-section {
    margin-bottom: 60px;
    justify-content: center;
}

.processs-col {
    background: #FCEADE;
    padding: 15px;
    margin-top: 120px;
    border-radius: 10px;
    height: calc(100% - 120px);
}

.process-left {
    background: var(--secondary);
    color: #fff;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: -90px auto 30px auto;
}

.process-left p {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 30px;
}

.process-left p span {
    font-size: 30px;
    font-weight: 600;
}

.process-right {
    text-align: center;
}

.process-right h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.placement-stat-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.placement-stat-col {
    width: calc(20% - 10px);
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    margin-bottom: 20px;
    margin-top: 30px;
}

.placement-stat h3 {
    font-size: 44px;
    margin-bottom: 10px;
    font-weight: 500;
}

.placement-stat-text p {
    padding-bottom: 0;
}

.past-req-section {
    margin-bottom: 20px;
}

.owl-theme.pastrecruiters-slides {
    padding-bottom: 40px;
}

.owl-theme.pastrecruiters-slides .owl-nav {
    bottom: 0px;
}

.owl-theme.pastrecruiters-slides .item .image-block {
    height: 120px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-theme.pastrecruiters-slides .item .image-block img {
    margin-bottom: 0;
    border: none;
    max-width: 90%;
    max-height: 80%;
    width: auto;
}

.graphsection {
    background: #401c1c;
    padding: 60px 0;
    margin-bottom: 40px;
    margin-top: 50px;
}

.graphsection .title-placement h2 {
    color: #fff;
}

.graph-img-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.graph-img-col {
    width: 33.33%;
}

.placements-links {
    margin-top: 50px;
}

.val-star {
    color: #ff0000;
}

.modal-dialog.fee-modal table.table {
    margin-bottom: 0 !important;
}

.modal-dialog.fee-modal td.hiddenRow {
    padding: 0 !important;
}

.modal-dialog.fee-modal table tr td .table tbody tr th,
.modal-dialog.fee-modal table tr td .table tbody tr td {
    font-size: 13px;
}

.modal-dialog.fee-modal .modal-header {
    background: var(--secondary);
    color: #fff;
    padding: 10px 10px;
    border-radius: 0;
}

.modal-dialog.fee-modal .modal-title {
    font-size: 20px;
}

.modal-dialog.fee-modal button.close {
    color: #fff !important;
    text-shadow: none !important;
    opacity: 1 !important;
}

.modal-dialog.fee-modal .table-responsive>table>tbody td {
    background-color: #fff !important;
}

body.modal-open .modal {
    padding-right: 0 !important;
}

.video-block {
    position: relative;
}

.video-block iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.socities-card-section.noRecord {
    margin-left: 0;
}

.socities-card-section.noRecord p {
    
    padding: 5px 0;
    
}

.contact-sidebar {
    background: #FCEADE;
    padding: 20px;
    height: 100%;
    border-top: 4px solid var(--secondary);
}

.contact-sidebar li {
    padding: 10px 0px 10px 30px;
    position: relative;
}

.contact-sidebar li:first-child strong {
    font-size: 18px;
}

.contact-sidebar li i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 15px;
}

.contact-map {
    border: 1px solid #ddd;
    padding: 5px;
}

.contact-map iframe {
    display: block;
    height: 350px;
}

.pastrecruiters-outer {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    justify-content: center;
}

.pastrecruiters-outer .image-block {
    height: 120px;
    border: 1px solid #ddd;
    width: calc(16.66% - 15px);
    margin-bottom: 15px;
    margin-left: 15px;
    border-radius: 5px;
}

.pastrecruiters-outer .image-block:hover {
    border-color: var(--secondary);
}

.pastrecruiters-outer .image-block a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.pastrecruiters-outer .image-block img {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    max-width: 90%;
    max-height: 80%;
    width: auto;
    padding: 0;
}

.owl-theme.infrastructureSlides {
    margin-bottom: 20px;
}

.owl-theme.infrastructureSlides .owl-nav {
    bottom: -10px;
}

.graph-img-section.internship {
    justify-content: space-between;
}

.graph-img-section.internship .graph-img-col {
    width: calc(50% - 20px);
    margin-bottom: 30px;
    text-align: center;
}

.graph-img-section.internship .graph-img-col img {
    max-width: 100%;
}

.graph-img-section.internship .graph-img-col:last-child {
    width: calc(50% - 20px);
    margin-top: 0px;
    text-align: center;
}

.placement-stat-section.internship .placement-stat h3 span+span {
    display: block;
    font-size: 24px;
}

.tab-content .list-with-date,
.content-area .list-with-date {
    margin-left: 0;
    margin-top: 20px;
}

.owl-theme.infrastructureSlides.video-slide .owl-nav {
    bottom: -40px;
}

.infrastructureSlides .item .image-block {
    padding-top: 57.67%;
    position: relative;
}

.infrastructureSlides .item .image-block a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.infrastructureSlides .item .image-block a img {
    height: 100%;
    object-fit: cover;
}

.member-card-col.awardrec-page ul {
    margin-left: 20px;
    list-style-type: circle;
    display: block;
}

.member-card-col.awardrec-page ul li {
    list-style-type: circle;
    list-style-position: outside;
    display: list-item;
    margin-bottom: 10px;
}

.table-pdf-link img {
    width: 25px;
}

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

.upload-file {
    position: relative;
}

.upload-file .form-control {
    padding: 10px 78px 10px 12px;
}

.viewuploaded {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    color: #fff;
    background: var(--secondary);
    font-size: 12px;
    padding: 0 10px;
    border-radius: 2px;
}

.viewuploaded:hover {
    color: #fff;
    background: var(--secondary);
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    display: flex;
    align-items: center;
}

.select2-selection.select2-selection--multiple {
    min-height: 48px;
    background: #f7f7f7;
    border-color: #ddd;
}

.mediacoverage .card-custom2 .card-thumb img+a img {
    object-fit: contain;
    background: #fff;
}

.h-logo-btm img {
    max-width: 85%;
    max-height: 90%;
}

.h-logo-btm .img-border {
    border: 1px solid #ddd;
    height: 100px;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.jublee-logo {
    position: relative;
    width: 185px;
    text-align: center;
}

.animate-charcter {
    background-image: linear-gradient(-225deg, #862724 0%, #44107a 29%, #ff1361 67%, #fff800 100%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 5s linear infinite;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -27px;
    line-height: 12px;
    animation-direction: reverse;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}


/* Homepage gallery album */

.media-gallery-section .album-col {
    display: flex;
    flex-direction: column-reverse;
}

.media-gallery-section .album-col .album-title {
    padding: 10px 15px 10px 15px;
    height: 55px;
    display: flex;
    align-items: center;
}

.media-gallery-section .album-col .album-title h3 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 13px;
    line-height: 20px;
}

.media-gallery-section .album-col .album-title .download-img-zip {
    display: none;
}

.media-gallery-section .gallery-slide .owl-stage-outer .owl-stage {
    display: flex;
    align-items: flex-start;
}

.gallery-slide .owl-nav {
    bottom: -10px;
    position: relative;
    margin-bottom: 40px;
}
.owl-theme.gallery-slide .owl-nav button i {
    color: var(--white);
}


/* Homepage gallery album */

#eventImagesList .modal-body .modalgal .owl-nav {
    bottom: 10px;
    position: absolute;
    background: #fff;
    width: auto;
    padding: 5px 3px;
    border-radius: 5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

#eventImagesList .modal-body .modalgal .owl-nav button {
    margin: 0 4px !important;
}


/* Site languages */

.lang-btns {}

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 */

.dvvpagebtns .btn-inline {
    display: grid;
    grid-column-gap: 10px;
    grid-template-columns: repeat(6, 1fr);
    grid-row-gap: 10px;
    margin-bottom: 15px;
}

.dvvpagebtns .btn-inline .btn {
    min-width: auto;
    margin: 0;
}

.g2ologo {
    width: 140px;
    position: relative;
    margin-top: 0px;
}

.g2ologo span {
    color: #222;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -30px;
    line-height: 12px;
    text-align: center;
}


/* Error page */

.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;
    text-align: center;
}

.page-error-content h3 {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* Responsive Masonry Layout */

.grid-wrapper>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.grid-wrapper>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
}

.grid-wrapper .wide {
    grid-column: span 2;
}

.grid-wrapper .tall {
    grid-row: span 2;
}

.grid-wrapper .big {
    grid-column: span 2;
    grid-row: span 2;
}

.translator {
    display: flex;
    margin-right: auto;
    margin-left: 10px;
    height: 100%;
    align-items: center;
}
div#google_translate_element {
    height: 35px;
}


#google_translate_element .skiptranslate.goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget .goog-te-combo {
    background: #fff;
    outline: none;
    border: solid 1px var(--primary);
    padding: 4px 0px;
    color: var(--primary);
    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;
}

a.close.homepop-close {
    margin-bottom: 15px;
    background: var(--secondary);
    text-shadow: none;
    color: #fff;
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    position: absolute;
    right: -10px;
    top: -10px;
    opacity: 1;
}

.logincollapse {
    display: inline-block;
    position: relative;
}

.logincollapse .loginddinner {
    flex-direction: column;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    z-index: 2;
    background: #fff;
    border-radius: 3px;
    width: auto;
    white-space: nowrap;
    display: none;
}

.logincollapse .loginddinner.show {
    display: flex;
}

.logincollapse .loginddinner a {
    color: #333;
    padding: 10px 12px;
    border-right: none;
    border-bottom: 1px solid #ddd;
}

.logincollapse .loginddinner a:last-child {
    border-bottom: none;
}

.logincollapse .loginddinner a:hover {
    color: var(--secondary);
}

a.table-pdf-btn {
    background-image: url(../../front/images/pdf-icon-red.png);
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    background-size: 30px;
    display: block;
    margin: 0 auto;
}

.custom-gallery .galleryData {
    margin-bottom: 15px;
}
.custom-gallery .galleryData a {
    display: block;
    border: 1px solid #ddd;
    padding: 5px;
}
.custom-gallery .galleryData a img {
    aspect-ratio: 5/4;
    width: 100%;
    object-fit: cover;
}


.top-dd-menu.dropdown {
    display: inline-block;
}
.top-dd-menu .dropdown-menu{padding: 0; border-radius: 0;}
.top-dd-menu .dropdown-menu li a {
    color: rgb(51, 51, 51);
    padding: 10px 12px;
    border-right: none;
    display: block;
    border-bottom: 1px solid rgb(221, 221, 221);
}
.top-dd-menu .dropdown-menu li:hover a {
    color:var(--secondary);
}
.top-dd-menu .dropdown-menu li:last-child a {
    border-bottom: none;
}
.header-links .with-sep ul{margin-top: 12px !important;} 
.header-links .with-sep a:nth-last-child(2) {
    border-right: 1px solid var(--black) !important;
    padding-left: 8px;
}

 .goog-te-banner-frame.skiptranslate,
  .goog-logo-link,
  .goog-te-gadget span {
    display: none !important;
  }

  button.btn-close {
    position: absolute;
    right: -10px;
    top: -10px;
    background: #14365f;
    opacity: 1;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center; 
    justify-content: center;

}
.testimonials-col {
    border: 1px solid #dadada;
    padding: 15px 15px 15px 15px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonials-col:hover {
    background: var(--light-secondary);
}
.testimonials-col::after {
    background: var(--primary);
    width: 100%;
    height: 300px;
    content: "";
    position: absolute;
    left: 0;
    top: -220px;
    border-radius: 50%;
}

.testimonial_images {
    text-align: center;
    position: relative;
    margin-top: 20px;
    z-index: 1;
}
.testimonial_images img { 
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}
.testimonials-cont {
    text-align: center;
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonials-cont .btn {
    height: 30px; 
        line-height: 29px;
    min-width: 100px;
    font-size: 12px;
    
}
.testimonials-cont .testi-cont p {
    height: 100px;
    overflow-y: auto;
}
.testimonials-cont .testi-cont p::-webkit-scrollbar {
  width: 5px;
}

.testimonials-cont .testi-cont p::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.testimonials-cont .testi-cont p::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

.testimonials-cont .testi-cont p::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* .middle-container.page-inner > .container {
    max-width: 100%;
    width: 100%;
}
.middle-container.page-inner > .container .row:nth-of-type(2){}
.middle-container.page-inner > .container .row:nth-of-type(2) .col-lg-4 {
    flex: 0 0 auto;
    width: 25%;
}
.middle-container.page-inner > .container .row:nth-of-type(2) .col-lg-8 {
    flex: 0 0 auto;
    width: 75%;
}
 */
.card-detail-col a{display: flex;}
.card-detail-col a .notice-date {
    background: #14365f;
    color: #fff;
    flex-shrink: 0;
    width: 65px;
    margin-right: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    flex-direction: column;
    height: 70px;
}
.card-detail-col a  .notice-des {
    text-align: left;
    line-height: 22px;
}
.card-detail-col a span strong {
    font-size: 25px;
}