/* 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;
}

.navbar-custom .navbar-nav .nav-link {
  color: #337AB8;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link:focus {
  color: #255885;
}

.container {
  border-bottom: none;
}

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

.image {
  float: right;
  border-radius: 5px;
}


.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 */
}

.container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px; /* Added margin-top for spacing */
}

.box {
  position: relative;
  width: calc(25% - 20px); /* Adjust the width and spacing as needed */
  margin-bottom: 40px; /* Adjust the margin-bottom as needed */
  color: #000;
  padding: 20px;
  border: 3px solid #DCDCDC; /* Added border styling */
  border-radius: 5px; /* Added border radius */
  transition: background-color 0.3s, color 0.3s; /* Added transition properties */
}

.box:hover {
  background-color: #255885;
  color: white;
}

.box:hover .box-title {
  color: white; /* Change the .box-title color to white on hover */
}
.box-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #337AB8;
}

.box-content {
  position: relative;
}

.box-image {
  margin: 10px 0;
  text-align: center;
}

.box-image img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.box-text {
  font-size: 16px;
}

/* Button Styles */
.btn-custom {
  background-color: #255885;
  color: #fff;
  border: none;
}
.button-row {
  display: flex;
  justify-content: flex-start;
}

.btn-custom:hover {
  background-color: #fff;
  color: #255885;
  border: 1px solid #255885;
}

.column-content {
  width: 100%;
  padding: 0 20px;
}

.image-align-right {
  text-align: right;
}

.title {
  font-size: 40px;
  color: #337AB8;
  font-weight: bold;
  font-style: italic;
}

@media (max-width: 767px) {

  .container2 {
    flex-direction: column;
  }

  .box {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 1023px) {
  .image {
    display: none;
  }
}

/* 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;
}