@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=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
: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);
}

h1 {
  font-size: calc(20px + 0.450625vw);
}

h2 {
  font-size: calc(24px + 0.450625vw);
}

.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 h2 {
  color: var(--mainclr);
  margin-bottom: 10px;
}
#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;
}

.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;
  }
}
@media (max-width: 412px) {
  .footer-distributed .footer-left {
    width: auto;
  }
  .footer-distributed .footer-center {
    width: auto;
  }
  .footer-distributed .footer-right {
    width: auto;
  }
}
@media (max-width: 390px) {
  .footer-distributed .footer-left {
    width: auto;
  }
  .footer-distributed .footer-center {
    width: auto;
  }
  .footer-distributed .footer-right {
    width: auto;
  }
}
@media (max-width: 360px) {
  .footer-distributed .footer-left {
    width: auto;
  }
  .footer-distributed .footer-center {
    width: auto;
  }
  .footer-distributed .footer-right {
    width: auto;
  }
}

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