/*  accordion for faq  ==================================================================== */
.accordion-faq {
  width: 100%;
}
ul.accordion-faq {
	list-style-type: none;
	margin:0;
	padding:0;
}
.accordion-faq .link {
  cursor: pointer;
  padding: 22px 0;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans Georgian", sans-serif;
  position: relative;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #c5d0d9 !important;
}
.accordion-faq .link:hover {
  color:#1FA4D9;
}



.accordion-faq li:last-child .link { border-bottom: 0; }


.accordion-faq li svg {
  color:#1FA4D9;
  margin:0 14px 0 0;
  font-size:18px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion-faq li i.fa-chevron-down {

}

.accordion-faq li.open .link { color: #1FA4D9; }

.accordion-faq li.open i { color: #1FA4D9; }

.accordion-faq li.open svg.fa-chevron-down {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}


.submenu {
  display: none;
  background: #EBF2F7;
    padding: 22px 32px;
    -webkit-border-bottom-right-radius: 12px;
-webkit-border-bottom-left-radius: 12px;
-moz-border-radius-bottomright: 12px;
-moz-border-radius-bottomleft: 12px;
border-bottom-right-radius: 12px;
border-bottom-left-radius: 12px;
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 27px;
     font-family: "Noto Sans Georgian", sans-serif;
     color:#000;
     cursor: default;
}
.faq_header_content {
  font-weight: 500;
}
.faq_header_subcontent {
  margin:20px 0;
  background: #fff;
  padding:12px 20px;
  border-radius: 12px;
}

.faq_cats {
  margin:50px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq_cats a {
  padding:0 0 20px 0;
  color: #475157;
  border-bottom: 3px solid transparent;
}
.faq_cats a:hover {
  color: #000;
}
.faq_cats a.active {
  font-weight: 700;
  color: #000;
  border-bottom: 3px solid #1FA4D9;
  pointer-events: none;
}