:root {
  --header-height: 80px;
}
@media screen and (max-width: 1000px) {
  :root {
    --header-height: 60px;
  }
}

.qa {
  position: relative;
  width: 100%;
}
.qa__container {
  width: 100%;
}
.qa__block {
  margin-bottom: 60px;
}
.qa__blockContainer {
  width: 92.6%;
  max-width: 1100px;
  margin: 60px auto 0;
}
.qa__items {
  padding: 12px 0;
  border-bottom: 1px solid #84cdf8;
}
.qa__items:first-child {
  border-top: 1px solid #84cdf8;
}
.qa__items--active .qa__answer {
  max-height: 2000px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.qa__items--active .qa__cross::after {
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.qa__question {
  cursor: pointer;
  position: relative;
  width: 100%;
  padding-right: 2.7%;
}
.qa__question span {
  position: absolute;
  top: 0;
  right: calc(100% + 45px);
  width: 24px;
  color: #008cd6;
  font-size: 1.875rem;
  font-weight: 700;
  display: inline-block;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .qa__question span {
    right: calc(100% + 15px);
  }
}
.qa__question small {
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .qa__question span {
    font-size: 1.5rem;
    width: 20px;
    margin-right: 20px;
  }
}
.qa__title {
  position: relative;
  font-size: 1.125rem;
  color: #008cd6;
  font-weight: 400;
  padding-right: 24px;
  line-height: 33px;
  width: calc(100% - 90px);
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .qa__title {
    width: calc(100% - 70px);
    line-height: 26px;
  }
}
.qa__cross {
  position: absolute;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
}
.qa__cross::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #00b347;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.qa__cross::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #00b347;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.qa__answer {
  width: 100%;
  overflow: hidden;
  max-height: 0px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.qa__answer span {
  position: absolute;
  top: 0;
  right: calc(100% + 45px);
  width: 24px;
  font-size: 1.875rem;
  font-weight: 700;
  color: #00b347;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .qa__answer span {
    font-size: 1.5rem;
    width: 20px;
    margin-right: 20px;
    right: calc(100% + 15px);
  }
}
.qa__answer::before {
  content: "";
  width: 100%;
  height: 15px;
  display: block;
}
.qa__answerContainer {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #00b347;
  border-bottom: 0px;
  border-left: 0px;
  border-right: 0px;
  border-style: dashed;
}
.qa__answerContainer small {
  font-weight: 400;
}
.qa__content {
  position: relative;
  width: calc(100% - 90px);
  margin-left: auto;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 1rem;
  color: #2a2a2a;
}
@media screen and (max-width: 1000px) {
  .qa__content {
    width: calc(100% - 70px);
  }
}
.qa__customized {
  word-wrap: break-word;
  width: 100%;
  max-width: 940px;
  margin: 25px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.qa__customized > img:not(.arrow) {
  width: 100%;
  max-width: 290px;
}
@media screen and (max-width: 1000px) {
  .qa__customized {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px 0px;
  }
}
.qa__imgGroup {
  width: 100%;
  height: 100%;
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.qa__imgGroup img {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .qa__imgGroup {
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    max-width: unset;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 10px;
  }
  .qa__imgGroup img {
    max-width: 120px;
  }
}
.qa .arrow {
  width: 15px;
}
@media screen and (max-width: 1000px) {
  .qa .arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.qa__close {
  cursor: pointer;
  width: 100%;
  margin: 50px auto 0;
}
.qa__close::before {
  content: "";
  width: 30px;
  height: 30px;
  border-top: 2px solid #00b347;
  border-right: 2px solid #00b347;
  display: block;
  margin: 0 auto;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}