/* Font Family ***********************************************************************/
@font-face {
  font-family: "Futura";
  src: url("../fonts/Futura/FuturaCyrillicMedium.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Futura-Bk-Bt";
  src: url("../fonts/Futura-Bk-Bt-Book/Futura-Bk-BT-Book.ttf");
  font-display: swap;
}

@font-face {
  font-family: "Futura-Md-BT";
  src: url("../fonts/Futura-Md-BT/Futura-Md-BT-Medium.ttf");
  font-display: swap;
}

/* common css ******************************************************************************/
:root {
  --white: #ffffff;
  --black: #000000;
  --peach: #f6af96;
  --navy: #1f2f43;
  --gray-70: #707070;
  --gray-ad: #adadad;
  --gray-77: #777777;
  --gray-64: #646464;
  --jet-black: #000003;
  --gold: #dba426;
}

.white {
  color: var(--white);
}

.black {
  color: var(--black);
}

.peach {
  color: var(--peach);
}

.gold {
  color: var(--gold);
}

.jet-black {
  color: var(--jet-black);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}

body {
  font-family: "Futura-Bk-Bt";
  background-color: var(--jet-black);
  color: var(--white);
}

body.show {
  position: fixed;
  top: 0;
  width: 100%;
}

h1,
h2 {
  font-family: "Futura";
}

h3,
h4,
h5,
h6 {
  font-family: "Futura-Md-BT";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1 {
  font-size: 58px;
}

h2 {
  font-size: 50px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 22px;
}

p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0;
}

.small {
  font-size: 16px;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}

span {
  display: inline-block;
}

.section-heading {
  /* text-align: center; */
  margin-bottom: 50px;
}

.section-heading h2 {
  text-transform: uppercase;
  letter-spacing: 5px;
}

.section-heading h2:not(:last-of-type) {
  margin-bottom: 25px;
}

.btn-common {
  font-family: "Futura-Md-BT";
  font-size: 18px;
  padding: 10px 20px;
  background: transparent;
  color: var(--white);
  border-radius: 10px;
  border: 1px solid var(--peach);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.btn-common:hover {
  background-color: var(--peach);
  color: var(--navy);
}

.btn-common img,
.btn-gray img {
  max-width: 30px;
  margin-right: 10px;
}

.btn-gray svg {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease-in-out;
}

.btn-gray:hover svg {
  fill: var(--navy);
  transform: rotate(-45deg);
}

.btn-gray {
  font-family: "Futura-Md-BT";
  font-size: 18px;
  color: var(--gray-ad);
  background-color: transparent;
  border: 1px solid var(--gray-77);
  padding: 10px 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease-in-out;
}

.btn-gray:hover {
  background-color: var(--peach);
  color: var(--navy);
}

section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.bg {
  padding: 100px 0;
}

.mobile {
  display: none !important;
}

.desktop {
  display: block !important;
}

img,
video {
  max-width: 100%;
}

.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.owl-theme .owl-dots .owl-dot span {
  background: var(--black);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.owl-nav {
  margin-top: 0;
}

.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.owl-nav button.owl-prev {
  left: 0;
}

.owl-nav button.owl-next {
  right: 0;
}

.form-control-common {
  background: var(--white);
  border: 1px solid var(--black);
  font-size: 20px;
  padding: 15px 50px 15px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black);
  border-radius: 0;
  box-shadow: none;
  resize: none;
  outline: none;
}

.input-group {
  padding-bottom: 30px;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px #000;
}

#header {
  position: relative;
  z-index: 9;
  width: 100%;
  background: transparent;
  padding: 10px 0;
  transition: 0.5s all;
}

#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo-box img {
  max-width: 250px;
  width: 100%;
}

#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}

#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}

#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}

#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}

#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}

#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}

#header .button-box {
  padding-top: 0;
}

#header .main-nav nav {
  display: flex;
  align-items: center;
  gap: 45px;
}

#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
}

#header .main-nav nav ul li:not(:last-child) {
  margin-right: 20px;
}

#header .main-nav nav ul li a {
  font-family: "Futura-Md-BT";
  font-size: 20px;
  color: var(--white);
  padding: 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

#header .main-nav nav ul li.menu-item-has-children>a::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 5px;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 0px 2px 2px 0px;
  border-color: var(--white);
  transform: rotate(45deg);
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}

#header .main-nav nav ul.sub-menu {
  display: none;
  flex-wrap: wrap;
  gap: 0;
  position: absolute;
  left: 5px;
  min-width: 200px;
  background-color: var(--white);
  border: 1px solid #bebebc;
  left: 5px;
}

#header .main-nav nav ul.sub-menu li {
  width: 100%;
}

#header .header-box .main-nav nav ul li.menu-item:hover ul.sub-menu {
  display: flex;
}

#header .main-nav nav ul.sub-menu li a {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  color: var(--black);
}

#header .main-nav nav ul.sub-menu li a:hover {
  background-color: var(--cream);
}

#header .main-nav nav ul li a:hover,
#header .main-nav nav ul li a.active,
#header .main-nav nav ul li.menu-item-has-children>a:hover::after {
  color: var(--peach);
  border-color: var(--peach);
}

/*  */

#header .header-box .main-nav nav ul li.menu-item:hover ul.sub-menu {
  display: flex;
}

#header .header-box .main-nav nav ul.sub-menu {
  min-width: 250px;
  left: 50%;
  transform: translateX(-50%);
}

#header .header-box .main-nav nav ul.sub-menu li a {
  width: 100%;
  font-size: 16px;
  padding: 10px;
  text-transform: uppercase;
}

/* footer css ******************************************************************************/
#footer {
  padding-top: 75px;
  background-color: var(--white);
  color: var(--jet-black);
}

#footer .top-box .logo-box {
  height: 100%;
  display: flex;
  align-self: center;
}

#footer .top-box .logo-box a {
  display: flex;
  align-self: center;
}

#footer .top-box .logo-box img {
  max-width: 170px;
  width: 100%;
  height: 100%;
}

#footer .top-box .box {
  height: 100%;
}

#footer .top-box .info-wrap:not(:last-child) {
  margin-bottom: 15px;
}

#footer .top-box .info-wrap a,
#footer .top-box .info-wrap p {
  font-size: 18px;
  text-transform: none;
}

#footer .top-box h6 {
  font-family: "Futura-Bk-Bt";
  line-height: 1;
  color: var(--peach);
  margin-bottom: 8px;
}

#footer .top-box .list-box,
#footer .top-box .list-box .menu-menu-1-container {
  height: 100%;
}

#footer .top-box .list-box ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 20px;
}

#footer .top-box .list-box li a {
  font-weight: 500;
}

#footer .top-box a {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

#footer .top-box a:hover {
  color: var(--peach);
}

#footer .top-box .link-box {
  height: 100%;
}

#footer .top-box .link-box ul {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 10px;
  margin-top: 0;
  height: 100%;
}

#footer .top-box .link-box ul img {
  max-width: 40px;
  transition: all 0.3s ease-in-out;
}

#footer .top-box .link-box ul img:hover {
  transform: scale(1.1);
}

#footer .end-box {
  margin-top: 20px;
  padding: 15px 0 15px;
  border-top: 1px solid var(--gray-70);
}

#footer .end-box p {
  text-align: center;
  margin-bottom: 0;
}

#footer .end-box .link-box ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

#footer .end-box .link-box ul li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
  border-right: 2px solid var(--black);
  line-height: 1;
}

/* Custom Banner CSS Start */
.custom-banner {
  margin-top: -75px;
}

/* Custom Banner CSS End */

/* homeBanner css ******************************************************************************/
.home-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 0;
}

.home-banner .banner-box {
  height: 100dvh;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 150px;
}

.home-banner .banner-box .section-heading {
  margin-bottom: 0;
}

.home-banner .banner-box .section-heading h1 {
  font-family: "Futura";
  color: var(--white);
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 7px;
}

.home-banner .banner-box .button-box {
  padding: 0;
}

.home-banner .banner-box .button-box a {
  color: var(--peach);
}

.home-banner .banner-box .button-box a:hover {
  color: var(--navy);
}

/* Homepage About CSS Start ******************************************************************************/
.homepage-about .about-box .row {
  justify-content: space-between;
}

.homepage-about .about-box p {
  color: var(--gray-ad);
  font-size: 24px;
  max-width: 75%;
  margin-bottom: 5px;
}

.homepage-about .about-box .text-box,
.homepage-about .about-box .image-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* Homepage About CSS End ******************************************************************************/

/* We-Do Start ******************************************************************************/
.we-do {
  background: linear-gradient(90deg, #c47e6a 0%, #f4cdb4 100%);
}

.we-do .section-heading h2 {
  color: var(--jet-black);
}

.we-do .we-do-box .box {
  padding: 15px 15px;
  position: relative;
  height: 100%;
  background-color: var(--white);
  text-align: center;
  cursor: default;
  transition: all 0.35s ease;
  overflow: hidden;
  border: 1px solid var(--peach);
  background-color: var(--navy);
}

.we-do .we-do-box .box::after {
  content: "";
  width: 40px;
  height: 4px;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translate(-50%, 0);
  background-color: var(--peach);
}

.we-do .we-do-box .box:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18), 0 6px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--peach);
  background-color: var(--navy);
}

.we-do .we-do-box .box .image-box img {
  /* max-width: 60px; */
  margin: 0 auto;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.we-do .we-do-box .box:hover .text-box h6,
.we-do .we-do-box .box:hover .text-box p {
  color: var(--white);
}

.we-do .we-do-box .box .text-box {
  padding: 20px 0 20px 0;
}

.we-do .we-do-box .box .text-box h6 {
  color: var(--white);
  margin-bottom: 15px;
  transition: all 0.35s ease;
  font-size: 20px;
}

.we-do .we-do-box .box .text-box p {
  color: var(--white);
  font-size: 16px;
  padding-bottom: 20px;
  transition: all 0.35s ease;
}

/* We-Do End ******************************************************************************/

/* Projects Start */

.projects .container {
  overflow: hidden;
  position: relative;
}

.projects .projects-slider .slider-item {
  background-color: var(--white);
  position: relative;
  cursor: pointer;
}

.projects .projects-slider .slider-item a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.projects .projects-slider .slider-item .row {
  gap: 0 !important;
}

.projects .image-box {
  height: 100%;
}

.projects .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.projects .slider-item {
  height: 100%;
}

.projects .slider-item .row {
  height: 100%;
}

.projects .text-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  color: var(--black);
}

.projects .text-box .title h4 {
  color: var(--navy);
}

.projects .text-box .location p {
  color: var(--gray-64);
  text-transform: capitalize;
}

.projects .text-box .project-info-wrap {
  padding-left: 30px;
}

.projects .text-box .project-info-wrap p {
  color: var(--gray-64);
}

.projects .text-box .project-info-wrap p span {
  text-transform: uppercase;
}

.projects .text-box .project-info-wrap p.project-description {
  margin-bottom: 50px;
}

.projects .text-box .project-info-wrap .project-info {
  margin-bottom: 50px;
}

.projects .text-box .project-info-wrap .project-info p {
  text-transform: capitalize;
}

.projects .text-box .project-info-wrap .project-info p:not(:last-child) {
  margin-bottom: 5px;
}

.projects .owl-stage {
  display: flex;
}

.projects .owl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  position: absolute;
  top: 20px;
  right: 10px;
  margin: 0;
}

.projects .owl-nav button {
  position: static;
  background: transparent;
  box-shadow: none;
  border: 0;
  appearance: none;
  transform: none;
}

.projects .owl-nav button svg {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease-in-out;
}

.projects .owl-nav button svg:hover {
  fill: var(--gold);
}

.projects .text-box .location {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}

.projects .text-box .location svg {
  width: 25px;
  stroke: var(--gray-64);
}

/* Projects End */

/* Team Start */
/* .team .box {
  position: relative;
  height: 100%;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
  border: 1px solid var(--black);
  cursor: default;
}

.team .box::after {
  content: "";
  width: 40px;
  height: 4px;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translate(-50%, 0);
  background-color: var(--peach);
}

.team .box:hover {
  background-color: var(--navy);
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18), 0 6px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--peach);
}

.team .box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.team .box .text-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 30px 15px;
}

.team .box .text-box h3 {
  font-family: "Futura";
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.team .box .text-box h6 {
  font-family: "Futura";
  color: var(--navy);
  transition: all 0.3s ease-in-out;
}

.team .box .text-box p {
  color: var(--gray-ad);
  padding-bottom: 25px;
  margin-top: auto;
}

.team .box:hover h3,
.team .box:hover h6 {
  color: var(--white);
}

.team .box {
  display: flex;
  flex-direction: column;
}

.team .box .title-group {
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 15px;
} */

.team {
  background-color: var(--white);
}

.team .quote-box img {
  max-width: 30px;
  margin: 0 auto;
  display: flex;
}

.team p {
  text-align: center;
  line-height: 1.6;
  color: var(--black);
}

.team .info .name {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--white);
  padding: 10px 0;
}

.team .info .img-box {
  max-height: 330px;
  overflow: hidden;
}

.team .info .box h6 {
  text-align: center;
  color: var(--black);
  margin-bottom: 1px;
  font-size: 18px;
}

.team .info .box p {
  color: var(--black);
  text-align: center;
  font-size: 14px;
}

.team .text-box {
  margin-top: -190px;
}

.team .section-heading img {
  width: 100%;
}

/* Team End */

/* Contact Form Start */
.contact .section-heading h2 {
  text-align: center;
}

.common-form {
  max-width: 900px;
  margin: auto;
}

#contact-us .common-form {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* wrapper */
.contact .input-group-full {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
}

/* input + textarea styling */
.contact .input-group-full input,
.contact .input-group-full textarea {
  font-family: "Futura-Md-BT";
  position: relative;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--gray-ad);
  color: #fff;
  padding: 15px 0;
  font-size: 22px;
  text-align: center;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.contact .input-group-full input:hover,
.contact .input-group-full input:active,
.contact .input-group-full input:focus-visible,
.contact .input-group-full textarea:hover,
.contact .input-group-full textarea:active,
.contact .input-group-full textarea:focus-visible {
  border-bottom: 1.5px solid var(--peach);
}

.contact .input-group-full input::placeholder,
.contact .input-group-full textarea::placeholder {
  color: var(--gray-ad);
  font-size: 22px;
  opacity: 1;
  position: relative;
}

.contact .submit-box {
  text-align: center;
  margin-top: 80px;
}

.contact .checkbox-wrapper label {
  font-family: "Futura-Md-BT";
  color: var(--gray-77);
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}

.contact .checkbox-wrapper input {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/* Contact Form End */

/* Project Page CSS Start ******************************************************************************/
/* Project Banner Start */
.project-banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100dvh;
}

.project-banner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, #000000 -10%, rgba(84, 84, 84, 0) 90%);
}

.project-banner video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Project Banner End */

/* Project Detail Start */
.project-detail .text-box {
  position: relative;
  padding-bottom: 20px;
}

.project-detail .underline {
  width: 1000%;
  background-color: var(--gray-ad);
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.project-detail .project-info h4 {
  font-family: "Futura-Bk-Bt";
  text-transform: capitalize;
}

.project-detail .project-info h4 span {
  text-transform: uppercase;
}

.project-detail .project-description {
  color: var(--gray-ad);
  max-width: 90%;
  margin-top: 80px;
  font-size: 30px;
}

.project-detail .button-box {
  /* display: flex;
  justify-content: center; */
  margin-bottom: 20px;
}

.project-detail .button-box .btn-common:hover {
  background-color: transparent;
  transform: translateY(-5px);
}

.project-detail .button-box .btn-common {
  gap: 15px;
  color: white;
}

.project-detail .button-box .btn-common img {
  margin: 0;
}

/* Project Detail End */

/* Amenities Start */
/* .amenities .row {
  row-gap: 30px;
}

.amenities .box {
  position: relative;
  height: 100%;
  background-color: var(--white);
  border: 1px solid transparent;
  padding: 70px 30px 40px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: default;
}

.amenities .box::after {
  content: "";
  width: 40px;
  height: 4px;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translate(-50%, 0);
  background-color: var(--peach);
}

.amenities .box:hover {
  border: 1px solid var(--peach);
  background-color: var(--navy);
}

.amenities .box .image-box {
  margin-bottom: 50px;
}

.amenities .box .image-box img {
  max-height: 80px;
}

.amenities .box .text-box h5 {
  color: var(--jet-black);
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.amenities .box:hover .text-box h5 {
  color: var(--white);
}

.amenities .box .text-box h5 br {
  display: block;
} */

.amenities .amenities-box .image-box {
  height: 100%;
}

.amenities .amenities-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities .amenities-box .text-box {
  width: 100%;
  height: 100%;
  background-color: #f3cdb4;
  display: flex;
  align-items: center;
  justify-self: flex-start;
  padding: 100px 50px;
}

.amenities .amenities-box .text-box ul {
  width: 80%;
}

.amenities .amenities-box .text-box ul li {
  font-family: "Futura-Md-BT";
  font-size: 24px;
  color: var(--jet-black);
  padding: 30px 0;
}

.amenities .amenities-box .text-box ul li:not(:last-child) {
  border-bottom: 1px solid #f4e4dc;
}

/* Amenities End */

/* Advantages Start */
/* .advantage {
  background: linear-gradient(90deg, #C47E6A 0%, #F4CDB4 100%);
}

.advantage .advantage-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.advantage .advantage-box .advantage-item {
  width: calc(20% - 16px);
  background-color: var(--white);
  text-align: center;
  border: 1px solid transparent;
  padding: 60px 30px;
  transition: all 0.3s ease-in-out;
  cursor: default;
}

.advantage .advantage-box .advantage-item:hover {
  border: 1px solid var(--peach);
  background-color: var(--navy);
}

.advantage .advantage-box .advantage-item .image-box {
  margin-bottom: 40px;
}

.advantage .advantage-box .advantage-item .image-box img {
  max-width: 70px;
}

.advantage .advantage-box .advantage-item .text-box h5 {
  color: var(--jet-black);
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}

.advantage .advantage-box .advantage-item:hover .text-box h5 {
  color: var(--white);
} */

.advantage .advantage-box .row {
  margin: 0;
  row-gap: 0;
}

.advantage .advantage-box .image-box {
  height: 100%;
}

.advantage .advantage-box .image-box iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage .advantage-box .text-box {
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-self: flex-start;
  padding: 80px 0 80px 40px;
}

.advantage .advantage-box .text-box ul {
  width: 100%;
}

.advantage .advantage-box .text-box ul li {
  font-family: "Futura-Md-BT";
  font-size: 24px;
  color: var(--jet-black);
  padding: 30px 0;
}

.advantage .advantage-box .text-box ul li:not(:last-child) {
  border-bottom: 1px solid #edd9cf;
}

.advantage .button-box {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.advantage .button-box .btn-common {
  gap: 15px;
  color: white;
}

.advantage .button-box .btn-common img {
  margin: 0;
}

.advantage .button-box .btn-common:hover {
  background-color: transparent;
  transform: translateY(-5px);
}

.advantage .button-box .btn-common:hover span {
  color: white;
}

/* Advantages End */

/* Project Page CSS End ******************************************************************************/

.contact p,
.contact span {
  width: 100%;
  margin: 0;
}

.contact input:focus,
.contact textarea:focus {
  box-shadow: none;
}

.contact button[type="submit"] br {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

.rmp-container {
  /* background-color: ; */
}

/* gallar css start */

.gallary .project-gallary .owl-carousel .owl-item img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.gallary .gallary-slider-popup img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
}

.gallary .gallary-slider-section .owl-nav {
  margin-top: 30px;
}

.gallary .gallary-slider-section .owl-nav button {
  position: static;
  background: transparent !important;
}

.gallary .gallary-slider-section .owl-nav button svg {
  width: 35px;
  height: 35px;
  transition: all 0.3s ease-in-out;
}

/* gallar css end */

.fixed-box {
  position: fixed;
  z-index: 9;
  bottom: 40px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.fixed-box a {
  background-color: var(--peach);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  min-width: 210px;
  animation: floatUpDown 1s ease-in-out infinite;
  font-family: "Futura-Md-BT";
  transition: 0.3s;
}

.fixed-box a svg {
  max-width: 25px;
  fill: var(--navy);
}

.fixed-box a:hover {
  box-shadow: 0px 2px 8px #0000009e;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}

.project-banner .project-banner-slider {
  height: 100dvh;
}

.project-banner .project-banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}