/* Reset some default styles and add some basic styling */
* {
    margin: 0;
    padding: 0;
    font-family: calibri;
    box-sizing: border-box;
    text-transform: none;
    
}
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
p {
    text-transform: none;
    
}
.menu{
    background: linear-gradient(to right, #0A54C4, #92B8F1);
    width: 100%;
    overflow-y: hidden;
}
.menu .container {
    display: flex;
    align-items: center;
    justify-content: space-between;   
    max-width: 1444px;
}
@media only screen and (max-width:768px)  {
    .menu .container {
    
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.menu .container .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu .container .logo img {
    width: 80px; /* Adjust as needed */
    display: block; /* Prevents inline spacing */
    margin: 0; /* Resets any unwanted margins */
    padding: 0; /* Ensures no extra space */
}

.menu .container .photos {
    display: flex;
    column-gap: 3rem; 
}
.menu .container .photos img {
    width: 100px;
}


.menu .container .title {
    text-align: center;
}

.menu .container .title h5 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    margin-left: 3rem !important;
    text-transform: uppercase;
    font-weight: 600;
}
.menu .container .title span {
    font-size: 18px;
    font-weight: 400;
}

.menu .container .photos img {
    max-width: 100%; /* Adjust the size as needed */
    padding-top: 1rem;
}
.menu .container .photos img:nth-child(2){
    margin-top: 1.76rem;
    margin-left: 8px;
}
.menu .container .photos img:nth-child(3){
    margin-top: 2.45rem;
    margin-left: 8px;
}


.navbar {
    position: relative;
}


.navbar-nav {
    margin-left: auto; 
}

.navbar-nav .nav-item {
    margin-right: 15px; 
}

button.navbar-toggler {
    width: 13%;
}

.navbar-nav .nav-link.active:hover {
    background-color: #0A54C4;
    color: whitesmoke;
    border-radius: 6px;
}
.navbar ul {
    list-style: none;
    padding: 0;
    margin-right: 0;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    display: block;
    font-size: 16px;
}


.navbar ul li:hover > ul {
    display: block;
}

.navbar ul li ul {
    display: none;
    position: absolute;
    top: 100%; 
    background: #fff;
    border-radius: 7px;
    z-index: 1;
}

.navbar ul li ul li {
    width: 100%;
    border-top: 2px solid white;
}


.navbar ul li ul li ul {
    top: 0;
    left: 100%;
}


.navbar ul li ul li a {
    margin: 0;
    width: 230px; 
}


.navbar ul li ul li a:hover {
    background-color: #0A54C4;
    color: whitesmoke;
    border-radius: 0; 
}

.active1, .a:hover {
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px ;
    background-color: inherit;     
}


/* Navbar fixed */

.sticky-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white; 
    z-index: 1000;
}
.sticky-container {
    margin-top: 70px; 
}
.sticky-navbar a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
}



/* Notifications */


section thead td{
    color: #0A54C4;
}

section button {
    border: 0;
    text-align: center;
}
section button a{
    text-decoration: none;
    background-color: #0A54C4;
    padding: 10px;
    border-radius: 4px;
    color: #fff;
}
section button a:hover {
    background-color: #0A54C4;
    color: #fff;
}
section tbody .g1 {
    padding-top: 30px;
    padding-bottom: 10px;
}


/* Publications Page */

#pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  
  #preBtn,
  #nextBtn,
  button,
  #currentpage {
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    width: 40px; 
  }

  #preBtn,
  #nextBtn,
  button {
    background-color: #007bff;
    color: #fff;
  }
  
  #currentpage {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
  }
  
  button:hover,
  #currentpage:hover {
    background-color: #0056b3;
  }
  
  /* Media query for smaller screens (adjust the max-width as needed) */
  @media (max-width: 600px) {
    #preBtn,
    #nextBtn,
    button,
    #currentpage {
      width: 30px;
      font-size: 12px;
    }
} 






/* Cards Image */

.grid-container {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

@media only screen and (max-width:768px) {
    .grid-container {
    display: grid;
    grid-template-columns: repeat(1,1fr);
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
}
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media only screen and (max-width:768px) {
    .grid-item img {
    width: 100%;
    height: auto;
}
}

.grid-item .title {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    margin: 0;
}
.mt-4 {
    position: relative;
    margin-bottom: 2rem;
}
.mt-4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100px;
    height: 5px;
    background-color: #00a4e3;
    border-radius: 5px;
}


/* Document */

#Document-img img{
    width: 100%;
}


