@import url("https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Cinzel:wght@400..900&family=Comfortaa:wght@300..700&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..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=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

body {
  font-family: "Poppins", sans-serif;
}
:root {
  --bg-color: #008080;
}
.logo-sec {
  background-color: var(--bg-color);
  text-align: center;
  padding: 10px 0px;
}

.logo-sec img {
  width: 220px;
}

.contact-sec a {
  display: block;
  background-color: var(--bg-color);
  text-decoration: none;
  color: WHite !important;
  margin-top: 10px;
  text-align: center;
  padding: 6px 0px;
  border-radius: 5px;
}

.whatsapp-link-sec a {
  text-decoration: none;
  display: block;
  text-align: center;
  background-color: var(--bg-color);
  color: #fff;
  padding: 8px 0px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
}

.price-card-sec {
  padding: 50px 20px;
}

.price-card {
  background: #f1ead7;
  border: 2px solid var(--bg-color);
  color: #111;
  padding: 1rem 1.2rem 1.2rem 1rem;
  text-align: center;
}

.price-card p {
  background-color: var(--bg-color);
  color: #fff;
  padding: 5px;
  font-size: 17px;
  font-weight: 600;
}

.price-card h5 {
  color: #000;
  font-size: 16px;
  margin: 12px;
  font-weight: 600;
}

.price-card h4 {
  color: #000;
  font-size: 16px;
  margin: 12px;
}

.price-card h3 {
  font-size: 24px;
  text-align: center;
  color: #000;
}

.price-card a {
  display: inline-block;
  background: #19a84f;
  border: 1px solid #ddd;
  color: #fffdfd;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  margin-top: 20px;
}

footer {
  background-color: var(--bg-color);
  padding: 30px;
  position: relative;
}

footer h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  z-index: 1;
  color: #fff;
}

footer h6 {
  font-size: 18px;
  margin-bottom: 30px;
  z-index: 1;
}

footer a {
  text-decoration: none;
  background: #fff !important;
  color: var(--bg-color);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  z-index: 1;
  transition: 0.3s ease;
}
.highligjht {
  background-color: var(--bg-color);
  padding: 50px 20px;
}

.highligjht ul li {
  font-size: 16px;
  color: #333;
  padding: 12px 11px;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.highlight-point {
  font-size: 22px;
  color: var(--bg-color);
}

.banner-sec {
  position: relative;
}

/* .banner-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    178deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.1)
  );
} */

.banner-sec .box {
  position: absolute;
  top: 5%;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 100%;
  padding: 0.7rem;
  color: white;

  > h5 {
    background-color: var(--bg-color);
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    padding: 5px;
  }

  > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-color);
    border: 1px solid white;
    border-radius: 1rem;
    gap: 0 10px;
    width: 87%;
    padding: 10px 10px;

    > div:first-of-type {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      flex: 1;

      > h2 {
        font-size: 20px;
      }

      > p {
        background-color: white;
        width: fit-content;
        color: black;
        padding: 1px 5px;
        margin-bottom: 0;
      }
    }

    > span {
      height: 42px;
      width: 2px;
      background-color: white;
    }

    > div:last-child {
      flex: 1;
      padding-left: 12px;

      > span {
        color: white;
      }
      > p {
        text-transform: uppercase;
        margin-bottom: 0;
        text-align: left;
      }
      > div {
        display: flex;
        font-size: 10px;
        align-items: flex-end;

        > h2 {
          margin-bottom: 0;
        }
      }
    }
  }
}

@media (max-width: 767px) {
  .price-card h3 {
    font-size: 22px;
  }

  .banner-sec .box {
    color: black;
  }

  .banner-sec::before {
    content: unset;
  }

  .banner-sec .box {
    position: relative;
    > div {
      flex-direction: column;
      color: white;
      > span {
        height: 2px;
        width: 42px;
        background-color: white;
        margin: 10px 0;
      }
    }
  }
}
