/* --------- #CUSTOM PROPERTY ----------- */

:root {
  /* COLORS */
  --clr-primary: #00a897;
  --clr-primary-dark: #00665a;
  --clr-primary-bg: rgba(0, 168, 151, 0.1);
  --clr-secondry: hsl(38, 84%, 55%);
  --dark-green: hsl(188, 63%, 7%);
  --r-blue: hsl(200, 69%, 14%);
  --black-1: hsl(227, 29%, 13%);
  --black-2: hsl(229, 17%, 19%);
  --black-3: hsl(212, 100%, 7%);
  --black-4: hsl(211, 100%, 5%);
  --black-5: #001f42;

  --color-bg-1: hsl(192, 24%, 96%);
  --color-bg-2: hsl(0, 0%, 93%);
  --color-bg-4: hsl(179, 79%, 13%);
  --color-bg-3: hsl(135, 63%, 74%);
  --misty-rose: hsl(7, 56%, 91%);
  --alice-blue: hsl(210, 100%, 97%);
  --seashell: hsl(8, 100%, 97%);
  --color-text: hsl(200, 15%, 43%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --opal: hsl(180, 20%, 62%);
  --color-blue: hsl(258, 58%, 16%);
  --color-blue-light: hsl(235, 31%, 34%);

  /* Typography */
  --ff-nunito-sans: "Nunito Sans", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 1.875rem;
  --fs-2: 1.5rem;
  --fs-3: 1.375rem;
  --fs-4: 1.125rem;
  --fs-5: 0.875rem;
  --fs-6: 0.813rem;
  --fs-7: 0.75rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* Transition */
  --transition: 0.25s ease;

  /* Spacing */
  --section-padding: 70px;
  --section-padding-2: 40px;

  /* Shadow */
  --shadow-1: 0 5px 20px 0 hsla(219, 56%, 21%, 0.1);
  --shadow-2: 0 16px 32px hsla(188, 63%, 7%, 0.1);
}

/* ----------- #RESET ------------- */

*,
*:before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: var(--ff-nunito-sans);
  scroll-behavior: smooth;
}

body {
  background: var(--black-3);
  overflow-x: hidden;
  height: 300vh;
}

/* ::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--white);
}
::-webkit-scrollbar-thumb {
  background: hsl(200, 50%, 20%);
  border-left: 2px solid var(--white);
} */

li {
  list-style: none;
}

a,
img,
span,
button,
ion-icon {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
}

input,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}
input {
  width: 100%;
  outline: none;
}
textarea {
  outline: none;
}
button {
  text-align: left;
  cursor: pointer;
}
ion-icon {
  pointer-events: none;
}
address {
  font-style: normal;
}

/*-------------------------- *\
   #REUSED STYLE
/*---------------------------*/

.container {
  padding-inline: 15px;
  /* overflow-x: hidden; */
}
.h1,
.h2,
.h3 {
  color: var(--dark-green);
  font-family: var(--ff-poppins);
  line-height: 1.3;
}
.h1 {
  font-size: var(--fs-1);
  line-height: 1.1;
}
.h2 {
  font-size: var(--fs-2);
}
.h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
}

.h3 > a {
  color: inherit;
}

/* ========== */
.btn {
  position: relative;
  color: var(--white);
  background: var(--clr-primary);
  font-family: var(--ff-poppins);
  font-size: var(--fs-6);
  text-transform: var(--text-transform, capitalize);
  border: 1px solid var(--clr-primary);
  padding: 10px 20px;
  z-index: 1;
}
.btn:is(:hover, :focus) {
  color: var(--dark-green);
  /* background: var(--black); */
  border-color: var(--black);
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--white);
  transition: var(--transition);
  z-index: -1;
}
.btn:is(:hover, :focus)::before {
  width: 100%;
}
/* ======== */

.w-100 {
  width: 100%;
}

/* ===== ABOUT ======= */
.section-subtitle {
  color: var(--clr-primary);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  padding: 5px 20px;
  background: rgba(0, 168, 151, 0.1);
  width: max-content;
  border-radius: 3px;
  margin-inline: auto;
  margin-bottom: 15px;
}

.section-title {
  text-align: var(--text-align, center);
  margin-bottom: var(--margin-bottom, 50px);
}

/* --------- #HEADER ----------- */

.header {
  position: relative;
  z-index: 5;
}

.header-bottom {
  background: linear-gradient(
    to bottom,
    rgba(72, 202, 228, 0.9),
    rgba(144, 225, 239, 0.9)
  );

  background: linear-gradient(
    135deg,
    rgba(0, 168, 150, 1) 0%,
    rgba(0, 168, 150, 1) 10%,
    rgba(105, 111, 221, 0.8) 100%,
    rgba(0, 168, 150, 1) 100%
  );
  padding-block: 15px;
  z-index: 10;
  /* border: 2px solid red; */
}

/* --------- Header-Socials --------- */
.header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-mobile .header-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  /* animation: anime 1.3s infinite ease-in-out alternate; */
}
.header-socials a {
  padding: 10px;
  background: white;
  background: #25d366;
  border-radius: 1px;
  font-size: 1.3rem;
}
.header-socials .call-button {
  color: var(--black-1);
  background: var(--white);
}
.call-button ion-icon {
  color: var(--black-3);
  font-weight: 600;
}
.whatsapp-button ion-icon {
  color: var(--white);
  font-weight: 600;
}

/* @keyframes anime {
  100% {
    transform: translateY(15px);
  }
} */

/* ---------------- */

.header-bottom .logo img {
  margin-inline: auto;
  width: 150px;
}

/* Side Navbar */
.navbar {
  background: var(--color-bg-1);
  position: fixed;
  top: 0;
  left: -310px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  box-shadow: 0 3px 10px hsla(0, 0%, 0%, 0.3);
  visibility: hidden;
  transition: 0.15s ease-in;
  z-index: 5;
}
.navbar.active {
  visibility: visible;
  transform: translateX(310px);
  transition: 0.25s ease-out;
}

/* Side Navbar: logo + close-button */
.navbar-top {
  background: rgba(155, 194, 199, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--color-bg-2);
  margin-bottom: 25px;
  padding: 50px 25px 40px;
}

.navbar-top .logo img {
  width: 150px;
}

.nav-close-btn ion-icon {
  font-size: 20px;
  --ionicon-stroke-width: 45px;
  padding: 5px;
  background: var(--clr-primary);
  border-radius: 2px;
  box-shadow: var(--shadow-1);
}

/* Side Navbar: Bottom-links */
.navbar-link {
  color: var(--color-text);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  padding: 12px 24px;

  /* My Style */
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 2px 10px;
  border-radius: 5px;
  transition: all 0.5s ease-out;
}
.navbar-link:is(:hover, :focus) {
  color: var(--white);
  background: var(--clr-primary);
}

.overlay {
  position: fixed;
  inset: 0;
  background: hsla(0, 0%, 0%, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 4;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Header bottom menu actions */
.header-bottom-actions {
  /* background: linear-gradient(
    to bottom,
    rgba(72, 202, 228, 0.9),
    rgba(144, 225, 239, 0.9)
  ); */
  background: linear-gradient(
    135deg,
    rgba(0, 168, 150, 0.9) 0%,
    rgba(0, 168, 150, 0.9) 10%,
    rgba(105, 111, 221, 0.9) 100%,
    rgba(105, 111, 221, 0.9) 10%,
    rgba(0, 168, 150, 1) 100%,
    rgba(0, 168, 150, 1) 100%
  );
  /* border-top-left-radius: 1rem;
  border-top-right-radius: 1rem; */
  border-radius: 1px;
  color: var(--white);
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-block: 15px 10px;
  box-shadow: -2px 0 30px hsla(0, 0%, 0%, 0.2);
  z-index: 3;
  /* border: 2px solid red;
  width: 100%; */
}
.header-bottom-action-btn {
  /* background: linear-gradient(
    to bottom,
    rgba(155, 194, 199, 0.7),
    rgba(255, 255, 255, 0.5)
  ); */
  background: linear-gradient(
    to bottom,
    rgb(146, 220, 233),
    rgb(160, 231, 245)
  );
  background: linear-gradient(
    to bottom,
    rgba(72, 202, 228, 0.7),
    rgba(144, 225, 239, 0.7)
  );
  border-radius: 3px;
  padding: 6px 12px;
  display: grid;
  place-items: center;
}
.header-bottom-action-btn ion-icon {
  color: rgb(69, 69, 69);
  font-size: 20px;
  margin-inline: auto;
  margin-bottom: 5px;
  --ionicon-stroke-width: 40px;
  transition: var(--transition);
}
.header-bottom-action-btn:is(:hover, :focus) ion-icon {
  color: var(--clr-primary);
}
.header-bottom-action-btn span {
  color: rgb(69, 69, 69);
  font-family: var(--ff-poppins);
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

/* ==================================== */
/* Hero Section */
/* ================================== */

.hero {
  /* padding-block: var(--section-padding); */
  /* background: linear-gradient(
      to bottom,
      rgba(0, 16, 34, 0.01),
      rgba(0, 16, 34, 0.1),
      rgba(0, 16, 34, 0.9),
      rgba(0, 16, 34),
      rgba(0, 16, 34),
      rgba(0, 16, 34)
    ),
    url(../images/Back11.1.webp);
  background-size: cover;
  background-repeat: no-repeat; */
  background: linear-gradient(
    to bottom,
    rgba(72, 202, 228, 1),
    rgba(72, 202, 228, 0.9),
    rgba(72, 202, 228, 0.8),
    rgba(72, 202, 228, 0.7),
    rgba(72, 202, 228, 0.5),
    rgba(72, 202, 228, 0.3),
    rgba(0, 16, 34, 0.4),
    rgba(0, 16, 34, 0.5),
    rgba(0, 16, 34, 0.6),
    rgba(0, 16, 34, 0.7),
    rgba(0, 16, 34, 0.8),
    rgba(0, 16, 34, 1)
  );
  /* background: rgba(113, 211, 201, 1); */
}

.hero-content {
  padding: 70px 10px 0;
}

.hero-subtitle {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 10px;
  border-left: 2px solid var(--clr-primary);
  background: rgba(238, 233, 233, 0.2);
  /* backdrop-filter: blur(20px); */
  max-width: 290px;
}

.hero-subtitle ion-icon {
  color: var(--clr-hero-image-light);
  font-size: 1rem;
}

.hero-subtitle span {
  color: var(--dark-green);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
}

.hero-text {
  color: var(--dark-green);
  font-size: var(--fs-5);
  line-height: 1.8;
  padding-left: 15px;
  border-left: 2px solid var(--clr-primary);
  margin-block: 20px 30px;
  /* new */
  padding: 10px;
  background: rgba(224, 217, 217, 0.1);
  backdrop-filter: blur(20px);
}

.hero-btn {
  border-radius: 2px;
  font-size: var(--fs-4);
  font-family: var(--ff-nunito-sans);
  font-weight: 700;
}

.hero-banner {
  /* margin-inline: auto; */
  /* background: linear-gradient(
      to right,
      rgba(7, 59, 58, 0.99),
      rgba(7, 59, 58, 0.8),
      rgba(7, 59, 58, 0.3),
      rgba(7, 59, 58, 0.2)
    ),
    url(../images/building-bg4.jpg); */
  /* background-size: cover;
  background-repeat: no-repeat;
  background-position: center; */
  margin-top: 2rem;
  border-radius: 1px;
  overflow: hidden;
  border: 1px solid rgba(0, 168, 151, 0.5);
  box-shadow: -4px -4px 0px var(--clr-primary), 5px 5px 0px var(--clr-primary);
  width: 98%;
  border-radius: 3px;
}
.hero-banner img {
  overflow: hidden;
  z-index: -10;
  width: 100%;
  object-fit: cover;
}

/* *********** Animation *********** */
.title-loader {
  display: inline-block;
  /* ******** */
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 10px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

/* **** */
.title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--white);
  padding-left: 15px;
  border-radius: 2px;
}
/* **** */
.dynamic-title {
  height: 28px;
  overflow: hidden;
}
.dynamic-title li {
  position: relative;
  top: 0;
  overflow: hidden;
  animation: slide 9s steps(3) infinite;
}

@keyframes slide {
  100% {
    top: -84px;
  }
}

.dynamic-title li span {
  position: relative;
  background: #75d1ec;
  white-space: nowrap;
  background: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-text);
}

.dynamic-title li span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 400px;
  height: 90px;
  border-left: 2px solid var(--dark-green);
  animation: typing 1.5s steps(10) infinite alternate;
  background: var(--white);
}

@keyframes typing {
  100% {
    left: 100%;
    margin: 0 -35px 0 35px;
  }
}

/*  =========== Achievements ===================== */

.achievements-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  color: var(--white);
  padding: 1rem;
  border-radius: 3px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-2);
}
.achievement-card:last-child {
  grid-column: span 2;
}

.achievement-card:hover {
  background: rgba(7, 59, 58, 0.3);
  box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.3);
}

.achievement-icon {
  background-color: var(--clr-primary);
  font-size: 1.3rem;
  padding: 0.7rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
}
.achievement-card:nth-child(2) .achievement-icon {
  background: rgb(5, 138, 98);
}
.achievement-card:nth-child(3) .achievement-icon {
  background: rgb(113, 103, 197);
}

.achievement-card:last-child {
  width: 100%;
}
.achievement-card h3 {
  font-size: var(--fs-4);
}
.achievement-card p {
  margin-top: 0.5rem;
  color: var(--white);
  font-size: var(--fs-6);
}

/* ============= ABOUT-US =================== */
.about {
  padding-top: 1.5rem;
}
.about .container {
  background: var(--white);
  padding-block: 50px 20px;
}

.about-banner {
  position: relative;
  margin-bottom: 40px;
  border-radius: 1px;
  width: 95%;
  height: 95%;
  margin-inline: auto;
  place-self: center;
  box-shadow: -8px 8px 0px 4px rgba(37, 207, 190, 0.3);
}

.about-banner > img {
  width: 100%;
  height: 100%;
  border-radius: 0.5px;
  border: 1px solid var(--clr-primary);
}

.about .about-content {
  width: 98%;
  margin-top: 50px;
}
.about .section-subtitle {
  margin-inline: 0;
}
.about .section-title {
  text-align: left;
  margin-bottom: 15px;
}
.section-title span {
  color: rgb(5, 18, 90);
  display: inline-block;
}
.about-text {
  color: var(--color-text);
  font-size: var(--fs-5);
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 30px;
}

.about-list {
  margin-bottom: 30px;
}
.about-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  box-shadow: -4px 10px 94px -28px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: -4px 10px 94px -28px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -4px 10px 94px -28px rgba(0, 0, 0, 0.2);
  padding: 10px 14px;
  border-radius: 2px;
  transition: all 0.5s;
}
.about-item:nth-child(1) {
  box-shadow: -18px 53px 92px -26px rgba(0, 0, 0, 0.72);
}
.about-item:nth-child(2) {
  box-shadow: -4px 70px 94px -28px rgba(0, 0, 0, 0.32);
}
.about-item:hover {
  transform: scale(1.1, 1.1);
}

.about-item-icon {
  background: var(--clr-primary-bg);
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.about-item-icon ion-icon {
  color: var(--clr-primary);
  font-size: 18px;
}
.about-icon-text {
  color: var(--color-text);
  font-size: var(--fs-5);
}
.about .call-out {
  color: var(--color-text);
  background: hsla(7, 78%, 53%, 0.05);
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  line-height: 1.8;
  padding: 20px 25px;
  border-left: 4px solid var(--clr-primary);
  margin-bottom: 40px;
}

.about .btn {
  max-width: max-content;
  text-transform: capitalize;
  padding: 13px 22px;
  margin-left: 10px;
  border-radius: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ************** SERVICES ************************** */
.service {
  background: var(--color-bg-1);
  padding-block: var(--section-padding);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.service-card {
  position: relative;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-2);
  border-radius: 3px;
  /* overflow: hidden; */
  background: rgba(113, 211, 201, 0.1);
  border: 1px solid rgba(113, 211, 201, 0.1);
  transition: all 0.3s;
}
.card-data {
  padding: 0 30px 30px;
  /* background: rgba(113, 211, 201, 0.3); */
}
.service-card .card-icon {
  width: 100%;
  margin-inline: auto;
  /* margin-bottom: 30px; */
  padding-block: 20px;
  transform: scale(1.05);
  clip-path: polygon(100% 0, 100% 53%, 49% 76%, 0 56%, 0 0);
  background: rgba(0, 191, 178, 0.5);
}
.service-card .card-icon img {
  width: 100%;
  height: 150px;
}

.service-card .card-title {
  font-size: 20px;
  padding: 20px;
  line-height: 1.9;
  -webkit-clip-path: polygon(
    0 0,
    13% 0,
    39% 0,
    56% 0,
    77% 0,
    100% 0,
    100% 64%,
    81% 66%,
    81% 83%,
    17% 82%,
    17% 63%,
    0 63%
  );
  clip-path: polygon(
    0 0,
    13% 0,
    39% 0,
    56% 0,
    77% 0,
    100% 0,
    100% 64%,
    81% 66%,
    81% 83%,
    17% 82%,
    17% 63%,
    0 63%
  );
  background: linear-gradient(
    to left,
    rgba(113, 211, 201, 0.1),
    rgba(113, 208, 211, 0.7),
    rgba(113, 211, 201, 0.1)
  );
  height: 100px;
  box-shadow: var(--shadow-1);
}
.card-title span {
  color: var(--color-text);
  font-size: 10px;
  font-weight: 200;
}

.service-card .card-title > a:is(:hover, :focus) {
  color: var(--black-1);
}
.service-card .card-text {
  color: var(--color-text);
  font-size: var(--fs-5);
  line-height: 1.7;
  margin-bottom: 25px;
}
.service-card .card-link {
  color: var(--white);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  background: linear-gradient(
    to left,
    rgba(15, 167, 175, 0.7),
    rgba(21, 190, 143, 0.6)
  );
  padding: 10px 14px;
  width: max-content;
  margin-inline: auto;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: all 0.5s;
}

.service-card:is(:hover, :focus) .card-link {
  color: var(--white);
}

.service-card::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* width: 0; */
  height: 0;
  background: rgba(113, 211, 201, 0.9);
  transition: all 0.3s;
  z-index: -10;
}

.service-card:is(:hover, :focus)::after {
  width: 100%;
  height: 100%;
}
.service-card:is(:hover, :focus) {
  transform: scale(1.05);
}

/* ============== PROPERTY ====================== */
/* PROPERTY */

/* REUSED */

::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--white);
}

::-webkit-scrollbar-thumb {
  background: var(--color-text);
  border-left: 2px solid var(--white);
}

.card-badge {
  background: var(--black);
  color: var(--white);
  font-size: var(--fs-7);
  text-transform: uppercase;
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 4px 10px;
}
.card-badge.green {
  background: var(--clr-primary);
}
.card-badge.orange {
  background: var(--clr-secondry);
}

/* ScrollBar */
.has-scrollbar {
  display: flex;
  /* grid-template-columns: repeat(3, 1fr); */
  align-items: flex-start;
  gap: 15px;
  overflow-x: auto;
  margin-inline: -15px;
  padding-inline: 15px;
  scroll-padding-left: 15px;
  padding-bottom: 60px;
  scroll-snap-type: inline mandatory;
}

.has-scrollbar > li {
  min-width: 100%;
  scroll-snap-align: start;
  /* animation: scrolling 10s linear infinite; */
}

/* @keyframes scrolling {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(-1642px);
  }
} */
.has-scrollbar::-webkit-scrollbar-track {
  background: var(--color-bg-1);
  outline: 2px solid var(--color-text);
  border-radius: 10px;
}
.has-scrollbar::-webkit-scrollbar-thumb {
  background: var(--color-text);
  border: 1px solid var(--color-bg-1);
  border-radius: 10px;
}
.has-scrollbar::-webkit-scrollbar-button {
  width: 15%;
}

/* ============ GENERAL =============== */
.property {
  padding-block: var(--section-padding);
  background: var(--color-bg-1);
  /* border: 2px solid red;
  width: 100%; */
}
.property-card {
  border: 1px solid var(--alice-blue);
  box-shadow: var(--shadow-1);
}

.property-card .card-banner {
  position: relative;
  aspect-ratio: 2 / 1.5;
  overflow: hidden;
}

.property-card .card-banner a {
  height: 100%;
}

.property-card .card-banner img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
  object-fit: cover;
}
.property-card:hover .card-banner img {
  transform: scale(1.1);
}

.property-card .card-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0.95), transparent 30%);
  pointer-events: none;
  z-index: 1;
}

.property-card .banner-actions {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 15px 10px;
  z-index: 1;
}

.banner-actions-btn {
  color: var(--white);
  font-size: var(--fs-6);
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.banner-actions-btn ion-icon {
  font-size: 16px;
}

.banner-actions-btn:first-child {
  margin-right: auto;
}
.banner-actions-btn:is(:hover, :focus) {
  color: var(--clr-primary);
}

.property-card .card-content {
  padding: 30px 15px 15px;
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
}
.card-price {
  color: var(--clr-primary);
  font-family: var(--ff-poppins);
  font-size: var(--fs-5);
  margin-bottom: 5px;
}

.card-price strong {
  font-style: var(--fs-4);
  font-weight: var(--fw-600);
}
.property-card .card-title {
  --font-weight: var(--fw-600);
  margin-bottom: 15px;
}

.property-card .card-title > a:is(:hover, :focus) {
  color: var(--clr-primary);
}

.property-card .card-text {
  color: var(--color-text);
  font-size: var(--fs-5);
  line-height: 1.8;
  margin-bottom: 25px;
}
.property-card .card-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 15px;
}

.property-card .card-item {
  padding-block: 5px;
  color: var(--color-text);
  font-size: var(--fs-5);
}
.property-card .card-item:not(:last-child) {
  padding-right: 15px;
  border-right: 1px solid hsla(0, 0%, 0%, 0.2);
  margin-right: 20px;
}

.card-item :is(strong, ion-icon) {
  display: inline-block;
}

.property-card .card-item ion-icon {
  margin-left: 2px;
  margin-bottom: -2px;
}
.property-card .card-item span {
  margin-top: 5px;
}

/* Card-Footer */
.card-footer {
  padding: 15px;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  overflow: hidden;
  border-radius: 50%;
}
.author-name > a {
  color: var(--dark-jungle-green);
  font-family: var(--ff-poppins);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  margin-bottom: 3px;
}
.author-name > a:is(:hover, :focus) {
  color: var(--clr-primary);
}
.author-title {
  color: var(--color-text);
  font-size: var(--fs-7);
}

.card-footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-footer-actions-btn {
  background: rgba(0, 168, 151, 0.1);
  color: var(--dark-jungle-green);
  border-radius: 2px;
  /* width: 35px;
  height: 35px; */
  padding: 6px;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: all 0.3s;
}

.card-footer-actions-btn:is(:hover, :focus) {
  background: var(--clr-primary-dark);
  color: var(--white);
}
/* Property-End */

/* ************* Pricing *************************** */
.plans {
  background: var(--color-bg-1);
  padding-block: var(--section-padding-2);
}
.plans .container {
  overflow: hidden;
}
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  border-radius: 2px;
}
.card {
  background: var(--white);
  color: hsl(233, 13%, 49%);
  border-radius: 0.15rem;
  z-index: 1;
}

.cards .card.active {
  background: linear-gradient(
    135deg,
    rgba(0, 168, 150, 1) 0%,
    rgba(0, 168, 150, 1) 0%,
    rgba(105, 111, 221, 1) 100%,
    rgba(105, 111, 221, 1) 100%
  );
  z-index: 2;
  color: #e6e6e6;
}
.cards ul {
  margin: 2.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cards li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-block: 1rem;
}

.cards li.price {
  font-size: 1.5rem;
  color: var(--color-text);
  padding-bottom: 2rem;
  justify-content: center;
  align-items: center;
}
.shadow {
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
}

.card.active .price {
  color: var(--white);
}

.term span {
  color: white;
  background: linear-gradient(
    135deg,
    rgba(0, 168, 150, 1) 0%,
    rgba(105, 111, 221, 1) 100%
  );
  padding: 5px 12px;
  margin-right: 10px;
  border-radius: 4px;
}
.bottom-bar span {
  color: var(--dark-jungle-green);
  border-radius: 50px;
  margin-right: 3px;
}

.card .bottom-bar {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid hsl(240, 8%, 85%, 0.583);
}
.card.active .bottom-bar {
  border-bottom: 2px solid hsl(240, 8%, 85%, 0.583);
}
.bottom-bar ion-icon {
  margin-left: 2px;
  font-size: 20px;
  font-weight: 600;
  background: rgba(0, 168, 151, 0.2);
  padding: 5px;
  border-radius: 50%;
}
.bottom-bar .checkmark {
  color: green;
}
.bottom-bar .close {
  color: red;
}
.card .card-btn {
  margin-top: 1rem;
  height: 2.6rem;
  width: 13.3rem;
  display: grid;
  place-items: center;
  border: 4px;
  background: linear-gradient(
    135deg,
    rgba(0, 168, 150, 1) 0%,
    rgba(105, 111, 221, 1) 100%
  );
  color: var(--white);
  font-weight: var(--fw-600);
  border-radius: 4px;
  transition: all 0.3s;
}
.card .card-btn:is(:hover, :focus) {
  background: linear-gradient(
    135deg,
    rgba(3, 112, 101, 0.9) 0%,
    rgba(59, 65, 180, 0.9) 100%
  );
}
.active-btn {
  background: var(--white);
  color: hsl(237, 63%, 64%);
}

.bottom-bar .offer {
  /* margin-right: 20px; */
  /* font-size: 20px; */
  font-weight: 600;
  background: rgba(200, 212, 200, 0.7);
  color: var(--dark-green);
  padding: 10px 14px;

  clip-path: polygon(
    49% 20%,
    100% 17%,
    86% 44%,
    100% 76%,
    0 75%,
    16% 43%,
    0 17%
  );
}

.card.active .offer {
  background: rgb(71, 224, 10);
}
.card.active ion-icon {
  color: rgb(71, 224, 10);
  background: rgba(71, 224, 10, 0.1);
  font-size: 25px;
}
/* ============ Pricing-End ======================== */

/* ****************** FEATURE ********************** */
.features {
  background: var(--color-bg-1);
  padding-block: var(--section-padding);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px 20px;
}
.feature-list > li {
  width: calc(50% - 10px);
}
.feature-card {
  position: relative;
  background: var(--white);
  padding: 25px 20px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 100%;
  box-shadow: var(--shadow-1);
  transition: all 0.25s;
}
.feature-card:is(:hover, :focus) {
  background: rgba(113, 211, 201, 0.3);
}
.feature-card.active {
  transform: scale(1);
}

.feature-card .feature-icon {
  background: rgba(0, 168, 151, 0.1);
  color: var(--clr-primary);
  padding: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
}
.feature-card .feature-icon ion-icon {
  --ionicon-stroke-width: 20px;
}

.feature-card .card-title {
  color: var(--dark-jungle-green);
  font-family: var(--ff-poppins);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  text-align: center;
  margin-bottom: 5px;
  transition: var(--transition);
}
.feature-card .card-text {
  color: var(--color-text);
  font-size: var(--fs-6);
  text-align: center;
}
.feature-card:is(:hover, :focus) .card-title {
  color: var(--white);
}
.feature-card .card-btn {
  background: var(--white);
  color: var(--color-text);
  position: absolute;
  bottom: -39px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 0 10px hsla(219, 56%, 21%, 0.1);
  transition: var(--transition);
}
.feature-card:is(:hover, :focus) .card-btn {
  color: var(--clr-primary);
}

/* ==================== TESTIMONIALS ================== */

.testimonial-section {
  background: var(--color-bg-1);
  padding-block: var(--section-padding);
}
.testimonial-section .container {
  margin: 0 20px;
  overflow-x: hidden;
}
.testimonial-container {
  overflow-x: hidden;
  position: relative;
}
.testimonial {
  background: var(--color-bg-2);
  background: rgba(113, 211, 201, 1);
  border-radius: 3px;
}

.avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 1rem auto 1rem;
  border: 0.8rem solid rgba(113, 211, 201, 0.8);
}
.avatar img {
  width: 100%;
}

.testimonial-info {
  text-align: center;
}
.testimonial-info h5 {
  font-size: var(--fs-5);
}
.testimonial-rating {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.testimonial-body {
  background: var(--clr-primary);
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
  position: relative;
}
.testimonial-body::before {
  content: "";
  display: block;
  background: linear-gradient(
    135deg,
    transparent,
    var(--clr-primary),
    var(--clr-primary),
    var(--clr-primary)
  );
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  top: -1.5rem;
  transform: translateX(-50%) rotate(45deg);
}

.swiper-pagination {
  z-index: 1;
}
/* ----------Testimonials-End---------- */

/* *********** CTA ****************** */
.cta {
  background: linear-gradient(to bottom, var(--white) 50%, var(--black-3) 50%);
  padding-block: var(--section-padding);
  /* border: 2px solid red;
  width: 100%; */
}

.cta-card {
  background: var(--clr-primary);
  padding: 50px 25px;
  box-shadow: var(--shadow-2);
}

.cta-card .card-content {
  max-width: max-content;
  margin-inline: auto;
  margin-bottom: 30px;
}

.cta-card .card-title {
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 15px;
}

.cta-card .card-text {
  color: var(--white);
  font-size: var(--fs-5);
  line-height: 1.8;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow-2);
  border-radius: 2px;
  margin-inline: auto;
}

.cta-btn:is(:hover, :focus) {
  background: none;
  color: var(--white);
  border-color: transparent;
}

.cta-btn::before {
  background: var(--black);
}

/* ************* FOOTER ****************** */
.footer {
  background: var(--black-3);
  color: var(--white);
  padding-bottom: 68px;
  /* border: 2px solid red;
  width: 100%; */
}

.footer .container {
  padding-inline: 30px;
}
.footer a {
  color: inherit;
}

.footer-top {
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-brand {
  margin-bottom: 50px;
}
.footer-brand .logo {
  width: 100px;
  margin-bottom: 15px;
}

.footer-brand .logo img {
  width: 170px;
  border-radius: 2px;
}
.section-text {
  font-size: var(--fs-5);
  line-height: 1.8;
  max-width: 30ch;
  margin-bottom: 30px;
}

.contact-list {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact-link ion-icon {
  font-size: 18px;
}
.contact-link :is(address, span) {
  font-size: var(--fs-5);
  transition: var(--transition);
}
.contact-link:is(:hover, :focus) span {
  color: var(--clr-primary);
}

.social-list {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-list a {
  background: var(--white);
  padding: 0.4rem;
  border-radius: 3px;
  font-size: 0.9rem;
  transition: all 0.25s;
}
.social-list ion-icon {
  color: var(--black-1);
  font-size: 18px;
}
.social-list a:is(:hover, :focus) {
  background: var(--clr-primary);
}
.social-list a:hover ion-icon {
  color: var(-white);
}

.footer-list {
  margin-bottom: 50px;
}
.footer-list-title {
  font-family: var(--ff-poppins);
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  margin-bottom: 15px;
}
.footer-link {
  font-size: var(--fs-5);
  padding-block: 10px;
}
.footer-link:is(:hover, :focus) {
  color: var(--clr-primary);
}

/* contact buttons */
.contacts {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.contact-list .contact-buttons {
  background: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 3px;
  border: 1px solid #07e938;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 3px;

  display: flex;
  gap: 5px;
  align-items: center;
  max-width: fit-content;
  box-shadow: 0 60px 12px -19px rgba(0, 0, 0, 0.1),
    0 60px 20px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  animation: anime 1.3s infinite ease-in-out alternate;
}
.contact-list .contact-buttons:is(:hover, :focus) {
  background: var(--color-bg-4);
}
@keyframes anime {
  100% {
    transform: translateY(10px);
  }
}

.contact-buttons ion-icon {
  color: var(--black-1);
  font-size: 1.3rem;
}
.contact-buttons span {
  color: var(--black-3);
}

.contact-list .call-button {
  background: var(--white);
  margin-left: 10px;
  /*  animation */
  animation-delay: 0.4s;
}
.contacts .whatsapp-button ion-icon {
  color: #07e938;
}

/* ----------------------- */
.footer-bottom {
  background: var(--black-4);
  padding-block: 25px;
}

.copyright {
  font-size: var(--fs-5);
  text-align: center;
}
.copyright a {
  display: inline-block;
}
.copyright a:is(:hover, :focus) {
  color: var(--clr-primary);
}
