footer {
  background-color: #320E3B;
  color: white;
}
footer a:not(.button),
.footer p{
  color: white !important;
  text-decoration: none;
}
.back-to-top {
  display: flex;
  justify-content: space-between;
}
footer nav {
  display: flex;
  justify-content: space-between;
  align-items: center; /* To vertically center the content */
  color: white;
}

.bottom-menus {
  list-style: none;
  display: flex; /* Makes the menu items horizontal */
  margin: 0px;
  padding-left: 0px!important;
  font-size: 14px;
}

.bottom-menus li {
  margin-right: 25px; /* Adjust spacing between menu items */
  color: #fff; /* White */
}
.semi-bold {
  font-weight: 600;
}
.social-icons {
  text-align: right;
}

/* Optional styling for the LinkedIn logo */
.social-icons img {
  width: 30px;
  height: 30px;
}
.footer-divider {
  border: none;
  border-top: 1px solid white;
  margin: 30px 0; 
}
@media only screen and (max-width: 767px) {
    .bottom-menus {
        display : block;
    }
  .bottom-menus li {
    margin-bottom: 25px;
}
    
