section.contact {
  padding-top: 75px;
  background-color: #f7f8f9;
  min-height: calc(100vh - 75px);
}

section.contact .video-container {
  position: relative;
  height: 40vh;
  background-color: #151414;
  background-image: url('../assets/videos/banner.jpg');
  background-size: cover;
  background-position: center;
}

section.contact .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.contact .video-container h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  z-index: 1;
  color: var(--uttc-white);
  width: calc(100% - 32px);
  text-align: center;
}

section.contact .container {
  padding-top: 90px;
  padding-bottom: 90px;
}


section.contact .heading p {
  position: relative;
  font-size: 20px;
  white-space: pre-line;
  line-height: 1.6;
  max-width: 100%;
  margin: 0;
  color: var(--uttc-gray);
  margin-bottom: 40px;
}

section.contact h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

section.contact .contact__address {
  margin-top: 40px;
  font-size: 20px;
  max-width: 100%;
  margin: 0;
  line-height: 1.6;
}

section.contact .contact__address a {
  color: var(--uttc-black);
  text-decoration: none;
}

header .header__links a {
  position: relative;
}

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

@media (max-width: 991.98px) {
  section.contact {
    padding-top: 60px;
    min-height: unset;
    flex-direction: column;
  }

  section.contact .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  section.contact h2 {
    font-size: 36px;
    margin-top: 30px;
  }

  section.contact .heading p {
    font-size: 18px;
  }

  section.contact .contact__address {
    font-size: 18px;
    margin-bottom: 30px;
  }
}