.dentalservice-container{
    margin: 0 auto;
    font-size: 18px;
    
  background-image:url("../image3.jpg");
  background-size: 100vw 100vh;
  /* background-attachment:fixed; */
  background-position: left;
  
  background-size: cover;
}

.dentalservice-banner{
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
}

.dentalservice{
    display: flex;
    flex-direction: column;
    width: 50%;
}

.dentalservice-name{
    font-size: clamp(3rem, 5vw, 6rem);
}
.dentalservice-shortDesc{
    font-size: 18px;
}
.dentalservice-img>img{
    width: 100%;
    max-width: 450px;
    height: 350px;
    object-fit: cover;
    border-radius: 12%;
    padding: 20px 20px 0px 20px;
}

.dentalservice-data{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dentalservice-description{
    margin: 0px 30px 20px 30px;
}

.dentalservice-description ol,
.dentalservice-description ul,
.dentalservice-description p,
.dentalservice-description li{
    list-style: revert;
    padding: revert;
    margin: revert;
    line-height: 30px;
}

.dentalservice-description strong{
    color: rgb(1, 16, 89);
}

.dentalservice-description ul>li::marker{
    font-size: 30px;
    background-color: rgb(228, 64, 64);
}
.dentalservice-description ul>li {
    list-style-image: url('../tooth.svg');
}

.dentalservice-description p{
    text-align: justify;
}

/* gallery */
.dental-service-gallery {
    display: flex;
    flex-direction: column; 
    align-items: center;   
}

.dental-service-images {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 10px;
  }
  
  .dental-service-images>img {
    /* width: 100%; */
    max-width: 350px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .dental-service-images>img:hover {
    transform: scale(1.05);
  }
  
  .dental-service-images::after {
    content: "";
    width: 350px;
  }

  /* gallery ends */

@media screen and (max-width: 700px) {
    .dentalservice {
      width: 80%;
      padding-top: 30px;
    }
    .dentalservice-container{
      background-position: center;
    }
}  
/* ======================================
        FAQ Section
======================================== */
.faq{
    /* background-color: aliceblue; */
    justify-content: center;
    padding-bottom: 5%;
} 

.faq-title{
    font-size: 50px;
    text-align: center;
    margin-top: 50px;
}

.faq-questions-container{
    width: 85%;
    margin: 0 auto;
}

.faq-question{
    border-bottom: 1px solid #fff;
    padding: 1.25px;
    margin: 10px;
    background-color: #308ffb;
    border-radius: 25px;
}

.faq-question>button{
    width: 100%;
    background-color: #308ffb;
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    border:none;
    outline: none;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    border-radius: 25px;
}
.faq-question>p{
    font-size: 20px;
    /* margin:  10px; */
    max-height: 0;
    opacity: 0;
    line-height: 1.5;
    overflow: hidden;
    transition: all 0.6s ease;
}
.d-arrow{
    transition: transform 0.5s ease-in ;
    color: #fff;
}

/*add this class when click*/
.faq-question>p.show{
    max-height: 300px; 
    opacity: 1;
    padding: 0px 24px 12px 24px;
}

.faq-question>button .d-arrow.rotate{
    transform: rotate(180deg);
}