.faq-section{
  padding: 80px 0;
}
.faq-row {
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
}
.faq-col {
    padding-left: 15px;
    padding-right: 15px;
}

.faq-col.left-col {
    width: 33%;
}

.faq-col.right-col {
    width: 67%;
    position: relative;
}

span.arrow {
    height: 15px;
    width: 15px;
    border-left: 2px solid #004B8B;
    border-bottom: 2px solid #004B8B;
    transform: rotate(315deg);
    display: block;
    margin-left: 15px;
    margin-top: 6px;
    margin-right: 3px;
    overflow: hidden;
  transition: all 0.3s ease;
}

.faq h4{
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  line-height: 34px;
  color: #002C76;
  margin-bottom: 15px;
  cursor: pointer;
  transition: color 0.5s ease;
  font-weight: 400;
}

.faq.active h4{
  color: #22B8B0;
  font-weight: 600;
}

.faq.active span.arrow {
border-color: #22B8B0;
  transform: rotate(135deg);
  margin-top: 16px;
}

.faq p{
  display: none;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 28px;
}


.faq:first-child p{
  display: block;
}

.faq+.faq{
margin-top: 15px;
}

.faq{
overflow: hidden;
}


@media(max-width: 1199px){

}


@media(max-width: 991px){
.faq-row {
    flex-direction: column;
}
  .faq-col.left-col {
    width: 100%;
}
.faq-col.right-col {
    position: relative;
    width: 100%;
}  
.faq h4 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
}

element.style {
}
.faq:first-child p {
    display: block;
}
.faq p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
}
.faq+.faq {
    margin-top: 10px;
}  
  
}


@media(max-width: 767px){
.faq-section{
  padding: 60px 0;
}
.faq p {
    font-size: 14px;
    line-height: 24px;
}  
.faq h4 {
    font-size: 20px;
    line-height: 30px;
}

}


@media(max-width: 575px){
.faq-section{
  padding: 40px 0;
}
.faq p {
    font-size: 13px;
    line-height: 19px;
}  
.faq h4 {
    font-size: 18px;
    line-height: 28px;

}