/*-----------------------------------------------------------------------------------*/
/* FOOTER
/*-----------------------------------------------------------------------------------*/

.footer-container {
  width: 100vw;
  height: 350px;
  background-color: white;
  position: relative;
  display: flex;
  justify-content: space-around;
  background: var(--FLARIE_BLUE_DARK);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  align-items: center;
}

.footer-list-container,
.footer-logo-container {
  display: flex;
}

.footer-list-container {
  flex-direction: row;
  justify-content: flex-end;
}

.footer-logo-container {
  height: 100%;
  flex-direction: column;
  justify-content: space-around;
}

.footer-list-container > ul {
  margin: -15px 15px 0 15px;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.footer-list-container > ul > li {
  font-family: "Museo-Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: white;
  margin: 5px 0 5px 0;
}

.footer-list-container a {
  color: #ffffff;
}

.footer-list-container a:visited {
  color: #ffffff;
}

.footer-list-container a:active {
  color: #ffffff;
}

.footer-logo {
  /*width:153px;*/
  width: 75px;
  height: auto;
}

.footer-list-header {
  font-family: "Museo-Sans" !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 128% !important;
  margin-bottom: 20px !important;
  color: white !important;
}

.footer-terms-container > p {
  font-family: "Museo-Sans";
  font-style: normal;
  font-weight: 300;
  font-size: 14px !important;
  color: white !important;
  opacity: 1;
  margin: 0 10px 0 10px;
}

.footer-terms-container > p > a {
  color: white !important;
}

.footer-terms-container {
  display: flex;
  flex-direction: row;
}

.footer-terms-container a:visited {
  color: white;
}

.footer-terms-container a:active {
  color: white;
}

.footer-logo-inner-container {
  display: flex;
  flex-direction: column;
}

/* ******* MEDIA QUERIES *********** */

@media screen and (min-width: 1027px) and (max-width: 1299px) {
  .footer-list-header {
    font-size: 14.4px;
  }

  .footer-logo-container {
    margin-left: 15px;
  }

  .footer-list-container {
    margin-right: 15px;
  }

  .footer-list-container > ul > li {
    font-size: 12.8px;
  }
}

@media screen and (max-width: 1026px) {
  .footer-logo-container {
    flex-direction: row;
    padding-bottom: 3%;
  }

  .footer-container {
    flex-direction: column-reverse;
    height: unset;
  }

  .footer-list-container > ul > li {
    font-size: 14px;
  }

  .footer-list-header {
    font-size: 16px;
  }

  .footer-terms-container {
    align-items: flex-end;
    padding-bottom: 1%;
  }

  .footer-list-container {
    padding: 5% 0 5% 0;
  }
}

@media screen and (max-width: 767px) {
  .footer-logo-container {
    flex-direction: column !important;
    padding-bottom: 5% !important;
  }

  .footer-logo {
    /*width:83px;*/
    margin: 0 auto;
  }

  .footer-logo-inner-container {
    align-self: center;
  }

  .footer-logo-inner-container > a {
    display: flex;
    align-content: center;
    justify-content: center;
    margin-top: 5%;
  }

  .footer-list-container {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    flex-wrap: wrap;
  }

  .footer-list-container > ul {
    margin: 40px 0px 0 0px;
    padding-left: 0;
    width: 42%;
  }

  .footer-terms-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 85%;
    margin: 0 auto;
    margin-top: 40px;
  }

  .footer-terms-container > p {
    width: 33.33%;
  }

  .footer-terms-container > p:first-child {
    width: 100%;
  }
}
