.body .footer {
  margin-top: 200px;
  width: auto;
  padding-bottom: 50px;
}

.body .footer hr {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.body .footer .social_media {
  height: auto;
  margin-top: 50px;
  text-align: center;
  width: 560px;
}

.body .footer .social_media .image-logo {
  align-items: center;
  display: flex;
  justify-content: center;
}

.body .footer .social_media .image-logo .image-bounce {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.body .footer .social_media .image-logo .image-bounce .image {
  align-items: center;
  border: 1px solid #fff;
  border-radius: 60px;
  cursor: pointer;
  display: flex;
  height: 60px;
  justify-content: center;
  transition-duration: .2s;
  transition-timing-function: ease-out;
  width: 60px;
}

.body .footer .social_media .image-logo .image-bounce:active .image:active {
  transform: scale(.8);
}

.body .footer .social_media .image-logo .image-bounce .image a {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
}

.body .footer .social_media .image-logo .image-bounce .image a img, .body .footer .social_media .image-logo .image-bounce .image img {
  display: block;
  width: 35px;
  height: 35px;
  transition-duration: .2s;
  transition-timing-function: ease-out;
}

.body .footer .otherlinks {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  float: right;
  justify-content: flex-end;
  margin-bottom: 20px;
  margin-left: 25px;
  position: relative;
}

.body .footer .otherlinks a {
  border-radius: 5px;
  margin: 3.5px;
  padding: 5px;
  transition-duration: .2s;
  transition-timing-function: ease-out;
}

.body .footer .otherlinks a:hover {
  background-color: var(--interact-hover);
}

.body .footer .otherlinks a:active {
  background-color: var(--interact-active);
}

.body .footer .year {
  position: relative;
  margin-left: 30px;
  bottom: -25px;
}

.body .footer .year h5 {
  height: 16px;
  width: 100px;
}

.body .footer .language .current {
  position: relative;
  display: flex;
  z-index: 3;
  float: right;
  margin-right: 30px;
  padding: 5px;
  width: 60px;
  height: 28px;
  border-radius: 5px;
  cursor: pointer;
  transition-duration: .2s;
  transition-timing-function: ease-out;
  align-items: center;
  justify-content: space-between;
}

.body .footer .language .current:hover {
  background-color: var(--interact-hover);
}

.body .footer .language .current:active {
  background-color: var(--interact-active);
  transform: scale(.9);
}

.body .footer .language .current img {
  border-radius: 3px;
}

.body .footer .language .selection {
  position: relative;
  display: none;
  z-index: 6;
  flex-direction: column;
  float: right;
  bottom: 275px;
  padding: 8px 5px 8px 5px;
  margin-bottom: -275px;
  right: -60px;
  width: 90px;
  height: 265px;
  background-color: var(--popup-modal);
  border-radius: 5px;
  transition-duration: .2s;
  transition-timing-function: ease-out;
  align-content: center;
  overflow-y: scroll;
}

.body .footer .language .selection::-webkit-scrollbar-track {
  border-radius: 10px;
}

.body .footer .language .selection .select {
  display: flex;
  height: 30px;
  margin-top: 2.5px;
  margin-bottom: 2.5px;
  border-radius: 5px;
  transition-duration: .2s;
  transition-timing-function: ease-out;
  align-items: center;
}
.body .footer .language .selection .select:first-child {
  margin-top: 0px;
}
.body .footer .language .selection .select:last-child {
  margin-bottom: 0px;
}

.body .footer .language .selection .select:hover {
  background-color: var(--interact-hover);
}

.body .footer .language .selection .select:active {
  background-color: var(--interact-active);
  transform: scale(.9);
}

.body .footer .language .selection .select a {
  display: flex;
  width: 100%;
  padding: 5px;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
}

.body .footer .language .selection .select img {
  border-radius: 3px;
}

@media only screen and (max-width: 560px) {
  .body .footer .social_media {
    width: 320px;
  }
}

@media only screen and (max-width: 600px) {
  .body .footer .social_media .image-logo .image-bounce {
    height: 40px;
    margin: 2px;
    width: 40px;
  }

  .body .footer .social_media .image-logo .image-bounce .image {
    height: 40px;
    width: 40px;
  }

  .body .footer .social_media .image-logo .image-bounce .image a {
    height: 40px;
    width: 40px;
  }

  .body .footer .social_media .image-logo .image-bounce .image a img, .body .footer .social_media .image-logo .image-bounce .image img {
    height: 22px;
    width: 22px;
  }
}

@media only screen and (min-width: 601px) {
  .body .footer .social_media .image-logo .image-bounce {
    margin: 10px;
  }
}

@media only screen and (max-width: 799px) {
  .body .footer .social_media {
    height: auto;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .body .footer .year {
    margin-top: 150px;
  }
}

@media only screen and (min-width: 800px) {
  .body .footer .social_media {
    float: left;
    height: auto;
    margin-left: 10px;
    text-align: center;
  }

  .body .footer .social_media .image-logo {
    width: 560px;
  }

  .body .footer .otherlinks {
    margin-top: 125px;
    width: 198px;
    justify-content: flex-end;
    flex-direction: column;
  }

  .body .footer .year {
    margin-top: 300px;
  }

  .body .footer .language .current {
    right: 0px;
  }
}

@media only screen and (min-width: 1000px) {
  .body .footer .otherlinks {
    width: 393px;
    justify-content: center;
    flex-direction: row;
  }
}

@media only screen and (min-width: 1093px) {
  .body .footer .otherlinks {
    width: auto;
  }
}

@media only screen and (min-width: 1380px) {
  .body .footer {
    padding-right: 10%;
    padding-left: 10%;
  }
  .body .footer hr {
    width: 200%;
    margin-left: -50%;
  }
}

@media only screen and (min-width: 2000px) {
  .body .footer hr {
    width: 250%;
    margin-left: -60%;
  }
}