:root {
    --color-navy: #002561;
    --color-turquoise: #01bac6;
    --color-white-custom: #F7F5F5;
}

.debug {
  border: solid red 1px;
}



.bg-navy {
    background-color: var(--color-navy);
    color: #fff;
}

.text-navy {
    color: var(--color-navy) !important;
}

.icon {
  width: 25px;
}
/* ==========================================
    Navbar
    ========================================== */

nav a {
  font-size: 18px;
  font-weight: bold;
  color: #002561;
}

.hamburger-circle {
 border: 1px solid #002561;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex !important;
  flex-direction: column;
  justify-content: center !important;
  align-items: center !important;
  width: 45px;
  height: 45px;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hamburger-circle i {
  font-size: 20px;
  text-align: center;
  color: #002561;
}

.hamburger-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.language-dropdown-btn {
  border: 1px solid #002561;
  color: #002561;
  background: #f2f2f2;
  border-radius: 8px;
}

.language-dropdown-btn:focus, .language-dropdown-btn:hover {
  color: #002561;
  background: #e6e6e6;
  border-color: #002561;
}

.language-dropdown-menu {
  background: #f2f2f2;
  border: none;
  border-radius: 8px;
  min-width: 140px;
  padding: 6px 0;
}

.language-dropdown-menu .dropdown-item {
  color: #002561;
  font-family: 'Inter', sans-serif;
}

.language-dropdown-menu .dropdown-item:hover,
.language-dropdown-menu .dropdown-item:focus {
  background: #e6e6e6;
  color: #002561;
}

/* ==========================================
    Navbar
    ========================================== */
footer {
  background-color: #f7f5f5;
}
footer h3 {
  font-size: 22px;
}
footer p {
  font-size: 15px;
}
footer a:hover {
  opacity: 0.5;
}

#footer-contact-form {
  background-color: #f7f5f5;
  box-shadow: 0px 0px 13px #00000029;
  border-radius: 7px;
  border-color:darkgrey;
  border-style: solid;
  border-width: thin;
  padding: 40px 30px 40px 30px;
}

#footer-contact-form .form-control {
  background-color: #fff;
  border: 1px solid #00000029;
  border-radius: 5px;
  padding: 0 16px;
  height: 56px;
  line-height: 56px;
  box-shadow: none;
}
#footer-contact-form .footer-message-input {
  min-height: 112px;
  height: auto;
  line-height: 1.5;
  padding: 12px 16px;
  overflow-y: auto;
  resize: none;
}
.submit-button {
  background-color:#01bac6;
  color: #fff;
  margin-top: 5px;
  border-radius: 5px;
  width: 100%;
  border: solid 1px #01bac6;
}
.submit-button:hover {
  background-color: #fff;
  color: #01bac6;
}

#footer-bottom-links .footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 100;
}
#footer-bottom-links .footer-link:hover {
  color: #ffffff;
  opacity: 0.5;
}
#footer-bottom-links .footer-link-separator {
  color: #ffffff;
  margin: 0 10px;
  font-weight: 400;
}

#mobile-footer-bottom-links {
  margin-top: 20px;
  background-color: #002561;
  padding: 10px 0px;
}
#mobile-footer-bottom-links .footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 100;
}
#mobile-footer-bottom-links .footer-link:hover {
  color: #ffffff;
  opacity: 0.5;
}
#mobile-footer-bottom-links .footer-link-separator {
  color: #ffffff;
  margin: 0 10px;
  font-weight: 400;
}

#footer-logo {
  margin-top: -80px;

}