@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

#cms-content *:not(i),
#header-django *:not(i),
footer *:not(i) {
  font-family: 'Roboto', sans-serif !important;
}

/* Pre-header */

.pre-header {
  background-color: #065188;
}

.pre-header .container {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}

.pre-header a {
  font-size: .7rem;
  padding: 0;
}

/* Header */
#header-django .navbar-nav {
  margin-right: 0 !important;
}

#header-django .main-menu li {
  padding: 0 .5rem;
}

#header-django .main-menu li a {
  font-size: 15px;
  font-weight: 400;
}

@media (max-width: 480px), (min-width: 481px) and (max-width: 769px), (min-width: 770px) and (max-width: 989px), (min-width: 990px) and (max-width: 1199px) {
    #header-django .logo-container .header-logo {
        max-height: 43px;
    }
}

/* Footer */

.footer-custom {
  background-color: #065188;
  padding: 2rem 0;
}

.footer-custom .links-row-custom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: .5rem;
  flex-wrap: wrap;
}

.footer-custom .links-row-custom a {
  font-size: .6rem;
  padding: 0;
  font-weight: 300;
}

.footer-custom .img-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

.footer-custom .img-row img {
  height: 40px;
  background-color: white;
}

.footer-custom .custom-text {
  font-weight: 300;
  color: white;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .footer-custom p {
    text-align: center;
  }

  .footer-custom .img-row {
    justify-content: center;
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .footer-custom .links-row-custom {
    justify-content: center;
  }

  .footer-custom .links-row-custom a {
    font-size: .8rem;
  }

  .footer-custom .logo-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
  }
}

