.icons-language-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.icons {
  display: flex;
  gap: 0.75rem;
}

.select {
  margin-left: auto;
}

@media (max-width: 1023px) {
  .navbar-end {
    width: 100%;
  }

  .icons-language-container {
    width: 100%;
  }

  .icons {
    width: auto;
  }

  .select {
    margin-left: auto;
    min-width: 120px;
  }
}

.brand-name {
  display: inline-block;
  /*Adjust here*/
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.hero .title {
  font-size: 4rem;
  font-weight: 600;
}

.hero .subtitle {
  font-size: 3rem;
  font-weight: 500;
}

.hero .subtitle.lang {
  color: rgba(245, 238, 222);
  margin-bottom: 0.5rem;
}

/* For mobile phone sizes.. */
@media (max-width: 600px) {

  .brand-name {
    font-size: 0.875rem;
  }

  .hero .title {
    font-size: 2.25rem;
    font-weight: 600;
  }

  .hero .subtitle {
    font-size: 1.5rem;
    font-weight: 500;
  }
}

.location-container {
  display: flex;
  /* stack children vertically */
  flex-direction: column;
  /* make children take full width */
  align-items: stretch;
  gap: 20px;
}

.location-text {
  flex: 1;
}

.location-map {
  flex: 1;
}

/* Allow location container to wrap on narrow screens */
@media (max-width: 800px) {
  .location-container {
    flex-direction: column;
    align-items: stretch;
  }

  .location-map {
    width: 100%;
  }
}


/* Ensure responsive iframe does not overflow its container and is centered */
.location-map .responsive-iframe {
  max-width: 100%;
  margin: 0 auto;
}

.location-map .responsive-iframe iframe {
  max-width: 100%;
  width: 100%;
  display: block;
}
