/*
Master Stylesheet for Layout 480
Steve @ Build Your Firm
4/15/2019
*/

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
CSS VARIABLES
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

:root {
    --byf-primary: #19375f;
    --byf-secondary: #182144;
    --byf-pop: #a28f3e;

    --byf-overlay: rgb(93 95 109 / 80%);

    --byf-font1: 'Oswald', sans-serif;
    --byf-font2: 'Muli', sans-serif;

    --byf-body-font-size: 16px;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
OVERRIDES
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

* {
    font-size: var(--byf-body-font-size);
}

.container {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  
  .row {
    margin-right: -1rem;
    margin-left: -1rem;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  TYPOGRAPHY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  h1, h2, h3, h4, h5, h6,
  h2 > a, h3 > a, h4 > a {
    font-family: var(--byf-font1);
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 1rem;
    -webkit-font-variant-ligatures: none;
    font-variant-ligatures: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #333;
  }
  
  h1 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
  
  #index-section h1 {
    text-transform: capitalize;
  }

.iframe-holder {
   display: block;
}

.iframe-holder iframe {
   max-width: 100%;
}
  
  #index-section h1 > span {
    text-transform: none;
  }
  
  h2, h2>a {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
  
  h3, h3>a {
    font-size: 1.325rem;
    line-height: 1.5rem;
  }
  
  h4, h4>a {
    font-size: 1.125rem;
    line-height: 1.375rem;
  }
  
  p, a, ul, li {
    color: #333;
    font-family: var(--byf-font2);
    font-size: 1rem;
    font-weight: 300;
    line-height: 2rem;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  p + h1, p + h2, p + h3,
  p + h4, p + h5, p + h6 {
    margin-top: 1.25rem;
  }
  
  a, a:active, a:focus, a:visited {
    color: var(--byf-pop);
    font-family: var(--byf-font2);
    font-weight: 600;
    outline: 0;
    text-decoration: none;
    -webkit-transition: all.3s ease;
    -o-transition: all.3s ease;
    transition: all.3s ease;
  }
  
  h2>a, h2>a:active, h2>a:focus, h2>a:visited,
  h3>a, h3>a:active, h3>a:focus, h3>a:visited,
  h4>a, h4>a:active, h4>a:focus, h4>a:visited,
  h5>a, h5>a:active, h5>a:focus, h5>a:visited,
  h6>a, h6>a:active, h6>a:focus, h6>a:visited {
    color: var(--byf-pop);
    font-family: var(--byf-font1);
    outline: 0;
    text-decoration: none;
    -webkit-transition: all.3s ease;
    -o-transition: all.3s ease;
    transition: all.3s ease;
  }
  
  #index h2>a, #index h3>a, #index h4>a, #index h5>a, #index h6>a,
  #inner h2>a, #inner h3>a, #inner h4>a, #inner h5>a, #inner h6>a {
    border: 0 !important;
  }
  
  * a:hover,
  a:hover, h2>a:hover, h3>a:hover,
  h4>a:hover, h5>a:hover, h6>a:hover {
    color: var(--byf-secondary);
    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;
  }
  
  .form-control::-webkit-input-placeholder {
    color: #909090;
    font-family: var(--byf-font2);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
  }
  
  .form-control:-moz-placeholder {
    color: #909090;
    font-family: var(--byf-font2);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
  }
  
  .form-control::-moz-placeholder {
    color: #909090;
    font-family: var(--byf-font2);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
  }
  
  .form-control:-ms-input-placeholder {
    color: #909090;
    font-family: var(--byf-font2);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
  }
  
  .form-control::-ms-input-placeholder {
    color: #909090;
    font-family: var(--byf-font2);
    font-size: 1rem;
    font-style: italic;
    font-weight: 300;
  }
  
  .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
  }


   .featuredwrap {
   color: #000;
   text-wrap: nowrap;
}
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  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: transparent;
    border: 2px solid var(--byf-pop);
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #606060;
    cursor: pointer;
    display: inline-block;
    font-family: var(--byf-font1);
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.2rem;
    min-width: 112px;
    outline: 0;
    padding: 1rem 4rem;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  
  .btn-primary:hover,
  .btn-default:hover,
  #newsletter .btn-primary:hover,
  #services a:hover .btn-primary,
  #consultation-bar .btn-primary:hover,
  #featured-services .btn-primary:hover,
  #featured-services .featured a:hover .btn-primary,
  .navbar .navbar-nav .nav-item:last-of-type .nav-link:hover {
    background: var(--byf-primary);
    border-color: var(--byf-primary);
    color: #FFF;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  HEADER - TOOLBAR
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
.top-banner {
    background: #10A5F5;
    text-align: center;
    padding: 1px;
}

.top-banner p {
  margin-bottom: 0;
}

  #toolbar {
    background: #F2F2F2;
    overflow: hidden;
    padding: .2rem 1rem;
    position: relative;
    z-index: 1;
  }
  
  #toolbar a {
    color: #3C3C3C;
    display: inline-block;
    font-size: .9375rem;
    padding: .125rem .25rem;
    position: relative;
  }
  
  #toolbar .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
  }
  
  #toolbar .row a {
    font-family: var(--byf-font2);
    font-weight: 600;
  }
  
  #toolbar a>i {
    color: #3C3C3C;
    margin-right: .5rem;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
  }
  
  #toolbar a:hover,
  #toolbar a:hover i {
    color: var(--byf-primary);
  }
  
  #toolbar-left,
  #toolbar-center,
  #toolbar-right {
    text-align: right;
  }
  
  #toolbar-center,
  #toolbar-right {
    margin-left: 10rem;
  }
  
  #toolbar  #toolbar-social a {
    margin: 0;
  }
  
  #toolbar .container {
    padding: 0 2rem;
  }

.disclaimer {
    text-align: center;
    background: var(--byf-secondary);
    color: #fff;
    padding: 15px 0 5px;
}

.disclaimer :is(h3, p) {
   color: #fff;
}

#disclaimer.fixed-top {
    background: #10A5F5;
    padding: 8px 0;
    z-index: 75;
  }
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  LOGO SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #header-logo {
    background: #FFF;
    padding: 1.5625rem 0;
    -webkit-box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
    box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
    -webkit-transition: padding .2s ease;
    -o-transition: padding .2s ease;
    transition: padding .2s ease;
  }
  
  #header-logo .container {
    max-width: 1208px;
  }
  
  
  #header-logo.fixed {
    background: #FFF;
    padding: 8px 0;
    z-index: 75;
  }
  
#header-logo img {
    max-width: 250px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
  
  #header-logo.fixed img {
    max-width: 200px;
  }
  
  .navbar-button {
    -webkit-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 {
    position: relative;
    top: .25rem;
  }
  
  .navbar .navbar-nav .nav-link {
    color: #2b2c35;
    font-family: var(--byf-font1);
    font-size: .9rem;
    font-weight: 400;
    letter-spacing: .24px;
    padding: .75rem 1rem;
    position: relative;
    text-align: center;
    text-transform: uppercase;
  }
  
  .navbar .navbar-nav .nav-item:not(:last-of-type) .nav-link::before {
    content: '';
    background: var(--byf-pop);
    bottom: 0;
    display: block;
    height: 0px;
    left: 1rem;
    opacity: 0;
    position: absolute;
    right: 1.25rem;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  
  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-item.show .nav-link {
    color: var(--byf-pop);
  }
  
  .navbar .navbar-nav .dropdown-toggle::after {
    content: '';
    background-image: url("../site_images/icon-angle-down.svg");
    background-repeat: no-repeat;
    background-size: 1rem 1rem;
    border: 0 !important;
    height: 1rem;
    position: absolute;
    top: .875rem;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
    width: 1rem;
  }
  
  .navbar .navbar-nav .nav-item:not(:last-of-type):hover .nav-link::before {
    height: 2px;
    opacity: 1;
  }
  
  .navbar .navbar-nav .nav-item:last-of-type .nav-link {
    background: #FFF;
    border: var(--byf-pop) solid 2px;
    border-radius: 4px;
    margin-left: 1rem;
    padding: 1rem 1.5rem;
    position: relative;
    text-transform: uppercase;
    top: -.25rem;
    z-index: 2;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  
  .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-nav .dropdown-menu {
    margin: 0;
    padding: 5px 0;
  }
  
  .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-pop);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CAROUSEL SLIDER
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #carousel-wrapper {
    background: #F2F2F2;
    position: relative;
  }
  
  #myCarousel {
    background: #333;
    overflow-x: hidden;
    position: relative;
  }
  
  #myCarousel .carousel-indicators {
    display: none;
  }
  
  #myCarousel .carousel-control-prev,
  #myCarousel .carousel-control-next {
    width: 100px;
    z-index: 2;
    -webkit-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: 1295px;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
  }
  
  #myCarousel .carousel-caption {
    bottom: auto;
    left: 50%;
    padding: 1.5rem 0 2rem;
    text-align: left;
    top: 46%;
    width: 650px;
    opacity: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation-name: slideLeft;
    animation-name: slideLeft;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
  
  .animated {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 2s !important;
    animation-duration: 2s !important;
  }
  
  #myCarousel .carousel-caption-right {
    left: auto;
    right: 15%;
    text-align: right;
  }
  
  #myCarousel .carousel-caption h2 {
    color: #FFF;
    font-size: 4.6875rem;
    font-weight: 300;
    line-height: 5rem;
  }
  
  #myCarousel .carousel-caption h2 span {
    color: #FFF;
    display: block;
    font-size: 4.6875rem;
    line-height: 5rem;
    font-weight: 700;
  }
  
  #myCarousel .carousel-caption p {
    color: #FFF;
    font-family: var(--byf-font2);
    font-size: 1.6875rem;
    font-weight: 200;
    line-height: 2.25rem;
  }
  
  #myCarousel .carousel-item {
    background-position: 45% center;
    background-size: cover;
    max-height: 740px;
    min-height: 700px;
  }
  
  #myCarousel .carousel-item img {
    opacity: 0;
    visibility: hidden;
  }
  
  #myCarousel .carousel-inner .carousel-item:nth-of-type(1) {
    background-image: url('/site_images/slide1new.webp');
  }
  
  #myCarousel .carousel-inner .carousel-item:nth-of-type(2) {
    background-image: url('/site_images/slide2-1.webp');
  }
  
  #myCarousel .carousel-inner .carousel-item:nth-of-type(3) {
    background-image: url('/site_images/slidealt.webp');
  }
  
  #myCarousel .overlay {
    background: #0e153185;
    bottom: 0;
    left: 0;
    opacity: .75;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  
  .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);
  }
  
  @-webkit-keyframes slideLeft {
    from {
      opacity: 0;
      -webkit-transform: translate(-50%, 0, -50%);
      transform: translate(-50%, 0, -50%);
      visibility: visible;
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%);
    }
  }
  
  @keyframes slideLeft {
    from {
      opacity: 0;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      visibility: visible;
    }
  
    to {
      opacity: 1;
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%);
    }
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - */
  
  #consultation-bar {
    background: rgba(0,0,0,.25);
    border-radius: 4px;
    padding: 2.25rem 2rem 1.375rem;
    z-index: 1;
    width: 330px;
    margin-left: auto;
  }
  
  #carousel-wrapper #consultation-bar {
    background: rgba(255,255,255,0);
    position: absolute;
    right: calc(50% - 40rem);
    top: 50%;
    width: 450px;
    -webkit-transform: translate(-225%, -50%);
    -ms-transform: translate(-225%, -50%);
     transform: translate(-225%, -50%);
  }
  
  #consultation-bar h2 {
    color: #FFF;
    font-size: 3rem;
    letter-spacing: .4px;
    line-height: 2.875rem;
  }
  
  #consultation-bar h3 {
    color: #FFF;
    font-size: 2rem;
    font-weight: 300;
    line-height: 2rem;
    margin: 0 0 1.875rem;
  }
  
  #carousel-wrapper #consultation-bar h3 {
    font-size: 2.25rem;
    line-height: 2.5rem
  }
  
  #consultation-bar h3 > span {
    font-size: 2.25rem;
    color: var(--byf-primary);
    font-weight: 400;
    text-transform: uppercase;
  }
  
  #consultation-bar form {
    margin: 1.5rem 0 0;
  }
  
  #consultation-bar .form-control {
    background: #EFEFEF;
    color: #202020;
    font-family: var(--byf-font2);
    font-size: 1rem;
    height: 2.75rem;
    margin: 0 0 1.125rem;
  }
  
  #consultation-bar .form-control:focus {
    background: #FFF;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  
  #consultation-bar .btn-primary {
    background: var(--byf-pop);
    color: #FFF;
    margin: 1rem 0 0;
    padding: 1.25rem 3.2em;
  }
  
  #consultation-bar p {
    color: #202020;
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.5rem;
    margin-top: 1.25rem;
  }
  
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SERVICES SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #services {
    padding: 5.5rem 0;
  }
  
  #services .row>div[class*='col-'] {
    padding: 0 1.5rem;
  }
  
  #services .service {
    padding: calc(-3rem + 5vw) 2rem;
    text-align: center;
  }
  
  #services .img-holder {
    font-size: 0;
    overflow: hidden;
  }
  
  #services img {
    height: auto;
    margin: 0 auto;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }
  
  #services h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 1.5rem 0 1.25rem;
  }
  
  #services p {
    color: #333232;
    font-size: 1rem;
    line-height: 2rem;
    margin: 0 0 2.5rem;
  }
  
  #services a:hover img {
    -webkit-transform: scale(1.06,1.06);
    -ms-transform: scale(1.06,1.06);
    transform: scale(1.06,1.06);
  }
  
  #services a:hover h2 {
    color: var(--byf-pop);
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  INDEX COPY SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #index {
    border-bottom: 2px solid #FAFAFA;
    padding: 5rem 0;
    text-align: center;
  }
  
  #index h1 {
    display: inline-block;
    font-size: 1.875rem;
    margin: 0 0 2.125rem;
    padding: 0 0 2rem;
    position: relative;
  }
  
  #index h1::after {
    background: var(--byf-primary);
    bottom: -.125rem;
    content: '';
    height: 3px;
    left: 22.5%;
    right: 22.5%;
    position: absolute;
  }
  
  #index .buttons {
    margin-top: 1.5rem;
  }
  
  #index .btn-primary {
    margin: 1.5rem 0 0;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  FEATURED SERVICES SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #featured-services {
    overflow: hidden;
    padding: 4rem 0 5.5rem;
  }
  
  #featured-services h2 {
    color: #FFF;
    display: inline-block;
    font-size: 25px;
  }
  
  #featured-services .featured {
    height: 100%;
    margin: 20px 0 0;
  }
  
  #featured-services .featured h2 {
    color: #333;
    font-size: 1.625rem;
    margin: 0 0 1.5rem;
    font-weight: 400;
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
  }
  
  #featured-services .img-holder {
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
  }
  
  #featured-services img {
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }
  
  #featured-services .featured a:hover img {
    -webkit-transform: scale(1.08,1.08);
    -ms-transform: scale(1.08,1.08);
    transform: scale(1.08,1.08);
  }
  
  #featured-services .btn-primary {
    margin: 1rem 0 0;
    padding: 1.25rem 2.5rem;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  NEWSLETTER SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #newsletter:not(form) {
    background:url('/site_images/cta-bg.webp') no-repeat center center;
    background-size: cover;
    padding: 5rem 0;
    position: relative;
    text-align: center;
  }
  
  #newsletter:not(form) .overlay {
    background: rgba(255,255,255,.45);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
  }
  
  #newsletter h2 {
    color: #333;
    font-size: 2rem;
    margin: 0 0 1.75rem;
  }
  
  #newsletter p {
    color: #333;
    margin: 0 0 2rem;
  }
  
  #newsletter  .btn-primary,
  #newsletter  .btn-primary:active,
  #newsletter  .btn-primary:focus {
    background: transparent;
    border: 2px solid #FFF;
    color: #FFF;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    padding: 12px 30px 10px;
  }
  
  #newsletter:not(form) .row {
    background: rgba(255, 255, 255, .75);
    border-radius: 6px;
    margin: 0;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
  }
  
  #newsletter:not(form) form {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    width: 500px;
    z-index: 2;
  }
  
  #newsletter:not(form) .form-control {
    display: inline-block;
    color: #202020;
    font-family: var(--byf-font2);
    font-size: 1rem;
    height: 3.75rem;
    margin: 0 0 1.125rem;
  }
  
  #newsletter form input[type='email'] {
    border: 0;
    margin-right: 2rem;
    width: calc(75% - 2rem);
  }
  
  #newsletter .btn-primary {
    background: var(--byf-pop);
    border-color: var(--byf-pop);
    color: #FFF;
    height: 3rem;
    width: 10rem;
    font-size: 1rem;
    position: relative;
    top: -2px;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  TESTIMONIALS
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #testimonials {
    padding: 5rem 0 10rem;
    position: relative;
    text-align: center;
  }
 
  
  #testimonials h2 {
    color: var(--byf-secondary);
    display: inline-block;
    font-size: 2rem;
    margin: 0 0 4rem;
    padding: 0 0 3.5rem;
    position: relative;
    text-align: center;
  }
  
  #testimonials h2::after {
    background: var(--byf-pop);
    bottom: .5rem;
    content: '';
    height: 3px;
    left: 22.5%;
    right: 22.5%;
    position: absolute;
  }
  
  #testimonials .testimonial {
    background: var(--byf-secondary);
    border-radius:  6px;
    height: 100%;
    padding: 3rem 3rem;
    text-align: left;
  }
  
  #testimonials .testimonial i {
    color: var(--byf-pop);
    font-size: 2rem;
    margin: 0 0 1.5rem;
  }
  
  #testimonials p {
    color: #efefef;
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
  
  #testimonials p.name {
    color: #efefef;
    font-family: var(--byf-font1);
    font-weight: 400;
    font-size: 1.125rem;
    text-transform: uppercase;
  }
  
  #testimonials p.name::before {
    bottom: .125rem;
    content: '\2013';
    position: relative;
    left: -.5rem;
  }
  
  #testimonials .carousel-indicators {
    bottom: -5rem;
  }
  
  
  .carousel-indicators li {
    border-radius: 50%;
    cursor: pointer;
    height: .875rem;
    width: .875rem;
    background: var(--byf-primary);
    opacity: 0.6;
  }

.carousel-indicators .active {
    background-color: var(--byf-primary);
    opacity: 1;
}
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  AFFILIATES
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #affiliates {
    background: #FFF;
    border-top: 1px solid #EEE;
    padding: 2rem 1.5rem;
  }
  
  #affiliates .affiliates {
    margin: 0 -15px;
    text-align: center;
  }
  
  #affiliates .affiliates img {
    display: inline-block;
    margin: 1.875rem;
    max-width: 250px;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  INNER PAGES - CONTENT
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #inner {
    overflow-x: hidden;
    padding: 0;
  }
  
  #inner form p:last-of-type {
    margin-bottom: 10px;
  }
  
  #inner-content {
    padding: 4rem 1.5rem 8rem;
  }
  
  #inner-content p:last-of-type {
    margin: 0;
  }
  
  #headline {
    background: linear-gradient(to bottom, var(--byf-primary) 0%,var(--byf-secondary) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=
    '#9c1939', endColorstr='#ce223b',GradientType=0 );
    margin: 0 -15px;
    padding: 0 1rem;
  }
  
  #headline > .container > h1 {
    color: #FFF;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    padding: 3.375rem 0;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  INNER PAGES - SIDEBAR
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #sidebar {
    padding: 4.375rem 0 4rem 0;
    position: relative;
  }
  
  .sidebar-bg {
    background: #FFF;
    background-image: url('../site_images/sidebar-bg.jpg');
    background-position: -425px center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100vw;
  }
  
  .sidebar {
    margin: 0 auto;
    max-width: 26.5625rem;
    padding: 0 1rem;
    text-align: center;
  }
  
  #inner-sidebar {
    background: rgba(0, 0, 0, .5);
    margin: 0 0 0 2rem;
    padding: 2rem 1.5rem 4rem;
    position: relative;
    text-align: center;
  }
  
  #inner-sidebar h3 {
    color: #FFF;
    font-size: 1.5rem;
  }
  
  #inner-sidebar h3>span {
    font-weight: 700;
  }
  
  #inner-sidebar p {
    color: #FFF;
    margin: .75rem 0 1.125rem;
  }
  
  #inner-sidebar .form-control {
    border: 0;
    border-radius: 0;
    font-size: 12px;
    height: 2.4375rem;
    outline: 0;
  }
  
  #inner-sidebar .sidebar-btn {
    background: var(--byf-secondary);
    border: 0;
    color: #FFF;
    cursor: pointer;
    font-family: var(--byf-font2);
    font-size: 1.125rem;
    margin: 1rem 0 0;
    outline: 0;
    padding: .75rem 0;
    width: 100%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  
  #inner-sidebar .sidebar-btn:hover {
    background: var(--byf-secondary);
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  FOOTER
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  footer {
    background: #F2F2F2;
  }
  
  #footer-top {
    font-size: 0;
    overflow: hidden;
    padding: 5rem .5rem 3rem;
  }
  
  #footer-top h2 {
    color: #454545;
    font-size: 1.675rem;
    margin: 0 0 1.125rem;
    padding: 0 0 1.5rem;
    position: relative;
  }
  
  #footer-top h2::after {
    background: var(--byf-pop);
    bottom: 0;
    content: '';
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    width: 3.375rem;
  }
  
  #footer-top i {
    margin-right: .25rem;
    text-align: center;
    width: 1rem;
  }
  
  #footer-top p {
    color: #FFF;
    margin: 0;
  }
  
  #footer-top a,
  #footer-top a:active,
  #footer-top a:focus {
    color: #FFF;
    display: inline-block;
  }
  
  #footer-top a {
    margin: 0 auto;
    text-align: center;
  }
  
  #footer-top a,
  #footer-top p {
    color: #494949;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    padding: 0 0 6px;
  }
  
  #footer-top a:hover {
    color: var(--byf-secondary);
  }
  
  #footer-top .btn-primary {
    margin: 1.5rem 0 0;
    padding: 0 .5rem;
  }
  
  #footer-top form {
    margin: .75rem 0 0;
  }
  
  #footer-top .form-control {
    background: #FBFBFB;
    border: 0;
    border-radius: 0;
    height: 3.75rem;
  }
  
  #footer-top .form-control:focus {
    background: #FFF;
  }
  
  #footer-top .btn-primary {
    height: 3.75rem;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  FOOTER MIDDLE
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #footer-middle .row {
    border-bottom: 1px solid #CCC;
    margin: 0;
    padding: 1rem 0;
  }
  
  #footer-middle .row div[class*='col-'] {
    padding: 0;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  FOOTER BOTTOM
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #footer-bottom {
    overflow: hidden;
    padding: 1.25rem 0 2rem;
  }
  
  #footer-bottom a,
  #footer-bottom p {
    color: #474747;
    display: inline-block;
    font-size: .875rem;
    font-weight: 600;
    line-height: 1rem;
    margin: 0 0 .5rem;
  }
  
  #footer-bottom a:hover {
    color: var(--byf-secondary);
  }
  
  #footer-bottom .byf-link p {
    margin: 0;
  }
  
  #footer-menu {
    font-size: 0;
    margin: 2rem 0 0;
    text-align: right;
  }
  
  #footer-menu a {
    position: relative;
  }
  
  #footer-menu a:not(:last-of-type) {
    margin-right: 1rem;
    padding: 0 1rem 0 0;
  }
  
  #footer-menu a:not(:last-of-type)::after {
    border-right: 1px solid #999;
    bottom: .0625rem;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: .1875rem;
  }
  
  #footer-menu a:last-of-type {
    padding: 0;
  }
  
  #footer-social {
    font-size: 0;
    margin: 1.5rem 0 0;
    text-align: right;
  }
  
  #footer-social a {
    display: inline-block;
  }
  
  #footer-social i {
    color: var(--byf-pop);
    font-size: 1.25rem;
    margin: 0 .25rem;
    text-align: center;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
  }
  
  #footer-social a:hover i {
    color: var(--byf-primary);
  }
  
  #footer-social a:not(:first-of-type) {
    margin-left: 1rem;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  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;
    -o-transition: opacity .5s ease;
    transition: opacity .5s ease;
  }
  
  #scroll-icon .fa,
  #scroll-icon .fa:active,
  #scroll-icon .fa:focus {
    background: var(--byf-overlay);
    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);
    box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, .2);
    -webkit-transition: box-shadow .2s ease;
    -o-transition: box-shadow .2s ease;
    -webkit-transition: -webkit-box-shadow .2s ease;
    transition: -webkit-box-shadow .2s ease;
    transition: box-shadow .2s ease;
    transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
  }
  
  #scroll-icon:hover .fa {
    -webkit-box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, .35);
    box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, .35);
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  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: var(--byf-font2) !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;
  }
  
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1350 MEDIA QUERY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  @media (max-width: 1350px) {
    #carousel-wrapper #consultation-bar {
      right: calc(50% - 30rem);
      width: 380px;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
    }
  
    #myCarousel .carousel-caption h2 span {
      color: #FFF;
      display: block;
      font-size: 4rem;
      line-height: 4.5rem;
      font-weight: 700;
    }
  
    #myCarousel .carousel-caption h2 {
      color: #FFF;
      font-size: 3.5rem;
      font-weight: 300;
      line-height: 5rem;
    }
  
    #myCarousel .carousel-caption p {
      font-size: 1.5rem;
      line-height: 2.25rem;
    }
  
    #myCarousel .carousel-caption {
      padding: 1.5rem 0 2rem 4rem;
    }
  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  1199 MEDIA QUERY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  @media (max-width: 1199px) {
  
    #myCarousel .carousel-indicators {
      display: none;
    }
  
    #myCarousel .carousel-item {
      background-position: 40% center;
    }
  
    #myCarousel .carousel-caption {
      width: 35rem;
    }
  
    #myCarousel .carousel-caption h2 {
      font-size: 4rem;
      line-height: 4.5rem;
    }
  
  
    #myCarousel .carousel-caption h2 span {
      font-size: 3.75rem;
      line-height: 4.75rem;
    }
  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  991 MEDIA QUERY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  @media (max-width: 991px) {
  
    #toolbar .row {
      justify-content: space-between;
    }
  
    #toolbar-center,
    #toolbar-right {
      margin-left: 0;
    }
  
    .navbar .navbar-nav a {
      display: inline-block;
    }
  
    .navbar .navbar-nav {
      margin: 0 auto !important;
      text-align: center;
    }
  
    .navbar .navbar-nav .nav-item.highlighted .nav-link {
      margin: 1rem 0 0;
    }
  
    #myCarousel .carousel-item {
      background-position: 55% center;
      min-height: 600px;
    }
  
    #myCarousel .carousel-caption {
      padding: 0 2rem;
      text-align: center;
      width: 100%;
    }
  
    #carousel-wrapper #consultation-bar,
    #consultation-bar {
      background: #FBFBFB;
      border: 1px solid #CCC;
      border-radius: 4px;
      padding-bottom: 2rem;
      margin: 3rem auto 0;
      position: relative;
      right: auto;
      top: auto;
      width: 100%;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
    }
  
    #carousel-wrapper #consultation-bar {
      width: calc(100% - 2rem);
    }
  
    #carousel-wrapper {
      padding: 0 0 4rem;
    }
  
    #consultation-bar h2,
    #consultation-bar h3 {
      color: #333;
    }
  
    #consultation-bar h2 {
      font-size: 2.3125rem;
      line-height: 3rem;
      margin: 0 0 .25rem;
    }
  
    #consultation-bar h3 {
      font-size: 2rem;
      line-height: 2.25rem
    }
  
    #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 .nav-link,
    .navbar .dropdown-item {
      text-align: center;
    }
  
    .dropdown-menu {
      border: 0;
      margin-top: 0;
      padding-top: 0;
    }
  
    #index {
      padding: 5rem 0;
    }
  
    #inner-content {
      padding: 4rem 1rem 1rem 1rem;
    }
  
    #headline > .container > h1 {
      padding: 2.5rem 0;
    }
  
    #sidebar {
      padding: 1rem 1rem 6rem;
    }
  
    #testimonials .testimonial-column {
      padding: 5rem 1.5rem 8rem;
    }
  
    #footer-menu {
      text-align: left;
    }
  
    #footer-top>.container>.row>div[class*='col-'] {
      margin: 1.5rem 0 .5rem;
    }
  
    .sidebar-bg {
      background-position: center center;
      width: 100%;
    }
  
    #inner-sidebar {
      margin: 0;
      padding: 2rem 1.5rem 4rem;
    }
  
    .video-responsive {
      margin-top: 1rem;
    }
  
    .newsletter_form label {
      margin-bottom: 4px;
      text-align: left !important;
    }
  
    .newsletter_form a {
      display: inline-block;
      margin-bottom: 10px;
    }
  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  767 MEDIA QUERY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  @media (max-width: 767px) {
  
    #toolbar #toolbar-social {
      text-align: center;
    }
  
    #toolbar-center {
      text-align: right;
    }
  
    #myCarousel .carousel-item {
      min-height: 500px;
    }
  
    #myCarousel .carousel-caption {
      margin-left: auto;
      margin-right: auto;
      left: 0;
      right: 0;
      top: 50%;
      text-align: center;
    }
  
    #myCarousel .carousel-caption h2 {
      font-size: 1.75rem;
      line-height: 2rem;
    }
  
    #myCarousel .carousel-caption p {
      margin-bottom: 1rem;
    }
  
  
    #index {
      padding: 3rem 0;
    }
  
    #services {
      position: relative;
    }
  
    #header-logo .container {
      padding: 0 15px;
    }
  
    #resource-links .row {
      margin: 0 -15px;
    }
  
    #index .index-content {
      padding: 2rem 1.5rem;
    }
  
    #index .buttons .btn-primary,
    #index .buttons .btn-primary:first-of-type {
      display: table;
      margin: 1.25rem auto 0;
    }
  
    #services .row>div[class*='col-']:not(:last-of-type) {
      padding-bottom: 4rem;
    }
  
    #featured-services {
      padding: 1rem 0 5rem;
    }
  
    #featured-services .featured h2 {
      margin-top: 2rem;
    }
  
    #myCarousel .carousel-caption h2 span {
      font-size: 3rem;
      line-height: 4rem;
    }
  
    #myCarousel .carousel-caption h2 {
      font-size: 2.85rem;
      line-height: 3.5rem;
    }
  
    #myCarousel .carousel-caption p {
      font-size: 1.25rem;
      line-height: 1.85rem;
    }
  
    #services .service {
      padding: 1.5rem 1rem;
      height: 100%;
    }
  
    #inner-content {
      padding: 4rem 1rem 3rem;
    }
  
    #sidebar {
      padding: 0 1rem 5rem;
    }
  
    #testimonials .testimonial {
      padding: 2.5rem 1.875rem;
    }
  
    .consultation_form .col-xs-12.col-sm-4.text-center {
      width: 100%;
    }
  
    #footer-top {
      padding: 3rem .5rem 2rem;
    }
  
    #footer-menu {
      margin: .5rem 0 0;
    }
  
    #footer-bottom {
      padding: 1.125rem .5rem .875rem
    }
  
    #footer-bottom #footer-menu,
    #footer-bottom .copyright,
    #footer-bottom .byf-link {
      margin-bottom: .5rem;
      text-align: left;
      width: 100%;
    }
  
    #footer-bottom #footer-menu {
      margin-top: .3125rem;
    }
  
    #headline > .container > h1 {
      font-size: 1.625rem;
      padding: 2rem 0;
    }
  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  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;
    }
  
     #toolbar-right {
      margin: .5rem 0 .25rem;
      text-align: center;
      width: 100%;
    }
  
    #myCarousel .carousel-item {
      min-height: 400px;
    }
  
    #myTestimonials .row div[class*='col-'] {
      padding-bottom: 2rem;
    }
  
    #footer-top .about p {
      padding-right: 0;
    }
  
    #footer-top .pl-0 {
      padding-left: 1rem !important;
    }
  
    #footer-social {
      margin-top: 3rem;
      text-align: left;
    }
  
    #scroll-icon {
      display: none;
    }
  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  480 MEDIA QUERY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  @media (max-width: 480px) {
  
    #toolbar .row a {
      margin: 0;
    }
  
    #toolbar .col-6 {
      padding: 0;
    }
  
    #myCarousel .carousel-caption h2 span {
      font-size: 2.125rem;
      line-height: 3rem;
    }
  
    #myCarousel .carousel-caption h2 {
      font-size: 1.875rem;
      line-height: 2.5rem;
    }
  
    #myCarousel .carousel-caption p {
      font-size: 1.125rem;
      line-height: 1.75rem;
    }
  
    #carousel-wrapper #consultation-bar h2 {
      font-size: 2.25rem;
      line-height: 2.5rem;
      margin-bottom: .5rem;
    }
  
    #carousel-wrapper #consultation-bar h3 {
      font-size: 1.675rem;
      line-height: 2rem;
      margin-bottom: 0;
    }
  
    #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 0;
    }
  
    #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: 100%
    }
  
  }
  
  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
      max-width: 1210px;
    }
  }
  
  /* = = = = = = = = = = MAIN480.CSS = = = = = = = = = = */

/*================
LEAD MAGNET
================*/

.lead-magnet {
    background: var(--byf-secondary);
    padding: 2rem 1rem;
}

.lead-magnet img {
    width: 155px;
    margin-right: 3rem;
    box-shadow: 1px 2px 5px rgb(57 54 54 / 43%);
}

.lead-magnet h2, .lead-magnet p {
  color: #fefefe;
}

@media all and (max-width: 575px) {

.lead-magnet {
  flex-direction: column;
}

.lead-magnet img {
  margin: 2rem auto;
}

.lead-magnet {
   text-align: center;
}

}
