/********** Template CSS **********/
:root {
    --primary: #003484;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
}

/*** Sponsors logos ***/
.sponsor-logo {
    max-height: 56px;
    max-width: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
    /* z-index: 0 !important; */
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.mobile-logo-div {
    display: none;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Features ***/
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}


/*** About ***/
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/about.jpg) left center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    padding: 30px;
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Testimonial ***/
.testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
}

.inter-title {
    color: black !important;
    margin-top: 1rem;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
    text-align: center;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: var(--primary);
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    /* color: #FFFFFF !important; */
}

.testimonial-item img {
    width: 200px !important;
    height: 200px !important;
    /* border-radius: 100px; */
    margin-left: 25%;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
    padding: 0 0px 14px 0px;
}

.copyright {
    background: #5d1100;
}

.copyright a:hover {
    color: var(--primary) !important;
}

.sercon-logo {
    width: 100px;
}

.navbar .navbar-nav .nav-link {
    font-size: 15px;
    color: white !important;
    font-weight: 400;
}

.navbar-light .navbar-nav .show>.nav-link,
.navbar-light .navbar-nav .nav-link.active {
    border-bottom: 2px solid white;
}

.top-logo-title {
    margin-left: 3rem;
}

.top-logo-title .header {
    font-size: 28px;
    font-weight: 600;
    color: #173483;
}

.top-logo-title .header-1 {
    font-size: 34px;
    font-weight: 800;
    color: brown;
}

.top-logo-title p {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 600;
    color: black;
}

.top-logo-title span {
    font-size: 15px;
    color: black;
}

.top-logo-right-container {
    margin-left: 20%;

}

.top-logo-right-container .title {
    color: #003484;
    font-size: 18px;
    font-weight: 500;

}

.top-logo-right-container p {
    color: #003484;
    font-size: 14px;
    font-weight: 500;
    line-height: 10px;
}

.cus-title {
    font-size: 30px;
    color: #003484;
    font-weight: 500;
    margin-bottom: 2rem;
    margin-top: -1rem;
}

.welcome-message {
    font-size: 16px;
    line-height: 1.8rem;
    /* color: black; */
    text-align: justify;
}

.welcome-doctor-img {
    width: 300px;
    margin-top: 5rem;
    opacity: 0.8;
}

.welcome-message-doc-container {
    text-align: right;
}

.welcome-message-doc-container h4 {
    color: #003484;
    font-size: 24px;
    font-weight: 600;
}

.welcome-message-doc-container p {
    font-size: 14px;
    font-weight: 500;

}

.about-venue-title {
    font-size: 20px;

}

.venue-box {
    padding: 25px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
    min-height: 320px;
}

.committee-doc-img {
    width: 140px;
    margin-top: 10px;
}

.mg-left-4 {
    margin-left: 4%;
}

.abstract-points {
    font-size: 16px;
    line-height: 2rem;
    color: black
}

.place-image-box {
    text-align: center;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.12);
    margin-bottom: 3rem;
}

.place-image-box img {
    width: 360px;
    margin: 10px 0 25px 0;
}

.place-image-box h4 {
    font-size: 16px;
}

.place-image-box a {
    border: 1px solid #125767;
    padding: 6px 8px;
    font-size: 11px;
    color: #125767;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
}

.top-logo-right-container {
    width: 40%;
}

/* p {
    color: #000000;
    font-size: 18px;
    line-height: 32px;
} */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h6,
.h6 {
    font-size: 1.2rem;
}

.footer p {
    color: white;
}

.subtitle-abstract {
    font-size: 16px;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: center;
}

.cus-select-box {
    height: 58px;
}

.bg-text-theme {
    background-color: #4f1b1b;
    padding: 5px 5px 5px 25px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

.abstract-box {
    padding: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    min-height: 30rem;
}

.tours-img {
    width: 300px;
}

.border-btm-box {
    margin-top: 1rem;
    border-bottom: 1px solid #dfdfdf;
    padding-bottom: 2rem;
}

.countdown-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem;
    background: #003484;
    color: white;
}

#demo {
    font-size: 50px;
    margin-top: 3rem;
    font-weight: 500;
}

.counter-area {
    display: flex;
}

.counter-area .content {
    margin-right: 3rem;
    border-right: 1px solid #ffffff;
    padding-right: 2rem;
}

.counter-area .content p {
    font-size: 80px;
    margin-top: 1.5rem;
    font-weight: 500;
}

.counter-left {
    margin-top: 1rem;
}

.counter-left span {
    line-height: 22px;
    font-size: 22px;
}

.counter-left p {
    font-size: 36px;
    line-height: 3rem;
}

.com-box {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    padding: 30px;
    background: #e7f0ff;
}

.scientific-box {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    padding: 30px;
    background: #e7f0ff;
    min-height: 25rem;
}

.scientific-box h5 {
    font-size: 18px;
    margin-bottom: 1.2rem;
    text-align: center;
}

.scientific-box p {
    line-height: 1rem;
}

.scientific-box ul li {
    line-height: 1.8rem;
}

.mob-header-version {
    display: none;
}

@media only screen and (min-width: 310px) and (max-width: 767px) {
    .counter-left span {
        line-height: 22px;
        font-size: 12px;
    }

    .counter-left p {
        font-size: 18px;
        line-height: 3rem;
    }

    .counter-area .content p {
        font-size: 40px;
    }

    .counter-area .content {
        margin-right: 1rem;
        border-right: 1px solid #ffffff;
        padding-right: 1rem;
    }

    .popup-onload {
        margin: 0 auto;
        display: none;
        position: fixed;
        z-index: 101;
        top: 50%;
        left: 55%;
        margin-top: -221px !important;
        margin-left: -240px !important;
    }

    .cnt223 {
        height: 420px !important;
        width: 320px !important;
    }

    .pop-up-img {
        width: 250px !important;
    }

    .sci-img {
        width: 320px !important;
        margin: 0 auto;
    }

    .mobile-logo-div {
        display: block;
    }

    .mob-header-version {
        display: block;
    }
}

.founder-message p {
    line-height: 22px;
    margin: 3px;
}

.wel-img {
    border: 4px solid #003484;
}


@media (min-width: 1200px) {
    .display-1 {
        font-size: 3rem;
    }
}

.home-conf-box {
    padding: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    min-height: 26rem;
    padding-top: 4rem;
}

.home-conf-box h6 {
    font-size: 22px;
    font-weight: 600;
    color: #003484;
}

.home-conf-box p {
    font-size: 18px;
    margin-left: 1rem;
    font-weight: 500;

}

.home-conf-box ul {
    list-style: none;
    font-size: 16px;
    line-height: 1.8rem;
    margin-left: 1rem
}

.home-conf-box .theme-box {
    margin-top: 0rem;
}

.home-conf-box .theme-box p {
    font-size: 24px;
    font-weight: 600;
}

.venue-img {
    width: 100%;
}

.org-box h5 {
    font-size: 1rem;
}

.inner-table thead tr th {
    width: 200px;
    padding: 10px;

}

.inner-table tr td {
    width: 200px;
    padding: 0.75rem;
    /* vertical-align: top;
    border-bottom: 1px solid #dee2e6; */
}

.inner-table thead tr td {
    width: 200px;
    padding: 10px;
}

.table-bordered tr td {

    vertical-align: middle;

}

.bt-border {
    border-bottom: 1px solid #dee2e6;
}

.abstract-container p {
    font-size: 16px;
    color: #2c2c2c;
}

.abstract-list {
    list-style: disc;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8rem;
}

.faculty-box {
    padding: 5px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    border-radius: 4px;
    text-align: center;
    padding: 10px 0 10px 0;
}

.fac-container p {
    font-size: 14px;
    font-weight: 500;

}

.maru-logo {
    width: 50px;
    height: 60px;
    margin-bottom: 1rem;
    margin-right: 1rem;
}

.maru-contact-container {
    display: flex;
}


.popup-onload {
    margin: 0 auto;
    display: none;
    position: fixed;
    z-index: 9999;
    top: 48%;
    left: 55%;
    margin-top: -300px;
    margin-left: -300px;
}

.cnt223 {
    /* min-width: 600px;
    width: 600px;
    min-height: 150px; */
    margin: 20px auto;
    background: #f3f3f3;
    position: relative;
    z-index: 103;
    padding: 15px 35px;
    border-radius: 5px;
    box-shadow: 0 2px 5px #000;
    height: 570px;
    width: 420px;
    text-align: center;
}

.cnt223 a:hover {
    color: black;
}

.btn-area {
    display: flex;
    margin-top: 1rem;
    justify-content: center;
}

.close-area {
    display: flex;
    align-items: center;
    justify-content: end;
    margin-bottom: 1rem;

}

.close-button {
    background: #fc097c;
    width: 32px;
    height: 32px;
    color: white;
    font-weight: 600;
    text-align: center;
    border-radius: 50%;
    padding-top: 6px;
}

.cnt223 p {
    clear: both;
    color: #555555;
    font-size: 20px;
    font-family: sans-serif;
}

.cnt223 p a {
    color: #d91900;
    font-weight: bold;
}

.cnt223 .x {
    float: right;
    height: 35px;
    left: 22px;
    position: relative;
    top: -25px;
    width: 34px;
}

.cnt223 .x:hover {
    cursor: pointer;
}

.pop-up-img {
    width: 352px;
}

.video-box {
    width: 420px;
    height: auto;
    margin: 0 auto;
}

#bg-video-intro {
    width: 420px;
}

.faculty-container {
    padding: 10px;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.faculty-container img {
    width: 180px;
    height: 200px;
    margin-bottom: 1rem;
    display: none;
}

.intern-car-item {}

.intern-car-item img {
    width: 200px;
}

.sci-img {
    width: 720px;
    margin: 0 auto;
}

.flipbook-container {
    height: 840px;
    margin-top: -5px;
}

.bg-primary {
    background-color: #502626 !important;
}

.committee-card {
    text-align: center;
    background-color: #f8e8d1;
    border-radius: 6px;
}

.committee-card h2 {
    text-align: center;
    color: white;
    background-color: #c46549;
    font-size: 16px;
    padding: 15px 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.committee-card img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
}

.committee-card p {
    text-align: center;
    line-height: 1.8rem;
    padding: 10px 40px;
    font-size: 14px;
    color: black;
}

.committee-card h4 {
    color: brown;
    padding-top: 20px;
    font-size: 18px;
    padding-bottom: 20px;
}

.econ-logo {
    width: 160px;
}

.msg-btn-img {
    width: 140px;
    /* padding: 10px; */
    border: 6px solid #ff9e20;
    margin-bottom: 10px;
}

.footer-top-sec {
    display: flex;
    justify-content: center;
}

.footer-top-sec img {
    width: 35%;
}

.footer-sec-bg {
    background: url(../img/footer-bg.jpg) 100% no-repeat;

}

.committe-name-card {
    padding: 15px 10px;
    background-color: #f8e8d1;
    text-align: center;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.committe-name-card h2 {
    font-size: 18px;
}

.committe-name-card p {
    color: black;
    font-size: 16px;
}


.floating-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #007bff;
    color: #fff;
    width: 180px;
    height: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    z-index: 1000;
    white-space: nowrap;
    /* animation: glow-blink 1.5s infinite;
      transition: all 0.3s ease; */

    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    transition: box-shadow 0.3s ease;
}

@keyframes glow-blink {

    0%,
    100% {
        box-shadow: 0 0 5px #007bff, 0 0 10px #007bff, 0 0 20px #007bff;
    }

    50% {
        box-shadow: 0 0 2px #007bff, 0 0 5px #007bff;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

.floating-button a {
    color: white;
    text-decoration: none;
}

.floating-button:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.mobile-logo-div img {
    width: 80px !important;
}

.mobile-logo-div .mob-sercon {
    width: 75px !important;
}

.mob-header-version h4 {
    font-size: 28px;
    font-weight: 800;
    color: brown;
}

.mob-header-version h6 {
    font-size: 20px;
    font-weight: 600;
    color: #173483;
}

.mob-header-version p {
    font-size: 16px;
    color: black;
    font-weight: 600;

}

.table-bordered tr td {
    vertical-align: middle;
    font-size: 16px;
    padding: 12px;
    color: black;
}


/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1020;
    /* Sit on top */
    padding-top: 30px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    /* text-align: center; */
    top: 30px;
}

/* The Close Button */
.close {
    color: #000000;
    float: right;
    font-size: 28px;
    font-weight: bold;
    opacity: 1;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-content img {
    width: 60%;
    margin: 0 auto ;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {


    .modal-content {
        background-color: #fefefe;
        margin: 2% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 90%;
        text-align: center;
        margin-top: 20%;
    }

    .modal-content img {
        width: 320px !important;
    }
}