h1 {
      text-align: center;
      margin-bottom: 20px;
      font-family: Arial, sans-serif;
    }

    .faq-wrapper {
      width: 60%;
      margin: 0 auto;
    }

    .faq-container {
      background-color: white;
      color: black;
      border-radius: 20px;
      box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
      margin: 20px 0;
    }

    .faq-question {
      font-size: 1.2rem;
      font-weight: 600;
      padding: 20px 80px 20px 20px;
      position: relative;
      display: flex;
      align-items: center;
      cursor: pointer;
    }

    .faq-question::after {
      content: "\002B";
      font-size: 2.2rem;
      position: absolute;
      right: 20px;
      transition: 0.2s;
    }

    .faq-question.active::after {
      transform: rotate(45deg);
    }

    .faq-answercont {
      max-height: 0;
      overflow: hidden;
      transition: 0.3s;
    }

    .faq-answer {
      padding: 0 20px 20px;
      line-height: 1.5rem;
    }

    .faq-question.active+.faq-answercont {
      max-height: 500px;
      /* expanded state */
    }

    @media screen and (max-width: 790px) {
      html {
        font-size: 14px;
      }

      .faq-wrapper {
        width: 90%;
      }
    }








    .float-whatsapp {
      position: fixed;
      width: 50px;
      height: 50px;
      bottom: 170px;
      right: 30px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 20px;
      z-index: 100;
    }

    .my-float-whatsapp {
      margin-top: 16px;
    }

    .float-call {
      position: fixed;
      width: 50px;
      height: 50px;
      bottom: 100px;
      right: 30px;
      background-color: #db1616;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 20px;
      z-index: 100;
    }

    .my-float-call {
      margin-top: 16px;
    }

    /* Remove hover effects */

    .float-whatsapp:hover,
    .float-call:hover {
      color: #FFFFFF !important;
    }



    .owl-nav {
        display: none
    }