.header__links .nav-link:nth-child(4)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background-color: var(--uttc-gold);
  content: '';
}

/* section.info */
section.info {
  margin-top: 75px;
  padding-top: 120px;
  padding-bottom: 28px;
}

section.info h1 {
  font-size: 40px;
  line-height: 1.5;
  margin: 0;
}

section.info .info__list {
  margin-top: 28px;
}

section.info .info__item {
  display: flex;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid var(--uttc-light-gray);
}

section.info .info__item:last-child {
  border-bottom: none;
}

section.info .info__label {
  font-weight: 700;
  color: var(--uttc-black);
  width: 10%;
}

.en section.info .info__label {
  width: 15%;
}

section.info .info__value {
  color: var(--uttc-gray);
  line-height: 1.5;
  width: 90%;
}

section.info .info__value div:not(:first-child) {
  margin-top: 8px;
}

section.info .info__value a {
  position: relative;
  color: var(--uttc-gray);
  text-decoration: none;
}

section.info .info__value a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 0;
  background-color: var(--uttc-gray);
  transition: width 0.4s ease;
}

section.info .info__value a:hover::after {
  width: 100%;
}

.en section.info .info__value {
  width: 85%;
}

section.info-map #map-wrapper {
  height: 100%;
  width: 100%;
  min-height: 500px;
  margin: 0;
  padding: 0;
}

section.info-map #map-wrapper,
section.info-map #map-wrapper * {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

section.info-map #map-wrapper .leaflet-popup-content {
  line-height: 20px !important;
}

@media (max-width: 991.98px) {
  section.info {
    margin-top: 40px;
    padding-top: 100px;
    padding-bottom: 20px;
  }

  section.info h1 {
    font-size: 32px;
    text-align: left;
  }

  section.info .info__list {
    margin-top: 20px;
  }

  section.info .info__item {
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    padding: 20px 0;
  }

  section.info .info__label,
  .en section.info .info__label {
    width: auto;
  }

  section.info .info__value,
  .en section.info .info__value {
    width: 100%;
  }
}

section.info-map {
  padding-top: 60px;
  padding-bottom: 120px;
}

section.info-map h2 {
  font-size: 40px;
  line-height: 1.5;
  margin: 0;
}

section.info-map .mapouter {
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  section.info-map {
    padding-top: 40px;
    padding-bottom: 100px;
  }

  section.info-map h2 {
    font-size: 32px;
    text-align: left;
  }

  section.info-map .mapouter {
    margin-top: 40px;
  }
}

.leaflet-bottom.leaflet-right {
  display: none;
}