@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allura&family=Oswald:wght@200;300;400;500;600;700&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  font-size: 20px;
  box-sizing: border-box;
  font-family: 'Indie Flower', cursive;
  scroll-behavior: smooth;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Indie Flower', cursive;
  margin-bottom: 0rem;
}

ul {
  margin-block-start: 0em;
  margin-block-end: 0em;
}

dl,
ol,
ul {
  margin-bottom: 0rem !important;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

:root {
  --blue: #2e3e5d;
  --green: #9bcf78;
  --darkgreen: #549b69;
  --yellow: #EEB453;
  --red: #C4241C;
  --pink: #f43760;
  --brown: #F36F3C;
  --white: #fbfbfb;
  --bg-white: #CBC9C6;
  --black: #121212;
  --orange: #f0715f;
  --light-blue: #19b5fe;
  --peach: rgb(243 150 154);
}

/* width */
::-webkit-scrollbar {
  width: 7.5px;
  opacity: 0.1;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  opacity: 0.7;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: var(--pink);
  border-radius: 10px;
}

#logonav {
  width: 84px;
}

.nav-item {
  padding: 10px 20px;
}

.coach-hero {
  height: 400px;
}

.coach-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coach-para {
  width: 60%;
}

.sep1 {
  display: block;
}

.sep3 {
  display: block;
}

.path-style-1 {
  opacity: 1;
  fill: #273a4c;
}

.path-style-2 {
  opacity: 1;
  fill: #2a3f54;
}

.path-style-3 {
  fill: rgb(34, 49, 63);
}

.path-style-4 {
  opacity: 1;
  fill: #bc4565;
}

.path-style-5 {
  opacity: 1;
  fill: #af3f5d;
}

.path-style-6 {
  fill: rgb(210, 77, 87);
}

.landing {
  background-image: url(../images/yoga-bg-01.webp);
  background-size: 100% 100%;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.landing .txtbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 700;
  padding: 15vh 10vw;
}

.landing .txtbox p {
  font-family: 'Indie Flower', cursive;
  font-size: 7rem;
  letter-spacing: -2px;
  color: var(--pink);
}


.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45vh;
  background: linear-gradient(180deg, var(--peach), var(--pink));
}

.hero-title {
  /* margin-top: 5rem; */
  text-align: center;
  color: #fff;
}

.hero-title h1 {
  color: #fff;
  margin: 0;
}

.slant {
  position: relative;
  display: block;
  padding-bottom: 30px;
  background-color: #fff;
}

@media (min-width: 768px) {
  .slant {
    padding-top: 0 !important;
  }

  .slant:before {
    content: "";
    display: block;
    height: 200px;
    margin-bottom: 50px;
    background: linear-gradient(to right bottom, var(--pink) 49.9%, transparent 50.1%);
  }
}

.slant {
  padding-top: 0 !important;
}

.slant:before {
  content: "";
  display: block;
  height: 200px;
  margin-bottom: 50px;
  background: linear-gradient(to right bottom, var(--pink) 49.9%, transparent 50.1%);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: whitesmoke;
  border-radius: 0.5rem;
  text-align: center;
}

@media (min-width: 40rem) {
  .card {
    height: 100%;
  }
}

.card p {
  margin-bottom: 0;
  font-size: 20px;
}

.card i {
  color: var(--pink);
  font-size: 3.5rem;
}

.grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 40rem) {
  .grid-container {
    padding: 0 1.25rem;
  }
}

.grid-container.full {
  width: 100%;
  padding: 0 !important;
}

.grid-container .grid-x {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

@media (min-width: 40rem) {
  .grid-container .grid-x {
    flex-direction: row;
  }
}

.grid-container .grid-x.align-left {
  justify-content: flex-start;
}

.grid-container .grid-x.align-right {
  justify-content: flex-end;
}

.grid-container .grid-x.align-justify {
  justify-content: space-between;
}

.grid-container .grid-x.align-top {
  align-items: flex-start;
}

.grid-container .grid-x.align-bottom {
  align-items: flex-end;
}

.grid-container .grid-x.align-middle {
  align-items: center;
}

.grid-container .grid-x.align-center {
  align-items: center;
  justify-content: center;
}

.grid-container .grid-x.align-stretch {
  align-items: stretch;
}

.grid-container .grid-x.grid-margin-x .cell {
  margin-left: 10px;
  margin-right: 10px;
}

.grid-container .grid-x.grid-padding-x .cell {
  padding-left: 10px;
  padding-right: 10px;
}

.grid-container .grid-x.grid-margin-y .cell {
  margin-top: 10px;
  margin-bottom: 10px;
}

.grid-container .grid-x.grid-padding-y .cell {
  padding-top: 10px;
  padding-bottom: 10px;
}

.cell {
  display: block;
  width: 100%;
}

.cell.auto {
  flex: 0 0 auto;
  width: auto;
}

.cell.grow {
  flex: 1 0 auto;
  width: auto;
}

.cell.shrink {
  flex: 0 1 auto;
  width: auto;
}

.introduction {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 3rem;
}

.intro-img {
  margin-bottom: 1rem;
  border-radius: 20px;
  width: 500px;
}

.benefit-of-yoga {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.benefit-img {
  width: 500px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.benefit-h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.img-with-para {
  display: flex;
  flex-direction: row;
}

.img-with-para li {
  display: flex;
  flex-direction: row;
}

.img-div img {
  border-radius: 20px;
  width: 500px;
}

.intro-para {
  padding: 2rem;
  width: 600px !important;
}

.introduction b {
  width: 600px;
}

.intro-h2 {
  margin-top: 4rem;
}

.introduction h3 {
  text-align: center;
}

.privacy-h3 {
  font-size: 1.2rem;
  text-align: left !important;
  width: 600px;
}

.introduction p {
  width: 600px;
}

.introduction li {
  width: 600px;
}

@media (min-width: 0rem) {
  .cell.small-1 {
    width: 8.3333%;
  }
}

@media (min-width: 0rem) {
  .cell.small-2 {
    width: 16.6666%;
  }
}

@media (min-width: 0rem) {
  .cell.small-3 {
    width: 25%;
  }
}

@media (min-width: 0rem) {
  .cell.small-4 {
    width: 33.3333%;
  }
}

@media (min-width: 0rem) {
  .cell.small-5 {
    width: 41.6666%;
  }
}

@media (min-width: 0rem) {
  .cell.small-6 {
    width: 50%;
  }
}

@media (min-width: 0rem) {
  .cell.small-7 {
    width: 58.3333%;
  }
}

@media (min-width: 0rem) {
  .cell.small-8 {
    width: 66.6666%;
  }
}

@media (min-width: 0rem) {
  .cell.small-9 {
    width: 75%;
  }
}

@media (min-width: 0rem) {
  .cell.small-10 {
    width: 83.3333%;
  }
}

@media (min-width: 0rem) {
  .cell.small-11 {
    width: 91.666612%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-1 {
    width: 8.3333%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-2 {
    width: 16.6666%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-3 {
    width: 25%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-4 {
    width: 33.3333%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-5 {
    width: 41.6666%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-6 {
    width: 50%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-7 {
    width: 58.3333%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-8 {
    width: 66.6666%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-9 {
    width: 75%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-10 {
    width: 83.3333%;
  }
}

@media (min-width: 40rem) {
  .cell.medium-11 {
    width: 91.666612%;
  }
}

@media (min-width: 64rem) {
  .cell.large-1 {
    width: 8.3333%;
  }
}

@media (min-width: 64rem) {
  .cell.large-2 {
    width: 16.6666%;
  }
}

@media (min-width: 64rem) {
  .cell.large-3 {
    width: 25%;
  }
}

@media (min-width: 64rem) {
  .cell.large-4 {
    width: 33.3333%;
  }
}

@media (min-width: 64rem) {
  .cell.large-5 {
    width: 41.6666%;
  }
}

@media (min-width: 64rem) {
  .cell.large-6 {
    width: 50%;
  }
}

@media (min-width: 64rem) {
  .cell.large-7 {
    width: 58.3333%;
  }
}

@media (min-width: 64rem) {
  .cell.large-8 {
    width: 66.6666%;
  }
}

@media (min-width: 64rem) {
  .cell.large-9 {
    width: 75%;
  }
}

@media (min-width: 64rem) {
  .cell.large-10 {
    width: 83.3333%;
  }
}

@media (min-width: 64rem) {
  .cell.large-11 {
    width: 91.666612%;
  }
}

.cell.align-self-right {
  display: flex;
  justify-content: flex-end;
}

.cell.align-self-left {
  display: flex;
  justify-content: flex-start;
}


.footer {
  width: 100%;
  padding: 40px 0px;
  max-width: 1920px;
  padding-bottom: 15px;
  background-color: #2a2a2a;
  font-size: 14px
}


.footer .footer-top .footer-info {
  margin-bottom: 30px;
}

.footer .footer-top .footer-info h3 {
  margin: 0 0 20px 0;
  line-height: 1;
  font-weight: 700;
}

.footer .footer-top .footer-info h3 a {
  font-size: 32px;
  color: var(--pink);
}

.footer .footer-top .footer-info p {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}

.footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--darkgreen);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 26px;
}


.footer .footer-top .footer-links {
  margin-bottom: 30px;
}

.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
  color: var(--pink);
}

.footer-logo {
  font-weight: 700;
  font-size: 40px;
  margin: auto 0;
  padding-left: 1.5625rem;
}

.footer-nav {
  width: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 35px;
  margin-bottom: -15px;
}

.social-link {
  margin-top: -4.0625rem;
}

.footer-title {
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px;
  margin-left: -5px;
}

.copyright-bassadv {
  text-align: center;
  color: white;
  background: #2a2a2a;
  padding: .625rem;
}

.footer-nav-item {
  text-align: left;
  margin: 0;
  margin-bottom: 5px;
}

.footer-nav-link {
  font-size: .9375rem;
  width: 100%;
  text-align: left;
  margin-left: -5px;
}

.footer-nav-list {
  list-style: none;
}

.lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  /* border: 2px solid #00FF00; */
  padding: 0 25px;
}

.fa-youtube:hover {
  color: red;
}

.fa-instagram:hover {
  /* border: 2kpx solid red; */
  color: #d6249f;
  color: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  /* box-shadow: 0px 3px 10px rgba(0, 0, 0, .25); */
}

.link {
  text-decoration: none;
  font-family: inherit;
  color: inherit;
}

.social-nav-container {
  padding: .625rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.social-nav-list {
  gap: 10%;
  width: 100vw;
  max-width: 300px;
  margin: auto;
  margin-top: 1.125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
}

.social-nav-item {
  list-style-type: none;
  font-size: 25px;
  background: none;
}

.social-nav-item:nth-child(odd):hover {
  list-style-type: none;
  color: rgb(60, 142, 242);
}

.logo-container {
  margin-top: 1.125rem;
  max-width: 31rem;
  font-size: .75rem;
  max-width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright {
  margin-top: 1.125rem;
}

.logo {
  max-width: 60px;
  padding-left: 10px;
}

.invest-btn {
  background-color: #d6249f;
}

@media screen and (max-width: 1100px) {
  .intro-para {
    width: 400px !important;
    padding: 1rem;
  }
}

@media screen and (max-width: 1000px) {
  .coach-hero {
    height: 500px;
  }
}

@media screen and (max-width: 920px) {
  .img-with-para {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .intro-para {
    width: 400px !important;
    padding: 0rem;
    padding-top: 1rem;
    width: 600px !important;
  }
}

@media screen and (max-width: 768px) {
  .introduction {
    /* margin-top: 3rem; */

    .slant:before {
      content: "" !important;
      display: block !important;
      height: 700px !important;
      margin-bottom: 50px !important;
      background: linear-gradient(to right bottom, var(--pink) 49.9%, transparent 50.1%) !important;
    }
  }

  .footer-nav {
    flex-direction: column;
  }

  /* .footer {
      margin-top: calc(100% + 180px);
    } */

  .footer-logo {
    padding: 0;

  }

  .footer-content {
    margin-top: .9375rem;
  }

  .footer-upper {
    margin-left: .9375rem;
    flex-direction: column;
  }

  .lower {
    margin: 0 auto;
  }

  .footer-container {
    height: 480px;
    width: 100%;
  }

  .social-nav-list {
    margin-left: -7%;
    justify-content: center;
  }

  .logo-container {
    margin: 0 auto;
  }

  .copyright {
    margin: 0 auto;
  }

  .introduction h3 {
    margin-top: 2rem;
  }
}


.coachDetails {
  background-color: rgb(210, 77, 87);
  padding-top: 50px;
  padding-bottom: 40px;
}

.timeline {
  position: relative;
  padding-left: 4rem;
  margin: 0 0 0 30px;
  color: white;
}

.timeline .timeline-container {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline .timeline-container .timeline-icon {
  position: absolute;
  left: -88px;
  top: 4px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  background: #4f537b;
}

.timeline .timeline-container .timeline-icon i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.timeline .timeline-container .timeline-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.timeline .timeline-container .timeline-body {
  background: #27293d;
  border-radius: 3px;
  padding: 20px 20px 15px;
  box-shadow: 1px 3px 9px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.timeline .timeline-container .timeline-body:before {
  content: "";
  background: inherit;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: -10px;
  transform: rotate(45deg);
  border-radius: 0 0 0 2px;
}

.timeline .timeline-container .timeline-body .timeline-title {
  margin-bottom: 1.4rem;
}

.timeline .timeline-container .timeline-body .timeline-title .badge {
  background: #4f537b;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: bold;
}

.timeline .timeline-container.primary .badge,
.timeline .timeline-container.primary .timeline-icon {
  background: #1d8cf8 !important;
}

.timeline .timeline-container.info .badge,
.timeline .timeline-container.info .timeline-icon {
  background: #11cdef !important;
}

.timeline .timeline-container.success .badge,
.timeline .timeline-container.success .timeline-icon {
  background: #00bf9a !important;
}

.timeline .timeline-container.warning .badge,
.timeline .timeline-container.warning .timeline-icon {
  background: #ff8d72 !important;
}

.timeline .timeline-container.danger .badge,
.timeline .timeline-container.danger .timeline-icon {
  background: #fd5d93 !important;
}

@media only screen and (max-width: 700px) {
  .privacy-h3 {
    width: 450px;
  }

  .introduction p {
    width: 450px;
  }

  .introduction b {
    width: 450px;
  }

  .intro-para {
    width: 450px !important;
  }

  .introduction li {
    width: 450px;
  }
}

@media only screen and (max-width: 650px) {
  .coach-hero{
    height: 600px;
  }
}

@media only screen and (max-width: 550px) {
  .introduction p {
    width: 350px;
  }

  .coach-hero{
    height: 700px;
  }

  .privacy-h3 {
    width: 350px;
  }

  .introduction b {
    width: 350px;
  }

  .intro-para {
    width: 350px !important;
  }

  .img-div img {
    width: 350px;
  }

  .intro-img {
    width: 350px;
  }

  .benefit-h2 {
    font-size: 1.25rem;
  }

  .benefit-img {
    width: 350px;
  }

  .introduction li {
    width: 350px;
  }
}

@media only screen and (max-width: 450px) {
  .coach-hero{
    height: 700px;
  }
}

@media only screen and (max-width: 400px) {
  .coach-hero{
    height: 800px;
  }

  .img-div img {
    width: 230px;
  }

  .intro-img {
    width: 230px;
  }

  .benefit-img {
    width: 230px;
  }

  .benefit-h2 {
    font-size: 1rem;
  }

  .introduction p {
    width: 210px;
    /* font-size: 0.9rem; */
  }

  .privacy-h3 {
    width: 210px;
    /* font-size: 0.9rem; */
  }

  .introduction b {
    width: 210px;
    /* font-size: 0.9rem; */
  }

  .intro-para {
    width: 210px !important;
    /* font-size: 0.9rem; */
  }

  .introduction li {
    width: 210px;
  }
}

@media only screen and (max-width: 350px) {
  .coach-hero{
    height: 900px;
  }
}

@media only screen and (max-width: 300px) {
  .coach-hero{
    height: 1000px;
  }
  .introduction p {
    width: 200px;
  }

  .privacy-h3 {
    width: 200px;
  }

  .introduction li {
    width: 200px;
  }

  .introduction a {
    word-break: break-word;
    width: 200px;
    margin-top: 1rem;
    text-align: center;
  }

  .lower {
    justify-content: center !important;
  }

  .social-nav-container {
    padding: 0px;
  }
}

@media only screen and (max-width: 280px) {
  .coach-hero{
    height: 1100px;
  }
}