body,html{
    padding: 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
}
h3{
    font-size: 30px;
    color: rgb(40, 157, 207);
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(36, 142, 187);
    display: inline-block;
    text-align: center;
}
/* TOP HEADER */
.logo {
    width: 250px;
    height: 75px;
    position: relative;
    left: 100px;
}

section{
    padding: 60px;
}

.slogan{
      font-family: "Manufacturing Consent", system-ui;
      font-size: 30px;
      color: rgb(82, 82, 82);
}
.top-header{
    padding: 5px;
    background-color: white;
    border-top: 15px solid rgb(10, 125, 163);
}
.top-header-wraper{
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
}

.contact{
    display: flex;
    flex-direction: column;
    padding: 0 60px;
    
}

.contact > *{
    margin: 5px;
}

.sticky-header{
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
}
/*END TOP HEADER */

/* START NAV  */

.main-nav{
    background-color: rgb(43, 171, 226);
    padding: 10px;
}

.menu{
    display: flex;
    justify-content: center;
    list-style: none;

}

.menu-item{
    font-size: 20px;
    text-decoration: none;
    color: rgb(243, 243, 243);
    margin: 0 20px;
}
.menu-item-dropdown{
    font-size: 20px;
    text-decoration: none;
    color: rgb(243, 243, 243);
    margin: 20px 0 20px 0;

}

.menu-item:hover{
    color: white;
}

/* dropdown menu */

/* Dropdown Content (Hidden by Default) */
/* Dropdown Button */
.dropbtn {
  background-color: #04aa6d00;
    color: rgb(243, 243, 243);
  font-size: 20px;
  border: none;
  margin: 0 20px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  
  /* display: inline-block; */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  /* width: 100%; */
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: rgb(43, 171, 226);
    color: white;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #3e8e4100;
color: white;}

/* end dropdown menu */


/* END NAV  */
/* start pagination */

.pagination {
  text-align: center;
  margin: 30px 0;
}

.pagination a,
.pagination span {
  display: inline-block;
  margin: 0 4px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.pagination a:hover {
  background-color: #83c4e9;
    background-color: #0099ff;
    color: white;
    border-color: #007BFF;
}

.pagination .current {
  background-color: #0099ff;
  color: white;
  font-weight: bold;
  border-color: #007BFF;
}
/* end pagination */

/* footer */

    footer{
        height: 120px;
        background-color: rgb(10, 125, 163);
    }

    .footer-content{
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 50%;
      margin: 0 auto;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;

    }

    .footer-content p {
      margin: 5px;
    }

    .footnote{
      color: white;

    }
    .footnote:hover{
    font-weight: bold;
    }
/* end footer */