header {
  width: 100%;
  background-color: transparent !important;

  display: flex;
  justify-content: space-around;
  align-items: center !important;
}

.navbar-desktop {
  width: 40%;
}

.navbar-desktop ul {
  display: flex;
  justify-content: space-evenly;
}

.navbar-desktop a {
  text-decoration: none !important;
  color: #fff;
  font-weight: bold;
}

.navbar-desktop a:hover {
  color: orange;
}

.span2 {
  font-size: 1.5rem;
  color: orange;
}

header h1 {
  font-size: 1.7rem;
  color: #fff;
}

/* ************************ */
/*STYLE MENU MOBILE*/
.navbar-mobile {
  display: none;
}
.navbar-mobile .bi-list {
  position: fixed;
  z-index: 9999;
  top: 9px;
  right: 15px;
  font-size: 4rem;
  color: #fff;
}
.navbar-mobile-menu {
  transition: top 0.9s;
  background-color: orange;
  position: fixed;
  top: -100vh;
  right: 0;
}
.navbar-mobile .navbar-mobile-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.navbar-mobile .navbar-mobile-list a {
  font-weight: 800;
  color: black;
  padding: 1rem;
}

.change-modal {
  top: 90px;
}

/*Media queries*/
@media screen and (max-width: 992px) {
  .navbar-desktop {
    display: none;
  }
  .navbar-mobile {
    display: block;
  }
}

/* *************************** */

footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #1b2838;
  /* padding: 20px; */
}

.footer-left {
  display: flex;
  /* align-items: center; */
  max-width: 400px;
}

.footer-left a {
  display: flex;
  justify-content: center;
  /* width: 100%; */
  /* margin-right: 10px; */
  color: #fff;
  text-decoration: none;
}

.footer-right p {
  margin: 0;
  color: #fff;
}

.image-footer {
  width: 40%;
  margin-top: 20px;
  padding-bottom: 20px;
}


.social{
  margin-top:  -10px;
}