section {
  position: relative;
}
section span.highlight {
  background-color: #F05A23;
  color: #FFFFFF;
}
section h2 {
  font-size: 20px;
  color: #646565;
  font-weight: 500;
  margin-bottom: 30px;
}
section #searchfaq {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767.98px) {
  section #searchfaq {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 20px;
  }
}
section #searchfaq button {
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #646565;
  display: flex;
  align-items: center;
  margin: 0;
  margin-left: auto;
  padding: 0;
}
@media (max-width: 767.98px) {
  section #searchfaq button {
    margin-left: 0;
  }
}
section #searchfaq button:before {
  content: "";
  display: block;
  background-image: url(../assets/images/iconSearch.png);
  width: 16px;
  height: 16px;
  margin-right: 10px;
  background-position: center;
  background-size: contain;
}
section #searchfaq form {
  display: none;
}
section #searchfaq form.active {
  display: block;
}
section #searchfaq input[type=text] {
  margin-top: 20px;
  background-color: #F5F5F5;
  border: solid 1px rgba(154, 154, 154, 0.3);
  padding: 0 25px;
  line-height: 40px;
  width: 550px;
  font-size: 20px;
  color: #9A9A9A;
}
@media (max-width: 767.98px) {
  section #searchfaq input[type=text] {
    width: 100%;
    font-size: 16px;
    padding: 0 20px;
  }
}
section #searchfaq input[type=text] ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #9A9A9A;
  opacity: 1;
  /* Firefox */
}
section #searchfaq input[type=text] :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9A9A9A;
}
section #searchfaq input[type=text] ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #9A9A9A;
}
section #searchfaq input[type=submit] {
  position: absolute;
  right: 20px;
  top: 58px;
  background-color: transparent;
  border: none;
  background-image: url(../assets/images/iconFAQSearchSubmit.png);
  width: 19px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
section #topquestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
section #topquestions.search_active {
  margin-top: 100px;
}
@media (max-width: 767.98px) {
  section #topquestions.search_active {
    margin-top: 0;
  }
}
section #topquestions .question {
  flex: 0 0 100%;
  max-width: 25%;
  position: relative;
  top: 0;
  padding: 10px;
  transition: all 0.3s;
}
@media (max-width: 767.98px) {
  section #topquestions .question {
    padding-left: 0;
    padding-right: 0;
  }
}
section #topquestions .question.highlight a {
  border: solid 3px #F05A23;
}
@media (max-width: 991.98px) {
  section #topquestions .question {
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  section #topquestions .question {
    max-width: none;
  }
}
section #topquestions .question:hover {
  top: -5px;
}
section #topquestions .question:hover a {
  background-color: #EEEFF0;
  -webkit-box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.2);
}
section #topquestions .question a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background-color: #F9F9F9;
  transition: all 0.3s;
  box-shadow: none;
  min-height: 360px;
  padding: 35px 20px;
  height: 100%;
}
@media (max-width: 767.98px) {
  section #topquestions .question a {
    min-height: 300px;
  }
}
section #topquestions .question a .image {
  flex: 0 0 75px;
  display: flex;
  align-items: center;
}
section #topquestions .question a img {
  max-width: 75px;
  height: auto;
  max-height: 75px;
}
section #topquestions .question a p {
  text-align: left;
  border-top: solid 1px rgba(145, 148, 147, 0.5);
  color: #646565;
  margin-top: 20px;
  padding-top: 20px;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  section #topquestions .question a p {
    font-size: 16px;
  }
}
section #topquestions .question a .description {
  display: none;
}

.accordions {
  background-color: #F9F9F9;
  border-radius: 3px;
  padding: 0 30px 30px 30px;
}
.accordions .accordion {
  padding: 30px 0 0 0;
}
.accordions .accordion .question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
}
.accordions .accordion .question::after {
  content: "";
  display: block;
  background-image: url(../assets/images/iconAccordion.png);
  width: 10px;
  height: 6px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 8px;
  transition: all 0.3s;
}
@media (max-width: 767.98px) {
  .accordions .accordion .question::after {
    width: 15px;
    height: 9px;
    margin-top: 5px;
  }
}
.accordions .accordion .question span {
  flex: 0 0 30px;
}
.accordions .accordion .question p {
  padding-bottom: 25px;
  border-bottom: solid 1px #DEDFDE;
  flex: 1;
  margin-bottom: 0;
}
.accordions .accordion .answer {
  margin-left: 30px;
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition: all 0.3s;
}
.accordions .accordion .answer p:last-child {
  margin-bottom: 0;
}
.accordions .accordion .answer img {
  display: block;
  margin: 30px auto;
  max-width: 100%;
}
.accordions .accordion.active .question:after {
  transform: rotate(180deg);
}
.accordions .accordion.active .answer {
  opacity: 1;
  height: auto;
  visibility: visible;
  border-bottom: solid 1px #DEDFDE;
  padding-bottom: 25px;
  padding-top: 25px;
}
.accordions .accordion:last-child .question p {
  border-bottom: none;
  padding-bottom: 0;
}
.accordions .accordion:last-child .answer {
  border-bottom: none;
  padding-bottom: 0;
}

.faqs .modal {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}
.faqs .modal.active {
  display: block;
}
.faqs .modal button.iconClose {
  width: 60px;
  height: 60px;
  background-color: #F05A23;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  border: none;
  display: none;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .faqs .modal button.iconClose {
    display: block;
    width: 46px;
    height: 46px;
  }
}
.faqs .modal button.iconClose:after {
  content: "";
  display: block;
  background-image: url(../assets/images/iconClosePopup.png);
  background-size: contain;
  background-position: center center;
  width: 22px;
  height: 22px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .faqs .modal button.iconClose:after {
    width: 12px;
    height: 12px;
  }
}
.faqs .modal .box {
  background-color: #FFFFFF;
  border: solid 2px #F05A23;
  border-radius: 5px;
  width: 100%;
  max-width: 1090px;
  height: 100%;
  max-height: 660px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 40px 60px;
}
@media (max-width: 991.98px) {
  .faqs .modal .box {
    flex-direction: column;
    padding: 20px 30px;
    margin: 20px;
    width: auto;
    height: 80vh;
  }
}
.faqs .modal .box button.iconClose {
  width: 60px;
  height: 60px;
  background-color: #F05A23;
  position: absolute;
  right: -30px;
  top: -30px;
  border-radius: 100%;
  border: none;
  display: block;
}
@media (max-width: 991.98px) {
  .faqs .modal .box button.iconClose {
    display: none;
  }
}
.faqs .modal .box .left {
  flex: 0 0 100%;
  max-width: 40%;
  text-align: center;
}
@media (max-width: 991.98px) {
  .faqs .modal .box .left {
    max-width: none;
    flex: none;
  }
}
.faqs .modal .box .left p {
  font-size: 30px;
  font-weight: 500;
  color: #F05A23;
  line-height: 36px;
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .faqs .modal .box .left p {
    font-size: 18px;
    line-height: 24px;
  }
}
.faqs .modal .box .left img {
  width: 100%;
  max-width: 144px;
  height: auto;
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  .faqs .modal .box .left img {
    max-width: 107px;
    margin-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .faqs .modal .box .right {
    margin-top: 20px;
  }
}
.faqs .modal .box .right .ss-container {
  height: 600px;
  width: 100%;
  padding-right: 50px;
  display: inline-block;
}
@media (max-width: 991.98px) {
  .faqs .modal .box .right .ss-container {
    padding-right: 25px;
    height: 70%;
  }
}
@media screen and (max-width: 414px) {
  .faqs .modal .box .right .ss-container {
    height: 33%;
  }
}
.faqs .modal .box .right p {
  color: #646565;
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .faqs .modal .box .right p {
    font-size: 14px;
  }
}
.faqs .modal .box .right .ss-scroll {
  background-color: #F05A23;
  opacity: 1;
}
