.faq {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  justify-content: space-between;
}
.faq__title {
  margin: 0 0 10px;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.1;
  color: #005391;
  font-size: 36px;
  margin-bottom: 23px;
  width: 100%;
}
@media only screen and (max-width: 1199px) {
  .faq__title {
    font-size: 28.8px;
  }
}
@media only screen and (max-width: 991px) {
  .faq__title {
    font-size: 27px;
  }
}
@media only screen and (max-width: 767px) {
  .faq__title {
    font-size: 21.6px;
  }
}
.faq__block {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 991px) {
  .faq__block {
    margin-bottom: 20px;
    width: 100%;
  }
}
.faq__block-title {
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.3;
  color: #005391;
}
.faq__block-item {
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 5px 8px rgba(21, 23, 31, 0.1);
}
.faq__block-holder {
  padding: 15px 53px 15px 20px;
  position: relative;
  font-weight: 600;
  line-height: 1.2;
  color: #2d2d2d;
  -webkit-user-select: none;
          user-select: none;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .faq__block-holder {
    padding-right: 45px;
  }
}
.faq__block-holder:after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: #fff;
  border-radius: 50%;
  background-color: #005391;
  transform: translateY(-50%);
  content: "\f107";
}
@media only screen and (max-width: 767px) {
  .faq__block-holder:after {
    right: 10px;
    width: 25px;
    height: 25px;
  }
}
.faq__block-holder.is-active:after {
  transform: translateY(-50%) scaleY(-1);
}
.faq__block-content {
  padding: 15px 20px;
  display: none;
  border-top: 2px solid #f6f1eb;
}
.faq__block-content ul {
  margin-left: 0;
  list-style: none;
  margin-bottom: 28px;
}
.faq__block-content ul li {
  padding-left: 23px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .faq__block-content ul li {
    padding-left: 0;
  }
}
.faq__block-content ul li:before {
  position: absolute;
  top: 1px;
  left: 0;
  width: auto;
  height: auto;
  font-family: "Font Awesome 5 Pro";
  color: #8fb26b;
  background: transparent;
  content: "\f00c";
}
@media only screen and (max-width: 991px) {
  .faq__block-content ul li:before {
    top: 2px;
  }
}
@media only screen and (max-width: 767px) {
  .faq__block-content ul li:before {
    margin-right: 5px;
    position: static;
  }
}
@media only screen and (max-width: 375px) {
  .faq__block-content ul {
    margin-bottom: 15px;
  }
}
.faq__block-content p:last-child {
  margin-bottom: 0;
}
.faq__block-content p a {
  text-decoration: underline;
}
.faq__block-content p a:hover {
  text-decoration: none;
}
