* {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
ul {
    list-style-position: inside;
}
/****** TRANSITION BUTTON *******/
a {
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    transition: all .2s linear;
    -kthtml-transition: all .2s linear;
}
/****** SECTION *******/
section {
    background-size: cover !important;
    background-position: center center;
    position: relative;
}
section .container, section .container-fluid {
    position: relative;
}
.overlay-wrapper, .overlay-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/****** NAVIGATION *******/
nav.navbar .hs-menu-wrapper>ul>li {
    float: left;
    position: relative;
}
nav.navbar .hs-menu-wrapper>ul>li.hs-item-has-children:after {
    content: "";
    border: 4px solid transparent;
    border-top: 4px solid white;
    position: absolute;
    top: 13px;
    left: 0;
}
nav.navbar .hs-menu-wrapper ul{
	list-style:none;
	position:relative;
	float:right;
	margin:0;
	padding:0
}
nav.navbar .hs-menu-wrapper>ul>li>a {
    color: white;
}
nav.navbar .hs-menu-wrapper>ul>li>a:hover {
    color: #333;
}
nav.navbar .hs-menu-wrapper ul a {
	display:block;
	color:#333;
	text-decoration:none;
	font-weight:normal;
	font-size:12px;
	line-height:32px;
	padding:0 15px;
}

nav.navbar .hs-menu-wrapper ul li {
	position:relative;
	float:left;
	margin:0;
	padding:0;
}
nav.navbar .hs-menu-wrapper ul li:hover {
	background:#f6f6f6;
}

nav.navbar .hs-menu-wrapper ul ul {
	display:none;
	position:absolute;
	top:100%;
	left:0;
	background:#fff;
	padding:0;
}

nav.navbar .hs-menu-wrapper ul ul li {
	float:none;
	width:250px;
}

nav.navbar .hs-menu-wrapper ul ul a {
	line-height:120%;
	padding:10px 15px;
}

nav.navbar .hs-menu-wrapper ul ul ul {
	top:0;
	left:100%;
}

nav.navbar .hs-menu-wrapper ul li:hover > ul {
	display:block;
}
nav.navbar .hs-menu-wrapper>ul {
    float: right;
    margin-top: 8px;
}
nav.navbar .hs-menu-wrapper>ul>li {
    margin-left: 10px;
    margin-right: 10px;
}

nav.navbar .hs-menu-wrapper ul li, nav.navbar .hs-menu-wrapper ul li a {
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    transition: all .2s linear;
    -kthtml-transition: all .2s linear;
}

@media screen and (max-width: 767px) {
    .navbar-default .navbar-collapse {
        background: #606060;
    }
    nav.navbar .hs-menu-wrapper ul, nav.navbar .hs-menu-wrapper ul li {
        width: 100% !important;
        display: block !important;
        float: left !important;
        position: relative !important;
    }
    nav.navbar .hs-menu-wrapper ul ul {
        left: 0 !important;
        margin-left: 15px;
    }
    nav.navbar .hs-menu-wrapper ul ul ul {
        left: 0 !important;
        margin-left: 25px;
    }
    nav.navbar .hs-menu-wrapper>ul>li>a {
        color: white;
    }
    nav.navbar .hs-menu-wrapper>ul>li>a:hover {
        color: white;
    }
    nav.navbar .hs-menu-wrapper ul li:hover, nav.navbar .hs-menu-wrapper ul ul, nav.navbar .hs-menu-wrapper ul ul ul {
    	background:transparent;
    }
    nav.navbar .hs-menu-wrapper ul a {
    	display:block;
    	color:white;
    	text-decoration:none;
    	font-weight:normal;
    	font-size:12px;
    	line-height:32px;
    	padding:0 15px;
    }
    .navbar-default .navbar-collapse {
        overflow-x: hidden;
    }
    .navbar-default .navbar-header .navbar-toggle {
        text-transform: uppercase;
        font-weight: bold;
        padding-right: 15px;
        padding-left: 15px;
    }
    .navbar-default .navbar-header .navbar-toggle i {
        padding-left: 10px;
    }
}






/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/

input,
label,
select,
button,
textarea
{
	margin:0;
	border:0;
	padding:0;
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	background:none;
	line-height:1;

	/* Browsers have different default form fonts */
	font-size:13px;
	font-family:Arial;
}

/* Remove the stupid outer glow in Webkit */
input:focus
{
	outline:0;
}

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */
input,
textarea
{
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select
{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* Text Inputs
-----------------------------------------------*/

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week]
{
}

/* Button Controls
-----------------------------------------------*/

input[type=checkbox],
input[type=radio]
{
	width:13px;
	height:13px;
}

/* File Uploads
-----------------------------------------------*/

input[type=file]
{

}

/* Search Input
-----------------------------------------------*/

/* Make webkit render the search input like a normal text field */
input[type=search]
{
	-webkit-appearance:textfield;
	-webkit-box-sizing:content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration
{
	display:none;
}

/* Buttons
-----------------------------------------------*/

button,
input[type="reset"],
input[type="button"],
input[type="submit"]
{
	/* Fix IE7 display bug */
	overflow:visible;
	width:auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button
{
	padding:0;
	border:0;
	background:none;
}

/* Textarea
-----------------------------------------------*/

textarea
{
	/* Move the label to the top */
	vertical-align:top;

	/* Turn off scroll bars in IE unless needed */
	overflow:auto;
}

/* Selects
-----------------------------------------------*/

select
{

}

select[multiple]
{
	/* Move the label to the top */
	vertical-align:top;
}




/***** BELCH FORM STYLES  *******/


input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=month], input[type=number], input[type=password], input[type=range], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week],.hs-form fieldset.form-columns-1 textarea.hs-input, .hs-form fieldset.form-columns-1 .input select, .hs-form input[type=date], .hs-form input[type=datetime], .hs-form input[type=datetime-local], .hs-form input[type=email], .hs-form input[type=month], input[type=number], .hs-form input[type=password], .hs-form input[type=range], .hs-form input[type=search], .hs-form input[type=tel], .hs-form input[type=text], .hs-form input[type=time], .hs-form input[type=url], .hs-form input[type=week], .hs-form .input textarea,.hs-form .hs-input textarea,.hs-form textarea, .hs-form .input select, .hs-form .hs-input select, .hs-form select  {
    border: 1px solid #d6d6d6;
    width: 100%;
    padding: 9px 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.hs-form ul {
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}
.hs-form fieldset.form-columns-1 .hs-input {
    width: 100% !important;
}
.hs-form fieldset.form-columns-1 input[type="checkbox"], .hs-form fieldset.form-columns-1 input[type="radio"] {
    width: auto !important;
    margin-right: 15px !important;
    margin-top: -2px;
}
.hs-form label {
    color: #606060;
}
.hs-form fieldset {
    max-width: 100% !important;
}
.hs-form fieldset.form-columns-3 .hs-form-field {
    width: 33.333% !important;
}
.hs-form fieldset {
    margin-bottom: 0 !important;
}
.hs-form .hs-form-field {
    margin-bottom: 15px;
}
.hs-form label {
    font-weight: normal;
    letter-spacing: 1px;
}
.hs-form ul li {
    margin-top: 4px;
    margin-bottom: 4px !important;
    float: left;
    width: 100%;
}
.hs-form fieldset textarea.hs-input {
    min-height: 200px;
}
.hs-form select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 5px;
    border-radius: 0;
}
.hs-form button, .hs-form  input[type=button], .hs-form input[type=reset], .hs-form input[type=submit] {
    background: #606060;
    color: white;
    padding: 7px 45px;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
}
.hs-form fieldset.form-columns-2 .hs-form-field {
    width: 50%;
}
.hs-form fieldset.form-columns-3 .hs-form-field, .hs-form fieldset.form-columns-2 .hs-form-field {
    float: left;
}
.hs-form fieldset .hs-form-field {
    padding: 0 10px;
}
.hs_cos_wrapper.form-title {
    display: none;
}
@media screen and (max-width:400px) {
    .hs-form fieldset.form-columns-3 .hs-form-field {
        width: 100% !important;
    }
}


/***** BELCH GLOBAL RESPONSIVENESS *******/


@media screen and (max-width: 768px) {
    .container {
        padding-right: 35px;
        padding-left: 35px;
    }
    .form-sec form{
        margin-left: 0;
        margin-right: 0;
    }
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
        padding-bottom: 30px;
    }
}
@media screen and (max-width: 480px) {
    .navbar-header img {
        margin-top: 5px;
    }
}
