@font-face {
  font-family: "primary-regular";
  src: url("../fonts/regular-font.otf");
}

@font-face {
  font-family: "regular-font";
  src: url("../fonts/jost-regular.ttf");
}

@font-face {
  font-family: "semi-bold";
  src: url("../fonts/jost-semibold.ttf");
}

@font-face {
  font-family: "bold-font";
  src: url("../fonts/jost-bold.ttf");
}

:root {
  --var-regular-font-: "primary-regular";
  --var-primay-regular-font-: "regular-font";
  --var-primary-semi-bold-font-: "semi-bold";
  --var-primary-bold-font-: "bold-font";
  --var-primary-color-: #cc9966;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: var(--var-regular-font-);
}
body{
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: #000;
}

.ptb70 {
  padding: 70px 0px;
}
.pt70 {
  padding-top: 70px;
}
.pb70 {
  padding-bottom: 70px;
}
.custom-container {
  /* max-width: 1320px; */
  margin: 0px auto;
}
header {
  background-color: #000;
  padding: 15px 0px;
}

p {
  padding: 0px;
  margin: 0px;
}

.header-text {
  color: #fff;
  text-align: end;
}
.header-text a {
  color: #fff;
}
.header-text h3 a {
  font-family: var(--var-primary-semi-bold-font-);
}
.header-text h3{
    font-size: 20px;
    width: fit-content;
}
.header-text p{
  width: fit-content;
}
.header-wrapper{
  align-items: center;
  justify-content: end;
}
.socal-media {
  display: flex;
  column-gap: 10px;
  justify-content: end;
}
.social-icon {
  height: 45px;
  width: 45px;
  background-color: #353535;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.social-icon i {
  font-size: 18px;
}
.banner-sec {
  position: relative;
}
.banner-sec h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 63px;
  font-family: var(--var-primay-regular-font-);
  color: var(--var-primary-color-);
  width: 100%;
  text-align: center;
}
.about-img-wrapper-bg {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 10px;
  padding: 10px;
}

.about-img-wrapper {
  width: 100%; /* Make each grid item take full space */
}

.about-img {
  position: relative;
  width: 100%; /* full width of grid cell */
  height: 150px;
  overflow: hidden;
  transition: 0.3s;
}

.about-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-img-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #29292985;
  align-items: end;
  justify-content: center;
  padding: 15px;
  left: 0;
  top: 0;
  display: none;
  transition: 0.3s;
}

.about-img-overlay img {
  width: 24px;
  height: auto;
}

.about-img:hover .about-img-overlay {
  display: flex;
}

.about-text h2 {
  font-family: var(--var-primay-regular-font-);
  font-size: 30px;
  color: #cc9966;
}

.about-text p {
  font-size: 17px;
  text-align: justify;
}
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.luxuy-text h3 {
  color: #cc9966;
  font-size: 30px;
  font-family: var(--var-primay-regular-font-);
}
.luxuy-text p {
  font-size: 17px;
  text-align: justify;
}


.luxuy-text span{
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.location-text h3 {
  font-size: 30px;
  /* font-family: var(--var-primary-semi-bold-font-); */
}

.map-sec iframe {
  width: 100%;
}

.project-sec {
  padding-top: 100px;
}
.project-sec p{
  font-family: var(--var-primay-regular-font-);
  color: #cc9966;
  font-size: 24px;
}

.project-box {
  padding: 25px;
  background-color: #cc9966;
  border-radius: 10px;
  height: 100%;
}

.project-box h4 {
  font-family: var(--var-primary-semi-bold-font-);
  color: #fff;
  font-size: 20px;
  text-align: center;
  padding-top: 25px;
}
.project-box ul {
  list-style: none;
  padding-left: 0px;
  padding-top: 10px;
}
.project-box li {
  display: flex;
  font-size: 17px;
}
.project-box li i {
  padding-top: 5px;
  font-size: 13px;
  padding-right: 5px;
}

.process-head h3 {
  font-size: 30px;
  font-family: var(--var-primay-regular-font-);
  text-align: center;
  color: #cc9966;
}

.process-head h1 {
  font-size: 45px;
  font-family: var(--var-primay-regular-font-);
  text-align: center;
  color: #cc9966;
}

.process-icon {
  width: 108px;
  height: 105px;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: 20px;
}

.process-icon img {
  width: 49px;
}
.process-icon::before {
  height: 100%;
  width: 100%;
  border: 5px solid #e6e6e6;
  content: "";
  position: absolute;
  left: -12%;
  top: -14%;
  z-index: -1;
}

.process-text {
  text-align: center;
  padding-top: 25px;
}

.process-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px;
}
.process-text p {
  font-size: 17px;
}
.process-text h6 {
  font-size: 22px;
  color: #cc9966;
}

.process-sec {
  position: relative;
}
.process-sec::before {
  content: "";
  height: 1px;
  background-color: #000;
  position: absolute;
  width: 53%;
  left: 50%;
  top: 51%;
  transform: translate(-50%, 0%);
  z-index: -3;
}
.process-icon-wrapper {
  background-color: #fff;
  padding: 20px;
  position: relative;
  z-index: -2;
}

.form-inner {
  position: relative;
}
.form-sec-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0%;
  top: 0%;
}
.form-text {
  padding-left: 100px;
  color: #fff;
}
.form-text span {
  font-size: 18px;
  color: #cc9966;
}
.form-text h2 {
  color: #cc9966;
  font-family: var(--var-primay-regular-font-);
  letter-spacing: 0.05em;
  font-size: 38px;
}

.form-text p {
  font-size: 18px;
  padding-bottom: 40px;
}

.form-text a {
  color: #cc9966;
  text-decoration: none;
  font-size: 18px;
  font-family: var(--var-font);
  letter-spacing: 0.05em;
}
.form-wrapper {
  padding: 50px 30px;
  background-color: #000;
  width: 100%;
  /* position: relative; */
}
.enquiry-form-wrapper {
  padding-right: 100px;
  width: 100%;
  position: relative;
  z-index: 12;
  width: fit-content;
}
.form-wrapper h2 {
  color: #fff;
  font-family: var(--var-primay-regular-font-);
  font-size: 40px;
}
.enquiry-form input {
  border-radius: 0px;
}
.enquiry-form label {
  color: #fff;
}

.enquiry-form {
  padding-top: 30px;
}
.enquiry-form textarea {
  width: 100%;
  pad: 10px;
}
.submit-btn {
  padding: 10px;
  color: #fff;
  text-align: center;
  background-color: #cc9966;
  border-radius: 0px;
  width: 100%;
  font-size: 16px;
  font-family: var(--var-primary-semi-bold-font-);
  letter-spacing: 0.05em;
  display: block;
  transition: 0.3s;
}
.submit-btn:hover {
  color: #cc9966;
  background-color: #fff;
  transition: 0.3s;
}
.form-wrapper::before {
  content: "";
  height: 120%;
  width: 80%;
  position: absolute;
  left: 10%;
  top: -10%;
  border: 10px solid #fff;
  z-index: -1;
}

.footer {
  padding: 30px 0px 70px 0px;
  background-color: #000;
  margin-top: 50px;
}
.footer-text {
  color: #fff;
  text-align: center;
}
.footer-text a {
  color: #fff;
}
.footer-tex img {
  padding-bottom: 10px;
}

.luxuy-text p:nth-of-type(2) {
  padding-top: 20px;
}
.location-text p:nth-of-type(2) {
  padding-top: 20px;
}
.footer-text span{
    text-align: center;
    display: block;
    color: #cc9966;
    font-family: var(--var-primay-regular-font-);
    font-size: 26px;
    padding-top: 20px;
}

.footer-text img{
    text-align: center;
}

.footer-text p{
    font-size: 20px;
}

@media (max-width: 1200px) {
  .form-wrapper::before {
    content: "";
    height: 108%;
    width: 80%;
    position: absolute;
    left: 10%;
    top: -4%;
    border: 10px solid #fff;
    z-index: -1;
  }
}

@media (max-width: 992px) {
  .banner-sec h1 {
    font-size: 40px;
  }
  .about-text h2 {
    font-size: 24px;
  }
  .about-text p {
    font-size: 15px;
  }
  .about-text {
    justify-content: center;
  }
  .about-img {
    height: 130px;
  }
  .luxuy-text h3 {
    font-size: 30px;
  }

  .luxuy-text p:nth-of-type(2) {
    padding-top: 0px;
  }
  .location-text p:nth-of-type(2) {
    padding-top: 10px;
  }
  .location-text h3 {
    font-size: 24px;
  }
  .process-sec::before {
    top: 46%;
  }
  .project-box h4 {
    font-size: 15px;
  }
  .process-head h1 {
    font-size: 40px;
  }
  .process-box {
    padding: 0px 0px;
  }
  .process-text p {
  font-size: 15px;
}
.process-text h6 {
  font-size: 18px;
  color: #cc9966;
}
  .form-text {
    padding-left: 0px;
  }
  .form-text h2 {
    font-size: 25px;
  }
  .form-text p {
    font-size: 18px;
    padding: 0px 0px;
  }
  .enquiry-form-wrapper {
    padding-right: 0px;
  }
  .form-sec-inner {
    position: relative;
    padding-top: 20px;
  }
  .form-text {
    color: #000;
  }
  .form-text a {
    padding-top: 20px;
    display: block;
    padding-bottom: 20px;
  }
  .form-wrapper::before {
    content: none;
  }
  .form-wrapper h2 {
    font-size: 32px;
  }
  .form-wrapper {
    padding: 30px 30px;
  }
  .luxuy-text {
    padding-right: 0px;
  }
  .project-box {
  padding: 10px;
  }
  .project-box li{
    font-size: 15px;
  }
  .justify-content-end{
    justify-content: center !important;
  }
}

@media (max-width: 767px) {
  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 15px;
  }
  .socal-media {
    justify-content: center;
  }
  .header-text {
    text-align: start;
  }
  .ptb70 {
    padding: 50px 0px;
  }

  .flex-row-reverses {
  flex-direction: column-reverse;
}
.header-text h3{
  padding: 0px;
}
  .banner-sec h1 {
    font-size: 30px;
  }
  .luxury-sec img{
    width: 100%;
  }
  .luxuy-text{
    padding-top: 20px;
  }
  .project-sec {
  padding-top: 70px;
}

.project-box{
    margin: 0px 20px;
}
.process-head h1 {
    font-size: 30px;
  }
  .process-head h3 {
  font-size: 25px;
  }
   .process-box {
    padding: 0px 50px;
  }
    .process-sec::before {
        content: none;
    }
     .form-text p {
    font-size: 15px;
     }
     .project-sec p{
      font-size: 18px;
     }
     .header-wrapper{
  justify-content: center;
}
}


@media (max-width : 576px) {
    .header-text {
    text-align: center;
  }
    .socal-media {
    justify-content: center;
  }
  .logo{
    padding-bottom: 15px;
  }
   .banner-sec h1 {
    font-size: 23px;
  }
   .about-text h2 {
    font-size: 18px;
    padding-top: 15px;
  }
  .about-text p {
    font-size: 14px;
  }
  .luxuy-text p {
  font-size: 14px;
  padding-bottom: 10px;
}
.luxuy-text h3 {
    font-size: 24px;
  }
   .project-sec {
    padding-top: 50px;
  }
   .project-box {
    margin: 0px 0;
  }
  .process-head h3 {
    font-size: 20px;
  }
  .process-head h1 {
    font-size: 24px;
  }
  .pt70 {
  padding-top: 50px;
}
.process-box {
    padding: 0px 10px;
  }
   .form-text p {
    font-size: 14px;
  }
  .enquiry-form {
  padding-top: 0px;
}
 .form-wrapper h2 {
    font-size: 24px;
  }
  .form-wrapper {
    padding: 20px 20px;
  }
  .social-icon {
  height: 35px;
  width: 35px;
  }
  .header-text h3{
    font-size: 20px;
  }

  .flex-sm-columns{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .project-sec p {
    font-size: 16px;
  }

   .about-img {
    height: 100px;
  }
  .form-text h2 {
    font-size: 20px;
  }
  .row-gap-xs-4{
    row-gap: 20px;
  }
}