/*
Theme Name: The Branding Iron Custom Theme
Author: Lillyan Hendershot & Timothy Hendershot
Description: A custom theme for your site by The Branding Iron.
Version: 1.0
Author URI: http://thebrandingiron.us/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
html {
    display: block!important;
}

img, iframe {
    max-width: 100%;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 18px;
    padding: 0;
    margin: 0;
}

input:focus,textarea,select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
    background-color: white;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #716658;
    border: 1px solid white;
}

/*Gallery*/
.bi_gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

.bi_gallery .image-wrapper {
    border-radius: 8px;
    margin: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bi_gallery .image-wrapper .image {
    transition: all 0.5s;
}

.bi_gallery .image-wrapper:hover .image {
    opacity: 0.9;
    transform: scale3D(1.1,1.1,1.1);
}

blockquote {
    border: none;
    quotes: "\201C""\201D""\2018""\2019";
    margin: 0;
}

blockquote *:first-child:before {
    content: open-quote;
    display: inline-block;
    vertical-align: bottom;
    font-size: 40px;
    line-height: 8px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-weight: bold;
    margin-right: 4px;
}

blockquote *:last-child:after {
    content: close-quote;
    display: inline-block;
    vertical-align: bottom;
    font-size: 40px;
    line-height: 8px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-weight: bold;
    margin-left: 4px;
}

img {
    height: auto;
}

button:active, button:focus {
    border: inherit;
    outline: inherit;
}

a, a:visited, a:hover, a:active, a:focus {
    color: inherit;
    text-decoration: none;
}

.wp-caption {
    width: 100%;
}

.wp-caption-text {
    font-size: 16px;
    margin: 0;
    padding: 8px;
    text-align: left;
    font-weight: bold;
}

.aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-bottom: 16px;
}

.alignleft {
    float: left;
    display: block;
    margin-right: 16px;
    margin-bottom: 16px;
}

.alignright {
    float: right;
    display: block;
    margin-left: 16px;
    margin-bottom: 16px;
}

@media all and (max-width: 600px) {
    .aligncenter, .alignleft, .alignright {
        float: none;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/*Gallery*/
[id^=gallery].gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

[id^=gallery].gallery .gallery-item {
    margin: 16px;
    text-align: center;
    flex-basis: 300px;
}

[id^=gallery].gallery .gallery-item .object-fit {
    width: 284px;
    height: 284px;
    padding: 2px;
}

[id^=gallery].gallery br {
    display: none;
}

/*Object Fit*/
.object-fit {
    object-fit: cover;
    object-position: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: top;
}

.object-fit.contain {
    object-fit: contain;
    margin: 0 auto;
    background-size: contain;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}

.object-fit.left-top {
    object-position: left top;
    background-position: left top;
}

.object-fit.center-top {
    object-position: center top;
    background-position: center top;
}

.object-fit.right-top {
    object-position: right top;
    background-position: right top;
}

.object-fit.left-center {
    object-position: left center;
    background-position: left center;
}

.object-fit.center-center {
    object-position: center center;
    background-position: center center;
}

.object-fit.right-center {
    object-position: right center;
    background-position: right center;
}

.object-fit.left-bottom {
    object-position: left bottom;
    background-position: left bottom;
}

.object-fit.center-bottom {
    object-position: center bottom;
    background-position: center bottom;
}

.object-fit.right-bottom {
    object-position: right bottom;
    background-position: right bottom;
}

.fa-phone {
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

/*Transitions*/
.fade_in {
    -webkit-animation: fade_in 0.25s 1;
    -moz-animation: fade_in 0.25s 1;
    -o-animation: fade_in 0.25s 1;
    animation: fade_in 0.25s 1;
    opacity: 1
}

@keyframes fade_in {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

/********
* Theme
*********/
body {
    font-size: 18px;
    color: #58585A;
    background-color: white;
}

ul li {
    margin-bottom: 0.5em;
    padding-left: 0.5em;
}

/*fonts*/
@font-face {
    font-family: "moon";
    src: url("fonts/moon.ttf");
    font-weight: normal;
}

/*Header*/
#header-wrapper {
    font-family: "moon";
    font-size: 2.25em;
    color: white;
}

#header .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#header .logo {
    padding: 16px;
}

#header .head_menu {
    flex-basis: 100%;
}

#header .ripped-border {
    background-color: white;
}

#header-home {
    display: block;
    padding: 16px;
}

#header-home>.container {
    text-align: center;
}

#header-home .logo {
    display: block;
    margin: auto;
}

/*Head Menu*/
.head_menu {
    text-transform: uppercase;
}

.head_menu .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

.head_menu .menu>li {
    margin: 0px;
    position: relative;
    display: inline-block;
    padding: 0px;
}

.head_menu .menu>li.menu-item-has-children:after {
    content: "\f078";
    font-family: "Font Awesome\ 5 Free";
    font-weight: bold;
    position: absolute;
    z-index: 6;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    font-size: 0.6em;
    text-shadow: 0px 0px 5px #716658;
}

#header-fixed .head_menu .menu>li.menu-item-has-children:after {
    display: none;
}

.head_menu .menu>li>a {
    display: block;
    padding: 4px 8px;
    cursor: pointer;
}

.head_menu .sub-menu {
    position: absolute;
    top: 100%;
    padding: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    min-width: 100%;
    width: 250px;
    text-align: center;
    list-style: none;
    margin-top: -2px;
    color: white;
    z-index: 10;
    background-image: url('images/tile.png');
}

.head_menu .sub-menu>li {
    margin: 0;
    padding: 0;
}

.head_menu .sub-menu>li>a {
    display: block;
    padding: 8px 16px;
}

.head_menu .menu>li>a:hover, .head_menu .menu>li.current-menu-item>a, .head_menu .menu>li.current-menu-parent>a {
    color: #F8EEDC;
}

.head_menu .sub-menu>li>a:hover, .head_menu .sub-menu>li.current-menu-item>a, .head_menu .sub-menu>li.current-menu-parent>a {
    color: black;
    background-color: white;
}

.head_menu .menu>li:hover .sub-menu {
    display: block;
}

/*Header Fixed*/
#header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: white;
    display: none;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 4px 16px;
}

#header-fixed.show {
    display: flex;
}

/*Mobile Header*/
#header-mobile {
    display: none;
}

#header-mobile .logo {
    height: 50px;
    width: auto;
}

#header-mobile>.text {
    position: fixed;
    left: 0;
    right: 0;
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 2px solid #f8f0dc;
}

#header-mobile .left {
    padding: 4px 8px;
}

#header-mobile .right {
}

.head_menu_mobile .button .fa {
    padding: 8px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.head_menu_mobile .button .fa-times {
    display: none;
}

.head_menu_mobile .button .fa-bars {
    display: block;
}

.head_menu_mobile .button.open .fa-times {
    display: block;
}

.head_menu_mobile .button.open .fa-bars {
    display: none;
}

.head_menu_mobile .content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: white;
    max-height: calc(100vh - 100px);
    overflow: auto;
    border-top: 1px solid #58585A;
    border-bottom: 1px solid #58585A;
}

.head_menu_mobile .fa {
    margin-right: 0.5em;
}

.head_menu_mobile .menu {
    list-style: none;
    padding: 0;
    font-weight: bold;
    margin: 0;
}

.head_menu_mobile .menu>li {
    margin: 0;
    padding: 0;
}

.head_menu_mobile .menu>li>a {
    padding: 8px;
    display: block;
    cursor: pointer;
    font-weight: normal;
}

.head_menu_mobile .sub-menu {
    display: none;
    list-style: none;
    padding: 0;
}

.head_menu_mobile .sub-menu>li {
    margin: 0;
    padding: 0;
}

.head_menu_mobile .sub-menu>li>a {
    padding: 8px 28px;
    display: block;
    font-weight: normal;
}

.head_menu_mobile a:hover, .head_menu_mobile .current-menu-item>a, .head_menu_mobile .current-menu-parent>a {
    color: #f6efe8;
}

/*Slider*/
#home-slider {
    position: relative;
    padding: 0;
}

#home-slider .text-container {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.7);
    max-width: 50%;
    text-align: right;
}

#home-slider .text-container>.wrapper {
    white-space: nowrap;
}

#home-slider .text-wrapper {
    width: 500px;
    max-width: 100%;
    display: none;
    margin: auto 0 auto auto;
    padding: 16px 32px 0px 32px;
    white-space: normal;
    vertical-align: top;
}

@media all and (max-width: 768px) {
    #home-slider .text-container {
        max-width:100%;
        text-align: center;
    }

    #home-slider .text-wrapper {
        width: auto;
        height: auto!important;
    }
}

#home-slider .text-wrapper.current {
    display: inline-block;
    text-align: center;
}

#home-slider .text {
    text-align: justify;
    font-weight: bold;
    line-height: 2em;
}

#home-slider .text ul {
    text-align: left;
}

#home-slider h2 {
    text-align: center;
    display: inline-block;
    margin: 40px auto auto auto;
    font-weight: normal;
}

#home-slider .background-container {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
}

#home-slider .background-wrapper {
    height: 100%;
    position: relative;
    vertical-align: middle;
    width: 0%;
    display: inline-block;
}

#home-slider .background-wrapper.current {
    width: 100%;
}

#home-slider .background-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

#home-slider .button-container {
    padding: 0px 16px 50px 16px;
    text-align: center;
    display: inline-block;
    max-width: 100%;
    width: 500px;
}

#home-slider .button-container .slide-button {
    border: 1px solid #726659;
    display: inline-block;
    margin: 16px;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    line-height: 0px;
}

#home-slider .button-container .slide-button.current {
    background-color: white;
}

#home-slider .background-wrapper.show {
    animation: home-slide-in 1s 1;
}

#home-slider .background-wrapper.hide {
    animation: home-slide-out 1s 1;
}

#home-slider .text-wrapper.show {
    animation: transition-in 1s 1;
}

#home-slider .text-wrapper.hide {
    animation: transition-out 1s 1;
}

@keyframes home-slide-in {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes home-slide-out {
    0% {
        width: 100%;
        display: inline-block;
    }

    100% {
        width: 0%;
        display: none;
    }
}

/*Classes*/
.sage-brush {
    border-image-source: url('images/sage-brush.png');
}

.paper-background {
    background-image: url('images/tile.png');
}

.ripped-border:after {
    border-image-source: url('images/BrownFadePaperRipFINAL.png');
}

.ripped-border {
    position: relative;
    padding: 0px;
    margin: 0px;
}

.ripped-border:after {
    content: "";
    border-image-slice: 150 0 150 0;
    border-image-repeat: repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    width: 100%;
    height: auto;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    border-style: solid;
}

.sage-brush {
    border-image-slice: 700 0 700 0;
    border-image-repeat: round;
    border-top-width: calc(70px + 4vw);
    border-bottom-width: calc(70px + 4vw);
    border-left-width: 0px;
    border-right-width: 0px;
    border-style: solid;
    color: black;
    min-width: 250px;
    max-width: 100%;
    font-family: moon;
    font-size: 40px;
    line-height: 40px;
}

@media all and (max-width: 400px) {
    .sage-brush {
        /*min-width:auto;*/
    }
}

.ripped-border-top {
    margin-top: 16px;
    padding-top: 50px;
}

.ripped-border-top:after {
    top: -46px;
    border-top-width: 100px;
    z-index: 5;
}

.ripped-border-bottom {
    margin-bottom: 16px;
    padding-bottom: 50px;
}

.ripped-border-bottom:after {
    bottom: -46px;
    border-bottom-width: 100px;
}

.bi-service-numbers {
    color: #F8EEDC;
    display: inline-block;
    vertical-align: middle;
    padding: 16px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 18px;
}

.bi-service-numbers .service {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bi-service-numbers .name {
    padding: 4px;
    display: block;
}

.bi-service-numbers .number {
    padding: 4px;
    display: block;
	font-weight:bold;
}

/*Services*/
#bi-services {
    position: relative;
    z-index: 10;
    margin-top: -5px;
}

#bi-services .controls {
    display: flex;
    background-color: #F9FAFA;
    align-items: center;
    position: relative;
}

#bi-services .controls:after {
    content: '';
    width: 0px;
    height: 0px;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid white;
    position: absolute;
    top: 100%;
    z-index: 1;
    left: 0;
    right: 0;
    margin: auto;
}

#bi-services .controls .navigation {
    padding: 16px;
    font-size: 30px;
    cursor: pointer;
    color: #D3D3D3;
}

#bi-services .controls .buttons {
    display: block;
    white-space: nowrap;
    flex-grow: 1;
    text-align: center;
    margin: 0;
    overflow: hidden;
    position: relative;
}

#bi-services .controls .buttons:before {
    content: '';
    border-left: 3px solid #D3D3D3;
    margin: 8px 0px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: auto;
    z-index: 1;
}

#bi-services .controls .buttons:after {
    content: '';
    border-left: 3px solid #D3D3D3;
    margin: 8px 0px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: auto;
    z-index: 1;
}

#bi-services .controls .buttons .button {
    cursor: pointer;
    color: black;
    display: inline-block;
    vertical-align: middle;
    padding: 8px;
    width: 33.33%;
    overflow: hidden;
}

#bi-services .controls .buttons .button.current {
    background-color: white;
    position: relative;
}

#bi-services .controls .buttons .button svg {
    max-width: 100%;
    width: auto;
    height: 75px;
}

#bi-services .controls .buttons .button svg path {
    fill: black;
}

#bi-services .controls .buttons .button.current, #bi-services .controls .buttons .button:hover {
    color: #726659;
}

#bi-services .controls .buttons .button.current svg path, #bi-services .controls .buttons .button:hover svg path {
    fill: #726659;
}

#bi-services .slider {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

#bi-services .slider .slide .image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

#bi-services .slider .slide .section {
    position: relative;
}

#bi-services .slider .slide .section-1 {
    flex-basis: 50%;
}

#bi-services .slider .slide .section-2 {
    flex-basis: 25%;
    min-width: 300px;
    max-width: 100%;
    flex-grow: 1;
}

#bi-services .slider .slide .section-3 {
    flex-basis: 25%;
    flex-grow: 1;
}

@media all and (max-width: 1280px) {
    #bi-services .slider .slide .section-1 {
        display:none;
    }
}

@media all and (max-width: 768px) {
    #bi-services .slider .slide .section-3 {
        display:none;
    }
}

#bi-services .slider .slide .service-list {
    background-color: #605C5A;
    text-transform: uppercase;
    height: 100%;
    white-space: normal;
}

#bi-services .slider .slide .service-list .service-title {
    background-color: #313338;
    color: #F8EEDC;
    padding: 16px;
}

#bi-services .slider .slide .service-list ul {
    color: white;
    margin: 0px;
    padding: 16px 16px 16px 32px;
}

#bi-services .slider .slide .service-list ul li {
}

#bi-services .slider .slide {
    vertical-align: middle;
    width: 100%;
    opacity: 0;
    display: none;
    min-height: 320px;
}

#bi-services .slider .slide.current {
    opacity: 1;
    display: inline-flex;
}

#bi-services .slider .slide.show {
    animation: show-services 1s 1;
}

#bi-services .slider .slide.hide {
    animation: hide-services 1s 1;
    display: inline-flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/*Layouts*/
#content-wrapper {
    background-color: white;
}

h1 {
    font-family: moon;
    font-size: 4em;
    font-weight: normal;
}

h2 {
    font-family: moon;
    font-size: 3em;
    font-weight: normal;
}

.bi_hero {
    text-align: center;
}

.bi_hero .title {
    display: inline-block;
    margin: 0px;
}


.bi_layout {
}

.bi_layout.content_block {
    padding: 16px;
}

.bi_layout.portfolio {
}

.bi_layout.portfolio .blocks {
    display: flex;
    flex-wrap: wrap;
    background-color: #E8E2DA;
    align-items: stretch;
    padding: 2px;
}

.bi_layout.portfolio .block {
    flex-grow: 1;
    flex-basis: 500px;
    position: relative;
    flex-wrap: wrap;
    display: flex;
}

.bi_layout.portfolio .block .text {
    order: 1;
    padding: 16px;
    background-color: #F6EFE8;
    margin: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bi_layout.portfolio .block .text>div {
    padding: 16px;
}

.bi_layout.portfolio .block .text>div>*:first-child {
    margin-top: 0px;
}

.bi_layout.portfolio .block .text>div>*:last-child {
    margin-bottom: 0px;
}

.bi_layout.portfolio .block .image {
    order: 1;
    padding: 2px;
    height: 250px;
}

.bi_layout.portfolio .block.swap {
    flex-wrap: wrap-reverse;
}

.bi_layout.portfolio .block.swap .text {
    order: 0;
}

.bi_layout.portfolio .block.small {
    display: flex;
    align-items: stretch;
}

.bi_layout.portfolio .block.small .text {
    flex-grow: 1;
    flex-basis: 250px;
}

.bi_layout.portfolio .block.small .image {
    flex-grow: 1;
    width: 250px;
    display: block;
    min-height: 100%;
}

.bi_layout.portfolio .block.medium {
    flex-direction: column;
}

.bi_layout.portfolio .block.medium .text {
    flex-grow: 1;
}

.bi_layout.portfolio .block.medium .image {
    width: 100%;
    flex-grow: 100;
}

.bi_layout.portfolio .block.large {
}

.bi_layout.portfolio .block.large .image {
    height: 500px;
    width: 100%;
}

.bi_layout.portfolio .block.large .text {
    flex-grow: 1;
}

.bi_layout.split_content .container {
    display: flex;
    flex-wrap: wrap;
}

.bi_layout.split_content .container .block {
    flex-basis: 400px;
    flex-grow: 1;
    padding: 16px;
}

.bi_layout.split_content .container .block:after {
    content: '';
    display: block;
    clear: both;
}

.bi_layout.contact_block {
}

.bi_layout.contact_block .container {
    display: flex;
    flex-wrap: wrap;
    background-color: #e8e2da;
    padding: 2px 4px;
}

.bi_layout.contact_block .block {
    flex-grow: 1;
    display: flex;
    flex-basis: 300px;
    margin: 2px 0px;
    position: relative;
    min-height: 300px;
}

.bi_layout.contact_block .top {
    background-color: #AADAFF;
}

.bi_layout.contact_block .bottom {
    color: #58585A;
    background-color: #f6efe8;
}

.bi_layout.contact_block iframe {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.bi_layout.contact_block .fw {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.bi_layout.contact_block .flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bi_layout.contact_block .flex>div {
    padding: 16px;
}

.bi_layout.contact_block .flex>div>*:first-child {
    margin-top: 0px;
}

.bi_layout.contact_block .flex>div>*:last-child {
    margin-bottom: 0px;
}

.bi_layout.contact_block h2 {
    font-family: inherit;
    font-size: 1.5em;
    font-weight: normal;
}

.bi_layout.contact_block h3 {
    font-family: inherit;
    font-weight: normal;
}

.bi_layout.page_title {
    padding: 16px;
}

.bi_layout.quote {
}

.bi_layout.quote .container {
    position: relative;
}

.bi_layout.quote .image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bi_layout.quote .text {
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    z-index: 2;
    padding: 8px;
    font-size: calc(16px + 1.5vw);
    color: white;
}

.bi_layout.quote .quote {
    font-size: 1.5em;
    display: block;
    text-align: right;
}

.bi_layout.quote .attribution {
    text-align: right;
    display: block;
}

.bi_layout.people {
}

.bi_layout.people .blocks {
    background-color: #E8E2DA;
    padding: 2px;
}

.bi_layout.people .block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.bi_layout.people .block:nth-of-type(even) .text {
    background-color: #3B3E43;
}

.bi_layout.people .image-wrap {
    flex-basis: 350px;
    flex-grow: 1;
    text-align: center;
    align-self: center;
}

.bi_layout.people .image {
    width: 350px;
}

.bi_layout.people .text {
    padding: 16px;
    color: white;
    flex-basis: 600px;
    flex-grow: 999;
    background-color: #575451;
}

.bi_layout.people .text h2 {
    font-family: inherit;
    font-size: 1.5em;
    font-weight: bold;
}

.bi_layout.people .text>*:first-child {
    margin-top: 0;
}

.bi_layout.people .text>*:last-child {
    margin-bottom: 0;
}

/*Footer*/
#footer {
    background-color: #f8f0dc;
}

#footer .top {
    display: block;
    background-color: white;
    width: 100%;
    height: auto;
}

#footer .bottom {
    display: block;
    text-align: center;
}

#footer .bottom .address {
    padding: 16px;
    font-size: 14px;
}

#footer .bottom .copy {
    display: block;
    background-color: #f8f0dc;
    font-family: moon;
    text-align: center;
    padding: 16px;
    font-size: 20px;
    font-weight: normal;
}

#floating-footer {
    display: none;
}

#floating-footer .text {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: 20;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

#floating-footer i {
    margin-right: 0.5em;
}

#floating-footer .text {
    border-top: 2px solid #f8f0dc;
}

#floating-footer .text a {
    padding: 8px;
}

#footer-services {
    color: #f8f0dc;
    /* top: -16px; */
    margin: -16px 0px 16px 0px;
}

#footer-services h2 {
    margin: 0px;
    text-align: center;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 1.5em;
    padding: 24px 8px 0px 7px;
    text-transform: uppercase;
}

#footer-services ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    text-align: center;
}

#footer-services hr {
    border-color: #f8f0dc;
    width: 30px;
    margin: 10px auto;
}

#footer-services ul>li {
    list-style: none;
    display: inline-block;
}

#footer-services ul>li:not(:last-of-type):after {
    content: " |";
}

@media all and (max-width: 991px) {
    #header,#header-home, #header-fixed.show {
        display:none;
    }

    #header-mobile {
        display: block;
    }

    .bi_layout.portfolio .block.medium {
        flex-direction: row;
    }
}

@media all and (max-width: 768px) {
    .bi_layout.portfolio .block.small {
        display:block;
        text-align: center;
    }

    .bi_layout.portfolio .block.small .image {
        width: 100%;
    }

    .bi_layout.portfolio .block.large .image {
        height: 250px;
    }

    #floating-footer {
        display: block;
    }
}
