section.margin-y {
  margin: 8rem 0;
}
@media (max-width: 992px) {
  section.margin-y {
    margin: 6rem 0;
  }
}
.locations {
  margin: 8rem 0;
}
@media (max-width: 992px) {
  .locations {
    margin: 4rem 0;
  }
}
.locations .location-head h2 {
  font-family: EagleBook;
  font-size: 2.5rem;
  font-weight: 500;
  color: #9e0b0f;
  margin-top: 2rem;
}
.locations .location-head p {
  font-family: EagleBook;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 2rem;
}
.locations .location-info {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .locations .location-info:not(:last-child) {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
.locations .location-info i {
  font-size: 2rem;
}
.locations .location-image {
  width: 90%;
}
@media (max-width: 992px) {
  .locations .location-image {
    width: 100%;
  }
}
.section-head {
  text-align: center;
  margin-bottom: 4.5rem;
}
.section-head h2 {
  font-size: 2.8rem;
  font-weight: 800;
}
.section-head h3 {
  font-size: 1.5rem;
  font-weight: 800;
}
.partners img {
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: 5rem;
}
#map {
  height: 30rem;
  width: 100%;
}
/* Map Location */
.marker-image {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  overflow: hidden;
  padding: 0.8rem;
  background-color: #c96;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marker-image::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #c96;
  content: "";
  left: 50%;
  position: absolute;
  top: 98%;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-out;
  width: 0;
  z-index: 1;
}
.property {
  font-size: 14px;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease-out;
}
.property .details {
  display: none;
  flex-direction: column;
  flex: 1;
  margin-left: 1rem;
}
.property .address {
  color: #9E9E9E;
  font-size: 10px;
  margin-bottom: 10px;
  margin-top: 5px;
}
.property .features {
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.property .features > div {
  align-items: center;
  background: #F5F5F5;
  border-radius: 5px;
  border: 1px solid #ccc;
  display: flex;
  font-size: 10px;
  gap: 5px;
  padding: 5px;
}
.property.highlight {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
  padding: 8px 15px;
  width: auto;
  display: flex;
}
.property.highlight .details {
  display: flex;
}
.property.highlight .marker-image {
  border-radius: 0;
  padding: 0;
  background-color: transparent;
}
.property.highlight .marker-image::after {
  border-top: 9px solid #fff;
}
/* Banner Section */
.banner {
  position: relative;
  background-image: var(--banner-image);
  width: 100%;
  height: 60vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
.banner p {
  text-align: center;
  padding-top: 3.5rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}
/* Form Section */
.contact-container {
  background-color: #f4ede0;
  padding: 6rem 0;
}
.contact-container .contact-form {
  background-color: #fff;
  padding: 3rem;
  border-radius: 1rem;
}
.contact-container .contact-form .form-group {
  margin-bottom: 1rem;
}
.contact-container .contact-form .contact-form-title {
  font-family: cursive;
  color: #9e0b0f;
}
.contact-container .form-head h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 5rem;
}
.contact-container .form-head h2 span {
  color: #c49b6d;
}
.contact-container .form-head p {
  color: #999999;
  font-size: 1.5rem;
}
.contact-container .form-details {
  font-size: 1.2rem;
}
.contact-container .form-details i {
  color: #CC9966;
  font-size: 2.2rem;
}
.contact-container .form-details .form-row {
  display: flex;
}
.contact-container .form-details .form-row:not(:last-child) {
  margin-bottom: 3rem;
}
.contact-container .social-links {
  margin-top: 3rem;
}
.contact-container .social-links a {
  color: #CC9966;
  font-size: 2.2rem;
}
.contact-container .social-links a:not(:last-child) {
  margin-right: 3rem;
}
/* Contact Person */
.contact-person {
  background-color: #fcf9f6;
  word-wrap: break-word;
}
@media (max-width: 992px) {
  .contact-person {
    margin: 1rem;
  }
}
.contact-person h2 {
  font-size: 2.8rem;
  font-weight: 800;
}
@media (max-width: 992px) {
  .contact-person h2 {
    font-size: 1.8rem;
  }
}
.contact-person h3 {
  font-size: 1.5rem;
  font-weight: 800;
}
@media (max-width: 992px) {
  .contact-person h3 {
    font-size: 1rem;
  }
}
.contact-person button {
  background-color: #9E0B0F;
  border: none;
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
  border-radius: 0.2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .contact-person button {
    font-size: 1rem;
    width: 100%;
  }
}
.contact-person button i {
  margin-right: 1rem;
}
.contact-person a {
  font-size: 1.2rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
}
.contact-person a i {
  font-size: 2rem;
  margin-right: 2rem;
}
