/*================================================
Yoga Banner Area CSS
=================================================*/
.yoga-banner-area {
    background-color: #fdfbef;
    height: 100%;
    padding-top: 200px;
    padding-bottom: 200px;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .yoga-banner-area .banner-img {
    position: absolute;
    top: 50px;
    left: 0;
    max-width: 650px;
  }
  
  .yoga-banner-area .banner-img-shape {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    max-width: 750px;
  }
  
  .yoga-banner-area .banner-shape-left {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  
  .yoga-banner-area .yoga {
    font-size: 200px;
    color: var(--whiteColor);
    display: block;
    text-align: center;
    line-height: 1;
  }
  
  .yoga-banner-content h1 {
    font-size: 80px;
    margin-bottom: 25px;
  }
  
  .yoga-banner-content h1 span {
    color: var(--mainColor);
  }
  
  .yoga-banner-content p {
    margin-bottom: 35px;
    color: var(--blackColor);
  }
  
  /* Max width 767px */
  @media only screen and (max-width: 767px) {
     .yoga-banner-area {
          padding-top: 80px;
          padding-bottom: 80px;
      }
      .yoga-banner-area .banner-img {
          position: initial;
          text-align: center;
          margin-right: 15px;
          margin-left: 15px;
      }
      .yoga-banner-area .banner-img-shape {
          top: auto;
          bottom: 60px;
      }
      .yoga-banner-area .yoga {
          display: none;
      }
      .yoga-banner-content {
          text-align: center;
          margin-bottom: 30px;
      }
      .yoga-banner-content h1 {
          font-size: 40px;
          margin-bottom: 12px;
          margin-top: -16px;
      }
      .yoga-banner-content p {
          margin-bottom: 20px;
      }
  }
  
  /* Min width 768px to Max width 991px */
  @media only screen and (min-width: 768px) and (max-width: 991px) {
      .yoga-banner-area {
          padding-top: 80px;
          padding-bottom: 80px;
      }
      .yoga-banner-area .banner-img {
          position: initial;
          text-align: center;
          margin-right: 15px;
          margin-left: 15px;
      }
      .yoga-banner-area .banner-img-shape {
          top: auto;
          bottom: 0;
      }
      .yoga-banner-area .yoga {
          display: none;
      }
      .yoga-banner-content {
          text-align: center;
          margin-bottom: 30px;
      }
      .yoga-banner-content h1 {
          font-size: 40px;
          margin-bottom: 12px;
          margin-top: -16px;
      }
      .yoga-banner-content p {
          margin-bottom: 20px;
      }
  }
  
  /* Min width 992px to Max width 1199px */
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .yoga-banner-content h1 {
          font-size: 60px;
      }
      .yoga-banner-area .banner-img {
          max-width: 480px;
          top: 90px;
      }
      .yoga-banner-area .banner-img-shape {
          max-width: 560px;
          top: 45px;
      }
      .yoga-banner-area .yoga {
          font-size: 100px;
      }
  }