:root {
  --PrimaryColor: #137695;
  --TitlesColor: #043c4d;
  --LegendsColor: #8c9394;
  --MenuHoverColor: #00c3ff;
  --ButonTextColor: #ffffff;
}

footer {
  width: 100%;
  padding: 20px;
  background-color: #043c4d;
}

footer .container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 60px;
}

.footer-links-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}

.footer-links-box span {
  font-weight: bold;
  color: white;
}

.footer-links-box a {
  border: 0;
  text-decoration: none;
  color: #d8d8d8;
  transition: 0.2s;
}

.footer-links-box a:visited {
  color: #d8d8d8;
}

.footer-links-box a:hover {
  color: #ffffff;
}

#logo-footer {
  display: inline-block;
  position: relative;
  top: 100%;
  left: 30px;
  width: 110px;
  height: 30px;
}

.footer-redes-box {
  float: right;
  margin-right: 25px;
  padding: 0 10px;
  width: 200px;
  height: 30px;
  text-align: end;
}

.footer-reder-img {
  width: 30px;
  height: 100%;
  display: inline-block;
  margin: 0 5px;

  background-position: center;
  background-size: 100% 100%;
  cursor: pointer;
}

.footer-reder-img:nth-of-type(1) {
  background-image: url(../images/linkedinlogo.png);
}
.footer-reder-img:nth-of-type(2) {
  background-image: url(../images/instagramlogo.png);
}
.footer-reder-img:nth-of-type(3) {
  background-image: url(../images/whatsapplogo.png);
}
@media (max-width: 768px) {
  footer .container {
    justify-content: center;
    padding: 60px 10px;
  }
}
