@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
    font-family: 'ITC Symbol Std';
    src: url('../fonts/ITCSymbolStd-Black.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Symbol Std Book';
    src: url('../fonts/ITCSymbolStd-Bold.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Symbol Std';
    src: url('../fonts/ITCSymbolStd-Medium.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Medium.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ITC Symbol Std Book';
    src: url('../fonts/ITCSymbolStd-Book.woff2') format('woff2'),
        url('../fonts/ITCSymbolStd-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #000000;
    --base: #e95911;
    --primary-color: #3a3a3a;
    --white: #fff;
    --red: #e1000a;
    --yellow: #f39110;
    --grey-accent: #f3f3f3;
    --transition: all 0.4s ease;
    --tj-color-text-body-3: #67787a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: normal;
}

h1 {
    font-family: 'ITC Symbol Std Book';
    font-weight: 900;
    font-size: 40px;
    /* color: var(--black); */
    line-height: 1.1;
    margin-bottom: 15px;
}

h2 {
    font-family: 'ITC Symbol Std Book';
    font-weight: 900;
    font-size: 30px;
    /* color: var(--black); */
    line-height: 1.1;
    margin-bottom: 15px;
}

h3 {
    font-family: 'ITC Symbol Std Book';
    font-weight: 900;
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--black);
    letter-spacing: -1px;
}

h4 {
    font-family: 'ITC Symbol Std Book';
    font-weight: 900;
    font-size: 25px;
    line-height: 1.1;
    margin-bottom: 15px;

}

h5 {
    font-family: 'ITC Symbol Std Book';
    font-weight: 900;
    font-size: 22px;

}

.short-head {
    font-family: 'ITC Symbol Std Book';
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
     color: var(--base);
}

a.cta {
    color: var(--base);
    padding: 6px 24px;
    border-radius: 35px;
    font-size: 16px;
    border: 1px solid var(--base);
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.5s ease-in-out;
}

a.cta:hover {
    background-color: var(--base);
    color: var(--white);
}


header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner {
    z-index: 99;
}

.not-shown-head {
    display: none;
}

header.sticky .not-shown-head {
    display: block;
}

.top-mini-menu a {
    color: var(--black);
    font-weight: 700;
    padding-right: 30px;
    position: relative;
}

.top-mini-menu a::after {
    content: "/";
    position: absolute;
    right: 15px;
    color: var(--yellow)
}

.top-mini-menu a:last-child::after {
    content: none;
}

.menu {
    /* top: -100px; */

}

.logo-header img {
    /* max-width: 425px;
   
    background: #ffffff7a;
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 1em; */
    opacity: 0;
    transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 108px;
}

header.sticky .logo-header {
    padding: 10px 10px;
}

header.sticky .logo-header img {
    max-width: 280px;
    opacity: 1;
    height: auto;
    transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* .menu.sticky {
   
} */

body.modal-open .menu {
    right: 15px;
}

.menu .nav-pills {
    min-width: 425px;
    padding-left: 25px;
}

.menu .modal-body button,
.menu .modal-body .nav-pills a.nav-link {
    font-family: 'ITC Symbol Std Book';
    font-size: 40px;
    font-weight: bold;
    background-color: transparent;
    color: #fff;
    text-align: left;
    width: fit-content;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.menu .tab-pane .row a {
    position: relative;
}

.menu .modal-body .nav-link::before,
.menu .tab-pane .row a::before,
.qui-links a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    transition: all 0.7s ease-in-out;
    left: 0;
    bottom: 10px;
    background-color: #fff;
}

.menu .tab-pane .row a::before,
.qui-links a::before {
    bottom: -2px;
    display: inline-block;
}

.menu .modal-body:has(.active) button {
    opacity: 0.6;
}

.menu .modal-body .nav-link.active {
    color: #fff;
    opacity: 1;
    background-color: transparent;
}

.menu .modal-body .nav-link:hover {
    opacity: 1;
}

.menu .modal-body .nav-link:hover::before,
.menu .modal-body .nav-link.active::before,
.menu .tab-pane .row a:hover::before,
.qui-links a:hover::before {
    width: 100%;

}

@keyframes slidedown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

.menu .modal.fade.show {
    animation: slidedown 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1;
}

.menu .modal-dialog {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    margin: 0;
}

.menu .tab-pane {
    color: var(--white);

}

.menu .modal-content {
    height: 100%;
    border-radius: 0;
    background: linear-gradient(263deg, #e95911 0.16%, #e1000a 99.84%)
}

.menu .btnn,
.menu .ser-btnn {
    color: #ffffff;
    border: 1px solid #dc3545;
    border-radius: 7px;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(263deg, var(--base) 0.16%, var(--red) 99.84%);
    cursor: pointer;
    font-size: 30px;
    transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    right: 0;
    bottom: 0;
    ;
}



.menu .btnn span {
    font-size: 18px !important;
}

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

header.sticky {
    background: var(--white);
    top: 0;

    transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--bs-box-shadow-sm) !important;
}

header.sticky .menu .btnn {
    font-size: 20px;
    padding: 8px 7px;
    transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: static;
}

.sticky-menu {
    position: absolute;
    background: transparent;
    backdrop-filter: none;
    top: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;

}

.modal-open .sticky-menu {
    display: none !important;
}

.sticky-head {
    width: 100%;
    padding: 10px 25px;
    text-align: center;
}

.inner-banner .sticky-menu {
    bottom: auto;
    top: 0;
    z-index: 999;
}

.menu-bottom-imp {
    display: none;
    align-items: center;
    padding: 5px 15px;
    position: relative;
    background: var(--base);
    width: 100%;
    justify-content: space-evenly;
}

/* .menu-bottom-imp::before {
    width: 100px;
    height: 50%;
    background: var(--base);
    top: 1px;
    left: -28px;
    content: "";
    position: absolute;
    transform: skew(50deg,
            297deg);
    z-index: -1;
} */

.menu-bottom-imp a {
    font-size: 13px;
    color: var(--white);
    font-weight: 700;
    margin-right: 15px;
}

.menu-bottom-imp a:last-child {
    margin-right: 0;
}

.menu .modal-header .btn-close {
    background-color: #fff;
    border-radius: 50%;
    opacity: 1;
    margin: 0;
}

.menu .tab-pane {
    padding-top: 30px;
}

.menu .tab-pane li {
    margin-bottom: 12px;
}

.skip-content {
    animation: shake 4s ease infinite;
    position: absolute;
    right: 25px;
    bottom: 25px;
    z-index: 999;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px);
    }
}

.menu .tab-pane a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
}

.menu .tab-pane h5 {
    font-family: 'ITC Symbol Std Book';
    font-size: 28px;
    color: #fff;
}

.tab-pane.fade {
    transform: translateY(30px);
    /* slight slide */
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.tab-pane.fade.show {
    transform: translateY(0);
    opacity: 1;
}

.no-headi a {
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'ITC Symbol Std Book';
    font-size: 20px;
}

.quic-link {
    opacity: 0.6;
    font-size: 18px;
}

.qui-links {
    list-style: none;
}

.qui-links a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.below-link {
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.input-box {
    display: none;
}

.input-box input {
    outline: none;
    height: 24px;
    font-size: 15px;
}

.input-box input::placeholder {
    color: #0e0e0e;
}

input[type="search"]::-webkit-search-cancel-button {
    cursor: pointer;
}

.ser-btnn.open .input-box {
    display: flex;
    align-items: center;
}

.ser-btnn {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    width: 120px;
}

.ser-btnn.open {
    width: 300px;
}

.ser-btnn.open .ser-btn-inner {
    display: none;
}

.input-box i {
    cursor: pointer;
}

.sticky-icon {
    z-index: 99;
    position: fixed;
    top: 50%;
    right: 0%;
    margin-top: -160px;
    width: 125px;
    display: flex;
    flex-direction: column;
}

.sticky-icon a {
    transform: translate(90px, 0px);
    border-radius: 50px 0 0 50px;
    text-align: right;
    margin: 2px 0;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px;
    font-size: 12px;
    font-family: 'ITC Symbol Std';
    transition: all 0.8s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu .modal-content {
    border: 0;
}

.menu .tab-pane a {
    width: fit-content;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}

.Facebook {
    background-color: #2C80D3;
    color: #FFF;
}

.Youtube {
    background-color: #fa0910;
    color: #FFF;
}

.Twitter {
    background-color: #53c5ff;
    color: #FFF;
}

.Instagram {
    background-color: #FD1D1D;
    color: #FFF;
}

.Google {
    background-color: #d34836;
    color: #FFF;
}

.sticky-icon a i {
    background-color: #FFF;
    height: 25px;
    width: 25px;
    color: #000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 2px;
    transition: all 0.5s;
}

.sticky-icon a i.fa-facebook-f {
    background-color: #FFF;
    color: #2C80D3;
}

.sticky-icon a i.fa-google-plus-g {
    background-color: #FFF;
    color: #d34836;
}

.sticky-icon a i.fa-instagram {
    background-color: #FFF;
    color: #FD1D1D;
}

.sticky-icon a i.fa-youtube {
    background-color: #FFF;
    color: #fa0910;
}

.sticky-icon a i.fa-twitter {
    background-color: #FFF;
    color: #53c5ff;
}

.fas fa-shopping-cart {
    background-color: #FFF;
}

#myBtn {
    height: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align: center;
    padding: 10px;
    text-align: center;
    line-height: 40px;
    border: none;
    outline: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}

.fa-arrow-circle-up {
    font-size: 20px;
}

#myBtn:hover {
    background-color: #555;
}

.card-service {
    display: flex;
    flex-direction: column;

    border-radius: 20px;
    background: var(--grey-accent);
    color: var(--black);

    padding: 30px;
    height: 100%;
    transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    align-items: stretch;
    justify-content: center;

}

.card-service:hover {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    color: var(--white);

    transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-service.accent:hover p {
    color: var(--primary);
}

.card-service:hover .custom-border-2 {
    border-color: var(--yellow);
    background: var(--yellow);


}


.custom-border {
    border-width: 0 0 15px 15px;
    border-style: solid;
    border-radius: 0 0 0 50%;
    background-color: var(--grey-accent);
    border-color: var(--grey-accent);
}

.custom-border-2 {
    border-width: 15px 0 0 15px;
    border-style: solid;
    background-color: var(--grey-accent);
    border-color: var(--grey-accent);
    border-radius: 50% 0 0 0;

}

.custom-border-2.accent {
    border-color: var(--primary);
    background-color: var(--primary);
    font-size: 64px;
}

.banner-bg {
    position: relative;

}

.faculty-details-section h2 {
    color: var(--base);
}

.banner-carousel video,
.banner-carousel img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(224, 224, 224, 0) 60%, #fff);
    z-index: 9;
}

.modal-backdrop {
    z-index: 9;
}

.banner-content {
    position: absolute;
    bottom: 30px;
    left: 50px;
    z-index: 9;
}

.banner-content h1 {
    font-family: 'ITC Symbol Std Book';
    font-size: 60px;
    font-weight: 700;
    color: var(--black);

    line-height: 1;
}

.banner-content h1 .sml {
    font-size: 35px;

    color: var(--red);

}


.banner-bg>img {
    height: 100vh;
    /* object-fit: cover; */
}

.banner-bg .text {
    width: 390px;
    border-right: 3px solid;
    animation: blink 1s step-end infinite, type 2s steps(12) forwards;
    overflow: hidden;
    white-space: nowrap;
    display: block;
}

@media(max-width:1400px) {
    .banner-content h1 {
        font-size: 60px;
        letter-spacing: -7px;
    }

    .banner-content h1 .sml {
        font-size: 30px;
        letter-spacing: -4px;
    }

    .banner-bg .text {
        width: 280px;
    }
}

.banner-bg .text.off {
    border-right: transparent;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }

}

@keyframes type {
    0% {
        width: 0;
    }
}

.mouse {
    z-index: 9;
}

.mouse img {
    animation: updown 3s ease-in-out 1s infinite;
    cursor: pointer;
    transition: 0.5s;
    scale: 1.1;
}

.mouse img:hover {
    scale: 1.2;
}

@keyframes updown {
    50% {
        transform: translateY(20px);
    }
}


.banner-img-div {
    background-image: url(../images/banner-8.png);
    background-size: cover;
    height: 100vh;
    background-attachment: fixed;
    background-position-x: center;
    background-position-y: 35%;
}



.big p {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

.about-sec p {
    text-align: justify;
}

/* .at-a-glance {
    background: linear-gradient(120deg, rgb(0 0 0) 0%, rgb(145 145 145) 63%);
}

.at-a-glance h2 {
    color: #fff;
}

.at-a-glance .col-12 p {
    color: #fff;
} */

.at-a-glance .bg {

    background-color: var(--white);
    padding: 30px 18px;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(225, 0, 10, 1);
    border-radius: 1rem;
}

.at-a-glance .bg:hover {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    box-shadow: 0px 10px 10px 0px #00000012;
    transition: all 0.3s ease-in-out;
}

.at-a-glance .bg .count {
    color: var(--red);
    font-family: 'ITC Symbol Std Book';
    font-size: 40px;
    line-height: 1;
    font-weight: 900;
    text-wrap: auto;
}

.at-a-glance .bg:hover .count,
.at-a-glance .bg:hover .title {
    color: var(--white);
}

.at-a-glance .bg .title {
    font-size: 15px;
    font-weight: bold;
    color: #252B42;
    min-height: 50px;
    padding-top: 15px;
    margin-bottom: 20px;
    position: relative;
}

.at-a-glance .bg .title::before {
    content: "";
    position: absolute;
    background-color: #E74040;
    width: 50px;
    height: 2px;
    left: 0;
    bottom: -7px;
}

.at-a-glance .bg p {
    font-size: 13px;
    color: var(--black);
}

.at-glan {
    background-color: #000A40;
    clip-path: polygon(0 0, 100% 0, 100% 62%, 50% 100%, 0 62%);
    height: 350px;
}

.acad-prog h3 {
    position: relative;
    font-weight: 700;
    color: #580000;
    padding-left: 80px;
    padding-bottom: 10px;
}

.acad-prog h3::before {
    content: "";
    position: absolute;
    height: 70px;
    width: 70px;
    background-image: url(../images/programme.png);
    left: 0;
    top: -20px;

}

.acad-prog .c1 {
    background-color: #F6EEEE;
}

.acad-prog .c2 {
    background-color: #EEF6F0;
}

.acad-prog .c3 {
    background-color: #EEF2F6;
}

.acad-prog .c4 {
    background-color: #F2EEF6;
}

.acad-prog .bor {
    border: 1px solid var(--base);
    border-radius: 3px;
}

.acad-prog p {
    color: var(--black);
    margin-bottom: 0;
}

.partner {
    position: relative;
}

.partner h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.partner h4 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
    margin-top: 20px;
    padding: 0 10px;
}

.partner .cta {
    margin-left: 10px;
    margin-bottom: 20px;
}

.bg {
    background-color: #F3F3F3;
}

.partner p {
    margin-bottom: 15px;
}

/* .partner::before,
.partner::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: #FFD000;
    top: -10px;
    left: -10px;
    z-index: -1;
} */

.partner::after {
    background-color: var(--base);
    top: unset;
    left: unset;
    bottom: -10px;
    right: -10px;
}

.noti-anows a {
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
}



@media(max-width:1400px) {
    .at-a-glance .bg .count {
        font-size: 45px;
    }
}

.announcement {
    background-color: var(--base);
    padding: 7px 15px;
    color: var(--white);
    font-size: 18px;
    width: 230px;
    transform: skew(-20deg);
}

.announcement div {
    transform: skew(20deg);
}

.announcement img {
    animation: annblink 1s ease-in-out infinite;
}

@keyframes annblink {
    50% {
        scale: 1.1;
    }
}

.single-academics-card {
    position: relative;
    padding: 25px;
    border: 1px solid #eeeeee;
    margin-bottom: 24px;
    text-align: center;
    display: block;
    text-decoration: none;
}

.single-academics-card .icon {
    padding: 12px;
    border: 1px solid var(--black);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: auto;
    margin-bottom: 15px;
    transition: all 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-academics-card h4 {
    font-size: 21px;
    line-height: 30px;
    transition: all 1s ease;
}

.single-academics-card::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    right: 0;
    top: 0;
    background-color: var(--black);
    transition: all ease 0.5s;
    z-index: -1;
}

.single-academics-card:hover::before {
    width: 100%;
    left: 0;
    right: unset;
}

.single-academics-card .read-more-btn {
    color: var(--base);
    margin-bottom: 0;
    transition: all 1s ease;
}

.single-academics-card:hover h4,
.single-academics-card:hover p,
.single-academics-card:hover .icon {
    color: var(--white);
    border-color: var(--white);
}

.single-academics-card .icon img {
    transition: all 1s ease;
}

.single-academics-card:hover .icon img {
    filter: brightness(0) invert(1);
}

@keyframes scrl {
    0% {
        transform: translateY(20%);
    }

    100% {
        transform: translateY(-97%);
    }

}

.news {
    height: 200px;
    overflow: hidden;
}

.news ul {
    animation: scrl 20s ease-out infinite;
    padding: 0;
}

.less ul {
    animation-duration: 10s;
}

.news ul:hover {
    animation-play-state: paused;
}

.news ul li {
    background-color: #fbfbfb;
    margin-bottom: 3px;
    padding: 10px;
}

.news ul li a {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
}

.scrl a {
    color: var(--white);
    text-decoration: none;
    background-color: #26335D;
    display: inline-block;
    padding: 5px 10px;
}

.scrl h3 {
    font-size: 25px;
}

.scrl h3 {
    padding-left: 10px;
    border-left: 5px solid var(--base);
}

/* .b-l-o {
    padding-left: 10px;
    border-left: 5px solid var(--base);
} */

.scrl a .fa-solid {
    transition: all 0.3s ease-in-out;
}

.scrl a:hover .fa-solid {
    transform: translateX(5px);
}

.scrl-sec .row {
    border-bottom: 1px dashed #ccc;
}

.b-l-w {
    padding-left: 10px;
    border-left: 5px solid var(--white);
}

.mdp .nav button {
    writing-mode: sideways-lr;
    text-orientation: revert-layer;
}

.mdp .nav-link {
    color: #26335D;
    margin-bottom: 20px;
    border: 1px solid #26335D;
    padding: 20px 15px;
}

.mdp .nav-link.active {
    background-color: #26335D;
    color: #fff;
}

.mdp .tab-content {
    padding-left: 30px;
    padding-top: 20px;
    width: 100%;
}

.mdp .tab-content a {
    color: #26335D;
    text-decoration: none;
}

.event .e-card {
    position: relative;
    overflow: hidden;
}

.event .e-card::before {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.event .e-card:hover::before {
    opacity: 1;
}

.event .e-card .cont {
    position: absolute;
    bottom: -300px;
    left: 0;
    width: 100%;
    z-index: 1;
    transition: all 0.7s ease-in-out;
}

.event .e-card:hover .cont {
    bottom: 0px;
}

.event .e-card .cont h4 {
    color: var(--white);
}

.event .e-card .cont .cta {
    color: var(--white);
    border-color: var(--white);
}

.event .swiper-slide:nth-child(even) {
    transform: translateY(25px);
}

.event .swiper-slide:nth-child(odd) {
    transform: translateY(-25px);
}

.event .swiper-wrapper {
    padding: 30px 0;
}

.event .swiper-button-next,
.event .swiper-button-prev {
    top: 95%;
    width: 40px;
    height: 40px;
    border: 1px solid #26335D;
    border-radius: 50%;
    transition: 0.3s;
}

.event .swiper-button-prev {
    left: unset;
    right: 70px;
}

.event .swiper-button-next::after,
.event .swiper-button-prev::after {
    font-size: 22px;
    color: #26335D;
}

.event .swiper-button-next:hover,
.event .swiper-button-prev:hover {
    scale: 1.2;
}

.event {
    padding-bottom: 70px;
}

.gal-card h4 {
    font-size: 22px;
    margin-bottom: 0;
    margin-top: 20px;
    color: #fff;
}

.gal-card img {
    border-radius: 30px 0px 30px 0px;
    transition: 0.3s;
}

.gal-card:hover img {
    opacity: 0.9;
}

.gallery {
    background: linear-gradient(120deg, rgb(0 0 0) 0%, rgb(145 145 145) 63%);
}

.gal-card .cta {
    color: #fff;
    border-color: #fff;
    margin-top: 15px;
}

.br-t {
    border-top: 1px dashed #ccc;
}

.e-card img {
    border: 1px solid #f5f5f5;
}

.msg-sec .img-div {
    width: 30%;
    border-radius: 50%;
    position: relative;
    z-index: 1;

}

.msg-sec .img-div img {
    border-radius: 50%;
    border: 15px solid var(--yellow);
}

.msg-sec .msg-div {
    width: 70%;
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    transform: translateX(-185px) skew(-40deg);
}

.msg-div-inner {
    margin-left: 180px;
    transform: skew(40deg);
    padding: 30px 15px;
}

.msg-div-inner h3 {
    color: #fff;
}

.msg-div-inner p {
    color: #fff;
}

.msg-sec.opp .msg-div {
    transform: translateX(185px) skew(-40deg);
}

.msg-sec.opp .msg-div-inner {
    margin-left: 85px;
    margin-right: 136px;
}

.mdp {
    /* background-color: #fff7ec; */
}


footer {
    background: linear-gradient(350deg, rgba(233, 89, 17, 1) 0%, rgba(225, 0, 10, 1) 9%, rgba(231, 47, 12, 1) 16%, rgba(243, 145, 16, 1) 63%);
}

footer p,
footer a {
    font-size: 13px;
}

.social {
    list-style: none;
    margin-top: 30px;
}

.social i {
    color: #fff;
    font-size: 16px;
}

.social li {
    border: 1px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.social li:hover {
    background-color: var(--base);
}

footer h3 {
    color: #fff;
    font-size: 16px;
}

footer .footer-menu {
    padding-left: 30px;
}

footer .footer-menu li {
    color: #fff;
    list-style: circle;
    width: fit-content;

}

footer .footer-menu li:hover::marker {
    scale: 1.5;
}

footer .footer-menu a {
    color: #fff;
    text-decoration: none;

}

footer .footer-menu li {
    position: relative;
    margin-bottom: 5px;
    list-style: none;
}

footer .footer-menu li::before {
    content: "";
    width: 5px;
    height: 5px;
    border: 1px solid #fff;
    background-color: var(--red);
    position: absolute;
    left: -20px;
    top: 10px;
    transform: scale(0.9) rotate(45deg);
    transition: all 0.4s ease;
}

footer .footer-menu li:hover::before {
    transform: scale(1.3) rotate(225deg);
    background-color: var(--base);
}

.gi-logo-sec {
    background-color: #fbfbfb;
}

.addre {
    white-space: nowrap;
}

.addre i {
    transform: translateY(8px) scale(1.2);
    transition: all 0.5s ease-in-out;
}

.addre:hover i {
    transform: translateY(20px) scale(1.5);
}

.lang,
.fon {
    display: inline-block;
    padding: 5px;
    border: 1px solid #fff;
    color: #fff;
    width: 64px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    font-size: 13px;
}

.lang.actv,
.lang:hover,
.fon:hover {
    background-color: var(--base);
}


.theme input[type='checkbox'] {
    opacity: 0;
    display: none;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

/*label*/
.switcher-label {
    background-color: #000;
    cursor: pointer;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 10px;
    height: auto;
    min-height: 30px;
    border-radius: 30px;
    position: relative;
    margin-top: 15px
}

/*toggler*/
.switcher-label .switcher-toggler {
    background-color: white;
    width: 22px;
    height: 22px;
    z-index: 1;
    border-radius: 50%;
    display: block;
    position: absolute;
    left: 5%;
    top: 11%;
    transition: all 0.4s ease;
}

.banner-swipper .swiper-slide {
    background-size: cover;
    background-position: center;
    height: 100vh;
    /* Adjust as needed */
}

/*sun and moon images*/
.switcher-label i {
    font-size: 15px;
}

.switcher-label i:first-child {
    color: dodgerblue;
}

.switcher-label i:last-child {
    color: gold;
}

body.active .switcher-label .switcher-toggler {
    left: 60%;
}

footer .stat {
    font-size: 16px;
    font-weight: bold;
}

.copyrig {
    padding: 7px;
    background: var(--base);
}

.copyrig p {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: 13px;
}

.copyrig a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.rts-event-section-content .rts-counter {
    counter-reset: rt-counter;
    margin-top: 0;
}

.rts-event-section-content .single-event {
    margin: 0;
    padding: 20px 40px;
    background: #f6f6f6;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media screen and (max-width: 576px) {
    .rts-event-section-content .single-event {
        flex-wrap: wrap;
        gap: 50px;
        justify-content: center;
        text-align: center;
    }
}

.rts-event-section-content .single-event:nth-child(2n):not(:hover)::after {
    opacity: 1;
    top: 0;
}

.rts-event-section-content .single-event:nth-child(2n):not(:hover) .single-event-counter .count-number {
    color: var(--white);
}

.rts-event-section-content .single-event:nth-child(2n):not(:hover) .single-event-content-meta {
    color: var(--white);
}

.rts-event-section-content .single-event:nth-child(2n):not(:hover) .single-event-content h5 {
    color: var(--white);
}

.rts-event-section-content .single-event:nth-child(2n):hover .single-event-counter .count-number {
    color: var(--white);
}

.rts-event-section-content .single-event:nth-child(2n):hover .single-event-content-meta {
    color: var(--white);
}

.rts-event-section-content .single-event:nth-child(2n):hover .single-event-content h5 {
    color: var(--white);
}

.rts-event-section-content .single-event:nth-child(2n):hover::after {
    opacity: 1;
    top: 0;
}

.rts-event-section-content .single-event>* {
    position: relative;
    z-index: 10;
}

.rts-event-section-content .single-event::before {
    position: absolute;
    content: "";
    left: 20%;
    height: 100%;
    width: 1px;
    background: var(--white);
    transition: var(--transition);
}

@media screen and (max-width: 992px) {
    .rts-event-section-content .single-event::before {
        left: 140px;
    }
}

@media screen and (max-width: 768px) {
    .rts-event-section-content .single-event::before {
        left: 125px;
    }
}

@media screen and (max-width: 576px) {
    .rts-event-section-content .single-event::before {
        display: none;
    }
}

.rts-event-section-content .single-event::after {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    left: 0;
    top: 0;
    top: -50%;
    left: 0;
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.rts-event-section-content .single-event:hover .single-event-counter .count-number {
    color: var(--white);
}

.rts-event-section-content .single-event:hover .single-event-content-meta {
    color: var(--white);
}

.rts-event-section-content .single-event:hover .single-event-content h5 {
    color: var(--white);
}

.rts-event-section-content .single-event:hover::after {
    opacity: 1;
    top: 0;
}

.rts-event-section-content .single-event-counter {
    padding-right: 20px;
    position: relative;
}

@media screen and (max-width: 576px) {
    .rts-event-section-content .single-event-counter {
        padding-right: 0;
    }
}

@media screen and (max-width: 576px) {
    .rts-event-section-content .single-event-counter {
        width: 100%;
    }

    .rts-event-section-content .single-event-counter::after {
        position: absolute;
        content: "";
        height: 1px;
        width: 100%;
        background: var(--white);
        left: 0;
        bottom: -30px;
    }
}

.rts-event-section-content .single-event-counter .count-number {
    font-size: 65px;
    position: relative;
    transition: var(--transition);
    font-family: var(--font-hind);
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .rts-event-section-content .single-event-counter .count-number {
        font-size: 60px;
    }
}

@media screen and (max-width: 576px) {
    .rts-event-section-content .single-event-counter .count-number {
        font-size: 50px;
    }
}

.rts-event-section-content .single-event-counter .count-number::before {
    content: counter(rt-counter, decimal-leading-zero);
    counter-increment: rt-counter;
}

.rts-event-section-content .single-event-content {
    padding-left: 20px;
}

@media screen and (max-width: 1200px) {
    .rts-event-section-content .single-event-content {
        padding-left: 10px;
    }
}

@media screen and (max-width: 576px) {
    .rts-event-section-content .single-event-content {
        padding-left: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .rts-event-section-content .single-event-content {
        padding-left: 10px;
    }
}

.rts-event-section-content .single-event-content .single-event-content-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--rt-secondary);
    transition: var(--transition);
}

@media screen and (max-width: 1200px) {
    .rts-event-section-content .single-event-content .single-event-content-meta {
        gap: 15px;
        flex-wrap: wrap;
    }
}

.rts-event-section-content .single-event-content .single-event-content-meta span i {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .rts-event-section-content .single-event-content .single-event-content-meta {
        gap: 10px;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 576px) {
    .rts-event-section-content .single-event-content .single-event-content-meta {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.rts-event-section-content .single-event-content .single-event-content-meta .event-date,
.rts-event-section-content .single-event-content .single-event-content-meta .event-time,
.rts-event-section-content .single-event-content .single-event-content-meta .event-place {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media screen and (max-width: 1200px) {

    .rts-event-section-content .single-event-content .single-event-content-meta .event-date,
    .rts-event-section-content .single-event-content .single-event-content-meta .event-time,
    .rts-event-section-content .single-event-content .single-event-content-meta .event-place {
        gap: 5px;
    }
}

@media screen and (max-width: 768px) {

    .rts-event-section-content .single-event-content .single-event-content-meta .event-date,
    .rts-event-section-content .single-event-content .single-event-content-meta .event-time,
    .rts-event-section-content .single-event-content .single-event-content-meta .event-place {
        gap: 10px;
    }
}

@media screen and (max-width: 992px) {
    .event__background {
        display: none;
    }
}

.event__background img {
    width: 100% !important;
}

@media screen and (max-width: 1050px) {
    .event__background img {
        min-height: 620px;
    }
}

.rts-notice-section {
    padding-left: 75px;
}

@media screen and (max-width: 1200px) {
    .rts-notice-section {
        padding-left: 30px;
    }
}

@media screen and (max-width: 992px) {
    .rts-notice-section {
        padding-left: 0;
    }
}

.rts-notice-section .rts-tab .nav {
    margin: 0;
    display: flex;
    gap: 10px;
}

.rts-notice-section .rts-tab .nav-item {
    margin: 30px 0 0 0;
}

.rts-notice-section .rts-tab .nav-item .nav-link {
    padding: 7px 15px;
    border: 1px solid #eee;
    border-radius: 0;
    color: var(--rt-secondary);
    font-size: 14px;
    transition: var(--transition);
    font-weight: 500;
}

.rts-notice-section .rts-tab .nav-item .nav-link:hover {
    background: var(--rt-primary-1);
    color: var(--white);
}

.rts-notice-section .rts-tab .nav-item .nav-link.active {
    background: var(--rt-primary-1);
    color: var(--white);
}

.rts-notice-section .rts-tab .tab-content {
    height: 380px;
    overscroll-behavior: smooth;
    overflow-y: scroll;
}

.rts-notice-section .rts-tab .tab-content::-webkit-scrollbar {
    width: 12px;
}

.rts-notice-section .rts-tab .tab-content::-webkit-scrollbar-track {
    background: #F1F1FF;
}

.rts-notice-section .rts-tab .tab-content::-webkit-scrollbar-thumb {
    background-color: #36348E;
    border-radius: 0;
    border: 4px solid #F1F1FF;
}

.rts-notice-section .rts-tab .tab-content {
    scrollbar-color: #36348E #F1F1FF;
    scrollbar-width: medium;
}

.rts-notice-section .rts-tab .tab-content {
    -ms-overflow-style: none;
    /* Hide scrollbar in Edge */
    scrollbar-width: thin;
    scrollbar-color: #36348E #F1F1FF;
}

.rts-notice-section .rts-tab .notice-content-box {
    position: relative;
}

.rts-notice-section .rts-tab .single-notice {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    margin-right: 40px;
    margin-top: 0;
    margin-bottom: 0;
}

.rts-notice-section .rts-tab .single-notice:first-child {
    border-top: 1px solid #eee;
}

.rts-notice-section .rts-tab .single-notice:last-child {
    border-bottom: none;
}

.rts-notice-section .rts-tab .single-notice-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.rts-notice-section .rts-tab .single-notice-item .notice-date {
    font-size: 24px;
    color: var(--rt-secondary);
    font-family: "Yrsa", serif;
    ;
    display: flex;
    flex-direction: column;
}

.rt-clip-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #DEDEDE;
    -webkit-text-stroke: 1px;
}

/* ===== campus CSS ========*/
.campus {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
}

.campus>* {
    position: relative;
    z-index: 2;
}

.campus .rts__shape {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.campus .rts__shape img {
    width: 50px;
    height: 50px;
}

@media screen and (max-width: 768px) {
    .campus .rts__shape {
        display: none;
    }
}

.campus .rts__shape--1 {
    position: absolute;
    top: 15%;
    left: 25%;
}

.campus .rts__shape--2 {
    position: absolute;
    top: 50%;
    left: 3%;
}

.campus .rts__shape--3 {
    position: absolute;
    right: 20%;
    top: 25%;
}

.campus.v__2 {
    background: var(--rt-heading);
}

.campus.v__3 {
    background: var(--rt-primary-2);
}

.campus.v__3 .campus__right--text--description {
    color: var(--white);
}

.campus__single--item {
    background: var(--black);
}

.campus__single--item:hover .campus__single--item--title a::before {
    opacity: 1;
    width: 90%;
}

.campus__single--item:hover .campus__single--item--thumb img {
    transform: scale(1.1);
}

.campus__single--item--thumb {
    overflow: hidden;
    width: 100%;
}

.campus__single--item--thumb img {
    width: 100%;
    transform: scale(1);
    transition: var(--transition);
}

.campus__single--item--title {
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    padding: 15px 20px;
}

@media screen and (max-width: 768px) {
    .campus__single--item--title {
        font-size: 22px;
    }
}

.campus__single--item--title a {
    display: inline-flex;
    gap: 10px;
    color: var(--white);
    position: relative;
    align-items: center;
}

.campus__single--item--title a::before {
    position: absolute;
    content: "";
    bottom: 0;
    width: 10%;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
    opacity: 0;
    left: 0;
}

.campus__single--item--title a span {
    transform: rotate(-30deg);
    transition: var(--transition);
}

.campus__single--item--title:hover span {
    transform: rotate(0);
}

@media screen and (max-width: 992px) {
    .campus__wrapper .campus__link {
        margin-bottom: 50px;
    }
}

.campus__link--btn {
    border: 1px solid var(--white);
    padding: 10px 30px;
    border-radius: 30px;
    color: var(--white);
    display: inline-block;
    font-size: 24px;
    transition: var(--transition);
}

.campus__link--btn:hover {
    background: var(--white);
}

.campus__right--text--title {
    color: var(--white);
    margin-bottom: 30px;
    margin-top: -15px;
}

.campus__right--text--description {
    max-width: 500px;
    margin-left: 0;
}

.campus__paralax--image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
    background-attachment: fixed;
}

@media screen and (max-width: 1200px) {
    .campus__paralax--image {
        height: 500px;
    }
}

@media screen and (max-width: 768px) {
    .campus__paralax--image {
        height: 250px;
    }
}

.rts__section--wrapper.v__6 {
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    .rts__section--wrapper.v__6 {
        flex-direction: column-reverse;
    }
}

.rts__section--wrapper.v__6 .rts__section--wrapper--description {
    max-width: 50%;
    margin-top: 100px;
    margin-right: 15px;
    margin-left: 0;
    margin-bottom: 0;
    color: var(--white);
}

@media screen and (max-width: 768px) {
    .rts__section--wrapper.v__6 .rts__section--wrapper--description {
        margin-top: 0;
        max-width: 100%;
    }
}

.rts__section--wrapper.v__6 .rts__section--wrapper--title {
    font-size: 80px;
    text-align: right;
    color: var(--white);
    position: relative;
    line-height: 1.2;
}

@media screen and (max-width: 576px) {
    .rts__section--wrapper.v__6 .rts__section--wrapper--title {
        font-size: 40px;
    }
}

.rts__section--wrapper.v__6 .rts__section--wrapper--title::before {
    position: absolute;
    content: "";
    background-image: url(../images/highlight.svg);
    height: 45px;
    width: 50px;
    background-repeat: no-repeat;
    right: -40px;
}

.rts__section--wrapper.v__6 .rts__section--wrapper--title span {
    display: block;
}

@media screen and (max-width: 768px) {
    .rts__section--wrapper.v__6 .rts__section--wrapper--title span {
        display: inline-block;
    }
}

.social-you-block {
    position: relative;
}

.social-you-block:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.social-you-block a {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    left: 0;
    z-index: 2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 50px;
    color: var(--white);
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.social-you-block:hover a {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

.sm-default {
    opacity: 1;
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 20px;
    color: #fff;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sm-title {
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
}

.social-you-block:hover .sm-default {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
}

.important-notice-box {
    padding: 25px;
    color: var(--white);
}

.bg-gray {
    background: linear-gradient(120deg, rgb(0 0 0) 0%, rgb(145 145 145) 63%);
}

.butt-box {
    color: white;
    padding: 25px;
    height: 100%;
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.butt-box:hover .arrow-know {
    transform: rotate(-1deg);
}

.arrow-know {
    color: var(--text-white);
    position: absolute;
    right: 25px;
    top: 25px;
    transition: all 0.3s ease;
    transform: rotate(-30deg);
    cursor: pointer;
}

.rti {
    background-color: var(--yellow);
}

.tender {
    background-color: var(--red);
}

.imp-link {
    background-color: #6f6f6f;
}

.prog-link {
    display: flex;
    flex-wrap: wrap;
}

.prog-link span {
    margin-right: 10px;
    margin-top: 10px;
}

.prog-link span a {
    color: #fff;
    border: 1px solid #fff;
    display: block;
    padding: 6px 24px;
    border-radius: 35px;
    font-size: 16px;
}

.important-notice-box .nav-pills .nav-link.active,
.important-notice-box .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--black);
}

.important-notice-box .nav-pills .nav-link {
    color: var(--white);
}

.rts__single--testimonial {
    padding: 40px 25px 40px 40px;
    background: #fff7ec;
}

@media screen and (max-width: 768px) {
    .rts__single--testimonial {
        padding: 40px;
    }
}

@media screen and (max-width: 576px) {
    .rts__single--testimonial {
        text-align: center;
    }
}

.rts__single--testimonial .rts__rating--star {
    margin-bottom: 15px;
}

.rts__single--testimonial .rts__rating--star i {
    color: var(--rt-primary-1);
    font-size: 14px;
}

.rts__single--testimonial--text {
    font-size: 18px;
    color: var(--rt-heading);
    line-height: 28px;
}

.rts__single--testimonial--author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 576px) {
    .rts__single--testimonial--author {
        justify-content: center;
    }
}

.rts__single--testimonial--author--meta {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media screen and (max-width: 576px) {
    .rts__single--testimonial--author--meta {
        flex-direction: column;
    }
}

.rts__single--testimonial--author--meta .rts__author--info h5 {
    font-weight: 400;
    line-height: 1;
    font-size: 20px;
    margin-bottom: 5px !important;
}

.rts__single--testimonial--author--meta .rts__author--info .designation {
    font-size: 15px;
    color: var(--rt-heading);
}

.rts__single--testimonial--quote {
    width: 70px;
    height: 55px;
}

@media screen and (max-width: 576px) {
    .rts__single--testimonial--quote {
        display: none;
    }
}

.gi-logos a img {
    padding: 10px;
    background: var(--white);
    transition: var(--transition);
}

.gi-logos a img:hover {
    transform: scale(1.1);
    transition: var(--transition);
}

footer hr {
    color: var(--white);

}

.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.btn {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}

.icon-box {
    display: flex;
    justify-content: center;
    padding: 25px;
    font-size: 20px;
    font-weight: bold;
    align-items: center;
    text-align: center;
    aspect-ratio: 1/1;
    transition: all 0.5s;
    border-radius: 50%;
    background-color: var(--green);
    color: var(--primary);
    padding: 10px;
    width: max-content;
    height: max-content;
    transition: all 0.5s;
}

.icon-box.link {
    background: var(--base);
    color: var(--white);
}

.icon-box.link i,
.icon-box.link span{
    transform: rotate(45deg);
    transition: all 0.5s;

}

.icon-box.link:hover i,
.icon-box.link:hover span,
.card-service:hover .icon-box.link i,
.card-service:hover .icon-box.link span{
    transform: rotate(90deg);
    transition: all 0.5s;

}

.text-justify {
    text-align: justify !important;
}

.about_button {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.about_btn a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 7px 20px;
    border-radius: 7px;
    display: inline-block;
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: none;
}

.about_btn span {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    display: block;
    border-radius: 30px;
    background-color: var(--yellow);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.about_btn a:hover,
.about_btn a:focus {
    color: #ffff;
}

.about_btn a:hover span,
.about_btn a:focus span {
    width: 200%;
    height: 500px;
}

.about_btn a:before {
    position: absolute;
    /* content: ""; */
    left: 30px;
    bottom: 10px;
    background-color: #ffffffa1;
    z-index: -1;
    width: 12%;
    height: 2px;
    transition: .5s;
}

.about_btn a:hover:before {
    width: 105px;
    background-color: #ffff;
    z-index: 1;
}

/*===========================================
<-- Sater Css Service Area -->
==============================================*/
.rotate {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    background-position: center center;
}

@keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

section.service_area {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

/* section.service_area.boxed {
    margin: 0 20px 20px 20px;
} */

.service_single_item {
    position: relative;
    transition: .5s;
    display: inline-block;
    padding: 25px 0 0 25px;
    margin-bottom: 30px;
    z-index: 1;
}

.service_single_item:hover {
    padding: 10px 0 0 10px;
}

.service_thumb {
    border-radius: 15px 15px 0 0;
    overflow: hidden;

}

.light-pink .service_thumb {
    border-radius: 0 15px 15px 0;
    overflow: hidden;
    width: 50%;
}

.light-pink .service_thumb img {
    max-height: 280px;
}

.service_single_item:before {
    position: absolute;
    top: 0;
    background: #ffa2a278;
    width: 100%;
    content: "";
    height: 300px;
    z-index: -1;
    left: 0;
    border-radius: 20px;
    transition: .5s;
    backdrop-filter: blur(25px);
    /* Apply blur to the background behind this element */
    -webkit-backdrop-filter: blur(10px);
}

.service_single_item:hover:before {
    background: hsl(0, 0%, 100%);
}

.service_thumb img {
    width: 100%;
}

.hover-shown i {
    color: var(--white) !important;
}

.service_single_item:hover .hover-shown i {
    color: var(--yellow) !important;
}

.service_content {
    border-radius: 0 0 20px 20px;
    background-color: #ffffff;
    transition: .5s;
    text-align: left;
    padding: 20px;
    position: relative;
    z-index: 1;
    min-height: 200px;

}

.service_content:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    background: url(../images/home_one/ser_shape.png);
    height: 100%;
    width: 0%;
    z-index: -1;
    transition: .5s;
    border-radius: 0 0 20px 20px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    opacity: 0;
}

.service_single_item:hover .service_content:before {
    width: 100%;
    opacity: 1;
}

.service_content h3 {
    font-size: 20px;
    line-height: normal;
    font-weight: 700;
    margin-top: 0;
}

.service_content p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines to show */
    line-clamp: 2;
    /* Standard property for future compatibility */
    -webkit-box-orient: vertical;
}

.service_single_item:hover .service_content h3 {
    color: var(--base);
}

/* ====Service Button====== */
.service_btn {
    margin-top: 15px;
}

.service_btn a {
    transition: .5s;
    display: inline-block;
    letter-spacing: -6px;
    font-size: 14px;
    line-height: 32px;
    text-transform: uppercase;

    font-weight: 500;
    transition: .5s;
    color: #ffffff;
}

.service_btn a i {
    margin-left: -8px;
    font-size: 25px;
    transform: rotate(-30deg);
    transition: var(--transition);
    font-weight: 600;
    color: var(--yellow);
}

/* all hover */
.service_single_item:hover .service_btn a {
    letter-spacing: 0;
    text-indent: 0px;
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 25px;
    padding: 5px 10px;
    transition: .5s;
    line-height: normal;
}

.service_single_item:hover .service_btn a i {
    margin-left: 8px;
    color: var(--yellow);
    font-size: 14px;
    transform: rotate(0deg);
    transition: var(--transition);
}

.service_shape {
    position: absolute;
    top: 0%;
    left: 0;
    margin: 0;
}

.service_shape img {
    width: 100%;
}

.service_fuor {
    position: absolute;
    top: 2%;
    left: 3px;
    width: 97px;
    height: 97px;
    border-radius: 49px;
    background-color: var(--white);
    line-height: 97px;
    text-align: center;
    right: 0;
    overflow: hidden;
    margin: auto;
}

.floating-quote {
    opacity: 0.2;
    filter: brightness(38.5);
    position: absolute;
    top: 25px;
    right: 25px;
}

.prog-swipe .swiper-button-next,
.prog-swipe .swiper-button-prev {
    bottom: 3%;
    top: auto;
    width: 30px !important;
    height: 30px !important;
    border: 1px solid #ffffff;
    border-radius: 50%;
    transition: 0.3s;
}

.prog-swipe .swiper-button-prev {
    left: unset;
    right: 70px;
}

.prog-swipe .swiper-button-next::after,
.prog-swipe .swiper-button-prev::after {
    font-size: 22px;
    color: #ffffff;
}

.prog-swipe .swiper-button-next:hover,
.prog-swipe .swiper-button-prev:hover {
    scale: 1.2;
}

/* executive-programme-section start */

.executive-video-holder {
    position: relative;
    z-index: 9;
    margin-right: 30px;
}

.executive-video-holder video {
    object-fit: cover;
}

.executive-video-holder::after {
    content: '';
    position: absolute;
    height: 55%;
    width: 100%;
    background: #000;
    left: 0;
    bottom: 0;
    background: transparent linear-gradient(0deg, #000000 0%, #80808000 100%) 0% 0% no-repeat padding-box;
}

.executive-video-holder p {
    color: #fff;
    padding: 80px;
    position: absolute;
    bottom: 0;
    z-index: 99;
}

.executive-programme-section {
    background: var(--color3);
}

/* .executive-programme-section .site-title {
    margin-bottom: 30px;
} */

.executive-right-panel {
    color: var(--black);
}

.executive-right-panel h5 {
    color: var(--black);
    margin-bottom: 20px;
}

.executive-right-panel ul {
    padding: 0;
    margin: 0;
}

.executive-right-panel ul li {
    padding: 15px 20px;
    margin: 0 0 20px;
    list-style: none;
    border: 1px solid var(--black);
    border-radius: 8px;
}

.upcoming-tab li {
    width: 48%;
    margin-right: 15px;
}

.verticle-tab .nav-link {
    text-align: left;
}

.verticle-tab .nav-link {
    color: var(--black);
    border-right: 1px solid var(--tj-color-text-body-3);
    border-radius: 0;
}

.verticle-tab .nav-link.active {
    background: none;
    color: var(--base);
    font-family: 'ITC Symbol Std Book';
    font-weight: 700;
    border-right: 3px solid var(--base)
}

.executive-right-panel h6 {
    color: var(--black);
    font-family: 'ITC Symbol Std Book';
    font-weight: 700;
}

.executive-right-panel h6 span {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: background-size 0.3s;
    position: relative;
}

.executive-right-panel ul li:hover h6 span {
    background-size: 100% 1px;
}

.executive-right-panel ul li:hover h6 span:hover {
    cursor: pointer;
}

.executive-right-panel p {
    color: var(--black);
    padding-left: 7px;
    border-left: 4px solid var(--base);
    position: relative;
    margin-bottom: 5px;
}

.executive-right-panel p span {
    font-size: 20px;
    font-family: 'ITC Symbol Std Book';
    font-weight: 700;
}

.executive-right-panel p i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.executive-right-panel p a {
    color: var(--black);
}

.executive-right-panel ul li:hover {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    border-color: var(--white);
}

.executive-right-panel ul li:hover h6,
.executive-right-panel ul li:hover p,
.executive-right-panel ul li:hover p a {
    color: var(--white);
    border-color: var(--white);
}


.executive-right-panel .view-all-btn {
    border: 3px solid var(--black);
    border-radius: 0;
    font-size: 14px;
    padding: 10px 24px;
    font-weight: 500;
    position: relative;
    display: inline-block;
    background: transparent;
    color: var(--black);
}

.executive-right-panel .view-all-btn:hover {
    background: var(--black);
    color: var(--white);
}

.executive-right-panel .view-all-btn::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 130%;
    width: 250%;
    height: 1px;
    background-color: var(--black);
}

.executive-right-panel .view-all-btn::after {
    content: "";
    position: absolute;
    top: 35%;
    left: calc(130% + 250%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: var(--black);
}

/* executive-programme-section end */
.case-study-thumb {
    position: relative;
    overflow: hidden;
}

.case-study-thumb {
    position: relative;
    overflow: hidden;
    background: var(--black);
    padding: 0;
    border-radius: 10px;
    transition: all 500ms linear;
    height: 500px;
}

.case-study-thumb:hover {
    padding: 20px;
}

.case-study-thumb::before {
    background: var(--black);
    bottom: 0;
    content: "";
    left: 50%;
    position: absolute;
    right: 51%;
    top: 0;
    opacity: 1;
    pointer-events: none;
    transition: all 500ms linear;
    z-index: 1;
}

.service_thumb:hover:before {
    left: 10%;
    right: 10%;
    opacity: 0;
    transition: all 500ms linear;
}

.case-study-content {
    width: 75%;
    background: var(--black);
    padding: 30px 30px 10px;
    position: absolute;
    bottom: -16%;
    border-radius: 0 5px 5px 5px;
    z-index: 1;
    transition: .5s;
    opacity: 0;
}

.case-study-thumb:hover .case-study-content {
    bottom: 0%;
    opacity: 1;
}

.case-study-thumb img {
    width: 100% !important;
    transition: .5s;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.case-study-content h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 0;
}

.case-study-content h3 a {
    color: var(--white);
}

.case-study-content p {
    font-size: 15px;
    color: #e0f1df;
    font-weight: 400;
    margin-top: 5px;
}

.single_portfolio_icon {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0;
    transition: .5s;
}

.case-study-single-box:hover .single_portfolio_icon {
    opacity: 1;
    top: 50%;
}

.single_portfolio_icon a {
    background: #e0f1df;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    line-height: 60px;
    color: var(--base);
    transform: rotate(-45deg);
}

.mySwiper {
    width: 100%;
    height: 450px;
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    display: none;
    /* Initially hidden */
    box-shadow: var(--bs-box-shadow-sm) !important;

}

/* .wobble {
    animation: right 0.6s ease-in-out;
}
*/
.wobble {

    transition: var(--transition);
}

.wobble:hover {
    /* animation: shake 0.6s ease-in-out infinite; */
    transform: scale(1.1);
    transition: var(--transition);
}

@keyframes wobble {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(3deg);
    }

    50% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(2deg);
    }
}

#backToTop:hover {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
}

.innerbanner-pattern {

    overflow: hidden;
    height: 550px;
    position: relative;
}

.innerbanner-pattern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.innerbanner-pattern::before {
    content: '';
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(4, 42, 45, 0) 25.37%, rgb(0 0 0) 104.18%),
        linear-gradient(180deg, rgba(4, 42, 45, 0) 10.75%, rgb(171 171 171) 100%);
    width: 100%;
    height: 35%;
    z-index: 1;
}

.breadcrumb-upper {
    position: absolute;
    bottom: 0;
    right: 3%;
    color: var(--white);
    z-index: 2;
    width: 100%;
    text-align: right;
}

.breadcrumb-upper h2 {
    color: var(--white);
    font-size: 40px;
}

.breadcrumb-stripe ul {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 10px;
    margin-left: 0;
    padding-left: 0;
}

.breadcrumb-stripe ul li {
    list-style: none;
    padding-right: 10px;
    position: relative;
    margin-bottom: 0;
}

.breadcrumb-stripe ul li::before {
    content: "/";
    position: absolute;
    right: 0px;

}

.breadcrumb-stripe ul li a {
    color: var(--black);
}

.breadcrumb-stripe ul li:last-child:before {
    content: none;
}

.faculty-image {
    position: sticky;
    top: 100px;

}

.faculty-box .case-study-thumb img {
    height: 250px;
}

.faculty-box .case-study-thumb {
    height: auto;
}

.height-version-faculty-details {
    text-align: justify;
    max-height: 410px;
    overflow: auto;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.4) transparent;
    /* border: 1px solid var(--base); */
    margin-bottom: 15px;
}

.height-version-faculty-details::-webkit-scrollbar {
    width: 10px;
}

.height-version-faculty-details::-webkit-scrollbar-track {
    background: transparent;
}

.height-version-faculty-details::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

.case-study-single-box.faculty-box .case-study-content h3 {
    font-size: 18px;
}

.case-study-single-box.faculty-box .case-study-content p {
    font-size: 13px;
    margin-bottom: 0;
}

.case-study-single-box.faculty-box .case-study-content {
    opacity: 1;
    bottom: -2%;

}

.faculty-box .case-study-thumb::before,
.faculty-box .case-study-thumb {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
}

.faculty-box .case-study-content {
    position: relative;
    width: 100%;
    padding: 15px;
}

.faculty-box .case-study-thumb img {

    border-radius: 10px 10px 0 0;

}

.faculty-box .case-study-content {
    background: var(--base);
}

/* =========================================================
  <--- Start consalt Steps Area CSS --->
============================================================ */

section.steps_area {
    background: #E0F1DF;
    border-radius: 20px 20px 0 0;
    padding: 105px 0 112px;
}

.steps-single-item {
    margin-bottom: 30px;
    padding: 40px 40px 31px;
    background: var(--red);
    background: url(../images/steps_bg.png);
    background-repeat: no-repeat;
    border-radius: 10px;
    background-size: cover;
    position: relative;
}

.steps-single-item:before {
    position: absolute;
    top: 20px;
    right: 59px;
    width: 30px;
    height: 1px;
    background-color: var(--base);
    content: "";
}

h3.steps_number {
    position: absolute;
    right: 30px;
    top: 0;
    font-size: 18px;
    color: var(--red);
    font-weight: 400;
}

.steps_icon {
    width: 76px;
    height: 76px;
    border-radius: 38px;
    background-color: rgb(225 0 10 / 18%);
    line-height: 76px;
    text-align: center;
    transition: .5s;
}

.top-message-float {
    position: absolute;
    width: 50%;
    left: 50%;
    margin-left: -25%;
    top: 50%;
    z-index: 999;
    text-align: center;
    color: var(--white);
}

.steps-single-item:hover .steps_icon {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
    ;
}

.steps_icon img {
    transition: .5s;
}

.steps-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.steps-single-item:hover .steps_icon img {
    filter: brightness(0) invert(1);
}

.steps-content h3 {
    font-size: 20px;
    color: #002c2a;
    font-weight: 500;
    margin: 25px 0 16px;
}

.steps_btn a {
    color: var(--base);
    display: inline-block;
    margin-top: 4px;
    font-size: 16px;
}

/************************************/
/***        16. Footer Css        ***/
/************************************/

.main-footer {
    padding-top: 60px;
}

.footer-copyright {
    padding: 10px 0;
    margin-top: 30px;
}

.footer-copyright-text {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
}


.main-footer {
    position: relative;
    background: linear-gradient(350deg, rgba(233, 89, 17, 1) 0%, rgba(225, 0, 10, 1) 9%, rgba(231, 47, 12, 1) 16%, rgba(243, 145, 16, 1) 63%);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: auto;
    padding: 100px 0 0;

}

.main-footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../images/footer-bg-2.png);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: auto;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.about-footer {
    width: 100%;
    max-width: 600px;
}

.about-footer .section-title h2 {
    color: var(--white);
}

.footer-contact-info h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-contact-info p {
    color: var(--white);
    margin: 0;
}

.footer-contact-info p span {
    font-size: 20px;
    font-weight: 600;
}

.footer-social-links {
    margin-top: 30px;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 15px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    border-color: var(--accent-color);
}

.footer-social-links ul li a i {
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    background: var(--white);
    border-color: var(--white);
    color: var(--base);
    transform: translateY(5px);
}

.footer-social-links ul li:hover a i {
    color: var(--base);
}

.footer-copyright {
    border-top: 1px solid #ffffff33;
    border-bottom: 1px solid #ffffff33;
    padding: 15px 0;
    margin-top: 80px;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer-menu ul li {
    display: inline-block;
    margin-right: 30px;
}

.footer-menu ul li:last-child {
    margin-right: 0;
}

.footer-ul li {
    margin-bottom: 3px;
    transition: all 0.3s ease-in-out;
}

.footer-ul li:hover {
    transform: translateX(10px);
}

.footer-ul li::before {
    font-size: 16px;
    left: 5px;
}

.footer-ul a {
    font-size: 14px;
    color: #fff;
}

.footer-menu ul li a {
    color: var(--white);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-menu ul li:hover a {
    color: var(--accent-color);
}

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

.footer-copyright-text p {
    color: var(--white);
    margin: 0;
}

.check {
    margin: 0;

    list-style: none;
}

.check li {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--white);
    margin-bottom: 5px;
    list-style: circle;
}

.check li::before {
    content: '\f00c';
    font-family: 'Font Awesome 7 Free';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    background-image: var(--white);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.phone-no .fas {
    transform: rotate(90deg);
}

.phone-no,
.email-id,
.loc {
    color: #fff;
}

.phone-no a,
.email-id a {
    color: #fff;
}

.phone-no .fa,
.email-id .fa,
.loc .fa {
    padding: 14px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
    width: 45px;
}

.noheadigul {
    margin-top: 50px;
}

.loc .fa {
    padding: 10px 12px;
}


.addres p b {
    font-size: 18px;
}

.top-header .row {
    align-items: center;
}

.top-header .left span {
    font-size: 14px;
    margin-right: 6px;
}

.top-header .left span:last-of-type {
    margin-right: 0;
}

.top-header .right {
    display: flex;
    align-items: center;
}

.top-header .right a {
    color: #000;
}

.top-header .right span {
    font-size: 14px;
}

.top-header .right .right-first {
    padding-right: 20px;
}

.top-header .right .right-second,
.right-third,
.right-forth {
    padding: 0 10px;
    display: flex;
    align-items: center;
}

.top-header .right .right-fifth {
    padding-left: 20px;
}

.top-header .right .right-first,
.right-second,
.right-third,
.right-forth {
    border-right: 1px solid #fff;
}

.top-header .right .right-second button {
    width: 13px;
    height: 13px;
    border: 1px solid #000;
    margin-left: 5px;
    border-radius: 50%;
}

.top-header .right .right-second button:first-of-type {
    background-color: #fff;
}

.top-header .right .right-second button:last-of-type {
    background-color: #000;
    border: 1px solid #fff;
}

.top-header .right .right-forth button {
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.top-header .right .right-forth button:first-child {
    padding: 3px 8px;
}

.top-header .right .right-forth button:nth-child(2) {
    padding: 3px 4px;
}

.top-header .right .right-forth button:last-child {
    padding: 3px 5px;
}

.top-header .right .right-forth button.active {
    background-color: #000;
    border: 2px solid #fff;
}

.top-header .right .right-fifth button {
    color: #000;
    background-color: transparent;
    font-size: 14px;
    border: none;
    padding: 2px 8px;
    color: #fff;
    border-radius: 7px;
    border: 1px solid #fff;
    margin-right: 5px;

}

.top-header .right .right-fifth button.active {
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
    padding: 2px 10px;

}

.light-pink {
    background-color: #fff0de !important;
}

.feature_content {
    padding: 25px;

    border-radius: 8px;
    height: 100%;
    margin-bottom: 25px;
}

.feature_content p {
    margin-bottom: 5px;
}

.service_area.style_two {
    background: #fff0de !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    top: 0;
}

.overflow-hidden {
    overflow: hidden !important;
}

.custom_width {
    width: 150%;
}


.light-pink .service_single_item.style_two {
    padding: 0;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    background: transparent;
    margin-bottom: 0;
}

.light-pink .service_single_item.style_two:before {
    display: none;
}

.light-pink .service_single_item.style_two .service_content {
    background: #fff;
    padding: 35px;
    border-radius: 5px;
    width: 50%;
}

.light-pink .service_single_item.style_two:hover .service_content:before {
    display: none;
}

.light-pink .style_two.service_single_item .service_content h4 {
    color: var(--base);
    font-size: 15px;
    font-weight: 400;
    margin: 36px 0 20px;
    position: relative;
}

.light-pink .service_single_item.style_two .service_content h3 {
    color: #063232;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Number of lines to show */
    line-clamp: 2;
    /* Standard property for future compatibility */
    -webkit-box-orient: vertical;
}

.light-pink .service_single_item.style_two .service_content h3 {
    color: #063232;
    font-size: 20px;
    margin: 0 0 10px;
}

.light-pink .service_single_item.style_two .service_btn {
    margin-top: 26px;
}

.light-pink .service_single_item.style_two .service_btn a {
    color: #fff;
}

.light-pink .service_single_item.style_two:hover .service_btn a {
    color: #0a4b4b;
}

.light-pink .service_single_item.style_two .service_btn a i {
    color: #0a4b4b;
    font-size: 16px;
    transform: rotate(-45deg);
    display: inline-block;
}

.light-pink .service_single_item.style_two:hover .service_btn a i {
    transform: rotate(0deg);
}

.light-pink .style_two.service_single_item .service_thumb img {
    width: inherit;
}

.light-pink .service_list.owl-carousel .owl-item img {
    /* display: block; */
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.light-pink .service_list .owl-nav {
    position: absolute;
    top: -37%;
    right: 34%;
    display: block;
}

.light-pink .service_list button.owl-prev i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(6, 50, 50, 0.2);
    display: inline-block;
    line-height: 61px;
    transition: .5s;
    font-size: 25px;
    transform: rotate(45deg);
    margin-right: 15px;
}

.light-pink .service_list button.owl-next i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid rgba(6, 50, 50, 0.2);
    display: inline-block;
    line-height: 61px;
    transition: .5s;
    font-size: 25px;
    transform: rotate(-45deg);
}

.light-pink .service_list button.owl-prev i,
.service_list button.owl-next i:hover {
    background: var(--base);
    color: #fff;
}

.navigation-alpha {
    display: flex;
    justify-content: space-between;
}

.navigation-alpha span {
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;

    border: 1px solid var(--red);
    border-radius: 4px;
    margin: 2px;
    color: var(--red);
    justify-content: center;
    align-items: center;
}

.navigation-alpha span a {
    color: var(--red);
    text-decoration: none;

}

.faculty-image {
    height: 650px;
}

/* faculty details */
.faculty-image img {
    height: 450px;
    object-fit: cover;
    border: 5px solid var(--white);
    object-position: top;
}

.faculty-details-section {
    padding: 4em 0;
    /* overflow: hidden; */
}

.faculty-details-side h4 {
    color: var(--base);
}

.faculty-details-section::before {
    content: "";
    width: 30%;
    height: 100%;
    background-image: url(../images/faculty-header-background.svg);
    background-repeat: no-repeat;
    object-fit: cover;
    position: absolute;
    right: 0;
    background-size: cover;
    top: 0;
    z-index: -1;

}

.stciky-bun {
    width: 105%;
    height: 600px !important;
    object-fit: cover;
    right: -50%;
    background-size: cover;
    top: -4em;
    z-index: -1;
    transform: scale(1.4);
    border: 0 !important;
}

.social-faculty a {
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--yellow);
    border-radius: 50%;
    color: #000;
    margin-right: 10px;
}

.social-faculty a:hover {
    color: var(--yellow);
}

.faculty-nav-tab .nav-tabs .nav-item.show .nav-link,
.faculty-nav-tab .nav-tabs .nav-link.active {
    border: 0;
    color: var(--base);
    border-bottom: 5px solid var(--base);
}

.faculty-nav-tab .nav-link {
    font-size: 16px;
    font-family: 'ITC Symbol Std Book';
    font-weight: 700;
    color: var(--black);
}

.faculty-nav-tab .nav-link:hover,
.faculty-nav-tab .nav-link:focus {
    border: 0;
    color: var(--base);
}

.faculty-nav-tab .tab-pane {
    padding: 25px;
    background: var(--white);
    border: 1px solid var(--yellow);
}

.btn-close {
    width: 2em;
    height: 2em;
}

.modal-search .form-control {
    min-width: 450px;
    background: transparent;
    border: 1px solid var(--white);
    color: #fff;
}

.modal-search .form-control::placeholder {
    color: #fff;
    opacity: 1
}

.over-lay-text {
    overflow: hidden;
}

.over-lay-text img {
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
}

.over-lay-text:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}

.bg-grad {
    background: linear-gradient(120deg, rgba(225, 0, 10, 1) 0%, rgba(233, 89, 17, 1) 35%, rgba(243, 145, 16, 1) 63%);
}

.bg-yellow {
    background: var(--yellow);
}

.bg-orange {
    background: var(--base);
}

.extrapa-top {
    padding: 6em 0;
}

.over-lay-text .sm-default {

    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent linear-gradient(0deg, #000 0%, #80808000 100%) 0% 0% no-repeat;
    width: 100%;
    height: 40%;
    color: var(--white);

}

.over-lay-text .text-ab {
    position: absolute;
    bottom: 25px;
}

/* Acceisibility */
.acc-wrapper {
    position: fixed;
    left: 0;
    bottom: 50%;
    box-sizing: border-box;
    text-align: right;
    z-index: 99;
    left: 0;
}

.acc-wrapper .access-icon {
    text-align: right;
    width: 55px;
    font-size: 45px;
    color: var(--yellow);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    border-radius: 50%;
    padding: 0;
    border: unset;
    background-color: #ffffff;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.acc-wrapper .access-icon:hover {
    transform: rotateY(180deg)
}

.acc-wrapper .acc-modal {
    width: 100px;
    height: 0;
    transition: all 0.5s ease-in-out;
    background-color: var(--white);
    overflow: hidden;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-bottom: 5px;
    margin-right: 20px;
    opacity: 0;
}

.acc-wrapper .acc-modal.activ {
    width: 305px;
    height: 240px;
    padding: 10px;
    opacity: 1;
}

.acc-wrapper .acc-title {
    background-color: var(--base);
    border-radius: 15px 15px 0 0;
    padding: 10px;
}

.acc-wrapper .acc-title h2 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 0;
}

.acc-wrapper .acc-modal button {
    background-color: var(--base);
    color: var(--white);
    border: 0;
    border-radius: 5px;
    font-size: 15px;
}

.acc-wrapper .cross {
    border-radius: 20px;
}

.prog-menu {
    display: flex;
    position: relative;
    padding-left: 0;
    margin: 0;
}

.prog-menu li {
    list-style: none;
    padding: 5px 15px;
    margin-right: 10px;
    transition: all 0.5s ease-in-out;
}

.prog-menu li a {
    color: var(--black);
    display: flex;
}

.prog-menu li:hover {
    background-color: var(--base);
    transition: all 0.2s ease-in-out;
}

.prog-menu li:hover a {
    color: var(--white);
    transition: all 0.2s ease-in-out;
}

.prog-menu li.has-child-theme .submenu {
    position: absolute;
    padding-left: 0;
    background-color: var(--base);
    z-index: 9;
    left: 0;
    display: none;
    min-width: 100%;
    transition: all 0.2s ease-in-out;
}

.prog-menu li.has-child-theme .submenu li a {
    color: var(--white);
}

.prog-menu li.has-child-theme .submenu li:hover a {
    transform: translateX(10px);
    transition: all 0.2s ease-in-out;
}

.prog-menu li.has-child-theme:hover .submenu {
    display: block;
    transition: all 0.2s ease-in-out;
}

.floating-link {
    font-family: 'ITC Symbol Std Book';
    font-weight: 700;
    /* position: fixed; */
    left: 25px;
    bottom: 25px;

    transition: all 0.5s ease-in-out;
}

.floating-link:hover .flaot-hover-seen {
    display: block;
    transition: all 0.5s ease-in-out;
}

.floating-link-on {
    background-color: var(--yellow);
    position: relative;
    cursor: pointer;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 3px 0px;
    padding: 10px 25px;
    margin-right: 10px;
    color: var(--white);
    border-radius: 25px;
}

.flaot-hover-seen {
    margin-right: 10px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 3px 0px;
    padding: 10px 25px;
    display: flex;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    color: var(--yellow);
    display: none;
    border-radius: 25px;
}

.books-by-faculty-box h3 {
    font-size: 16px;
}

/* .timeline-carousel {
    padding: 3rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.timeline-carousel:after, .timeline-carousel:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  height: 100%;
  width: 6.9444%;
  background-color: #1d1d1e;
  z-index: 3;
  width: 6.9444%;
}
.timeline-carousel:after {
    left: 0;
}

.timeline-carousel:before {
    right: 0;
    opacity: 0;
}

.timeline-carousel .slick-list {
    overflow: visible;
}

.timeline-carousel .slick-dots {
    bottom: -73px;
}

.timeline-carousel h1 {
    color: white;
    font-size: 46px;
    line-height: 50pd;
    margin-bottom: 40px;
    font-weight: 900;
}

.timeline-carousel__image {
    padding-right: 30px;
}

.timeline-carousel__item {
    cursor: pointer;
}

.timeline-carousel__item .media-wrapper {
    opacity: 0.4;
    padding-bottom: 71.4%;
    -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.timeline-carousel__item:last-child .timeline-carousel__item-inner:after {
    width: calc(100% - 30px);
}

.timeline-carousel__item-inner {
    position: relative;
    padding-top: 45px;
}

.timeline-carousel__item-inner:after {
    position: absolute;
    width: 100%;
    top: 45px;
    left: 0;
    content: "";
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-carousel__item-inner .year {
    font-size: 36px;
    line-height: 36px;
    color: white;
    display: table;
    letter-spacing: -1px;
    padding-right: 10px;
    background-color: #212529;
    z-index: 1;
    position: relative;
    margin: -15px 0 20px;
    font-weight: 900;
}

.timeline-carousel__item-inner .year:after {
    content: "";
    position: absolute;
    display: block;
    left: -15px;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: var(--yellow);
    z-index: 3;
}

.timeline-carousel__item-inner .month {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--yellow);
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
}

.timeline-carousel__item-inner p {

    color: white;
    width: 60%;
    font-weight: 400;
    margin-bottom: 15px;
}

.timeline-carousel__item-inner .read-more {
    font-size: 12px;
    color: var(--yellow);
    display: table;
    margin-bottom: 10px;
    font-weight: 900;
    text-decoration: none;
    position: relative;
}

.timeline-carousel__item-inner .read-more:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    border-bottom: 2px solid var(--yellow);
    -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -o-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.timeline-carousel__item-inner .read-more:hover:after {
    width: 100%;
}

.timeline-carousel__item-inner .pointer {
    height: 29px;
    position: relative;
    z-index: 1;
    margin: -4px 0 16px;
}

.timeline-carousel__item-inner .pointer:after,
.timeline-carousel__item-inner .pointer:before {
    position: absolute;
    content: "";
}

.timeline-carousel__item-inner .pointer:after {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    top: 0;
    left: 0;
    background-color: var(--yellow);
}

.timeline-carousel__item-inner .pointer:before {
    width: 1px;
    height: 100%;
    top: 0;
    left: 4px;
    background-color: var(--yellow);
}

.timeline-carousel .slick-active .media-wrapper {
    opacity: 1 !important;
}

.slick-dots {
    bottom: 60px;
    list-style: none;
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    z-index: 2;
}

.slick-dots li {
    cursor: pointer;
    display: inline-block;
    margin: 0 6px;
    position: relative;
    width: 10px;
    height: 10px;
}

.slick-dots li:last-child {
    margin-right: 0;
}

.slick-dots li.slick-active button {
    background: var(--yellow);
    border-color: var(--yellow);
}

.slick-dots li button {
    display: block;
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.slick-dots li button:hover {
    background: var(--yellow);
    border-color: var(--yellow);
}

.timeline-carousel__item-inner .link {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    z-index: 9999;
}

.timeline-carousel__item-inner .link a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.timeline-carousel__item-inner .link .fa {
    font-size: 28px;
    margin-right: 8px;
    color: #fff;
}
 */
.timeline {
    position: relative;
    margin: 50px auto;
    padding: 40px 0;
    width: 1000px;
    box-sizing: border-box;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #c5c5c5;
}

.timeline ul {
    padding: 0;
    margin: 0;
}

.timeline ul li {
    list-style: none;
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline ul li:nth-child(odd) {
    float: left;
    text-align: right;
    clear: both;
}

.timeline ul li:nth-child(even) {
    float: right;
    text-align: left;
    clear: both;
}

.content {
    padding-bottom: 20px;
}

.timeline ul li:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 24px;
    right: -6px;
    background: var(--base);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(233, 33, 99, 0.2);
}

.timeline ul li:nth-child(even):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 24px;
    left: -4px;
    background: var(--base);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(233, 33, 99, 0.2);
}

.timeline ul li h3 {
    padding: 0;
    margin: 0;
    color: var(--base);
    font-weight: 600;
}

.timeline ul li p {
    margin: 10px 0 0;
    padding: 0;
}

.timeline ul li .time h4 {
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.timeline ul li:nth-child(odd) .time {
    position: absolute;
    top: 12px;
    right: -165px;
    margin: 0;
    padding: 8px 16px;
    background: var(--base);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 0 0 3px rgba(233, 33, 99, 0.3);
}

.timeline ul li:nth-child(even) .time {
    position: absolute;
    top: 12px;
    left: -165px;
    margin: 0;
    padding: 8px 16px;
    background: var(--base);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 0 0 3px rgba(233, 33, 99, 0.3);
}

@media(max-width:1000px) {
    .timeline {
        width: 100%;
    }
}

@media(max-width:767px) {
    .timeline {
        width: 100%;
        padding-bottom: 0;
    }

    h1 {
        font-size: 40px;
        text-align: center;
    }

    .timeline:before {
        left: 20px;
        height: 100%;
    }

    .timeline ul li:nth-child(odd),
    .timeline ul li:nth-child(even) {
        width: 100%;
        text-align: left;
        padding-left: 50px;
        padding-bottom: 50px;
    }

    .timeline ul li:nth-child(odd):before,
    .timeline ul li:nth-child(even):before {
        top: -18px;
        left: 16px;
    }

    .timeline ul li:nth-child(odd) .time,
    .timeline ul li:nth-child(even) .time {
        top: -30px;
        left: 50px;
        right: inherit;
    }
}

/* =========================================================
  <--- Start consalt About Area Style Two CSS --->
============================================================ */
a.banner-play-btn {
    width: 142px;
    height: 142px;
    border-radius: 71px;
    background-color: #0c6e6d !important;
    overflow: hidden;
    line-height: 142px;
    text-align: center;
    position: relative;
    display: inline-block;
}

section.about_area.style_two {
    background: #ffff;
    position: relative;
    padding: 6rem 0 4rem;
}

.about_play.style_two {
    top: -15%;
}

.about_play.style_two a.banner-play-btn {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #ffc10726 !important;
    line-height: 180px;
}

.about_play.style_two .text-inner text {
    fill: #063232;
}

.about_play.style_two .text-inner:before {
    display: none;
}

.about_play.style_two .text-inner svg {
    width: 66%;
}

.about_area.style_two .section_title p {
    width: 88%;
    margin: 23px 0 24px;
}

.like {
    position: absolute;
    top: 49%;
    transform: translate(-50%, -50%);
    left: 50%;
}

@keyframes circle {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.circle {
    animation: circle 15s linear infinite;
}

.spin2 {
    animation: spin2 15s linear infinite;
}

@keyframes right {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

.about_icon {
    margin-right: 20px;
}

.about-icon_box {
    display: flex;
    align-items: center;
    padding: 0 0 0 15px;
}

.about_icon {
    margin-right: 20px;
    position: relative;
    top: 18px;
    z-index: 1;
}

.about_icon:before {
    position: absolute;
    top: -13px;
    left: -15px;
    height: 50px;
    width: 50px;
    background: #EDF4F4;
    content: "";
    z-index: -1;
    border-radius: 5px;
}

.about_content.style_two h3 {
    font-size: 20px;
    color: #063232;
    line-height: 30px;
    margin-bottom: 0;
}

.about_button.style_upper {
    border-top: 1px solid #e6eaea;
    padding-top: 35px;
    margin-top: 36px;
}

.about_btn.style_two {
    margin-right: 20px;
}

.about_btn.style_two a {
    padding-left: 42px;
    padding-right: 42px;
    padding-top: 17px;
    padding-bottom: 17px;
}

.about_btn.style_two a:before {
    display: none;
}

.about_btn.style_two a i {
    margin-right: 10px;
}

.about_info.style-two span a i {
    transform: rotate(-45deg);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    margin-left: 5px;
}

.about_play {
    position: absolute;
    top: 0%;
    right: 13%;
}

.about_shape.two {
    top: 21%;
    right: 0%;
    position: absolute;
    z-index: -1;
}

/*animation circle*/
.text-inner {
    animation: circle 15s linear infinite;
    animation: circle 15s linear infinite;
    position: relative;
    z-index: 22;
    fill: transparent;
}

.text-inner svg {
    width: 100px;
    max-width: 100%;
    height: auto;
    overflow: visible;
    word-spacing: 10px;
    transform: rotate(0) scaleX(1) scaleY(1);
    position: relative;
}

.text-inner:before {
    position: absolute;
    content: "";
    top: 44%;
    left: 0%;
    height: 16px;
    width: 16px;
    background: #fff !important;
    right: 0;
    margin: auto;
    text-align: center;
    border-radius: 50%;
}

.text-inner text {
    fill: #ffffff;
    direction: ltr;
    transition: 0.3s stroke, 0.3s stroke-width, 0.3s fill;
    font-size: 30px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.box-area {
    background: var(--white);
    position: absolute;
    bottom: 0;
    inset-inline-start: 0;
    max-width: 241px;
    width: 100%;
    padding: 15px 15px 0 0;
    border-start-end-radius: 12px;
}

.box-area {
    max-width: 239px;
    bottom: 0;
    inset-inline-end: inherit;
    inset-inline-start: 0;
    padding: 15px 15px 0 0;
    border-start-start-radius: 12px;
    border-start-end-radius: 0;
}

.box-area .call-box {
    background-color: var(--yellow);
    border-radius: 10px;
    padding: 25px 20px 30px;
    color: var(--white);
}

/* !END: Countup CSS */
/**----------------------------------------
START: Team CSS
----------------------------------------*/
.h8-team {
    background-color: var(--tj-color-theme-bg);
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .h8-team .sec-heading .sec-title {
        font-size: 45px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .h8-team .sec-heading .sec-title {
        font-size: 38px;
    }
}

.h8-team-item-wrapper .team-item {
    padding: 35px 15px 30px;
    margin-bottom: 0;
    border: 1px solid #f1f1f1;
    border-top: 0;
    -webkit-border-start: 0;
    border-inline-start: 0;
    text-align: center;
}

.h8-team-item-wrapper .team-item .team-img {
    width: 230px;
    height: 230px;
    overflow: hidden;
    border-radius: 100%;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
    .h8-team-item-wrapper .team-item .team-img {
        width: 200px;
        height: 200px;
    }
}

.h8-team-item-wrapper .team-item .team-img::after {
    display: none;
}

.h8-team-item-wrapper .team-item .title {
    width: 100%;
    margin-top: 15px;
}

.h8-team-item-wrapper .team-item .title a {
    color: var(--base);
}

.h8-team-item-wrapper:nth-child(2) .team-item,
.h8-team-item-wrapper:nth-child(3) .team-item,
.h8-team-item-wrapper:nth-child(4) .team-item,
.h8-team-item-wrapper:nth-child(5) .team-item {
    border-top: 1px solid #f1f1f1;
}

.h8-team-item-wrapper:nth-child(2) .team-item,
.h8-team-item-wrapper:nth-child(5) .team-item,
.h8-team-item-wrapper:nth-child(9) .team-item {
    -webkit-border-start: 1px solid #f1f1f1;
    border-inline-start: 1px solid #f1f1f1;
}

.h8-team-item-wrapper:nth-child(5) .team-item {
    margin-top: -1px;
    -webkit-margin-end: -1px;
    margin-inline-end: -1px;
}

.h8-team-item-wrapper:nth-child(9) .team-item {
    -webkit-margin-end: -1px;
    margin-inline-end: -1px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {

    .h8-team-item-wrapper:nth-child(2) .team-item,
    .h8-team-item-wrapper:nth-child(3) .team-item,
    .h8-team-item-wrapper:nth-child(4) .team-item,
    .h8-team-item-wrapper:nth-child(5) .team-item {
        border-top: 0;
    }

    .h8-team-item-wrapper:nth-child(2) .team-item,
    .h8-team-item-wrapper:nth-child(3) .team-item {
        border-top: 1px solid #f1f1f1;
    }

    .h8-team-item-wrapper:nth-child(3) .team-item,
    .h8-team-item-wrapper:nth-child(5) .team-item,
    .h8-team-item-wrapper:nth-child(7) .team-item {
        -webkit-border-start: 1px solid #f1f1f1;
        border-inline-start: 1px solid #f1f1f1;
        margin-top: -1px;
        -webkit-margin-end: -1px;
        margin-inline-end: -1px;
    }

    .h8-team-item-wrapper:nth-child(5) .team-item,
    .h8-team-item-wrapper:nth-child(7) .team-item {
        border-top: 0;
        margin-top: 0px;
    }

    .h8-team-item-wrapper:nth-child(7) .team-item {
        margin-top: 0;
        -webkit-margin-end: -1px;
        margin-inline-end: -1px;
    }

    .h8-team-item-wrapper:nth-child(9) .team-item {
        margin-top: 0px;
        -webkit-margin-end: 0;
        margin-inline-end: 0;
    }
}

@media (max-width: 575px) {
    .h8-team-item-wrapper .team-item {
        -webkit-border-start: 1px solid #f1f1f1;
        border-inline-start: 1px solid #f1f1f1;
        margin-top: 0;
        -webkit-margin-end: 0;
        margin-inline-end: 0;
    }

    .h8-team-item-wrapper:nth-child(3) .team-item,
    .h8-team-item-wrapper:nth-child(4) .team-item,
    .h8-team-item-wrapper:nth-child(5) .team-item {
        border-top: 0;
    }
}

.h8-team-action {
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 575px) {
    .h8-team-action {
        margin-top: 10px;
    }
}

.h8-team-action .circle-text-wrap {
    position: static;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: transparent;
    backdrop-filter: blur(0);
}

.h8-team-action .circle-text-wrap .circle-icon {
    font-size: 85px;
}

.h8-team-action .circle-text-wrap i {
    color: var(--tj-color-theme-primary);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.bg-shape-2,
.bg-shape-1 {
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    max-width: 370px;
    width: 100%;
    z-index: -1;
    mix-blend-mode: difference;
    pointer-events: none;
    filter: invert(45);
}

/* !END: Team CSS */
.react-photo-gallery--gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: 100%;
}

.react-photo-gallery--gallery {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense;
    margin-top: 25px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.custom-gallery-item {
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* accy */

.accy {
    color: var(--base);
}

.accy .right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 25px;
}

.accy .right a {
    color: var(--base);
}

.accy .right span {
    font-size: 15px;
}

.accy .right .right-first {
    padding-right: 20px;
}

.accy .right .right-second,
.right-third,
.right-forth,
.right-fifth {
    padding: 0 10px;
    display: flex;
    align-items: center;
}



.accy .right .right-second button {
    width: 13px;
    height: 13px;
    border: 1px solid #000;
    margin-left: 5px;
    border-radius: 50%;
}

.accy .right .right-second button:first-of-type {
    background-color: #fff;
}

.accy .right .right-second button:last-of-type {
    background-color: #000;
    border: 1px solid #000;
}

.accy .right .right-forth button {
    background-color: transparent;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 100%;
}

.accy .right .right-forth button:first-child {
    padding: 3px 8px;
}

.accy .right .right-forth button:nth-child(2) {
    padding: 3px 4px;
}

.accy .right .right-forth button:last-child {
    padding: 3px 5px;
}

.accy .right .right-forth button.active {
    background-color: var(--base);
    border: 2px solid #000;
}

.accy .right .right-fifth button {
    color: var(--base);
    background-color: transparent;
    font-size: 14px;
    border: none;
    padding: 2px 8px;
    color: #000;
    border-radius: 7px;
    border: 1px solid #000;
    margin-right: 5px;

}

.accy .right .right-fifth button.active {
    background-color: var(--base);
    border: 1px solid #000;
    color: #fff;
    padding: 2px 10px;
}

.acc-wrapper .acc-modal.activ {
    width: 350px;
    height: 200px;
}

.acc-wrapper {
    text-align: left;

}

.has-child-menu .submenu {
    position: absolute;
    text-align: left;
    background: #F4F4F4;
    display: none;
    z-index: 9999;
    width: 100%;
    left: 0;
    top: 46px;
    padding: 0;
    transform: translateY(0px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    border-top: 1px solid #DBDBDB;
    width: 300px;
    padding: 0;
}

.has-child-menu .submenu li {
    transition: all .3s ease;
    width: 100%;
}

.has-child-menu .submenu li::before {
    content: none
}

.has-child-menu .submenu li a {
    padding: 8px 15px;
    display: inline-block;
    width: 100%;
    color: #000000;
    border-bottom: 1px solid #DBDBDB;
}

.has-child-menu:hover .submenu {
    transition: all .3s ease;
    transform: translateY(-12px);
    opacity: 1;
    visibility: visible;
}

.has-child-menu .submenu li a:hover {
    background: var(--base);
    color: #FFFFFF;
}

.has-child-menu .submenu li {
    padding: 0;
}

@media only screen and (max-width:1500px) {



    .menu .modal-body button,
    .menu .modal-body .nav-pills a.nav-link {
        font-size: 25px;
    }

    .menu .tab-pane a {
        font-size: 13px;
    }
}

.right-image-absolute {
    position: absolute;
    right: 0;
    top: 0;

    height: 100%;
}

.right-image-absolute img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.hide-item-mobi a:nth-child(1) {
    width: 55%;
}

.hide-item-mobi a:nth-child(2) img {
    height: 120px;
}

.clip-path-bar {
    font-size: 13px;

    clip-path: polygon(6.726% 0%, 93.274% 0%, 93.274% 0%, 94.364% 0.14%, 95.399% 0.545%, 96.364% 1.192%, 97.245% 2.061%, 98.029% 3.129%, 98.701% 4.373%, 99.249% 5.772%, 99.657% 7.303%, 99.912% 8.945%, 100% 10.676%, 100% 61.278%, 100% 61.278%, 99.732% 65.983%, 98.988% 69.483%, 97.863% 71.995%, 96.447% 73.739%, 94.835% 74.934%, 93.119% 75.798%, 91.39% 76.552%, 89.742% 77.413%, 88.268% 78.601%, 87.061% 80.335%, 87.061% 80.335%, 86.147% 82.63%, 85.483% 85.137%, 84.946% 87.749%, 84.409% 90.359%, 83.749% 92.86%, 82.839% 95.146%, 81.556% 97.11%, 79.775% 98.644%, 77.369% 99.643%, 74.215% 100%, 6.726% 100%, 6.726% 100%, 5.637% 99.861%, 4.603% 99.457%, 3.638% 98.811%, 2.758% 97.944%, 1.974% 96.879%, 1.302% 95.638%, 0.754% 94.241%, 0.346% 92.712%, 0.09% 91.071%, 0% 89.342%, 0% 10.676%, 0% 10.676%, 0.088% 8.945%, 0.343% 7.303%, 0.751% 5.772%, 1.299% 4.373%, 1.971% 3.129%, 2.755% 2.061%, 3.636% 1.192%, 4.601% 0.545%, 5.636% 0.14%, 6.726% 0%);
}

.clip-path-bar h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--base);
}

.more-butt-arrow {
    position: absolute;
    right: 15px;
    z-index: 9;
    bottom: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    background: var(--yellow);
    color: var(--white);
    transition: 300ms ease all, 300ms ease color;
    font-size: 12px;
}

.report-box:hover .more-butt-arrow {
    transform: rotate(-45deg);
    transition: 300ms ease all, 300ms ease color;
}

.slidebar-stickiy {
    /* position: sticky;
    top: 100px;
    height: 450px; */
    overflow: hidden;
    position: relative;

}

.slidebar-stickiy img {
    max-height: 350px;
    object-fit: cover;
}

.name-cmd {

    background: var(--black);
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 10%, rgba(0, 212, 255, 0) 100%);
    position: absolute;
    margin-top: -80px;
    padding: 0 20px;
    color: white;
    bottom: 0;
}

.name-cmd h4,
.name-cmd h6 {
    color: #ffffff;
    margin-bottom: 0;

}

.proceess-box {
    align-items: start;
}

.proceess-box h3 {
    font-size: 18px;
    color: var(--base);
}

.process-icon {
    padding: 10px;
    background-color: var(--grey-accent);
    margin-right: 25px;
    border-radius: 7px;
}

.proceess-box p {
    text-align: justify;
}

.single-team_item.style_five {
    border: none;
    text-align: center;
    padding: 10px 10px 10px;
    border-radius: 5px;
    transition: .5s;
    background: var(--yellow);
    margin-bottom: 25px;
}

.single-team_item.style_four:hover {
    border: none;
}

.single-team_item.style_five .team_thumb img {
   width: 100%;
  height: 255px;
  object-fit: cover;
    
}

.single-team_item.style_five .team-social-four ul li {
    display: inline-block;
    margin: 0 3px 0;
}


.team-content {
    color: var(--white);
    background: var(--base);
    padding: 5px 10px 15px;
}
.team-content h5 a{
 color: var(--white) !important;;
}
.team-content h3 {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 2px;
}

.team-content span {
    display: block;
}

.single-team_item.style_five .team-social-four {
    margin: 14px 0 13px !important;
    opacity: inherit;
    transition: .5s;
}

.single-team_item.style_five:hover .team-social-four {
    margin: inherit;
    opacity: inherit;
}

.sticky-contact {
    position: sticky;
    top: 100px;
}

.about_list ul {
    padding-left: 0;
}

.about_list ul li {
    list-style: none;
    margin-bottom: 10px;
}

.about_list ul li img {
    margin-right: 8px;
}

.nav-tab-gal.nav-tabs .nav-item.show .nav-link,
.nav-tab-gal.nav-tabs .nav-link.active {
    border: 0;
    border-bottom: 4px solid var(--yellow);
    color: var(--base);
}

.nav-tab-gal.nav-tabs .nav-link {
    color: #000;
}

.event-box-campus {
    border-radius: 50px 50px 50px 0;
    padding: 15px;
    background: white;
    -webkit-box-shadow: 0px 0px 16.8px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 16.8px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 16.8px 0px rgba(0, 0, 0, 0.25);
    transition: 0.7s;
    margin-bottom: 35px;
}

.event-box-campus:hover {
    transform: scale(0.9);
}

.event-box-campus>img {
    border-radius: 35px 35px 35px 0;
    width: 100%;
    margin-bottom: 15px;
}

.event-box-campus h3 {
    font-family: "Playfair Display", serif;
    color: var(--black-colour);
}

.event-box-campus p {
    min-height: 35px;
    text-align: left !important;

}


.faculty-tab-box .tab-content .tab-pane {
    display: none;
}

.faculty-tab-box .tab-content .tab-pane.active {
    display: block;
}

body:has(.display-null-menu) .main-menu-name {
    display: none;
}

.mh-48 {
    min-height: 48px;
}

.career-slider {
min-height: 150px !important;
}

.lang-toggle {
    cursor: pointer;
}
/**********************22-12-2025************************/
.choose_thumb_shpae {
    position: absolute;
    top: 10%;
    right: 12%;
    
}
.choose_thumb_shpae2 {
    position: absolute;
    bottom: -6%;
    left: 7%;
   
}
.bounce-animate {
    animation-name: float-bob;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
.bounce-animate2 {
    animation-name: float-bob2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob2;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob2;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob2;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}
@keyframes float-bob {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

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

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}
@keyframes float-bob2 {
    0% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

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

    100% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }
}
.heading-bar {
  display: inline-block;
  padding: .3em .45em;
  font-size: 18px;
}
.bg-orange {
  background-color: var(--base);
}
.bg-yellow{
    background-color: var(--yellow);
}

.value-card {
  position:relative;
  min-height:250px;
 
   padding:3rem;
  display:flex;
  margin-bottom: 25px;
  flex-direction:column;
 justify-content: center;
}
.value-card>*:last-child {
  margin-bottom:0
}
.value-card::before {
  position:absolute;
  content:" ";
  bottom:0;
  left:0;
  right:0;
  top:0;
  background-color:#0089bd;
 border-radius: 3em 0 3em 0 ;
  opacity:.1
}
.value-card h3 {
  border-bottom:2px solid #0089bd;
  padding-bottom:18px;
  padding-bottom:1rem
}
.value-card-primary::before {
  background-color:#0089bd
}
.value-card-primary h2 {
  border-color:#0089bd
}

.value-card-red::before {
  background-color:var(--red);
}
.value-card-red h3 {
  border-color:var(--red)
}
.value-card-blue::before {
  background-color:#0089bd
}
.value-card-blue h3 {
  border-color:#0089bd
}
.value-card-orange::before {
  background-color:var(--base)
}
.value-card-orange h3 {
  border-color:var(--base)
}
.value-card-yellow::before {
  background-color:var(--yellow);
}
.value-card-yellow h3 {
  border-color:var(--yellow);
}
.value-card-brown::before {
  background-color:#a79677
}
.value-card-brown h3 {
  border-color:#a79677
}
.submenu-child{
    position: absolute;
    left: 100%;
    width: 225px;
    background: #f1f1f1;
    top: 0;
}
/*********************23rddec***********************************/
.link-holder {
    flex-direction: column;
}

.link-holder a {
    padding: 7px 15px;
    border-left: 3px solid var(--base);
    text-decoration: none;
    margin-bottom:25px;
    background: #FAF6F6;
    font-size: 16px;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    height:70px;
}
.link-holder a span{
     transition: 0.7s;
}
.link-holder a:hover span{
   transform:translateX(-7px);
     transition: 0.7s;
}
ul.submenu-child{
    display:none !important;
}

li.has-sub-child-menu:hover ul.submenu-child {
    display: flex !important;
}
.flot-links{
        position: fixed;
        right: 0;
        top:50%;
        transform: translateY(-50%);
    }

    .flo-cta {
        background: linear-gradient(263deg, var(--base) 0.16%, var(--red) 99.84%);
        display: block;
        text-align: center;
        color: #FFF;
        padding: 14px 5px;
        display: block;
        text-align: center;
        opacity: 1;
        z-index: 999;
        transition: .5s all ease-out;
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        text-decoration: none;
        width: 105px;
        margin-bottom: 1px;
        height: 85px;
        box-sizing: border-box;
        font-family: "Lato", sans-serif;
    }
     .flo-cta:hover{
        opacity: .75;
     }

    .flo-cta img {
        display: block;
        width: 32px;
        margin: 3px auto;
    }
.board-of-governer img{
    width: 100%;
    height:350px;
    object-fit: cover;

}
.board-of-governer .team-content h5{
    font-size:18px;
}
.board-of-governer .team-content span {
  display: block;
  font-size: 14px;
}

.rig-pln{
    width:50%;
}
.faculty-details-sectiong .col-md-8 h2{
    margin-bottom:0
}
/*******************24thdec*********************/
.page-content p{
    text-align:justify;
}
.event-list-item {
            border-bottom: 1px solid var(--yellow);
            border-bottom-color: var(--yellow);
            cursor: pointer;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            font-weight: 300;
            margin-bottom: 1em;
            padding-bottom: 15px;
        }

        .event-list-item__date {
            border-right: 2px solid var(--yellow);
            border-right-color: var(--yellow);
            line-height: 1.571;
            padding-right: .6875rem;
            margin-bottom: 1.3125rem;
            margin-right: 1.3125rem;
            min-width: 6.8125rem;
            width: 6.8125rem;
        }

        .event-list-item {
            border-bottom-color: var(--yellow);
            color: var(--black);
        }

        .event-list-item__date,
        .event-list-item__time {
            color: var(--orange);
        }

        .event-list-item__date {
            border-right-color: var(--yellow);
        }

        .event-list-item__full {
            background-color: var(--yellow);
            color: var(--white);
        }

        .event-list-item__title a {
            color: var(--black);
        }

        .event-list-item__date,
        .event-list-item__time {
            font-size: .875rem;
            text-transform: uppercase;
            letter-spacing: .7px;
        }

        .event-list-item__date>span {
            display: inline-block;
            width: 100%;
        }

        .event-list-item__date-month-day {
            font-family: stevie-sans, Arial, sans-serif;
            font-weight: 700;
            font-style: normal;
            font-size: 1.25rem;
            line-height: 1;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }

        .event-list-item__date,
        .event-list-item__time {
            color: #5a5a5a;
        }

        .event-list-item__time {
            line-height: 1.2;
            padding-right: 2rem;
            min-width: 7.5rem;
            width: 7.5rem;
        }

        .event-list-item__summary {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: flex-start;
            max-width: 75%;
        }

        .event-list-item__title a {
            font-size: 1.25rem;
            line-height: 1.364;
            border-bottom: .25rem solid transparent;
            color: var(--base);
            text-align: justify;
            font-weight: bold;
            font-family: 'ITC Symbol Std Book';
        }

        .event-list-item__image {
            display: block;
            margin-bottom: 1.3125rem;
            margin-right: 1.9375rem;
            max-width:250px;
            border-radius: 7px;
            overflow: hidden;
        }

        .event-list-item__image img {
            width: 100%;
        }
