.faq-active .faq-box-question-arrow {
  transform: rotate(180deg);
  opacity: 0.6;
}
.faq-box {
  margin: 1vh auto;
  width: 90%;
}
@media only screen and (max-width: 700px) {
  .faq-box {
    width: 100%;
  }
}
.faq-box-question {
  background: #EDF4F8;
  display: flex;
  margin: auto;
  align-items: center;
  padding: 12px 15px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 20px;
  gap: 5%;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  color: #1D275F;
  user-select: none;
}
.faq-box-question:hover {
  cursor: pointer;
}
.faq-box-question:hover .hp-faqs-box-question-arrow {
  opacity: 1;
}
.faq-box-question-circle {
  width: 60px;
  height: 60px;
  border-radius: 70%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.faq-box-question-circle img {
  max-width: 70%;
  max-height: 40px;
  margin-right: -10px;
}
.faq-box-question span {
  width: 80%;
  color: black;
  font-weight: 700;
  font-size: 22px;
  margin-left: 8%;
}
@media only screen and (max-width: 700px) {
  .faq-box-question span {
    width: 60%;
    text-align: center;
  }
}
.faq-box-question-arrow {
  width: 40px;
  height: 40px;
  margin-right: 2%;
  transition: 0.1s linear;
}
.faq-box-answer {
  background-color: #e1f1fa;
  border-radius: 0 0 20px 20px;
  z-index: 0;
  position: relative;
  max-height: 0px;
  overflow: hidden;
  padding: 0;
  margin-top: -30px;
  transition: 0.2s linear;
  visibility: hidden;
  padding-top: 35px;
  padding-left: 25px;
  padding-right: 25px;
}
.faq-box-answer a {
  width: 75%;
  color: black;
  font-weight: 700;
  margin: 10px auto;
}
.faq-box-answer a:hover {
  text-decoration: underline;
}
.faq-box-answer-show {
  padding-bottom: 20px;
  transition: 0.2s linear;
  visibility: visible;
}

.author-box {
  margin: 50px auto;
  background: transparent linear-gradient(180deg, #004165 0%, #006CA8 100%) 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 2px 2px 5px 0px #999;
  -moz-box-shadow: 2px 2px 5px 0px #999;
  box-shadow: 2px 2px 5px 0px #999;
  color: white;
  line-height: 1.8rem;
  position: relative;
  z-index: 1;
}
.author-box-content {
  display: flex;
  flex-direction: row;
  padding: 30px;
}
@media only screen and (max-width: 700px) {
  .author-box-content {
    flex-direction: column;
    align-items: center;
  }
}
.author-box-content-image img {
  border-radius: 50%;
  width: 120px;
}
.author-box-content-info {
  padding-left: 20px;
}
.author-box-content-info .by {
  line-height: 1;
  color: #0077be;
}
.author-box-content-info-icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.author-box-content-info-icons a {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #EDF4F8;
  text-decoration: none;
}
.author-box-content-info-icons a p {
  font-weight: bold;
}
.author-box-content-info-icons a img {
  width: 20px;
  height: auto;
}

.seogrid h2 {
  font-size: 35px;
  color: #1D275F;
}
.seogrid p {
  font-size: 17px;
  line-height: 1.8;
}

.image-block {
  margin: 35px 0;
}
.image-block img {
  max-width: 100%;
}
@media only screen and (max-width: 700px) {
  .image-block img {
    width: 100%;
    height: auto;
  }
}

.hero-block {
  background: transparent linear-gradient(180deg, #004165 0%, #006CA8 100%) 0% 0% no-repeat padding-box;
  text-align: center;
  color: white;
  padding: 6em 0;
  padding-top: 100px;
}
.hero-block h1 {
  margin: 0;
  margin-bottom: 15px;
}
@media only screen and (max-width: 700px) {
  .hero-block {
    padding: 3em 0;
    height: auto !important;
    padding-top: 70px;
  }
}

.loan-cards-block {
  margin-top: -55px;
}

.rating-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  .rating-box {
    transform: scale(0.9);
  }
}
.rating-box-circle {
  border-radius: 50%;
  border: 2px solid #00B363;
  height: 50px;
  width: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  background-color: white;
}
.rating-box-circle-span {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}
.rating-box .star-box {
  width: 155px;
  height: 32px;
  background-color: #EAF9F3;
  margin-left: -30px;
  margin-top: 9px;
  border-radius: 16px;
}
.rating-box .star-box .stars {
  margin-left: 35px;
}
.rating-box-info {
  height: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 5px;
}

.loan-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 1px 3px 10px #959595;
  border: 1px solid rgba(14, 56, 88, 0.2);
  max-width: 1000px;
  margin: 25px auto;
  padding: 15px;
}
@media only screen and (max-width: 700px) {
  .loan-card {
    padding: 0;
  }
}
.loan-card-content {
  display: flex;
}
@media only screen and (max-width: 700px) {
  .loan-card-content {
    flex-direction: column;
  }
}
.loan-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
}
@media only screen and (max-width: 700px) {
  .loan-card-left {
    width: 94%;
    flex-direction: row;
    margin: auto;
  }
}
.loan-card-left img {
  max-width: 80%;
  margin: 10px auto;
  height: 50px;
  object-fit: contain;
}
@media only screen and (max-width: 700px) {
  .loan-card-left img {
    max-width: 40%;
  }
}
.loan-card-mid-left {
  display: flex;
  flex-direction: column;
  width: 29%;
  padding: 0 10px;
  font-size: 15px;
}
@media only screen and (max-width: 700px) {
  .loan-card-mid-left {
    width: 100%;
    padding: 0;
  }
}
.loan-card-mid-left-info {
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 700px) {
  .loan-card-mid-left-info {
    padding: 0 16px;
    width: 84%;
    margin: 6px auto;
  }
}
.loan-card-mid-left-info b {
  font-weight: 700;
  color: #006CA8;
}
.loan-card-mid-left-box {
  background-color: rgba(51, 122, 183, 0.2);
  padding: 8px;
}
@media only screen and (max-width: 700px) {
  .loan-card-mid-left-box {
    padding: 4px 16px;
    width: 84%;
    margin: auto;
  }
}
.loan-card-mid-left-box-info {
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}
.loan-card-mid-left-box-info b {
  font-weight: 500;
}
.loan-card-mid-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 25%;
}
@media only screen and (max-width: 700px) {
  .loan-card-mid-right {
    width: 100%;
    margin-top: 20px;
  }
}
.loan-card-mid-right-line {
  display: flex;
  align-items: center;
  margin: 5px 0;
  margin-left: 25px;
}
@media only screen and (min-width: 330px) {
  .loan-card-mid-right-line {
    margin: 5px 15px;
  }
}
.loan-card-mid-right-line span {
  font-size: 12.5px;
}
.loan-card-mid-right-line svg {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.loan-card-right {
  width: 26%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  .loan-card-right {
    width: 100%;
    margin-top: 25px;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.loan-card-right-apply {
  background-color: #006CA8;
  color: white;
  border: none;
  outline: none;
  width: 70%;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2509803922);
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .loan-card-right-apply {
    width: 100%;
    border: 1px solid #006CA8;
    margin-right: 10px;
  }
}
.loan-card-right-apply:hover {
  background-image: linear-gradient(#0085d4, #01456e);
}
.loan-card-right-apply svg {
  width: 11px;
  height: auto;
  margin-left: 10px;
}
.loan-card-right-seemore {
  background-color: white;
  border: 1px solid #006CA8;
  color: #006CA8;
  outline: none;
  width: 70%;
  padding: 9px 0;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 6px;
}
@media only screen and (max-width: 700px) {
  .loan-card-right-seemore {
    width: 45%;
    padding: 12px 0;
    font-size: 16px;
    margin-top: 0;
    margin-left: 5px;
  }
}
.loan-card-example {
  padding-top: 10px;
  font-size: 10px;
  line-height: 15px;
  color: #9297A3;
  padding-left: 10px;
  border-top: 1px solid #9297A3;
}
@media only screen and (max-width: 700px) {
  .loan-card-example {
    padding-bottom: 10px;
    padding-right: 10px;
  }
}
.loan-card-seemore {
  transition: 0.6s linear;
  padding-top: 25px;
}
.loan-card-seemore-rating {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-rating {
    width: 90%;
    align-items: center;
    margin-right: 0;
  }
}
.loan-card-seemore-rating-average {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  background-image: url(/images/review-back.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  margin-left: -50px;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-rating-average {
    width: 100px;
    height: 100px;
  }
}
.loan-card-seemore-rating-average b {
  font-size: 45px;
  color: #1D275F;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-rating-average b {
    font-size: 35px;
  }
}
.loan-card-seemore-rating-specifics {
  display: flex;
  flex-direction: column;
  height: 160px;
  justify-content: center;
  margin-left: -50px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-rating-specifics {
    margin-left: -35px;
  }
}
.loan-card-seemore-rating-specific {
  position: relative;
  display: flex;
  justify-content: space-between;
  background-color: #006CA8;
  color: white;
  align-items: center;
  height: 35px;
  margin: 2px 0;
  padding-left: 20%;
  padding-right: 5%;
  font-weight: bold;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-rating-specific {
    height: 25px;
    font-size: 14px;
  }
}
.loan-card-seemore-rating-specific-stars .stars .rating-upper .inner-rating {
  background-image: url("/images/fill-stars-white.svg");
}
.loan-card-seemore-rating-specific-stars .stars .rating-lower .inner-rating {
  background-image: url("/images/empty-stars-white.svg");
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-rating-specific-stars {
    transform: scale(0.8);
  }
}
.loan-card-seemore-rating-specific .triangle {
  width: 0;
  height: 0;
  border-bottom: 36px solid white;
  border-left: 15px solid transparent;
  position: absolute;
  right: 0;
  top: 0px;
}
.loan-card-seemore-rating-specific:nth-child(1) {
  width: 360px;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-rating-specific:nth-child(1) {
    width: 255px;
  }
}
.loan-card-seemore-rating-specific:nth-child(2) {
  width: 345px;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-rating-specific:nth-child(2) {
    width: 240px;
  }
}
.loan-card-seemore-rating-specific:nth-child(3) {
  width: 330px;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-rating-specific:nth-child(3) {
    width: 225px;
  }
}
.loan-card-seemore-procons {
  width: 80%;
  margin: auto;
  display: flex;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-procons {
    width: 90%;
  }
}
.loan-card-seemore-procons-list {
  width: 50%;
}
.loan-card-seemore-procons-list p {
  display: flex;
  align-items: center;
}
.loan-card-seemore-procons-list p span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  border-radius: 70%;
  margin-right: 5px;
  position: relative;
}
.loan-card-seemore-procons-list p span svg {
  width: 13px;
  height: 13px;
}
.loan-card-seemore-procons-list p b {
  font-size: 18px;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-procons-list ul {
    padding-left: 20px;
  }
}
.loan-card-seemore-procons-list ul li {
  font-size: 14px;
  margin: 8px 0;
  list-style: none;
  position: relative;
}
.loan-card-seemore-procons-list ul li::before {
  content: " ";
  width: 8px;
  height: 8px;
  border-radius: 70%;
  font-weight: bold;
  display: inline-block;
  top: 3px;
  left: -20px;
  position: absolute;
}
.loan-card-seemore-procons-list.pros p span {
  background-color: #08C177;
}
.loan-card-seemore-procons-list.pros ul li::before {
  background-color: #08C177;
}
.loan-card-seemore-procons-list.cons p span {
  background-color: #FD4E00;
}
.loan-card-seemore-procons-list.cons ul li::before {
  background-color: #FD4E00;
}
.loan-card-seemore-about {
  width: 80%;
  margin: 25px auto;
}
.loan-card-seemore-about-headline {
  background-image: url(/images/underline.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 100% 94%;
  padding-bottom: 15px;
  color: #7DBCF9;
  margin-bottom: 25px;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-about-headline {
    background-image: none;
  }
}
.loan-card-seemore-about-text {
  margin-top: 18px;
}
.loan-card-seemore-about-info {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-about-info {
    margin: 10px 0;
  }
}
.loan-card-seemore-about-info svg {
  margin-right: 15px;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-about-info svg {
    width: 25px;
    height: auto;
    max-height: 25px;
  }
}
.loan-card-seemore-about-info a, .loan-card-seemore-about-info p {
  text-decoration: none;
  color: black;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-about-info a, .loan-card-seemore-about-info p {
    margin: 0;
  }
}
.loan-card-seemore-about-info-list {
  margin-top: 25px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
@media only screen and (max-width: 700px) {
  .loan-card-seemore-about-info-list {
    flex-direction: column;
  }
}

.disclaimer-box {
  box-shadow: 2px 2px 5px 0px #999;
  padding: 20px 30px;
  margin: auto;
  margin-top: 50px;
  line-height: 1.7;
  margin-bottom: 25px;
  max-width: 1000px;
}
.disclaimer-box p {
  font-size: 16px;
}
@media only screen and (max-width: 700px) {
  .disclaimer-box p {
    font-size: 14px;
  }
}
.disclaimer-box b, .disclaimer-box strong {
  font-size: 17px;
  position: relative;
  margin-left: 26px;
}
@media only screen and (max-width: 700px) {
  .disclaimer-box b, .disclaimer-box strong {
    font-size: 14px;
  }
}
.disclaimer-box b::before, .disclaimer-box strong::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  left: -30px;
  background-image: url(../../images/cd-icon.svg);
  background-size: contain;
  top: 0;
  bottom: 0;
  margin-bottom: auto;
  margin-top: auto;
}
@media only screen and (max-width: 700px) {
  .disclaimer-box b::before, .disclaimer-box strong::before {
    top: -22px;
  }
}

.annonce {
  font-size: 13px;
  color: #7F8FA4;
  padding-top: 5px;
}
@media only screen and (max-width: 700px) {
  .annonce {
    margin: 0 auto;
  }
}

.annonceDiv {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .annonceDiv {
    width: 45%;
    align-items: center;
    margin: 0 0;
  }
}

.card-greyBox {
  margin: 5px;
  background-color: rgba(222, 222, 222, 0.21);
  padding: 5px;
  display: flex;
  height: 210px;
}
@media only screen and (max-width: 700px) {
  .card-greyBox {
    flex-direction: column;
    height: fit-content;
  }
}

.card-column-title {
  font-size: 18px;
  font-weight: bold;
  height: 46px;
  line-height: 46px;
  display: block;
  padding-left: 15px;
}

.card-infoElementContainer {
  display: flex;
  justify-content: space-evenly;
  border: 0.5px solid #AAAFCC;
  margin: 2px;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1607843137);
}
@media only screen and (max-width: 700px) {
  .card-infoElementContainer {
    margin: 0;
    border: none;
  }
}

.card-infoBox {
  height: 46px;
  width: 50%;
  display: flex;
}

.card-infoBoxLeft {
  background-color: white;
  justify-content: flex-start;
  padding-left: 20px;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .card-infoBoxLeft {
    font-size: 12px;
  }
}

.card-infoBoxRight {
  background-color: #E5F0F6;
  justify-content: flex-end;
  padding-right: 10px;
  font-weight: bold;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .card-infoBoxRight {
    font-size: 12px;
  }
}

.halfWidth {
  width: 50%;
}
@media only screen and (max-width: 700px) {
  .halfWidth {
    width: 100%;
  }
}

.card-info-img {
  height: 14px;
  margin-left: 5px;
}

@media only screen and (max-width: 700px) {
  .mobileOther {
    background-color: #E5F0F6 !important;
  }
}

@media only screen and (max-width: 700px) {
  .mobileWhite {
    background-color: white !important;
  }
}

.accepted {
  color: #0078D7;
  background-color: #E5F0F6;
}
.accepted-not {
  color: #DD5129;
  background-color: #fcf3ca;
}

.remarksBase {
  padding: 3px;
  text-align: center;
  border-radius: 11px;
  display: inline-block;
}

.fontSize {
  font-size: 13px;
}
@media only screen and (max-width: 700px) {
  .fontSize {
    font-size: 15px;
    margin-left: 15px;
  }
}

.alert-box {
  display: flex;
  padding-top: 10px;
  width: 100%;
}
@media only screen and (max-width: 700px) {
  .alert-box {
    width: 100%;
  }
}
.alert-box-img {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .alert-box-img {
    align-items: flex-start;
    width: 10%;
  }
}
.alert-box-img img {
  width: 40%;
}
@media only screen and (max-width: 700px) {
  .alert-box-img img {
    width: 80%;
  }
}
.alert-box-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  .alert-box-text {
    width: 80%;
  }
}
.alert-bottom {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 700px) {
  .alert-bottom span {
    font-size: 12px;
  }
}
.alert-botbox {
  display: flex;
  align-items: center;
  margin: 0 5px;
}