@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    padding-top: 100px;
}

p {
    margin-bottom: 0;
    line-height: 22px;
}

.col-6 {
    padding: 0;
}

.row {
    margin: 0;
}

:root {
    --rt-primary: #1b143d;
    --rt-primary-1: #5D0207;
    --rt-primary-2: #21194a;
    --text-white: #ffffff;
    --black-colour: #181818;
    --yellow: #ffb339;
    --translucent-black-bg: rgba(0, 0, 0, 0.7);
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.ws-container {
    max-width: 1310px;
    margin: 0 auto;
    padding: 0 15px;

}

.container-xxl {
    padding-left: 15px;
    padding-right: 15px;
}

.top-bar-outer {
    background-color: #5D0207;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;

}

.top-bar .left p {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;

}

.top-bar .left {
    display: flex;
    align-items: center;
}

.top-bar .right {
    display: flex;
    gap: 15px;
}

.top-bar .zoom,
.top-bar .color-blind {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #000;
    font-family: "Lato", sans-serif;
    font-weight: 700;
}

.top-bar .zoom .fun {
    font-size: 14px;
    line-height: 18px;
    background-color: #fff;
    color: #000;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.top-bar .zoom .fun.m {
    color: #fff;
    background-color: #000;
}

.top-bar .cir {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
}

.top-bar .cir.w {
    background-color: #fff;
}

.top-bar .cir.y {
    background-color: #FCE305;
}

.top-bar .skip {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 25px;
    position: relative;
    cursor: pointer;
}

.top-bar .skip::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background-image: url(/department/images/skip.png);
    background-size: contain;
    background-repeat: no-repeat;
    left: 1px;
}

.nav-outer {
    background-color: #5D0207;
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
}

.navbar-logo img {
    max-width: 300px;
}

.nav .logo img {
    display: block;
    width: 100%;
}

.navbar-expand-lg .navbar-collapse {

    flex-direction: column;
    align-items: flex-end;
}

.search {
    display: flex;
    position: relative;
    width: 360px;
    margin-left: auto;

}

.search form {
    display: flex;
    width: 100%;
}

.search .text {
    display: block;
    width: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border: 0;
    padding-left: 20px;
}

.search .text:focus-visible {
    outline: none;
}

.search .submit {
    width: 70px;
    height: 40px;
    background: transparent;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border: 0;
    position: relative;
    font-size: 0;
    cursor: pointer;
}

.search::before {
    content: "";
    position: absolute;
    width: 60px;
    height: 40px;
    background-image: url(/department/images/search.png);
    background-size: auto;
    background-color: #00101E;
    background-repeat: no-repeat;
    right: 0px;
    top: 0px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    background-position: center center;

}

nav ul {
    list-style: none;
}

.navbar-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
    margin-top: 25px;
}


.navbar-nav li a {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 27px;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: block;
}

nav ul li:hover>a {
    color: #fff;
}

nav ul li.has-child {
    padding-right: 20px;
    position: relative;
}

nav ul li.has-child::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 6px;
    background-image: url(../images/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    right: 4px;
    top: 12px;
    transition: transform 0.3s ease-in-out;
}

nav ul li.has-child:hover::before {
    transform: rotate(180deg);
    top: 11px;
}

nav ul li.has-child ul {
    display: none;
    background-color: #61000a;
    padding: 5px 20px 20px 20px;
    position: absolute;
    top: 100%;
    width: 300px;
    border-radius: 7px;
    z-index: 5;
}

nav ul li.has-child ul li a {
    font-size: 13px;
}

nav ul li.has-child:hover ul {
    display: block;
}
.dropdown-navbar .dropdown-nav{
    display: none !important;
}
.dropdown-navbar .dropdown-nav li a{
    line-height:normal !important;
    margin-bottom:10px;
    text-transform:capitalize;
}
.dropdown-navbar:hover .dropdown-nav{
   display: block !important;
    top:45px;
    left: 27%;
    width: 210px;
}

/* slide css start */
.ws-slide .carousel-control-next-icon {
    background-image: url(/department/images/slide-right-arr.png);
    width: 4rem;
    height: 4rem;
}

.ws-slide .carousel-control-prev-icon {
    background-image: url(/department/images/slide-left-arr.png);
    width: 4rem;
    height: 4rem;
}

.slider-content-outter {
    background: #DAD0FDBF;
}

.slider-content-outter h1 {
    font-family: "Playfair", serif;
    color: #000;
    font-weight: 600;
    margin-bottom: 12px;

}

.slider-content-outter p {
    font-family: "Lato", sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    padding-bottom: 10px;
}

.banner {
    position: relative;
}

.banner img {
    display: block;
    width: 100%;
    max-height: 770px;
}

.banner .slider-content-outter {
    background: #DAD0FDBF;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 3;
    padding: 5px 15px;
}

.banner-cont {
    padding: 20px;
    padding-left: 40px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-left: 5px solid #5D0207;
    position: relative;
}

.banner-cont::before,
.banner-cont::after {
    content: "";
    position: absolute;
    height: 5px;
    width: 35px;
    background-color: #5D0207;
    top: 0;
    left: 0;
}

.banner-cont::after {
    top: unset;
    bottom: 0;
}


.about-sec p,
.head-desk .left p {

    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #181818;
    padding-top: 20px;
    text-align: justify;

}

.about-sec img {
    width: 100%;
    display: block;
}

.about-sec .left .img-1 {
    display: block;
    width: 100%;
    max-width: 380px;
}

.about-sec .left .img-2 {
    display: block;
    width: 100%;
    max-width: 350px;
    margin-left: 240px;
    margin-top: -140px;
    transition: all 0.5s ease-in-out;
}

.about-sec .left .img-2:hover {
    transform: scale(1.1);
}

.head-desk {
    padding-bottom: 20px;
}

.head-desk .right {
    position: relative;
    height: fit-content;

}

.head-desk .right img {
    display: block;
    width: 100%;
    border-radius: 70px 70px 0 0;
}

.head-desk .right .name {
    font-family: "Poppins", sans-serif;
    color: #fff;
    background: #000000B2;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 10px;
    /* position: absolute; */
    bottom: 0;
    width: 100%;
    left: 0;
}

.head-desk {
    justify-content: space-between;
}

.head-desk .right .name h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 23px;

}

.head-desk .right .name p {
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
}



@keyframes scroll {
    0% {
        transform: translateY(5%);
    }

    100% {
        transform: translateY(-65%);
    }

}

.all-notice-wrapper {
    max-height: 500px;
    overflow: hidden;
    margin-top: 35px;
}

.all-notice-wrapper:hover .all-notice {
    animation-play-state: paused;
}

.all-notice {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: scroll 20s ease infinite forwards;

}

.all-notice .notice-block {
    padding: 10px;
    border: 1px solid #5D0207;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-left-width: 5px;
}

.all-notice .notice-block p {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;

}


.notice .noti-date {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 22px;
    padding-left: 12px;
    position: relative;
    display: block;
}

.notice .noti-date::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #5D0207;
    left: -2px;
    top: 6px;
}

.notice a {
    color: #5D0207;
}

.heighlights-outter {
    background-color: #ECECEC;
}

.heighlights-outter h3 {
    font-family: "Playfair", serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 45px;

}

.heighlights-outter .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 50px;
}

.heighlights-outter .row .col {
    width: 100%;
    padding: 40px 20px;
    border: 2px dotted #00101E;
    border-radius: 20px;
    text-align: center;
}

.count-area-content .count {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 60px;
    color: #5D0207;
}

.count-area-content .count-title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    color: #00101E;
}

.news-outter {
    background-image: url(../images/news-bg.png);
    background-size: cover;
    padding: 4rem 0;
}

.wst-bg-unset {
    background-image: unset;

}


.news-cont {
    border: 1px solid #ffc107;
    padding: 15px;
    position: relative;
    height: 100%;

}

.news-cont>p {
    font-size: 14px;
    color: #181818;
    text-align: justify;
    line-height: normal;
    margin-bottom: 20px;

}

.news-date {
    width: 50px;
    text-align: center;
    position: absolute;
    top: 0;

    right: 0;
}

.news-date p.date {
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    background-color: var(--rt-primary-1);
    color: #fff;
    padding: 7px;
    margin-bottom: 0;
}

.event-outter {
    background-color: #D9D9D9;
}

.event-outter .event-date {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: #A00909;
    padding: 0px 15px 15px 28px;
    position: relative;
}

.event-outter .event-date::before {
    content: "";
    position: absolute;
    width: 23px;
    height: 18px;
    background-image: url(/department/images/event-icon.png);
    left: 0px;
    top: -1px;
    background-size: contain;
}

.event-outter a {
    text-decoration: none;
    color: initial;
}

.event-outter .more-event-cta {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    color: #5D0207;
    display: inline-block;
    padding: 15px 50px 15px 25px;
    position: relative;
    background-color: #F6F6F6;
    border-radius: 50px 80px 80px 0
}

.event-outter .more-event-cta::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 13px;
    background-image: url(/department/images/cta-arr.png);
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    background-size: contain;
    transition: all 0.3s ease-in-out;

}

.event-outter .more-event-cta:hover::after {
    right: 15px;
}

.event-outter .eve-date-conte {
    background-color: #fff;
}

.event-block {
    background-color: #fff;
    margin-bottom: 18px;
}

.eve-date-conte p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    color: #1A2721;

}

.event-block .img-div {
    width: 20%;

}

.event-block .eve-date-conte {
    width: 80%;
    margin: 5px 0;
    border-left: 1px dotted #000;
}

.slider-logo-outter {
    background-color: #c8bdb7;
}

.slider-logo-outter .slick-next:before,
.slider-logo-outter .slick-prev:before {
    color: #000;
    opacity: 1;
}

.slider-logo-outter .slick-next {
    right: -20px;
}

.slider-logo-outter .slick-prev {
    left: -20px;
}

.slider-logo-outter .logo-icon img {
    width: 100%;
    display: block;
}

.cdc-img-scroll.slider-logo-outter {
    background-color: #ffffff;
}

.cdc-img-scroll.slider-logo-outter .logo-icon img {
    height: 90px !important;
    padding: 15px;
    max-width: 100% !important;
    width: auto !important;
    background: #f6f6f6;
    text-align: center;
    margin: 0 auto;
}

.slider-logo-outter .sli-log {
    padding: 10px;
}

footer {
    background-color: #5D0207;
}

footer .footer-left-content p {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
}

footer .quic-link {
    padding-top: 40px;
}

footer .quic-link h4 {
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;

}

footer .quic-link a {
    display: inline-block;
    padding-top: 15px;
    text-decoration: none;
    color: #C6C6C6;
}

footer .social-icon {
    display: flex;
    gap: 20px;
}

.social-icon a {
    background-color: #ff616917;
    color: #ffffff !important;
    width: 50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    padding-top: 0 !important;

}

footer .user-count {
    padding-top: 50px;
}

footer .user-count p {
    font-size: 16px;
    color: #fff;
}

footer .container-xxl>.row {
    border-bottom: 2px solid #898989;
}

footer .develop-by {
    color: #9b9b9b;
    font-size: 12px;
}

footer .develop-by a {
    text-decoration: none;
    color: #888888;
}





/* home page responsive css--------------- */
@media (max-width:1300px) {
    .about-sec .left .img-2 {
        margin-left: 100px;
    }

    .heighlights-outter .row .col {
        padding: 30px 20px;
    }
}




/* career page css ------------------------------- */
.default-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.default-table th,
.default-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.default-table th {
    background-color: #5D0207;
    color: white;
}

.default-table a {
    color: #9B2229;
    text-decoration: none;
}

.default-table .btn {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.9rem;
    color: white;
    background-color: #9B2229;
    border: none;
    border-radius: 3px;
    text-align: center;
    text-decoration: none;
    min-width: 125px;
}

.default-table .btn:hover {
    background-color: #000;
    color: #fff;
}


/* newsletter page css ------------------------ */


.newsletter-page h1 {
    font-family: "Playfair", serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    color: #5D0207;
}

/* ***************** */
.site-title {
    position: relative;
    color: var(--rt-primary-1);
}

.site-title .title-head {
    padding: 0 110px 0 0;
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    font-weight: 800;
    font-size: 35px;
    font-family: "Playfair Display", serif;
}

.justify-content-space-between {
    justify-content: space-between;
}

.site-title {
    position: relative;
    color: var(--rt-primary-1);
}

.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);
    word-break: break-word;
}

.event-box-campus>img {
    border-radius: 35px 35px 35px 0;
    width: 100%;
    margin-bottom: 15px;
    height: 270px;
}

.event-box-campus h3 {
    font-family: "Playfair Display", serif;
    color: var(--black-colour);
    font-size: 20px;
}

.event-box-campus p {
    min-height: 35px;
}

.faculty-box .event-box-campus {
    margin-bottom: 25px;
}

.view-more {
    padding: 7px 15px;
    font-size: 16px;
    color: #ffffff;
    background: var(--yellow);
    border-radius: 25px 25px 25px 0;
    text-decoration: none;
}

.view-more img {
    width: 20px;
}

.large-butt .view-more {
    font-size: 22px;
    padding: 10px 3rem;
}

.view-more:hover {
    color: #ffffff;
    background: var(--black-colour);
}

.site-title .title-head::before {
    content: "";
    position: absolute;
    background: var(--rt-primary-1);
    right: 0px;
    width: 100px;
    height: 1px;
    border-radius: 50%;
    top: 60%;
    transform: translateY(-50%);
}

.overflow-box {
    max-height: 350px;
    overflow-y: scroll;
    padding-right: 15px;
    padding-bottom: 15px;
}

/* width */
.overflow-box::-webkit-scrollbar {
    width: 4px;
    border-radius: 3px;
}

/* Track */
.overflow-box::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
.overflow-box::-webkit-scrollbar-thumb {
    background: var(--rt-primary-1);
    border-radius: 5px;
}

/* Handle on hover */
.overflow-box::-webkit-scrollbar-thumb:hover {
    background: var(--rt-primary-1);
}

.director-box h3 {
    color: var(--rt-primary-1);
    font-size: 20px;
    margin-top: 35px;
}

/************petroleum************/
.wst-tab-cont p,
.wst-tab-cont li,
.wst-tab-cont td,
.wst-tab-cont th {
    font-size: 14px;
}

.wst-tab-cont p {
    margin-bottom: 5px;
}

.wst-tab-cont a {
    text-decoration: none;
    color: #5D0207;
}

.wst-tab {
    max-width: 1900px;
    gap: 5px;
}

.wst-tab-cont h2,
.wst-tab-cont h3 {
    font-family: "Playfair", serif;
    font-size: 38px;
    font-weight: 600;
    line-height: 50px;
    color: #5D0207;
    margin: 10px 0;
    padding-right: 20px;
    width: fit-content;
    position: relative;
}

.wst-tab-cont h3 {
    font-size: 30px;
    line-height: 40px;
}

.wst-tab-cont h2::after,
.wst-tab-cont h3::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 110px;
    left: 100%;
    top: 55%;
    background-color: #5D0207;
}

.wst-tab-cont h3::after {
    width: 60px;
}

.wst-tab button {
    font-size: 14px;
    background-color: #5D0207 !important;
    color: #fff !important;
    border-radius: 5px !important;
    transition: 0.5s;
}

.wst-tab button:hover {
    background-color: #1c1c1c !important;
}

.wst-tab button.active {
    background-color: #1c1c1c !important;
}

.wst-tab-cont .ws-img-div h3 {
    background-color: #5D0207;
    color: #fff;
    text-align: center;
    width: 100%;
}

.wst-tab-cont ul {
    margin: 0;
}

.wst-tab-cont .ws-img-div img {
    display: block;
    max-width: 100%;
    border: 1px solid #5D0207;
}

.wst-tab-cont .ws-img-div h3 {
    margin-top: 0;
    font-size: 25px;
}

.wst-tab-cont .ws-img-div h3::after {
    content: unset;
}

.default-table th {
    background-color: #5D0207;
    color: white;
}

.default-table th,
.default-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.wst-tab-cont #c-con .ws-img-div h3,
.wst-tab-cont #d-con .ws-img-div h3,
.wst-tab-cont #e-con .ws-img-div h3,
.wst-tab-cont #f-con .ws-img-div h3 {
    font-size: 14px;
    padding: 0;
}

.wst-tab-cont #e-con .ws-img-div h3,
.wst-tab-cont #f-con .ws-img-div h3 {
    margin-bottom: 0;
    line-height: 16px;
    text-align: left;
    padding: 5px 10px;
    padding-bottom: 3px;
    letter-spacing: -0.5px;

}

.wst-tab-cont #f-con .ws-img-div .h-f {
    height: 319px;
}

.wst-tab-cont #e-con .ws-img-div p {
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    background-color: #5D0207;
    padding: 0 10px;
    padding-bottom: 8px;
    font-family: "Playfair", serif;
}

.wst-tab-cont .asr {
    aspect-ratio: 1;
}

#e-con .w-c,
#g-con .w-c {
    min-width: 61px;
}

@media (min-width:768px) {
    .w-2-c {
        min-width: 210px;
    }

    .w-1-c {
        min-width: 80px;
    }

    .w-c-5 {
        min-width: 220px;
    }

    .w-c-4 {
        min-width: 120px;
    }
}

@media only screen and (max-width: 1390px) {
    .about-sec .left .img-2 {
        margin-left: 105px;
    }


}

@media only screen and (max-width: 767px) {
    .navbar-logo img {
        width: 250px;
    }

    body {
        padding-top: 100px;
    }

    .navbar-toggler-icon {
        filter: invert(17);
    }

    .slider-content-outter h1 {
        font-size: 18px;
        margin-bottom: 0;
        margin-top: 5px;
    }

    .banner-cont {
        padding: 5px;
        padding-left: 20px;
        margin-top: 10px;
        margin-bottom: 5px;
        border-left: 3px solid #5D0207;
        position: relative;
    }

    .banner-cont::before,
    .banner-cont::after {
        content: "";
        position: absolute;
        height: 3px;
        width: 25px;
        background-color: #5D0207;
        top: 0;
        left: 0;
    }

    .heighlights-outter .row {
        display: flex;

        gap: 10px;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .count-area-content .count {
        font-size: 25px;
    }

    .heighlights-outter .row .col {
        padding: 10px 20px;
    }

    .count-area-content .count-title {
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: normal;
        line-height: normal;
        color: #00101E;
    }

    .count-area-content .count {
        line-height: normal;
    }

    .about-sec {
        overflow: hidden;
    }

    .event-box-campus>img {
        height: auto;
    }

    .navbar-expand-lg .navbar-collapse {
        padding-left: 15px;
    }

    .search {
        display: flex;
        position: relative;
        width: 100%;
        margin-left: unset;
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }

    .site-title .title-head {
        font-size: 22px;
    }

    img {
        max-width: 100%;
    }
}

.newsletter-page {
    min-height: 70vh;
}

.research-box {
    background: url(../images/research-bann.svg);
    background-size: cover;
    padding: 55px 0;
}

.section-padding {
    padding: 55px 0;
}

.research-box .info-box {
    min-height: 175px;
}

.info-box p {
    font-size: 16px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-box h3 {
    font-size: 20px;
    font-weight: 400;
    min-height: 48px;
}

.research-box img.border-white {
    min-height: 270px;
    max-height: 270px;
}

.custom-gallery-item {
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    max-width: 20%;
    margin-right: 10px;

}

.react-photo-gallery--gallery {
    display: flex;
    /* grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    grid-auto-flow: dense; */

}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease
}

.custom-gallery-item:hover .gallery-image {
    transform: scale(1.05)
}

/*********************************************/
.social-float {
    position: fixed;
    width: 60px;
    top: 30%;
    transition: all 0.3s linear;
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.social-float ul {
    margin-top: 0;
    margin-bottom: 0rem;
    padding-left: 0;
}

.social-float li {
    height: 45px;
    position: relative;
}

.social-float li a {
    color: #fff !important;
    display: block;
    height: 100%;
    width: 100%;
    line-height: 45px;
    padding-left: 25%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
    transition: all 0.3s linear;
    text-decoration: none !important;
}

.social-float li:nth-child(1) a {

    background: #000000;
}

.social-float li:nth-child(2) a {
    background: #2867b2;
}

.social-float li:nth-child(3) a {
    background: #d62976;
}

.social-float li:nth-child(4) a {

    background: #4267b2;
}

.social-float li:nth-child(5) a {
    background: #ff0000;
}

.social-float li a i {
    position: absolute;
    top: 14px;
    left: 24px;
    font-size: 15px;
}

.social-float ul li a span {
    display: none;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-float a:hover {
    z-index: 1;
    width: 200px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
}

.social-float ul li:hover a span {
    padding-left: 30%;
    display: block;
    font-size: 15px;
}

.rts-section-padding {
    min-height: 75vh;
}



@media(max-width:767px) {

    .social-float {
        width: 25px;
        z-index: 9;
    }

    .social-float li {
        height: 25px;
    }

    .social-float li a {
        line-height: 25px;
    }

    .social-float li a i {
        position: absolute;
        top: 7px;
        left: 5px;
        font-size: 12px;
    }
}

.blank-ban img {
    display: block;
    width: 100%;
    max-height: 375px;
    width: auto !important;
    margin: 0 auto;
}

.crf-box {
    border: 5px solid #ffffff;
    width: 100%;
    background-color: #ffb500;
    text-align: left;
    /* align-items: center; */
}

.panel {
    width: 100%;
    border: 4px solid var(--rt-primary-1);
}

.seminar-box-list {
    padding: 25px;
    border-top: 6px solid #ffb500;
    background: #fafafa;
    border-radius: 25px 25px 25px 0;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    margin-bottom: 30px;
}

.report-box .nav-link {
    outline: none;
    transition: all 0.3s;
    color: var(--rt-primary-1);
    border-right: 1px solid var(--rt-primary);
    border-radius: 0;
}

.report-box .nav-link.active {
    background-color: transparent;
    color: var(--rt-primary-1);
    font-weight: bold;
    border-right: 2px solid #ffb500;
}

.box-platter-director {
    padding: 5rem 2rem;
    background: var(--text-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);
    overflow: hidden;
}

.director-images {
    position: relative;
}

.director-images img {
    width: 90%;
    z-index: 99;
    position: relative;
    border: 10px solid var(--text-white);
}

.director-images::before {
    content: "";
    position: absolute;
    background: var(--yellow);
    width: 75%;
    height: 125%;
    right: -5rem;
    top: -50px;
}

.site-title {
    position: relative;
    color: var(--rt-primary-1);
}

.site-title .title-head {
    padding: 0 110px 0 0;
    display: inline-block;
    position: relative;
    margin-bottom: 0;
    font-weight: 800;
    font-size: 35px;
    font-family: "Playfair Display", serif;
}

.link-holder {
    flex-direction: column;
}

.link-holder a {
    padding: 7px 15px;
    border-left: 3px solid #FFB500;
    text-decoration: none;
    margin-bottom: 10px;
    background: #FAF6F6;
    font-size: 16px;
    color: var(--black-colour);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.text-justify {
    text-align: justify !important;
}