.footer-lp{
  background-color: #152e54;
  width: 100%;
}

.footer--container{
  padding-top: 125px;
  width: 90%;
  height: 100%;
  min-height: 360px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.footer__image{
  max-width: 252px;
  min-height: 67px;
  width: 100%;
  height: 100%;
}

.footer--flex ul{
  display: flex !important;
  flex-direction: column;

}

.footer--container .footer--titles {
  color: #FFF;
  font-size: 20px !important;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 20px;
}

.footer--titles__social {
  color: #FFF;
  font-size: 20px !important;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 50px;
}

.footer--flex li {
  margin: 0 !important; 
  line-height: 31px !important;
  font-family: Open Sans !important;
  height: auto;
}

.footer--flex li a{
  color: #FFF !important;
  padding: 0 !important;
  overflow: unset !important;

}

.footer--flex li a:hover {
  color: #a7ce38 !important;
}

.footer__socials svg {
  fill: #FFF;
  width: 24px;
  height: 24px;
  margin-right: 32px;
  transition: all .1s ease-in-out;
}

.footer__socials svg:hover {
  fill: #a7ce38;
  transform: scale(1.1);
  transition: all .1s ease-in-out;
}

.footer--rights{
  padding: 10px 0;
  width: 90%;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}

.footer--rights p {
  color: #FFF;
  padding: 0;
  margin: 0; 
  line-height: 31px;
  font-family: Open Sans;
  font-size: 17px;
  font-weight: 400;
}

.footer--rights__privacy{
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-end;
}

.footer--rights__privacy p {
  font-weight: 500;
}

.footer--rights__privacy p span {
  color: #eac800;
  font-weight: 500 !important;
}

.footer--rights__privacy a {
  color: #fff;
}



{# ---- Tablet Breakpoint ---- #}
@media (max-width: 992px) {
  .footer__image{
    width: 154px;
    height: 41px;
  }
  .footer__socials {
    width: 100%;
    max-width: 15%;
  }

  .footer__socials--links{
    display: flex;
    row-gap: 20px;
    flex-wrap: wrap;
    flex-direction: row;
  }
}

{# ---- Mobile Breakpoint ---- #}

@media (max-width: 765px) {
  .footer__image{
    width: 310px;
    height: 85px;
    margin-bottom: 30px;
  }

  .footer--container{
    padding-top: 100px;
    width: 68.4%;
    flex-direction: column;
  }

  .footer--menu__touch{
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: solid 1px;
  }

  .footer--menu__links{
    margin-bottom: 30px;
    padding: 30px 0;
    border-top: solid 1px;
    border-bottom: solid 1px;
  }

  .footer__socials--links {
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }
  .footer--rights{
    padding: 20px 0;
    width: 70%;
    flex-direction: column;
    align-items: center;
  }
  .footer--rights__privacy{
    align-items: center;
    gap: 0;
  }
}