/* =========================================================
   48 CENTRAL PARK - LANDING PAGE CSS
   File: /assets/css/48-central-park.css
========================================================= */

/* =========================================================
   CUSTOM HEADER (LANDING PAGE)
========================================================= */
.page-template-template-48-central-park-landing-page header:not(.cp48-header) {
  display: none !important;
}

/* Main header */
.cp48-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
}

/* Inner container */
.cp48-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.cp48-header-logo img {
  height: 46px;
  width: auto;
  display: block;
}

/* ================= MENU ================= */
.cp48-header-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 28px;
}

.cp48-header-menu a {
  color: #f58634;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  transition: all 0.25s ease;
}

/* underline hover */
.cp48-header-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #f58634;
  transition: 0.3s ease;
}

.cp48-header-menu a:hover::after {
  width: 100%;
}

.cp48-header-menu a:hover {
  opacity: 0.85;
}

/* ================= CTA BUTTON ================= */
.cp48-header-right {
  display: flex;
  align-items: center;
}

a.btn_enq_now-2 {
    color: #F58634;
    font-weight: 700;
    border: 1px solid #F58634;
    padding: 12px 28px;
    border-radius: 5px;
}

.btn_enq_now-2:hover {
  transform: translateY(-1px);
}
.cp48-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #f58634;
}

@media (max-width: 768px) {
  .cp48-menu-toggle {
    display: block;
    margin-left: 110px;
  }
  .btn_enq_now-2{
    display:none;
  }
}
@media (max-width: 768px) {
  .cp48-header-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 0;
    gap: 15px;
  }

  .cp48-header-menu.active {
    display: flex;
  }

  .cp48-header-menu a {
    color: #000;
  }
}
/* =========================================================
   HERO FIX (header overlap avoid)
========================================================= */
.cp48-hero {
  padding-top: 110px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 992px) {
  .cp48-header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cp48-header-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
  }

  .cp48-header-right {
    order: 2;
  }
}

@media (max-width: 560px) {
  .cp48-header {
    padding: 20px 0;
  }

  .cp48-header-logo img {
    height: 38px;
  }

  .cp48-header-menu {
    gap: 14px;
  }

  .cp48-header-menu a {
    font-size: 13px;
  }

  .cp48-header-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}
/* =========================================================
   POPUP
========================================================= */

.cp48-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.cp48-popup.active {
  display: block;
}

.cp48-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

/* Box */
.cp48-popup-box {
  position: relative;
  max-width: 400px;
  margin: 80px auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 26px;
  height: auto;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* Close button */
.cp48-popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* Title */
.cp48-popup-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.cp48-popup-box form .form-group lable{
    font-size: 14px !important;
    line-height: 20px !important;
}

.cp48-popup-box input.wpcf7-form-control.wpcf7-submit{
    width: 320px;
    background-color: #f58634;
    border-color: #f58634;
    color: #fff;
    transition: 1s;
    margin-top: 10px;
    padding:12px 28px;
    justify-self: center;
}
.cp48-landing {
  font-family: inherit;
  color: #0d1b2a;
  background: #ffffff;
}

/* Container */
.cp48-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Common */
.cp48-section {
  padding: 70px 0;
}

.cp48-center {
  text-align: center;
}

.cp48-kicker {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 10px;
}

.cp48-section-title {
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 10px 0;
  font-weight: 800;
}

.cp48-section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(13, 27, 42, 0.15);
  margin-top: 12px;
}

.cp48-h3 {
  font-size: 26px;
  margin: 0 0 16px 0;
  font-weight: 800;
}

.cp48-lead {
  font-size: 16px;
  opacity: 0.85;
  max-width: 860px;
  margin: 0 auto;
}

/* Buttons */
.cp48-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none !important;
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  cursor: pointer;
}

.cp48-btn-primary {
  background: #0d1b2a;
  color: #ffffff !important;
  border: 1px solid #0d1b2a;
}

.cp48-btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.cp48-btn-outline {
    background: transparent;
    color: #ffffff !important;
    border: 1px solid rgb(255 255 255) !important;
    border-radius: 5px;
}

.cp48-btn-outline:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 27, 42, 0.5);
}

.cp48-btn-small {
  padding: 10px 16px;
  font-size: 13px;
}

/* Cards */

.cp48-card-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
}

.cp48-mini {
  font-size: 12px;
  opacity: 0.65;
  margin-top: 12px;
}

/* =========================================================
   HERO
========================================================= */

.cp48-hero {
  position: relative;
  padding: 70px 0;
  min-height: 740px;
  display: flex;
  align-items: center;
  background: url("/wp-content/uploads/2026/02/48-Central_Banners_1.jpeg") center/cover no-repeat;
}

.cp48-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.10));
}

.cp48-hero .cp48-container {
  position: relative;
  z-index: 2;
}

.cp48-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 190px;
  align-items: center;
}
.cp48-hero-grid-noform {
  grid-template-columns: 1fr 1fr;
}

.cp48-hero-left-empty {
  min-height: 520px;
}

.cp48-hero-right-content {
  background: rgb(0 0 0 / 23%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 50px;
  backdrop-filter: blur(10px);
}

.cp48-hero-title {
  font-size: 46px;
  line-height: 1.3;
  margin: 0 0 12px 0;
  font-weight: 900;
  color: #ffffff;
}

.cp48-hero-title span {
  opacity: 0.6;
  font-weight: 400;
}

.cp48-hero-subtitle {
  font-size: 18px;
  margin: 0 0 22px 0;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}

.cp48-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

/* =========================================================
   OVERVIEW
========================================================= */

.cp48-overview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;

}

.cp48-overview p {
  margin: 0 0 14px 0;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.88;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cp48-overview-grid {
    grid-template-columns: 1fr;
  }

  .cp48-overview-headcard {
    min-height: 260px;
    border-radius: 22px 22px 0 0;
  }

  .cp48-overview-right {
    border-radius: 0 0 22px 22px !important;
  }
  .cp48-overview-left {
        border-radius: 22px 22px 0px 0px !important;
        min-height: 260px;
    }
}

.cp48-overview-right {
  background: #F58634;
  border-radius: 0px 30px 30px 0px;
  padding: 40px;
}

.cp48-overview-right .cp48-h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.cp48-overview-left {
    background-image:url(https://newfrontgroup.com/wp-content/uploads/2026/02/welcom-48-Central-scaled.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 30px 0px 0px 30px;
}

/* =========================================================
   GLIMPSE
========================================================= */


.cp48-section-head.cp48-center {
    margin-bottom: 20px;
}

/* Strip */
.cp48-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.cp48-strip-item {
  border-radius: 18px 0px;
  padding: 16px;
  background: #F58634;
  text-align: center;
  color:#fff;
}

.cp48-strip-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 1.7;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 12px;
}

.cp48-strip-label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: #fff;
}

.cp48-strip-value {
  font-size: 14px;
  font-weight: 800;
}

.cp48-strip-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================================
   VIDEO
========================================================= */

.cp48-video-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.10);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  background: #000;
}

.cp48-video-embed iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
}

@media (max-width: 560px) {
  .cp48-video-embed iframe {
    height: 280px;
  }
}

/* =========================================================
   AMENITIES
========================================================= */

.cp48-amenities .cp48-carousel-placeholder {
  padding: 50px 30px;
}

/* =========================================================
   CTA -1
========================================================= */


.cp48-cta-banner-1 {
  position: relative;
  padding: 80px 0;
  color: #ffffff;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(/wp-content/uploads/2026/02/48-Central_Banners_2-scaled.jpeg) center/cover no-repeat;
}


.cp48-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  align-items: center;
  gap: 20px;
}


.cp48-cta-title {
  font-size: 44px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.cp48-cta-subtitle {
  font-size: 16px;
  opacity: 0.9;
}

.cp48-cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}


/* Responsive */
@media (max-width: 768px) {
  .cp48-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cp48-cta-right {
    align-items: center;
  }

  .cp48-cta-title {
    font-size: 28px;
  }
}


/* =========================================================
   MAP + KEY DISTANCES HORIZONTAL LAYOUT
========================================================= */

.cp48-location-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

/* MAP */
.cp48-map-placeholder {
  border-radius: 18px 0px 0px 18px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.cp48-map-placeholder iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* KEY DISTANCES BOX */
.cp48-keydist-box {
  background: #ffffff;
  border-radius: 0px 18px 18px 0px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  padding: 22px;
  height: 100%;
}

.cp48-keydist-title {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 14px;
}

/* GRID inside right side */
.cp48-keydist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cp48-kd-item {
  border-radius: 16px;
  color: #fff;
  padding: 14px 14px;
  background: #f58634;
  text-align: center;
}

.cp48-kd-name {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.85;
  margin-bottom: 8px;
  line-height: 1.4;
}

.cp48-kd-val {
  font-size: 15px;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 1024px) {
  .cp48-location-grid {
    grid-template-columns: 1fr;
  }

  .cp48-map-placeholder iframe {
    min-height: 320px;
  }
  .cp48-map-placeholder{
      border-radius: 18px 18px 0px 0px;
  }

  .cp48-keydist-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .cp48-keydist-grid {
    grid-template-columns: 1fr;
  }
  .cp48-keydist-box{
      border-radius: 0px 0px 18px 18px;
  }
  .cp48-keydist-box .cp48-section-title{
      text-align:center;
  }
  .cp48-keydist-title{
      text-align:center;
  }
}
/* =========================================================
   CTA -2
========================================================= */
.cp48-cta-banner-2 {
  position: relative;
  padding: 90px 0;
  text-align: center;
  color: #ffffff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/wp-content/uploads/2026/02/48-Central_Banners_3-scaled.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
}


.cp48-cta-inner {
  position: relative;
  z-index: 2;
}

.cp48-cta-title {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}

/* Subtitle */
.cp48-cta-subtitle {
  font-size: 16px;
  margin-bottom: 26px;
  opacity: 0.9;
}

/* Buttons */
.cp48-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .cp48-cta-title {
    font-size: 30px;
  }

  .cp48-cta-banner {
    padding: 70px 0;
  }
}

/* =========================================================
   OUR LEGACY - COUNTER BOXES
========================================================= */

.dm-stats-singlebox {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dm-stat-item {
  background: #f58634;
  border: 1px solid rgba(13, 27, 42, 0.10);
  border-radius: 18px;
  padding: 56px 0px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  color: #fff;
}

.dm-stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

/* Counter number */
.dm-stat-item .counter {
  margin: 0 0 10px 0;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
}

/* Label text */
.dm-stat-item p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  line-height: 1.4;
}

.dm-stat-item p strong {
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1024px) {
  .dm-stats-singlebox {
    grid-template-columns: repeat(2, 1fr);
  }

  .dm-stat-item .counter {
    font-size: 30px;
  }
}

@media (max-width: 560px) {
  .dm-stats-singlebox {
    grid-template-columns: 1fr;
  }

  .dm-stat-item {
    padding: 22px 16px;
  }
}


/* =========================================================
   ABOUT + REACH OUT (2 COLUMN SECTION)
========================================================= */

.cp48-about-contact {
  background: #f7f8fb;
}

.cp48-about-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

/* Left side */
.cp48-about-side {
  padding: 28px;
}

.cp48-about-side .cp48-section-title {
  margin-bottom: 14px;
}

/* About text */
.cp48-about-side .cp48-about-content p {
  margin: 0 0 14px 0;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.88;
}

/* Address card */
.cp48-address-card {
  margin-top: 18px;
}

/* Right side */
.cp48-form-side {
  padding: 28px;
}

.cp48-form-side .cp48-section-title {
  margin-bottom: 10px;
}

.cp48-form-side .cp48-lead {
  text-align: left;
  margin: 0 0 18px 0;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
  .cp48-about-contact-grid {
    grid-template-columns: 1fr;
  }

  .cp48-about-side,
  .cp48-form-side {
    padding: 22px;
  }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
  .cp48-hero-grid,
  .cp48-overview-grid,
  .cp48-contact-grid {
    grid-template-columns: 1fr;
  }

  .cp48-hero {
    min-height: auto;
    padding: 55px 0;
  }

  .cp48-hero-left-empty {
    min-height: 220px;
  }

  .cp48-hero-title {
    font-size: 38px;
  }

  .cp48-cta-box {
    grid-template-columns: 1fr;
  }

  .cp48-cta-right {
    justify-content: flex-start;
  }

  .cp48-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cp48-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .cp48-section {
    padding: 55px 0;
  }

  .cp48-section-title {
    font-size: 30px;
  }

  .cp48-hero-title {
    font-size: 32px;
  }

  .cp48-hero {
    /* Mobile banner size suggestion: 1068 x 1200 */
    background: url("/wp-content/uploads/2026/02/48-Central_Banners_1-scaled-1.jpeg") center/cover no-repeat;
  }

  .cp48-strip {
    grid-template-columns: 1fr;
  }

  .cp48-stats {
    grid-template-columns: 1fr;
  }

  .cp48-map-placeholder iframe {
    height: 300px;
  }
}
/* =========================================================
   CONTACT STRIP CENTER
========================================================= */

.cp48-contact-strip {
  text-align: center;
  padding:30px;
}

.cp48-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cp48-contact-item {
  text-align: center;
}

.cp48-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #f5e6c8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.cp48-contact-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #b8860b;
}

.cp48-contact-item p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

img.maharera-image {
    height: 90px;
}


/* Responsive */
@media (max-width: 768px) {
  .cp48-contact-grid {
    grid-template-columns: 1fr;
  }
  .cp48-contact-strip{
      padding: 20px !important;
  }
}
/* =========================================================
   FOOTER
========================================================= */
.page-template-template-48-central-park-landing-page footer:not(.cp48-footer) {
  display: none !important;
}
.cp48-footer {
  color: #000;
  padding: 20px 0 20px;
}

.cp48-footer-bottom {
  text-align: center;
  font-size: 18px;
  opacity: 0.6;
}

/* =========================================================
   Thank You Page
========================================================= */
.page-template-page-thank-you header:not(.cp48-header) {
  display: none !important;
}
.page-template-page-thank-you footer:not(.cp48-footer) {
  display: none !important;
}
.container-level-2 {
    justify-items: center;
    text-align: center;
    padding: 300px;
    background: #ebe9e9;
}

.thankyou-btn {
    margin: 36px;
}

.thankyou-btn-outline {
    background: transparent;
    color: #000000 !important;
    border: 1px solid rgb(0 0 0) !important;
    border-radius: 5px;
    padding: 12px 28px;
}
/* Responsive */
@media (max-width: 768px) {
    .container-level-2{
        padding: 190px 40px 10px 40px !important;
    }
}
/* =========================================================
   WHATSAPP FLOAT BUTTON
========================================================= */

.cp48-whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 50px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.cp48-whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Icon */
.cp48-wa-icon {
  font-size: 26px;
  color: #fff;
}

img.wp-icon {
    width: 60px;
    height: 60px;
}
@media (max-width: 768px) {
    .cp48-whatsapp-btn{
        display:none;
    }
}
@media screen and (min-width: 960px){
.bottom-links.sticky-button{
    display:none;
}
}
@media screen and (max-width: 960px) {
    .bottom-links {
        display: block;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 999999;
    }
}
@media screen and (max-width: 960px) {
    a.call-now {
        background-color: #000000;
    }
}

@media screen and (max-width: 960px) {
    .bottom-links a {
        width: 50%;
        display: block;
        float: left;
        text-align: center;
        font-size: 15px;
        color: white;
        padding: 10px 0;
    }
}
@media screen and (max-width: 960px) {
    a.enquire-bottom {
        background-color: #f58634;
    }
}
@media screen and (max-width: 960px) {
    .bottom-links a {
        width: 33.33%;
        display: block;
        float: left;
        text-align: center;
        font-size: 15px;
        color: white;
        padding: 10px 0;
    }
}

.cp48-amenities-slider {
  margin-top: 40px;
  position: relative;
}

/* Card */
.cp48-amenity-card {
  overflow: hidden;
  position: relative;
}

.cp48-amenity-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}


/* ACTIVE SLIDE ZOOM */
.swiper-slide-active .cp48-amenity-card {
  transform: scale(1.05);
  transition: 0.4s;
}

/* Arrows */
.cp48-next,
.cp48-prev  {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 70px;
    border-radius: 5px;
    background: #f58634;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: 0.3s ease;
}

.cp48-next { right: -10px; }
.cp48-prev { left: -10px; }

.cp48-next::after,
.cp48-prev::after {
  content: '';
}
.cp48-amenities-slider .swiper-wrapper {
  display: flex;
}
.cp48-amenities-slider .swiper-slide {
  width: auto;
}
/* Responsive */
@media (max-width: 768px) {
  .cp48-amenity-card img {
    height: 260px;
  }
}
.pop-form-buttonone {
    margin-right: 0px !important;
    padding: 6px 11px;
    font-weight: 600;
    position: fixed;
    z-index: 99999;
    top: 40%;
    right: -74px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    text-indent: 0 !important;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 50% 53%;
    writing-mode: lr-tb;
    text-align: center;
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #fff !important;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(270deg);
}
.pop-form-buttonone a {
    color: #fff !important;
    font-size: 12px;
    padding: 13px;
    background: #f58634;
}