.about-section {
  position: relative;
  min-height: 500px;
  background-image: url("../images/about/background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section .about-overlay {
  position: absolute;
  inset: 0;
}

.about-section .section-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 70px 15px;
  width: 100%;
}

.about-section .script-title {
   font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  color: #c9a97a;
  line-height: 1.1;
  margin-bottom: 2px;
}

.about-section .caps-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #2c2118;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-section .divider {
  width: 60px;
  height: 1px;
  background: #c9a97a;
  margin: 0 auto 28px;
}

.about-section .about-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 16.5px;
  color: #3a2e22;
  line-height: 1.9;
  margin-bottom: 18px;
  font-weight: 400;
}

/* Tablet */
@media (max-width: 991px) {
  .about-section .script-title {
    font-size: 44px;
  }
  .about-section .section-content {
    padding: 60px 15px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-section {
    min-height: auto;
    background-position: center top;
  }
  .about-section .script-title {
    font-size: 36px;
  }
  .about-section .caps-title {
    font-size: 15px;
    letter-spacing: 4px;
  }
  .about-section .about-text {
    font-size: 15px;
    text-align: left;
  }
  .about-section .section-content {
    padding: 50px 15px;
  }
}

@media (max-width: 480px) {
  .about-section .script-title {
    font-size: 30px;
  }
}
