.footer {
  width: 100vw;
  padding: 6rem 0;
  background: #001E47;
  display: flex;
  justify-content: center;
  color: #fff;
  padding-bottom: 0;
}
.footer .text {
  font-size: 1.4rem;
  margin: 0.25rem;
}
.footer-inner-container {
  width: 90%;
  display: flex;
  flex-direction: column;
}
.footer-inner-container--top-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 4rem;
  position: relative;
}

.footer-inner-container--bottom-container {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding: 1rem 0;
  margin-top: 10rem;
  position: relative;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column--title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.first-footer-column .menu-container--logo-container {
  margin-bottom: 1.5rem;
}

.dev-profile-link {
  color: #fff;
}

.go-top-footer-button {
  text-decoration: none;
  position: absolute;
  width: 5.2rem;
  height: 5.2rem;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  bottom: 120%;
  border-radius: 1rem;
  cursor: pointer;
}


.go-top-footer-button:hover {
  opacity: 0.8;
}

.arrow-up-image-footer {
  width: 1.2rem;
  height: 1.2rem;
}
.current-year-footer {
  font-size: 2.4rem;
  font-weight: 600;
  opacity: 0.5;
  margin: 1rem 0;
}

/*footer-inner-container--top-container*/

@media screen and (max-width: 1023px) {
  .footer-inner-container--top-container{
    width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 3rem 0;
  }
}