:root {
  --green: #489567;
  --blue:  #4486C8;
  --dark:  #555555;
  --white: #ffffff;
  --white-pale: #ffffff8c;
  --gray:  #999999;
  --mid-gray: #c4c4c4;
  --light:  #f9fafd;
  --light-gray: #e7e7e7;
  --light-blue: #eff3ff;


  --primary-btn_txt-color: #fff;
  --primary-btn_bg-color: #6BBBAE;
  --primary-btn_border-color: #6BBBAE;

  --secondary-btn_txt-color: #fff;
  --secondary-btn_bg-color: #582C83;
  --secondary-btn_border-color: #582C83;

  --box-shadow:  0px 0px 30px rgb(52 73 147 / 5%);
}

html {
  overflow-x: hidden;
}

body {
    font-weight: 300;
}
body p b, 
body p strong,
body li b, 
body li strong {
    font-weight: 600;
}

a[href^="tel"] {
  color: inherit; /* Inherit text color of parent element. */
  text-decoration: none; /* Remove underline. */
  /* Additional css `propery: value;` pairs here */
}
.h-100 {
    height: 100% !important;
}
.justify-center {
    justify-content: center;
}

.clearfix::after {
    content:"";
    display:block;
    clear:both;
}
.header-top-nav > nav > ul > li > a {
	text-transform: uppercase;
	align-items: flex-end;
	font-weight: 300;
}
.header-top-nav > nav > ul > li.current_page_item > a {
    font-weight: 400;
}

.btn {
  display: inline-block;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0;
  transition: opacity .25s ease-in-out;

  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  font-size: 18px;
  padding: 12.5px 30px;
}
.btn:focus, 
.btn:hover {
  text-decoration: none;
  opacity: 0.75;
}
.btn-lg {
  padding: .75rem 2rem;
  font-size: 1.5rem;
}
.btn-primary,
.btn-primary:hover {
    color: var(--white);
    background-color: var(--green);
    border-color: var(--green);
}

.btn-secondary,
.btn-secondary:hover {
    color: var(--secondary-btn_txt-color);
    background-color: var(--secondary-btn_bg-color);
    border-color: var(--secondary-btn_border-color);
}

.btn-white,
.btn-white:hover {
    color: var(--green);
    background-color: #fff;
    border-color: var(--green);
}

blockquote {
    background-color: var(--white);
    border-left: 4px solid var(--green);
    padding: 40px;
    margin: 30px 0;
}
blockquote * {
    margin: 0;
    font-weight: 300;
}

.table {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
}
.table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--mid-gray);
}

@media(max-width: 991px) {
  .container {
      max-width: 100%;
  }

}
@media(max-width: 767px) {
    .hide-phone {
        display: none;
    }
    .table td {
        padding: 5px;
        font-size: 90%;
    }
}

/*---------------------------------
 * Video Modal
----------------------------------*/
#ytModal.modal {
    top: 10%;
}
#ytModal .modal-content {
    background-color: transparent !important;
    border:  none !important;
}
#ytModal .modal-content button.close {
    opacity: 1;
    margin-bottom: 10px;
}
#ytModal .modal-content button.close > span {
    color: #fff;
}

/*----------------------------------
 * Header
----------------------------------*/
.site-main-header-bar {
    background-color: var(--light);
}
.header-logo > a {
    width: 282px;
}
.header-logo > a > img {
  width: 100%;
  max-width: 275px;
}
ul.sh-center-logos {
    display: flex;
    padding: 0;
    list-style: none;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    padding: 15px 0;
    margin: 0;
}
ul.sh-center-logos > li {

}
ul.sh-center-logos > li:not(:last-child) {
    margin-right: 30px;
}
ul.sh-center-logos > li > a:hover {
    opacity: 0.75;
    transition: opacity ease-in-out 0.3s;
}
ul.sh-center-logos > li > a img {
    max-width: 150px;
    max-height: 58px;
    width: 100%;
}
@media(max-width: 1199px) {
    ul.sh-center-logos > li > a img {
        max-width: 100px;
        width: 100%;
    }
}

.mobile-menu-trigger {
  display: none;
}

.header-phone {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
}
.header-phone > a {
    color: var(--green);
    font-size: 20px;
    font-weight: 600;
}
.header-phone > a:before {

}
.header-phone > a > i {
    color: var(--blue);
    margin-right: 5px;
}



section.top-navigation {
  background-color: var(--light);
}
.top-navigation-inner {
    position: relative;
}
.top-navigation-inner > nav > ul {
    list-style: none;
    padding: 30px 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.top-navigation-inner > nav > ul > li {}
.top-navigation-inner > nav > ul > li > a {
    padding: 0;
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    color: var(--dark);
    transition: all .25s ease-in-out;
    position: relative;
    text-decoration: none;
}
.top-navigation-inner > nav > ul > li > a:hover,
.top-navigation-inner > nav > ul > li.current-menu-item > a {
  opacity: 0.75;
  text-decoration: none;
}

.top-navigation-inner > nav > ul > li.menu-item-has-children > a:after {
    font-family: 'fontello';
    content: '\e800';
    font-size: 13px;
    position: relative;
    left: 7px;
    top: 1px;
}

.top-navigation-inner > nav > ul > li.menu-item-has-children {
    position: relative;
}
section.top-navigation ul.sub-menu {
    margin: 0;
    padding: 30px 0 0;
    list-style: none;
    box-shadow: 0 10px 15px -5px var(--dark);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden;
    position: absolute;
    width: 250px;
    z-index: 999;
    opacity: 0;
    height: 0;
    left: calc(50% - 125px);
}
.top-navigation-inner > nav > ul > li.menu-item-has-children:hover > ul.sub-menu {
    opacity: 1;
    height: auto;
}
section.top-navigation ul.sub-menu > li:not(:last-child) {
  border-bottom: 1px solid var(--mid-gray);
}
section.top-navigation ul.sub-menu a {    
    background-color: var(--white);
    color: var(--dark);
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-size: 14px;
    transition: all .25s ease-in-out;
}
section.top-navigation ul.sub-menu a:hover {
    color: var(--gray);
    transition: color ease-in-out .3s;
}

.mobile-menu-close > a {
    color: var(--blue);
    border-color: var(--blue);
}
aside.mobile-menu .mobile-menu-widget-inner > ul > li {
    border-bottom: 1px solid var(--light-gray);
}
aside.mobile-menu .mobile-menu-widget-inner > ul > li > a {
    text-decoration: none;
    font-weight: 500;
}
aside.mobile-menu .mobile-menu-widget-inner > ul ul {
    display: block;
    padding: 0 0 10px 60px
}
aside.mobile-menu .mobile-menu-widget-inner > ul ul > li {
    margin-bottom: 5px;
}
aside.mobile-menu .mobile-menu-widget-inner > ul ul > li > a {
    text-decoration: none;
    color: var(--gray);
    font-size: 80%;
}


@media(max-width: 991px) {
    .header-logo,
    .header-logo > a {
        width: 100%;
        height: auto;
    }
    .top-navigation-inner > nav > ul > li > a {
        font-size: 11px;
        padding: 20px 12px;
    }
    section.top-navigation ul.sub-menu a {
        font-size: 10px;
    }
    .top-navigation-inner > nav > ul > li.menu-item-has-children > a:after {
        font-size: 11px;
    }
    .top-navigation-search-icon {
        height: 51px;
        line-height: 51px;
        font-size: 16px;
    }

    section.top-navigation {
        display: none;
    }
    .mobile-menu-trigger {
        display: block;
        width: 50%;
    }
    .mobile-menu-trigger > a {
        font-size: 36px;
        line-height: 44px;
        color: var(--blue);
    }
    .header-logo {
        padding: 20px 0;
    }
    .header-logo-outer {
        padding-right: 0;
    }
    .header-logo > a > img {
        width: 275px;
        max-width: 100%;
    }
    ul.sh-center-logos {
        justify-content: right;
    }
    ul.sh-center-logos > li img {
        max-width: 85px !important;
    }
    ul.sh-center-logos > li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 5px;
    }
    ul.sh-center-logos > li {
        display: flex;
        width: 100%;
        justify-content: flex-end;
    }
    .header-phone {
        width: 50%;
        justify-content: flex-end;
    }
    .header-phone > a {
        font-size: 16px;
    }
}

/*----------------------------------
 * Footer
----------------------------------*/
footer.site-footer {
    padding: 100px 0;
    background-color: var(--blue);
    color: var(--white);
    border: none;
}

.footer-col-inner {
    /*padding: 0 20px;*/
}

.footer-title {
    margin: 10px 0 45px;
}
.footer-title h3 {
    margin: 0;
    font-size: 24px;
}

.footer-logo {
    margin: 0 0 18px;
}

.footer-logo > a > img {
    max-width: 275px;
    width: 100%;
}
.footer-about-fsn > p {
    line-height: 1.5;
    margin: 0;
}


.footer-menu nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-menu nav ul > li {
    display: block;
    padding: 0;
    margin: 0;
    text-align: left;
    border: none;
}
.footer-menu nav ul > li:not(:first-child) {
    margin-top: 20px;
}
.footer-menu nav ul > li > a {
    text-decoration: none;
    color: var(--white);
    font-size: 16px;
}

a.footer-post {
    text-decoration: none;
    color: var(--white);
    display: block;
}
a.footer-post:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
a.footer-post:not(:first-child) {
    margin-top: 10px;
}

.footer-post .footer-post-img > img {
    max-width: 100%;
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: 6px;
}
.footer-post .footer-post-title > h4 {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}
.footer-post .footer-post-title > p {
    margin: 15px 0 0;
    font-size: 12px;
    color: var(--white-pale);
}

.footer-socials > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}
.footer-socials > ul > li {
    
}
.footer-socials > ul > li > a {
    background-color: var(--light-gray);
    text-decoration: none;
    display: block;
    padding: 10px 6px;
    border-radius: 6px;
}
.footer-socials > ul > li > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
.footer-socials > ul > li > a > i {
    font-size: 20px;
    color: var(--blue);
}


@media(min-width: 768px) {
    /*.footer-col-inner-offset {
        padding-left: 35px;
    }*/
}
@media(min-width: 992px) {
    .footer-col-inner-offset {
        padding-left: 45px;
    }
}
@media(min-width: 1199px) {
    .footer-col-inner-offset {
        padding-left: 65px;
    }
}

@media(max-width: 991px) {
    footer.site-footer {        
        padding: 45px 0;
    }
    .footer-post .footer-post-img > img {        
        width: 100%;
        height: 125px;
    }
    .footer-title {
        margin: 0 0 15px;
    }
    .footer-title h3 {
        font-size: 20px;
    }
}
@media(max-width: 767px) {
    .footer-col-wrap:not(.order-4) {
        padding-bottom: 20px;
        border-bottom: 1px dashed var(--light-gray);
    }
}

/* == WordPress WYSIWYG Editor Styles == */

.entry-content img {
    margin: 0 0 1.5em 0;
}
.alignleft, img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
}
.alignright, img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
}
.aligncenter, img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
}
.wp-caption {
    margin-bottom: 1.5em;
    text-align: center;
    padding-top: 5px;
}
.wp-caption img {
    border: 0 none;
    padding: 0;
    margin: 0;
}
.wp-caption p.wp-caption-text {
    line-height: 1.5;
    font-size: 10px;
    margin: 0;
}
.wp-smiley {
    margin: 0 !important;
    max-height: 1em;
}
blockquote.left {
    margin-right: 20px;
    text-align: right;
    margin-left: 0;
    width: 33%;
    float: left;
}
blockquote.right {
    margin-left: 20px;
    text-align: left;
    margin-right: 0;
    width: 33%;
    float: right;
}

/**********************
 * Single Page
 *********************/
.page-wrapper {
    padding: 50px 0 100px;
}
.page-title > h1 {
    margin: 0;
    font-weight: 600;
    font-size: calc(1.325rem + 0.9vw);
    position: relative;
}
.page-title > h1 > span {
    color: var(--blue);
}
.page-title > h1:after {
    content: '';
    background-color: var(--blue);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.page-content-row {
    margin-top: 30px;
}
.page-content  a {
    text-decoration: none;
    color: var(--blue);
}
.page-content  a:hover {
    opacity: 0.75;
    transition: opacity ease-in-out 0.3s;
}
.post-content img {
    max-width: 100%;
    border-radius: 20px;
    margin-bottom: 1rem;
}
@media(max-width: 767px) {
    .page-wrapper {
        padding: 50px 0;
    }
}

/**********************
 * 404
 *********************/
.error404 .hero {
    background-image: url(../images/fsn-hero.png);
}



/* Hero */
.hero {
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: -1000px -20px 100px -140px #f9f7ef inset !important;
    padding: 50px 0;
}
.hero-content {
    max-width: 600px;
    margin-right: 0;
    margin-left: auto;
    text-shadow: 0 0 15px #f9f7ef;
}
.hero-content .hero-cta {
    text-shadow: none;
}
.hero-title {   
    color: var(--blue);
}
.hero-title > h1 {
    margin: 0;
    font-weight: 600;
}
.hero-title > span {
    display: block;
    text-align: right;
    font-size: 26px;
    font-weight: 500;
}

.hero-desc {
    margin-top: 30px;
}
.hero-desc p {
    font-weight: 400;
    font-size: 14px;
}
.hero-desc p:last-child {
    margin: 0;
}
.hero-desc a {
    text-decoration: none;
    color: var(--green);
}
.hero-desc a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
.hero-desc ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
}
.hero-desc ul li {
    display: flex;
    font-weight: 400;
}
.hero-desc ul li:before {
    content: "\E80B";
    font-family: 'Fontello';
    color: var(--blue);
    font-size: 14px;
    padding-right: 15px;
    top: 1px;
    position: relative;
}


.hero-features {
    margin-top: 90px;
}
.hero-features > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    gap: 20px;
}
.hero-features > ul > li {
    color: var(--blue);
    font-weight: 400;
    font-size: 14px;
}
.hero-features > ul > li > span {
    margin-right: 5px;
    background-color: var(--light-blue);
    border-radius: 10px;
    padding: 6.5px 4px;
}
.hero-features > ul > li > span > img {
    width: 24px;
    height: 14px;
    max-width: 100%;
}

.hero-cta {
    margin-top: 45px;
}

@media(max-width: 1299px) {
    .hero {
        box-shadow: -850px -20px 100px -140px #f9f7ef inset !important;
    }
}
@media(max-width: 1199px) {
    .hero {
        box-shadow: -700px -20px 100px -140px #f9f7ef inset !important;
    }
    .hero-content {
        max-width: 500px;
    }
    .hero-features > ul > li {
        display: block;
        width: 100%;
    }
}
@media(max-width: 991px) {
    .hero {
       background-image: none !important;
    }
    .hero-content {
        max-width: 770px;
        margin: 0 auto;
    }
}
@media(max-width: 767px) {
    .hero {
        padding: 40px 0;
        box-shadow: -1000px -20px 100px -140px #f9f7ef inset !important;
    }
    .hero-features {
        margin-top: 30px;
    }
    .hero-features > ul > li {
        width: 100%;
    }
}

/* Time to Get a Business Line of Credit */
.time-to-get-blc {
    padding: 100px 0 50px;
}
.time-to-get-blc-title {

}
.time-to-get-blc-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.time-to-get-blc-title > h2:after {
    content: '';
    background-color: var(--blue);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.time-to-get-blc-title > h2 > span {
    color: var(--blue);
}
.time-to-get-blc-subtitle {
    margin-top: 30px;
}
.time-to-get-blc-features-row {
    margin-top: 45px;
}


.time-to-get-blc-feature-img {
    background-color: var(--light-blue);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
}
.time-to-get-blc-feature-img > span {
    display: block;
    width: 30px;
    height: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Icons */
.time-to-get-blc-feature-img.feature-icon-costs-nothing > span {
    background-image: url(../images/icons/costs-nothing.png);
}
.time-to-get-blc-feature-img.feature-icon-stars > span {
    background-image: url(../images/icons/stars.png);
}
.time-to-get-blc-feature-img.feature-icon-small-business > span {
    background-image: url(../images/icons/small-business.png);
}
.time-to-get-blc-feature-img.feature-icon-shield > span {
    background-image: url(../images/icons/shield.png);
}
.time-to-get-blc-feature-img.feature-icon-piggy-bank > span {
    background-image: url(../images/icons/piggy-bank.png);
}
.time-to-get-blc-feature-img.feature-icon-bank > span {
    background-image: url(../images/icons/bank.png);
}
.time-to-get-blc-feature-img.feature-icon-application > span {
    background-image: url(../images/icons/application.png);
}
.time-to-get-blc-feature-img.feature-icon-offer-letter > span {
    background-image: url(../images/icons/offer-letter.png);
}
.time-to-get-blc-feature-img.feature-icon-process > span {
    background-image: url(../images/icons/process.png);
}
.time-to-get-blc-feature-img.feature-icon-approval > span {
    background-image: url(../images/icons/approval.png);
}
.time-to-get-blc-feature-img.feature-icon-easy-hand > span {
    background-image: url(../images/icons/easy-hand.png);
}
.time-to-get-blc-feature-img.feature-icon-papers > span {
    background-image: url(../images/icons/papers.png);
}
.time-to-get-blc-feature-img.feature-icon-chat > span {
    background-image: url(../images/icons/chat.png);
}
.time-to-get-blc-feature-img.feature-icon-cash-backup > span {
    background-image: url(../images/icons/cash-backup.png);
}
.time-to-get-blc-feature-img.feature-icon-cash-flow > span {
    background-image: url(../images/icons/cash-flow.png);
}

.time-to-get-blc-feature-title {
    margin-top: 5px;
}
.time-to-get-blc-feature-title > h4 {
    margin: 0;
    font-size: 20px;
}
.time-to-get-blc-feature-content {
    margin-top: 10px;
}
.time-to-get-blc-feature-content > p {
    margin: 0;
    color: var(--gray);
}

@media(min-width: 768px) {
    .time-to-get-blc-feature-wrapper:not(:nth-child(-n+3)) {
        margin-top: 30px;
    }
    .time-to-get-blc-feature {
        max-width: 400px;
    }
}
@media(max-width: 767px) {
    .time-to-get-blc {
        padding: 45px 0 25px;
    }
    .time-to-get-blc-feature-wrapper:not(:first-child) {
        margin-top: 30px;
    }
}


/* 4 Easy Steps to Apply */
.easy-steps {
    padding: 50px 0;
}
.easy-steps-title > h2 {
    margin: 0;
}
.easy-steps-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.easy-steps-title > h2:after {
    content: '';
    background-color: var(--green);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.easy-steps-title > h2 > span {
    color: var(--green);
}
.easy-steps-subtitle {
    margin-top: 30px;
}
.easy-steps-img-row {
    margin-top: 45px;
}
.easy-steps-img {
    max-width: 1140px;
    margin: 0 auto;
}
.easy-steps-img > img {
    max-width: 100%;
    height: auto;
}
.easy-steps-cta-row {
    margin-top: 60px;
}
.easy-steps-cta {
    text-align: center;
}
@media(max-width: 767px) {
    .easy-steps {
        padding: 25px 0;
    }
}


/* Why Choose FSN */
.why-choose-fsn {
    padding: 50px 0 100px;
}
.why-choose-fsn-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.why-choose-fsn-title > h2 > span {
    color: var(--blue);
}
.why-choose-fsn-title > h2:after {
    content: '';
    background-color: var(--blue);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.why-choose-fsn-subtitle {
    margin-top: 30px;
}
.why-choose-fsn-cta {
    margin-top: 30px;
}
.why-choose-fsn-cta > a {
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}
.why-choose-fsn-cta > a i {
    padding-right: 5px;
}
.why-choose-fsn-cta > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
.why-choose-fsn-feature {
    display: flex;
    gap: 25px;
}
.why-choose-fsn-feature:not(:first-child) {
    margin-top: 45px;
}
.why-choose-fsn-feature-img, 
.why-choose-fsn-feature-content {
    display: flex;
    flex-wrap: wrap;
}
.why-choose-fsn-feature-img .time-to-get-blc-feature-img {
    padding: 25px;
}
.why-choose-fsn-feature-title > h4 {
    margin: 0;
    font-size: 20px;
}
.why-choose-fsn-feature-desc {
    margin-top: 10px;
}
.why-choose-fsn-feature-desc > p {
    margin: 0;
    color: var(--gray);
}
@media(max-width: 767px) {
    .why-choose-fsn {
        padding: 25px 0 45px;
    }
    .why-choose-fsn-features {
        margin-top: 45px;
    }
    .why-choose-fsn-feature:not(:first-child) {
        margin-top: 30px;
    }
    .why-choose-fsn-feature {
        display: block;
    }
    .why-choose-fsn-feature-title {
        margin-top: 5px;
    }
    .why-choose-fsn-feature-img .time-to-get-blc-feature-img {
        padding: 10px;
    }
}

/* CTA Banner */
.cta-banner {
    padding: 75px 0;
    background-color: var(--green);
    color: var(--white);
}
.cta-banner-form-outer {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}
.cta-banner.cta-banner-b {
    text-align: center;
}
.cta-banner-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.cta-banner-title > h2:after {
    content: '';
    background-color: var(--white);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.cta-banner.cta-banner-b .cta-banner-title > h2:after {
    position: relative;
    left: 50%;
    margin: 15px 0 0 calc(30px - 10%);
}
.cta-banner-subtitle {
    margin-top: 30px;
}
.cta-banner-subtitle > p {
    margin: 0;
    font-size: 18px;
}
@media(max-width: 767px) {
    .cta-banner {
        padding: 45px 0;
    }
    .cta-banner-form-outer {
        justify-content: center;
        margin-top: 30px;
    }
}


/* FSN Testimonials */
.fsn-testimonials {
    padding: 100px 0 50px;
}
.fsn-testimonials-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.fsn-testimonials-title > h2 > span {
    color: var(--blue);
}
.fsn-testimonials-title > h2:after {
    content: '';
    background-color: var(--blue);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.fsn-testimonials-subtitle {
    margin-top: 30px;
}

.fsn-testimonials-slider-controls {
    margin-top: 45px;
}
.fsn-testimonials-slider-controls ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}
.fsn-testimonials-slider-controls ul > li {

}
.fsn-testimonials-slider-controls ul > li > a {
    color: var(--blue);
    background-color: var(--light-blue);
    font-size: 18px;
    display: block;
    padding: 10px;
    border-radius: 10px;
}
.fsn-testimonials-slider-controls ul > li > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
.fsn-testimonials-slider-controls.disabled-controls {
    display: none;
}
.disabled-controls ul > li > a {
    pointer-events: none;
    filter: grayscale(0.5);
}
.disabled-controls ul > li > a > span {
    filter: opacity(0.5);
}
.fsn-testimonials-slider ul.slides {
    margin: 0;
    padding: 0;
    display: flex;
}
@media(max-width: 767px) {
    .fsn-testimonials {
        padding: 45px 0 25px;
    }
    .fsn-testimonials-slider-controls {
        margin-top: 30px;
    }
    .fsn-testimonials-slider {
        margin-top: 30px;
    }
}


.fsn-testimonial {
    padding: 30px;
    background-color: var(--white);
    box-shadow: 0px 0px 30px rgba(52, 73, 147, 0.05);
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
}
.fsn-testimonial-desc > p {
    margin: 0;
    font-size: 14px;
}
.fsn-testimonial-author {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.fsn-testimonial-author-img {
    background-color: var(--light-blue);
    border-radius: 10px;
    height: fit-content;
}
.fsn-testimonial-author-img > img {
    display: block;
    width: 100%;
    max-width: 44px;
    height: auto;
    padding: 10px 5px;
}
.fsn-testimonial-author-name > p {
    margin: 0;
    font-weight: 600;
    line-height: 1;
    color: var(--blue);
}
.fsn-testimonial-author-des {
    margin-top: 5px;
}
.fsn-testimonial-author-des > p {
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25;
    color: var(--gray);
}

.fsn-social-proof-row {
    margin-top: 60px;
}
.fsn-social-proof ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.fsn-social-proof ul > li {

}
.fsn-social-proof ul > li > a {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(52, 73, 147, 0.05);
    display: block;
    padding: 10px;
}
.fsn-social-proof ul > li > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
.fsn-social-proof ul > li > a img {
    max-width: 165px;
    width: 100%;
}
@media(max-width: 576px) {
    .fsn-social-proof ul > li {
        width: calc(50% - 10px);
    }
    .fsn-social-proof ul > li img {
        max-width: 100%;
    }
}


/* FSN Podcasts */
.our-podcasts {
    padding: 50px 0;
}
.our-podcasts-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.our-podcasts-title > h2 > span {
    color: var(--green);
}
.our-podcasts-title > h2:after {
    content: '';
    background-color: var(--green);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.our-podcasts-subtitle {
    margin-top: 30px;
}
.podcasts-row {
    margin-top: 45px;
}
.podcasts {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center; 
}
.podcast {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgba(52, 73, 147, 0.05);
    display: block;
}
.podcast > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
.podcast > a > img {
    max-width: 100%;
    height: auto;
}
@media(max-width: 1199px) {
    .podcasts {
        gap: 30px;
    }
}
@media(max-width: 767px) {
    .our-podcasts {
        padding: 25px 0;
    }
}


/* Blog and Articles */
.blog-articles {
    padding: 50px 0;
}
.blog-articles-title {
    text-align: center;
}
.blog-articles-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.blog-articles-title > h2 > span {
    color: var(--blue);
}
.blog-articles-title > h2:after {
    content: '';
    background-color: var(--blue);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    position: relative;
    left: 50%;
    margin: 15px 0 0 calc(30px - 10%);
}
.blog-articles-subtitle {
    margin: 30px auto 0;
    max-width: 660px;
    text-align: center;
}
.articles-row {
    margin-top: 60px;
}
#fsn-articles-slider ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
#fsn-articles-slider ul > li {
    /*display: flex !important;*/
    height: 100% !important;
}
.slider-article {
    /*display: flex;
    gap: 30px;*/
}
.slider-article-img > img {
    max-width: 100%;
    height: 265px;
    width: 200px;
    object-fit: cover;
    border-radius: 20px;
}
.slider-article-cat {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.slider-article-cat > a {
    margin: 0;
    text-decoration: none;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-block;
    border-radius: 6px;
    color: var(--blue);
    background-color: var(--light-blue);
}
.slider-article-cat > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
.slider-article-title {
    margin-top: 15px;
}
.slider-article-title > h3 {
    margin: 0;
    font-size: 20px;
}
.slider-article-title > h3 > a {
    text-decoration: none;
    color: inherit;
}
.slider-article-title > h3 > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
.slider-article-excerpt {
    margin-top: 20px;
}
.slider-article-excerpt > p {
    margin: 0;
    font-size: 14px;
    color: var(--gray);
}
.slider-article-rm {
    margin-top: 20px;
}
.slider-article-rm > a {
    color: var(--blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.slider-article-rm > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}

#fsn-articles-slider-controls {
    margin-top: 60px;
}
#fsn-articles-slider-controls ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}
#fsn-articles-slider-controls ul > li > a {
    color: var(--blue);
    background-color: var(--light-blue);
    font-size: 18px;
    display: block;
    padding: 10px;
    border-radius: 10px;
}
#fsn-articles-slider-controls ul > li > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}

@media(max-width: 991px) {
    .slider-article-img > img {
        width: 100%;
    }
    .slider-article-content {
        margin-top: 30px;
    }
}
@media(max-width: 767px) {
    .blog-articles {
        padding: 25px 0;
    }
}

/* FSN Nonprofit Donation */
.fsn-nonprofit-donation {
    padding: 50px 0 100px;
}
.fsn-nonprofit-donation-title {

}

.fsn-nonprofit-donation-title {
    text-align: center;
}
.fsn-nonprofit-donation-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.fsn-nonprofit-donation-title > h2 > span {
    color: var(--blue);
}
.fsn-nonprofit-donation-title > h2:after {
    content: '';
    background-color: var(--blue);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    position: relative;
    left: 50%;
    margin: 15px 0 0 calc(30px - 10%);
}
.fsn-nonprofit-donation-subtitle {
    margin: 30px auto 0;
    max-width: 660px;
    text-align: center;
}

.fsn-np-partners-row {
    margin-top: 30px;
}
.fsn-np-partners ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.fsn-np-partners ul > li {

}
.fsn-np-partners ul > li > a {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgb(52 73 147 / 5%);
    display: block;
    padding: 10px;
}
.fsn-np-partners ul > li > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
@media(max-width: 767px) {
    .fsn-nonprofit-donation {
        padding: 25px 0 45px;
    }
}

/* Green Bar */
.fsn-np-greenbar {
    margin-top: 90px;
    background-color: var(--green);
    color: var(--white);
    text-align: center;
}
.fsn-np-greenbar-text {
    padding: 5px 0;
}
.fsn-np-greenbar-text > p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
}

/* Business Line of Credit / Nonprofit Line of Credit CTAs */
.loc-ctas-sec {
    padding: 50px 0;
}
.blog .loc-ctas-sec {
    margin-top: 60px;
}
/*.loc-ctas-row {
    margin-top: 60px;
}*/
.loc-ctas {
    display: flex;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 30px;
    justify-content: center;
}
.loc-cta {
    display: block;
}
.loc-cta > a {
    background-color: var(--blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    padding: 15px 30px;
    display: block;
}
.loc-cta > a > i {
    padding-left: 10px;
    font-size: 80%;
}
.loc-cta > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
@media(max-width: 767px) {
    .loc-cta > a {
        display: flex;
    }
}


/* Sidebar */
.sidebar {

}
#sb-cta-banner-fixed.fixed-bottom {
    position: relative !important;
}
#sb-cta-banner-fixed.fixed-top {
    position: fixed !important;
    right: auto !important;
    left: auto !important;
    top: 60px !important;
    bottom: auto !important;
    
}
#sb-cta-banner-fixed-outer {
    transition: all ease-in-out 0.3s;
}

/* Sidebar CTA Banner */
.sb-cta-banner {
    background-color: var(--green);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
}

.sb-cta-banner-title > h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}
.sb-cta-banner-title > h3:after {
    content: '';
    background-color: var(--white);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.sb-cta-banner-desc {
    margin-top: 30px;
}
.sb-cta-banner-desc > p {
    margin: 0;
    font-size: 14px;
}
.sb-cta-banner-form {
    margin: 30px 0 0;
}
.sb-cta-banner-form > a {
    font-size: 16px;
    display: block;
}

/* Sidebar Search */
form#searchform {
    margin-top: 30px;
    position: relative;
}
form#searchform input#s {
    width: 100%;
    height: 40px;
    border: 1px solid var(--mid-gray);
    border-radius: 10px;
    padding: 10px 35px 10px 20px;
    overflow: hidden; 
}
form#searchform input#s::placeholder {    
    font-weight: 400;
    color: var(--mid-gray);
}
form#searchform input#s:focus-visible {
    outline: 1px solid var(--gray);
}
form#searchform button[type="submit"] {
    position: absolute;
    top: 1px;
    right: 5px;
    height: calc(100% - 2px);
    border: none;
    background-color: transparent;
}
form#searchform button[type="submit"] > i {
    color: var(--mid-gray);
}

/* Sidebar Featured Articles */
.sb-featured-articles {
    margin-top: 30px;
    padding: 30px;
    background-color: var(--white);
    box-shadow: 13.55px 13.55px 16.93px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}
.sb-featured-articles-title > h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}
.sb-featured-articles-title > h3 > span {
    color: var(--blue);
}
.sb-featured-articles-title > h3:after {
    content: '';
    background-color: var(--blue);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}

.sb-featured-articles-list {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}


.sb-featured-articles-list > li > a {
    text-decoration: none;
    color: var(--bs-body-color);
}
.sb-featured-articles-list > li > a:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}
.sb-featured-articles-list > li > a .sb-featured-article-img > img {
    max-width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}
.sb-featured-articles-list > li > a .sb-featured-article-title {

}
.sb-featured-articles-list > li > a .sb-featured-article-title > p {
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    color: var(--gray);
}
.sb-featured-articles-list > li > a .sb-featured-article-title > h4 {
    margin: 10px 0 0;
    font-size: 14px;
}

@media(min-width: 1200px) {
    .sidebar, 
    .sidebar #sb-cta-banner-fixed {
        max-width: 350px !important;
    }
}

@media(min-width: 992px) {
    .sidebar, 
    .sidebar #sb-cta-banner-fixed {
        max-width: 296px;
        margin-right: 0;
        margin-left: auto;
    }
    .sb-featured-articles-list > li:not(:first-child) {
        margin-top: 20px;
    }
}
@media(max-width: 991px) {
    .sidebar {
        margin-top: 45px;
    }
    .sb-featured-articles-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }
    .sb-featured-articles-list > li {
        max-width: 300px;
    }
}
@media(max-width: 767px) {
    .sb-featured-articles-list > li > a .sb-featured-article-img > img {
        max-width: 100%;
        height: 75px;
    }
}

/* Two Column Text */
.two-col-text {
    padding: 100px 0 50px;
}
.two-col-text-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.two-col-text-title > h2 > span {
    color: var(--blue);
}
.two-col-text-title > h2:after {
    content: '';
    background-color: var(--blue);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.two-col-text-desc {
    margin-top: 30px;
}

.two-col-text-rt img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media(max-width: 767px) {
    .two-col-text {
        padding: 50px 0 25px;
    }
}

/* Text & Image */
.text-img {

}
/*.text-img-text-wrap {
    float: left;
}
.text-img-img-wrap {
    float: left;
}*/
section.text-img {
    overflow: hidden;
}
.text-img-text-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.text-img-text-title > h2 > span {
    color: var(--blue);
}
.text-img-text-title > h2:after {
    content: '';
    background-color: var(--blue);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.text-img-text-desc {
    margin-top: 30px;
}
.text-img-text-wrap {
    display: flex;
    align-items: center;
    height: 100%;
}
.text-img-text {
    padding: 90px;
    background-color: var(--white);
    box-shadow: 0px 0px 30px rgb(52 73 147 / 5%);
    border-radius: 15px;
    margin-right: -240px;
    z-index: 9;
}


.text-img.swap-x .text-img-text {
    margin-right: 0;
    margin-left: -240px;
}
.text-img.swap-x .text-img-img {
    direction: rtl;
}
@media(max-width: 1199px) {
    .text-img-text {
        padding: 60px;
        margin-right: -300px;
    }
    .text-img.swap-x .text-img-text {
        margin-left: -300px;
    }
}
@media(min-width: 768px) {
    .text-img.swap-x .col-md-5 {
        order: 2;
    }
}
@media(max-width: 767px) {
    .text-img-text-wrap {
        display: block;
        height: auto;
    }
    .text-img-text {
        padding: 25px;
        margin: 0 !important;
        border-radius: 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .text-img-img img {
        max-width: 100%;
        height: auto;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }
}


/* Title & Content */
.tc-sec {
    padding: 50px 0 50px;
}
.tc-title.text-center {
    text-align: center;
}
.tc-title > h2 {
    margin: 0;
    font-weight: 600;
    position: relative;
}
.tc-title > h2 > span {
    color: var(--blue);
}
.tc-title > h2:after {
    content: '';
    background-color: var(--blue);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.tc-title.text-center.tc-title > h2:after {
    position: relative;
    left: 50%;
    margin: 15px 0 0 calc(30px - 10%);
}
.tc-subtitle-row {
    margin-top: 30px;
}
.tc-subtitle a:not(.btn-primary) {
    text-decoration: none;
    color: var(--blue);
}
.tc-subtitle a:hover {
    opacity: 0.75;
    transition: opacity ease-in-out 0.3s;
}

/* Template Landing */
.page-template-template-landing #page-content section.landing-section:nth-child(2):not(.cta-banner) {
    padding: 100px 0 50px !important;
}
.page-template-template-landing #page-content section.landing-section {
    padding: 50px 0 !important;
}
.page-template-template-landing #page-content section.landing-section:last-child {
    padding: 50px 0 100px !important;
}
.page-template-template-landing #page-content section.fsn-nonprofit-donation.gb-enabled.landing-section:last-child {
    padding: 50px 0 0 !important;
}
@media(max-width: 767px) {
    .page-template-template-landing #page-content section.landing-section:nth-child(2):not(.cta-banner) {
        padding: 50px 0 25px !important;
    }
    .page-template-template-landing #page-content section.landing-section {
        padding: 25px 0 !important;
    }
    .page-template-template-landing #page-content section.landing-section:last-child {
        padding: 25px 0 50px !important;
    }
}

/* Email posts to subscribers */
.eps-sub-box  {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}
.eps-sub-box > h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}
.eps-sub-box > h3 > span {
    color: var(--green);
}
.eps-sub-box > h3:after {
    content: '';
    background-color: var(--green);
    max-width: 200px;
    width: calc(30px + 10%);
    height: 2px;
    display: block;
    margin: 15px 0 0;
}
.eps-sub-box > br {
    display: none;
}
.email_posts_subscribers form.elp_form p {
    margin: 0;
}
.email_posts_subscribers form.elp_form input#name, 
.email_posts_subscribers form.elp_form input#email {
    border: 1px solid var(--mid-gray);
    border-radius: 10px;
    height: 50px;
    width: 100%;
    padding: 10px 20px;
    overflow: hidden;
}
.email_posts_subscribers form.elp_form input#name::placeholder, 
.email_posts_subscribers form.elp_form input#email::placeholder {
    font-weight: 400;
    color: var(--mid-gray);
}
.email_posts_subscribers form.elp_form input#name:focus-visible, 
.email_posts_subscribers form.elp_form input#email:focus-visible {
    outline: 1px solid var(--gray);
}
.email_posts_subscribers form.elp_form span.name,
.email_posts_subscribers form.elp_form span.email {
    display: none;
}
.email_posts_subscribers form.elp_form > p:nth-child(3) {
    text-align: right;
}
.email_posts_subscribers form.elp_form input[id^=elp_form_submit] {
    background-color: var(--green);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    height: 50px;
    width: 100%;
    max-width: 100%;
    font-weight: 500;
}
.email_posts_subscribers form.elp_form input[id^=elp_form_submit]:hover {
    opacity: .75;
    transition: opacity ease-in-out .3s;
}

/* Two Column Section "Apply for Affiliate "*/
.two_col_section {
    display: flex;
    overflow: hidden;
    position: relative;
}
.two_col_section h3 {
    color:  var(--blue);
    font-weight: 700;
    margin: 1.0em 0 1em
}
.two_column_left {
    display: flex;
    width: 50%;
}
.two_column_right {
    display: flex;
    width: 50%;
}
.two-column__text.two-column__text--left {
    text-align: left;
}
.two-column__text {
    padding: 0 2rem 1.6rem 2rem;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    z-index: 1;
}
.two-column__left .two-column__text-inner {
    margin-left: auto;
    margin-right: 0;
}

@media (max-width: 991px) {
    .two_col_section {
        display: inline-block;
    }
    .two_column_left,
    .two_column_right {
        width: 100%;
    }
    .two-column__text {
        padding: 0 2rem 1.6rem 2rem;
    }
    .two-column__content {
        text-align: center;
    }
}

/* Affiliate forms styling */
.affwp-form input[type=text],
.affwp-form input[type=password],
.affwp-form input[type=email],
.affwp-form select,
.affwp-form textarea {
    border: 1px solid var(--mid-gray);
    border-radius: 10px;
    width: 100%;
    padding: 10px 20px !important;
    overflow: hidden;
}
.affwp-form input[type=text],
.affwp-form input[type=password],
.affwp-form input[type=email],
.affwp-form select {
    height: 50px;
}
.affwp-form textarea {
    height: auto;
}  
.affwp-form input[type=checkbox] {
    vertical-align: middle;
    width: 15px;
    margin: 0 5px 0 3px;
}
.affwp-form label {
    font-weight: 500 !important;
    font-size: 14px;
}
.affwp-form .button {
    background-color: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    height: 50px;
    width: 350px !important;
    max-width: 100%;
    font-weight: 500;
    float: right;
}
.affwp-form .button:hover {
    text-decoration: none;
    opacity: 0.75;
}
form#affwp-generate-ref-url .affwp-referral-url-submit-wrap:after {
    display: block;
    content: "";
    clear: both;
}
#affwp-affiliate-dashboard {
    margin-top: 30px;
}
@media(max-width: 767px) {
    .affwp-form .button {
        display: flex;
        float: none;
        margin: 0 auto;
        justify-content: center;
    }
}

#fsn-autopal {
	width: 100%;
	height: 100vh;
}
#autopal-notice {
	margin: 0 0 30px;
}