
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

*{
    font-family: "Roboto Slab", serif;
}

body{
    margin: 0;
    padding: 5px;
    background-color: #FAFAEB !important;
}

.color-green{
    color: #008000;
}

.color-orange{
    color: #D85423;
}

.color-blue{
    color: #0000FF;
}

.color-red{
    color: rgb(197, 5, 5);
}

p{
    text-align: justify;
}

.header{
    width: 100%;
    display: flex;
    border: 5px solid #0000FF;
    align-items: center;
    justify-content: space-around;
    padding: 5px;
    background-color: #fff;
}

.header-text{
    text-align: center;
    line-height: 0em;
}

.header-image{
    margin-top: 10px;
    width: 100%;
}

.header-image img{
    width: 100%;
    border-radius: 5px;
}

.logo-right{
    width: 90px;
}
.logo-right img{
    width: 100%;
}

.logo-left{
    width: 90px;
    visibility: hidden;

}
.logo-right img{
    width: 100%;    
}

nav {
    display: flex;
    width: 100%;
    margin: 10px auto; 
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 5px; */
    background-color: #000;
    /* border: 1px solid red; */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 2em;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: font-size 0.3s ease;
}

.nav-links a:hover{
    font-size: 19px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px;
    transition: all 0.3s ease;
}

.menu{
    display: none;
}

@media (max-width: 768px) {
    nav .menu{
        display: inline-block;
        font-weight: bold;
        font-size: 16px;
        color: #fff;
        padding: 0px 10px;
    }
    .nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 0;
        padding-top: 0px;
        padding-top: 20px;
        background: #333;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        font-size: 14px;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 999;
        line-height: 2.5em;
    }

    .nav-links li {
        opacity: 0;
    }

    .nav-links a{
        font-size: 14px;
    }

    .burger {
        display: block;
    }

    .nav-active {
        transform: translateX(0);
    }

    .nav-links li {
        opacity: 1;
        transition: opacity 0.5s ease-in;
    }
}


.h-images{
    display: flex;
    justify-content: space-between;
}
.row {
    display: flex;
    flex-wrap: wrap;
}

.imp-date-table{
    width: 100%;
}

.card{
    border: none !important;
}

.card-title{
    text-align: center;
    background-color: #187BCD;
    color: #fff;
    padding: 3px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.card-title h5{
    color: #fff;
}

@media (max-width: 600px) {
    
    .logo-left{
      display: none;
    }

    .logo-right{
        width: 60px;
    }

    .header-text h5{
        font-size: 11px;
    }

    .header-text h6{
        font-size: 10px;
    }
}

@keyframes flash {
    0%, 100% { color: red; }
    50% { color: yellow; }
}
marquee{
    background-color: orange;
    padding: 5px 15px;
    border-radius: 5px;
}
.flashing {
    animation: flash 1s infinite;
    font-weight: bold;
}

.footer{
    margin-top: 20px;
    background-color: #014379;
    padding: 20px 10px;
    color: #fff;
     border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.footer ul{
    list-style: none;
    line-height: 2em;
}

.footer ul li a{
    color: #fff;
    text-decoration: none;
}

.footer ul li a:hover{
    color: rgb(250, 189, 23);
}

.footer .quick-links{
    margin-top: 20px;
    margin-left: 32px;
}

.footer .hr{
    height: 1px;
    width: 100%;
    border-top: 2px solid #dbd8d8;
    margin-bottom: 20px;
}

.footer .map{
    padding: 0px 20px;
}

.copyright{
    background-color: #01355f;
    text-align: center;
    color: #fff;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.custom-card{
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #b9b97f;
    color: #4d4d4d;
    box-shadow: inset 0 0 5px 1px rgba(138, 138, 138, 0.5);
}

#countdown{
    margin-top: 50px;
    background-color: #0073d1;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-radius: 5px;
}

#countdown span {
    display: flex;
    font-size: 2em;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}

.conference-topics {
    list-style: none;
    line-height: 2em;
}

.circular-iframe{
    height: 1000px;
}

.download-button{
    border: none;
    background-color: #3199ee;
    color: #fff;
    border-radius: 8px;
    padding: 5px 10px;
}

.download-button:hover{
    background-color: #0872c9;
}

@media (max-width: 600px) {
    .circular-iframe{
        height: 500px;
    }
}