/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CSS VARIABLES
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
 :root {
--byf-base-light: #242761;
--byf-base-dark: #151748;

--byf-pop: #3fc2c9;
--byf-pop2: #329fa5;

--byf-font1: 'Montserrat', serif;
--byf-font2: 'Fira Sans', sans;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OVERRIDES
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.container {
  padding-right: 1rem;
  padding-left: 1rem;
}

.row {
  margin-right: -1rem;
  margin-left: -1rem;
}

.byf_row .align-items-baseline {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: start !important;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TYPOGRAPHY
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

h1, h2, h3, h4, h5, h6,
h2 > a, h3 > a, h4 > a, th {
  font-family: var(--byf-font1);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 .5rem;
  -webkit-font-variant-ligatures: none;
  -moz-font-variant-ligatures: none;
  font-variant-ligatures: none;
}

h1, h2, h3, h4, h5, h6 {
  color: #333;
}

h1 {
  font-size: 1.5rem;
  line-height: 2.25rem;
}

#index-section h1 {
  text-transform: capitalize;
}

#index-section h1 > span {
  text-transform: none;
}

h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

h3 {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

h4 {
  font-size: 1.0625rem;
  line-height: 1.25rem;
}

p, a, ul, li {
  color: #333;
  font-family: var(--byf-font2);
  font-size: .9375rem;
  line-height: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

p + h1, p + h2, p + h3,
p + h4, p + h5, p + h6 {
  margin-top: 1.25rem;
}

h2 > a, h2 > a:active, h2 > a:focus,
h3 > a, h3 > a:active, h3 > a:focus,
h4 > a, h4 > a:active, h4 > a:focus {
  font-family: inherit;
  font-size: inherit;
}

a, a:active,
a:focus, a:visited,
h2>a, h3>a, h4>a, h5>a, h6>a {
  color: #00D2AF;
  font-family: var(--byf-font2);
  outline: 0;
  text-decoration: none;
  -webkit-transition: color .3s ease;
  -moz-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease;
}

a:hover {
  color: var(--byf-pop2);
}

* a:hover {
  text-decoration: none;
}

ul {
  margin-bottom: 10px;
}

h2 + ul,
p + ul {
  margin-top: 10px;
}

h2 + ul,
h3 + ul {
  margin-top: -5px;
}

ul+ h1, ul + h2, ul + h3,
ul + h4, ul + h5, ul + h6 {
  margin-top: 1.25rem;
}

strong {
  font-weight: 600;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SOCIAL MEDIA
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.social-media,
.social-media *,
.social-media::before,
.social-media::after {
  box-sizing: border-box !important;
}

.social-media a {
  font-size: 0 !important;
  padding: 0 !important;
}

.social-media i {
  background: transparent;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  height: 30px;
  margin: 0 !important;
  padding-left: 5px;
  text-align: center;
  width: 32px;
  -webkit-transition: background .2s ease;
  -moz-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}

.social-media a:first-of-type i {
  margin-left: 0 !important;
}

.social-media a:hover i {
  background: var(--byf-pop2);
}

.fa-facebook-f {
  padding: 8px 5px 8px 7px;
}

.fa-google-plus-g {
  padding: 8px 4px 8px 8px;
}

.fa-linkedin-in {
  padding: 8px 5px 8px 6px;
}

.fa-pinterest-p {
  padding: 8px 5px 8px 6px;
}

.fa-twitter {
  padding: 8px 5px 8px 6px;
}

.fa-yelp {
  padding: 8px 4px 8px 8px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
BUTTONS
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

a.btn, a.btn:active, a.btn:focus, a.btn:active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active:focus,
.btn-primary, .btn-primary:active, .btn-primary:focus, .btn-primary:active:focus,
.btn-default, .btn-default:active, .btn-default:focus, .btn-default:active:focus
.btn-default:not(:disabled):not(.disabled):active:focus {
  background: var(--byf-pop);
  border: 0;
  border-radius: 30px;
  box-shadow: none;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-family: var(--byf-font1);
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.5rem;
  min-width: 112px;
  outline: 0;
  padding: 12px 40px 10px;
  text-transform: uppercase;
  -webkit-transition: background .3s ease;
  -moz-transition: background .3s ease;
  -o-transition: background .3s ease;
  transition: background .3s ease;
}

.btn:hover,
.btn-primary:hover,
.btn-default:hover {
  background: var(--byf-pop2);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
HEADER - TOOLBAR
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#toolbar {
  background: #FFF;
  overflow: hidden;
  padding: .125rem 1rem;
  position: relative;
  z-index: 99;
}

#toolbar a {
  color: #333;
  display: inline-block;
  font-size: .8125rem;
  padding: .125rem .25rem;
  position: relative;
}

#toolbar .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 1150px;
}

#toolbar .row a:not(:last-of-type) {
  margin: 0 2rem 0 0;
}

#toolbar .row a:not(:last-of-type)::after {
  background: #CCC;
  bottom: 8px;
  display: block;
  content: '';
  position: absolute;
  right: -1rem;
  top: 8px;
  width: 1px;
}

#toolbar a>i {
  color: var(--byf-pop);
  margin-right: .5rem;
  -webkit-transition: color .3s ease;
  -moz-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease;
}

#toolbar a:hover,
#toolbar a:hover i {
  color: var(--byf-pop2);
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LOGO SECTION
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#header-logo {
  background: #FFF;
  padding: 15px 0;
  -webkit-box-shadow: 0 6px 4px 2px rgba(0,0,0,.2);
  -moz-box-shadow: 0 6px 4px 2px rgba(0,0,0,.2);
  box-shadow: 0 1px 4px 2px rgba(0,0,0,.15);
  -webkit-transition: padding .2s ease;
  -moz-transition: padding .2s ease;
  -o-transition: padding .2s ease;
  transition: padding .2s ease;
  z-index: 10;
}

#header-logo.fixed-top {
  background: #FFF;
  background: rgba(255,255,255,.95);
  padding: 8px 0;
  z-index: 75;
}

#header-logo img {
  max-width: 100%;
  -webkit-transition: max-width .4s ease;
  -o-transition: max-width .4s ease;
  -moz-transition: max-width .4s ease;
  transition: max-width .4s ease;
}

#header-logo.fixed-top img {
  max-width: 25%;
  min-width: 225px;
}

.navbar-button {
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

.fixed-top .menu {
  display: none;
}

.fixed-top .navbar-button {
  top: 5px;
}

.fixed-top #toggle-open i {
  top: 50%;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NAVBAR
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.navbar {
  padding: 0;
  width: 100%;
}

.navbar-brand {
  margin: 0;
  padding: 0 15px 0 0;
}

.navbar .navbar-nav .nav-link {
  color: #333;
  font-size: .85rem;
  padding: 10px 12px;
  text-align: center;
}

.navbar .navbar-nav .nav-item:last-child .nav-link {
  background: var(--byf-pop);
  border-radius: 40px;
  color: #FFF;
  font-weight: 600;
  margin-left: 12px;
  padding: 10px 18px;
  position: relative;
  text-transform: uppercase;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 99;
}

.navbar .navbar-nav .nav-item:last-of-type:hover .nav-link {
  background: var(--byf-pop2);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-item.show .nav-link {
  color: var(--byf-pop2);
}

.navbar .navbar-nav .dropdown-toggle::after {
  left: 1px;
  position: relative;
  top: 1px;
}

.navbar .dropdown-item,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus {
  background: transparent;
  color: #333;
  padding: .25rem 1rem;
}

.navbar .dropdown-item:hover {
  background: #EAEAEA;
}

.navbar-light .navbar-toggler,
.navbar-light .navbar-toggler:focus,
.navbar-light .navbar-toggler:active {
  border: 0;
  height: 100%;
  outline: 0;
  padding: 0;
}

.navbar-nav .dropdown-menu {
  margin: 0;
  padding: 5px 0;
}

.navbar-toggler i,
.navbar-toggler i:active,
.navbar-toggler i:focus {
  color: #1EBCBD;
  font-size: 30px;
  position: relative;
  top: 6px;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}

.navbar-toggler i:hover {
  color: #4E7B88;
}

.navbar-collapse {
  position: relative;
}

#navbar-track {
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

#navbar-spy {
  position: absolute;
  bottom: -6px;
  height: 6px;
  background: var(--byf-pop2);
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CAROUSEL SLIDER
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#myCarousel {
  background: #333;
  overflow-x: hidden;
}

#myCarousel .carousel-control-prev,
#myCarousel .carousel-control-next {
  width: 100px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

#myCarousel .carousel-control-prev {
  left: -75px;
}

#myCarousel .carousel-control-next {
  right: -75px;
}

#myCarousel:hover .carousel-control-prev {
  left: -15px;
}

#myCarousel:hover .carousel-control-next {
  right: -15px;
}

#myCarousel img {
  width: 100%;
}

#myCarousel .carousel-indicators li:hover {
  cursor: pointer;
}

#myCarousel .wrapper {
  bottom: 0;
  left: 50%;
  max-width: 1200px;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

#myCarousel .carousel-item {
  background-position: center 20%;
  -webkit-background-size: cover;
  background-size: cover;
  max-height: 740px;
  min-height: 700px;
}

#myCarousel .carousel-caption {
  bottom: auto;
  left:  0;
  padding: 1.75rem 1.5rem 2rem 4rem;
  text-align: left;
  top: 50%;
  width: 650px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#myCarousel .carousel-caption-right {
  left: auto;
  right: 15%;
  text-align: right;
}

#myCarousel .carousel-caption h2 {
  color: #FFF;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 2.5rem;
}

#myCarousel .carousel-caption h2 span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.8125rem;
  line-height: 3.25rem;
  display: block;
}

#myCarousel .carousel-caption p {
  color: #FFF;
  font-size: 1.125rem;
  line-height: 2rem;
}

#myCarousel .slider-overlay {
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

#myCarousel .carousel-inner .carousel-item:nth-of-type(1) .slider-overlay {
  background: #3265BA;
}

#myCarousel .carousel-inner .carousel-item:nth-of-type(2) .slider-overlay  {
  background: #3265BA;
}

#myCarousel .carousel-inner .carousel-item:nth-of-type(3) .slider-overlay  {
  background: #3265BA;
}

#myCarousel .carousel-inner .carousel-item:nth-of-type(1) {
  background-image: url('/site_images/BDVslider12.jpg');
}

#myCarousel .carousel-inner .carousel-item:nth-of-type(2) {
  background-image: url('/site_images/BDVslider22.jpg');
}

#myCarousel .carousel-inner .carousel-item:nth-of-type(3) {
  background-image: url('/site_images/BDVslider32.jpg');
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-duration: .6s;
  -o-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-property: all;
  -o-transition-property: all;
  transition-property: all
}

.carousel-fade  .carousel-item.active,
.carousel-fade  .carousel-item-next.carousel-item-left,
.carousel-fade  .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade  .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade  .active.carousel-item-prev {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CALL TO ACTION SECTION
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#call-to-action {
  padding: 3rem 0;
  position: relative;
}

#call-to-action .bg-1 {
  background: var(--byf-base-light);
  bottom: 0;
  left: 0;
  right: 50%;
  top: 0;
  position: absolute;
}

#call-to-action .bg-2 {
  background: var(--byf-base-dark);
  bottom: 0;
  left: 50%;
  right: 0;
  top: 0;
  position: absolute;
}

#call-to-action h2 {
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  margin: 0 0 .75rem;
}

#call-to-action p {
  color: #FFF;
}

#call-to-action #consultation-form input {
  margin: 0 0 .75rem;
}

#call-to-action #consultation-form input:last-of-type {
  margin: .0625rem 0 0;
}

#call-to-action #consultation-form span {
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
  font-size: .8125rem;
  font-style: italic;
  margin: 0 .8125rem .8125rem 0;
  position: relative;
  top: -.125rem;
}

#call-to-action .btn-primary {
  margin-top: 1rem;
}

#call-to-action .text-column {
  padding: 0 6rem 0 2rem;
}

#call-to-action .form-column {
  margin: 1rem 0 0;
  padding: 0 2rem 0 6rem;
  text-align: right;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
INDEX COPY SECTION
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#index .index-bg {
  background: url("/site_images/index2.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#index .index-content {
  max-width: 800px;
  padding: 6rem 6rem;
}

#index .buttons {
  margin-top: 1.5rem;
}

#index .buttons .btn-primary {
  margin: 1rem 1.5rem 0 0;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SERVICES SECTION
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#services {
  background: var(--byf-base-light);
  padding: 3rem 0rem;
}

#services .service {
  padding: 2rem 2rem;
  position: relative;
  -webkit-transition: background-color .3s ease;
  -moz-transition: background-color .3s ease;
  -o-transition: background-color .3s ease;
  transition: background-color .3s ease;
}

#services .service img {
  height: auto;
  margin: 0 0 .625rem;
  width: 40px;
}

#services i {
  color: #FFF;
  font-size: 1.75rem;
  margin: 0 0 1rem;
}

#services h2.heading {
  font-size: 1.5rem;
  margin: 0 0 1rem;
}

#services h2 {
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.375rem;
  margin: 0 0 .625rem;
}

#services p {
  color: #FFF;
}

#service-track {
  bottom: 0;
  left: 15px;
  position: absolute;
  right: 15px;
  top:0;
}

#service-spy {
  background: var(--byf-pop2);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

#services .row {
  margin: 0;
  position: relative;
}

#services .row div[class*="col-"] {
  padding: 0;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TESTIMONIALS SECTION
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#myTestimonials {
  margin: 0 0 0 auto;
  max-width: 550px;
}

#testimonials .testimonials-bg {
  padding: 8rem 0;
  background: url("http://via.placeholder.com/1538x1024") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
}

#testimonials .testimonial-column {
  padding: 7rem 6rem 10.5em;
}

#myTestimonials .carousel-indicators li {
  background-color: #CCC;
  border-radius: 50%;
  cursor: pointer;
  height: 1rem;
  margin: 0 4px;
  position: relative;
  width: 1rem;
}

#myTestimonials .carousel-indicators li.active {
  background-color: var(--byf-pop);
}

#myTestimonials .carousel-indicators {
  bottom: -3rem;
  left: 0;
  margin: 0 -4px;
  right: auto;
}

.carousel-item i {
  color: var(--byf-pop);
  float: left;
  margin: 0 .5rem 0 0;
}

#testimonials h2 {
  font-size: 1.5rem;
  margin: 0 0 2rem;
}

#myTestimonials p.testimonial {
  font-size: 1.25rem;
}

#myTestimonials p.name {
  font-size: .9375rem;
  font-weight: 600;
  margin: 1rem 0 0;
}

#myTestimonials p.company {
  font-size: .875rem;
  font-style: italic;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
AFFILIATES
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#affiliates {
  background: #F8F8F8;
  border-top: 1px solid #EEE;
  padding: 2rem 1.5rem;
}

#affiliates .affiliates {
  margin: 0 -15px;
  text-align: center;
}

#affiliates .affiliates img {
  display: inline-block;
  filter: grayscale(100%);
  margin: 1.875rem;
  max-width: 225px;
  opacity: .5;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1 ease;
  transition: all 1s ease;
}

#affiliates .affiliates img:hover {
  filter: grayscale(40%);
  opacity: 1;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
INNER PAGES - CONTENT
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#inner {
  padding: 0rem;
}

#inner p:last-of-type {
  margin-bottom: 0;
}

#inner form p:last-of-type {
  margin-bottom: 10px;
}

#headline {
  background: var(--byf-base-light);
}

#headline > .container > h1 {
  color: #FFF;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  padding: 35px 0;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
INNER PAGES - SIDEBAR
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#inner-content {
  padding: 4rem 15px 8rem;
}

#sidebar {
  padding: 6rem 15px 8rem;;
}

.sidebar {
  background: #FAFAFA;
  border: 1px solid #DDD;
  margin: 0 auto;
  max-width: 26.5625rem;
  padding: 0 1rem;
  text-align: center;
}

.sidebar .section {
  padding: 2.5rem 1rem 2.75rem;
  position: relative;
  border-bottom: 1px solid #CCC;
}


.sidebar .section:last-of-type {
  border: 0;
}

.sidebar h3 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 400;
}

.sidebar .section h3>span {
  color: var(--byf-base-light);
  font-weight: 500;
}

#heading {
  background: var(--byf-base-light);
  padding: 2rem 1.5rem 4rem;
  position: relative;
  margin: 0 -1rem;
}

#heading h3 {
  color: #FFF;
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin: 0 0 .75rem;
}

#heading h3 > span {
  font-weight: 500;
}

#heading p {
  color: #FFF;
}

#heading a {
  bottom: -1.15rem;
  color: #FFF;
  left: 50%;
  padding: 15px 20px 13px;
  position: absolute;
  width: 85%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}

.sidebar .section.tagline {
  padding: 3rem 1rem 2.5rem;
}


.sidebar .section.meet-your-cpa {
  padding: 2.5rem 1rem 1rem;
}
.meet-your-cpa img {
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem;
}

.meet-your-cpa a.btn-primary,
.meet-your-cpa a.btn-primary:active,
.meet-your-cpa a.btn-primary:focus {
  padding: 10px 20px 9px;
  position: relative;
  top: -2rem;
}

.sidebar .social-media {
  text-align: center;
}

.sidebar .social-media a {
  border-radius: 50%;
  display: inline-block;
  margin: 0 0 .5rem;
}

.sidebar .social-media i {
    background: var(--byf-base-light);
  border-radius: 50%;
}

.sidebar .social-media a:hover i {
  background: var(--byf-pop2);
}

.hours h3 {
  font-size: 1.0625rem;
  font-weight: 500;
}

.phone a {
  font-size: 1.25rem;
  font-weight: 600;
}

.phone a:not(:hover) {
  color: var(--byf-pop);
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
FOOTER
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#footer-top {
  background: #FFF;
  font-size: 0;
  overflow: hidden;
  padding: 2.5rem .5rem 3rem;
}

#footer-top {
  border-top: 1px solid #EEE;
}

#footer-top h2 {
  color: #333;
  font-size: 20px;
  margin: 0 0 .5rem;
}

#footer-top p,
#footer-bottom p {
  color: #333;
}

#footer-top a,
#footer-top a:active,
#footer-top a:focus,
#footer-bottom a,
#footer-bottom a:active,
#footer-bottom a:focus {
  color: #333;
  display: inline-block;
}

#footer-top a,
#footer-bottom a,
#footer-top p,
#footer-bottom p {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  padding: 0 0 6px;
}

#footer-top div[class*='col-'] a:last-of-type,
#footer-top div[class*='col-'] p:last-of-type {
  padding-bottom: 0;
}

#footer-bottom a,
#footer-bottom p {
  font-size: .7rem;
}

#footer-top a:hover,
#footer-bottom a:hover {
  color: var(--byf-pop2);
}

#footer-top i {
  color: #666;
  font-size: 12px;
  margin-right: .25rem;
  width: 12px;
}

#footer-top .about img {
    margin: 0rem 0rem 1rem 2rem;
    max-width: 150px;
}

#footer-top .about p {padding-right: 2rem;}

#footer-top .site-name {
  font-weight: 600;
}

#footer-bottom {
  background: #DDD;
  overflow: hidden;
  padding: 1.625rem .5rem 1.5rem;
}

#footer-bottom #byf-link p:last-of-type,
#footer-bottom #byf-link p:last-of-type a {
  padding-bottom: 0;
}

#footer-menu {
  font-size: 0;
  text-align: center;
}

#footer-menu a {
  color: #333;
  padding: 0 15px 0 0;
}

#footer-menu a:last-of-type {
  padding: 0;
}

#footer-bottom #byf-link a:hover {
  color: var(--byf-pop2);
}

#footer-bottom #byf-link {
  text-align: right;
}

#footer-social {
  font-size: 0;
}

#footer-social i {
  color: rgba(255, 255, 255, .85);
  background: var(--byf-base-light);
  border-radius: 50%;
  font-size: 15px;
  height: 32px;
  margin-right: .25rem;
  padding: 8px 9px 6px 8px;
  text-align: center;
  width: 32px;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  transition: all .2s ease;
}

#footer-social i:hover {
  background: var(--byf-pop2);
  color: #FFF;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PRICING PAGE
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
table.blueTable {
  background-color: #F0F6F7;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.blueTable td, table.blueTable th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
}
table.blueTable tbody td {
  font-size: 13px;
  padding: 0.5rem;
}
table.blueTable tr:nth-child(even) {
  background: #D5F4F7;
}
table.blueTable thead {
  background: #242761;
}
table.blueTable thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #D0E4F5;
padding: 1rem;
}
table.blueTable thead th:first-child {
  border-left: none;
}

table.blueTable tfoot td {
  font-size: 14px;
}
table.blueTable tfoot .links {
  text-align: right;
}
table.blueTable tfoot .links a{
  display: inline-block;
  background: #1C6EA4;
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 5px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SCROLL TO TOP
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

#scroll-icon {
  bottom: 15px;
  cursor: pointer;
  opacity: 0;
  position: fixed;
  right: 20px;
  text-align: center;
  visibility: hidden;
  z-index: 999;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  -o-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

#scroll-icon .fa,
#scroll-icon .fa:active,
#scroll-icon .fa:focus {
  background: rgba(0, 179, 208, .4);
  border: 1px solid rgba(0, 179, 208, .8);
  border-radius: 2px;
  color: #FFF;
  cursor: pointer;
  font-size: 25px;
  padding: 10px 15px;
  pointer-events: none;
  -webkit-box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, .2);
  -moz-box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, .2);
  box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, .2);
  -webkit-transition: box-shadow .2s ease;
  -moz-transition: box-shadow .2s ease;
  -o-transition: box-shadow .2s ease;
  transition: box-shadow .2s ease;
}

#scroll-icon .fa:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
MISCELLANEOUS FIXES
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  height: 100%;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  -ms-overflow-style: scrollbar;
}

textarea {
  resize: vertical;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #FFF inset;
}

.error,
.errors {
  background-color: #FFF !important;
  border: 1px solid #FF0000 !important;
  border-radius: 3px;
  color: #FF0000 !important;
  font-family: 'Muli', sans-serif !important;
  font-size: 14px;
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  margin-top: 0 !important;
  padding: 13px 10px 12px !important;
}

.error p,
.errors p {
  font-size: 14px;
  padding-bottom: 0;
}

.error ul,
.errors ul {
  font-weight: 400 !important;
  list-style-position: inside;
  margin-bottom: 0;
  margin-top: 8px;
  padding-left: 30px;
}

.resourcestrick > h1,
.resourcestrick > h3 {
  padding-bottom: 0 !important;
}

.resourcestrick > h1 + br,
.resourcestrick > h3 + br {
  display: none;
}

.resourcestrick > .resourcefix:first-of-type {
  margin-top: 0;
}

.resourcefix {
  font-size: 20px;
  margin: 20px 0 2px;
}

.resourcefix + br {
  display: none;
}

table td {
  font-family: var(--byf-font2);
  font-size: 14px;
  line-height: 1.5;
}

.resourcestrick .resourcefix:first-of-type {
  margin-top: 0;
}

.resourcestrick br:first-of-type {
  display: none;
}

label,
.form-control {
  font-family: var(--byf-font2);
  font-size: 14px;
}

label {
  font-size: 14px;
  font-weight: 400;
}
.verify {
  display: none;
}

.consultation_form .verification .col-xs-12 {
  padding: 5px 15px !important;
}

#consultation label {
  margin-bottom: 5px;
}

#consultation .form-group:not(:nth-of-type(8)):not(:nth-of-type(9)) label {
  display: none;
}

#consultation textarea.form-control {
  height: 115px;
}

.newsletter_form > form {
  font-family: var(--byf-font2);
  font-size: 14px;
}

#contactForm a,
#consultation a,
.newsletter_form a {
  font-size: 12px;
}

.consultation_form .col-xs-12.col-sm-4.text-center {
  text-align: left;
  width: 25%;
}

.newsletter_form label {
  font-weight: 400;
  text-align: right;
}

.newsletter_form .fsd + .form-group > label {
  margin-top: -5px;
}

#captcha {
  border: none !important;
}

.divider {
  background: #CCC;
  display: block;
  height: 1px;
  margin: 24px 0 10px;
  max-width: 100%;
  width: 210px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
1199 MEDIA QUERY
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

@media (max-width: 1199px) {

  #myCarousel .carousel-indicators {
    /* display: none; */
  }

  #call-to-action .text-column {
    padding: 0 5rem 0 1rem;
  }

  #call-to-action .form-column {
    padding: 0 1rem 0 5rem;
  }

  #footer-menu {
    text-align: right;
  }

  #footer-bottom #byf-link {
    text-align: left;;
  }

}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
991 MEDIA QUERY
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

@media (max-width: 991px) {

  #header-logo .container {
    padding: 0 15px;
  }

  #navbar-container {
    display: table;
    width: 100%;
  }

  .navbar-logo,
  .navbar-button {
    display: table-cell;
  }

  .navbar-button {
    position: relative;
    text-align: right;
    width: 45px;
  }

  .navbar .navbar-nav {
    margin: .5rem 0;
  }

  .navbar .navbar-nav .nav-link,
  .navbar .dropdown-item {
    text-align: center;
  }

  .dropdown-menu {
    border: 0;
    margin-top: 0;
    padding-top: 0;
  }

  #call-to-action .text-column {
    padding: 0 3rem 0 2rem;
  }

  #call-to-action .form-column {
    padding: 0 2rem 0 3rem;
  }

  #myCarousel .carousel-caption {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    text-align: center;
  }

  #myCarousel .carousel-caption h2 span {
    font-size: 2.25rem;
    line-height: 2.5rem;
    display: block;
  }

  #myCarousel .carousel-caption h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  #myCarousel .carousel-caption p {
    margin-bottom: 1rem;
  }

  #navbar-spy {
    display: none;
  }

  .newsletter_form label {
    margin-bottom: 4px;
    text-align: left !important;
  }

  .newsletter_form a {
    display: inline-block;
    margin-bottom: 10px;
  }

  #index .index-content {
    padding: 6rem 5rem;
  }

  #testimonials .testimonial-column {
    padding: 5rem 1.5rem 8rem;
  }

  #footer-top>.container>.row>div[class*='col-'] {
    margin: 1.5rem 0 .5rem;
  }

}



/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
767 MEDIA QUERY
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

@media (max-width: 767px) {

  #scroll-icon {
    display: none;
  }

  #header-logo .container {
    padding: 0 15px;
  }

  #myCarousel .carousel-item {
    max-height: 400px;
    min-height: 400px;
  }

  #myCarousel .wrapper {
    left: 0;
    /* position: relative; */
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  #resource-links .row {
    margin: 0 -15px;
  }

  .consultation_form .col-xs-12.col-sm-4.text-center {
    width: 100%;
  }

  #call-to-action .container {
    max-width: 100%;
  }

  #call-to-action .bg-1 {
    bottom: 60%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
  }

  #call-to-action .bg-2 {
    background: #204178;
    bottom: 0;
    left: 0;
    right: 0;
    top: 40%;
    position: absolute;
  }

  #call-to-action {
    padding: 3rem 0;
    position: relative;
  }

  #call-to-action #consultation-form {
    width: 100%;
  }

  #call-to-action .text-column {
    padding: 0 1.5rem;
  }

  #call-to-action .form-column {
    padding: 6rem 1.5rem 0;
  }

  #index .index-content {
    padding: 4rem 1.5rem 5rem;
  }

  #index .buttons .btn-primary,
  #index .buttons .btn-primary:first-of-type {
    display: table;
    margin: 1.25rem auto 0;
  }

  #testimonials .testimonials-bg {
    padding: 0 0 50%;
  }

  #myCarousel .carousel-caption {
    display: block;
    padding: 35px 30px 40px;
    position: relative;
    width: 100%;
    z-index: 2;
  }

  #myCarousel .carousel-caption h2 {
    font-size: 1.5rem;
  }

  #myCarousel .carousel-caption p {
    font-size: 1rem;
    line-height: 1.375rem;
  }

  #services .service {
    padding: 2rem 1rem;
  }

  #inner-content {
    padding: 4rem 1rem;
  }

  #sidebar {
    padding: 0 1rem 5rem;
  }

  #footer-menu {
    margin: .1875rem 0 .5rem;
    text-align: left;
  }

}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
655 MEDIA QUERY
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

@media (max-width: 655px) {

  #toolbar {
    text-align: center;
  }

  #toolbar .row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #toolbar .row a,
  #toolbar .row a:not(:last-of-type) {
    margin: 0;
    width: calc(50% - 2rem);
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  #toolbar .row a:not(:last-of-type)::after {
    display: none;
  }
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
575 MEDIA QUERY
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
@media (max-width: 575px) {
  .container {
    max-width: 100%;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  h4 {
    font-size: 15px;
  }

  #footer-top .about p {
    padding-right: 0;
  }

  #footer-top .pl-0 {
    padding-left: 1rem !important;
  }

  #footer-menu {
    margin: .5rem 0 0;
  }

}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
480 MEDIA QUERY
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

@media (max-width: 480px) {

  #inner-content h1 {
    text-align: center;
  }

  #inner-content img:not(#captcha) {
    display: block;
    float: none !important;
    margin: 0 auto 20px !important;
  }

  #myCarousel .carousel-caption {
    padding: 25px 1.25rem 30px;
  }

  #index .index-content {
    padding: 4rem 1.25rem 5rem;
  }

  #testimonials .testimonial-column {
    padding: 5rem 1.25rem 8rem;
  }

  #services {
    padding: 3rem .125rem;
  }

  #affiliates .container,
  #footer-bottom .container {
    padding: 0 1.25rem;
  }

  #footer-top .row div[class*='col-'] {
    padding: 0 1.25rem;
  }

}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
420 MEDIA QUERY
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

@media (max-width: 420px) {
  #toolbar a>span {
    display: none;
  }
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
BOOTSTRAP OVERRIDES
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 830px;
  }

}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

/* = = = = = = = = = = MAIN450.CSS = = = = = = = = = = */