.page_content_wrapper {
    width: calc(100% - 20%);
    display: flex;
    flex-direction: column;
}

.page_content_wrapper h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 2.6rem;
}

.second_sub_header {
    font-size: 1rem;
    color: #9090A1;
}

.third_sub_header {
    font-size: 0.8rem;
    color: #9090A1;
}

.bold_text {
    font-weight: 600;
}

.mg_0 {
    margin: 0;
}

.line_hight_normal {
    line-height: normal !important;
}

.para_normal {
    font-size: 0.8rem;
    line-height: 1.4rem;
    margin: 8px 0;
    color: #707085;
}

.separator {
    width: 100%;
    height: 1px;
    background-color: #e0e0e7;
    margin: 8px 0;
}

.box_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


.box_wrapper a{
  text-decoration: none;
  padding: 16px;
  border: 2px solid #F2F3F7;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  width: 270px;
  height: 215px;
  margin: 12px;
  transition: all 500ms;
}

.box_wrapper a h5, p{
  color: #000000;
}


.box_item {
    padding: 16px;
    border: 2px solid #F2F3F7;
    background-color: #ffffff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    width: 270px;
    height: 215px;
    margin: 12px;
}

.loader_active .box_item {
    display: none;
}

.box_desc {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 80%;
    overflow: hidden;
}

.box_desc p {
    font-size: 0.8rem;
}

.box_extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 20%;
    border-top: 1px solid #F2F3F7;
    padding-top: 16px;
}

.price_txt {
    font-size: 0.8rem;
    font-weight: 600;
}

.click_button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 8px;
    border-radius: 20px;
    border: none !important;
    min-width: 120px;
}



.type-effect {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid black;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: black;
    }
}


.blinking-cursor {
    border-right: 2px solid black;
    display: inline-block;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}


.accordion_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    margin: 8px 0;
}

.accordion_item .accordion_header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 1px 1px 6px 0px #dfdfdf;
}

.accordion_header .icon{
    width: 25px;
    height: 25px;
 
}

.accordion_header .icon img{
    width: 100%;
    height: 100%;
    transition: all 500ms;
}

.accordion_item .accordion_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #e1e1e1;
    padding: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: all 500ms;
    height: 0;
}

.accordion_item .accordion_body p{
    opacity: 0;
    font-size: 0.8rem;
    line-height: 1.4rem;
    margin: 8px 0;
    color: #707085;
    display: none;
}

.accordion_item_open .accordion_body{
    height: auto;
    padding: 16px;
}

.accordion_item_open .accordion_body p{
   opacity: 1;
   display: block;
}

.accordion_item_open .icon img{
    transform: rotate(90deg);
}

.faqSection_loader_wrapper{
  display: none;
  flex-direction: column;
  width: 100%;
}

.loader_active .accordion_item{
    display: none;
}

.loader_active .second_sub_header{
    display: none;
}

.loader_active .para_normal{
    display: none;
}


.loader_active .faqSection_loader_wrapper{
    display: flex !important;
}

.details_paragraph{
    font-size: 0.8rem;
    margin:4px;
}


.table-container {
    width: auto;
    margin: 20px auto;
    overflow-x: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
  }
  
  table {
    border-collapse: collapse;
 width: 100%;
  }
  
  thead {
    background-color: #7e7e7e;
    color: #fff;
  }
  
  thead th {
    text-align: left;
    padding: 12px;
  }
  
  tbody tr:nth-child(even) {
    background-color: #f2f2f2;
  }
  
  tbody tr:hover {
    background-color: #f1f1f1;
  }
  
  td, th {
    padding: 8px;
    font-size:0.8rem;
    border: 1px solid #ddd;
  }
  
  td {
    text-align: left;
  }
  
  @media (max-width: 600px) {
    table, thead, tbody, th, td, tr {
      display: block;
    }
  
    thead tr {
      display: none;
    }
  
    tbody tr {
      margin-bottom: 10px;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 12px;
      background-color: #fff;
    }
  
    td {
      display: flex;
      justify-content: space-between;
      padding: 8px;
    }
  
    td::before {
      content: attr(data-label);
      font-weight: bold;
      flex-basis: 50%;
      text-align: left;
    }
  
    td[data-label]:before {
      content: attr(data-label);
    }
  }



  .section-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: space-between;
  }
  
  .section {
    flex: 1;
    min-width: 300px;
    padding: 20px;
  }
  
  .section h3 {
    margin-bottom: 15px;
  }
  
  .section ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .section ul li {
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .section-container {
      flex-direction: column;
    }
  }



  .accordion_mini {
    max-width: 100%;
  }
  
  .accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
  }
  
  .accordion-header {
    width: 100%;
    padding: 15px;
    text-align: left;
    border: none;
    background: #fafafa;
    color: #000000;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
  }
  
  .accordion-content {
    padding: 15px;
    background: #f9f9f9;
    display: none;
    font-size: 14px;
    color: #333;
    border-top: 1px solid #ddd;
  }
  
  .accordion-content p {
    margin: 0;
  }
  
  .whatsapp_contact{
          display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
  }
  
  
  .mobile-header{
      display:none;
      font-weight: bold;
  }
  
  @media (max-width:600px){
       .mobile-header{
      display:block;
 
  } 
  
      td::before {
          display:none;
      }
  }