@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');
*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      list-style: none;
      text-decoration: none;
    }

    :root{
      --theme-color1:#f2b62d;
      --theme-color2:#09871e;
      --theme-color3:#1d3d38;
      --theme-color4:#251a69;
    }
    .mb-20{
      margin-bottom: 20px;
    }
    .mr-30{
      margin-right: 30px;
    }
    /* Base Typography Setup for Ayurveda Website */

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  background-color: #fffef7;
  overflow-x: hidden;
}
.title2{
  text-align: center;
  color: #fff;
  h2{
    color: #fff;
  }
  p{
    width: 60%;
    margin: 0 auto 40px;
  }
}
/* Headings */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 900;
  color: var(--theme-color3);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

/* Paragraphs and Lists */

/* p {
  margin-bottom: 1.25rem;
} */
 .text-center{
  text-align: center;
 }

.mb-10{
  margin-bottom: 10px;
}

li {
  margin-bottom: 0.5rem;
}


    .section{
      padding: 60px 0;
    }
    .btn{
      display: inline-block;
      font-size: 14px;
      outline: none;
      border: none;
      cursor: pointer;
      text-align: center;
      border-radius: 4px;
      font-weight: 500;
      line-height: 50px;
      padding: 0 20px;
      min-width: 150px;
      text-align: center;
    }
    .btn-primary{
      background-color: var(--theme-color1);
      color: #fff;
    }
    .btn-secondary{
      background-color: var(--theme-color2);
      color: #fff;
    }
    img{
      width: 100%;
    }
   .title{
  text-align: center;
  h4{
    color: #fff;
    i{
        color: var(--theme-color1);
    }
  }
  h2{
    color: #fff;
  }
  p{
    color: #fff;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media(max-width:1024px){
    h1{
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
  .text-center{
    text-align: start;
  }
    h1{
        font-size: 2rem;
    }
  .btn {
    display: inline-block;
    outline: none;
    border: none;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    font-weight: 400;
    line-height: 40px;
    padding: 0 5px;
    min-width: 150px;
    text-align: center;
    font-size: 15px;
  }

  .section {
    padding: 30px 0;
  }

  h2 {
    font-size: 32px;
  }
  
}