/*
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: #CE603A;
    border: 1px solid white;
}

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: 33px;
    margin: 0;
    font-family: moon;
    padding: 8px;
}

.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;
    }
}

/*transitions*/
.bi_fade_in {
    -webkit-animation: fade_in .5s 1;
    /* Safari 4+ */
    -moz-animation: fade_in .5s 1;
    /* Fx 5+ */
    -o-animation: fade_in .5s 1;
    /* Opera 12+ */
    animation: fade_in .5s 1;
    /* IE 10+, Fx 29+ */
    opacity: 1;
}

.bi_fade_out {
    -webkit-animation: fade_out .5s 1;
    /* Safari 4+ */
    -moz-animation: fade_out .5s 1;
    /* Fx 5+ */
    -o-animation: fade_out .5s 1;
    /* Opera 12+ */
    animation: fade_out .5s 1;
    /* IE 10+, Fx 29+ */
    opacity: 1;
}

@keyframes fade_in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade_out {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/*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;
}

i {
    margin-right: 0.5em;
}

.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);
}

/********
* Theme
*********/
body {
    font-size: 16px;
    color: #40342c;
    background-color: #40342C;
}

#content-wrapper {
}

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

/*Header*/
#header {
    display: block;
    background-color: #40342c;
    color: white;
}

#header>.text {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #2c2f5a;
    z-index: 100;
}

#header .container.top {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 16px;
}

#header .left {
    padding: 16px;
    margin-right: 40px;
}

#header .left .logo {
    width: 300px;
    height: auto;
}

#header .center {
    padding: 16px;
}

#header .right {
    padding: 16px;
    text-align: center;
}

#header .right>a {
    font-size: 19px;
}

#header .bi_book_appointment a {
    border: 2px solid white;
    border-radius: 10px;
    padding: 4px 8px;
    display: block;
    margin: 16px 0px;
}

#header .container.bottom {
    background-color: white;
    color: #40342c;
    max-width: 100%;
    text-align: center;
}

#head-menu {
    text-transform: uppercase;
    font-weight: bold;
}

#head-menu .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

#head-menu .menu>li>a {
    display: block;
    padding: 4px;
    cursor: pointer;
    border-bottom: 4px solid transparent;
    margin-bottom: -4px;
    position: relative;
    z-index: 5;
}

#head-menu .fa {
    margin-right: 0.5em;
}

#head-menu .menu>li.phone>a {
    border-color: white!important
}

#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;
    background-color: #40342c;
    list-style: none;
    margin-top: 0px;
    border-top: 4px solid #CE603A;
    color: white;
    z-index: 10;
}

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

#head-menu .sub-menu>li>a {
    display: block;
    padding: 8px 16px;
    border: 2px solid transparent;
}

#head-menu .menu>li>a:hover, #head-menu .menu>li.current-menu-item>a, #head-menu .menu>li.current-menu-parent>a {
    border-bottom: 4px solid #CE603A;
    color: #CE603A;
}

#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: #CE603A;
}

#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: space-between;
    padding: 4px 16px;
}

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

#header-fixed .left {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-grow: 1;
}

#header-fixed .right {
    display: flex;
    flex-grow: 1;
    font-weight: bold;
}

#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;
    background-color: #40342c;
    border-bottom: 2px solid #CE603A;
}

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

#header-mobile .right {
}

#head-menu-mobile {
}

#head-menu-mobile .button {
}

#head-menu-mobile .button .fa {
    padding: 8px;
    font-size: 30px;
    color: #CE603A;
}

#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: 2px solid #CE603A;
    border-bottom: 2px solid #CE603A;
}

#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;
}

#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: #CE603A;
}

/*Hero*/
#hero-image {
    position: relative;
    padding: 16px;
}

#hero-image .image-flex-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}

#hero-image .container {
    position: relative;
    z-index: 2;
    color: white;
}

#hero-image h1 {
    text-transform: uppercase;
    margin: 0;
    padding: calc(16px + 7vw) 0px;
    font-size: calc(20px + 2.5vw);
}

#hero-image.no_image {
    background-color: #ce603a;
}

#hero-image.no_image h1 {
    padding: 16px;
}

#hero-image:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(64, 52, 44, 0.52);
}

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

@font-face {
    font-family: "cinzel";
    src: url('fonts/Cinzel-Bold.otf');
}

/*Classes*/
.image-flex-wrap {
    position: relative;
    max-width: 100%;
}

.image-flex-wrap .featured-image, .image-flex-wrap .image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.bi_contact_block {
    text-align: left;
}

.bi_contact_block>* {
    display: flex;
    margin: 16px;
}

.bi_contact_block .email-link {
    word-break: break-all;
}

.bi_contact_block i {
    margin-right: 2em
}

#content-wrapper h1 {
    text-transform: uppercase;
    color: #CE603A;
    font-family: "cinzel";
}

#content-wrapper h2 {
    text-transform: uppercase;
    color: #CE603A;
    font-family: "cinzel";
}

#content-wrapper h3 {
    text-transform: uppercase;
    color: #CE603A;
    font-family: "cinzel";
}

#content-wrapper a {
    color: #CE603A;
}

/*layouts*/
#bi_layouts {
}

#bi_layouts .link>a {
    text-transform: uppercase;
    color: #40342c;
    font-weight: bold;
    border: 2px solid #CE603A;
    border-radius: 10px;
    padding: 5px 16px;
    display: inline-block;
    transition: all 0.25s;
    background-color: white;
}

#bi_layouts .link>a:hover {
    background-color: #CE603A;
    color: white;
}

#bi_layouts .layout {
}

#bi_layouts .content_white {
    background-color: white;
    padding: 16px;
}

#bi_layouts .content_gray {
    background-color: #E4E3E1;
    padding: 16px;
}

#bi_layouts .content_orange {
    background-color: #CE603A;
    padding: 16px;
    color: white;
}

#bi_layouts .content_orange h1, #bi_layouts .content_orange h2, #bi_layouts .content_orange h3, #bi_layouts .content_orange a {
    color: white;
}

#bi_layouts .content_orange a {
    font-weight: bold;
}

#bi_layouts .front_page_hero {
    position: relative;
}

#bi_layouts .front_page_hero .container {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
}

#bi_layouts .front_page_hero .image-flex-wrap {
    height: 100vh;
    width: 100%;
    position: relative;
}

#bi_layouts .front_page_hero .image-flex-wrap:after {
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
}

#bi_layouts .front_page_hero .user-text {
    padding: 16px;
}

#bi_layouts .front_page_hero h2.line_1 {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: calc(16px + 2.5vw);
    text-shadow: 2px 2px 2px #40342c;
    color: white;
    text-align: center;
}

#bi_layouts .front_page_hero .line_2 {
    font-weight: bold;
    font-size: calc(16px + 0.5vw);
    text-shadow: 1px 1px 0px #40342c;
    color: white;
}

#bi_layouts .circle_top {
    background-color: white;
    padding: 16px;
}

#bi_layouts .circle_top .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

#bi_layouts .circle_top .block {
    flex-basis: 400px;
    flex-grow: 1;
    text-align: center;
    position: relative;
    margin: 16px 0px;
    max-width: 100%;
}

#bi_layouts .circle_top .container:before {
    content: '';
    height: 100%;
    width: 6px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -2px;
    z-index: 2;
    background: white;
}

#bi_layouts .circle_top .container:after {
    content: '';
    height: 100%;
    width: 6px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -2px;
    background: white;
    z-index: 1;
}

#bi_layouts .circle_top .block:before {
    content: '';
    height: 100%;
    width: 6px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -2px;
    background: linear-gradient(0deg, white 20%, #e4e3e1 20%,#e4e3e1 80%,white 80%);
}

#bi_layouts .circle_top .block:after {
    content: '';
    height: 100%;
    width: 6px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -2px;
    background: linear-gradient(0deg, white 20%, #e4e3e1 20%,#e4e3e1 80%,white 80%);
}

#bi_layouts .circle_top .image-flex-wrap {
    display: inline-block;
    width: 250px;
    height: 250px;
    border: 4px solid #CE603A;
    border-radius: 100%;
    background-color: #40342c;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

#bi_layouts .circle_top .user-text {
    width: 300px;
    margin: auto;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

#bi_layouts .circle_top .line_1 {
    color: #40342c;
}

#bi_layouts .circle_top .line_2 {
    text-align: left;
}

#bi_layouts .circle_top .link {
    text-align: center;
    display: block;
}

#bi_layouts .circle_left {
    background-color: #e4e3e1;
    padding: 16px;
}

#bi_layouts .circle_left .block {
    margin: 16px auto;
}

#bi_layouts .circle_left .block:after {
    content: '';
    clear: both;
    display: block;
}

#bi_layouts .circle_left .image-flex-wrap {
    display: inline-block;
    width: 250px;
    height: 250px;
    border: 4px solid #CE603A;
    border-radius: 100%;
    background-color: #40342c;
    position: relative;
    z-index: 2;
    overflow: hidden;
    float: left;
    margin: 0px 30px 30px 0px;
}

#bi_layouts .circle_left.square_left .image-flex-wrap {
    border-radius: 16px;
}

#bi_layouts .circle_left .line_1.has_divider:after {
    content: "| ";
}

#bi_layouts .circle_left .line_2 {
    color: #40342c;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 0.7em;
    font-weight: normal;
    font-style: italic;
}

#bi_layouts .circle_left hr {
    border: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #e4e3e1 20%, #C3C0BD 20%,#C3C0BD 80%,#e4e3e1 80%);
    clear: both;
    margin: 32px auto;
    display: block;
}

#bi_layouts .half_image.gray {
    background-color: #E4E3E1;
}

#bi_layouts .half_image.dark {
    background-color: #1C1618;
    color: white;
}

#bi_layouts .half_image.dark .link {
    display: block;
    margin: 8px 0px;
    text-align: left;
}

#bi_layouts .half_image.dark .link>a {
    color: white;
    background-color: transparent;
}

#bi_layouts .half_image .container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

#bi_layouts .half_image.image_1_right .container {
    flex-wrap: wrap-reverse;
}

#bi_layouts .half_image .container>* {
    flex-basis: 300px;
    align-items: stretch;
    flex-grow: 1;
}

#bi_layouts .half_image .image-flex-wrap {
    min-height: 400px;
    order: 0;
}

#bi_layouts .half_image .user-text {
    order: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#bi_layouts .half_image.image_1_right .image-flex-wrap {
    order: 2;
}

#bi_layouts .contact_info {
    background-color: #e4e3e1;
    color: #1c1618;
}

#bi_layouts .contact_info .container {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 16px 0px;
    align-items: stretch;
}

#bi_layouts .contact_info .container>* {
    flex-basis: 300px;
    flex-grow: 1;
    position: relative;
    padding: 0px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#bi_layouts .contact_info i {
    color: #ce603a;
}

#bi_layouts .contact_info .last_block {
    display: flex;
    align-items: center;
    justify-content: center;
}

#bi_layouts .contact_info a {
    color: #1c1618;
}

#bi_layouts .contact_info .container:before {
    content: '';
    height: 100%;
    width: 6px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -2px;
    z-index: 2;
    background: #e4e3e1;
}

#bi_layouts .contact_info .container:after {
    content: '';
    height: 100%;
    width: 6px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -2px;
    background: #e4e3e1;
    z-index: 1;
}

#bi_layouts .contact_info .container>*:before {
    content: '';
    height: 100%;
    width: 4px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: -2px;
    background: linear-gradient(0deg, #e4e3e1 20%, #c3c0bd 20%,#c3c0bd 80%,#e4e3e1 80%);
}

#bi_layouts .contact_info .container>*:after {
    content: '';
    height: 100%;
    width: 4px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -2px;
    background: linear-gradient(0deg, #e4e3e1 20%, #c3c0bd 20%,#c3c0bd 80%,#e4e3e1 80%);
}

#bi_layouts .blog_index {
    background-color: #E4E3E1;
}

#bi_layouts .blog_index .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 0px;
}

#bi_layouts .blog_index .block {
    flex-basis: 300px;
    flex-grow: 1;
    padding: 16px;
}

#bi_layouts .blog_index .date {
    font-size: smaller;
    color: #40342c;
}

#bi_layouts .blog_index .link {
    padding: 16px;
    text-align: center;
}

#bi_layouts .blog_index .image-flex-wrap {
    width: 300px;
    height: 300px;
    max-width: 100%;
    border: 3px solid #ce603a;
    background-color: #40342c;
    border-radius: 10px;
    margin: auto;
}

#bi_layouts .hero {
    background-color: #e4e3e1;
}

#bi_layouts .hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#bi_layouts .hero .container .user-text {
    flex-basis: 500px;
    flex-grow: 99;
    padding: 16px;
}

#bi_layouts .hero .container .user-text .line_1 {
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-size: 34px;
}

#bi_layouts .hero .container .user-text .line_2 {
    border-left: 2px solid #ce603a;
    display: block;
    padding-left: 16px;
}

#bi_layouts .hero .container .image-wrap {
    flex-basis: 500px;
    flex-grow: 1;
}

/*Footer*/
#footer {
    color: white;
    text-align: center;
    padding: 16px 0px
}

#footer .logo {
    width: 150px;
    height: auto;
}

#footer .block {
    display: inline-block;
    vertical-align: middle;
    padding: 16px;
}

#book_appointment_modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    padding: 16px;
    background-color: #40342c52;
    display: none;
    align-items: center;
}

#book_appointment_modal.open {
    display: flex;
}

#book_appointment_modal .modal_close.top {
    position: absolute;
    right: 4px;
    top: 8px;
    font-size: 18px;
    z-index: 1;
    cursor: poitner;
}

#book_appointment_modal>.container {
    background-color: white;
    border-radius: 16px;
    max-width: 800px;
    padding: 16px;
    color: #40342c;
    overflow: auto;
    text-align: left;
    position: relative;
    max-height: 100%;
}

#book_appointment_modal .footer {
    padding: 16px;
    text-align: right;
}

#book_appointment_modal .footer .modal_close {
    cursor: pointer;
    font-weight: bold;
    background-color: #40342c;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 10px;
    text-transform: uppercase;
    color: white;
}

#floating-footer {
    display: none;
}

#floating-footer .text {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #40342c;
    z-index: 200;
}

#floating-footer .text>* {
    flex-grow: 1;
    border: 1px solid #ce603a;
    padding: 10px;
    display: block;
    color: white;
}

/*Forms*/
#content-wrapper form.bi_form label, #footer form.bi_form label {
    display: none;
}

#content-wrapper form.bi_form textarea, #content-wrapper form.bi_form input, #footer form.bi_form textarea, #footer form.bi_form input {
    border-radius: 10px;
    padding: 8px 16px;
    border-width: 2px;
    border-style: solid;
    border-color: #40342c;
    display: block;
    color: #40342c;
    width: 100%;
}

#content-wrapper form.bi_form input[type='submit'], #footer form.bi_form input[type='submit'] {
    background-color: transparent;
    width: 100px;
    margin: auto;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

#footer form.bi_form textarea, #footer form.bi_form input {
    width: 100%;
}

#content-wrapper .content_orange form.bi_form textarea, #content-wrapper .content_orange form.bi_form input {
    border-color: white;
}

#content-wrapper .content_orange form.bi_form input[type='submit'] {
    color: white;
}

#content-wrapper form.bi_form ul {
    display: flex;
    flex-wrap: wrap;
}

#content-wrapper form.bi_form ul>li {
    flex-basis: 700px;
    flex-grow: 1;
}

#content-wrapper form.bi_form ul>li:last-child {
    flex-basis: 100%;
}

/*Client Results*/
#client_results {
    display: flex;
    align-items: stretch;
    max-width: 100%;
}

#client_results .controls {
    display: flex;
    align-items: center;
    color: #CE603A;
    font-size: 40px;
    justify-content: center;
}

#client_results .controls i {
    margin: 0;
    padding: 8px
}

#client_results .wrap {
    flex-grow: 1;
    white-space: normal;
}

#client_results .wrap>h2 {
    text-align: center;
    margin-top: 0px;
}

#client_results .slider {
    white-space: nowrap;
    overflow: hidden;
}

#client_results .slide {
    white-space: normal;
    width: 100%;
    display: inline-block;
    vertical-align: top;
    padding: 8px;
}

#client_results .bottom {
    color: #CE603A;
}

#client_results .amount {
    display: inline-block;
    vertical-align: middle;
}

#client_results .type {
    color: #40342c;
    display: inline-block;
    vertical-align: middle;
}

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

    #header-mobile,#floating-footer {
        display: block;
    }
}

@media all and (max-width: 768px) {
    #bi_layouts .circle_left .image-flex-wrap {
        float:none;
        margin: auto;
        display: block;
    }

    #bi_layouts .circle_top .user-text {
        width: 100%;
    }

    #bi_layouts .front_page_hero .image-flex-wrap {
        min-height: 300px;
    }

    #bi_layouts .half_image .image-flex-wrap {
        min-height: 300px;
        order: 0;
    }

    #bi_layouts .half_image .user-text {
        padding: 16px;
    }

    #client_results {
        flex-wrap: wrap;
    }

    #client_results .prev {
        order: 1
    }

    #client_results .next {
        order: 2
    }

    #client_results .controls {
        flex-grow: 1;
    }
}
