@font-face {
  font-family: MADESaonara;
  src: url(../fonts/woff/MADESaonara.woff);
}
@font-face {
  font-family: PlayfairDisplay-Regular;
  src: url(../fonts/woff/PlayfairDisplay-Regular.woff);
}
@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/woff/Poppins-Bold.woff);
}
@font-face {
  font-family: Poppins-Regular;
  src: url(../fonts/woff/Poppins-Regular.woff);
}

/* GLOBAL CSS STARTS */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: normal;
}
img {
  max-width: 100%;
}
.btn {
  padding: 8px 40px;
  letter-spacing: 0.86px;
  border-radius: 50px;
  border: 1px solid;
  cursor: pointer;
  transition: 0.3s all ease-in;
}
.btn-primary {
  background-color: transparent;
  color: #84a59d;
  border-color: #84a59d;
}
.page-container {
  max-width: 700px;
  margin: 0 auto;
}
.title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  margin-top: -30px;
}
.title-box .title-main {
  letter-spacing: 0.78px;
  color: #84a59d;
  font-family: "Playfair Display";
  font-weight: normal;
  font-size: 38px;
}
/* GLOBAL CSS ENDS */

/* HERO CSS STARTS */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  /* height: 100vh; */
  display: flex;
  align-items: center;
  flex-direction: column;
  /* justify-content: center; */
  text-align: center;
  /* overflow: hidden; */
  padding: 0 40px;
}
.hero-content {
  z-index: 1;
  height: 50%;
}
.hero-content .hero-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-top: 0;
  color: #84a59d;
  margin-bottom: 15px;
  font-weight: normal;
}
.hero-content p {
  font-family: "Playfair Display", serif;
  color: #2f4858;
  font-size: 16px;
}
.hero-flower {
  position: relative;
  top: -60px;
  right: -165px;
}
.hero-wrapper .hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.hero-wrapper .hero-shapes .shape-top {
  position: absolute;
  top: 0;
  left: 0;
}
.hero-wrapper .hero-shapes .shape-right {
  position: absolute;
  right: 0;
  bottom: 20%;
}
/* HERO CSS ENDS */

/* SERVICES STARTS */
.service-wrapper {
  padding: 40px;
  padding-top: 0px;
  /* overflow: hidden; */
}
.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.service-card {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 160px;
  border-radius: 12px;
  background-image: linear-gradient(to right, #cec0af4f, #84a59dbf);
  cursor: pointer;
  transition: height 2s ease-in;
}
.service-card .overlay {
  position: relative;
}
.service-card .service-title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #ffffff;
  position: absolute;
  bottom: 15px;
  right: 19px;
  z-index: 1;
  text-align: center;
  margin: 5px 0px;
  transition: bottom 1s ease-in;
  font-family: "Playfair Display";
}
.service-card .service-list {
  list-style: none;
  padding: 0px 30px 0px;
  margin: 0;
  z-index: 1;
  position: relative;
  display: block;
  margin-bottom: 70px;
}
.service-card .service-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #fff;
  padding: 15px 0px;
}
.service-card .service-list li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.service-card .service-list li h4 {
  margin: 0px;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: bold;
}
.service-card .service-list li p {
  font-size: 16px;
  color: #fff;
  margin: 0;
}
.service-card .service-list li .right {
  text-align: right;
}
.service-card .btn-primary {
  background-color: #fff;
  color: #84a59d;
  font-weight: bold;
}
/* SERVICES ENDS */

/* RESPONSIVE */
@media screen and (min-width: 1200px) {
  .service-card {
    min-height: 240px;
  }
}

@media screen and (max-width: 767px) {
  .btn-wrapper {
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
  }
  .hero-wrapper .hero-content {
    padding-bottom: 100px;
  }
  .hero-flower {
    top: -51px;
    right: -90px;
    text-align: right;
  }
  .shape-bottom {
    bottom: -107px !important;
  }
  .bottom-img-floating {
    right: 0 !important;
  }
}

.inactive {
  display: none;
}
