@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");
#massage {
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
#massage img {
  max-width: 100%;
  height: auto;
}
#massage .massage-intro {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}
#massage .massage-section {
  margin-top: 20px;
  padding: 10px;
  border-bottom: 1px solid rgb(234.1489361702, 192.4468085106, 177.8510638298);
}
#massage .massage-section h3 {
  color: #6c9894;
  font-size: 22px;
  margin-bottom: 5px;
}
#massage .massage-section p {
  font-size: 16px;
  line-height: 1.5;
}
#massage .massage-section .price {
  font-weight: bold;
  color: #333;
  font-size: 18px;
}
#massage ul {
  padding-left: 20px;
}
#massage ul li {
  list-style-type: circle;
  font-size: 16px;
  margin: 5px 0;
}
#massage .Btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 15px;
  background: #6c9894;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
#massage .Btn:hover {
  background: rgb(137.988, 173.012, 169.828);
}

#yoga {
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
#yoga img {
  max-width: 100%;
  height: auto;
}
#yoga .yoga-class {
  margin-top: 20px;
  padding: 10px;
  border-bottom: 1px solid rgb(234.1489361702, 192.4468085106, 177.8510638298);
}
#yoga .Btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 15px;
  background: #6c9894;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
#yoga .Btn:hover {
  background: rgb(137.988, 173.012, 169.828);
}

#yoga-online {
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
#yoga-online img {
  max-width: 100%;
  height: auto;
}
#yoga-online .Btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 15px;
  background: #6c9894;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
#yoga-online .Btn:hover {
  background: rgb(137.988, 173.012, 169.828);
}

#workshops {
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
  margin: auto;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
#workshops img {
  max-width: 100%;
  height: auto;
}
#workshops .Btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 15px;
  background: #6c9894;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
#workshops .Btn:hover {
  background: rgb(137.988, 173.012, 169.828);
}

:root {
  --mainclr: #6c9894;
  --secondclr: #d0efe1;
}

* {
  margin: 0;
  padding: 0;
  transition: all 0.2s;
  text-decoration: none;
  font-family: "Open Sans", serif;
  box-sizing: border-box;
  outline: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

p {
  font-size: calc(13px + 0.250625vw);
}

.header {
  padding: 2rem 7%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #6c9894, #d0efe1);
  z-index: 1000;
}
.header #logo {
  color: black;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
}
.header .navbar #wahanda-online-booking-widget {
  border-radius: 8px;
  margin-left: 10px;
}
.header .navbar a {
  color: black;
  margin-left: 1.5rem;
  font-size: 1.5rem;
  position: relative;
}
.header .navbar a:hover {
  color: orange;
}
.header .navbar a:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  background-color: black;
  transition: 0.5s;
  height: 2px;
  margin-top: 5px;
  width: 0;
}
.header .navbar a:hover:after {
  width: 100%;
  color: orange;
}
.header .navbar.active {
  top: 100%;
}
.header .icon div {
  margin-left: 1.5rem;
  font-size: 2rem;
  cursor: pointer;
}
.header .icon div:hover {
  color: orange;
}
.header .icon #menubar {
  display: none;
}
.header .search-form {
  position: absolute;
  top: 100%;
  left: 100%;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: var(--mainclr);
}
.header .search-form .inner-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 800%;
}
.header .search-form .inner-form input {
  padding: 1.5rem;
  width: 100%;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid black;
  color: white;
  margin-top: 1rem;
}
.header .search-form .inner-form input::placeholder {
  color: white;
}
.header .search-form.active {
  left: 0;
}
.header .searchbar {
  position: absolute;
  width: 100%;
  height: 100vh;
  left: -100%;
  right: 0;
  top: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--mainclr);
}
.header .searchbar .inner-searchbar {
  width: 80%;
}
.header .searchbar .inner-searchbar input {
  border: none;
  padding: 1.5rem;
  width: 100%;
  background-color: transparent;
  border-bottom: 2px solid black;
  color: white;
}
.header .searchbar .inner-searchbar input::placeholder {
  color: white;
}
.header .active {
  left: 0;
}

#home {
  padding: 10rem 7%;
  background-color: #fefefe;
}
#home .main-home {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 6%;
}
#home .main-home .inner-home {
  flex: 1 1 45rem;
  text-align: center;
}
#home .main-home .inner-home img {
  width: 100%;
}
#home .main-home .inner-home .inner-content h1 {
  font-size: calc(24px + 0.450625vw);
  color: var(--mainclr);
  margin-bottom: 16px;
}
#home .main-home .inner-home .inner-content p {
  color: black;
  margin-bottom: 50px;
  padding: 0 6rem;
  line-height: 1.5;
}
#home .main-home .inner-home .inner-content a {
  padding: 1rem 4rem;
  background-color: var(--mainclr);
  color: white;
  font-size: 1.5rem;
  border-radius: 25px;
  transition: 0.7s;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#home .main-home .inner-home .inner-content a:hover {
  background-color: var(--secondclr);
  color: black;
}

#services-container {
  text-align: center;
  background-color: var(--mainclr);
  padding-top: 50px;
  padding-bottom: 75px;
}
#services-container h2 {
  font-size: calc(16px + 0.450625vw);
  color: white;
  margin-bottom: 48px;
}
#services-container .service-item {
  display: inline-block;
  width: 250px;
  margin: 10px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: #fefefe;
}
#services-container .service-item img {
  width: 100%;
  border-radius: 10px;
}
#services-container .service-item h2 {
  color: black;
  font-size: 1.5em;
  margin: 10px 0;
}
#services-container .service-item p {
  font-size: 1em;
  color: #333;
}
#services-container .Btn {
  display: inline-block;
  padding: 10px 15px;
  background: var(--mainclr);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background 0.3s ease-in-out;
}
#services-container .Btn:hover {
  background: var(--secondclr);
  color: black;
}

.our-instructor {
  padding: 5rem 7%;
  background-color: #fefefe;
}
.our-instructor .main-instructor {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
  margin-top: 50px;
}
.our-instructor .main-instructor .inner-instructor {
  flex: 1 1 45rem;
}
.our-instructor .main-instructor .inner-instructor .inner-content-instructor {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.our-instructor .main-instructor .inner-instructor .inner-content-instructor h2 {
  color: var(--mainclr);
  margin: 0;
  margin-top: 25px;
}
.our-instructor .main-instructor .inner-instructor .inner-content-instructor p {
  margin: 30px 5px;
  text-align: start;
  letter-spacing: 1px;
  line-height: 1.5;
}
.our-instructor .main-instructor .inner-instructor .inner-content-instructor a {
  display: block;
  padding: 1rem 4rem;
  background-color: var(--mainclr);
  color: white;
  font-size: 1.5rem;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.7s;
}
.our-instructor .main-instructor .inner-instructor .inner-content-instructor a:hover {
  color: black;
  background-color: var(--secondclr);
}
.our-instructor .main-instructor img {
  width: 100%;
}
.our-instructor .secondary-instructor .inner-instructor .inner-content-instructor h2 {
  line-height: 1;
}
.our-instructor .secondary-instructor .inner-img {
  order: 2;
}
.our-instructor .secondary-instructor .inner-text {
  order: 1;
}

.our-gallery {
  position: relative;
  z-index: 1;
  padding: 4rem 18%;
  background-color: var(--mainclr);
}
.our-gallery .main-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
.our-gallery .main-gallery .inner-gallery {
  flex: 1 1 300px;
  position: relative;
  overflow: hidden;
}
.our-gallery .main-gallery .inner-gallery img {
  width: 100%;
  border-radius: 3%;
  height: 300px;
  object-fit: cover;
  cursor: pointer;
}
.our-gallery .main-gallery .inner-gallery .zoom-image {
  display: block;
  transition: transform 0.7s ease-in-out;
  border-radius: 3%;
}
.our-gallery .main-gallery .inner-gallery .zoom-image:hover {
  transform: scale(1.3);
  border-radius: 3%;
}

.hero {
  position: relative;
  height: 65vh;
  background-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .overlay-content {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 2rem;
}
.hero .overlay-content h1 {
  font-size: 3rem;
  color: #fff;
  transform: translateY(50px);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.hero .overlay-content p {
  font-size: 1.5rem;
  color: #ffeb3b;
}
.hero .overlay-content .cta {
  font-size: 1.2rem;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  border: none;
  background: #6c9894;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero .overlay-content .cta:hover {
  background: #6c9894;
}

/* Next section */
.feed {
  position: relative;
  padding: 6rem 7%;
}
.feed .container {
  position: relative;
  width: 60rem;
  height: 35rem;
  box-shadow: 0 1.5rem 2.5rem rgba(0, 0, 0, 0.3);
  border-radius: 0.7rem;
  margin: 50px auto;
}
.feed .container .reviewBox {
  width: 100%;
  height: 100%;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}
.feed .container .reviewBox .avatar {
  outline: 2px solid #cac7be;
  outline-offset: 0.5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  object-fit: cover;
}
.feed .container .reviewBox .box {
  text-align: center;
}
.feed .container .reviewBox .box .name {
  font-size: 2.3rem;
  letter-spacing: 1px;
}
.feed .container .reviewBox .box .job {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #0081b4;
}
.feed .container .reviewBox .text {
  font-size: 1.1rem;
  color: #8f8b81;
  font-family: sans-serif;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 2.5rem;
}
.feed .container .btn-groups {
  width: 100%;
  position: absolute;
  bottom: 1rem;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.feed .container .btn-groups .btn {
  cursor: pointer;
  border: none;
  outline: none;
  background-color: transparent;
  color: #000;
  font-size: 2.5rem;
  font-weight: bold;
}
.feed .container .btn-groups .btn:active {
  transform: scale(0.7);
}

.contact-us {
  padding: 6rem 7%;
  background-color: var(--mainclr);
}
.contact-us .main-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 50%;
  margin: 0 auto;
  gap: 15px;
}
.contact-us .main-contact .inner-contact {
  flex: 1 1 45rem;
}
.contact-us .main-contact .inner-contact h6 {
  font-size: 30px;
  color: white;
  text-align: center;
}
.contact-us .main-contact .inner-contact img {
  position: relative;
  left: 100px;
  width: 75%;
}
.contact-us .main-contact .inner-form {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.contact-us .main-contact .inner-form label {
  display: block;
  padding: 1rem;
  font-size: 1rem;
  color: white;
}
.contact-us .main-contact .inner-form input,
.contact-us .main-contact .inner-form textarea {
  padding: 1rem;
  margin: 1rem;
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
.contact-us .main-contact .inner-form input::placeholder {
  color: white;
}
.contact-us .main-contact .inner-form textarea::placeholder {
  color: white;
}
.contact-us .main-contact .inner-form button {
  border: none;
  padding: 0;
  background: none;
  font: inherit;
  color: inherit;
  outline: none;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
}
.contact-us .main-contact .inner-form button:focus {
  outline: 2px solid #007acc;
  outline-offset: 2px;
}
.contact-us .main-contact .inner-form .btn {
  padding: 1rem 4rem;
  background-color: white;
  color: black;
  font-size: 1.5rem;
  border-radius: 25px;
  width: 150px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.7s;
  display: inline-block;
  margin: 0 auto;
}
.contact-us .main-contact .inner-form .btn:hover {
  background-color: var(--secondclr);
}

.footer-distributed {
  background: #666;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 55px 50px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */
.footer-distributed .footer-left {
  width: 40%;
}

/* The company logo */
.footer-distributed h3 {
  color: #ffffff;
  font: normal 36px "Open Sans", cursive;
  margin: 0;
}

.footer-distributed h3 span {
  color: lightseagreen;
}

/* Footer links */
.footer-distributed .footer-links {
  color: #ffffff;
  margin: 20px 0 12px;
  padding: 0;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  font-weight: 400;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: #222;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */
.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: lightseagreen;
  text-decoration: none;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight: 300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */
.footer-distributed .footer-right {
  width: 20%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}

/* If you don't want the footer to be responsive, remove these media queries */
@media (max-width: 767px) {
  html {
    font-size: 55%;
  }
  html .header #logo {
    font-size: 4.5rem;
  }
  html .header .navbar {
    position: absolute;
    top: -2000%;
    width: 100%;
    height: 100vh;
    left: 0;
    right: 0;
    background-color: var(--mainclr);
  }
  html .header .navbar a {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    font-size: 2rem;
  }
  html .header .icon #menubar {
    display: initial;
  }
  html .back .main-home {
    padding-top: 7%;
  }
  html .back .main-home .inner-home .inner-content p {
    padding: 0 1rem;
  }
  html .our-instructor {
    padding: 1rem 7%;
  }
  html .our-instructor h1 {
    margin: 35px 0;
  }
  html .our-instructor .main-instructor {
    display: flex;
    flex-direction: column-reverse;
    gap: 50px;
  }
  html .our-instructor .main-instructor .inner-instructor .inner-content-instructor {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
  }
  html .our-instructor .main-instructor .inner-instructor .inner-content-instructor h2 {
    margin: 0;
    margin-top: 25px;
  }
  html .our-instructor .main-instructor .inner-instructor .inner-content-instructor p {
    margin: 10px 0 38px 0;
  }
  html .our-instructor .main-instructor .inner-instructor .inner-content-instructor a {
    text-decoration: none;
    padding: 1.5rem 5rem;
    font-size: 2rem;
  }
  html .our-instructor .secondary-instructor {
    display: flex;
    flex-direction: column;
  }
  html .feed {
    padding: 0;
  }
  html .feed .container {
    width: 35rem;
    height: 45rem;
  }
  html .feed .container .reviewBox .text {
    padding-bottom: 4rem;
  }
  html .footer-distributed .footer-left {
    width: 100%;
  }
  html .footer-distributed .footer-center {
    width: 100%;
  }
  html .footer-distributed .footer-right {
    width: 100%;
  }
}
@media (max-width: 412px) {
  .our-instructor {
    padding: 1rem 7%;
  }
  .feed {
    padding: 0;
  }
  .feed .container {
    width: 35rem;
    height: 45rem;
  }
  .footer-distributed .footer-left {
    width: auto;
  }
  .footer-distributed .footer-center {
    width: auto;
  }
  .footer-distributed .footer-right {
    width: auto;
  }
}
@media (max-width: 390px) {
  .our-instructor {
    padding: 1rem 7%;
  }
  .feed {
    padding: 0;
  }
  .feed .container {
    width: 35rem;
    height: 45rem;
  }
  .footer-distributed .footer-left {
    width: auto;
  }
  .footer-distributed .footer-center {
    width: auto;
  }
  .footer-distributed .footer-right {
    width: auto;
  }
}
@media (max-width: 360px) {
  .our-instructor {
    padding: 1rem 7%;
  }
  .feed {
    padding: 0;
  }
  .feed .container {
    width: 35rem;
    height: 45rem;
  }
  .footer-distributed .footer-left {
    width: auto;
  }
  .footer-distributed .footer-center {
    width: auto;
  }
  .footer-distributed .footer-right {
    width: auto;
  }
}

/*# sourceMappingURL=style.css.map */
