.font-bold {
  font-weight: 600 !important;
}

.underline-sm::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--teal);
  margin-top: 10px;
}

/* ======================= 1.0 - Hero  ========================== */

section.about-video-hero .header-about {
  height: calc(70vh - 110px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #e9e9e9;
  position: relative;
}

.about-hero-content {
  max-width: 1200px;
  width: calc(100% - 120px);
  margin: 0 auto;
  text-align: center;
  z-index: 3;
  color: #ffffff;
}

.about-hero-content .hero-content {
  padding-top: 19vh;
}

.about-hero-content .hero-content .header-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about-hero-content .hero-content .header-buttons a {
  margin: 0;
}

.google-reviews {
  display: flex;
  justify-content: flex-start;
  margin: 30px 0 60px;
}

.google-reviews img {
  max-width: 250px;
  width: 100%;
}

.about-hero-content .hero-content {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.about-hero-content hgroup h1 span {
  display: block;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 10px;
}

.about-hero-content hgroup h1 {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

.about-hero-content p {
  max-width: 900px;
  width: 100%;
  margin: 20px auto 20px;
  font-size: 1.5rem;
  font-weight: 400;
}

.hero-about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 30%);
  display: block;
  z-index: 1;
}

.video-hero-about {
  position: absolute;
  width: 100%;
  height: calc(70vh - 110px);
  pointer-events: none;
  overflow: hidden;
}

.video-hero-about video {
  display: block;
  height: 101%;
  width: 101%;
  position: absolute;
  object-fit: cover;
  left: 50%;
  top: 50%;
  object-position: center center;
  transform: translateX(-50%) translateY(-50%);
}

/* Responsive */

@media (max-width: 768px) {
  .about-hero-content .hero-content {
    padding-bottom: 40pxw;
  }
}

@media (max-width: 576px) {
  .about-hero-content hgroup h1 {
    font-size: 40px;
  }
}

@media (max-width: 520px) {
  .about-hero-content {
    width: calc(100% - 30px);
  }
}

@media (max-width: 470px) {
  .about-hero-content .hero-content {
    padding-top: 14vh;
  }
}

@media (max-width: 425px) {
  .about-hero-content hgroup h1 {
    font-size: 34px;
  }
}

/* ======================= 2.0 - INTRO  ========================== */

.about-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 100px auto 60px;
}

.about-intro .content {
  max-width: 1200px;
}

.about-intro .content h2 {
  font-weight: 600;
}

/* Responsive */

@media (max-width: 1200px) {
  .about-intro {
    padding: 0 5vw;
  }
}

@media (max-width: 576px) {
  .about-intro {
    margin: 60px auto;
  }
}

/* ======================= 3.0 - Team Section  ========================== */
.about-page .team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  margin: 80px auto;
}

.about-page .team-header {
  text-align: start;
}

.about-page .team-header h2 {
  font-weight: 600;
}

.about-page .team-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: start;
}

.about-page .team-member {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  text-align: center;
}

.about-page .team-member a {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.about-page .team-member img {
  width: 300px;
  height: 300px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}

.about-page .team-info {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  background: #56bec0;
  color: white;
  padding: 10px;
  text-align: left;
  border-radius: 0 0 8px 8px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.about-page .team-member:hover .team-info {
  opacity: 1;
}

/* Responsive */

@media (max-width: 1200px) {
  .about-page .team-container {
    padding: 0 20px;
  }
}
@media (max-width: 1024px) {
  .about-page .team-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .about-page .team-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page .team-container {
    margin: 50px auto;
  }

  .about-page .team-info {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 576px) {
  .about-page .team-gallery {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-page .team-container {
    text-align: center;
  }

  .about-page .team-header {
    text-align: center;
  }

  .about-page .team-member img {
    width: 350px;
    height: 350px;
  }

  .about-page .team-info {
    text-align: center;
    width: 350px;
    margin: auto;
    left: 0;
    right: 0;
  }
}
