.labels-form .note {
	margin-top: 6px;
	padding: 0 1px;
	font-size: 11px;
	line-height: 15px;
	color: #999;
}
.labels-form .input,
.labels-form .select,
.labels-form .textarea,
.labels-form .radio,
.labels-form .checkbox,
.labels-form .toggle,
.labels-form .button {
	position: relative;
	display: block;
}
.labels-form .input input,
.labels-form .select select,
.labels-form .textarea textarea {
	display: block;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	height: 39px;
	padding: 8px 10px;
	outline: none;
	border-width: 1px;
	border-style: solid;
	border-radius: 5px;
	background: #fff;
	color: #969696;
	appearance: normal;
	-moz-appearance: none;
	-webkit-appearance: none;
}


/**/
/* file inputs */
/**/
.labels-form .input-file .button {
	position: absolute;
	top: 4px;
	right: 4px;
	float: none;
	height: 31px;
	margin: 0;
	padding: 0 20px;
	font-size: 13px;
	line-height: 31px;
}
.labels-form .input-file .button:hover {
	box-shadow: none;
}
.labels-form .input-file .button input {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	font-size: 30px;
	cursor: pointer;
	opacity: 0;
}


/**/
/* selects */
/**/
.labels-form .select i {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 5px;
	height: 11px;
	background: #fff;
	box-shadow: 0 0 0 12px #fff;
}
.labels-form .select i:after,
.labels-form .select i:before {
	content: '';
	position: absolute;
	right: 0;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.labels-form .select i:after {
	bottom: 0;
	border-top: 4px solid #404040;
}
.labels-form .select i:before {
	top: 0;
	border-bottom: 4px solid #404040;
}
.labels-form .select-multiple select {
	height: auto;
}


/**/
/* textareas */
/**/
.labels-form .textarea textarea {
	height: auto;
	resize: none;
}
.labels-form .textarea-resizable textarea {
	resize: vertical;	
}
.labels-form .textarea-expandable textarea {
	height: 39px;
}
.labels-form .textarea-expandable textarea:focus {
	height: auto;
}


/**/
/* radios and checkboxes */
/**/
.labels-form .radio,
.labels-form .checkbox {
	margin-bottom: 4px;
	padding-left: 27px;
	font-size: 15px;
	line-height: 27px;
	color: #404040;
	cursor: pointer;
}
.labels-form .radio:last-child,
.labels-form .checkbox:last-child {
	margin-bottom: 0;
}
.labels-form .radio input,
.labels-form .checkbox input {
	position: absolute;
	left: -9999px;
}
.labels-form .radio i,
.labels-form .checkbox i {
	position: absolute;
	top: 5px;
	left: 0;
	display: block;
	width: 13px;
	height: 13px;
	outline: none;
	border-width: 2px;
	border-style: solid;
	background: #fff;
}
.labels-form .radio i {
	border-radius: 50%;
}
.labels-form .radio input + i:after,
.labels-form .checkbox input + i:after {
	position: absolute;
	opacity: 0;
	transition: opacity 0.1s;
	-o-transition: opacity 0.1s;
	-ms-transition: opacity 0.1s;
	-moz-transition: opacity 0.1s;
	-webkit-transition: opacity 0.1s;
}
.labels-form .radio input + i:after {
	content: '';
	top: 4px;
	left: 4px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
}
.labels-form .checkbox input + i:after {
	content: '\f00c';
	top: -1px;
	left: -1px;
	width: 15px;
	height: 15px;
	font: normal 12px/16px FontAwesome;
	text-align: center;
}
.labels-form .radio input:checked + i:after,
.labels-form .checkbox input:checked + i:after {
	opacity: 1;
}
.labels-form .inline-group {
	margin: 0 -30px -4px 0;
}
.labels-form .inline-group:after {
	content: '';
	display: table;
	clear: both;
}
.labels-form .inline-group .radio,
.labels-form .inline-group .checkbox {
	float: left;
	margin-right: 30px;
}
.labels-form .inline-group .radio:last-child,
.labels-form .inline-group .checkbox:last-child {
	margin-bottom: 4px;
}


/**/
/* toggles */
/**/
.labels-form .toggle {
	margin-bottom: 4px;
	padding-right: 61px;
	font-size: 15px;
	line-height: 27px;
	color: #404040;
	cursor: pointer;
}
.labels-form .toggle:last-child {
	margin-bottom: 0;
}
.labels-form .toggle input {
	position: absolute;
	left: -9999px;
}
.labels-form .toggle i {
	content: '';
	position: absolute;
	top: 4px;
	right: 0;
	display: block;
	width: 49px;
	height: 17px;
	border-width: 2px;
	border-style: solid;
	border-radius: 12px;
	background: #fff;
}
.labels-form .toggle i:after {
	content: 'OFF';
	position: absolute;
	top: 2px;
	right: 8px;
	left: 8px;
	font-style: normal;
	font-size: 9px;
	line-height: 13px;
	font-weight: 700;
	text-align: left;
	color: #5f5f5f;
}
.labels-form .toggle i:before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 4px;
	right: 4px;
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	opacity: 1;
	transition: right 0.2s;
	-o-transition: right 0.2s;
	-ms-transition: right 0.2s;
	-moz-transition: right 0.2s;
	-webkit-transition: right 0.2s;
}
.labels-form .toggle input:checked + i:after {
	content: 'ON';
	text-align: right;
}
.labels-form .toggle input:checked + i:before {
	right: 36px;
}


/**/
/* ratings */
/**/
.labels-form .rating {
	margin-bottom: 4px;
	font-size: 15px;
	line-height: 27px;
	color: #404040;
}
.labels-form .rating:last-child {
	margin-bottom: 0;
}
.labels-form .rating input {
	position: absolute;
	left: -9999px;
}
.labels-form .rating label {
	display: block;
	float: right;
	height: 17px;
	margin-top: 5px;
	padding: 0 2px;
	font-size: 17px;
	line-height: 17px;
	cursor: pointer;
}


/**/
/* buttons */
/**/
.labels-form .button {
	float: right;
	height: 39px;
	overflow: hidden;
	margin: 10px 0 0 20px;
	padding: 0 25px;
	outline: none;
	border: 0;
	font: 300 15px/39px 'Open Sans', Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}


.labels-form [class^="icon-"] {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}
.labels-form .icon-append,
.labels-form .icon-prepend {
	position: absolute;
	top: 5px;
	width: 29px;
	height: 29px;
	font-size: 15px;
	line-height: 29px;
	text-align: center;
}
.labels-form .icon-append {
	right: 5px;
	padding-left: 3px;
	border-left-width: 1px;
	border-left-style: solid;
}
.labels-form .icon-prepend {
	left: 5px;
	padding-right: 3px;
	border-right-width: 1px;
	border-right-style: solid;
}
.labels-form .input .icon-prepend + input,
.labels-form .textarea .icon-prepend + textarea {
	padding-left: 46px;
}
.labels-form .input .icon-append + input,
.labels-form .textarea .icon-append + textarea {
	padding-right: 46px;
}
.labels-form .input .icon-prepend + .icon-append + input,
.labels-form .textarea .icon-prepend + .icon-append + textarea {
	padding-left: 46px;
}


/**/
/* grid */
/**/
.labels-form .row {
	margin: 0 -15px;
}
.labels-form .row:after {
	content: '';
	display: table;
	clear: both;
}
.labels-form .col {
	float: left;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.labels-form .col-1 {
	width: 8.33%;
}
.labels-form .col-2 {
	width: 16.66%;
}
.labels-form .col-3 {
	width: 25%;
}
.labels-form .col-4 {
	width: 33.33%;
}
.labels-form .col-5 {
	width: 41.66%;
}
.labels-form .col-6 {
	width: 50%;
}
.labels-form .col-8 {
	width: 66.67%;
}
.labels-form .col-9 {
	width: 75%;
}
.labels-form .col-10 {
	width: 83.33%;
}
@media screen and (max-width: 600px) {
	.labels-form .col {
		float: none;
		width: 100%;
	}
}


/**/
/* tooltips */
/**/
.labels-form .tooltip {
	position: absolute;
	z-index: 1;
	left: -9999px;
	padding: 2px 8px 3px;
	font-size: 11px;
	line-height: 16px;
	font-weight: 400;
	background: rgba(0,0,0,0.9);
	color: #fff;
	opacity: 0;
	transition: margin 0.3s, opacity 0.3s;
	-o-transition: margin 0.3s, opacity 0.3s;
	-ms-transition: margin 0.3s, opacity 0.3s;
	-moz-transition: margin 0.3s, opacity 0.3s;
	-webkit-transition: margin 0.3s, opacity 0.3s;
}
.labels-form .tooltip:after {
	content: '';
	position: absolute;
}
.labels-form .input input:focus + .tooltip,
.labels-form .textarea textarea:focus + .tooltip {
	opacity: 1;	
}

.labels-form .tooltip-top-right {
	bottom: 100%;
	margin-bottom: 15px;
}
.labels-form .tooltip-top-right:after {
	top: 100%;
	right: 16px;	
	border-top: 4px solid rgba(0,0,0,0.9);
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.labels-form .input input:focus + .tooltip-top-right,
.labels-form .textarea textarea:focus + .tooltip-top-right {
	right: 0;
	left: auto;
	margin-bottom: 5px;
}

.labels-form .tooltip-top-left {
	bottom: 100%;
	margin-bottom: 15px;
}
.labels-form .tooltip-top-left:after {
	top: 100%;
	left: 16px;
	border-top: 4px solid rgba(0,0,0,0.9);
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.labels-form .input input:focus + .tooltip-top-left,
.labels-form .textarea textarea:focus + .tooltip-top-left {
	right: auto;
	left: 0;
	margin-bottom: 5px;
}

.labels-form .tooltip-right {
	top: 9px;
	white-space: nowrap;
	margin-left: 15px;
}
.labels-form .tooltip-right:after {
	top: 6px;
	right: 100%;
	border-top: 4px solid transparent;
	border-right: 4px solid rgba(0,0,0,0.9);
	border-bottom: 4px solid transparent;
}
.labels-form .input input:focus + .tooltip-right,
.labels-form .textarea textarea:focus + .tooltip-right {
	left: 100%;
	margin-left: 5px;
}

.labels-form .tooltip-left {
	top: 9px;
	white-space: nowrap;
	margin-right: 15px;
}
.labels-form .tooltip-left:after {
	top: 6px;
	left: 100%;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 4px solid rgba(0,0,0,0.9);
}
.labels-form .input input:focus + .tooltip-left,
.labels-form .textarea textarea:focus + .tooltip-left {
	right: 100%;
	left: auto;
	margin-right: 5px;
}

.labels-form .tooltip-bottom-right {
	top: 100%;
	margin-top: 15px;
}
.labels-form .tooltip-bottom-right:after {
	bottom: 100%;
	right: 16px;	
	border-right: 4px solid transparent;
	border-bottom: 4px solid rgba(0,0,0,0.9);
	border-left: 4px solid transparent;
}
.labels-form .input input:focus + .tooltip-bottom-right,
.labels-form .textarea textarea:focus + .tooltip-bottom-right {
	right: 0;
	left: auto;
	margin-top: 5px;
}

.labels-form .tooltip-bottom-left {
	top: 100%;
	margin-top: 15px;
}
.labels-form .tooltip-bottom-left:after {
	bottom: 100%;
	left: 16px;
	border-right: 4px solid transparent;
	border-bottom: 4px solid rgba(0,0,0,0.9);
	border-left: 4px solid transparent;
}
.labels-form .input input:focus + .tooltip-bottom-left,
.labels-form .textarea textarea:focus + .tooltip-bottom-left {
	right: auto;
	left: 0;
	margin-top: 5px;
}


/**/
/* normal state */
/**/
.labels-form .input input,
.labels-form .select select,
.labels-form .textarea textarea,
.labels-form .radio i,
.labels-form .checkbox i,
.labels-form .toggle i,
.labels-form .icon-append,
.labels-form .icon-prepend {
	border-color: #e5e5e5;
	transition: border-color 0.3s;
	-o-transition: border-color 0.3s;
	-ms-transition: border-color 0.3s;
	-moz-transition: border-color 0.3s;
	-webkit-transition: border-color 0.3s;
}
.labels-form .toggle i:before {
	background-color: #2da5da;	
}
.labels-form .rating label {
	color: #ccc;
	transition: color 0.3s;
	-o-transition: color 0.3s;
	-ms-transition: color 0.3s;
	-moz-transition: color 0.3s;
	-webkit-transition: color 0.3s;
}
.labels-form .button {
	background-color: #2da5da;
	opacity: 0.8;
	transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-webkit-transition: opacity 0.2s;
}
.labels-form .button.button-secondary {
	background-color: #b3b3b3;
}
.labels-form .icon-append,
.labels-form .icon-prepend {
	color: #ccc;
}


/**/
/* hover state */
/**/
.labels-form .input:hover input,
.labels-form .select:hover select,
.labels-form .textarea:hover textarea,
.labels-form .radio:hover i,
.labels-form .checkbox:hover i,
.labels-form .toggle:hover i {
	border-color: #8dc9e5;
}
.labels-form .rating input + label:hover,
.labels-form .rating input + label:hover ~ label {
	color: #2da5da;
}
.labels-form .button:hover {
	opacity: 1;
}


/**/
/* focus state */
/**/
.labels-form .input input:focus,
.labels-form .select select:focus,
.labels-form .textarea textarea:focus,
.labels-form .radio input:focus + i,
.labels-form .checkbox input:focus + i,
.labels-form .toggle input:focus + i {
	border-color: #2da5da;
}


/**/
/* checked state */
/**/
.labels-form .radio input + i:after {
	background-color: #2da5da;	
}
.labels-form .checkbox input + i:after {
	color: #2da5da;
}
.labels-form .radio input:checked + i,
.labels-form .checkbox input:checked + i,
.labels-form .toggle input:checked + i {
	border-color: #2da5da;	
}
.labels-form .rating input:checked ~ label {
	color: #2da5da;	
}


/**/
/* error state */
/**/
.labels-form .state-error input,
.labels-form .state-error select,
.labels-form .state-error textarea,
.labels-form .radio.state-error i,
.labels-form .checkbox.state-error i,
.labels-form .toggle.state-error i {
	background: #fff0f0;
}
.labels-form .state-error select + i {
	background: #fff0f0;
	box-shadow: 0 0 0 12px #fff0f0;
}
.labels-form .toggle.state-error input:checked + i {
	background: #fff0f0;
}
.labels-form .note-error {
	color: #ee9393;	
}


/**/
/* success state */
/**/
.labels-form .state-success input,
.labels-form .state-success select,
.labels-form .state-success textarea,
.labels-form .radio.state-success i,
.labels-form .checkbox.state-success i,
.labels-form .toggle.state-success i {
	background: #f0fff0;
}
.labels-form .state-success select + i {
	background: #f0fff0;
	box-shadow: 0 0 0 12px #f0fff0;
}
.labels-form .toggle.state-success input:checked + i {
	background: #f0fff0;
}
.labels-form .note-success {
	color: #6fb679;
}


/**/
/* disabled state */
/**/
.labels-form .input.state-disabled input,
.labels-form .select.state-disabled,
.labels-form .textarea.state-disabled,
.labels-form .radio.state-disabled,
.labels-form .checkbox.state-disabled,
.labels-form .toggle.state-disabled,
.labels-form .button.state-disabled {
	cursor: default;
	opacity: 0.5;
}
.labels-form .input.state-disabled:hover input,
.labels-form .select.state-disabled:hover select,
.labels-form .textarea.state-disabled:hover textarea,
.labels-form .radio.state-disabled:hover i,
.labels-form .checkbox.state-disabled:hover i,
.labels-form .toggle.state-disabled:hover i {
	border-color: #e5e5e5;
}




.labels-form .btn-warning {
  color: #fff;
  background-color: #fd4913;
  border-color: #ea3c07 !important; 
  height: 70px !important; 
  font-size: 24px; font-weight:700;
  margin-bottom:20px;
 

border-style:solid; 
    border-radius:5px;
   


}
.labels-form .btn-warning:hover,
.labels-form .btn-warning:focus,
.labels-form .btn-warning.focus,
.labels-form .btn-warning:active,
.labels-form .btn-warning.active,
.labels-form .open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #ea3c07;
  border-color: #fd4913 !important; 
}
.labels-form .btn-warning:active,
.labels-form .btn-warning.active,
.labels-form .open > .dropdown-toggle.btn-warning {
  background-image: none;
}








/* carousel */
#quote-carousel 
{
  padding: 0 0px 30px 0px !important;
  margin-top: 10px;
}

#quote-carousel blockquote {
    border-left: 0px solid #eee;
    font-size: 16px !important;
    margin: 0 0 0px;
    padding: 0px !important;
}



/* Control buttons  */
#quote-carousel .carousel-control
{
  background: none;
  color: #222;
  font-size: 2.3em;
  text-shadow: none;
  margin-top: 30px;
}
/* Previous button  */
#quote-carousel .carousel-control.left 
{
  left: -12px;
}
/* Next button  */
#quote-carousel .carousel-control.right 
{
  right: -12px !important;
}
/* Changes the position of the indicators */
#quote-carousel .carousel-indicators 
{
  right: 50%;
  top: 150px;
  bottom: 0px;
  margin-right: -150px;
}
/* Changes the color of the indicators */
#quote-carousel .carousel-indicators li 
{
 border: solid 1px #FFF; 
}
#quote-carousel .carousel-indicators .active 
{
  background: #fff;
}
#quote-carousel img
{
  width: 250px;
  height: 100px
}
/* End carousel */

.item blockquote {
    border-left: none; 
    margin: 0;
}

.item blockquote img {
    margin-bottom: 10px;
}

.item blockquote p:before {
    content: "\f10d";
    font-family: 'Fontawesome';
    float: left;
    margin-right: 10px;
}



/**
  MEDIA QUERIES
*/

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) { 
    #quote-carousel 
    {
      margin-bottom: 0;
      padding: 0 40px 30px 40px;
    }
    
}

/* Small devices (tablets, up to 768px) */
@media (max-width: 768px) { 
    
    /* Make the indicators larger for easier clicking with fingers/thumb on mobile */
    
    #quote-carousel .carousel-indicators {
        bottom: -20px !important;  
    }
    #quote-carousel .carousel-indicators li {
        display: inline-block;
        margin: 0px 5px;
        width: 15px;
        height: 15px;
    }
    #quote-carousel .carousel-indicators li.active {
        margin: 0px 5px;
        width: 20px;
        height: 20px;
    }
}






/*Parallax Support*/


.parallax-quote {
    background: url(../images/bg_support.jpg)  ;
	background-color:#fd4913;
    color: #fff;
    padding: 30px 0 0 0;
    position: relative;
    text-align: center;
}
.parallax-quote::after {

    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.parallax-quote::before {
    
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.parallax-quote-in {
    padding: 0 80px;
    position: relative;
    z-index: 1;
}
.parallax-quote-in p {
    color: #fff;
    font-size: 28px;
    text-transform: uppercase;
}
.parallax-quote-in p::after, .parallax-quote-in p::before {
    content: " \" ";
    font-family: Tahoma;
    position: absolute;
}
.parallax-quote-in p::after {
    margin-left: 3px;
}
.parallax-quote-in p::before {
    margin-left: -15px;
}
.parallax-quote-in small {
    color: #bbb;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
}

.customer p { font-size:16px !important;  }
.customer h2 { font-size:32px !important;    }

