p {
  font-family: 'Titillium Web';
  font-weight: 300;
  font-size: 1.10em;
  margin: 0em;
}

h1 {
  font-family: Jost;
  font-size: clamp(24px, 9vw, 120px);
  margin: 0em;
}

h2 {
  font-family: 'Jost';
  font-size: 2.25em;
}

h3 {
  font-family: 'Jost';
  font-size: clamp(16px, 2vw, 24px);
}

h4 {
  font-family: 'Jost';
  font-size: 1.5em;
  margin: 0em;
}

h5 {
  font-family: 'Jost';
  font-size: 1em;
}

h6 {
  font-family: Jost;
  font-size: 76px;
  font-weight: 600;
}

.zoom-hover {
  transition: transform 0.25s ease;
}

.zoom-hover:hover {
  transform: scale(1.05);
}

.caption {
  font-size: 14px;
}

.section {
  margin-bottom: 6rem;
}

@media (min-width: 300px) {
  #hero-image {
    margin-top: -3em;
    margin-bottom: 1em;
    z-index: 2;
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 768px) {
  #hero-image {
    margin-top: -5em;
    margin-bottom: 1em;
    z-index: 2;
    width: 160px;
    height: 160px;
  }
}

@media (min-width: 992px) {
  #hero-image {
    margin-top: -5em;
    margin-bottom: 1em;
    z-index: 2;
    width: 200px;
    height: 200px;
  }
}

.brand-name {
  padding-top: 11px;
}

.globe-icon {
  margin-top: 2.5px;
  margin-right: 4px;
}

.navbar {
  transition: opacity 0.4s ease, visibility 0.4s ease;
  opacity: 1;
  visibility: visible;
}

.navbar.hidden {
  opacity: 0;
  visibility: hidden;
}

.btn {
  min-width: 7em;
  font-size: 1.1em;
  font-weight: 600;
  height: 2.5em;
}

.text-input {
  border-radius: 5px;
  border-width: 1px;
  height: 38px;
  padding-left: .5em;
  padding-right: .5em;
}

.figure {
  max-height: 170px;
  padding: 0px;
  margin: 0px;
}

.limit-height {
  height: 9em;
}

#country-filter {
  height: 2.5em;
  font-family: 'Titillium Web';
  font-weight: 300;
  font-size: 1.1em;
}

.text-input {
  height: 2.5em;
  font-family: 'Titillium Web';
  font-weight: 300;
}

.full-screen {
  min-height: 100vh;
}

.dropdown {
  width: 100%;
  height: 2.5em;
  font-family: 'Titillium Web';
  font-size: 1.10em;
  font-weight: 300;
}

.text-input {
  height: 2.5em;
  font-family: 'Titillium Web';
  font-weight: 300;
  border: 1px solid var(--bs-border-color);
  border-radius: 5px;
  padding-left: .5em;
  padding-right: .5em;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background-color: var(--bs-light) !important;
}

.text-input:hover {
  border-color: var(--bs-primary);
  border-width: 1px;
  border-style: solid;
  background-color: var(--bs-gray-100) !important;
}

.text-input:focus {
  border-color: var(--bs-primary);
  border-width: 1px;
  background-color: var(--bs-gray-50) !important;
  outline: none;
}

.text-input:focus:hover {
  border-color: var(--bs-primary);
  background-color: var(--bs-gray-100) !important;
}

.dropdown button {
  width: 100%;
  height: 2.5em;
  font-family: 'Titillium Web';
  font-size: 1.10em;
  font-weight: 300;
  border: 1px solid var(--bs-border-color) !important;
  border-radius: 5px;
  padding-left: .5em;
  padding-right: .5em;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background-color: var(--bs-light) !important;
  cursor: pointer;
}

.dropdown button:hover {
  border-color: var(--bs-primary) !important;
  border-width: 1px !important;
  border-style: solid !important;
  background-color: var(--bs-gray-100) !important;
}

.dropdown button:focus {
  border-color: var(--bs-primary) !important;
  border-width: 1px !important;
  background-color: var(--bs-gray-50) !important;
  outline: none;
}

.dropdown button:focus:hover {
  border-color: var(--bs-primary);
  background-color: var(--bs-gray-100) !important;
}

.text-input:focus-visible, .dropdown button:focus-visible {
  border-color: var(--bs-primary) !important;
  border-width: 1px !important;
  background-color: var(--bs-gray-50) !important;
  outline: none;
}

.text-input::placeholder {
  color: var(--bs-gray-600);
  font-style: italic;
  transition: color 0.2s ease;
}

.text-input:focus::placeholder {
  color: var(--bs-gray-500);
}

/* Option hover styles for dropdowns */

.dropdown option:hover {
  background-color: var(--bs-primary-bg-subtle);
  color: white;
}

/* Disabled state styles */

.text-input:disabled, .dropdown button:disabled {
  background-color: var(--bs-gray-200) !important;
  border-color: var(--bs-gray-400) !important;
  color: var(--bs-gray-600) !important;
  cursor: not-allowed;
  opacity: 0.65;
}

.text-input:disabled:hover, .dropdown button:disabled:hover {
  border-color: var(--bs-gray-400) !important;
  background-color: var(--bs-gray-200) !important;
}

/* Validation styles */

.text-input.is-valid {
  border-color: var(--bs-success);
}

.text-input.is-valid:focus {
  border-color: var(--bs-success);
}

.text-input.is-invalid {
  border-color: var(--bs-danger);
}

.text-input.is-invalid:focus {
  border-color: var(--bs-danger);
}

/* Form group spacing */

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--bs-gray-700);
}

/* Input group styles for combined elements */

.input-group .text-input, .input-group .dropdown button {
  border-radius: 0;
}

.input-group .text-input:first-child, .input-group .dropdown button:first-child {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.input-group .text-input:last-child, .input-group .dropdown button:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}

@media (min-width: 300px) {
  .parallax {
    width: 100%;
    height: 40vh;
    z-index: -1;
  }
}

@media (min-width: 576px) {
  .parallax {
    width: 100%;
    height: 60vh;
    z-index: -1;
  }
}

@media (min-width: 992px) {
  .parallax {
    width: 100%;
    height: 70vh;
    z-index: -1;
  }
}

