.faqs {
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .faqs {
    padding-bottom: 100px;
  }
}

.faqs .title {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  margin-bottom: 60px;
}

@media (min-width: 1200px) {
  .faqs .title {
    flex-flow: row nowrap;
    margin-left: 50px;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .faqs .title img {
    margin-right: 20px;
  }
}

.faqs .title h2 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #191919;
}

.faqs .title p {
  margin: 0;
  font-size: 14px;
  color: #191919;
}

.faqs-content {
  margin-bottom: 45px;
}

@media (min-width: 1200px) {
  .faqs-content {
    padding-left: 180px;
    width: 90%;
  }
}

.faqs-content dl {
  display: flex;
  flex-flow: column nowrap;
  padding: 15px 0;
  margin: 0;
  border-bottom: 1px solid #ededee;
}

.faqs-content dl dt {
  padding: 0 0 0 28px;
  font-size: 16px;
  color: #170049;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}

.faqs-content dl dt:before, .faqs-content dl dt:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all .5s ease 0s;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -ms-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
}

.faqs-content dl dt:before {
  background-color: #006bff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  left: 4px;
}

.faqs-content dl dt:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.9px 4px 0 4px;
  border-color: #fff transparent transparent transparent;
  left: 8px;
}

.faqs-content dl dt.active:before {
  background-color: #170049;
}

.faqs-content dl dt.active:after {
  top: 30%;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.faqs-content dl dd {
  padding: 25px 0 0 28px;
  margin: 0;
}

.faqs-content dl dd p {
  margin-bottom: 35px;
  font-size: 14px;
  color: #333333;
}

.faqs-content dl dd ul li {
  font-size: 14px;
  color: #333333;
}

@media (min-width: 1200px) {
  .faqs-observation {
    padding-left: 205px;
    width: 90%;
  }
}

.faqs-observation h4 {
  margin-bottom: 0;
  font-size: 24px;
  color: #2d2d2d;
  font-weight: 700;
}

.faqs-observation p {
  margin-bottom: 60px;
  font-size: 14px;
  color: #333333;
}

.faqs-observation p a {
  color: #006bff;
}

/*# sourceMappingURL=faqs.css.map */