/*****FAQ****/
.faq {
border-radius: 0 16px 0 16px;
overflow: hidden;
}

.eg-faqs h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #0b213a;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.eg-faqs h3{
    font-family: "Playfair Display";
    font-size: 28px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3em;
    font-style: normal;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: none;

}
  .q-r {
  background-color: #fff;
}
/* .q-r:not(:last-child){
  border-bottom: solid 1px #d8dee3;
} */
.q-r{
    border-bottom: solid 1px #fff;
  }
.q-r.q-r-open {
  background-color: rgba(216, 222, 227, 0.2);
}
.q-faq {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  padding: 35px 30px 30px 30px;
    }
.r-faq {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.36;
  padding: 0 15% 35px 30px;
  font-weight: 400;
  /* color: #797979; */
  color:  #4E6074;
  background-color: transparent;
  display: none;
  margin-top: -10px;
}  
.border-faq{
  height: 1px;
  width: 100%;
  border-bottom: 1px solid #cccccc;
}
.q-faq span {
  margin-left: auto;
  width: auto;
  height: auto;
  transform: rotate(0deg);
}
.q-faq.on span{
  transform: rotate(180deg);
}
.show-faq{
  display: block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hide-faq{
  display: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
    
@media all and (min-width: 768px) and (max-width: 980px) {
  .q-faq {
    padding: 15px 23px 15px 33px;
  }
  .eg-faqs h2{font-size: 16px;  padding-top: 30px; padding-bottom: 30px;}
  .r-faq {
    font-size: 13px;
    padding: 0 70px 20px 33px;
    color: #4E6074;
    line-height: 1.25;
  }
  .q-faq span {
    width: auto;
    height: auto;
    }
}
@media all and (max-width: 767px) {
  .q-faq {
    font-size: 14px;
    padding: 15px 23px 15px 20px;
  }
  .eg-faqs h2{font-size: 16px;  padding-top: 30px; padding-bottom: 30px;}

  .r-faq {
    font-size: 15px;
    padding: 30px 70px 40px 20px;
    color: #4E6074;
    line-height: 1.25;
  }
  .q-faq span {
    width: auto;
    height: auto;
    }
}
    