/*
Theme Name: XT Grid Theme
Author: Xtensive Web Design
Author URI: https://www.xtensive.co.uk
Description: A base theme built with CSS Grid
Version: 1.0
*/
/* Breakpoints */
/* Colors */
/* Animation */
@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(2rem); }
  to {
    opacity: 1;
    transform: translateY(0); } }
.site-header {
  width: 100%;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0; }
  @media (min-width: 800px) {
    .site-header {
      padding: 0 1rem; } }
  @media (min-width: 992px) {
    .site-header {
      padding: 0 1.5rem; } }
  .site-header .custom-logo-link {
    background: #2C5697;
    display: block;
    padding: 3rem 1rem 0.5rem 1rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 100; }
    .site-header .custom-logo-link img {
      width: 8rem;
      height: auto; }
      @media (min-width: 800px) {
        .site-header .custom-logo-link img {
          width: 10rem;
          margin-top: 1rem; } }
  .site-header #mobile-button {
    position: relative;
    width: 40px;
    height: 40px;
    appearance: none;
    cursor: pointer;
    background: none;
    border: 0;
    z-index: 100; }
    @media (min-width: 992px) {
      .site-header #mobile-button {
        display: none; } }
    .site-header #mobile-button.active .line {
      background: none; }
      .site-header #mobile-button.active .line:before {
        transform: rotate(45deg);
        top: 0;
        background: #FFF; }
      .site-header #mobile-button.active .line:after {
        transform: rotate(-45deg);
        bottom: 0;
        background: #FFF; }
    .site-header #mobile-button .line {
      width: 100%;
      height: 2px;
      background: #111;
      position: relative;
      display: block; }
      .site-header #mobile-button .line:before, .site-header #mobile-button .line:after {
        content: ' ';
        position: absolute;
        top: -7px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #111;
        transition: .3s; }
      .site-header #mobile-button .line:after {
        top: auto;
        bottom: -7px;
        transition: .3s; }
  .site-header #mobile-menu {
    width: 100%;
    height: 100%;
    background: #204070;
    position: fixed;
    top: -100%;
    left: 0;
    margin-top: 0;
    padding: 10rem 2rem 2rem 2rem;
    transition: .4s ease-in-out;
    z-index: 10; }
    @media (min-width: 992px) {
      .site-header #mobile-menu {
        display: none; } }
    .site-header #mobile-menu.active {
      top: 0; }
    .site-header #mobile-menu .menu {
      list-style-type: none;
      padding: 0;
      margin: 0; }
      .site-header #mobile-menu .menu li a {
        color: #FFF;
        font-size: 1.5rem;
        text-transform: uppercase;
        text-decoration-color: transparent;
        transition: .3s; }
        .site-header #mobile-menu .menu li a:hover, .site-header #mobile-menu .menu li a:focus {
          padding-left: 1rem; }
  .site-header .mobile-contact {
    margin-top: 2rem; }
    .site-header .mobile-contact a {
      color: #FFF;
      font-size: 2rem;
      text-decoration-color: transparent; }
    .site-header .mobile-contact .socials {
      margin-top: 1rem; }
    .site-header .mobile-contact iconify-icon {
      background: #FFF;
      color: #2C5697;
      border-radius: 100px;
      padding: 0.4rem;
      margin-right: 0.5rem; }
  .site-header #main-menu {
    display: none; }
    @media (min-width: 992px) {
      .site-header #main-menu {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        margin: 0; }
        .site-header #main-menu .menu {
          list-style-type: none;
          padding: 0;
          margin: 0;
          display: flex; }
          .site-header #main-menu .menu li a {
            margin: 0 1rem;
            color: #111;
            text-decoration-color: transparent;
            text-transform: uppercase;
            font-weight: 600;
            font-size: 1rem; }
            .site-header #main-menu .menu li a:hover, .site-header #main-menu .menu li a:focus {
              color: #2C5697; }
        .site-header #main-menu .menu-contact {
          display: flex;
          align-items: center;
          margin-left: 2rem; }
          .site-header #main-menu .menu-contact iconify-icon {
            border: 2px solid #2C5697;
            border-radius: 100px;
            padding: 0.5rem;
            color: #2C5697;
            margin-right: 0.5rem; }
          .site-header #main-menu .menu-contact .num {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            color: #2C5697;
            text-transform: uppercase;
            font-size: 0.8rem;
            font-weight: 600; }
            .site-header #main-menu .menu-contact .num a {
              font-size: 1.8rem;
              line-height: 1.8rem;
              font-weight: 600;
              color: #2C5697;
              text-decoration-color: transparent; } }

.site-footer {
  background: #2C5697;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 1.4s; }
  @media (min-width: 800px) {
    .site-footer {
      flex-direction: row;
      justify-content: space-between;
      text-align: right; } }
  .site-footer a, .site-footer p {
    color: #FFF;
    font-size: 0.8rem;
    line-height: 1.2rem;
    text-decoration-color: transparent;
    margin: 0;
    padding: 0; }
  .site-footer img {
    width: 100%;
    max-width: 225px; }
    @media (min-width: 800px) {
      .site-footer img {
        max-width: 180px; } }
  .site-footer .content {
    display: flex;
    flex-direction: column;
    margin-top: 2rem; }
    @media (min-width: 800px) {
      .site-footer .content {
        margin-top: 0; } }
    .site-footer .content .tel {
      font-size: 2rem;
      line-height: 2rem;
      font-weight: 600;
      color: #FFF;
      text-decoration-color: transparent;
      margin-bottom: 2rem; }
      @media (min-width: 800px) {
        .site-footer .content .tel {
          margin-bottom: 0.3rem; } }

.slides {
  max-height: 600px;
  overflow: hidden;
  margin: 0;
  border: 0 !important; }

.slide-img {
  width: 100%;
  height: 600px;
  background-size: cover !important;
  background-position: center center !important;
  position: relative; }
  .slide-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center; }

.blog-header {
  width: 100%;
  background: #333;
  padding: 2rem;
  text-align: center; }
  .blog-header h2 {
    color: #FFF; }

.blog-main {
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.25rem;
  padding: 2rem;
  max-width: 75rem;
  margin: 0 auto; }
  @media (min-width: 576px) {
    .blog-main {
      grid-template-columns: repeat(2, 1fr); } }
  @media (min-width: 992px) {
    .blog-main {
      grid-template-columns: repeat(3, 1fr); } }

.blog-post {
  display: flex;
  flex-direction: column;
  text-decoration: none; }
  @media (min-width: 576px) {
    .blog-post {
      width: 48%;
      margin: 0 1%; }
      @supports (display: grid) {
        .blog-post {
          width: 100%;
          margin: 0; } } }
  .blog-post .image {
    width: 100%;
    height: 300px;
    background-size: cover !important;
    background-position: center center !important; }
  .blog-post .meta {
    color: #111;
    text-transform: uppercase;
    font-size: 0.9rem; }
  .blog-post .title {
    color: #111;
    font-size: 1.2rem; }
  .blog-post p {
    color: #111; }

.post-single {
  width: 100%;
  max-width: 75rem;
  padding: 2rem;
  margin: 0 auto; }
  .post-single .attachment-post-thumbnail {
    width: 100%;
    height: auto; }

.share-buttons {
  font-size: 0.7rem;
  line-height: 0.7rem;
  letter-spacing: 0.063rem;
  text-transform: uppercase;
  margin: 0 0 3.75rem;
  z-index: 2;
  position: relative;
  text-align: center;
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start; }
  .share-buttons li {
    height: auto;
    flex: 0 1 auto;
    width: calc(33.3333333% - 1px);
    margin-right: 0.063rem; }
    .share-buttons li:last-child {
      width: 33.3333333%;
      margin-right: 0; }
      .share-buttons li:last-child a {
        border-radius: 0 0.188rem 0.188rem 0; }
    .share-buttons li:first-child a {
      border-radius: 0.188rem 0 0 0.188rem; }
  .share-buttons svg {
    fill: #fff;
    margin-right: 0.313rem;
    width: 1rem;
    height: 1rem; }
  .share-buttons a {
    display: block;
    padding: 0.75rem 0.75rem 0.563rem;
    text-align: center;
    color: White; }

.share-twitter {
  background: #1da1f2; }

.share-facebook {
  background: #3b5998; }

.share-pinterest {
  background: #b5071a; }

.error {
  width: 100%;
  height: 100vh;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column; }
  .error .content {
    max-width: 61.25rem;
    width: 100%;
    padding: 2rem;
    text-align: center; }
    .error .content h1 {
      font-size: 14rem;
      font-weight: 900;
      margin: 0;
      padding: 0;
      color: #111; }
    .error .content h3 {
      font-size: 5rem;
      font-weight: 900;
      color: #000;
      margin: 0;
      padding: 0; }
    .error .content h4 {
      font-size: 2rem;
      color: #000;
      margin-top: 0.625rem; }
    .error .content a {
      background: #FFF;
      border: 3px solid #111;
      color: #000;
      margin-top: 0.625rem;
      padding: 0.5rem 2rem;
      display: inline-block; }
      .error .content a:hover {
        background: #000;
        text-decoration: none;
        color: #FFF; }

html {
  box-sizing: border-box;
  font-family: "greycliff-cf", sans-serif; }

* {
  box-sizing: inherit; }

body {
  font-size: 16px;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  position: relative; }
  @media (min-width: 800px) {
    body {
      padding: 0 2rem; } }

p, li {
  font-size: 1.1rem;
  line-height: 1.8rem; }

.entry-content .alignwide {
  margin-left: -80px;
  margin-right: -80px; }

.entry-content .alignfull {
  margin-left: calc( -100vw / 2 + 100% / 2 );
  margin-right: calc( -100vw / 2 + 100% / 2 );
  max-width: 100vw; }

.alignfull img {
  width: 100vw; }

.js-scroll {
  opacity: 0;
  transition: opacity 500ms; }

.js-scroll.scrolled {
  opacity: 1; }

.scrolled.fade-in {
  animation: fade-in 1s ease-in-out both; }

/* animation css
opacity: 0;
      -webkit-animation: fadein 2s;
      -moz-animation: fadein 2s;
      -ms-animation: fadein 2s;
      -o-animation: fadein 2s;
      animation: fadein 2s;
      animation-delay: 1s;
      -webkit-animation-fill-mode: forwards;   */
.home-hero, .page-hero {
  width: 100%;
  height: 450px;
  position: relative;
  background-size: cover !important;
  background-position: center center !important;
  background-attachment: fixed !important;
  animation: fadeup 1s ease;
  margin-bottom: 0; }
  @media (hover: none) {
    .home-hero, .page-hero {
      background-attachment: scroll !important; } }
  @media (min-width: 800px) {
    .home-hero, .page-hero {
      height: 600px; } }
  .home-hero img, .page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .home-hero .overlay, .page-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; }
    .home-hero .overlay .title, .home-hero .overlay h1, .page-hero .overlay .title, .page-hero .overlay h1 {
      font-size: 2rem;
      line-height: 2rem;
      font-weight: 900;
      color: #FFF;
      padding: 0;
      margin: 0;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .2s; }
      @media (min-width: 800px) {
        .home-hero .overlay .title, .home-hero .overlay h1, .page-hero .overlay .title, .page-hero .overlay h1 {
          font-size: 3.5rem;
          line-height: 3.5rem;
          max-width: 600px; } }
    .home-hero .overlay .description, .home-hero .overlay p, .page-hero .overlay .description, .page-hero .overlay p {
      font-size: 1.3rem;
      line-height: 1.8rem;
      max-width: 700px;
      color: #FFF;
      padding: 0;
      margin: 1rem 0 0 0;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .4s; }
    .home-hero .overlay .buttons, .page-hero .overlay .buttons {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-fill-mode: forwards;
      animation-delay: .6s; }
      @media (min-width: 800px) {
        .home-hero .overlay .buttons, .page-hero .overlay .buttons {
          flex-direction: row; } }
      .home-hero .overlay .buttons .btn-outline, .page-hero .overlay .buttons .btn-outline {
        margin-top: 1rem; }
        @media (min-width: 800px) {
          .home-hero .overlay .buttons .btn-outline, .page-hero .overlay .buttons .btn-outline {
            margin-top: 0;
            margin-left: 1rem; } }

.page-hero {
  height: 450px; }
  @media (min-width: 800px) {
    .page-hero .overlay h1 {
      font-size: 4.5rem;
      line-height: 5rem; } }

.btn, #gform_submit_button_1 {
  background: #E9511D;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-decoration-color: transparent;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid #E9511D;
  transition: .3s;
  cursor: pointer; }
  .btn:hover, .btn:focus, #gform_submit_button_1:hover, #gform_submit_button_1:focus {
    background: #c03f13;
    border-color: #c03f13; }
  @media (min-width: 800px) {
    .btn, #gform_submit_button_1 {
      padding: 0.7rem 1rem; } }

.btn-outline {
  border: 2px solid #FFF;
  padding: 0.4rem 1rem;
  color: #FFF;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-decoration-color: transparent;
  font-size: 1rem;
  transition: .3s;
  overflow: hidden;
  z-index: 1;
  position: relative; }
  .btn-outline:hover, .btn-outline:focus {
    color: #2C5697; }
    .btn-outline:hover:before, .btn-outline:focus:before {
      left: 0; }
  .btn-outline:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: -100%;
    background: #FFF;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: .3s; }
  @media (min-width: 800px) {
    .btn-outline {
      padding: 0.7rem 1rem; } }

.home-text {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 4rem 0; }
  @media (min-width: 800px) {
    .home-text {
      margin: 4rem 0; } }
  .home-text .headings {
    margin-bottom: 2rem; }
    @media (min-width: 800px) {
      .home-text .headings {
        width: 45%; } }
  .home-text h1 {
    font-size: calc(2.7rem + 0.5vw);
    line-height: calc(2.7rem + 0.5vw);
    font-weight: 900;
    color: #2C5697;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(2rem);
    animation: fadeup 1s ease;
    animation-fill-mode: forwards;
    animation-delay: .8s; }
    @media (min-width: 800px) {
      .home-text h1 {
        font-size: calc(3.5rem + 0.5vw);
        line-height: calc(3.5rem + 0.5vw); } }
  .home-text h2 {
    font-size: calc(1.5rem + 0.5vw);
    line-height: calc(2rem + 0.5vw);
    font-weight: 900;
    color: #2C5697;
    padding: 0;
    margin: 0;
    opacity: 0;
    transform: translateY(2rem);
    animation: fadeup 1s ease;
    animation-fill-mode: forwards;
    animation-delay: .8s; }
    @media (min-width: 800px) {
      .home-text h2 {
        font-size: calc(1.7rem + 0.5vw);
        line-height: calc(2rem + 0.5vw); } }
  @media (min-width: 800px) {
    .home-text .text {
      width: 55%;
      padding-left: 2rem; } }
  .home-text .text .btn {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(2rem);
    animation: fadeup 1s ease;
    animation-fill-mode: forwards;
    animation-delay: .8s;
    display: inline-block; }
  .home-text p {
    font-size: 1.2rem;
    line-height: 2rem;
    opacity: 0;
    transform: translateY(2rem);
    animation: fadeup 1s ease;
    animation-fill-mode: forwards;
    animation-delay: .8s; }
    .home-text p:first-child {
      margin-top: 0; }

.home-services {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  margin-bottom: 4rem; }
  @media (min-width: 375px) {
    .home-services {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 800px) {
    .home-services {
      grid-template-columns: repeat(3, 1fr); } }
  .home-services a {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden; }
    @media (min-width: 576px) {
      .home-services a {
        height: 300px; } }
    .home-services a:hover img, .home-services a:focus img {
      transform: scale(1.1, 1.1); }
    .home-services a img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: .3s; }
    .home-services a .overlay {
      position: absolute;
      top: 0;
      left: 0;
      background: rgba(0, 0, 0, 0.3);
      width: 100%;
      height: 100%;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      text-align: center; }
      .home-services a .overlay h2 {
        color: #FFF;
        padding: 0;
        margin: 0;
        font-size: 1rem; }
        @media (min-width: 800px) {
          .home-services a .overlay h2 {
            font-size: 1.5rem;
            line-height: 2rem; } }

.home-content-blocks {
  width: 100%;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 1s; }
  .home-content-blocks .content-block {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-bottom: 4rem;
    background: #fafafa; }
    .home-content-blocks .content-block:last-child {
      margin-bottom: 0; }
    @media (min-width: 800px) {
      .home-content-blocks .content-block {
        flex-direction: row-reverse;
        align-items: center; }
        .home-content-blocks .content-block:last-child {
          margin-bottom: 0; }
        .home-content-blocks .content-block:nth-child(even) {
          flex-direction: row; }
          .home-content-blocks .content-block:nth-child(even) .content {
            padding-left: 4rem;
            padding-right: 0; } }
    .home-content-blocks .content-block .image {
      width: 100%;
      height: 300px;
      background-size: cover !important;
      background-position: center center !important;
      background-attachment: fixed !important; }
      @media (hover: none) {
        .home-content-blocks .content-block .image {
          background-attachment: scroll !important; } }
      @media (min-width: 800px) {
        .home-content-blocks .content-block .image {
          width: 40%;
          height: 500px; } }
      .home-content-blocks .content-block .image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .home-content-blocks .content-block .content {
      width: 100%;
      padding: 2rem; }
      @media (min-width: 800px) {
        .home-content-blocks .content-block .content {
          width: 60%;
          padding-bottom: 0;
          padding-right: 4rem; } }
      .home-content-blocks .content-block .content h2 {
        color: #2C5697;
        font-size: calc(2rem + 0.5vw);
        line-height: calc(2.5rem + 0.5vw);
        padding: 0;
        margin: 0 0 1rem 0;
        max-width: 500px; }
      .home-content-blocks .content-block .content .btn {
        margin-top: 1rem;
        display: inline-block; }

.testimonials {
  width: 100%;
  max-width: 980px;
  margin: 6rem auto;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 1s; }
  .testimonials .review {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
    color: #2C5697; }
    @media (min-width: 800px) {
      .testimonials .review {
        font-size: 1.8rem;
        line-height: 2.3rem; } }
    .testimonials .review iconify-icon {
      color: #2C5697; }
  .testimonials .slick-arrows {
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; }
    .testimonials .slick-arrows button {
      appearance: none;
      cursor: pointer;
      background: #E9511D;
      border: 0;
      border-radius: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .3s; }
      .testimonials .slick-arrows button:hover, .testimonials .slick-arrows button:focus {
        background: #c03f13; }
      .testimonials .slick-arrows button iconify-icon {
        color: #FFF; }

.lenders {
  width: 100%;
  background: #C7DBF8;
  padding: 0 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards;
  animation-delay: 1.2s; }
  @media (min-width: 992px) {
    .lenders {
      display: flex;
      align-items: center;
      margin-bottom: 3rem; } }
  .lenders .content {
    width: 100%;
    padding: 2rem 0; }
    @media (min-width: 992px) {
      .lenders .content {
        padding: 4rem 0; } }
    .lenders .content h2 {
      font-size: calc(2rem + 0.5vw);
      line-height: calc(2.5rem + 0.5vw);
      max-width: 500px;
      padding: 0;
      margin: 0 0 1rem 0; }
    .lenders .content .btn {
      display: inline-block;
      background: #2C5697;
      border-color: #2C5697;
      margin-top: 1rem; }
      .lenders .content .btn:hover, .lenders .content .btn:focus {
        background: #152948;
        border-color: #152948; }
    @media (min-width: 992px) {
      .lenders .content {
        width: 50%;
        padding-right: 2rem; } }
  .lenders .logos {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
    padding-bottom: 2rem; }
    @media (min-width: 992px) {
      .lenders .logos {
        width: 50%;
        overflow: hidden;
        margin-top: -3rem;
        padding: 0 0 0 2rem;
        height: 550px; } }
    .lenders .logos .image {
      width: 100%;
      background: #FFF;
      padding: 2rem; }
      .lenders .logos .image:nth-child(n+7) {
        display: none; }
        @media (min-width: 992px) {
          .lenders .logos .image:nth-child(n+7) {
            display: block; } }
      .lenders .logos .image img {
        width: 100%;
        margin: 0;
        height: auto; }
        @media (min-width: 800px) {
          .lenders .logos .image img {
            width: 80%;
            margin: 0 10%; } }

#map {
  width: 100%;
  height: 450px;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-fill-mode: forwards; }

.contact-page {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0; }
  .contact-page article {
    width: 100%;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-fill-mode: forwards;
    animation-delay: .3s; }
    @media (min-width: 800px) {
      .contact-page article {
        width: 33%;
        margin-right: 2%; } }
    .contact-page article .content {
      padding: 2rem;
      background: #2C5697; }
      .contact-page article .content h1 {
        font-size: 2rem;
        color: #FFF;
        padding: 0;
        margin: 0; }
      .contact-page article .content p, .contact-page article .content a {
        color: #FFF; }
  .contact-page .form {
    width: 100%;
    background: #eee;
    padding: 2rem;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-fill-mode: forwards;
    animation-delay: .5s; }
    @media (min-width: 800px) {
      .contact-page .form {
        width: 65%; } }
    .contact-page .form input[type='text'], .contact-page .form input[type='email'], .contact-page .form input[type='tel'], .contact-page .form textarea {
      height: 40px;
      border: 1px solid #ccc; }
    .contact-page .form textarea {
      height: auto; }
    .contact-page .form .gfield_label {
      font-weight: 400 !important; }
    .contact-page .form .gfield_consent_label a {
      color: #2C5697; }

.about-page {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0; }
  .about-page .image {
    width: 100%;
    height: 550px;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .3s;
    animation-fill-mode: forwards;
    margin-bottom: 2rem; }
    @media (min-width: 800px) {
      .about-page .image {
        height: 600px;
        margin-bottom: 0; } }
    .about-page .image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top; }
    @media (min-width: 800px) {
      .about-page .image {
        width: 40%; } }
  .about-page .content {
    width: 100%;
    padding: 2rem;
    background: #fafafa;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .5s;
    animation-fill-mode: forwards; }
    @media (min-width: 800px) {
      .about-page .content {
        width: 58%;
        margin-left: 2%; } }
    .about-page .content h2 {
      font-size: 2.5rem;
      line-height: 3rem;
      padding: 0;
      margin: 0 0 1rem 0;
      color: #2C5697; }
    .about-page .content h3 {
      font-size: 1.5rem;
      line-height: 2rem;
      padding: 0;
      margin: 0 0 1rem 0;
      font-weight: 400;
      color: #2C5697; }

ul {
  list-style-type: square;
  padding: 0 0 0 1.2rem; }
  ul li::marker {
    color: #E9511D; }

.services-page {
  width: 100%;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem; }
  @media (min-width: 600px) {
    .services-page {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 800px) {
    .services-page {
      grid-template-columns: repeat(3, 1fr); } }
  .services-page .box {
    background: #2C5697;
    padding: 2rem;
    opacity: 0;
    transform: translateY(1rem);
    animation: fadeup 1s ease;
    animation-delay: .4s;
    animation-fill-mode: forwards; }
    .services-page .box:nth-child(2) {
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .5s;
      animation-fill-mode: forwards; }
    .services-page .box:nth-child(3) {
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .6s;
      animation-fill-mode: forwards; }
    .services-page .box:nth-child(4) {
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .7s;
      animation-fill-mode: forwards; }
    .services-page .box:nth-child(5) {
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .8s;
      animation-fill-mode: forwards; }
    .services-page .box:nth-child(6) {
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: .9s;
      animation-fill-mode: forwards; }
    .services-page .box:nth-child(n+6) {
      opacity: 0;
      transform: translateY(1rem);
      animation: fadeup 1s ease;
      animation-delay: 1s;
      animation-fill-mode: forwards; }
    .services-page .box h2 {
      color: #FFF;
      padding: 0;
      margin: 0 0 1rem 0;
      font-size: 2rem;
      line-height: 2.5rem; }
    .services-page .box p {
      color: #FFF; }
    .services-page .box:nth-child(even) {
      background: #386cbe; }
  .services-page .box-orange {
    background: #E9511D;
    display: block; }
    .services-page .box-orange p {
      font-size: 1.3rem; }
    .services-page .box-orange .btn {
      background: #2C5697;
      display: inline-block; }

.std-box {
  width: 100%;
  margin: 2rem 0;
  padding: 2rem;
  background: #eee;
  opacity: 0;
  transform: translateY(1rem);
  animation: fadeup 1s ease;
  animation-delay: .3s;
  animation-fill-mode: forwards; }

/*# sourceMappingURL=style.css.map */
