@charset "utf-8";
/* CSS Document */

#inner-banner.about-resort {
  background-image: url('../images/front.png'); /* Ensure the path is correct */
  background-size: cover; /* Make sure the background covers the section */
  background-position: center; /* Center the background image */
  height: 80vh; /* Set a height for the section */
  position: relative; /* Allows absolute positioning of child elements */
}

.mb15{margin-bottom: 15px}

.banner-title {
  position: absolute;
  top: 40%; /* Adjust positioning as needed */
  left: 8%;
  color: #fff;
  text-align: left;
  padding: 10px; /* Add padding if needed */
  /* Ensure it appears on top of the background image */
}

.banner-title h3 {
  font-size: 48px;
  font-weight: 600;
  margin: 0; /* Remove default margin */
}

.banner-title p {
  font-size: 18px;
  margin: 0; /* Remove default margin */
}

@media only screen and (max-width: 480px) {
  .banner-title h3 {
    font-size: 28px;
  }
  .banner-title {
    padding: 0 10px; /* Add padding for smaller screens */
    left: 0; /* Adjust positioning */
    text-align: center; /* Center text on smaller screens */
  }
}





/* General Styles for the Decorators Section */
.decorators {
  padding-bottom: 80px;
}

.decorators .decoratorsbx {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.decorators .decoratorsbx .decorbxleft {
  background-color: #000;
  padding: 80px 40px;
  color: #fff;
  position: relative;
}

.decorators .decoratorsbx .decorbxleft .titd {
  color: #D2A061;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 20px;
  position: relative;
}

.decorators .decoratorsbx .decorbxleft .titd::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  margin: auto;
  background-color: #b89241;
  width: 60px;
  height: 2px;
}

.decorators .decoratorsbx .decorbxleft p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 20px;
}

.decorators .decoratorsbx .decorbxright {
  margin-top: 50px;
}

.decorators .decoratorsbx .decorbxright img {
  max-width: 100%;
  height: auto;
  margin-left: -25px;
  z-index: 99;
}

/* Responsive Styles */
@media (min-width: 320px) and (max-width: 767px) {
	.decorators .decoratorsbx .decorbxleft::after {
	display: none;
}
  .decorators .decoratorsbx .decorbxleft {
    padding: 40px;
  }

  .decorators .decoratorsbx .decorbxright {
    margin-top: 0;
  }

  .decorators .decoratorsbx .decorbxleft .titd {
    font-size: 22px;
    line-height: 32px;
  }

  .decorators .decoratorsbx .decorbxleft p {
    font-size: 14px;
  }
}
.decorators .decoratorsbx .decorbxleft::after {
	height: 52px !important;
}

.cta-bt {
  border: solid 1px #FFF;
  background-color: black;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.cta-bt:hover {
  background-color: #D2A061;
  color: #000;
  border-color: #D2A061;
}
