@import url("https://fonts.googleapis.com/css2?family=KoHo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Prosto+One&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}
body {
  overflow-x: hidden;
}
:root {
  --primary-color: #161616;
  --secondary-color: rgb(252, 252, 252);
  --alternative-color: #ff964d;
}

p {
  font-weight: 500;
}

.sec_padding {
  padding: 90px 0 90px;
}

.the-villas p {
  font-family: "PT Sans", sans-serif;
}

.sub-heading {
  font-size: 50px;
  font-weight: 400;
}
.sec_title.line::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  left: -20px;
  background: linear-gradient(
    90deg,
    rgba(255, 214, 77, 1) 37%,
    rgba(255, 150, 77, 1) 52%
  );
}
.img-fluid {
  object-fit: cover;
}

.sec_title {
  font-family: "PT Sans", sans-serif;
  font-size: 36px;
  /* font-family: "KoHo", sans-serif; */
  font-weight: 700;
  position: relative;
}
.main_title {
  font-family: "PT Sans", sans-serif;
  font-size: 44px;
  /* font-family: "KoHo", sans-serif; */
  font-weight: 700;
  position: relative;
}
.sub_heading {
  font-family: "PT Sans", sans-serif;
  color: var(--alternative-color);
}
.swiper-pagination-bullet {
  width: 6px;
  height: 10px;
  transition: all 0.4s;
  border-radius: 0 !important;
  background-color: white;
  margin: 0 5px !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--alternative-color);
  width: 6px;
  height: 16px;
}
/* header  */

.header {
  padding: 5px 0;
  background-color: #161616;
  position: static;
  width: 100%;
  z-index: 999;
}
.header.active {
  position: fixed;
  background-color: #161616c2;
  backdrop-filter: blur(3px);
  animation: slideDown 0.5s ease forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
header .nav-links {
  gap: 40px;
  list-style: none;
  align-items: center;
}
header .nav-links li a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: all 0.4s;
}
.logo img {
  width: 200px;
}
header .nav-links li a::before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: var(--alternative-color);
  height: 1px;
  bottom: -5px;
  transform: scaleX(0);
  transition: all 0.4s;
}
header .nav-links li a:hover {
  color: var(--secondary-color);
}
header .nav-links li a:hover::before {
  transform: scaleX(1);
}

/* end of header css  */

/* button styling  */

.outline-btn {
  display: inline-block;
  padding: 12px 14px;
  text-decoration: none;
  background-color: #161616;
  color: white;
  text-transform: uppercase;
  font-weight: 500;
  margin: 24px 0;
  transition: 0.3s all;
  position: relative;
}
.outline-btn span {
  position: relative;
  left: -2px;
  top: -4px;
  transition: 0.3s all;
}
.outline-btn::before {
  content: "";
  position: absolute;
  border: 1px solid rgb(102, 102, 102);
  width: 100%;
  height: 100%;
  top: -4px;
  left: -4px;
  opacity: 1;
  transition: 0.3s all;
}
.outline-btn:hover {
  background-color: #0c0c0c;
}
.outline-btn:hover span {
  position: relative;
  left: 0;
  top: 0;
}
.outline-btn:hover::before {
  opacity: 0;
  top: 0;
  left: 0;
  transition: 0.3s all;
}

/* end of button styling  */

/* menu bar icon  */

.menu-button {
  display: none;
  z-index: 99;
  position: relative;
  padding: 14px 0;
}
.menu-button label {
  display: flex;
  flex-direction: column;
  width: 30px;
  cursor: pointer;
}

.menu-button label span {
  background: var(--secondary-color);
  border-radius: 10px;
  height: 3px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.menu-button span:nth-of-type(1) {
  width: 50%;
}

.menu-button span:nth-of-type(2) {
  width: 100%;
}

.menu-button span:nth-of-type(3) {
  width: 75%;
}

.menu-button input[type="checkbox"] {
  display: none;
}

.menu-button input[type="checkbox"]:checked ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(5px, 0px);
}

.menu-button input[type="checkbox"]:checked ~ span:nth-of-type(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
}

.menu-button input[type="checkbox"]:checked ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(13px, -5px) rotatez(45deg);
}

/* end of menubar css  */

.ForMobile {
  display: none !important;
}

.hero-section {
  background-color: var(--secondary-color);
  position: relative;
  padding: 55px 0 0;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://img.freepik.com/premium-vector/architecture-line-background-building-construction-sketch-vector-abstract-modern-city-3d-project-technology-geometric-grid-wire-blueprint-house-digital-architect-innovation-wireframe_518816-1507.jpg?w=826);
  background-repeat: no-repeat;
  opacity: 0.05;
  background-position: center;
  background-size: cover;
}

.hero-section .swiper {
  max-height: 600px;
  margin-bottom: -80px;
}

.hero-section .swiper .swiper-button-prev,
.hero-section .swiper .swiper-button-next {
  background-color: #161616cc;
  padding: 30px;
}
.hero-section .swiper .swiper-button-prev {
  top: initial;
  bottom: 0;
  right: 140px;
  left: initial;
}
.hero-section .swiper .swiper-button-next {
  top: initial;
  bottom: 0;
  right: 75px;
  left: initial;
}

.hero-section .swiper-button-prev:after,
.hero-section .swiper-button-next:after {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.705);
}

/* the villas styling  */

.the-villas {
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}

.the-villas .swiper-wrapper .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: transparent;
  position: relative;
  border: none;
}

.the-villas .swiper-wrapper .card {
  width: 90%;
  margin: auto;
}
.the-villas .horizontal-scroll-wrapper .card::before,
.the-villas .swiper-wrapper .card::before {
  content: "";
  position: absolute;
  width: 103%;
  height: 107%;
  border: 1px solid #ff974d9a;
  border-bottom: none;
  top: -12px;
  left: -12px;
  z-index: -1;
}

.the-villas .swiper-wrapper {
  padding: 40px 0;
}
.the-villas .swiper-villa {
  overflow: hidden;
}
.the-villas .swiper-button-next {
  position: absolute;
  right: 60px;
  top: 60%;
  transition: all 0.3s;
}

.the-villas .swiper-button-prev {
  position: absolute;
  left: 60px;
  top: 60%;
  transition: all 0.3s;

}

.the-villas .swiper-button-prev:after,
.the-villas .swiper-button-next:after {
  color: var(--alternative-color);
  font-size: 30px;
  filter: drop-shadow(5px 5px 10px #ff964d);

  
}
.the-villas .swiper-button-prev:hover,
.the-villas .swiper-button-next:hover {
transform: scale(1.2);

  
}

.the-villas .swiper-wrapper .card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -27px;
  left: -12px;
  background-image: url(./images/line_sqft_top.png);
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: 1;
}
.the-villas .swiper-wrapper .card img {
  width: 350px;
  height: 100%;
  margin-left: -15px;
  object-fit: cover;
  border-bottom: 1px solid #ccc;
}
.the-villas .swiper-pagination {
  margin-bottom: 30px;
}

.the-villas .swiper-wrapper .card p {
  margin: 10px 0 6px;
  font-size: 24px;
  font-weight: 700;
  color: var(--alternative-color);
  text-align: center;
}
.the-villas .swiper-wrapper .card ul {
  list-style: none;
  color: rgba(255, 255, 255, 0.815);
  padding-left: 0;
  text-align: center;
}

.highlights {
  background-color: var(--secondary-color);
}
.highlights .sub_heading {
  color: var(--primary-color);
  position: relative;
  width: fit-content;
}
.highlights .card-wrapper {
  /* box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset; */
  padding: 30px 40px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background-color: rgb(248, 248, 248);
  display: flex;
}
.highlights .cards p {
  font-size: 13px;
  font-weight: 400;
}
.highlights .cards img {
  width: 85px;
  height: 60px;
  object-fit: contain;
}
.highlights .sticky-col {
  position: sticky;
  height: 100%;
  top: 180px;
}
.community {
  position: relative;
}
.community .community-img {
  width: 100%;
}
.community .content {
  position: absolute;
  width: 100%;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}
.community .content h2 {
  text-align: center;
}
.extraordinary-priviliges {
  background-color: var(--primary-color);
}
.extraordinary-priviliges h2 {
  color: var(--secondary-color);
}
.extraordinary-priviliges ul {
  list-style: none;
  padding-left: 0;
}
.extraordinary-priviliges ul li {
  padding: 6px 0;
  display: flex;
  align-items: top;
  color: var(--secondary-color);
}
.extraordinary-priviliges ul li p {
  margin-bottom: 0;
}
.extraordinary-priviliges ul li img {
  width: 20px;
  object-fit: contain;
  margin-right: 10px;
}

.location {
  background-color: var(--secondary-color);
}

.location .content {
  padding: 70px;
}
.location .img-container {
  width: 100%;
  height: 100vh;
}
.location .img-container img {
  height: 100vh;
}
.location .sticky-col {
  position: sticky;
  height: 100%;
  top: 0;
}

.location .swiper-2 {
  max-height: 600px;
}

.location .swiper-2 .swiper-button-prev,
.location .swiper-2 .swiper-button-next {
  background-color: #161616cc;
  padding: 26px;
}
.location .swiper-2 .swiper-button-prev {
  top: initial;
  bottom: 0;
  right: 100px;
  left: initial;
}
.location .swiper-2 .swiper-button-next {
  top: initial;
  bottom: 0;
  right: 45px;
  left: initial;
}

.location .swiper-button-prev:after,
.location .swiper-button-next:after {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.705);
}

/* contact form styling  */

#contact {
  background: linear-gradient(
    156deg,
    rgba(241, 241, 241, 1) 0%,
    rgba(255, 255, 254, 1) 60%
  );
}

.contact .contact-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.phone-sec .country-code {
  width: 20% !important;
  border: none !important;
  top: 1px;
  background-color: transparent;
  border-right: 1px solid #e1e1e1;
}

.iti {
  position: absolute;
  width: 20% !important;
}

input:focus {
  box-shadow: none !important;
}

.form__select select {
  height: 50px;
  margin-top: 10px;
}
.form__select select:focus {
  box-shadow: none !important;
}

.input-group > .form-control,
.input-group > .form-floating,
.input-group > .form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--alternative-color);
  border-radius: 0px;
}
.input-group #phone {
  color: black;
}

.phone-sec .phn-num {
  width: 100% !important;
  height: 40px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--alternative-color);
  padding-left: 110px !important;
  outline: 0 !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 1px;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
  border-right: 1px solid #d5d5d5;
  padding: 0 11px 0 8px;
}

.iti__arrow {
  opacity: 0;
}
.select2-container .select2-selection--single {
  height: 50px !important;
  padding-left: 16px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 47px;
  color: #757575;
  font-family: var(--Manrope);
  font-size: 14px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 12px;
  right: 12px;
  width: 21px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #888 transparent transparent;
  border-style: solid;
  border-width: 10px 6px 0 7px;
}

.flag-icon.flag-icon-squared {
  width: 1em;
  margin-right: 8px;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: -1px;
  right: 0;
  padding: 0 !important;
}

.select2-search__field:focus-visible {
  outline: 0 !important;
}

.select2-search--dropdown .select2-search__field {
  padding: 8px;
  width: 100%;
  box-sizing: border-box;
}



/* ==================== Footer Start ==================== */
.innerFooter {
  background: #000;
  color: #fff;
}

.innerFooter p {
  font-size: 15px;
  line-height: 1.5;
}

.footerlogo {
  width: 100px !important;
}


/* 
.inner-footer {
  background-color: var(--primary-color);
  padding: 50px 0 30px;
  color: var(--secondary-color);
  position: relative;
}
.inner-footer h3 {
  font-size: 20px;
}
.inner-footer a,
.inner-footer p {
  color: gainsboro;
  font-size: 13px;
}
.inner-footer a {
  padding-right: 6px;
}
.inner-footer .footer-logo {
  width: 150px;
}
.inner-footer p {
  margin-bottom: 6px;
}
.inner-footer .credai-img {
  width: 130px;
}
.inner-footer .copyright {
  position: relative;
}
.inner-footer .copyright::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  top: 8px;
  background-color: rgba(220, 220, 220, 0.158);
} */

/* modal styling  */

.close-btn {
  position: absolute;
  top: -30px;
  right: -30px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  background-color: var(--alternative-color);
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  z-index: 999;
}

.modal-body {
  background-color: #eae8e5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

/* side form styling  */

.request-btn {
  position: fixed;
  background: #bcaf80;
  right: -44px;
  top: 47%;
  transform: rotate(90deg) translateY(-50%);
  z-index: 2;
  color: #000;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s linear;
}
.request-btn.active {
  right: 330px;
  background: #ffdc09;
}
.request-btn:hover {
  color: #fff;
  background: #000;
}
.Sideform .close {
  color: #000;
  position: absolute;
  top: -30px;
  left: -15px;
  background: #fff;
  height: 30px;
  width: 30px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border: 0px;
  box-shadow: 0 0 15px #00000047;
  opacity: 0;
}
.Sideform.active .close {
  opacity: 1;
}
.Sideform input {
  font-size: 14px;
}
.Sideform input::placeholder {
  color: #fff !important;
}
.Sideform select {
  color: #fff !important;
  font-size: 14px;
}
.Sideform .iti--separate-dial-code .iti__selected-dial-code {
  color: #fff;
}

.Sideform {
  width: 375px;
  background: #000000d3;
  /* background-image: url(./images/img349.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
  backdrop-filter: blur(5px);
  padding: 25px;
  position: fixed;
  right: -380px;
  top: 55%;
  transform: translateY(-50%);
  border-radius: 10px;
  background-blend-mode: color;
  transition: all 0.3s linear;
  z-index: 12;
}
.Sideform.active {
  right: 0;
}
.Sideform .text-yellow {
  color: var(--yellow);
}
.Sideform .btn {
  font-size: 16px;
  margin: 20px auto;
  display: block;
}
.Sideform .form-floating > .form-control,
.Sideform .form-floating > .form-control-plaintext,
.Sideform .form-floating > .form-select {
  height: calc(3rem + 2px);
  line-height: 1.25;
  padding: 1.25rem 0.75rem 0.5rem;
  background: #ffffff45;
  color: #fff;
  border: 0px;
  backdrop-filter: blur(3px);
  font-size: 14px;
}
.Sideform .form-floating > label {
  padding: 0.5rem 0.75rem;
  color: #fff;
  font-size: 15px;
}
.request-btn {
  position: fixed;
  background: var(--primary-color);
  right: -44px;
  top: 47%;
  transform: rotate(90deg) translateY(-50%);
  z-index: 2;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s linear;
}
.request-btn.active {
  right: 330px;
  background: var(--primary-color);
}
.request-btn:hover {
  color: #fff;
  background: var(--alternative-color);
  color: var(--primary-color);
}


/* sticky_contact for mobile   */

.sticky_contact {
  display: none;
}

#phone_error, #email_error{
  font-size: 13px;
  color: red;
  margin-top: 5px;
}

@media all and (max-width: 992px) {
  .location .img-container {
    width: 100%;
    height: 100vh;
    max-height: 700px;
  }
  .location .img-container img {
    height: 100vh;
    max-height: 700px;
  }
  .sticky_contact {
    display: block;
    background: #ff964d;
    width: 100vw;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9;
    padding: 7px 2px;

  }

  .sticky_contact ul.list-styled {
    /* justify-content: center; */
    margin-bottom: 0 !important;
  }

  .sticky_contact ul.list-styled li {
    margin: 0 24px;
    padding: 6px 5px;
    border: 0;
    font-size: 16px;
    min-width: 108px;
    text-align: center;
    list-style: none;
    margin-bottom: 0;
    text-decoration: none;
  }
  .sticky_contact ul.list-styled li a {
    text-decoration: none;
  }
  .sticky_contact ul.list-styled li:first-child {
    border-right: 1px solid #fff;
    padding-right: 30px;
    margin-right: 0;
  }
}


.connect-icon {
  position: fixed;
  cursor: pointer;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  z-index: 99;
}

.connect-icon img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .ForDesktop {
    display: none;
  }
  .ForMobile {
    display: block !important ;
  }

  .menu-button {
    display: flex;
    justify-content: flex-end;
    width: fit-content;
    padding-right: 10px;
  }

  .header.active {
    position: fixed;
    background-color: #161616f5;
    backdrop-filter: none;
    animation: slideDown 0.5s ease forwards;
  }
  .connect-icon {
    display: none;
  }
  .nav-links {
    position: fixed;
    visibility: hidden;
    transition: all 0.7s;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    opacity: 0;
    left: 30%;
    right: 0;
    top: 0;
    background: #161616d3;
    backdrop-filter: blur(10px);
    z-index: 99;
    padding-top: 25%;
    transform: translateX(100%);
    list-style: none;
    transition: all 0.6s;
  }

  .nav-links.active {
    visibility: visible;
    opacity: 1;
    height: 100vh;
    transform: translateX(0%);
  }

  .nav-links li {
    padding: 6px;
  }

  .nav-links li a {
    font-size: 20px;
    font-weight: 200;
  }

  .nav-links.active li a:hover {
    transform: translateX(100%);
  }

  .sec_padding {
    padding: 40px 0 40px;
  }
  .community .community-img {
    height: 450px;
    object-fit: cover;
  }
  .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .hero-section {
    background-color: var(--secondary-color);
    position: relative;
    padding: 36px 0 0;
  }
  .sec_title {
    font-family: "PT Sans", sans-serif;
    font-size: 23px;
    /* font-family: "KoHo", sans-serif; */
    font-weight: 700;
    position: relative;
  }
  .main_title {
    font-family: "PT Sans", sans-serif;
    font-size: 30px;
    /* font-family: "KoHo", sans-serif; */
    font-weight: 700;
    padding-bottom: 14px;
    position: relative;
  }
  .sec_title.line {
    margin-left: 16px;
  }
  .hero-section .swiper {
    max-height: 400px;
    margin-bottom: -35px;
  }
  .hero-section .swiper {
    width: 100%;
    object-fit: cover;
  }
  .logo img {
    width: 170px;
  }
  .sticky-col {
    position: static !important;
  }
  .header {
    padding: 10px 0;
}

  .highlights .card-wrapper {
    /* box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset; */
    padding: 30px 30px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background-color: rgb(248, 248, 248);
    display: flex;
  }

  .highlights .cards img {
    width: 60px;
    height: 50px;
    object-fit: contain;
  }
  .location .content {
    padding: 30px;
  }

  .location .img-container {
    width: 100%;
    height: auto;
  }
  .location .swiper-slide img {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  .location .img-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  .contact .contact-img {
    height: 300px;
  }

  .location .swiper-2 .swiper-button-prev {
    top: initial;
    bottom: 0;
    right: 70px;
    left: initial;
  }
  .location .swiper-2 .swiper-button-next {
    top: initial;
    bottom: 0;
    right: 15px;
    left: initial;
  }
  .hero-section .swiper-button-next ,
  .hero-section .swiper-button-prev {
   display: none;
  
  }

  .the-villas .swiper-button-next ,
  .the-villas .swiper-button-prev {
   display: none;
  
  }
}

@media all and (max-width: 578px) {
  .location .content {
    padding: 40px 14px;
  }
  html,
  body {
    overflow-x: hidden;
  }
}




#autoPopup .row {
    border-radius: 10px;
}

#autoPopup .right-col {
    background: #eae8e5;
}

#autoPopup .right-col .modal-content {
    border: none;
}
#autoPopup .img-container{
  height: 100%;
}
#autoPopup .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
    #autoPopup .img-container {
        max-height: 35vh;
        min-height: 250px;
    }

    #autoPopup .row {
        position: relative;
        padding: 14px;
    }

    #autoPopup .modal-content {
        position: static;
    }

    #autoPopup .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.about-form-sec input::placeholder{
  color: #fff;
}
.about-form-sec .iti--separate-dial-code .iti__selected-dial-code {
    color: #aeaeae;
}
.about-form-sec  h2{
  color:#ff964d;
}
.amenities-box .amenities-title{
  font-size: 20px;
  font-weight: 600;
}
.amenities-box .sub-head-2{
  font-size: 14px;
  margin-bottom: 0;
}
.amenities-box{
      text-align: center;
    padding: 30px;
    border-radius: 8px;
    border: 3px solid #e8e8e8;
    background-color: #00000003;
    min-height:205px;
}
.amenities-box img{
      height: 70px;
    width: 70px;
    padding: 5px;
}
.amenities-box:hover{
    background-color: #1c1919;
    border: 3px solid #000000;
}
.amenities-box:hover img{
  border-radius: 555px;
  background-color: #fff;

}
.amenities-box:hover .sub-head-2, .amenities-box:hover .amenities-title{
  color: #fff ;
}

@media(max-width:599px){
  .amenities-box{
    padding: 20px;
  }
}