/*
Master Stylesheet for Layout 420
Steve @ Build Your Firm
4/10/2018
*/

/*
Refactor for CSS Variables
Gabe @ Build Your Firm
5/24/2023
*/

:root {
    --byf-base: #18338e;
    --byf-base2: #11329c;
    
    --byf-pop: #FBB85F;
    --byf-pop2: #FFC6A0;
    
    --byf-dark: #10172e;
    
    --byf-font1: 'Montserrat', sans-serif;
    --byf-font2: 'Open Sans', sans-serif;  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  TYPOGRAPHY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  h1, h2, h3, h4, h5, h6,
  h2 > a, h3 > a, h4 > a {
    font-family: var(--byf-font1);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    -webkit-font-variant-ligatures: none;
    -moz-font-variant-ligatures: none;
    font-variant-ligatures: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #0e1221;
  } 
  
  h1 {
    font-size: 28px;
  }
  
  #index-section h1 {
    text-transform: capitalize;
  }
  
  #index-section h1 > span {
    text-transform: none;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  h4 {
    font-size: 17px;
  }
  
  p, a, ul, li {
    color: #555;
    font-family: var(--byf-font2);
    font-size: 15px;
    line-height: 1.75;
  }
  
  p {
    margin-bottom: 15px;
  }
  
  p + h2,
  p + h3 {
    margin-top: 10px;
  }
  
  a, a:active,
  a:focus, a:visited {
    color: var(--byf-base);
    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-pop);
  }
  
  * a:hover {
    text-decoration: none;
  }
  
  ul {
    margin-bottom: 10px;
  }
  
  h2 + ul,
  p + ul {
    margin-top: 10px;
  }
  
  h2 + ul,
  h3 + ul {
    margin-top: -5px;
  }
  
  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;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  BUTTONS
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  .btn, .btn:active, .btn:focus, .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-primary:not(:disabled):not(.disabled):active,
  .btn-primary:not(:disabled):not(.disabled):active:focus,
  .btn-default, .btn-default:active, .btn-default:focus, .btn-default:active:focus,
  .btn-default:not(:disabled):not(.disabled).active,
  .btn-default:not(:disabled):not(.disabled):active:focus {
    background: var(--byf-base);
    border: 1px solid var(--byf-base);
    border-radius: 1px;
    box-shadow: none;
    color: #FFF !important;
    font-family: var(--byf-font1);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    min-width: 112px;
    outline: 0;
    padding: 9px 30px 8px;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  
  .btn:hover,
  .btn-primary:hover,
  .btn-default:hover {
    background: var(--byf-pop);
    border: 1px solid var(--byf-pop);
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  HEADER
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  .transparent {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
  }
  
  .transparent.inner {
    position: static;
  }
  
  .transparent.inner #topbar {
    background: var(--byf-dark)
  }
  
  .transparent.inner #header-logo {
    background: #000;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  HEADER - TOPBAR
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #topbar {
    overflow: hidden;
  }
  
  .opaque #topbar {
    background: var(--byf-dark);
  }
  
  #topbar *,
  #topbar::before,
  #topbar::after {
    box-sizing: content-box;
  }
  
  #topbar .row {
    margin: 0 15px;
  }
  
  #topbar #topbar-left .item:not(:last-of-type) {
    margin-right: 45px;
  }
  
  #topbar #topbar-right .item:not(:first-of-type) {
    margin-left: 45px;
  }
  
  #topbar .item h2 {
    color: #FFF;
    font-size: 15px;
    margin: 0;
  }
  
  #topbar .item i[class*='fa-'] {
    margin-right: 8px;
  }
  
  #topbar .item a {
    color: #FFF;
    display: inline-block;
    font-size: 15px;
    padding: 12px 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
  }
  
  #topbar .item a:hover,
  #header-social a > i:hover {
    color: var(--byf-pop);
    display: inline-block;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  HEADER - TOPBAR - SOCIAL MEDIA
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #header-social {
    text-align: right;
  }
  
  #header-social,
  #header-social *,
  #header-social::before,
  #header-social::after {
    box-sizing: border-box;
  }
  
  #header-social a {
    font-size: 0 !important;
    padding: 0 !important;
  }
  
  #header-social i {
    color: #FFF;
    font-size: 14px;
    height: 30px;
    margin: 0 !important;
    padding: 8px 16px 8px 0;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  LOGO SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #header-logo {
    padding: 15px 0;
    position: relative;
    -webkit-box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
    box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 100;
  }
  
  .transparent #header-logo {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  
  #header-logo.fixed-top,
  .transparent.inner #header-logo {
    -webkit-box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
    box-shadow: 0 0 4px 2px rgba(0,0,0,.2);
  }
  
  #header-logo.fixed-top {
    background: rgba(255,255,255,.95);
    padding: 8px 0;
    position: fixed;
    z-index: 75;
  }
  
  .transparent #header-logo.fixed-top {
    background: rgba(0,0,0,.9);
  }
  
  #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;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  OVERLAY MENU
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #overlay-menu {
    background: #293F55;
    background: rgba(44, 56, 78, 0.97);
    height: 100%;
    left: 0;
    opacity: 0;
    overflow-x: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 1000;
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    transition: opacity .5s ease;
  }
  
  #overlay-menu .container {
    position: relative;
  }
  
  #overlay-menu-links {
    display: block;
    margin-top: 50px;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 1;
  }
  
  #overlay-menu-links .nav-link {
    display: inline-block;
  }
  
  #overlay-menu-links {
    padding: 0 15px;
  }
  
  #overlay-menu-links a,
  #overlay-menu-links a:active,
  #overlay-menu-links a:focus,
  #overlay-menu-links a:active:focus  {
    color: #DDD;
    font-size: 35px;
    white-space: pre-wrap;
  }
  
  #overlay-menu-links .dropdown-item:focus,
  #overlay-menu-links .dropdown-item:hover {
    background: transparent;
  }
  
  #overlay-menu-links a:hover,
  #overlay-menu-links .show > a {
    color: var(--byf-base);
  }
  
  #overlay-menu-links .show .dropdown-toggle::after {
    border-bottom: 0;
    border-left: .2em solid transparent;
    border-right: .2em solid transparent;
    border-top: .2em solid;
    left: 5px;
    position: relative;
    top: 3px;
    white-space: normal;
  }
  
  #overlay-menu-links .show > .dropdown-toggle::after {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: all .3s ease, transform .3s ease, color 0s;
    -moz-transition: all .3s ease, transform .3s ease, color 0s;
    -o-transition: all .3s ease, transform .3s ease, color 0s;
    transition: all .3s ease, transform .3s ease, color 0s;
  }
  
  #overlay-menu-links .dropdown-menu {
    background: transparent;
    border: 0;
    margin: -5px 0 0;
    padding: 0 0 25px;
    text-align: center;
    width: 100%;
  }
  
  #overlay-menu-links .dropdown-menu.show {
    position: static !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    -moz-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
  }
  
  #overlay-menu-links .dropdown-menu a,
  #overlay-menu-links .dropdown-menu a:active,
  #overlay-menu-links .dropdown-menu a:focus,
  #overlay-menu-links .dropdowm-menu a:active:focus {
    color: #DDD;
    font-size: 25px;
    line-height: 1.2;
  }
  
  #overlay-menu-links .dropdown-menu.show a {
    color: #DDD;
  }
  
  #overlay-menu-links .dropdown-menu.show a:hover {
    background: transparent;
    color: var(--byf-base);
  }
  
  #toggle-open i {
    font-size: 30px;
    position: absolute;
    right: 15px;
    top: -webkit-calc(50% - 5px);
    top: -moz-calc(50% - 5px);
    top: calc(50% - 5px);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  #toggle-close i {
    font-size: 30px;
    position: absolute;
    right: 20px;
    z-index: 9999;
  }
  
  .transparent #toggle-open i {
    color: #FFF;
  }
  
  .transparent #toggle-close i {
    color: var(--byf-base);
  }
  
  #toggle-open i,
  #toggle-close i {
    -webkit-transition: color .3s ease;
    -o-transition: color .3s ease;
    -moz-transition: color .3s ease;
    transition: color .3s ease;
  }
  
  #toggle-open:hover i,
  #toggle-close i:hover {
    color: var(--byf-pop);
    cursor: pointer;
  }
  
  #toggle-open .fa-layers i:first-of-type {
    right: 24px;
  }
  
  #toggle-open .fa-layers .menu {
    font-size: 12px;
    font-style: normal;
    top: -webkit-calc(50% + 18px);
    top: -moz-calc(50% + 18px);
    top: calc(50% + 18px);
  }
  
  .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 {
    padding: 10px 15px;
    text-align: center;
  }
  
  .transparent .navbar .navbar-nav .nav-link {
    color: #FFF;
  }
  
  .opaque .navbar .navbar-nav .nav-link {
    color: #333;
  }
  
  .navbar .navbar-nav .nav-item:last-of-type .nav-link {
    padding-right: 0;
  }
  
  .navbar .navbar-nav .nav-link:hover,
  .navbar .navbar-nav .nav-item.show .nav-link {
    color: var(--byf-pop);
  }
  
  .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 {
    color: var(--byf-pop);
  }
  
  .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 {
    padding: 3px 0;
    top: -webkit-calc(100% + 5px);
    top: -moz-calc(100% + 5px);
    top: calc(100% + 5px);
  }
  
  .navbar-toggler i,
  .navbar-toggler i:active,
  .navbar-toggler i:focus,
  .navbar-toggler i:active:focus {
    color: var(--byf-base);
    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:not(:active):not(:focus) {
    color: #6699CC;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CAROUSEL SLIDER
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #slider-section {
    position: relative;
  }
  
  .slider-overlay {
    background: rgba(21, 21, 21, .5);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  
  
  #myCarousel {
    background: #000;
    overflow-x: hidden;
  }
  
  #myCarousel .carousel-indicators {
    z-index: 1;
  }
  
  #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: -10px;
  }
  
  #myCarousel img {
    width: 100%;
  }
  
  #myCarousel .carousel-indicators li:hover {
    cursor: pointer;
  }
  
  #myCarousel .carousel-caption {
    bottom: auto;
    left: 50%;
    max-width: 1000px;
    padding: 25px 30px 30px;
    text-align: center;
    top: 58%;
    width: 80%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .opaque + #slider-section #myCarousel .carousel-caption {
    top: 50%;
  }
  
  #myCarousel .carousel-caption h2 {
    color: #FFF;
    font-size: 50px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 3px rgba(0,0,0,.3);
  }
  
  #myCarousel .carousel-caption p {
    color: #FFF;
    font-family: var(--byf-font1);
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 50px;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  RESOURCE LINKS SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #resource-links {
    background: #EAEAEA;
    position: relative;
    z-index: 1;
  }
  
  #resource-links .row {
    margin: 0;
  }
  
  #resource-links [class*='col-'] {
    padding: 0;
  }
  
  #resource-links .resource-link {
    display: table;
    height: 100%;
    padding: 50px 30px;
    -webkit-transition: background .2s ease;
    -moz-transition: background .2s ease;
    -o-transition: background .2s ease;
    transition: background .2s ease;
  }
  
  #resource-links .resource-icon {
    display: table-cell;
    width: 40px;
  }
  
  #resource-links .resource-text {
    display: table-cell;
    vertical-align: top;
  }
  
  #resource-links h3,
  #resource-links p,
  #resource-links i {
    color: #555;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
  }
  
  #resource-links h3 {
    margin-bottom: 15px;
  }
  
  #resource-links i {
    font-size: 25px;
  }
  
  #resource-links .resource-link p:last-of-type {
    margin-bottom: 0;
  }
  
  #resource-links a:hover .resource-link {
    background: var(--byf-base);
  }
  
  #resource-links a:hover * {
    color: #FFF;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SERVICE BOX SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  
  #services {
    background: var(--byf-dark);
    overflow: hidden;
    padding: 50px 0;
  }
  
  #services h2 {
    color: #FFF;
    font-size: 25px;
    text-align: center;
  }
  
  #services .more {
    float: right;
  }
  
  #services .more > i {
    margin-left: 4px;
  }
  
  #services .service-box {
    height: 100%;
    margin: 20px 0 0;
  }
  
  #services .outer-img-holder {
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
  }
  
  #services .inner-img-holder {
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
  }
  
  #services .outer-img-holder .overlay {
    background: rgba(0,0,0,.05);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: background .3s ease;
    -moz-transition: background .3s ease;
    -o-transition: background .3s ease;
    transition: background .3s ease;
  }
  
  #services .service-box h3 {
    color: #FFF;
    font-size: 18px;
    margin: 15px 0 8px;
    font-weight: 400;
    -webkit-transition: color .3s ease;
    -moz-transition: color .3s ease;
    -o-transition: color .3s ease;
    transition: color .3s ease;
  }
  
  #services .service-box p {
    color: #BBB;
  }
  
  #services .service-box p:last-of-type {
    margin-bottom: 0;
  }
  
  #services .service-box a:hover .overlay {
    background: rgba(255,0,0,0);
  }
  
  #services .service-box a:hover .inner-img-holder {
    -webkit-transform: scale(1.08,1.08);
    -moz-transform: scale(1.08,1.08);
    -ms-transform: scale(1.08,1.08);
    -o-transform: scale(1.08,1.08);
    transform: scale(1.08,1.08);
  }
  
  #services .service-box a:hover h3 {
    color: var(--byf-pop);
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  INDEX COPY SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #index-section .index-bg {
    background: url("/site_images/main-img.webp") no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  
  #index-section .index-content {
    padding: 100px 80px;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  CALL TO ACTION SECTION
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #call-to-action {
    background: var(--byf-dark);
    overflow: hidden;
    padding: 50px 0;
  }
  
  #call-to-action h3 {
    color: #FFF;
    display: inline-block;
    font-size: 20px;
    margin: 0 20px 0 0;
    position: relative;
    top: 4px;
  }
  
  #call-to-action .btn-primary,
  #call-to-action .btn-primary:active,
  #call-to-action .btn-primary:focus {
    display: inline-block;
    font-family: var(--byf-font1);
    font-size: 16px;
    line-height: 1;
    margin: 0 0 0 20px;
    padding: 12px 30px 10px;
    text-transform: none;
    -webkit-box-shadow: 1px 3px 5px 0 rgba(0,0,0,.3);
    -moz-box-shadow: 1px 3px 5px 0 rgba(0,0,0,.3);
    box-shadow: 1px 3px 5px 0 rgba(0,0,0,.3);
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  FEATURED SERVICES V1 - ICONS
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #featured-services-1 {
    background-image: url("/site_images/services-bg.webp");
    background-position: 50% 0;
    background-repeat: no-repeat;
    padding: 45px 0 90px;
    position: relative;
  }
  
  #featured-services-1 .overlay {
    background: rgba(0,0,0,.75);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  
  #featured-services-1 h2 {
    color: #FFF;
    font-size: 25px;
    position: relative;
    text-align: center;
  }
  
  #featured-services-1 .service {
    display: table;
    padding: 50px 0 0;
  }
  
  #featured-services-1 .service-icon {
    display: table-cell;
    width: 90px;
  }
  
  #featured-services-1 .icon-holder {
    background: #CCC;
    border-radius: 50%;
    display: table-cell;
    height: 65px;
    text-align: center;
    vertical-align: middle;
    width: 65px;
    -webkit-transition: background .4s ease;
    -moz-transition: background .4s ease;
    -o-transition: background .4s ease;
    transition: background .4s ease;
  }
  
  #featured-services-1 .service-icon i {
    color: #333;
    font-size: 24px;
    line-height: 1;
    -webkit-transition: color .4s ease;
    -moz-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
  }
  
  #featured-services-1 .service-text {
    display: table-cell;
    vertical-align: middle;
  }
  
  #featured-services-1 .service-text h3 {
    color: #CCC;
    font-size: 17px;
    font-weight: 400;
    -webkit-transition: color .4s ease;
    -moz-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
  }
  
  #featured-services-1 .service-text p {
    color: #CCC;
    font-size: 14px;
    margin: 0;
    -webkit-transition: color .4s ease;
    -moz-transition: color .4s ease;
    -o-transition: color .4s ease;
    transition: color .4s ease;
  }
  
  #featured-services-1 a:hover .icon-holder {
    background: #FFF;
  }
  
  #featured-services-1 a:hover .service-icon i {
    color: var(--byf-base);
  }
  
  #featured-services-1 a:hover h3,
  #featured-services-1 a:hover p {
    color: #FFF;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  FEATURED SERVICES V2 - TABS
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #featured-services-2 {
    background: #F8F8F8;
  }
  
  #featured-services-2 .nav-item {
    width: 100%;
  }
  
  #featured-services-2 h4 {
    color: var(--byf-base);
    font-family: var(--byf-font2);
    font-size: 14px;
    margin: 0 0 30px;
  }
  
  #featured-services-2 .nav-tabs {
    border: 0;
  }
  
  #featured-services-2 .nav-tabs .nav-item .nav-link {
    border-radius: 0;
    border-top: 1px solid #EAEAEA;
    color: #333;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
  }
  
  #featured-services-2 .nav-tabs .nav-item:last-of-type .nav-link {
    border-bottom: 1px solid #EAEAEA;
  }
  
  #featured-services-2 .nav-tabs .nav-item .nav-link.active {
    background: var(--byf-base);
    border-top: 1px solid transparent;
    color: #FFF;
  }
  
  #featured-services-2 .nav-item a::before {
    content: '\f0da';
    font-family: 'Font Awesome\ 5 Free';
    font-size: 14px;
    font-weight: 900;
    margin-right: 10px;
  }
  
  #featured-services-2 .text-column {
    padding-left: 0;
    padding-right: 0;
  }
  
  #featured-services-2 .tab-column {
    padding: 50px 0;
  }
  
  #featured-services-2 .nav-tabs .nav-link {
    border: 0;
    margin-bottom: 1px;
  }
  
  #featured-services-2 .tab-content {
    height: 100%;
  }
  
  #featured-services-2 .tab-text {
    background: rgba(255, 255, 255, .85);
    bottom: 0;
    padding: 60px 30px;
    position: absolute;
    width: 400px;
  }
  
  #featured-services-2 .tab-text h3 {
    margin-bottom: 10px;
  }
  
  #featured-services-2 .tab-text p:last-of-type {
    margin-bottom: 0;
  }
  
  #featured-services-2 .tab-pane {
    background-position: center center !important;
    position: relative;
    width: 100%;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
  }
  
  #featured-services-2 #service-1 {
    background-image: url("https://via.placeholder.com/1150x750")
  }
  
  #featured-services-2 #service-2 {
    background-image: url("https://via.placeholder.com/1150x750")
  }
  
  #featured-services-2 #service-3 {
    background-image: url("https://via.placeholder.com/1150x750")
  }
  
  #featured-services-2 #service-4 {
    background-image: url("https://via.placeholder.com/1150x750")
  }
  
  #featured-services-2 #service-5 {
    background-image: url("https://via.placeholder.com/1150x750")
  }
  
  #featured-services-2 #service-6 {
    background-image: url("https://via.placeholder.com/1150x750")
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  TESTIMONIALS
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #testimonials {
    background: var(--byf-dark);
    padding: 80px 0;
  }
  
  #testimonials h2 {
    color: #FFF;
    margin: 0 0 25px;
    text-align: center;
  }
  
  #testimonials h2 + p {
    color: #FFF;
    margin-bottom: 30px;
    text-align: center;
  }
  
  #testimonials .row > [class*='col-'] {
    margin-bottom: 30px;
  }
  
  #testimonials .testimonial {
    background: #EEE;
    border-radius: 2px;
    height: 100%;
    padding: 25px 25px 90px;
    position: relative;
    -webkit-box-shadow: 1px 1px 3px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 1px 1px 3px 2px rgba(0,0,0,.2);
    box-shadow: 1px 1px 3px 2px rgba(0,0,0,.2);
  }
  
  #testimonials .testimonial > p {
    font-size: 17px;
    font-style: italic;
  }
  
  #testimonials .reviewer {
    display: table;
    margin-top: 30px;
    position: absolute;
    bottom: 25px;
  }
  
  #testimonials .review-icon {
    display: table-cell;
    vertical-align: middle;
    width: 70px;
  }
  
  #testimonials .review-icon-holder {
    background: var(--byf-base);
    border-radius: 50%;
    display: table-cell;
    height: 45px;
    text-align: center;
    vertical-align: middle;
    width: 45px;
  }
  
  #testimonials .review-icon-holder i {
    color: #FFF;
    font-size: 18px;
    line-height: 1;
  }
  
  #testimonials .review-info {
    display: table-cell;
  }
  
  #testimonials .review-info p:first-of-type {
    font-size: 16px;
    font-weight: 600;
    margin: 4px 0 0;
  }
  
  #testimonials .review-info p:last-of-type {
    font-size: 13px;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  AFFILIATES
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #affiliates {
    background: #F8F8F8;
    border-top: 1px solid #E8E8E8;
    padding: 40px 0;
  }
  
  #affiliates .affiliates {
    margin: 0 -15px;
    text-align: center;
  }
  
  #affiliates .affiliates img {
    display: inline-block;
    margin: 20px 15px;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  INNER PAGES - CONTENT
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #inner-content {
    overflow: hidden;
  }
  
  #inner-copy {
    padding: 50px 30px 80px 15px;
  }
  
  #inner-copy p:last-of-type {
    margin-bottom: 0;
  }
  
  #inner-copy form p:last-of-type,
  #inner-copy #gmapwide p:last-of-type {
    margin-bottom: 10px;
  }
  
  #headline {
    background: var(--byf-base);
    padding: 0;
  }
  
  #headline > .container > h1 {
    color: #FFF;
    font-size: 30px;
    font-weight: 400;
    margin: 0;
    padding: 30px 0;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  INNER PAGES - SIDEBAR
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #sidebar {
    padding: 50px 15px 50px 30px;
  }
  
  #sidebar .sidebar-bg {
    background: #F8F8F8;
    border-left: 1px solid #E8E8E8;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    width: 100vw;
    z-index: -1;
  }
  
  #sidebar-consultation h3 {
    color: #555;
    font-size: 21px;
    margin-bottom: 0;
  }
  
  #sidebar-consultation h4 {
    color: var(--byf-base);
    font-size: 16px;
    margin: 0 0 25px;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SIDEBAR FORMS + FORM CONTROL
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  /* WebKit, Blink, Edge */
  #sidebar .form-control::-webkit-input-placeholder {
    color: #999;
    font-size: 12px;
    position: relative;
    top: -1px;
  }
  
  /* Mozilla Firefox 4 to 18 */
  #sidebar.form-control:-moz-placeholder {
    color: #999;
    font-size: 12px;
    position: relative;
    top: -1px;
  }
  
  /* Mozilla Firefox 19+ */
  #sidebar.form-control::-moz-placeholder {
    color: #999;
    font-size: 12px;
    position: relative;
    top: -1px;
  }
  
  /* Internet Explorer 10-11 */
  #sidebar.form-control:-ms-input-placeholder {
    color: #999;
    font-size: 12px;
    position: relative;
    top: -1px;
  }
  
  /* Microsoft Edge */
  #sidebar.form-control::-ms-input-placeholder {
    color: #999;
    font-size: 12px;
    position: relative;
    top: -1px;
  }
  
  .form-control {
    font-size: 14px;
  }
  
  .form-control:focus {
    border-color: #80BDFF;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(128, 189, 255, .6);
    -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(128, 189, 255, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(128, 189, 255, .6);
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  FOOTER
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #footer-top {
    background: #fff;
    font-size: 0;
    overflow: hidden;
    padding: 40px 0 55px;
  }
  
  #footer-top h2 {
    color: var(--byf-dark);
    font-size: 20px;
    margin: 20px 0 10px;
  }
  
  #footer-top p,
  #footer-bottom p {
    color: #2a2a2a;
  }
  
  #footer-top a,
  #footer-top a:active,
  #footer-top a:focus,
  #footer-bottom a,
  #footer-bottom a:active,
  #footer-bottom a:focus {
    color: #212121;
    display: inline-block;
  }
  
  #footer-top a,
  #footer-bottom a,
  #footer-top p,
  #footer-bottom p {
    font-size: 14px;
    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: 12px;
    color: #fff;
  }
  
  #footer-top a:hover,
  #footer-bottom a:hover {
    color: var(--byf-pop);
  }
  
  #footer-top i {
    color: #999;
    font-size: 12px;
    margin-right: 6px;
    width: 12px;
  }
  
  #footer-top .site-name {
    font-weight: 600;
  }
  
  #footer-social {
    font-size: 0;
  }
  
  #footer-social i {
    color: #DDD;
    background: var(--byf-base);
    font-size: 15px;
    height: 34px;
    padding: 8px 10px;
    text-align: center;
    width: 34px;
    -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-pop);
    color: #FFF;
  }
  
  #footer-bottom {
    background: var(--byf-dark);
    border-top: 1px solid #3A4348;
    overflow: hidden;
    padding: 35px 0;
  }
  
  #footer-bottom #copyright p:last-of-type,
  #footer-bottom #copyright p:last-of-type a {
    padding-bottom: 0;
  }
  
  #footer-bottom #copyright a:hover {
    color: #F7A718;
  }
  
  #footer-menu {
    font-size: 0;
    text-align: right;
  }
  
  #footer-menu a {
    padding: 0 0 5px 30px;
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  SCROLL TO TOP
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  #scroll-icon {
    position: fixed;
    bottom: 15px;
    opacity: 0;
    right: 20px;
    text-align: center;
    visibility: hidden;
    z-index: 99;
    -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, 0, 0, .35);
    border-radius: 2px;
    color: #FFF;
    cursor: pointer;
    font-size: 25px;
    padding: 10px 15px;
    -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: 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);
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  MISCELLANEOUS FIXES
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  * {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
  
  body, html {
    overflow-x: hidden;
  }
  
  body {
    height: 100%;
    position: relative;
    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 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-caption h2 {
      font-size: 40px;
      margin-bottom: 25px;
    }
  
    #myCarousel .carousel-caption p {
      display: none;
    }
  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  991 MEDIA QUERY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  @media (max-width: 991px) {
  
    .transparent {
      position: static;
    }
  
    .transparent #header-logo {
      background: #000;
    }
  
    .transparent #toggle-open i {
      color: var(--byf-base);
    }
  
    #topbar {
      background: var(--byf-dark);
    }
  
    #topbar .container {
      width: -webkit-calc(100% - 30px);
      width: -moz-calc(100% - 30px);
      width: calc(100% - 30px);
    }
  
    #navbar-container {
      display: table;
      width: 100%;
    }
  
    .navbar-logo,
    .navbar-button {
      display: table-cell;
    }
  
    .navbar-button {
      width: 45px;
      right: -15px;
      position: relative;
      text-align: right;
    }
  
    .navbar .navbar-nav .nav-link,
    .navbar .dropdown-item {
      text-align: center;
    }
  
    .dropdown-menu {
      border: 0;
      margin-top: 0;
      padding-top: 0;
    }
  
    #myCarousel .carousel-caption {
      top: 50%;
    }
  
    #index-section .index-content {
      padding: 80px 15px;
    }
  
    #call-to-action h3 {
      display: block;
    }
  
    #call-to-action .btn-primary,
    #call-to-action .btn-primary:active,
    #call-to-action .btn-primary:focus {
      margin-top: 30px;
    }
  
    .newsletter_form label {
      margin-bottom: 4px;
      text-align: left !important;
    }
  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  767 MEDIA QUERY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  @media (max-width: 767px) {
  
    #topbar *,
    #topbar::before,
    #topbar::after {
      box-sizing: border-box;
    }
  
    #topbar .row {
      margin: 0;
    }
  
    #overlay-menu-links {
      margin-top: 0;
    }
  
    .navbar .navbar-nav .nav-item:last-of-type .nav-link {
      padding-right: 15px;
    }
  
    #myCarousel .carousel-caption h2 {
      font-size: 30px;
    }
  
    #myCarousel .carousel-indicators {
      display: none;
    }
  
    #resource-links .row {
      margin: 0 -15px;
    }
  
    #resource-links .resource-link {
      padding: 30px 15px;
      width: 100%;
    }
  
    #featured-services-1 {
      background-position: 50% 50% !important;
      background-size: cover;
    }
  
    #featured-services-2 .tab-column {
      padding: 50px 15px 0 !important;
    }
  
    #featured-services-2 .tab-text {
      position: static;
      width: 50%;
    }
  
    #index-section .index-content {
      padding: 60px 15px;
    }
  
    #call-to-action {
      padding: 50px 0;
    }
  
    #testimonials .testimonial {
      padding: 25px;
    }
  
    #testimonials .reviewer {
      position: static;
    }
  
    #inner-copy {
      padding: 50px 15px;
    }
  
    #footer-menu {
      margin-bottom: 12px;
    }
  
    #footer-menu {
      text-align: left;
    }
  
    #footer-menu a {
      padding: 0 30px 5px 0;
    }
  
    #scroll-icon {
      display: none;
    }
  
    .consultation_form .col-xs-12.col-sm-4.text-center {
      width: 100%;
    }
  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  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;
    }
  
    #topbar .row {
      margin: 0 -15px;
    }
  
    #topbar #topbar-right {
      text-align: center;
      width: 100%;
    }
  
    #topbar #topbar-right .item {
      margin: 0 10px !important;
      width: 100%;
    }
  
    #topbar #topbar-right .item a {
      color: #FFF;
      width: 100%;
    }
  
    #topbar #topbar-right .item a:hover {
      -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);
    }
  
    #myCarousel .carousel-caption {
      width: -webkit-calc(100% - 30px);
      width: -moz-calc(100% - 30px);
      width: calc(100% - 30px);
    }
  
    #myCarousel .carousel-caption h2 {
      font-size: 20px;
      margin-bottom: 15px;
    }
  
    #myCarousel .btn-primary {
      padding: 5px 20px;
    }
  
    #overlay-menu-links {
      margin-top: -15px;
    }
  
    #overlay-menu-links a,
    #overlay-menu-links a:active,
    #overlay-menu-links a:focus,
    #overlay-menu-links a:active:focus  {
      font-size: 24px;
    }
  
    #overlay-menu-links .dropdown-menu a,
    #overlay-menu-links .dropdown-menu a:active,
    #overlay-menu-links .dropdown-menu a:focus,
    #overlay-menu-links .dropdowm-menu a:active:focus {
      font-size: 20px;
    }
  
    #toggle-close i {
      top: 20px !important;
    }
  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  480 MEDIA QUERY
  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  
  @media (max-width: 480px) {
  
    #overlay-menu-links {
      margin-top: -30px;
    }
  
    #featured-services-2 .tab-text {
      width: 100%;
    }
  
    #affiliates .affiliates {
      text-align: center;
    }
  
    #headline h1 {
      text-align: center;
    }
  
    #inner-copy img:not(#captcha) {
      display: block;
      float: none !important;
      margin: 0 auto 20px !important;
    }
  
  }
  
  /* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  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: 1140px;
    }
  }
  
  /* = = = = = = = = = = MAIN420.CSS = = = = = = = = = = */