body{
    font-family: "Montserrat", sans-serif;
	font-size: 18px;
	color: #414040;
	background-color: #FFF;
	font-weight: 500;
	width: 100%;
	overflow-x: hidden;
}

/********************************************************************************
* Links
*********************************************************************************/
a{
	color: #f36e26;
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

a:hover, a:active, a:focus{
	color: #54b7ef;
	text-decoration: none;
}

.link-overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

/********************************************************************************
* Headings
*********************************************************************************/
h1, h2, h3, h4, h5, h6{
	color: #221f1f;
    font-family: "Montserrat",sans-serif;
    font-weight: 800;
    letter-spacing: 0.025em;
	text-transform: uppercase;
	line-height: 1;
}
h1{
	font-size: 44px;
}
h2{
	font-size: 36px;
}
h3{
	font-size: 30px;
}
h4{
	font-size: 24px;
}
h5{
	font-size: 20px;
}
h6{
	font-size: 18px;
}
.subtitle{
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	letter-spacing: .1em;
	display: block;
	text-transform: uppercase;
}
.lined-right{
	padding-right: 20px;
	border-right: 4px solid #f36e26;
}
.lined-left{
	padding-left: 20px;
	border-left: 4px solid #f36e26;
}
/********************************************************************************
* Miscellaneous Type Setting
*********************************************************************************/
.text-muted{
	color: #a8aaad !important;
}
p{
	margin-bottom: 30px;
}
hr{
	border: none;
	width: 100%;
	height: 2px;
	background-color: #d3d4d6;
	margin: 30px auto;
}
hr.hr-orange{
	width: 60px;
	height: 4px;
	background-color: #f36e26;
}
hr.hr-left{
	margin: 30px 0;
}

blockquote{
	display: block;
	background: #f1f3f6;
	background-color: rgb(241, 243, 246);
	padding: 25px 25px 25px 70px;
	margin: 0 0 20px;
	position: relative;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: normal;
	color: #221f1f;
	text-align: justify;
	border-left: 15px solid #f36e26;
	text-shadow: none;
}
blockquote::before{
	font-family: 'Font Awesome 5 Pro';
	content:"\f10d";
	font-size: 30px;
	font-weight: normal;
	color: #f36e26;
	position: absolute;
	left: 25px;
	top: 20px;
	text-shadow: none;
}

blockquote cite{
	line-height: 1;
	display: block;
	margin-top: 10px;
}
blockquote > :last-child{
	margin-bottom: 0;
}

.well{	
	border: none;
	border-radius: 0;
	box-shadow: none;
	background-color: rgba(255,255,255,.9);
	overflow: hidden;
}

.alignright{
	float: right;
	display: block;
	margin-left: 30px;
	margin-bottom: 30px;	
}
.alignleft{
	float: left;
	display: block;
	margin-right: 30px;
	margin-bottom: 30px;	
}
.aligncenter{
	display: block;
	margin: 30px auto;
}

.img-thumbnail, .thumbnail{
	border: none;
	padding: 0;
	border-radius: 0;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16),0px 2px 5px 0px rgba(0, 0, 0, 0.26);
	max-width: 100%;
}
.img-thumbnail.img-circle{
	border-radius: 50%;
	background-color: #000;
}
.thumbnail figcaption{
	background-color: #221F1F;
	color: #a8aaad;
	padding: 10px 25px;
	font-size: 12px;
	text-align: center;
}
/********************************************************************************
* Lists
*********************************************************************************/
ul.styled-list, .faq-list ul{
   list-style: none;
   margin: 15px 0 30px 0;
   padding: 0; 
   overflow:hidden;
}
ul.styled-list li, .faq-list ul li{
	border-bottom: 2px dotted #d3d4d6;
    display: block;
    list-style: none outside none;
    padding: 15px 0 15px 40px;
	margin: 0;
    position: relative;
}
ul.styled-list li:before, .faq-list ul li:before{
	font-family: 'Font Awesome 5 Pro';
	content:"\f138\00a0";
	color: #f36e26;
    display: block;
    font-size: 1.25em;
    left: 1px;
    position: absolute;
    top: 12px;
}
ul.styled-list li ul{
	padding-left: 20px;
}
ul.styled-list li ul li, .faq-list ul li ul li, ul.styled-list li:last-child{
	border-bottom: none;
}
ul.styled-list li ul li{
	padding: 5px 0 5px 30px;
}
ul.styled-list li ul li:before, .faq-list ul li ul li:before{
	content:"\f054";
	font-size: 1em;
	line-height: 1;
	top: 8px;
}

ol.styled-list {
    list-style-type: none;
    list-style-type: decimal !ie;
     
    margin: 30px 0;
    padding: 0;
     
    counter-reset: li-counter;
}
ol.styled-list > li{
	position: relative;
	margin-bottom: 30px;
	margin-left: 40px;
	border-left: 2px dotted #d3d4d6;
	padding: 0 0 0 20px;
}
ol.styled-list > li:before {
    position: absolute;
	top: 0;
	left: -40px;
	font-size: 1.5em;
	line-height: 1;
	text-align: center;
	color: #f36e26;
	font-weight: 800;
	content: counter(li-counter);
	counter-increment: li-counter;
}

ul li h1, ul li h2, ul li h3, ul li h4, ul li h5, ul li h6,
ol li h1, ol li h2, ol li h3, ol li h4, ol li h5, ol li h6{
	margin-top: 0;
}
.two-column-list {
    -moz-column-count: 2;
    -moz-column-gap: 30px;
    -webkit-column-count: 2;
    -webkit-column-gap: 30px;
     column-count: 2;
     column-gap: 30px;
}
.three-column-list {
    -moz-column-count: 3;
    -moz-column-gap: 30px;
    -webkit-column-count: 3;
    -webkit-column-gap: 30px;
     column-count: 3;
     column-gap: 30px;
}
.two-column-list li, .three-column-list li, .two-column-list.styled-list li, .three-column-list.styled-list li{
	display: inline-block;
	width: 100%;
}

.styled-list h1, .styled-list h2, .styled-list h3, .styled-list h4, .styled-list h5, .styled-list h6{
	margin-bottom: 8px;
    margin-top: 3px;	
}
.styled-list p{
	margin-bottom: 5px;	
}
.two-column-list.styled-list li, .three-column-list.styled-list li{
	border: none;
}

/********************************************************************************
* Background Library
*********************************************************************************/
.section-none, .section-white {
	background-color: #FFF;
}

.section-light {
	background-color: #f1f3f6;
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4, .section-light h5, .section-light h6{
	color: #221f1f;
}

.section-dark {
	background-color: #221f1f;
	color: #FFF;
  	text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16),0px 2px 5px rgba(0, 0, 0, 0.26),0px 2px 5px rgba(0, 0, 0, 0.69);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4, .section-dark h5, .section-dark h6,
.section-mid .section-dark h1, .section-mid .section-dark h2, .section-mid .section-dark h3, .section-mid .section-dark h4, .section-mid .section-dark h5, .section-mid .section-dark h6{
	color: #FFF;
}

.section-mid{
	background-color: #d3d4d6;
}
.section-mid h1, .section-mid h2, .section-mid h3, .section-mid h4, .section-mid h5, .section-mid h6{
	color: #221f1f;
}

.bg-polygons-light{
	background-image: url('../img/bg-polygons-light.jpg');
	background-repeat: repeat-x;
	background-position: top;
}
.bg-dots-left{
	background-image: url('../img/bg-dots-left.png');
	background-repeat: no-repeat;
	background-position: top left;
}
.bg-dots-right{
	background-image: url('../img/bg-dots-right.png');
	background-repeat: no-repeat;
	background-position: bottom right;
}
.bg-dots-both{
	background-image: url('../img/bg-dots-left.png'), url('../img/bg-dots-right.png');
	background-position: left top, right 0px top 1000px;
  	background-repeat: no-repeat, no-repeat;
}

.section-image-background{
	position: relative;
	background-size: cover;
	background-attachment: fixed;
}
.section-image-background-with_overlay::after {
    content: "";
	background-color: rgba(0,0,0,.62);
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
    width: 100%;
	height: 100%;
    z-index: 1;
}
.section-image-background-with_overlay .container{
	position: relative;
	z-index: 2;
}
/********************************************************************************
* Buttons
*********************************************************************************/
.btn, .navbar-primary .navbar-nav .nav-btn .nav-link, .vfb-submit, .vfbp-form .btn-primary,
.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type="submit"], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type="submit"]{
	color: #221f1f;
	background-color: #f36e26;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	border-radius: 0;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: .15em;
	border: none;
	padding: 20px 60px;
	text-shadow: none;
	font-weight: 700;
  	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16),0px 2px 5px 0px rgba(0, 0, 0, 0.26);
	
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.btn:hover, .btn:active, .btn:focus, .navbar-primary .navbar-nav .nav-btn .nav-link:hover, .navbar-primary .navbar-nav .nav-btn .nav-link:active, .navbar-primary .navbar-nav .nav-btn .nav-link:focus, .vfbp-form .btn-primary:hover, .vfbp-form .btn-primary:active, .vfbp-form .btn-primary:focus,
.gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type="submit"]:hover, .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input[type="submit"]:hover,
.gform_wrapper .gform_footer input.button:focus, .gform_wrapper .gform_footer input[type="submit"]:focus, .gform_wrapper .gform_page_footer input.button:focus, .gform_wrapper .gform_page_footer input[type="submit"]:focus,
.gform_wrapper .gform_footer input.button:active, .gform_wrapper .gform_footer input[type="submit"]:active, .gform_wrapper .gform_page_footer input.button:active, .gform_wrapper .gform_page_footer input[type="submit"]:active{
	color: #221f1f;
	background-color: #54b7ef;
}
.btn:active{
	position:relative;
	top: 1px;
}
.btn-small{
	font-size: 14px;	
}
.btn-large{
	font-size: 24px;
	padding: 25px 30px;
}
.btn-xlarge{
	font-size: 36px;
	padding: 40px 30px;
}
.btn-wide{
	width: 100%;	
}
.btn.icon-left .fas{
	position:absolute;
	height: 100%;
	padding: 15px 10px 0 20px;
	text-align:center;
	top: 0;
	left: 0;
	font-size: 18px;
}
.btn.icon-left{
	text-align:left;
	padding-left: 60px;
	position:relative;
}
.btn.icon-right .fas{
	position:absolute;
	height: 100%;
	padding: 15px 20px 0 10px;
	text-align:center;
	top: 0;
	right: 0;
	font-size: 18px;
}
.btn.icon-right{
	text-align:left;
	padding-right: 60px;
	position:relative;
}
.btn.icon-left:active .fas, .btn.icon-right:active .fas{
	position: absolute;
}
.btn-large.icon-left .fas, .btn-large.icon-right .fas{
	padding: 23px 20px;
	font-size: 24px;
}

.btn-blue{
	color: #FFF;
	background-color: #54b7ef;
}
.btn-blue:hover, .btn-blue:active, .btn-blue:focus{
	color: #FFF;
	background-color: #f36e26;
}

.btn-outline, .navbar-primary .navbar-nav .nav-btn .nav-link{
	background-color: transparent;
	border: 3px solid #f36e26;
	color: #f36e26;
	padding: 12px 27px;
	box-shadow: none;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:active, .navbar-primary .navbar-nav .nav-btn .nav-link:hover, .navbar-primary .navbar-nav .nav-btn .nav-link:active, .navbar-primary .navbar-nav .nav-btn .nav-link:focus{
	background-color: #f36e26;
	color: #221f1f;
}

.btn-text{
	display: inline-block;
	padding: 0 !important;
	background-color: transparent;
	box-shadow: none;
	border: none;
	color: #f36e26;
}
.btn-text:hover, .btn-text:active, .btn-text:focus{
	color: #54b7ef;
	background-color: transparent;
	border: none;
}

/********************************************************************************
* Header
*********************************************************************************/
header.header-wrapper{
	z-index: 1001;
  	box-shadow: none;
	background-color: transparent;
	max-width: 100%;
}
header.header-wrapper .header-logo { 
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 50px;
	width: 280px;
}
header.header-wrapper .header-logo img{
	width: 100%;
}
/********************************************************************************
* Top Navigation
*********************************************************************************/
.navbar-top{
	background-color: transparent;
	color: #a8aaad;
	margin-bottom: 0;
	min-height: 0;
	padding: 20px 0;
	font-size: 14px;
	line-height: 1;
	letter-spacing: .05em;
	font-weight: 600;
	border-bottom: 2px solid rgba(255,255,255,.15);
}

.nav-top .nav-link{
	font-weight: 600;
	color: #a8aaad;
	text-transform: uppercase;
	letter-spacing: .05em;
	font-size: 14px;
	padding: .5rem .5rem;
}
.nav-top .nav-link:hover, .nav-top .nav-link:focus{
	color: #54b7ef;
}

header.header-wrapper .contact-container{
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
header.header-wrapper .contact-container li{
	display: inline-block;
	padding: 0 15px;
}
header.header-wrapper .contact-container li:first-child{
	padding-left: 0;
}
header.header-wrapper .contact-container li:last-child{
	padding-right: 0;
}
header.header-wrapper .contact-container li .fas{
	padding-right: 5px;
}
header.header-wrapper .contact-container li .fas.fa-flip-horizontal{
	padding-right: 0;
	padding-left: 5px;
}
header.header-wrapper .contact-container a, header.header-wrapper .contact-container a:hover, header.header-wrapper .contact-container a:focus, header.header-wrapper .contact-container a:active { 
	color: #a8aaad; 
}


header.header-wrapper .navbar-social.navbar-nav .nav-link{
	padding: 0 .3rem;
	color: #a8aaad;
	font-size: 18px;
	font-weight: normal;
}
header.header-wrapper .navbar-social.navbar-nav .nav-link:hover, header.header-wrapper .navbar-social.navbar-nav .nav-link:focus{
	color: #54b7ef;
}

/********************************************************************************
* Main Navigation
*********************************************************************************/
.navbar-primary{
	border: none;
	margin-bottom: 0;
	background-color: transparent;
}
.navbar-primary .navbar-nav > li{
	margin: 0 20px;	
}
.navbar-primary .navbar-nav > li:first-child{
	margin-left: 0;
}
.navbar-primary .navbar-nav > li:last-child{
	margin-right: 0;
}
.navbar-primary .navbar-nav .nav-link {
	background-color: transparent;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 700;
	color: #FFF;
	letter-spacing: .075em;
	padding: 15px 0;
	text-align: center;
	text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16),0px 2px 5px rgba(0, 0, 0, 0.69);
}
.navbar-primary .navbar-nav .nav-link:focus, .navbar-primary .navbar-nav .nav-link:hover{
	color: #f36e26;
	background-color: transparent;
}
.navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link{
	color: #f36e26;
	background-color: transparent;
}
.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active {
	color: #f36e26;
	background-color: transparent;
}

.navbar-primary .navbar-nav .nav-btn .nav-link {
    padding: 15px 50px;
}

.navbar-primary .navbar-nav > li > .dropdown-menu{
	border-radius: 0;
	padding-top: 10px;
	text-align: left;
	border: none;
	background-color: #221f1f;
}
.navbar-primary .navbar-nav > li > .dropdown-menu:after {
	bottom: 100%;
	left: 20px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(67, 58, 48, 0);
	border-bottom-color: #221f1f;
	border-width: 10px;
	margin-left: -10px;
}
.navbar-primary .navbar-nav > li > .dropdown-menu > li > a{
	color: #a8aaad;
	font-size: 14px;
	padding: 10px 20px;
	letter-spacing: .05em;
	font-family: "Montserrat",sans-serif;
	font-weight: 600;
	white-space: normal;
	line-height: 1;
}
.navbar-primary .navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-primary .navbar-nav > li > .dropdown-menu > li > a:focus{
	background-color: transparent;
	color: #f36e26;
}
.navbar-primary .navbar-nav > li > .dropdown-menu > .active > a, .navbar-primary .navbar-nav > li > .dropdown-menu > .active > a:hover, .navbar-primary .navbar-nav > li > .dropdown-menu > .active > a:focus{
	color: #FFF;
	background-color: transparent;
}


/********************************************************************************
* Slider
*********************************************************************************/
.section-hero{
	position:relative;
	z-index: 0;
	overflow:hidden;
	background-color: #000;
	border-bottom: 10px solid #f36e26;
}
.section-slider .slider .slide::after, .section-page-header::after {
    content: "";
	background: -moz-linear-gradient(top,  rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.9) 21%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.9) 21%,rgba(0,0,0,0) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0.9) 0%,rgba(0,0,0,0.9) 21%,rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6000000', endColorstr='#00000000',GradientType=0 );
    height: 330px;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
    width: 100%;
    z-index: 1;
}
.overlay-angle-top {
	background-image: linear-gradient(to right bottom, rgba(0,0,0,.7) 0%, rgba(0,0,0,.7) 50%, rgba(0,0,0,0) 50%);
	position: absolute;
	width: 30%;
	height: 50%;
	top: 0;
	left: 0;
}
.overlay-angle-btm {
	background-image: linear-gradient(to left top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.7) 50%, rgba(0,0,0,0) 50%);
	position: absolute;
	width: 60%;
	height: 120%;
	bottom: 0;
	right: 0;
}

/* Slider Only */
.slider-text-wrapper{
	height: 100%;
    left: 50%;
    position: relative;
    top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
}
.slider-text-container{
	position: absolute;
	color: #FFF;
	width: 50%;
	padding-bottom: 80px;
	font-size: 18px;
    bottom: 0;
	right: 0;
  	text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16),0px 2px 5px rgba(0, 0, 0, 0.26),0px 2px 5px rgba(0, 0, 0, 0.69);
	text-align: right;
}
.slider-text-container h2{
    font-size: 44px;
}
.slider-text-container h2 strong{
	font-weight: 800;
	color: #a8aaad;
}
.slider-text-container .slider-text p{
	margin-bottom: 0;
}
.slider-text-container .btn{
	margin-top: 30px;	
}

/********************************************************************************
* Page Header
*********************************************************************************/
.section-page-header{
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align: center;
	position: relative;
	height: 0;
}
.section-page-header::before {
    content: "";
	background: rgba(0,0,0,.2);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
    width: 100%;
    z-index: 1;
}
.section-page-header .page-header{
	text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16),0px 2px 5px rgba(0, 0, 0, 0.26),0px 2px 10px rgba(0, 0, 0, 0.16),0px 2px 5px rgba(0, 0, 0, 0.26);
	padding-top: 170px;
	padding-bottom: 170px;
	border: none;
	margin: 0;
	z-index: 2;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.page-header h1{
	font-size: 60px;
	line-height: 1;
	color: #FFF;
	margin: 0;
}
.page-header h1 > :last-child{
	margin-bottom: 0;
}

.section-breadcrumbs{
	color: #FFF;
	font-size: 18px;
	padding: 20px 0;
	text-shadow: 0.1em 0.1em 0.2em #000;
}
.section-breadcrumbs .far{
	padding: 0 10px;
}

.section-breadcrumbs a { 
	color: #FFF;
}

.section-breadcrumbs a:hover { 
	color: #9b8449;
}

/********************************************************************************
* Content
*********************************************************************************/
.wow {
	visibility:hidden;
} 

.section-content { 
	padding: 0;
}
.section-content-padded, .section-padding { 
	padding: 80px 0;
}
.section-no-btm-padding { 
	padding-bottom: 20px;
}
.section-content > p:last-child, .section-content .main > :last-child, .content-content > :last-child{
	margin-bottom: 0;
}
.section-content-main{
	background-attachment: fixed;
}
.section-heading {
	margin-top: 0;
}

.main img{
	max-width: 100%;
}

.section-content-header-content :last-child{
	margin-bottom: 0;
}

.section-subheading{
	text-shadow: none;
}
.section-subheading i{
	color: #f36e26;
}

.card {
	border: 2px solid #d3d4d6;
	border-radius: 0;
	background-color: transparent;
}
.card-img-top{
	border-bottom: 4px solid #f36e26;
	border-radius: 0;
	height: auto;
}
.card-title .subtitle{
	font-size: 14px;
}
.card-header{
	background-color: #D3D4D6;
	border-bottom: 2px solid #D3D4D6;
}
.card-body > :last-child{
	margin: 0;
}

.accordion .card-header{
	padding: 0;
	border-radius: 0;
}
.accordion .card-header .btn-text{
	display: block;
	color: #221f1f;
	width: 100%;
	text-align: left;
	padding: 15px 25px !important;
	letter-spacing: .075em;
	font-weight: 800;
}
.accordion .card-header .btn-text i{
	color: #f36e26;
	padding-right: 10px;
}
.accordion .card-header .btn-text.collapsed i.fa-minus-circle::before {
    /* symbol for "collapsed" panels */
    content: "\f055" !important; 
}
/********************************************************************************
* Sidebar
*********************************************************************************/
.sidebar{
    padding-left: 30px;
}
.sidebar .sidebar-content.sticky-top{
	top: 120px;
}
.sidebar .sidebar-content .widget{
	border-bottom: 2px dotted #d3d4d6;
	margin-bottom: 30px;
	padding-bottom: 30px;
}
.sidebar .sidebar-content > .widget:last-child{
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0;
}
.sidebar .sidebar-content .widget h3{
	font-size: 20px;
	margin-top: 0;
}
.sidebar .sidebar-content .widget .widget-content{
	padding: 30px 25px;
	background-color: #F1F3F6;
	font-size: 16px;
}
.sidebar .sidebar-content .widget .widget-content > :last-child{
	margin-bottom: 0;
}

.sidebar .flex-column a{
	line-height: normal;
	display: block;
	padding: 5px 0;
}
/********************************************************************************
* Sidebar :: Archives
*********************************************************************************/
.widget_archive ul{
	margin: 0;
	padding: 30px 25px;
	background-color: #F1F3F6;
}
.widget_archive ul .year {
	display: block;	
	padding: 12px 25px 12px 0;
	border-bottom: 2px dotted #d3d4d6;
}
.widget_archive ul .year:first-child{
	padding-top: 0;
}
.widget_archive ul .year:last-child{
	padding-bottom: 0;
	border-bottom: none;
}
.widget_archive .year-hidden {
	display: none;
}
.widget_archive .year-toggle-wrapper {
	display: block;
	font-weight: 700;
	letter-spacing: .05em;
	font-size: 16px;
}
.widget_archive .year-toggle {
	background-color: transparent;
    color: #f36e26;
    cursor: pointer;
    display: inline-block;
    margin-right: 10px;
    text-align: center;
	font-size: 18px;
	font-weight: normal;
}
.widget_archive .year-toggle:hover, .widget_archive .year-toggle:focus{
	color: #414040;
}
.widget_archive li {
	display: block;
	list-style: none;
	font-weight: 700;
	color: #4f4239;
	font-size: 11px;
}
.widget_archive li a{
	font-size: 16px;
	color: #f36e26;
    padding: 8px 0 8px 25px;
    white-space: normal;
	font-weight: normal;
}
.widget_archive li a:hover, .widget_archive li a:focus{
	color: #f36e26;
}

/********************************************************************************
* Parallax
*********************************************************************************/
.section-featured-image {
	height: 400px;
	overflow: hidden;
	position: relative;
	background-attachment: fixed;
	background-position: center top;
	background-repeat: no-repeat;
	padding-bottom: 0px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.section-tall-height { 
	height: auto;
	padding-top: 100px;
	padding-bottom: 100px;
}

/********************************************************************************
* Section :: Services
*********************************************************************************/
.section-services { 
	position: relative;
}
.section-services .bg-dots-left{
	background-attachment: fixed;
}
.section-services .bg-dots-right{
	background-attachment: fixed;
}
.section-services .service{ 
	padding: 50px 0;
	position: relative;
	z-index: 1;
}
.section-services .services .service:nth-child(2){
	padding-top: 0;
}
.section-services .services .service:last-child{
	padding-bottom: 0;
}
.section-services .service .service-image-wrapper{
	padding-left: 15px;
	position: relative;
}
.section-services .service .service-content{
	padding-left: 30px;
}

.section-services .service .service-count{
	width: 130px;
	position: absolute;
	bottom: -60px;
	left: -15px;
	z-index: 1;
	line-height: 1;
}
.section-services .service .service-count:before{
	content: '';
	width: 4px;
	height: 200px;
	background-color: #f36e26;
	position: absolute;
	left: 11px;
	bottom: 100%;
}
.section-services .service .service-count:after{
	content: '';
	width: 300px;
	height: 4px;
	background-color: #f36e26;
	position: absolute;
	left: calc(100% + 10px);
	top: calc(50% + 15px);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* Alternating Services Styling */
.section-services .service.service-alt .service-image-wrapper{
	padding-right: 15px;
	padding-left: 0;
}
.section-services .service.service-alt .service-content{
	padding-right: 30px;
	padding-left: 0;
}
.section-services .service.service-alt .service-count{
	right: -15px;
	left: auto;
}
.section-services .service.service-alt .service-count:before{
	right: 11px;
	left: auto;
}
.section-services .service.service-alt .service-count:after{
	left: auto;
	right: calc(100% + 15px);
}

/* Indicator */
.services{
	position: relative;
}
.services:after{
	content: '';
	width: 3px;
	height: calc(100% - 50px);
	z-index: 0;
	background-color: #f1f3f6;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.services .indicator{
	height: 70px;
	background-color: #F36E26;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -3px;
	width: 6px;
	z-index: 2;
}
.services .indicator:after{
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(243, 110, 38, 0);
	border-right-color: #f36e26;
	border-width: 10px;
	right: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.services .indicator.point-right:after{
	left: 100%;
	right: auto;
	pointer-events: none;
	border-color: rgba(243, 110, 38, 0);
	border-left-color: #f36e26;
}
.services .sticky-top{
	top: 120px;
	z-index: 1000;
}

/********************************************************************************
* Section :: Trial
*********************************************************************************/
.section-trial .row .col :last-child{
	margin-bottom: 0;
}
.trial-signup{
	background-color: rgba(0,0,0,.7);
	text-align: center;
  	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16),0px 2px 5px 0px rgba(0, 0, 0, 0.26);
	font-size: 16px;
}
.trial-signup .section-subheading.section-mid{
	position: relative;
}
.trial-signup .section-subheading.section-mid:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(211, 212, 214, 0);
	border-top-color: #d3d4d6;
	border-width: 15px;
	margin-left: -15px;
	z-index: 1;
}
.trial-signup .gform_wrapper .gform_footer input.button, .trial-signup .gform_wrapper .gform_footer input[type="submit"]{
	width: 100%;
	margin: 0;
}
.trial-signup .gform_wrapper .gform_footer{
	padding: 0;
}
.disclaimer{
	font-size: 10px;
	line-height: 1;
	color: #a8aaad;
	font-weight: 500;
}

/********************************************************************************
* Section :: Child :: Image Right / Left
*********************************************************************************/
.section-child-image_right-image, .section-child-image_left-image{
	background-size: cover;
	background-position: center;
	min-height: 400px;
}
.section-child-image_right .section-content-padded, .section-child-image_left .section-content-padded{
	padding-left: 50px;
	padding-right: 50px;
}

/********************************************************************************
* Section :: Child :: Testimonials
*********************************************************************************/
.section-child-testimonials {
	max-width: 100%;
	overflow: hidden;
}
.testimonial-image{
	max-width: 130px;
}
.testimonial-location{
	font-size: 75%;
	text-transform: none;
	letter-spacing: normal;
}
.testimonial-content-full{
	font-size: 16px;
	font-weight: 600;
}
.testimonial-content-full p{
	margin-bottom: 20px;
}
.carousel .testimonial-location{
	display: block;
}
.carousel-control-prev{
	left: -100px;
}
.carousel-control-next{
	right: -100px;
}
.carousel-indicators{
	top: 320px;
}

/********************************************************************************
* News
*********************************************************************************/
.page-link {
    border: 2px solid #d3d4d6;
	border-radius: 0 !important;
	color: #f36e26;
}
.page-link:hover {
    color: #54b7ef;
    background-color: #F1F3F6;
    border-color: #d3d4d6;
}
/********************************************************************************
* Section :: Capsules
*********************************************************************************/
.section-capsules { 
	position: relative;
}
.section-capsules .section-subheading{
	position: relative;
}
.section-capsules.section-mid .section-subheading:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(211, 212, 214, 0);
	border-top-color: #d3d4d6;
	border-width: 45px;
	margin-left: -45px;
	z-index: 1;
}
.capsule {
	position: relative;
	background-color: #f36e26;
}
.capsule .capsule-image{

}
.capsule .capsule-image img {
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.capsule .capsule-content{
	padding: 50px;
	color: #FFF;
	position: absolute;
	z-index: 3;
	left: 0;
	width: 100%;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* Second Capsule Specific Styling */
.section-capsules .row > div:nth-child(2) > .capsule{
	background-color: #54b7f9;
}

.capsule:hover .capsule-image img{
	opacity: .5;
}

/* Section Capsules :: Parent Page */
.section-capsules-parent .capsule{
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16),0px 2px 5px 0px rgba(0, 0, 0, 0.26);
}

/********************************************************************************
* Staff
*********************************************************************************/
.section-staff .card-deck{
	margin-top: 30px;
}
.section-staff .card-deck:first-child{
	margin-bottom: 0;
}
.section-staff .card-deck .card {
    max-width: calc(33.33% - 30px);
}
.card-staff .card-body > :last-child{
	padding-bottom: 0;
	margin-bottom: 0;
}
.card-staff .card-footer{
	border: none;
	background-color: transparent;
	padding-top: 0;
}
.card-bio{
	background-color: #d3d4d6;
	position: relative;
	margin-top: 30px;
}
.card-bio > p {
	margin-bottom: 20px;
}
.card-bio > :last-child{
	margin-bottom: 0;
}

/********************************************************************************
* Contact
*********************************************************************************/
.widget-contact .widget-content .row{
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 2px dotted #d3d4d6;
}
.widget-contact .widget-content > .row:first-child{
	padding-top: 0;
}
.widget-contact .widget-content > .row:last-child{
	border-bottom: none;
	padding-bottom: 0;
}
.widget-contact .widget-content .fa-stack{
	color: #F36E26;
	margin-right: 10px;
}
.widget-contact .widget-content .fa-stack .fa-inverse{
	color: #F1F3F6;
}

/********************************************************************************
* Plugin :: Pricing Tables
*********************************************************************************/
.ptsBlock .ptsCol .ptsActBtn{
	border-radius: 0 !important;
}
.ptsBlock .ptsCol .ptsActBtn .ptsEditArea{
	font-size: 14px !important;
	font-weight: 700 !important;
	letter-spacing: .15em !important;
}
.ptsBlock .ptsCol .ptsColFooter{
	background: #D3D4D6 !important;
}
.ptsBlock .ptsCol .ptsTableElementContent .ptsRows{
	border: 2px solid #D3D4D6 !important;
	background: #f1f3f6 !important;
}
.ptsBlock .ptsCol .ptsRows .ptsCell {
    border-bottom: 1px solid #D3D4D6 !important;
    border-top: 1px solid #D3D4D6 !important;
	
	font-size: 12px !important;
}
/********************************************************************************
* Forms
*********************************************************************************/
form fieldset{
	background-color: #F7F7F7;
	padding: 15px;
}
.form-control, body .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), .gform_wrapper select, body .gform_wrapper.gf_browser_gecko select {
	color: #414040;
	border-radius: 0;
	background: transparent;
	border: 2px solid #a8aaad;
	padding: 10px 20px;
	-webkit-transition: all 0.36s ease 0s;
	-moz-transition: all 0.36s ease 0s;
	-ms-transition: all 0.36s ease 0s;
	-o-transition: all 0.36s ease 0s;
	transition: all 0.36s ease 0s;
}
.section-dark .form-control, body .section-dark .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), .section-dark .gform_wrapper select{
	color: #FFF;
}
.form-control:focus, .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]):focus, .gform_wrapper select:focus {
	border-color: #54b7ef;
	box-shadow: none;
	background-color: rgba(0, 0, 0, .1);
}
textarea.form-control {
	padding: 15px;
}
select.form-control:not([size]):not([multiple]), .gform_wrapper select{
	height: auto;
}
.input-group-text{
	background-color: transparent;
	border-radius: 0;
	border: 2px solid #a8aaad;
	color: #a8aaad;
	border-right: none;
	padding-left: 15px;
	padding-right: 10px;
}
.input-group .form-control{
	border-left: none;
	padding-left: 0;
}

input::placeholder{
	opacity: 1;
	color: #a8aaad;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 14px;
}
.form-control:-ms-input-placeholder {
  	color: #a8aaad;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 14px;
}
.form-control::-webkit-input-placeholder {
  	color: #a8aaad;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 14px;
}
.form-control:-moz-placeholder {
  	color: #a8aaad;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 14px;
}

/* Gravity Form Fixes */
.gform_wrapper .gsection {
    border-bottom: 2px dotted #D3D4D6;
}
.gform_wrapper label.gfield_label, .gform_wrapper legend.gfield_label{
	margin-bottom: 0;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 16px;
	letter-spacing: .025em;
	line-height: 1;
}
body .gform_wrapper .top_label div.ginput_container{
	margin-top: 0;
}

/********************************************************************************
* Section :: Footer :: Instagram
*********************************************************************************/
.section-instagram{
	position: relative;
	overflow:hidden;
}
.section-instagram .section-subheading i{
	font-weight: normal;
	color: inherit;
}
.section-instagram .instagram-thumb{
	background-color: #54b7ef;
	display: block;
	-ms-flex-positive: 1 !important;
	flex-grow: 1 !important;
	margin: 0;
}
.section-instagram .instagram-thumb:first-child{
	margin-left: 0;
}
.section-instagram .instagram-thumb:last-child{
	margin-right: 0;
}
.section-instagram .instagram-thumb img{
	width: 100%;
	opacity: 1;
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.section-instagram .instagram-thumb img:hover{
	opacity: .1;
}

/********************************************************************************
* Footer
*********************************************************************************/
footer.footer-wrapper{
	border-top: 4px solid #f16d26;
	font-size: 15px;
	background-image: url('../img/bg-footer.jpg');
	background-size: 100% auto;
	background-attachment: fixed;
	background-position: bottom center;
	position: relative;
	z-index: 1;
}

/* Footer Social */
footer.footer-wrapper .navbar-social .nav-link{
	margin: 0 .3rem;
	padding: 10px 0;
	font-size: 18px;
	font-weight: normal;
	width: 50px;
	height: 50px;
	text-align: center;
	border: 3px solid #f16d26;
	border-radius: 50%;
}
footer.footer-wrapper .navbar-social .nav-link:hover, footer.footer-wrapper .navbar-social .nav-link:focus{
	border-color: #54b7ef;
}

/* Footer Contact */
footer.footer-wrapper .contact-container{
    list-style: outside none none;
    margin: 0;
    padding: 0;
	text-align: center;
}
footer.footer-wrapper .contact-container li{
	display: inline-block;
	padding: 0 15px;
	text-transform: uppercase;
	font-weight: 700;
	border-right: 2px solid #454444;
	line-height: 1;
	letter-spacing: .2em;
}
footer.footer-wrapper .contact-container li:first-child{
	padding-left: 0;
}
footer.footer-wrapper .contact-container li:last-child{
	padding-right: 0;
	border-right: 0;
}
footer.footer-wrapper .contact-container a, footer.footer-wrapper .contact-container a:hover, footer.footer-wrapper .contact-container a:focus, footer.footer-wrapper .contact-container a:active { 
	color: #FFF; 
}

/* Footer Nav */
.navbar-footer .nav-link {
    padding: 0 1rem;
	font-size: 12px;
	line-height: 1;
	letter-spacing: .2em;
	text-transform: uppercase;
	font-weight: 700;
}

/* Footer Copyright */
.section-footer-copyright{
	border-top: 2px solid rgba(255,255,255,.2);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .1em;
	line-height: 1;
	font-weight: 600;
	padding: 30px 0;
	color: #a8aaad;
}
.copyright > div {
	display: inline-block;
	padding: 0 8px;
	border-right: 2px solid #454444;
}
.copyright > div:first-child{
	padding-left: 0;
}
.copyright > div:last-child{
	padding-right: 0;
	border-right: none;
}
.copyright a{
	color: #a8aaad;
}
.copyright a:hover{
	color: #54b7ef;
	text-decoration: none;
}

.btn-backtotop{
	font-size: 12px;
}

/********************************************************************************
* Scrolling
*********************************************************************************/
header.header-wrapper,  header.header-wrapper .navbar-top, header.header-wrapper .header-logo img, header.header-wrapper .masthead,.navbar-primary .navbar-header{
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
body.scrolling header.header-wrapper{
	background-color: #221f1f;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16),0px 2px 5px 0px rgba(0, 0, 0, 0.26);
}
body.scrolling header.header-wrapper .masthead {
    padding-bottom: 15px;
    padding-top: 15px;
}
body.scrolling header.header-wrapper .header-logo img{
	max-height: 50px;	
	width: auto;
}
body.scrolling header.header-wrapper .navbar-top{
	height: 0;
	opacity: 0;
	display: none;
	padding: 0;
}
body.scrolling .navbar-primary .navbar-header{
	background-color: rgba(0,0,0,0)
}

/********************************************************************************
* Video Wrapper for Responsive Video
*********************************************************************************/
.videowrapper, .entry-content-asset {
    float: none;
    clear: both;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}
.videowrapper iframe, .entry-content-asset iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/********************************************************************************
* Media Queries
*********************************************************************************/
@media (max-width: 1599px){
	.section-page-header, .section-image-background{
		background-size: auto;
		background-position: center center;
	}
	footer.footer-wrapper{
		background-size: auto;
	}
}
@media (max-width: 1499px){
	.navbar-primary .navbar-nav > li{
		margin: 0 15px;
	}
	.navbar-primary .navbar-nav .nav-link{
		font-size: 16px;
	}
	.navbar-primary .navbar-nav .nav-btn .nav-link {
		padding: 15px 30px;
		font-size: 14px;
	}
}
@media (max-width: 1399px){
	.navbar-primary .navbar-nav > li{
		margin: 0 10px;
	}
	.slider-text-container h2 {
		font-size: 36px;
	}
}
@media (max-width: 1299px){
	.navbar-top, .nav-top .nav-link{
		font-size: 12px;
	}
	.navbar-primary .navbar-nav .nav-link{
		font-size: 14px;
	}
	header.header-wrapper .header-logo {
		width: 230px;
		max-width: 100%;
	}
	.overlay-angle-top{
		width: 40%;
	}
	.overlay-angle-btm{
		width: 80%;
	}
	.slider-text-container{
		width: 60%;
	}
}
@media (max-width: 1199px){
	.btn, .vfb-submit, .vfbp-form .btn-primary{
		padding: 20px 30px;
	}
	header.header-wrapper .header-logo {
		width: 200px;
		padding-right: 30px;
	}
	.navbar-top{
		padding-top: 10px;
		padding-bottom: 10px;
	}
	header.header-wrapper .navbar-social.navbar-nav .nav-link{
		font-size: 14px;
	}
	.navbar-primary .navbar-nav .nav-link {
		font-size: 13px;
		letter-spacing: .05em;
	}
	.overlay-angle-top{
		display: none;
	}
	.overlay-angle-btm {
		width: 100%;
		height: 80%;
	}
	.slider-text-container{
		padding-bottom: 50px;
	}
	.slider-text-container h2 {
		font-size: 36px;
	}
	.section-services .service .service-count::before {
		height: 120px;	
	}
	.section-services .service .service-count::after{
		width: 200px;
	}
	.carousel-control-prev{
		left: -50px;
		width: auto;
	}
	.carousel-control-next{
		right: -50px;
		width: auto;
	}
	footer.footer-wrapper{
		background-size: auto;
	}
	.section-footer-copyright{
		text-transform: none;
		letter-spacing: .025em;
		font-size: 10px;
	}
	.section-instagram .instagram-thumb:nth-child(6), .section-instagram .instagram-thumb:nth-child(7), .section-instagram .instagram-thumb:last-child{
		display: none;
	}
}
@media (max-width: 991px){
	body{
		font-size: 16px;
	}
	h1, .h1{
		font-size: 36px;
	}
	h2, .h2{
		font-size: 30px;
	}
	h3, .h3{
		font-size: 24px;
	}
	h4, .h4{
		font-size: 20px;
	}
	h5, .h5{
		font-size: 18px;
	}
	h6, .h6{
		font-size: 16px;
	}
	.three-column-list {
		-moz-column-count: 2;
		-webkit-column-count: 2;
		 column-count: 2;
	}
	header.header-wrapper .header-logo {
		width: 140px;
		padding-right: 15px;
	}
	.navbar-primary .navbar-nav .nav-link {
		font-size: 12px;
		letter-spacing: .05em;
		line-height: 1;
	}
	.navbar-primary .navbar-nav .nav-btn .nav-link{
		color: #FFF;
		background-color: transparent;
		font-size: 12px;
		line-height: 1;
		letter-spacing: .05em;
		padding: 15px 0;
		box-shadow: none;
		border: none;

		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}
	.navbar-primary .navbar-nav .nav-btn .nav-link:hover, .navbar-primary .navbar-nav .nav-btn .nav-link:focus{
		background-color: transparent;
		color: #f36e26;
	}
	.navbar-primary .navbar-nav .nav-btn .nav-link i{
		display: none;
	}
	.page-header h1 {
    	font-size: 44px;
	}
	.section-capsules.section-mid .section-subheading::after {
    	border-width: 25px;
    	margin-left: -25px;
	}
	.section-services .service .service-count{
		width: 80px;
	}
	.section-child-image_right-image, .section-child-image_left-image{
		min-height: 400px;
		background-image: none !important;
	}
}
@media (max-width: 767px){
	.img-thumbnail, .thumbnail, .img-thumbnail.alignleft, .thumbnail.alignleft {
		-webkit-transform: none;
		-moz-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
		margin: 30px auto;
	}
	.two-column-list, .three-column-list {
		-moz-column-count: 1;
		-moz-column-gap: 0;
		-webkit-column-count: 1;
		-webkit-column-gap: 0;
		 column-count: 1;
		 column-gap: 0;
		display: block;
	}
	.btn{
		white-space: normal;
	}
	
	.services::after, .section-services .service .service-count, .section-services .service .service-count:before, .section-services .service .service-count:after, .services .indicator{
		display: none;	
	}
	.section-services .service .service-image-wrapper, .section-services .service .service-content, .section-services .service.service-alt .service-image-wrapper{
		padding-left: 0;
		padding-right: 0;
	}
	
	.section-staff .card-deck .card {
		max-width: 100%;
		margin-bottom: 30px;
	}
	
	.section-page-header, .section-image-background{
		background-size: auto 100%;
	}
	
	.section-content-header-content{
		padding-top: 15px;
	}
	
	input::placeholder{
		text-transform: none;
		letter-spacing: .05em;
		font-size: 12px;
	}
	.form-control:-ms-input-placeholder {
		text-transform: none;
		letter-spacing: .05em;
		font-size: 12px;
	}
	.form-control::-webkit-input-placeholder {
		text-transform: none;
		letter-spacing: .05em;
		font-size: 12px;
	}
	.form-control:-moz-placeholder {
		text-transform: none;
		letter-spacing: .05em;
		font-size: 12px;
	}
	.section-instagram .instagram-thumb:nth-child(4), .section-instagram .instagram-thumb:nth-child(5){
		display: none;
	}
}
@media (max-width: 575px){
	h1, .h1{
		font-size: 30px;
	}
	h2, .h2{
		font-size: 24px;
	}
	h3, .h3{
		font-size: 20px;
	}
	h4, .h4{
		font-size: 18px;
	}
	h5, .h5{
		font-size: 16px;
	}
	h6, .h6{
		font-size: 14px;
	}
	.alignright, .alignleft{
		display: block;
		float: none;
		margin: 30px auto;
	}
	.slider-text-container{
		width: 100%;
		padding-left: 60px;
	}
	.slider-text-container h2 {
		font-size: 24px;
	}
	.slider-text-container .btn {
		margin-top: 15px;
		font-size: 14px;
		line-height: 14px;
		letter-spacing: .1em;
	}
	.section-instagram .instagram-thumb:nth-child(3){
		display: none;
	}
	footer.footer-wrapper{
		font-size: 14px;
	}
	footer.footer-wrapper .navbar-social .nav-link {
		padding: 8px 0;
		font-size: 14px;
		width: 40px;
		height: 40px;
	}
	footer.footer-wrapper .navbar-social .nav-link {
    	font-size: 14px;
	}
	.section-footer-copyright{
		text-align: center;
	}
	.btn-backtotop{
		margin-top: 30px;
	}
}