.footer {
  width: 100%;
  padding: 45px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: #094DA4;
}

.footer-nav-container {
  display: flex;
  flex-direction: column;
  row-gap: 18px;

  column-gap: 30px;

  padding-top: 30px;
  padding-bottom: 45px;

  a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
  }
}

.footer-last-content-container .footer-nav-container {
  padding-bottom: 18px;
}

.footer-content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-nav-title {
  font-family: 'lobster';
  font-size: 23px;
  font-weight: bold;
  color: #ffffff;
  padding: 0 10px;
  position: relative;
  font-weight: 400;
}

.footer-nav-title::before, .footer-nav-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25.7vw;
  height: 1px;
  background-color: white;
}

.footer-nav-title::before {
  right: 100%;
  margin-right: 10px;
}

.footer-nav-title::after {
  left: 100%;
  margin-left: 10px;
}

.footer-last-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;

  border-top: 1px solid #FFFFFF;

  width: 100%;
  row-gap: 30px;

  padding-top: 10px;
}

.footer-social-bar {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  padding-bottom: 15px;
}

.footer-social-link {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: inline-block;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 30px;
    object-fit: contain;
  }
}

.footer-logo {
  border: none;
  background: none;
  padding: 0px;

  img {
    width: 99.85px;
    height: 98.25px;
  }
}

.footer-logo {
  img {
    width: 152.48px;
    height: 151.91px;
  }
}

.footer-copyright-text {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 65px 80px;
  }

  .footer-nav-container {
    flex-direction: row;
  }
  
  .footer-last-content-container .footer-nav-container {
    padding-bottom: 10px;
  }
}