@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Oswald:wght@400;600&display=swap");
@import url("https://kunversion-frontend-custom.s3.amazonaws.com/overwrites/template/ps.css");
@import url("https://kunversion-frontend-custom.s3.amazonaws.com/overwrites/search-bar/minimal.v2.css");
@import url("https://kunversion-frontend-custom.s3.amazonaws.com/components/listings/clean.css");
@import url("https://kunversion-frontend-custom.s3.amazonaws.com/overwrites/widgets/areas-widget/premium-1/ps.css");

/* Global */
:root {
  /* Colors */
  --secondary-brand-color: #38b6ff;
  --hero-light-gradient: 165deg, transparent, transparent, transparent;
  --hero-dark-gradient: 165deg, transparent, transparent, transparent;
  --footer-backgroundColor: #ffffff;
  --footer-text-color: #000000;
  /* Fonts */
  --heading-font: "Oswald", sans-serif;
  --text-font: "Open Sans", sans-serif;
}

h1,
h2,
h2 span,
h3,
h4,
h4 strong,
h5,
h6,
.h1,
.h2,
.h2 span,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--heading-font) !important;
}
p,
dt,
dd,
.content-title h5 strong,
.content-title h5 strong span,
a:not([notranslate]),
.sub-menu span,
address,
label,
button,
strong,
.ct-legend-label,
::placeholder {
  font-family: var(--text-font) !important;
}

/* Landing Page Text Lead Button Fix */
#template-interface .btn.btn-primary.btn-lg.btn-xl.btn-min-width-lg {
  color: #fff !important;
}

body .filter-primary button {
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

/**
  * 01. Helpers
  */
html,
body {
  scroll-behavior: smooth;
}
body .page-wrapper {
  overflow: hidden !important;
}
.hideme {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}
.fade-in {
  opacity: 1;
  transform: translateY(0) !important;
}
#header .show,
#home-bodycontent .show,
#roster-bodycontent .show,
#contact-bodycontent .show {
  opacity: 1 !important;
}
.shadow {
  box-shadow: 0px 6px 20px -10px rgb(0 0 0 / 20%);
}
.scale-down {
  transform: scale(0.9) translate(0px, -3px) !important;
  transition: transform 0.5s ease;
}
.bleach-logo {
  filter: brightness(0) invert(1) !important;
  -webkit-filter: brightness(0) invert(1) !important;
}
@media (max-width: 767px) {
  .scale-down {
    transform: scale(0.8) translate(0px, 5px) !important;
  }
}

#header #primary-logo,
#header #secondary-logo {
  min-height: 75px;
  display: flex;
  align-items: center;
}

/**
    * 02. Navigation
    */

/* New Mobile Nav */
.nav-primary-footer {
  display: none;
}
@media only screen and (max-width: 991px) {
  .nav-primary-footer {
    display: block;
    margin-top: auto;
    background-color: #eee;
    padding: 1rem;
  }
  body.kv-mobile-menu #header .container .row-flex:nth-child(3) .nav-primary-wrapper {
    position: static !important;
    display: block !important;
  }
  body.kv-mobile-menu #header .container .row-flex:nth-child(3) .nav-primary-wrapper a,
  body.kv-mobile-menu #header .container .row-flex:nth-child(3) .nav-primary-wrapper span {
    font-size: 1rem;
  }
  body.kv-mobile-menu #header .nav-primary > li:last-of-type {
    margin-bottom: 2rem !important;
  }
  body.kv-mobile-menu #header .container .row-flex:nth-child(3) .nav-primary.kv-menu-open > li > a {
    animation: navAnimate 0.5s ease forwards;
    opacity: 0;
    display: inline-block;
  }
  body.kv-mobile-menu .nav-primary .nav-item .sub-menu {
    background-color: transparent !important;
  }
  body.kv-mobile-menu #header .nav-primary.kv-menu-open .nav-item-parent:hover > .sub-menu {
    display: none;
  }
  body.kv-mobile-menu #header .nav-primary {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    z-index: 100;
    width: 100%;
    max-width: 650px !important;
    height: 100vh !important;
    backdrop-filter: blur(15px);
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0 !important;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    transform: translatex(100%);
    transform-origin: center;
    transition: all 0.5s ease;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
    overflow: scroll;
  }
  body.kv-mobile-menu #header .container .row-flex:nth-child(3) .nav-primary.kv-menu-open {
    transform: translatex(0%) !important;
  }
  body.kv-mobile-menu #header .navbar-toggler {
    z-index: 200;
  }
  body.kv-mobile-menu.header-transparent #header .row-flex .navbar-toggler span {
    border-color: #000 !important;
  }
  body.kv-mobile-menu #header .nav-primary .sub-menu {
    overflow: hidden;
  }
  body.kv-mobile-menu #header .nav-primary .nav-item-parent > .nav-link:after {
    transform: translatex(30px) rotate(90deg);
  }
  body.kv-mobile-menu #header .nav-primary .sub-menu li a {
    opacity: 0.5;
    font-size: 0.8rem;
  }
  body.kv-mobile-menu #header .nav-primary a:hover {
    background-color: transparent !important;
  }
}

/* Basic Nav Styles */

body .nav-primary .nav-link {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.2px;
}
body #header .nav-primary {
  opacity: 0;
  transition: opacity 0.5s ease;
}

@media only screen and (min-width: 992px) {
  body.header-transparent #header .nav-primary > li > a {
    color: #fff !important;
  }
  body.header-transparent #header.lighten .nav-primary > li > a {
    color: #fff !important;
  }
  body.header-transparent #header.scroll.lighten .nav-primary > li > a {
    color: #000 !important;
  }
  body #header .nav-primary {
    margin-top: 20px;
  }
  body #header.scroll .nav-primary {
    margin-top: 10px;
  }
}
body.header-transparent #header.lighten .list-inline-item a,
body.header-transparent #header.lighten .list-inline-item .fa {
  color: #fff !important;
}
body.header-transparent #header.lighten .list-inline-item .fa.social {
  border-color: #fff !important;
}
body.header-transparent #header .list-inline-item a,
body.header-transparent #header .list-inline-item .fa {
  color: #fff !important;
}
body.header-transparent #header .list-inline-item .fa.social {
  border-color: #000 !important;
}
body:not(.header-transparent) #header .list-inline a .fa.social {
  border-color: transparent !important;
}
#home-bodycontent #header .list-inline-item:nth-child(3),
#home-bodycontent #header .list-inline-item:nth-child(4),
#home-bodycontent #header .list-inline-item:nth-child(5),
#home-bodycontent #header .list-inline-item:nth-child(6),
#home-bodycontent #header .list-inline-item:nth-child(7),
#home-bodycontent #header .list-inline-item:nth-child(8),
#home-bodycontent #header .list-inline-item:nth-child(9) {
  display: none;
}

body .nav-primary .nav-item .sub-menu {
  background-color: #fff;
  box-shadow: 0px 0px 11px -2px rgba(0, 0, 0, 0.2);
}
body .nav-primary .nav-item .sub-menu a,
body .nav-primary .nav-item .sub-menu span {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 992px) {
  body .nav-primary .nav-item .sub-menu span {
    padding: 8px 15px;
    font-weight: 400;
  }
  #header .nav-primary .sub-menu {
    box-shadow: none !important;
  }
  #header .nav-primary .sub-menu a,
  #header .nav-primary .sub-menu li span {
    padding: 12px 15px;
  }
}
/* Mobile Toggle Menu */
body .navbar-toggler {
  border-color: transparent !important;
  width: 40px;
  height: 40px;
  padding: 0 !important;
}
body .navbar-toggler:focus {
  outline: none;
}
body .navbar-toggler span {
  border-color: #000 !important;
  transition: all 0.5s ease;
}
body.header-transparent .navbar-toggler span {
  border-color: #000 !important;
}
#header .navbar-toggler.flippy span:nth-child(1) {
  transform: translate(0px, 3px) rotate(45deg);
}
#header .navbar-toggler.flippy span:nth-child(2) {
  transform: scale(0);
}
#header .navbar-toggler.flippy span:nth-child(3) {
  transform: translate(0px, -10px) rotate(-45deg);
}
body.header-transparent #header.scroll .navbar-toggler span {
  border-color: #fff !important;
}
@media screen and (max-width: 992px) {
  #header .container .row-flex:nth-child(2) .column-end .navbar-toggler,
  #header .map-filter-wrapper .row-flex:nth-child(2) .column-end .navbar-toggler {
    top: 85% !important;
  }
  #header:not(.search-results) .container .row-flex:nth-child(2) .column-end .navbar-toggler,
  #header:not(.search-results) .map-filter-wrapper .row-flex:nth-child(2) .column-end .navbar-toggler {
    top: 30% !important;
  }
  #header.scroll .container .row-flex:nth-child(2) .column-end .navbar-toggler,
  #header.scroll .map-filter-wrapper .row-flex:nth-child(2) .column-end .navbar-toggler {
    top: 35% !important;
  }
}
/* Logos */
body #header .logo {
  transition: transform 0.5s ease;
  margin-left: 20px;
  max-width: 250px;
}
#header.home .logo.primary {
  transform: scale(1.3) translate(0px, -10px);
  transform-origin: left;
}
#header .logo.primary {
  content: url('https://dtzulyujzhqiu.cloudfront.net/professionalrealtyservices13735/images/1772139544_XlRC8t9tAPdZ2Ebedb5q1eOeeijjZwcSLUpeU0Lu.png');
}
body #header.search-results .logo {
  margin-left: 0px !important;
}
body:not(.header-transparent) #header .logo.primary {
  transform: scale(1) translate(0px, -8px);
}
@media only screen and (max-width: 767px) {
  body:not(.header-transparent) #header .logo.primary {
    transform: scale(1) translate(0px, 0px);
  }
  body:not(.header-transparent) #header .inner-layout.navbar-toggler {
    top: 45% !important;
  }
}
@media only screen and (max-width: 545px) {
  body:not(.header-transparent) #header.search-results .logo.primary {
    transform: scale(1) translate(0px, 30px) !important;
  }
}
body:not(.header-transparent) #header .logo.secondary {
  transform: scale(1) translate(0px, -15px);
}

body.header-transparent #fixed-header-spacer {
  display: none !important;
}
#header .container .row-flex:nth-child(1) {
  position: absolute;
  top: 10px;
  right: 80px;
  width: 100%;
  display: block !important;
  transition: opacity 0.5s ease;
}
@media screen and (min-width: 992px) {
  body.header-transparent #header .container .row-flex:nth-child(3) {
    margin-top: 0px !important;
  }
}
#header .container .row-flex:nth-child(1).scroll {
  opacity: 0;
}
@media (max-width: 992px) {
  #header .container .row-flex:nth-child(1) {
    right: 35px !important;
  }
}
#header .container .row-flex:nth-child(1) > ul {
  position: absolute;
  right: 0;
}
#header .container .nav-primary-wrapper {
  transition: top 0.5s ease;
}
@media (max-width: 992px) {
  #header .container .row-flex:nth-child(2) .column-end {
    justify-content: center !important;
    align-items: flex-end !important;
  }
  #header .container.scroll .nav-primary-wrapper {
    top: 65px !important;
  }
}
body .page-wrapper #header:not(.search-results) {
  padding-top: 0px !important;
  height: auto !important;
  min-height: auto !important;
  transition: all 0.5s ease;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.header-transparent .page-wrapper #header {
  background-color: #00254c;
  background: #00254c;
}
@media only screen and (max-width: 1115px) {
  body .page-wrapper #header.search-results > .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body .page-wrapper #header.search-results {
    padding-top: 4px !important;
  }
  body .page-wrapper #header.search-results .nav-primary {
    margin-top: 54px !important;
  }
}
@media only screen and (max-width: 992px) {
  body .page-wrapper #header.search-results .nav-primary .logo.primary {
    transform: scale(1) translate(0px, 30px);
  }
  body .page-wrapper #header.search-results .nav-primary {
    margin-top: 0px !important;
  }
}

body #header.scroll {
  position: fixed !important;
  box-shadow: 0px 6px 40px -10px rgba(0, 0, 0, 0.3);
  background: #00254c !important;
  background-color: #00254c !important;
  z-index: 1001 !important;
}
.scale-down {
  transform: scale(1) translate(0px, -5px) !important;
  transition: transform 0.5s ease;
}
#header.home.scroll .scale-down {
  transform: scale(1) translate(0px, -5px) !important;
}
body #header.scroll .nav-primary > .nav-item > a {
  color: #fff !important;
}
body #header .container .navbar-toggler {
  transition: top 0.5s ease;
}
@media (max-width: 992px) {
  body.header-transparent #header .nav-primary .nav-link {
    transition: color 0.5s ease;
    color: #000 !important;
  }
  body #header .container.scroll .navbar-toggler,
  body #header .container.scroll .navbar-toggler {
    top: 25% !important;
  }
}
#header .container .row-flex:first-child .list-inline-item.hidden-lg-up {
  display: inline-block !important;
}
@media (min-width: 992px) {
  #header .container .row-flex > .column-end {
    display: none !important;
  }
  #header .container .row-flex:nth-child(2) .column-end .navbar-toggler {
    top: 14% !important;
  }
  #header .container .row-flex:nth-child(2) {
    width: 30%;
  }
  #header .container .row-flex:nth-child(3) {
    width: 70%;
  }
}
@media (max-width: 1115px) {
  #header {
    padding-top: 24px !important;
  }
}
#header .column #quick-search {
  display: none !important;
}
body #header > .container {
  padding: 15px;
  padding-top: 35px;
  display: flex;
  align-items: center;
  position: relative;
  transition: padding 0.5s ease;
}
body #header > .container.scroll {
  padding: 0px;
  padding-top: 10px;
}
body #header .container .row-flex:nth-child(3) {
  margin-top: 0px !important;
}
body .content-title.header-primary {
  background-color: #fff !important;
}

/* Homepage Hero */
@media only screen and (min-width: 992px) {
  #home-bodycontent .cover[style="height: 700px"] {
    height: 600px !important;
    margin-top: 70px;
  }
  #home-bodycontent .cover.cover-center:not([style="height: 700px"]) {
    margin-top: 70px;
    height: 550px;
  }
  #header .sub-menu {
    background-color: #fff !important;
    border-radius: 3px;
  }
  #header .sub-menu a,
  #header .sub-menu span {
    font-size: 0.9rem;
  }
  #header .sub-menu a:hover {
    border-left: 5px solid;
  }
}
@media only screen and (max-width: 992px) {
  #home-bodycontent .cover {
    height: 750px !important;
  }
  #home-bodycontent .cover-title > .container {
    margin-top: 10rem !important;
  }
}
#home-bodycontent .cover.cover-center.agent.video {
  height: 100vh !important;
  margin-top: -60px !important;
}
#home-bodycontent .cover-title {
  height: 100%;
  width: 100%;
  transform: unset !important;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(var(--hero-light-gradient));
}
#home-bodycontent .cover-title > .container {
  width: 100%;
  max-width: 1440px;
}
#home-bodycontent .cover-title-inner > .row {
  display: none !important;
}
@media (min-width: 992px) {
  body.header-transparent .cover.cover-center.agent.video .cover-image {
    background-image: unset !important;
  }
}
#home-bodycontent .cover-overlay[data-opacity="0.6"] ~ .cover-title {
  background-image: linear-gradient(var(--hero-dark-gradient));
}
#home-bodycontent .hero-wrapper {
  text-align: left !important;
  align-items: flex-start;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
  animation: fade-left 0.75s ease forwards;
  animation-delay: 0.3s;
  text-shadow: none;
}
#home-bodycontent .hero-wrapper .mini-hero-tag {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  display: block;
  margin-bottom: 0.5rem;
}
#home-bodycontent .hero-wrapper .mini-hero-tag.bold {
  font-weight: 600;
}
#home-bodycontent .cover-overlay[data-opacity="0.6"] ~ .cover-title .hero-wrapper .mini-hero-tag {
  color: #fff;
}
#home-bodycontent .hero-wrapper h1 {
  font-size: 3rem !important;
  text-transform: uppercase;
  max-width: 750px;
  text-align: left;
}
#home-bodycontent .hero-wrapper h1,
#home-bodycontent .hero-wrapper p {
  color: #fff !important;
}
#home-bodycontent .cover-overlay[data-opacity="0.6"] ~ .cover-title .hero-wrapper h1,
#home-bodycontent .cover-overlay[data-opacity="0.6"] ~ .cover-title .hero-wrapper p {
  color: #fff !important;
}
#home-bodycontent .hero-wrapper p {
  text-align: left;
  max-width: 850px;
  margin-left: 0;
  margin-bottom: 2rem !important;
  opacity: 0;
  animation: fade-left 0.75s ease forwards;
  animation-delay: 0.7s;
  font-size: 1.5rem;
}
#home-bodycontent .hero-wrapper a {
  border: 1px solid;
  color: #fff !important;
  opacity: 0;
  animation: fade-left 0.75s ease forwards;
  animation-delay: 0.9s;
}
#home-bodycontent .hero-wrapper a.btn-secondary {
  background-color: var(--secondary-brand-color) !important;
}
@media screen and (max-width: 544px) {
  .hero-wrapper a {
    font-size: 1rem !important;
  }
}
#home-bodycontent #horizontal-search {
  padding: 0 !important;
  margin-left: 0;
  opacity: 0;
  animation: fade-up 0.75s ease forwards;
  animation-delay: 0.9s;
}
#home-bodycontent #horizontal-search .row {
  margin: 0 !important;
  padding: 0 !important;
}
#home-bodycontent #horizontal-search #qs-submit {
  height: 55px;
}
#home-bodycontent #horizontal-search #more-options {
  display: none;
}
@media only screen and (max-width: 992px) {
  #home-bodycontent .hero-wrapper {
    text-align: center !important;
    align-items: center;
  }
  #home-bodycontent .hero-wrapper h1 {
    font-size: 3rem !important;
    text-align: center;
    margin: 0 auto;
  }
  #home-bodycontent .hero-wrapper p {
    text-align: center;
    margin: 0 auto;
  }
  body.header-transparent #header .navbar-toggler {
    border-color: transparent;
  }
  body.header-transparent #header .navbar-toggler span {
    border-color: #fff !important;
  }
}
@media only screen and (max-width: 544px) {
  #home-bodycontent .hero-wrapper h1 {
    font-size: 2rem !important;
    margin-bottom: 1rem;
  }
  #home-bodycontent .hero-wrapper p {
    line-height: 1.6rem;
  }
  #home-bodycontent .hero-wrapper a {
    margin-bottom: 0.5rem;
  }
}
#home-bodycontent .hero-tagline a,
#home-bodycontent .hero-tagline span {
  font-size: 1.5rem;
}
#home-bodycontent .hero-wrapper a.tagline-phone,
#home-bodycontent .hero-wrapper a.tagline-email,
#home-bodycontent .hero-wrapper a.tagline-pipe {
  color: rgb(30, 56, 255) !important;
  border: none !important;
}
.bg-chevron-waves {
  background-image: url(https://kunversion-frontend-custom.s3.amazonaws.com/1assets/graphic/backgrounds/chevron-waves.svg);
  background-size: cover;
  background-position: center;
  background-color: #fff;
}

/* Homepage Hero Social */
#homepage-social {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}
#homepage-social a {
  margin: 1rem 0;
  opacity: 0;
  animation: fade-left 0.75s ease forwards;
  animation-delay: 0.3s;
  text-decoration: none !important;
  transition: transform 0.5s ease;
  color: #fff;
}
#homepage-social a:hover {
  transform: translateX(15px) rotate(9deg);
}
#home-bodycontent .cover-overlay[data-opacity="0.6"] ~ #homepage-social a {
  color: #fff !important;
}
#home-bodycontent .cover-overlay[data-opacity="0.6"] ~ #homepage-social:before,
#home-bodycontent .cover-overlay[data-opacity="0.6"] ~ #homepage-social:after {
  background-color: #fff !important;
}
#homepage-social a:nth-child(2) {
  animation-delay: 0.5s;
}
#homepage-social a:nth-child(3) {
  animation-delay: 0.7s;
}
#homepage-social a:nth-child(4) {
  animation-delay: 0.9s;
}
#homepage-social a:nth-child(5) {
  animation-delay: 1.1s;
}
#homepage-social a:nth-child(6) {
  animation-delay: 1.3s;
}
#homepage-social a:nth-child(7) {
  animation-delay: 1.5s;
}
#homepage-social a:nth-child(8) {
  animation-delay: 1.7s;
}
#homepage-social a .fa {
  font-size: 1.4rem;
}
#homepage-social:before {
  animation: fade-down 0.75s ease forwards;
  animation-delay: 0.3s;
}
#homepage-social:before,
#homepage-social:after {
  content: "";
  width: 1px;
  height: 80px;
  background-color: #fff;
  opacity: 0;
}
#homepage-social:after {
  animation: fade-up 0.75s ease forwards;
  animation-delay: 0.3s;
}
@media only screen and (max-width: 992px) {
  #homepage-social {
    bottom: 0;
    top: unset;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 550px;
    margin: auto;
    flex-direction: row;
    justify-content: space-evenly;
    transform: unset;
  }
  #homepage-social:before,
  #homepage-social:after {
    display: none;
  }
  #homepage-social a {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
  }
  #home-bodycontent .cover-title {
    padding-left: 0 !important;
  }
}

/* Social Media Widget */
#kv-social-media-widget {
  padding-left: 1rem;
  padding-right: 1rem;
}
#kv-social-media-widget header p {
  font-size: 1.2rem;
}
#kv-social-media-widget .fa,
#kv-social-media-widget a {
  transition: all 0.5s ease;
}
#kv-social-media-widget.style-1 .kv-social-media-inner {
  display: flex;
  justify-content: space-evenly;
}
#kv-social-media-widget.style-1 a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  text-decoration: none;
  font-size: 2rem;
}
@media only screen and (min-width: 992px) {
  #kv-social-media-widget.style-1 a:hover .fa {
    transform: scale(1.2);
  }
}
#kv-social-media-widget.style-2 .kv-social-media-inner {
  display: flex;
  justify-content: space-evenly;
  max-width: 1440px;
  margin: 0 auto;
}
#kv-social-media-widget.style-2 a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  text-decoration: none;
  font-size: 2rem;
  background-color: var(--primary-brand-color);
  border-right: 1px solid #eee;
  color: #fff;
  position: relative;
}
#kv-social-media-widget.style-2 a:last-of-type {
  border-right: none;
}
@media only screen and (min-width: 992px) {
  #kv-social-media-widget.style-2 a {
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  }
  #kv-social-media-widget.style-2 a:hover {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
#kv-social-media-widget.style-3 .kv-social-media-inner {
  display: flex;
  justify-content: space-evenly;
}
#kv-social-media-widget.style-3 a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid;
  border-radius: 50%;
  font-size: 1.5rem;
}
@media only screen and (min-width: 992px) {
  #kv-social-media-widget.style-3 a:hover {
    transform: rotate(360deg) scale(1.1);
  }
}
#kv-social-media-widget.style-4 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}
#kv-social-media-widget.style-4 header {
  text-align: left;
  margin-bottom: 0;
}
#kv-social-media-widget.style-4 .kv-social-media-inner {
  width: 75%;
  display: flex;
  justify-content: space-evenly;
}
#kv-social-media-widget.style-4 a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: 1px solid;
  border-radius: 50%;
  font-size: 1.5rem;
}
@media only screen and (min-width: 992px) {
  #kv-social-media-widget.style-4 a:hover {
    transform: rotate(360deg) scale(1.1);
  }
}
@media only screen and (max-width: 992px) {
  #kv-social-media-widget header h2 {
    font-size: 2rem;
  }
  #kv-social-media-widget header p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  #kv-social-media-widget.style-4 {
    flex-direction: column;
    justify-content: spac-evenly;
    align-items: center;
  }
  #kv-social-media-widget.style-4 a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  #kv-social-media-widget.style-4 header {
    text-align: center;
    margin-bottom: 1rem !important;
  }
}

/* Homepage Body */
body .page-wrapper .information-bar {
  display: none;
}
#home-bodycontent .custom-top {
  opacity: 0;
  transition: all 0.5s ease;
  min-height: 400px;
}
#home-bodycontent #cta,
#home-bodycontent #featured-areas {
  border-bottom: 1px solid #eee;
}
#section .section-content {
  max-width: 500px !important;
}
#section .section-content h1 {
  font-size: 4rem;
}
#section .section-content p {
  font-size: 1.5rem;
}
#section .section-content a {
  padding: 1rem 2rem;
  font-size: 1rem;
}
#cta .card-tag {
  background-color: #38b6ff !important;
}
#cta.logo-banner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
}
#cta.logo-banner img {
  width: 100%;
  max-width: 221px;
  max-height: 115px;
  object-fit: contain;
  filter: brightness(1);
  opacity: 0.8;
  margin: 1em;
}
@media screen and (max-width: 450px) {
  #cta.logo-banner img {
    max-width: 200px !important;
    max-height: 30px !important;
  }
}
#cta.banner a.btn-secondary {
  background-color: var(--secondary-brand-color) !important;
}

#custom-linked-slider .container {
  max-width: 1440px;
}
#custom-linked-slider .owl-stage {
  padding: 3rem 0;
}
#custom-linked-slider .linked-slide {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  font-family: sans-serif;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-decoration: none !important;
}
#custom-linked-slider .linked-slide span:not(.btn) {
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
}
#custom-linked-slider .category {
  margin: 0 !important;
  height: unset;
  font-size: 0.9rem !important;
  background-image: unset;
}
#custom-linked-slider .category span {
  text-align: left !important;
  font-size: 1rem !important;
}
#custom-linked-slider .linked-slide p {
  font-size: 1.1rem;
  color: #ffd702;
  font-weight: 200;
}
#custom-linked-slider .linked-slide span.btn {
  color: #fff;
  font-weight: 400;
  background-color: transparent !important;
  text-align: left;
  padding-left: 0;
}
#custom-linked-slider .owl-nav button {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
#custom-linked-slider .owl-nav button .fa {
  font-size: 1.3rem;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}
#custom-linked-slider .owl-nav .owl-prev {
  left: -10px;
}
#custom-linked-slider .owl-nav .owl-next {
  right: -10px;
}
#custom-linked-slider .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
#custom-linked-slider .owl-dot {
  background: #000;
  width: 20px;
  height: 20px;
  margin: 0 1rem;
}
@media screen and (min-width: 992px) {
  #custom-linked-slider .linked-slide:hover {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

/* Testimonials */
#testimonials-carousel {
  display: none;
}
#custom-testimonials {
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}
#custom-testimonials header {
  margin-bottom: 2rem;
}
#custom-testimonials header h2 {
  font-weight: 600;
  font-size: 2.5rem !important;
}
#custom-testimonials header h2:after {
  content: "";
  display: block;
  width: 250px;
  height: 2px;
  margin: 2rem auto;
  background-color: var(--secondary-brand-color, #e6e6e6);
}
#custom-testimonials header a {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-weight: 600;
  text-decoration: none;
}
#custom-testimonials .custom-testimonials-inner {
  max-width: 1140px;
  margin: 0 auto;
}
#custom-testimonials .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 3rem));
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 3px 10px -5px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}
#custom-testimonials .owl-carousel .owl-nav button .fa {
  color: #000;
}
#custom-testimonials .owl-carousel .owl-nav .owl-prev {
  left: -20px;
}
#custom-testimonials .owl-carousel .owl-nav .owl-next {
  right: -20px;
}
#custom-testimonials .custom-testimonial {
  text-align: center;
  padding: 1rem 2.5rem;
  background-color: #fff;
}
#custom-testimonials.has-bg-image .custom-testimonial {
  background-color: transparent !important;
}
#custom-testimonials .custom-testimonial p {
  position: relative;
}
#custom-testimonials .custom-testimonial p.quotes:before {
  position: absolute;
  top: 20px;
  left: 0;
  content: "\f10d";
  font-size: 5em;
  color: rgba(245, 245, 245, 0.8);
  z-index: -1;
  font-family: fontAwesome;
}
#custom-testimonials .custom-testimonial p.quotes:after {
  position: absolute;
  bottom: -20px;
  right: 0;
  content: "\f10e";
  font-size: 5em;
  color: rgba(245, 245, 245, 0.8);
  z-index: -1;
  font-family: fontAwesome;
}
#custom-testimonials .custom-testimonial-rating {
  margin-bottom: 2em;
}
#custom-testimonials .custom-testimonial-rating .fa-star {
  margin: 0 2px;
  font-size: 2rem;
}
#custom-testimonials .custom-testimonial-rating .fa-star.visible-star {
  color: #ffd700;
  text-shadow: 0px 1px 2px #717171;
}
#custom-testimonials .custom-testimonial-rating .fa-star.invisible-star {
  color: rgb(37 32 32 / 10%);
}
#custom-testimonials .custom-testimonials-inner p {
  font-size: 1.2rem;
}

/* Testimonial Page */
/* #testimonials-bodycontent .col-layout-main .col-md-4.col-lg-3 {
  display: none;
}
#testimonials-bodycontent .col-layout-main .col-md-8.col-lg-9 {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  padding-top: 2rem;
} */
/* Contact Page */
#contact-bodycontent .container.mb2.col-layout-main {
  opacity: 0;
  transition: opacity 0.5s ease;
}
#contact-bodycontent .page-wrapper.contact-page > .container-fluid > .container-fluid.m-b-3 {
  margin-bottom: 0 !important;
}
#contact-bodycontent .contact-page-about p {
  font-size: 1.2rem;
}
#contact-bodycontent .contact-page-info img {
  width: 100%;
}
#contact-bodycontent .contact-page-info .agent-contact-title {
  margin-bottom: 0.5rem;
}
#contact-bodycontent .contact-page-address-wrapper {
  padding-top: 1rem;
  border-top: 1px solid #ddd;
}
#contact-bodycontent .contact-page-address-wrapper span {
  display: block;
}
#contact-bodycontent .contact-page-address-wrapper .fa {
  margin-right: 1rem;
  transform: scale(1.4);
  color: #ffffff;
}
#contact-bodycontent #contact-form {
  background-color: transparent !important;
}
#contact-bodycontent #contact-form button[submit] .fa {
  display: none;
}
@media (max-width: 767px) {
  #contact-bodycontent .contact-page-info img {
    max-width: 250px;
    display: block;
    margin: 0 auto;
  }
  #contact-bodycontent .container.mb2.col-layout-main > .row {
    display: flex;
    flex-direction: column-reverse;
  }
  #contact-bodycontent .contact-page-about p {
    font-size: 1rem;
  }
  #contact-bodycontent .contact-page-about.p-t-3 h2 {
    font-size: 1.5rem;
  }
  #contact-bodycontent .page-wrapper.contact-page .container-fluid.m-b-3 .container-fluid.m-b-3 {
    margin-bottom: 0 !important;
  }
}

/* About */
body #about {
  display: none;
}

/** * 07. Video CTA */
.texture.architect {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='199' viewBox='0 0 100 199'%3E%3Cg fill='%23e6e5e8' fill-opacity='0.4'%3E%3Cpath d='M0 199V0h1v1.99L100 199h-1.12L1 4.22V199H0zM100 2h-.12l-1-2H100v2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
#video-cta {
  margin: 0 0 1rem;
  background-position: top;
  background-size: cover;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-position: bottom;
  background-size: cover;
}
#video-cta h2 {
  font-size: 3rem;
  font-weight: 600;
}
#video-cta p {
  font-size: 1.5rem;
}
#video-cta .btn.btn-primary.btn-play {
  background-color: transparent !important;
  border: 2px solid;
  font-size: 1.2em;
}
#video-cta .btn.btn-primary.btn-play:hover {
  background-color: rgba(0, 0, 0, 0.2) !important;
}
#video-cta .btn.btn-primary.btn-play:before {
  content: "\f144";
  margin-right: 15px;
  transition: all 0.25s ease;
  display: inline;
  position: relative;
  font-family: "FontAwesome";
  left: 0;
}
#video-cta-modal .modal-dialog {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
  box-shadow: 0px 20px 80px -15px rgb(0 0 0 / 30%);
}
#video-cta-modal .modal-body {
  padding: 0 !important;
}
#video-cta-modal .close {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 50px;
  height: 50px;
  z-index: 1;
  font-size: 2em;
  background-color: #fff;
  border-radius: 50%;
  opacity: 100%;
  box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}
#video-cta-modal .embed-responsive-16by9 {
  background-color: #000 !important;
}
@media (max-width: 850px) {
  #video-cta-modal .close {
    top: -55px;
    right: 0px;
  }
}
@media (max-width: 750px) {
  #video-cta-modal .modal-dialog {
    max-width: 95%;
  }
}
@media (max-width: 450px) {
  #video-cta-modal .close {
    top: unset;
    bottom: -60px;
    right: 0px;
  }
}
/** * 06. Footer */
.footer-wrapper,
.footer-top,
.footer-top p {
  background-color: var(--footer-backgroundColor) !important;
  color: var(--footer-text-color) !important;
}
.footer-top .social .fa {
  background-color: var(--secondary-brand-color) !important;
}
.footer-top-left a {
  color: var(--footer-text-color) !important;
}
.footer-top-left small {
  font-size: 100% !important;
}
.footer-top-left .social {
  margin-top: 20px !important;
}
.footer-text {
  color: var(--footer-text-color) !important;
  margin: 0;
  line-height: 18px;
  font-weight: 500;
}
.footer-text.title {
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--footer-text-color);
}
.footer-bottom .nav-item a:not([aria-haspopup="true"]) {
  color: var(--footer-text-color);
}
.footer-logo {
  display: block;
  max-width: 190px;
  margin-bottom: 20px;
  filter: invert(1);
}
@media (max-width: 767px) {
  .footer-logo {
    margin: 0 auto 20px;
    margin-bottom: 50px;
  }
  .footer-top-left > address ~ p {
    text-align: center;
  }
}
#footer-cta {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  text-align: center;
  background-position: top;
  text-align: center;
}
#footer-cta h2 {
  font-size: 2.5rem;
}
#footer-cta p {
  font-size: 1.3rem;
  max-width: 750px;
  text-align: center;
}
#footer-cta a {
  color: #fff;
  border: 3px solid #fff;
  padding: 12px 24px;
  font-weight: 600;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  text-decoration: none !important;
}

#home-bodycontent .kv-featured-areas-widget .kv-featured-area {
  padding: 2rem;
  text-align: center;
  width: 100% !important;
  min-width: unset !important;
  max-width: calc(33.33333% - 20px) !important;
}
@media only screen and (max-width: 992px) {
  #home-bodycontent .kv-featured-areas-widget .kv-featured-area {
    max-width: calc(50% - 20px) !important;
  }
}
@media only screen and (max-width: 544px) {
  #home-bodycontent .kv-featured-areas-widget .kv-featured-area {
    max-width: 100% !important;
  }
}

/* About Entity */
#about-entity {
  background-color: #fff;
}
#about-entity img {
  display: block;
  width: 100%;
  min-height: 450px;
  max-height: 450px;
  object-fit: cover;
  margin: 0 auto;
}
#about-entity .container {
  max-width: 1440px;
}
#about-entity .container > .row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
#about-entity h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
#about-entity h2:after {
  content: "";
  display: block;
  width: 250px;
  height: 2px;
  margin: 2rem 0;
  background-color: var(--secondary-brand-color, #e6e6e6);
}
#about-entity p {
  font-size: 1.2rem;
}
#about-entity a {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 992px) {
  #about-entity h2 {
    font-size: 2rem;
  }
  #about-entity h2:after {
    margin: 1rem 0;
  }
  #about-entity p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  #about-entity .container > .row,
  #about-entity .container > .row.reverse {
    flex-direction: column;
  }
  #about-entity img {
    max-height: 300px;
    min-height: 300px;
    margin-bottom: 2rem;
    object-fit: contain;
  }
  #about-entity h2 {
    font-size: 2rem;
    text-align: center;
  }
  #about-entity h2:after {
    margin: 1rem auto;
  }
  #about-entity p {
    font-size: 1rem;
    text-align: center;
  }
  #about-entity a {
    display: block;
    text-align: center;
  }
}
@media (max-width: 420px) {
  #about-entity img {
    min-height: unset !important;
  }
}

/* About Team */
#is-team_true h2:after {
  content: "";
  display: block;
  width: 250px;
  height: 2px;
  margin: 2rem auto;
  background-color: var(--secondary-brand-color, #e6e6e6);
}

/* About Agent */
#about-agent {
  border-bottom: 1px solid #eee;
}
#about-agent img {
  display: block;
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 50%;
}
#about-agent img.no-radius {
  border-radius: none !important;
  border-radius: 0 !important;
}
#about-agent .container > .row {
  display: flex;
  justify-content: center;
  align-items: center;
}
#about-agent .container > .row.reverse {
  flex-direction: row-reverse;
}
#about-agent h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
#about-agent h2:after {
  content: "";
  display: block;
  width: 250px;
  height: 2px;
  margin: 2rem 0;
  background-color: var(--secondary-brand-color, #e6e6e6);
}
#about-agent .col-md-12.center h2:after {
  margin: 2rem auto !important;
}
#about-agent p,
#about-agent li {
  font-size: 1.2rem;
}
#about-agent ol {
  padding: 0 1rem;
}
#about-agent ul {
  padding: 0;
}
#about-agent li {
  margin-bottom: 0.6rem;
}
#about-agent a:not([rel]) {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-weight: 600;
  text-decoration: none;
}
#about-agent a[rel] {
  color: blue !important;
}
@media (max-width: 992px) {
  #about-agent h2 {
    font-size: 2rem;
  }
  #about-agent h2:after {
    margin: 1rem 0;
  }
  #about-agent p {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  #about-agent .container > .row {
    flex-direction: column;
  }
  #about-agent img {
    max-width: 300px;
    max-height: 300px;
    margin-bottom: 2rem;
  }
  #about-agent h2 {
    font-size: 2rem;
    text-align: center;
  }
  #about-agent h2:after {
    margin: 1rem auto;
  }
  #about-agent p {
    font-size: 1rem;
    text-align: center;
  }
  #about-agent a {
    display: block;
    text-align: center;
  }
}

/* Sell Page */
#sell-bodycontent .sell-cover.sell-cover-center.login .sell-cover-image {
  background-image: url("https://dtzulyujzhqiu.cloudfront.net/kvcoredemo14/images/1628186092_Y9LC8EsmNMB08jbuCpNJEFgJnlvqRH9mAK1fRWv8.jpeg") !important;
  filter: none !important;
  background-size: cover !important;
}
#sell-bodycontent #sell {
  margin-bottom: 0 !important;
}
#sell-bodycontent #header .list-inline .fa.social {
  border-color: transparent !important;
}
#sell-bodycontent .information-bar {
  display: none !important;
}
#sell-bodycontent #getValue {
  width: 100%;
}
#sell-page-contact-cta {
  animation: sellCta 2s ease forwards;
  animation-delay: 2s;
  opacity: 0;
  color: #fff;
}
div#sell-page-contact-cta p {
  font-size: 1.3rem;
  color: #000;
}
div#sell-page-contact-cta a {
  padding: 1rem 2rem;
  font-size: 1.3rem;
}
#sell-bodycontent .sell-cover-title {
  height: 100%;
  width: 100%;
  transform: unset !important;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(var(--hero-light-gradient));
}
#sell-bodycontent .sell-cover-title > .container {
  width: 100%;
}
#sell-bodycontent .sell-cover .col-md-5.col-lg-4.hidden-sm-down,
#sell-bodycontent .sell-cover .col-md-5.col-lg-4.hidden-md-up {
  display: none;
}
#sell-bodycontent .sell-cover .col-md-7.col-lg-8 {
  width: 100%;
}
#sell-bodycontent .sell-cover-title-inner h1 {
  color: #000;
  text-shadow: none;
  font-size: 5em;
  font-weight: bold !important;
  opacity: 0;
  animation: fade-left 0.75s ease forwards;
  animation-delay: 0.3s;
}
#sell-bodycontent .sell-cover-title-inner p {
  color: #000;
  font-size: 1.5rem;
  text-shadow: none;
  font-weight: bold !important;
  opacity: 0;
  animation: fade-left 0.75s ease forwards;
  animation-delay: 0.5s;
}
#sell-bodycontent .sell-cover-title-inner ~ div.m-b-1,
#sell-bodycontent .sell-cover-title-inner ~ .row.m-b-3.m-t-3 {
  opacity: 0;
  animation: fade-left 0.75s ease forwards;
  animation-delay: 0.7s;
}
#sell-bodycontent .sell-cover-image[style*="opacity: 0.6"] ~ .sell-cover-title {
  background-image: linear-gradient(var(--hero-dark-gradient));
}
#sell-bodycontent .sell-cover-image[style*="opacity: 0.6"] ~ .sell-cover-title .sell-cover-title-inner h1,
#sell-bodycontent .sell-cover-image[style*="opacity: 0.6"] ~ .sell-cover-title .sell-cover-title-inner p,
#sell-bodycontent .sell-cover-image[style*="opacity: 0.6"] ~ .sell-cover-title div#sell-page-contact-cta p {
  color: #fff !important;
}
@media screen and (min-width: 767px) {
  #sell-bodycontent .sell-cover {
    height: 100vh;
    margin-top: -60px;
  }
}
@media screen and (max-width: 992px) {
  #sell-bodycontent .sell-cover-title-inner h1 {
    font-size: 3em;
  }
  #sell-bodycontent .sell-cover-title-inner p {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  #sell-bodycontent.sell-cover-pull-top.header-transparent .sell-cover {
    margin-top: -60px !important;
  }
}
@media screen and (max-width: 450px) {
  #sell-bodycontent .sell-cover-title-inner h1 {
    font-size: 2em;
  }
  #sell-bodycontent .sell-cover-title-inner p {
    font-size: 1rem;
  }
}

/* Roster Page */
#roster-bodycontent .inner-main-content {
  padding-top: 0px !important;
}
#agent-roster .listing-box-image {
  height: auto;
}
#agent-roster .listing-box-image img {
  width: 100%;
  min-height: 250px !important;
  height: auto;
  object-fit: cover;
  object-position: top;
}

/* Resources Page */
#resources-bodycontent .inner-main-content .col-md-12.col-lg-6.m-b-3 h5,
#resources-bodycontent .inner-main-content .sidebar .widget h3 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
#resources-bodycontent .inner-main-content .sidebar .widget .widgettitle {
  border-bottom: none !important;
}

/* Login Page */
#login-bodycontent .inner-main-content {
  padding-top: 0 !important;
}
#login-bodycontent .content-title {
  display: none;
}
#login-bodycontent .inner-main-content .row .col-lg-7,
#login-bodycontent .inner-main-content #login form .col-lg-6,
#login-bodycontent .inner-main-content #login .col-lg-7.p-b-3 {
  width: 100%;
}
#login-bodycontent .inner-main-content .row .col-lg-7 h2 {
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #login-bodycontent .inner-main-content .row .col-lg-7 h2 {
    font-size: 2rem;
  }
}
#login-bodycontent .inner-main-content .row .col-lg-7 h2,
#login-bodycontent .inner-main-content #login form ~ .row {
  text-align: center;
}
#login-bodycontent .inner-main-content #login form,
#login-bodycontent .inner-main-content #login form ~ .row {
  max-width: 550px;
  margin: auto;
}
#login-bodycontent .inner-main-content #login .saved-searches-container {
  margin-bottom: 64px;
}
#login-bodycontent .inner-main-content #login .saved-searches-container form {
  max-width: 100%;
}

/* Finance Page */
#finance-bodycontent .listing-detail.col-md-12 > .row > .col-md-6 {
  width: 100%;
}
#finance-bodycontent .listing-detail.col-md-12 > .row > .col-md-6 .overview ul {
  max-width: 300px;
}
#finance-bodycontent .listing-detail.col-md-12 .overview ul {
  max-width: 300px !important;
  margin: 0 auto !important;
}
#finance-bodycontent .listing-detail.col-md-12 .overview > h2 {
  border-bottom: none !important;
  text-align: center !important;
}
#finance-bodycontent .listing-detail.col-md-12 .overview ul li {
  text-align: center;
}
#finance-bodycontent .listing-detail.col-md-12 .overview ul li strong {
  display: none !important;
}
#finance-bodycontent .listing-detail.col-md-12 .overview ul li span {
  float: none !important;
}
#finance-bodycontent .listing-detail.col-md-12 .filter {
  box-shadow: none !important;
}
#finance-bodycontent .listing-detail.col-md-12 .overview ul li:nth-child(1) span {
  font-size: 2em;
  font-family: var(--heading-font);
}
#finance-bodycontent .listing-user-image.lender {
  border-radius: 0px !important;
  box-shadow: none !important;
  display: block !important;
  height: 300px;
  margin: 0 auto !important;
  position: relative;
  transition: none !important;
  width: 100%;
  max-width: 300px !important;
}
#finance-bodycontent .listing-user-image.lender a {
  border-radius: 0px !important;
}
#finance-bodycontent .listing-detail.col-md-12 .col-lg-6 > div:not(.overview):not(.filter) {
  font-size: 1.1rem !important;
}
#finance-bodycontent .listing-detail.col-md-12 .overview ul li.text-xs-center.text-md-right.p-t-1 {
  text-align: center !important;
}
#finance-bodycontent .listing-detail.col-md-12 .overview ul li.text-xs-center.text-md-right.p-t-1 a {
  width: 100%;
}
.lender-logo {
  max-width: 350px;
  margin: 1em auto;
  width: 100%;
  opacity: 0;
  transition: all 0.2s ease;
  display: block;
}

/* Terms Page */
#terms-bodycontent #header a {
  text-decoration: none !important;
}

/* Animations */
@keyframes videoFadeLight {
  from {
    background-color: #fff;
  }
  to {
    background-color: rgba(255, 255, 255, 0.5);
  }
}
@keyframes videoFadeDark {
  from {
    background-color: #000;
  }
  to {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@keyframes fade-left {
  from {
    opacity: 0;
    transform: translate(-100px, 0px);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translate(0px, 100px);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@keyframes fade-down {
  from {
    opacity: 0;
    transform: translate(0px, -100px);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}
@keyframes navAnimate {
  from {
    transform: translatex(100%);
    opacity: 0;
  }
  to {
    transform: translatex(0%);
    opacity: 1;
  }
}
@keyframes sellCta {
  from {
    transform: scale(0) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
#footer .footer-top-right {
  overflow: scroll;
  max-height: 260px;
}
#footer .footer-top-right a {
  color: #000 !important;
}
