/*
 * Simpleweb Real Estate - Parity Batch 5
 * Client testimonials (buyer questions) carousel.
 * Canonical source: parts/home/testimonial-one.php + .testimonial-one styles.
 */

/* Shared Batch 5 icon masks. */
body.swrep-parity-home [data-swrep-b5-icon] {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask: var(--swrep-b5-icon-url) center / contain no-repeat;
  mask: var(--swrep-b5-icon-url) center / contain no-repeat;
}

body.swrep-parity-home [data-swrep-b5-icon="quote"] {
  --swrep-b5-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/quote-right.svg");
}

body.swrep-parity-home [data-swrep-b5-icon="arrow-left"] {
  --swrep-b5-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/arrow-left.svg");
}

body.swrep-parity-home [data-swrep-b5-icon="arrow-right"] {
  --swrep-b5-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/arrow-right.svg");
}

body.swrep-parity-home [data-swrep-b5-icon="email"] {
  --swrep-b5-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/envelope.svg");
}

body.swrep-parity-home [data-swrep-b5-icon="phone"] {
  --swrep-b5-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/phone.svg");
}

body.swrep-parity-home [data-swrep-b5-icon="user"] {
  --swrep-b5-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/user.svg");
}

body.swrep-parity-home [data-swrep-b5-icon="clock"] {
  --swrep-b5-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/solid/clock.svg");
}

body.swrep-parity-home [data-swrep-b5-icon="instagram"] {
  --swrep-b5-icon-url: url("../parity/vendor/font-awesome-free-5.15.4/brands/instagram.svg");
}

/* Section shell. */
body.swrep-parity-home .swrep-b5-testimonials {
  position: relative;
  display: block;
  padding: 90px 0 120px;
  z-index: 1;
}

body.swrep-parity-home .swrep-b5-testimonials__wrap {
  position: relative;
  display: block;
}

/* Section heading. */
body.swrep-parity-home .swrep-b5-heading {
  position: relative;
  display: block;
  margin: -7px 0 52px;
  z-index: 1;
}

body.swrep-parity-home .swrep-b5-heading__eyebrow {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--swrep-orange);
  font-size: 15px;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
}

body.swrep-parity-home .swrep-b5-heading__eyebrow::before {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 2px;
  background: var(--swrep-orange);
  content: "";
}

body.swrep-parity-home .swrep-b5-heading__eyebrow::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  width: 6px;
  height: 6px;
  margin: auto;
  border-radius: 50%;
  background: var(--swrep-orange);
  box-shadow: 0 0 0 0 rgba(var(--swrep-orange-rgb), .35);
  content: "";
  transform-origin: center;
  animation: swrep-b5-heartbeat 1.55s ease-in-out infinite;
}

body.swrep-parity-home .swrep-b5-heading__title {
  margin: 5px 0 0;
  color: var(--swrep-black);
  font-family: var(--swrep-heading-font);
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
}

body.swrep-parity-home .swrep-b5-heading__title > span:not(.swrep-b5-reveal__word) {
  color: var(--swrep-orange);
}

body.swrep-parity-home .swrep-b5-reveal__word {
  display: inline-block;
  color: inherit;
  white-space: nowrap;
  text-transform: none;
}

body.swrep-parity-home [data-swrep-b5-reveal].is-reveal-ready .swrep-b5-reveal__char {
  display: inline-block;
  opacity: 0;
  color: inherit;
  text-transform: none;
  transform-origin: 50% 100%;
  transition: opacity 1s ease, transform 1s cubic-bezier(.175, .885, .32, 1.275);
  transition-delay: calc(var(--swrep-b5-char-index, 0) * 20ms);
}

body.swrep-parity-home .swrep-b5-testimonials [data-swrep-b5-reveal].is-reveal-ready .swrep-b5-reveal__char,
body.swrep-parity-home .swrep-b5-contact [data-swrep-b5-reveal].is-reveal-ready .swrep-b5-reveal__char {
  transform: translateX(50px);
}

body.swrep-parity-home .swrep-b5-insights [data-swrep-b5-reveal].is-reveal-ready .swrep-b5-reveal__char {
  transform: perspective(400px) translateY(90%) rotateX(-40deg);
}

body.swrep-parity-home [data-swrep-b5-reveal].is-reveal-ready.is-revealed .swrep-b5-reveal__char {
  opacity: 1;
  transform: translate(0, 0) rotateX(0);
}

body.swrep-parity-home .swrep-b5-heading__body {
  margin: 16px 0 0;
  max-width: 640px;
  color: var(--swrep-gray);
  font-size: 16px;
  line-height: 28px;
}

/* Carousel. */
body.swrep-parity-home .swrep-b5-testimonials__carousel {
  position: relative;
  display: block;
}

body.swrep-parity-home .swrep-b5-testimonials__carousel .swiper-wrapper {
  align-items: stretch;
}

body.swrep-parity-home .swrep-b5-testimonials__slide {
  height: auto;
}

/* Card. */
body.swrep-parity-home .swrep-b5-testimonials__card {
  position: relative;
  display: block;
  height: 100%;
  padding: 30px 30px 32px;
  background-color: var(--swrep-ivory);
  border: 1px solid rgba(var(--swrep-gold-rgb), .10);
  z-index: 1;
}

body.swrep-parity-home .swrep-b5-testimonials__texture {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: .62;
  mix-blend-mode: normal;
  background-image: url("../parity/media/batch-5/testimonials/testimonial-card-texture.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
}

body.swrep-parity-home .swrep-b5-testimonials__identity {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

body.swrep-parity-home .swrep-b5-testimonials__avatar {
  position: relative;
  display: block;
  max-width: 100px;
  width: 100%;
}

body.swrep-parity-home .swrep-b5-testimonials__image {
  display: block;
  width: 100%;
  height: auto;
}

body.swrep-parity-home .swrep-b5-testimonials__content {
  position: relative;
  display: block;
  flex: 1;
}

body.swrep-parity-home .swrep-b5-testimonials__name {
  margin: 0;
  font-family: var(--swrep-heading-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

body.swrep-parity-home .swrep-b5-testimonials__name a {
  color: var(--swrep-black);
  text-decoration: none;
  transition: color .4s ease;
}

body.swrep-parity-home .swrep-b5-testimonials__name a:hover,
body.swrep-parity-home .swrep-b5-testimonials__name a:focus-visible {
  color: var(--swrep-gold);
}

body.swrep-parity-home .swrep-b5-testimonials__sub-title {
  position: relative;
  display: inline-block;
  margin: 2px 0 7px;
  color: var(--swrep-gray);
  font-size: 16px;
  line-height: 26px;
}

body.swrep-parity-home .swrep-b5-testimonials__text {
  margin: 20px 0 0;
  color: var(--swrep-gray);
  font-size: 16px;
  line-height: 26px;
}

body.swrep-parity-home .swrep-b5-testimonials__quote {
  position: absolute;
  top: 30px;
  right: 30px;
  display: inline-flex;
  color: rgba(var(--swrep-gold-rgb), .30);
  z-index: 2;
}

body.swrep-parity-home .swrep-b5-testimonials__quote-icon {
  width: 50px;
  height: 50px;
}

/* Navigation. */
body.swrep-parity-home .swrep-b5-testimonials__nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 75px;
  right: 0;
}

body.swrep-parity-home .swrep-b5-testimonials__nav-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  color: var(--swrep-white);
  background-color: var(--swrep-orange);
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all .5s ease;
  z-index: 100;
}

body.swrep-parity-home .swrep-b5-testimonials__nav-button--previous {
  margin-right: 10px;
}

body.swrep-parity-home .swrep-b5-testimonials__nav-button:hover,
body.swrep-parity-home .swrep-b5-testimonials__nav-button:focus-visible {
  color: var(--swrep-white);
  background-color: var(--swrep-black);
}

body.swrep-parity-home .swrep-b5-testimonials__nav-button[disabled] {
  opacity: .45;
  cursor: default;
}

body.swrep-parity-home .swrep-b5-testimonials__nav-button [data-swrep-b5-icon] {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   Contact Consultation (canonical: .contact-one)
   ========================================================================== */
body.swrep-parity-home .swrep-b5-contact {
  position: relative;
  display: block;
  background-color: var(--swrep-black);
  overflow: hidden;
  z-index: 1;
}

body.swrep-parity-home .swrep-b5-contact__bg {
  position: absolute;
  top: -80px;
  right: 0;
  bottom: -80px;
  left: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  will-change: transform;
  z-index: -1;
}

body.swrep-parity-home .swrep-b5-contact__inner {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

body.swrep-parity-home .swrep-b5-contact__cutout {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
}

body.swrep-parity-home .swrep-b5-contact__cutout img {
  width: auto;
  height: 670px;
  object-fit: fill;
  display: block;
}

body.swrep-parity-home .swrep-b5-contact__cutout.is-reveal-ready {
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 2.5s ease, transform 2.5s cubic-bezier(.2, .72, .22, 1);
  transition-delay: 100ms;
}

body.swrep-parity-home .swrep-b5-contact__cutout.is-reveal-ready.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

body.swrep-parity-home .swrep-b5-contact__left {
  position: relative;
  display: block;
  max-width: 740px;
}

/* Dark-panel heading treatment. */
body.swrep-parity-home .swrep-b5-heading--dark .swrep-b5-heading__eyebrow {
  color: var(--swrep-bright-gold);
}

body.swrep-parity-home .swrep-b5-heading--dark .swrep-b5-heading__eyebrow::before,
body.swrep-parity-home .swrep-b5-heading--dark .swrep-b5-heading__eyebrow::after {
  background: var(--swrep-gold);
}

body.swrep-parity-home .swrep-b5-heading--dark .swrep-b5-heading__eyebrow::after {
  box-shadow: 0 0 0 0 rgba(var(--swrep-gold-rgb), .35);
  animation-name: swrep-b5-heartbeat-gold;
}

body.swrep-parity-home .swrep-b5-heading--dark .swrep-b5-heading__title {
  color: var(--swrep-white);
}

body.swrep-parity-home .swrep-b5-heading--dark .swrep-b5-heading__title > span:not(.swrep-b5-reveal__word) {
  color: var(--swrep-bright-gold);
}

body.swrep-parity-home .swrep-b5-heading--dark .swrep-b5-heading__body {
  color: rgba(var(--swrep-white-rgb), .70);
}

/* Contact form primitives (Contact Form 7 output). */
body.swrep-parity-home .swrep-b5-contact__form {
  position: relative;
  display: block;
}

body.swrep-parity-home .swrep-b5-contact__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

body.swrep-parity-home .swrep-b5-contact__col {
  width: 100%;
  padding: 0 15px;
  font-size: 0;
}

body.swrep-parity-home .swrep-b5-contact__col--half {
  width: 50%;
}

body.swrep-parity-home .swrep-b5-contact__input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

body.swrep-parity-home .swrep-b5-contact__form input[type="text"],
body.swrep-parity-home .swrep-b5-contact__form input[type="email"],
body.swrep-parity-home .swrep-b5-contact__form input[type="tel"],
body.swrep-parity-home .swrep-b5-contact__form select {
  height: 55px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  background-color: transparent;
  border: 1px solid rgba(var(--swrep-white-rgb), .20);
  outline: none;
  font-family: var(--swrep-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 55px;
  color: rgba(var(--swrep-white-rgb), .70);
  display: block;
}

body.swrep-parity-home .swrep-b5-contact__form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 3l4 4 4-4' fill='none' stroke='%23b3b3b3' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 44px;
}

body.swrep-parity-home .swrep-b5-contact__form textarea {
  height: 150px;
  width: 100%;
  padding: 15px 20px 30px;
  background-color: transparent;
  border: 1px solid rgba(var(--swrep-white-rgb), .20);
  outline: none;
  font-family: var(--swrep-font);
  font-size: 16px;
  font-weight: 400;
  color: rgba(var(--swrep-white-rgb), .70);
  display: block;
  resize: vertical;
}

body.swrep-parity-home .swrep-b5-contact__form input[type="text"]:focus-visible,
body.swrep-parity-home .swrep-b5-contact__form input[type="email"]:focus-visible,
body.swrep-parity-home .swrep-b5-contact__form input[type="tel"]:focus-visible,
body.swrep-parity-home .swrep-b5-contact__form select:focus-visible,
body.swrep-parity-home .swrep-b5-contact__form textarea:focus-visible {
  border-color: var(--swrep-orange);
  outline: 2px solid var(--swrep-orange);
  outline-offset: 2px;
}

body.swrep-parity-home .swrep-b5-contact__form ::placeholder {
  color: rgba(var(--swrep-white-rgb), .70);
  opacity: 1;
}

body.swrep-parity-home .swrep-b5-contact__form .wpcf7-form-control-wrap {
  display: block;
}

body.swrep-parity-home .swrep-b5-contact__btn-box {
  position: relative;
  display: block;
}

body.swrep-parity-home .swrep-b5-contact__form input[type="submit"],
body.swrep-parity-home .swrep-b5-contact__form .wpcf7-submit {
  position: relative;
  display: inline-block;
  min-height: 50px;
  padding: 15px 40px;
  border: none;
  cursor: pointer;
  background-color: var(--swrep-gold);
  color: var(--swrep-white);
  font-family: var(--swrep-heading-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  box-shadow: 0 6px 0 rgba(var(--swrep-black-rgb), .32), 0 13px 22px rgba(var(--swrep-black-rgb), .18);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, color 250ms ease, background-color 250ms ease;
}

body.swrep-parity-home .swrep-b5-contact__form input[type="submit"]:hover,
body.swrep-parity-home .swrep-b5-contact__form input[type="submit"]:focus-visible,
body.swrep-parity-home .swrep-b5-contact__form .wpcf7-submit:hover,
body.swrep-parity-home .swrep-b5-contact__form .wpcf7-submit:focus-visible {
  background-color: var(--swrep-gold-tint);
  color: var(--swrep-black);
  box-shadow: 0 3px 0 rgba(var(--swrep-black-rgb), .28), 0 8px 15px rgba(var(--swrep-black-rgb), .14);
  transform: translateY(3px);
}

body.swrep-parity-home .swrep-b5-contact__form input[type="submit"]:active,
body.swrep-parity-home .swrep-b5-contact__form .wpcf7-submit:active {
  box-shadow: 0 1px 0 rgba(var(--swrep-black-rgb), .24);
  transform: translateY(6px);
}

body.swrep-parity-home .swrep-b5-contact__form .swre-form-state {
  color: rgba(var(--swrep-white-rgb), .70);
  font-size: 16px;
}

body.swrep-parity-home .swrep-b5-contact__form select option {
  background: var(--swrep-black);
  color: var(--swrep-white);
}

body.swrep-parity-home .swrep-b5-contact__form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 7px;
  color: var(--swrep-orange);
  font-size: 13px;
  line-height: 1.45;
}

body.swrep-parity-home .swrep-b5-contact__form .wpcf7-form-control[aria-invalid="true"] {
  border-color: var(--swrep-orange);
}

body.swrep-parity-home .swrep-b5-contact__form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 12px 16px;
  border: 1px solid var(--swrep-orange);
  color: var(--swrep-white);
  font-size: 14px;
  line-height: 1.55;
}

body.swrep-parity-home .swrep-b5-contact__form form.sent .wpcf7-response-output {
  border-color: var(--swrep-gold);
}

body.swrep-parity-home .swrep-b5-contact__form .wpcf7-spinner {
  margin: 0 0 0 12px;
  background-color: var(--swrep-gold);
  vertical-align: middle;
}

body.swrep-parity-home .swrep-b5-contact__form .wpcf7-spinner::before {
  background-color: var(--swrep-white);
}

/* Call box. */
body.swrep-parity-home .swrep-b5-contact__call-box {
  position: absolute;
  right: 370px;
  bottom: 0;
  padding: 25px 30px 25px;
  border: 1px solid rgba(var(--swrep-white-rgb), .20);
  border-bottom: 0;
}

body.swrep-parity-home .swrep-b5-contact__call-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.swrep-parity-home .swrep-b5-contact__call-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 17px;
}

body.swrep-parity-home .swrep-b5-contact__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--swrep-gold);
  transition: all .5s ease;
}

body.swrep-parity-home .swrep-b5-contact__call-icon [data-swrep-b5-icon] {
  width: 20px;
  height: 20px;
  color: var(--swrep-white);
  transition: all .5s ease;
}

body.swrep-parity-home .swrep-b5-contact__call-icon:hover {
  background-color: var(--swrep-white);
}

body.swrep-parity-home .swrep-b5-contact__call-icon:hover [data-swrep-b5-icon] {
  color: var(--swrep-black);
}

body.swrep-parity-home .swrep-b5-contact__call-content p {
  margin: 0;
  color: rgba(var(--swrep-white-rgb), .70);
  font-weight: 500;
}

body.swrep-parity-home .swrep-b5-contact__call-content h4 {
  margin: 2px 0 0;
  font-family: var(--swrep-heading-font);
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
}

body.swrep-parity-home .swrep-b5-contact__call-content h4 a {
  color: var(--swrep-white);
  text-decoration: none;
  transition: color .4s ease;
}

body.swrep-parity-home .swrep-b5-contact__call-content h4 a:hover,
body.swrep-parity-home .swrep-b5-contact__call-content h4 a:focus-visible {
  color: var(--swrep-gold);
}

/* ==========================================================================
   Market Insights (canonical: .blog-one)
   ========================================================================== */
body.swrep-parity-home .swrep-b5-insights {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

body.swrep-parity-home .swrep-b5-insights > .swrep-container {
  position: relative;
}

body.swrep-parity-home .swrep-b5-insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 30px;
}

body.swrep-parity-home .swrep-b5-insights__card {
  position: relative;
  display: flex;
  flex-direction: column;
}

body.swrep-parity-home .swrep-b5-insights__card.is-reveal-ready {
  opacity: 0;
  transition: opacity .75s ease, transform .75s cubic-bezier(.175, .885, .32, 1.275);
  transition-delay: calc((var(--swrep-b5-card-index, 0) + 1) * 100ms);
}

body.swrep-parity-home .swrep-b5-insights__card.is-reveal-ready:nth-child(3n + 1) {
  transform: translateX(-35px);
}

body.swrep-parity-home .swrep-b5-insights__card.is-reveal-ready:nth-child(3n + 2) {
  transform: translateY(35px);
}

body.swrep-parity-home .swrep-b5-insights__card.is-reveal-ready:nth-child(3n) {
  transform: translateX(35px);
}

body.swrep-parity-home .swrep-b5-insights__card.is-reveal-ready.is-revealed {
  opacity: 1;
  transform: none;
}

body.swrep-parity-home .swrep-b5-insights__img-box {
  position: relative;
  display: block;
}

body.swrep-parity-home .swrep-b5-insights__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

body.swrep-parity-home .swrep-b5-insights__img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(var(--swrep-black-rgb), .50);
  opacity: 0;
  transform: translateY(50px);
  transition: all .7s ease;
  z-index: 1;
}

body.swrep-parity-home .swrep-b5-insights__card:hover .swrep-b5-insights__img::before,
body.swrep-parity-home .swrep-b5-insights__card:focus-within .swrep-b5-insights__img::before {
  opacity: 1;
  transform: translateY(0);
}

body.swrep-parity-home .swrep-b5-insights__image {
  display: block;
  width: 100%;
  aspect-ratio: auto;
  height: 310px;
  object-fit: fill;
  transform: scale(1);
  transition: all 1500ms ease;
}

body.swrep-parity-home .swrep-b5-insights__card:hover .swrep-b5-insights__image,
body.swrep-parity-home .swrep-b5-insights__card:focus-within .swrep-b5-insights__image {
  transform: scale(1.05);
}

body.swrep-parity-home .swrep-b5-insights__date {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 15px;
  background-color: var(--swrep-white);
  z-index: 2;
}

body.swrep-parity-home .swrep-b5-insights__date span {
  color: var(--swrep-black);
  font-weight: 500;
}

body.swrep-parity-home .swrep-b5-insights__content {
  position: relative;
  display: block;
  flex: 1;
  padding: 30px;
  border: 1px solid rgba(var(--swrep-black-rgb), .10);
  border-top: 0;
}

body.swrep-parity-home .swrep-b5-insights__meta {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.swrep-parity-home .swrep-b5-insights__meta li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

body.swrep-parity-home .swrep-b5-insights__meta li p {
  margin: 0;
  color: var(--swrep-gray);
  text-transform: capitalize;
}

body.swrep-parity-home .swrep-b5-insights__meta-icon {
  width: 16px;
  height: 16px;
  color: var(--swrep-gold);
}

body.swrep-parity-home .swrep-b5-insights__title {
  margin: 5px 0 8px;
  font-family: var(--swrep-heading-font);
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  text-transform: capitalize;
}

body.swrep-parity-home .swrep-b5-insights__title a {
  color: var(--swrep-black);
  text-decoration: none;
  transition: color .4s ease;
}

body.swrep-parity-home .swrep-b5-insights__title a:hover,
body.swrep-parity-home .swrep-b5-insights__title a:focus-visible {
  color: var(--swrep-gold);
}

body.swrep-parity-home .swrep-b5-insights__read-more {
  position: relative;
  display: inline-block;
}

body.swrep-parity-home .swrep-b5-insights__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--swrep-black);
  font-weight: 500;
  text-transform: capitalize;
  text-decoration: none;
  transition: color .4s ease;
}

body.swrep-parity-home .swrep-b5-insights__read-more a:hover,
body.swrep-parity-home .swrep-b5-insights__read-more a:focus-visible {
  color: var(--swrep-gold);
}

body.swrep-parity-home .swrep-b5-insights__read-more-icon {
  width: 14px;
  height: 14px;
  color: var(--swrep-gold);
}

body.swrep-parity-home .swrep-b5-insights__actions {
  position: static;
  display: flex;
  align-items: center;
  height: 0;
  margin-top: 30px;
}

body.swrep-parity-home .swrep-b5-insights__cta {
  position: absolute;
  bottom: -70px;
  left: 0;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border: 0;
  background: var(--swrep-orange);
  box-shadow: 0 6px 0 rgba(var(--swrep-black-rgb), .24), 0 12px 20px rgba(var(--swrep-black-rgb), .12);
  color: var(--swrep-white);
  font-family: var(--swrep-heading-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 250ms ease, background-color 250ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body.swrep-parity-home .swrep-b5-insights__cta:hover,
body.swrep-parity-home .swrep-b5-insights__cta:focus-visible {
  background: var(--swrep-gold-tint);
  box-shadow: 0 3px 0 rgba(var(--swrep-black-rgb), .20), 0 7px 14px rgba(var(--swrep-black-rgb), .10);
  color: var(--swrep-black);
  transform: translateY(3px);
}

body.swrep-parity-home .swrep-b5-insights__nav {
  position: absolute;
  top: 75px;
  right: 0;
  display: flex;
  gap: 10px;
}

body.swrep-parity-home .swrep-b5-insights__nav-button {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: var(--swrep-orange);
  color: var(--swrep-white);
  cursor: pointer;
  transition: color 250ms ease, background-color 250ms ease, transform 180ms ease;
}

body.swrep-parity-home .swrep-b5-insights__nav-button:hover,
body.swrep-parity-home .swrep-b5-insights__nav-button:focus-visible {
  background: var(--swrep-gold-tint);
  color: var(--swrep-black);
  transform: translateY(-2px);
}

body.swrep-parity-home .swrep-b5-insights__nav-button [data-swrep-b5-icon] {
  width: 14px;
  height: 14px;
}

@media only screen and (max-width: 991px) {
  body.swrep-parity-home .swrep-b5-insights__grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  body.swrep-parity-home .swrep-b5-insights {
    padding: 80px 0 50px;
  }

  body.swrep-parity-home .swrep-b5-insights__grid {
    grid-template-columns: 1fr;
  }

  body.swrep-parity-home .swrep-b5-insights__actions {
    position: relative;
    height: auto;
    justify-content: space-between;
  }

  body.swrep-parity-home .swrep-b5-insights__cta {
    position: static;
  }

  body.swrep-parity-home .swrep-b5-insights__nav {
    position: static;
  }
}

@media only screen and (max-width: 450px) {
  body.swrep-parity-home .swrep-b5-insights__content {
    padding: 30px 15px;
  }

  body.swrep-parity-home .swrep-b5-insights__title {
    font-size: 20px;
    line-height: 30px;
  }

  body.swrep-parity-home .swrep-b5-insights__meta {
    gap: 10px;
  }
}

@keyframes swrep-b5-heartbeat-gold {
  0% { box-shadow: 0 0 0 0 rgba(var(--swrep-gold-rgb), .35); }
  70% { box-shadow: 0 0 0 8px rgba(var(--swrep-gold-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--swrep-gold-rgb), 0); }
}

@keyframes swrep-b5-heartbeat {
  0% { box-shadow: 0 0 0 0 rgba(var(--swrep-orange-rgb), .35); }
  70% { box-shadow: 0 0 0 8px rgba(var(--swrep-orange-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--swrep-orange-rgb), 0); }
}

/* Responsive parity. */
@media only screen and (max-width: 767px) {
  body.swrep-parity-home .swrep-b5-heading {
    margin-bottom: 42px;
  }

  body.swrep-parity-home .swrep-b5-testimonials {
    padding: 50px 0 80px;
  }

  body.swrep-parity-home .swrep-b5-heading__title {
    font-size: 24px;
    line-height: 34px;
  }

  body.swrep-parity-home .swrep-b5-heading__title br {
    display: none;
  }

  body.swrep-parity-home .swrep-b5-heading__title br + span::before {
    content: " ";
  }

  body.swrep-parity-home .swrep-b5-testimonials__nav {
    position: relative;
    top: 0;
    right: auto;
    margin-top: 30px;
    justify-content: flex-start;
  }
}

@media only screen and (max-width: 450px) {
  body.swrep-parity-home .swrep-b5-testimonials__identity {
    flex-direction: column;
    align-items: flex-start;
  }

  body.swrep-parity-home .swrep-b5-testimonials__card {
    padding: 30px 15px 32px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body.swrep-parity-home .swrep-b5-contact__inner {
    padding: 120px 0 160px;
  }

  body.swrep-parity-home .swrep-b5-contact__call-box {
    right: 339px;
  }

  body.swrep-parity-home .swrep-b5-contact__cutout {
    right: -170px;
  }

  body.swrep-parity-home .swrep-b5-contact__cutout img {
    width: 350px;
  }

  body.swrep-parity-home .swrep-b5-contact__left {
    max-width: 610px;
  }

  body.swrep-parity-home .swrep-b5-insights__content {
    padding: 30px 15px;
  }

  body.swrep-parity-home .swrep-b5-insights__meta {
    gap: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  body.swrep-parity-home .swrep-b5-contact__inner {
    padding: 120px 0 160px;
  }

  body.swrep-parity-home .swrep-b5-contact__call-box {
    right: 100px;
  }

  body.swrep-parity-home .swrep-b5-contact__cutout {
    display: none;
  }

  body.swrep-parity-home .swrep-b5-contact__left {
    max-width: none;
  }
}

@media only screen and (max-width: 767px) {
  body.swrep-parity-home .swrep-b5-contact__inner {
    padding: 80px 0 80px;
  }

  body.swrep-parity-home .swrep-b5-contact__call-box {
    display: none;
  }

  body.swrep-parity-home .swrep-b5-contact__cutout {
    display: none;
  }

  body.swrep-parity-home .swrep-b5-contact__left {
    max-width: none;
  }

  body.swrep-parity-home .swrep-b5-contact__col--half {
    width: 100%;
  }
}

/* ==========================================================================
   Property Gallery (canonical: .gallery-one)
   ========================================================================== */
body.swrep-parity-home .swrep-b5-gallery {
  position: relative;
  display: block;
}

body.swrep-parity-home .swrep-b5-gallery__carousel {
  position: relative;
  display: block;
}

body.swrep-parity-home .swrep-b5-gallery__single {
  position: relative;
  display: block;
}

body.swrep-parity-home .swrep-b5-gallery__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

body.swrep-parity-home .swrep-b5-gallery__img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(var(--swrep-black-rgb), .85);
  opacity: 0;
  transform: translateY(50px);
  transition: all .7s ease;
  z-index: 1;
}

body.swrep-parity-home .swrep-b5-gallery__single:hover .swrep-b5-gallery__img::before,
body.swrep-parity-home .swrep-b5-gallery__single:focus-within .swrep-b5-gallery__img::before {
  opacity: 1;
  transform: translateY(0);
}

body.swrep-parity-home .swrep-b5-gallery__image {
  display: block;
  width: 100%;
  aspect-ratio: auto;
  height: 390px;
  object-fit: fill;
  transition: all .7s ease-in-out;
  transition-delay: .1s;
}

body.swrep-parity-home .swrep-b5-gallery__single:hover .swrep-b5-gallery__image,
body.swrep-parity-home .swrep-b5-gallery__single:focus-within .swrep-b5-gallery__image {
  transform: scale(1.1) rotate(2deg);
}

body.swrep-parity-home .swrep-b5-gallery__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swrep-white);
  opacity: 0;
  transform: translateY(100px);
  transition: all .7s ease;
  text-decoration: none;
  z-index: 2;
}

body.swrep-parity-home .swrep-b5-gallery__single:hover .swrep-b5-gallery__overlay,
body.swrep-parity-home .swrep-b5-gallery__single:focus-within .swrep-b5-gallery__overlay {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 500ms;
}

body.swrep-parity-home .swrep-b5-gallery__overlay:hover,
body.swrep-parity-home .swrep-b5-gallery__overlay:focus-visible {
  color: var(--swrep-gold);
}

body.swrep-parity-home .swrep-b5-gallery__overlay-icon {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  body.swrep-parity-home [data-swrep-b5-reveal].is-reveal-ready .swrep-b5-reveal__char,
  body.swrep-parity-home .swrep-b5-contact__cutout.is-reveal-ready,
  body.swrep-parity-home .swrep-b5-insights__card.is-reveal-ready {
    opacity: 1;
    transition: none;
    transform: none;
  }

  body.swrep-parity-home .swrep-b5-contact__bg {
    transform: none !important;
  }

  body.swrep-parity-home .swrep-b5-gallery__single:hover .swrep-b5-gallery__image,
  body.swrep-parity-home .swrep-b5-gallery__single:focus-within .swrep-b5-gallery__image {
    transform: none;
  }

  body.swrep-parity-home .swrep-b5-insights__card:hover .swrep-b5-insights__image,
  body.swrep-parity-home .swrep-b5-insights__card:focus-within .swrep-b5-insights__image,
  body.swrep-parity-home .swrep-b5-insights__cta:hover,
  body.swrep-parity-home .swrep-b5-insights__cta:focus-visible,
  body.swrep-parity-home .swrep-b5-insights__nav-button:hover,
  body.swrep-parity-home .swrep-b5-insights__nav-button:focus-visible {
    transform: none;
  }

  body.swrep-parity-home .swrep-b5-heading__eyebrow::after {
    animation: none;
  }
}
