/*=======FOOTER==========*/
.footer {
  z-index: 1;
  display: flex;
  width: 100%;
  background-color: #2092c0;
  border-top: 1px solid white;
}

.foot-content {
  width: 80vw;
  max-width: 1920px;
  margin: 1.8em auto;
  display: flex;
  justify-content: space-between;
}

.small-text {
  font-size: 0.8rem;
}

.link {
  color: white;
  text-decoration: underline;
}

.link:hover {
  color: white !important;
  opacity: 0.6;
}

.foot-content p {
  color: white !important;
}

.grecaptcha-badge {
  display: none;
}

@media (max-width: 1023px) {
  .foot-content {
    width: 90vw;
    justify-content: center;
  }

  .no-padding p, .no-padding h6 {
    text-align: center;
  }

  .no-padding .buttons-cont {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 450px) {
  .foot-content {
    width: 98vw;
  }
}


/*=======END FOOTER==========*/