/* Common Styles */

body {
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}
.navbar-custom {
  border-bottom: 3px solid #255885;
}
.container {
  border-bottom: none;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 25px;
  background-color: #255885;
  z-index: 9999;
}



.navbar-custom .navbar-nav .nav-link {
  font-weight: bold;
  color: #337ab8;
  text-decoration: none;
  margin-right: 10px;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.hovered {
  text-decoration: underline;
  text-decoration-thickness: 3px; /* Adjust the thickness as needed */
}


/* Footer Area */
footer {
  padding: 20px;
  width: 100%;
  
  font-size: 12px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
}

.footer-column-left {
  text-align: left;
  font-style: italic;
}

.footer-column-right {
  text-align: right;
}

.footer-text-left {
  margin: 0;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.footer-text-left,
.footer-text-right {
  font-size: 12px;
  font-style: italic;
  margin: 0;
}

.content-area {
  padding-top: 30px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.container-3 {
  border-top: 3px solid #255885;
}

/* New changes - 7/15/23m */
.imageClass {
  width: 100%;
}

.container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}

.box {
  flex-basis: calc(50% - 20px); /* Adjust the width as needed */
  /* Adjust the height as needed */
  
  margin-bottom: 20px; /* Adjust the margin as needed */
  box-sizing: border-box;
  color: #255885;
  background-color: #fff;
  border: 3px solid #255885;
}

li {
  margin: 0 20px 0 0;
}
.centered-box {
  flex-basis: 100%; /* Take up the full width */
  height: 200px; /* Adjust the height as needed */
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.row1 {
  padding-left: 20px;
  padding-top: 20px;
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  
}

.row1-1 {
  padding: 20px;
 
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  font-style: italic;
  
}

.row2 {
  padding-left: 20px;
  font-size: 16px;
}

.payrollHead {
  font-size: 16px;
  font-style: italic;
  padding: 20px;
}

@media (max-width: 767px) {
  .navbar-collapse {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  .navbar-nav {
    flex-direction: row;
  }

  .navbar-nav .nav-link {
    padding: 0 10px;
    font-weight: bold;
    color: #337AB8;
    text-decoration: none;
    margin-right: 10px;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.hovered {
    text-decoration: underline;
    text-decoration-thickness: 3px;
  }

  .learn-more,
  .contact-us {
    background-color: #255885;
    color: #fff;
    border: 1px solid #255885;
  }

  .learn-more:hover,
  .contact-us:hover {
    background-color: #fff;
    color: #255885;
  }

  .box-container {
    
    display: flex;
    flex-wrap: wrap;
  
  }

  .box {
    flex-basis: 100%; /* Take up the full width on mobile screens */
    background-color: #e0e0e0;
    margin-bottom: 20px; /* Adjust the margin as needed */
    box-sizing: border-box;
    color: #255885;
    background-color: #ffffff;
  }
  .footer-columns {
    flex-direction: column;
  }

  .footer-column-left,
  .footer-column-right {
    text-align: left;
  }

  .footer-text-left,
  .footer-text-right {
    font-size: 12px;
    font-style: italic;
    margin: 0;
  }

  .col-md-4,
  .col-md-8 {
    width: 100%;
  }
}

/* Add custom button styling */
.navbuttons {
  background-color: #337AB8;
  color: white;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none; /* Remove underline from links */
  display: inline-block; /* To ensure proper button alignment */
}

/* Button hover state */
.navbuttons:hover {
  background-color: #255885;
  color: #fff;
}

@media (max-width: 767px) {
  /* Apply this style only for screen sizes up to 767px (Mobile) */
  .navbuttons {
    display: block; /* Change the display to block to align buttons vertically */
  }
}