body,
html {
  margin: 0;
  padding: 0;
  color: #000000;
  background-color: #ffffff;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .25s;
  transition: all .25s;
}

img {
  max-width: 100%;
}

li,
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* fonts and sizes */
html {
  font-size: 100%;
}

body {
  line-height: 1.5;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

p {
  font-family: 'Noto Serif', serif;
  color: #787878;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 1em;
  font-weight: 800;
}

h1 {
  font-size: 2.35rem;
  font-size: calc(1rem * 1.2* 1.2* 1.2* 1.2* 1.2);
}

h2 {
  font-size: 1.8rem;
  font-size: calc(1rem * 1.2* 1.2* 1.2* 1.2);
}

h3 {
  font-size: 1.5rem;
  font-size: calc(1rem * 1.2* 1.2* 1.2);
}

h4 {
  font-size: 1.2rem;
  font-size: calc(1rem * 1.2* 1.2);
}

h5 {
  font-size: 1rem;
  font-size: calc(1rem * 1.2);
}

h6 {
  font-size: 1rem;
}

/* elements */
/* buttons */
.btn-custom {
  color: #ffffff;
  background: #e13619;
  border: 3px solid #e13619;
  padding: .8rem 1.7rem;
  display: inline-block;
  text-align: center;
  width: unset;
  font-size: 1.1rem;
  font-weight: 500;
  min-width: 10rem;
}

.btn-custom:hover {
  background: #e13619;
  color: #ffffff;
  border-color: #e13619;
  -webkit-box-shadow: 1px 0 3px #e13619;
          box-shadow: 1px 0 3px #e13619;
  text-decoration: none;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.btn-custom__empty {
  background: transparent;
  color: #e13619;
}

.btn-custom__empty:hover {
  color: #e13619;
  background: transparent;
}

.btn-custom__empty__invert {
  border-color: #ffffff;
  color: #ffffff;
}

.btn-custom__empty__invert:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* arrow-top */
#return-to-top {
  background-color: #000000;
  color: #ffffff;
  font-size: 20px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 7.5px;
  -webkit-box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  text-align: center;
  position: fixed;
  z-index: 399;
  right: 3%;
  bottom: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
  background-color: #000000;
  color: #ffffff;
  opacity: 0;
}

#return-to-top:hover {
  background-color: #e13619;
}

#return-to-top.shown {
  opacity: 0.95;
  bottom: 50px;
}

@media (max-width: 480px) {
  #return-to-top.shown {
    bottom: 5px;
  }
}

/* header */
header {
  color: #000000;
}

@media (min-width: 979px) {
  header .container {
    padding-left: 5px;
  }
}

.hasSlider header {
  position: absolute;
  z-index: 30000;
  color: #ffffff;
  width: 100%;
}

@media (max-width: 979px) {
  .hasSlider header .navigation .navigation-list {
    background: rgba(0, 0, 0, 0.65);
  }
}

.hasSlider header .navigation .nav-bars {
  background: #ffffff;
}

.hasSlider header .navigation .nav-bars:after, .hasSlider header .navigation .nav-bars:before {
  background: #ffffff;
}

header .navigation {
  padding-top: 1.5rem;
  padding-bottom: .5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .navigation .nav-bars {
  display: inline-block;
  display: none;
  cursor: pointer;
  margin: auto 0;
  width: 2.5rem;
  height: 0.41667rem;
  background: #000000;
  position: relative;
}

header .navigation .nav-bars:after, header .navigation .nav-bars:before {
  position: absolute;
  left: 0;
  width: 2.5rem;
  height: 0.41667rem;
  background: #000000;
  content: '';
  display: block;
}

header .navigation .nav-bars:after {
  top: -0.71429rem;
}

header .navigation .nav-bars:before {
  bottom: -0.71429rem;
}

header .navigation .navigation-list ul li {
  display: inline-block;
  position: relative;
}

@media (max-width: 979px) {
  header .navigation .navigation-list ul li ul {
    padding-left: 1rem;
  }
}

@media (min-width: 979px) {
  header .navigation .navigation-list ul li:hover ul {
    opacity: 1;
    pointer-events: all;
  }
  header .navigation .navigation-list ul li ul {
    pointer-events: none;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
  }
}

header .navigation .navigation-list ul li a {
  position: relative;
  z-index: 1;
}

header .navigation .navigation-list ul li a:after {
  -webkit-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out;
  position: absolute;
  content: '';
  width: 0;
  height: .1rem;
  background: #e13619;
  display: block;
  right: .5rem;
  bottom: .2rem;
  z-index: -1;
}

header .navigation .navigation-list ul li:hover > a:after {
  width: calc(100% - 1rem);
  left: .5rem;
  right: unset;
}

header .navigation .navigation-list ul li a {
  color: inherit;
  padding: .5rem;
  font-size: 1.1rem;
  font-weight: 600;
  display: inline-block;
}

header .navigation .navigation-list ul li a:hover {
  text-decoration: none;
}

header .navigation .header-logo {
  max-width: 7rem;
  display: inline-block;
}

header .navigation .header-logo img {
  max-height: 2.5rem;
}

@media (max-width: 979px) {
  header .navigation .nav-bars {
    display: block;
    z-index: 200;
  }
  header .navigation .navigation-list {
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 199;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    margin-left: -100vw;
  }
  header .navigation .navigation-list.active_nav {
    padding: 5rem 2rem 2rem 100vw;
  }
  header .navigation .navigation-list ul {
    margin-left: -0.5rem;
  }
  header .navigation .navigation-list ul li {
    display: block;
  }
}

/* footer */
.cta {
  padding: 8rem 0;
  position: relative;
  z-index: 1;
  background: #d94a4a;
}

@media (max-width: 1200px) {
  .cta {
    padding: 9vw 0;
  }
}

@media (min-width: 991px) {
  .cta .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .cta .row > * {
    margin-top: auto;
    margin-bottom: auto;
  }
}

.cta .content {
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  display: block;
}

@media (max-width: 991px) {
  .cta .content {
    text-align: center;
  }
}

.cta .btn-custom {
  display: block;
}

@media (max-width: 991px) {
  .cta .btn-custom {
    max-width: 20rem;
    margin: 1rem auto 0;
  }
}

footer .contact-phone:hover {
  text-decoration: none;
  /* color: #ffffff; */
}

footer .bg-image img {
  opacity: .35;
  -o-object-position: 0 10%;
     object-position: 0 10%;
}

footer .footer_menu ul {
  font-family: 'Noto Serif', serif;
}

footer .footer_menu ul li {
  margin-top: .5rem;
}

footer .footer_menu ul li a {
  color: #ffffff;
}

footer .footer_menu ul li a:hover {
  text-decoration: underline;
}

/* footer address {
  font-family: 'Noto Serif', serif;
  color: #efefef;
} */

@media (max-width: 991px) {
  footer .text-right {
    text-align: left;
  }
}

footer .copyright {
  color: inherit;
}

footer .copyright * {
  color: inherit;
}

.footer-body {
  background: #000000;
  color: #ffffff;
  padding-top: 2rem;
}

.footer-body .row {
  padding-bottom: 2rem;
}

.footer-body .col-md-3,
.footer-body .col-md-6 {
  padding-top: 3rem;
}

.socials {
  margin-right: -.5rem;
}

.socials li {
  display: inline-block;
}

.socials li a {
  color: #ffffff;
  padding: .5rem;
}

.socials li a:hover {
  text-decoration: none;
  color: #e13619;
}

.p-icon {
  border: 1px solid #ffffff;
  border-radius: 2px;
  width: 22px;
  height: calc(22px * 1.61);
  position: relative;
  display: inline-block;
  -webkit-transform: translateY(11px);
          transform: translateY(11px);
  margin-right: 5px;
}

.p-icon:after, .p-icon:before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
}

.p-icon:before {
  margin-left: calc(-22px / 4);
  width: calc(22px / 2);
  height: 2px;
  top: 0;
  background: #ffffff;
}

.p-icon:after {
  margin-left: -2px;
  bottom: 3px;
  background: #e13619;
  border-radius: 2px;
  width: 4px;
  height: 4px;
}

/* slider */
.slider {
  position: relative;
  z-index: 1;
  background: #000000;
}

.slider .slider-wrapper {
  min-height: 100vh;
  color: #ffffff;
  padding: 10rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.site-type-loan_officer .slider .slider-wrapper {
  min-height: unset;
}

.slider .slider-wrapper .slider-content {
  margin: auto 0;
}

.slider .slider-wrapper .slider-content span {
  display: block;
  color: #ffffff;
}

.slider .slider-wrapper .slider-content span.big {
  max-width: 50rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Roboto', sans-serif;
}

.slider .slider-wrapper .slider-content span.small {
  font-family: 'Noto Serif', serif;
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.slider .slider-wrapper .slider-content .btn-custom {
  margin-top: 1.5rem;
  display: block;
  max-width: 20rem;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.bg-image * {
  width: 100%;
  height: 100%;
}

.bg-image .edit-group {
  height: unset;
  width: unset;
}

.bg-image img {
  opacity: .6;
  /* -webkit-transform: scaleX(-1);
          transform: scaleX(-1); */
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.scroll-area {
  display: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.scroll-area .scroll-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #e13619;
  padding: 1rem;
}

.scroll-area .scroll-btn:after, .scroll-area .scroll-btn:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
}

.scroll-area .scroll-btn:before {
  width: 4px;
  height: 1rem;
  background: #ffffff;
  margin-left: -2px;
}

.scroll-area .scroll-btn:after {
  bottom: -.3rem;
  margin-left: -7.5px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 7px solid #ffffff;
}

/* TESTIMONIALS */
.testimonials {
  padding-bottom: 1rem;
}

.testimonials .testimonials_body li {
  padding: 1rem 0;
}

.testimonials .testimonials_body li .testimonial-text {
  font-size: 1.3rem;
  color: #787878;
}

.testimonials .testimonials_body li .testimonial-text p:first-child:before {
  content: '"';
  display: inline;
}

.testimonials .testimonials_body li .testimonial-text p:last-child:after {
  content: '"';
  display: inline;
}

.testimonial-text p {
  display: inline;
}

.testimonials .testimonials_body li .signature {
  display: inline-block;
  margin-top: 1rem;
}

.testimonials .slick-dots li {
  display: inline-block;
  margin-right: .2rem;
}

.testimonials .slick-dots li button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  font-size: 0;
  background: #787878;
  opacity: .7;
  border: 0 solid;
  outline: none;
}

.testimonials .slick-dots li.slick-active button {
  opacity: .85;
  background: #e13619;
}

.testimonials .slick-dots li:hover button {
  opacity: 1;
}


.lo-bio p {
  font-size: 20.8px;
}


@media(max-width: 979px) {
  .lo-bio {
    margin-top: 35px;
   
  }

  .lo-bio p {
    font-size: 16px;
  }
}



.site-type-loan_officer hr {
  background: #e1e1e1;
  display: block;
  width: 100%;
  height: .2rem;
  border: 0px;
  margin: 3rem 0;
}



.branch_page {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.branch_description p.description {
  font-size: 1.2em;
  margin-bottom: 3em;
  line-height: 1.7;
}

.contactform .input-item {
  background: #efefef;
  border-bottom: .1rem solid transparent;
  padding: 1.2rem .5rem .3rem;
  margin-top: 1rem;
  position: relative;
}

.contactform .input-item:first-child {
  margin-top: 0;
}

.contactform .input-item.active label, .contactform .input-item.focus label {
  top: .4rem;
  pointer-events: all;
  font-size: .65rem;
  font-family: 'Roboto', sans-serif;
}

.contactform .input-item.active textarea, .contactform .input-item.focus textarea {
  height: 3rem;
}

.contactform .input-item.focus {
  border-color: #929292;
}

.contactform .input-item.active {
  border-color: #e13619;
}

.contactform .input-item label {
  font-family: 'Noto Serif', serif;
  font-size: 1rem;
  top: .8rem;
  pointer-events: none;
  display: block;
  color: #929292;
  font-weight: 400;
  position: absolute;
  left: .5rem;
}

.contactform .input-item input,
.contactform .input-item textarea {
  font-family: 'Noto Serif', serif;
  width: 100%;
  padding: 0;
  display: block;
  background: transparent;
  border: 0 solid;
  outline: none;
  color: #000000;
  line-height: 1.5;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contactform .input-item textarea {
  resize: vertical;
  max-height: 19.5rem;
  min-height: 1.5rem;
}

.contactform .input-item .smalltext, .contactform .input-item .radios .control-label, .contactform .radios .input-item .control-label {
  position: absolute;
  bottom: -2.3rem;
  left: .5rem;
  font-size: .8rem;
}

.contactform .smalltext, .contactform .radios .control-label {
  color: #787878;
  font-size: .9rem;
  font-family: 'Noto Serif', serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
  display: inline-block;
}

.contactform .radios .form-control {
  height: unset;
  border-radius: 0;
  padding: 0;
  border: 0;
  background-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.contactform .radios input[type=checkbox] {
  display: none;
}

.contactform .radios input[type=checkbox] ~ label {
  position: relative;
  padding: .15rem 0 .15rem 1.5rem;
  display: block;
  font-weight: 300;
  font-size: .9rem;
}

.contactform .radios input[type=checkbox] ~ label:before {
  content: '';
  display: block;
  width: .8rem;
  height: .8rem;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.4rem;
  border: 0.05rem solid #000000;
  border-radius: .1rem;
}

.contactform .radios input[type=checkbox]:checked ~ label:before {
  background: #e13619;
  border-color: #e13619;
}

.contactform .btn-custom {
  margin-top: 3.5rem;
  display: block;
  width: 100%;
}

.find_branch {
  padding-top: 4rem;
}

.maps {
  position: relative;
  padding-right: 20%;
}

@media (max-width: 767px) {
  .maps {
    padding-right: 0;
    padding-bottom: 3rem;
  }
}

.branch-map {
  height: 500px;
}

div#branch-map {
  background-color: transparent !important;
}

@media (min-width: 1200px) {
  .branch-map {
    height: 850px;
  }
}

@media (max-width: 767px) {
  .branch-map {
    height: 350px;
  }
  .branch-map img {
    -o-object-position: center 0;
       object-position: center 0;
  }
}

.branch-map img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.branch-legend ul {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 1rem;
}

@media (max-width: 767px) {
  .branch-legend ul {
    bottom: unset;
    left: 0;
    top: unset;
    bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .branch-legend ul li {
    margin-left: .5rem;
  }
}

.branch-legend li {
  position: relative;
  margin-top: .5rem;
  padding: .5rem 0 .5rem 1.5rem;
  cursor: pointer;
}

.branch-legend li:hover:before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.branch-legend li:before {
  -webkit-transition: .2s all ease-in-out;
  transition: .2s all ease-in-out;
  left: 0;
  top: 50%;
  margin-top: -0.5rem;
  border-radius: 50%;
  position: absolute;
  display: block;
  content: '';
  width: 1rem;
  height: 1rem;
  background: red;
}

.branch-legend li:nth-child(1):before {
  background: #e13619;
}

.branch-legend li:nth-child(2):before {
  background: #000000;
}

.branch-legend li:nth-child(3):before {
  background: #787878;
}

.branch-legend li:nth-child(4):before {
  background: #efefef;
}

section.intro {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.whoweare p {
  margin-bottom: 2rem;
}

.whoweare .btn-custom {
  margin-top: .5rem;
  display: block;
}

section.mortgage_calculators {
  padding-top: 9rem;
  padding-bottom: 9rem;
  background-color: #efefef;
  background-image: url("/dev/themes/airport/img/phones.png");
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 50% auto;
}

section.mortgage_calculators h3 {
  white-space: nowrap;
}

section.mortgage_calculators .col-md-6 {
  padding-right: 10%;
}

section.mortgage_calculators .btn-custom {
  margin-top: 2rem;
  display: block;
}

@media (max-width: 1200px) {
  section.mortgage_calculators {
    background-size: 60% auto;
  }
  section.mortgage_calculators h3 {
    white-space: normal;
  }
}

@media (max-width: 991px) {
  section.mortgage_calculators {
    background-size: 40% auto;
  }
  section.mortgage_calculators .col-md-6 {
    padding-right: 30%;
  }
}

section.loan_programs {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.text_card {
  border-top: 0.1rem solid #e13619;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 991px) {
  .text_card {
    padding-right: 5rem;
    padding-right: 20%;
    padding-right: 15%;
  }
}

.text_card .learn_more {
  margin-top: 1rem;
  display: inline-block;
}

.text_card .btn-custom {
  display: block;
  margin-top: .5rem;
  width: 50%;
  min-width: 17rem;
  max-width: 30rem;
}

.text_card span {
  font-family: 'Noto Serif', serif;
  display: block;
  color: #787878;
  margin-top: .3rem;
}

.text_card.hasImage {
  padding-right: 1rem;
  padding-left: 12rem;
  position: relative;
}

.text_card.hasImage .square-box {
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 10rem;
}

.text_card.hasImage .square-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

hr {
  background: #e13619;
  display: block;
  width: 100%;
  height: .1rem;
  border: 0px;
  margin: 3rem 0;
}

.inner_page {
  padding-top: 6rem;
  padding-bottom: 3rem;
}

p.big {
  color: #000000;
  font-size: 1.2rem;
  margin-top: 3em;
  margin-bottom: 3em;
}

a {
  color: #e13619;
}

a:hover {
  color: #e13619;
  text-decoration: underline;
}

.lo_body {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.lo_info .lo-portrait {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lo_info .lo-name {
  margin-top: 4rem;
  margin-bottom: 2.5rem;
}

.lo_info .lo-title {
  padding-top: 1em;
}

.lo_info span {
  font-family: 'Noto Serif', serif;
  display: block;
  color: #787878;
  margin-top: .3rem;
}

.lo_info .btn-custom {
  margin-top: 2rem;
  display: block;
}

.lo_info .lo-title {
  display: block;
  border-top: 0.1rem solid #e13619;
}

.square-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #efefef;
}

.square-box:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.square-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: white;
  text-align: center;
}


.slider .inner-slider {
  min-height: unset;
  color: #ffffff;
  padding: 10rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
