/*****FAQ****/
.faq {
/* margin-bottom: 40px; */
border-radius: 0 16px 0 16px;
box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
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-size: 18px;
  line-height: 1.45;
  color: #000;  
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  padding-bottom: 0;
  font-weight: 700;
}
  .q-r {
  background-color: #fff;
}
.q-r:not(:last-child){
  border-bottom: solid 1px #d8dee3;
}
.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;}
  .eg-faqs h3{font-size: 12px;}
  .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;}
  .eg-faqs h3{font-size: 14px;width: 80%;}
  .r-faq {
    font-size: 15px;
    padding: 30px 70px 40px 20px;
    color: #4E6074;
    line-height: 1.25;
  }
  .q-faq span {
    width: auto;
    height: auto;
    }
}
    