/* Added fallbacks to help with CLS, feel free to remove if it doesn't help on your project */
/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
/* Added fallbacks to help with CLS, feel free to remove if it doesn't help on your project */
/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes to use with min-width */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
#hero {
  background: #131F35;
  text-align: center;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero h1 {
  color: #FFFFFF;
  position: relative;
  text-align: left;
}
#hero h1::after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  width: 145px !important;
  height: 9px;
  background-color: #EB010F;
  right: 0;
}
#hero h3,
#hero p.h3 {
  color: #FFFFFF;
  font: normal normal normal 18px/32px Rubik !important;
  text-align: left;
}
@media screen and (min-width: 1025px) {
  #hero {
    min-height: 320px;
  }
  #hero h1, #hero h3, #hero p.h3 {
    text-align: center;
  }
  #hero h1::after {
    margin-left: auto;
    margin-right: auto;
  }
  #hero h3,
  #hero p.h3 {
    font-size: clamp(1.5rem, 24px + (33 - 24) * (100vw - 320px) / 1600, 2.0625rem) !important;
    line-height: clamp(2.1875rem, 35px + (44 - 35) * (100vw - 320px) / 1600, 2.75rem) !important;
  }
}

#breadcrumb {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-bottom: 1px solid #BABABA;
}
#breadcrumb .rank-math-breadcrumb .separator {
  display: inline-block;
  margin-left: 7px;
  margin-right: 7px;
  padding-top: 22px;
  padding-bottom: 22px;
}
#breadcrumb .rank-math-breadcrumb p {
  padding: 0;
}
#breadcrumb .rank-math-breadcrumb .separator,
#breadcrumb .rank-math-breadcrumb a,
#breadcrumb .rank-math-breadcrumb .last {
  font: normal normal bold 16px/19px Rubik;
  letter-spacing: 0px;
  color: #131F35;
  text-transform: capitalize;
}

body {
  background: #F7F7F7;
}

/*Financing*/
#financing {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#financing h2 {
  color: #131F35;
  text-transform: uppercase;
  position: relative;
  max-width: 620px;
}
#financing h2::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  width: 20% !important;
  height: 9px;
  background-color: #EB010F;
}
#financing .color-red {
  color: #EB010F;
}
#financing .worry-image {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 814px;
  margin-left: auto;
}
#financing picture {
  max-height: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  width: 100% !important;
}
#financing img {
  height: 100%;
  object-fit: cover;
  border-radius: 8px 0px 0px 8px;
}
#financing .main-content {
  color: #454545;
}
@media (max-width: 991px) {
  #financing {
    padding: 60px 0;
  }
}
@media screen and (min-width: 1025px) {
  #financing .worry-image-wrapper {
    position: absolute;
    right: 0 !important;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 900px;
    z-index: 1;
  }
}
@media (min-width: 1920px) {
  #financing .worry-image-wrapper {
    right: calc((100vw - 1920px) / 2) !important;
  }
}

/*FAQ*/
#faq {
  padding-top: 5em;
  padding-bottom: 5em;
  background: #FFFFFF;
}
#faq h2 {
  font-weight: bold;
  position: relative;
  text-transform: uppercase;
}
#faq h2::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0 !important;
  width: 20% !important;
  height: 9px;
  background-color: #EB010F;
}
#faq .question {
  font: normal normal bold 16px/28px Rubik;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
}
#faq .icon-minus-square,
#faq .icon-plus-square {
  color: #EB010F;
  font-size: 16px;
}
#faq .answer {
  display: none;
  color: #454545;
}
#faq .faq-item {
  border-bottom: 1px solid #B2B2B2;
}
@media screen and (min-width: 1025px) {
  #faq {
    padding-top: 9em;
    padding-bottom: 9em;
  }
}