body{
    font-family: 'Poppins', sans-serif;
	font-size: 16px;
	color: #666666;
	letter-spacing: .025em;
	background-color: #FFF;
	font-weight: 400;
	width: 100%;
	overflow-x: hidden;
}

/********************************************************************************
* Links
*********************************************************************************/
a{
	color: #c41f31;
	-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: #666;
	text-decoration: none;
}


/********************************************************************************
* Headings
*********************************************************************************/
h1, h2, h3, h4, h5, h6{
	color: #020202;
    font-family: "Poppins",sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
	text-transform: uppercase;
}
h1{
	font-size: 48px;
}
h2{
	font-size: 36px;
}
h3{
	font-size: 30px;
}
h4{
	font-size: 24px;
}
h5{
	font-size: 20px;
}
h6{
	font-size: 18px;
}
.section-heading {
	margin-top: 0;
}
.section-heading hr {
	width: 90px;
	height: 3px;
	background-color: #c41f31;
	margin: 15px 0 30px 0;
}
.section-heading.text-center hr{
	margin-left: auto;
	margin-right: auto;
}
h1.section-heading hr{
	margin-top: 25px;
}
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em{
	color: #c41f31;
	font-style: normal;
}
.normalcase{
	text-transform: none;
}
/********************************************************************************
* Miscellaneous Type Setting
*********************************************************************************/
p{
	margin-bottom: 30px;
}

hr{
	border: none;
	width: 100%;
	height: 2px;
	background-color: #CDCDCD;
}
blockquote{
	display:block;
	background: #E6E6E6;
	padding: 15px 20px 15px 45px;
	margin: 0 0 20px;
	position: relative;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: normal;
	color: #71787e;
	text-align: justify;
	border-left: 15px solid #666;
	border-right: 3px solid #666;
}

blockquote::before{
	content: "\201C"; /*Unicode for Left Double Quote*/
	font-family: Georgia, serif;
	font-size: 60px;
	font-weight: 700;
	color: rgba(52, 61, 70, .2);
	position: absolute;
	left: 10px;
	top:5px;
}

blockquote::after{
  /*Reset to make sure*/
  content: "";
}

.well{	
	border: none;
	border-radius: 0;
	box-shadow: none;
	background-color: #E6E6E6;
	overflow: hidden;
}

.panel-default{
	border: none;
	border-radius: 0;
	box-shadow: none;
	background-color: #E6E6E6;
}
.panel-default > .panel-heading{
	border: none;
	border-radius: 0;
	background-color: #DDD;
}
.panel-group .panel{
	border-radius: 0;	
}
.panel-primary{
	border: none;
	border-radius: 0;
	box-shadow: none;
	background-color: #E6E6E6;
}
.panel-primary > .panel-heading{
	border: none;
	border-radius: 0;
	background-color: #EE1C25;
    padding: 3px 15px;
}

.panel-heading h3 { 
	color: #FFF;
    font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: bold;
}

.panel-primary > .panel-heading > .panel-title > a {
	color: inherit;
	font-weight: bold;
    font-size: 26px;
}
.alignright{
	float: right;
	margin-left: 30px;
	margin-bottom: 30px;	
}
.alignleft{
	float: left;
	margin-right: 30px;
	margin-bottom: 30px;	
}

.img-thumbnail{
	border: none;
	padding: 0;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.16),0px 2px 5px 0px rgba(0, 0, 0, 0.26);
}

/********************************************************************************
* Lists
*********************************************************************************/
ul.styled-list, .faq-list ul{
   list-style: none;
   margin: 0 0 30px 0;
   padding: 0; 
   overflow:hidden;
}
ul.styled-list li, .faq-list ul li{
	border-bottom: 1px solid #F5F5F5;
    display: block;
    list-style: none outside none;
    margin-left: 15px;
    padding: 12px 15px 12px 40px;
    position: relative;
}
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:before, .faq-list ul li:before{
	font-family: 'FontAwesome';
	content:"\f138\00a0";
	color: #c41f31;
    display: block;
    font-size: 1.25em;
    left: 1px;
    position: absolute;
    top: 8px;
}
ul.styled-list li ul li:before, .faq-list ul li ul li:before{
	font-family: 'FontAwesome';
	content:"\f054\00a0";
	color: #c41f31;
	display: block;
    left: 1px;
    position: absolute;
}


ol.styled-list {
	margin: 0 0 30px 0;
	padding: 0; 
	list-style: none;
	counter-reset: counter;
}
ol.styled-list > li {
	position: relative;
	margin-bottom: 25px;
	border: 3px solid #CDCDCD;
	padding: 15px 15px 15px 30px;
}
ol.styled-list > li:before {
	counter-increment: counter;
	content: counter(counter);
	position: absolute;
	top: 50%;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #c41f31;
	background-color: #F8F8F8;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	left: -15px;
	width: 30px;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
ol.styled-list > li:last-child {
	margin-bottom: 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-white{
	backgroundcolor: #FFF;
}
.section-light{
	background-color: #F8F8F8;
}
.section-dark{
	background-color: #202020;
}


/********************************************************************************
* Buttons
*********************************************************************************/
.btn, .button{
	color: #FFF;
	background-color: #c41f31;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	border-radius: 0;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: .05em;
	border: none;
	padding: 15px 20px;
	text-shadow: none;
	font-weight: 700;
  	box-shadow: 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;
}
.btn:hover, .btn:active, .btn:focus, .button:hover, .button:active, .button:focus{
	color: #FFF;
	background-color: #666;
}
.btn:active, .button:active{
	position:relative;
	top: 1px;
}
.btn-small{
	font-size: 14px;	
}
.btn-large{
	font-size: 20px;
	line-height: 20px;
	padding: 20px 30px;
}
.btn-xlarge{
	font-size: 36px;
	padding: 40px 20px;
}
.btn-wide{
	width: 100%;	
}
.btn.icon-left .fa{
	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 .fa{
	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 .fa, .btn.icon-right:active .fa{
	position: absolute;
}
.btn-large.icon-left .fa, .btn-large.icon-right .fa{
	padding: 23px 20px;
	font-size: 24px;
}

.btn-text{
	padding: 10px 0;
	background-color: transparent;
	box-shadow: none;
	color: #c41f31;
}
.btn-text:hover, .btn-text:focus, .btn-text:active{
	color: #666;
	background-color: transparent;
}

/********************************************************************************
* Header
*********************************************************************************/
header.header-wrapper{
	z-index: 1001;
  	box-shadow: none;
	background-color: #FFF;
}

header.header-wrapper .logo{
	max-height: 150px;
}

.masthead {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
	margin: 0 -25px 0 25px;
}

.masthead > div{
	-webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
	margin: 0 25px;
}

/* Logo Column */
.col-logo {
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

/* Nav Column */
.col-nav {
    -webkit-flex: 2 1 auto;
    -ms-flex: 2 1 auto;
    flex: 2 1 auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

/* Social Column */
header.header-wrapper .col-social {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}
header.header-wrapper .col-social .social-container{
	display: inline-block;
    list-style: outside none none;
    margin: 0;
    padding: 0;
    text-align: right;
	float: right;
}
header.header-wrapper .col-social .social-container li{
	display: inline-block;
}
header.header-wrapper .col-social .social-container li a{
	font-size: 24px;
	padding: 0 6px;
}
header.header-wrapper .col-social .social-container li:first-child a{
	padding-left: 0;
}
header.header-wrapper .col-social .social-container li:last-child a{
	padding-right: 0;
}

/* Login Column */
header.header-wrapper .col-login {
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}
header.header-wrapper .col-login .btn{
	height: 100%;
	display: flex;
	align-content: center;
	justify-content: center;
	flex-direction: column;
}
header.header-wrapper .col-login .navbar-user{
	margin-bottom: 0;
	flex: 0 1 auto;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
	height: 100%;
}
header.header-wrapper .col-login .navbar-user nav, header.header-wrapper .col-login .navbar-user nav .navbar-nav, header.header-wrapper .col-login .navbar-user nav .navbar-nav > li, header.header-wrapper .col-login .navbar-user nav .navbar-nav > li > a{
	height: 100%;
	display: flex;
	align-content: center;
	justify-content: center;
	flex-direction: column;
}
header.header-wrapper .col-login .navbar-user nav .navbar-nav > li{
	margin-right: 15px;
}
header.header-wrapper .col-login .navbar-user nav .navbar-nav > li > a{
	padding-right: 45px;
	padding-left: 15px;
	position: relative;
}
header.header-wrapper .col-login .navbar-user nav .navbar-nav > li > a .caret{
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
header.header-wrapper .col-login .avatar{
	border-radius: 50%;
}
.btn-login span{
	display: block;
}

/********************************************************************************
* Main Navigation
*********************************************************************************/
.navbar-default{
	border: none;
	margin-bottom: 0;
	background-color: transparent;
	min-height: 0;
}
.navbar-default .navbar-nav{
	text-align: center;
	float: none;
}
.navbar-default .navbar-nav > li{
	margin: 0 18px;
	float: none;
	display: inline-block;
}
.navbar-default .navbar-nav > li:first-child{
	margin-left: 0;
}
.navbar-default .navbar-nav > li:last-child{
	margin-right: 0;
}
.navbar-default .navbar-nav > li > a{
	background-color: transparent;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 20px;
	color: #020202;
	letter-spacing: .05em;
	padding: 14px 0 12px 0;
	text-align: center;
	position: relative;
}
.navbar-default .navbar-nav > li > a::after, .navbar-default .navbar-nav > li > a::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    right: 0;
    height: 3px;
}
.navbar-default .navbar-nav > li > a::before {
    -webkit-transition: width .4s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
    transition: width .4s cubic-bezier(0.51, 0.18, 0, 0.88) .1s;
    background: #999;
}
.navbar-default .navbar-nav > li > a::after {
    -webkit-transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    transition: width .2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
    background: #c41f31;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus{
	color: #c41f31;
	background-color: transparent;
}
.navbar-default .navbar-nav > li > a:hover::after, .navbar-default .navbar-nav > li > a:hover::before {
    width: 100%;
    left: 0;
}

.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus{
	color: #CCC;
	background-color: transparent;
}

.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus{
	color: #c41f31;
	background-color: transparent;
}

/* Dropdown */
.navbar-nav > li > .dropdown-menu{
	border-radius: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: left;
	border: none;
	background-color: #020202;
}
.navbar-nav > li > .dropdown-menu:after {
	bottom: 100%;
	left: 15px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(2, 2, 2, 0);
	border-bottom-color: #020202;
	border-width: 10px;
	margin-left: -10px;
}
.navbar-right.navbar-nav > li > .dropdown-menu:after{
	left: auto;
	right: 15px;
}
.navbar-nav > li > .dropdown-menu > li > a{
	color: #FFF;
	font-size: 15px;
	padding: 10px 20px;
	letter-spacing: .025em;
	font-family: "Poppins",sans-serif;
}
.navbar-nav > li > .dropdown-menu > li > a:hover, .navbar-nav > li > .dropdown-menu > li > a:focus{
	color: #FFF;
	background-color: #c41f31;
}
.navbar-nav > li > .dropdown-menu > .active > a, .navbar-nav > li > .dropdown-menu > .active > a:hover, .navbar-nav > li > .dropdown-menu > .active > a:focus{
	color: #999;
	background-color: transparent;
}

.navbar-default .navbar-toggle{
	background-color: transparent;
	border: 3px solid #999;
	border-radius: 0;
}
.navbar-default .navbar-toggle .icon-bar{
	background-color: #999;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus{
	background-color: #c41f31;
	border-color: #c41f31;
}
.navbar-default .navbar-toggle:hover .icon-bar, .navbar-default .navbar-toggle:focus .icon-bar{
	background-color: #FFF;
}
.navbar-default .navbar-brand {
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.navbar-default .navbar-brand:hover{
	color: #c41f31;
}

/********************************************************************************
* Main Navigation :: Drawer
*********************************************************************************/
.drawer-contents{
	background-color: #E6E6E6;
	padding-bottom: 80px;
}
.drawer-right{
	border-left: 3px solid #CDCDCD !important;
}
.drawer-right, .drawer-heading{
	border-color: #E6E6E6;
}
.drawer-nav, .drawer-fullnav{
	padding: 10px 30px;
}
.drawer-nav li, .drawer-fullnav li{
	margin: 0;
	clear: both;
}
.drawer-nav li a, .drawer-fullnav li a{
	border-radius: 0;
	color: #020202;
	border-bottom: 2px solid #CDCDCD;
	padding: 15px 0;
	white-space: normal;
	line-height: 16px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: .075em;
}
.drawer-nav li a:hover, .drawer-fullnav li a:hover, .drawer-nav li a:focus, .drawer-fullnav li a:focus{
	background-color: transparent;
	color: #C41F31;
}
.drawer-nav li.active a, .drawer-fullnav li.active a, .drawer-nav li.active a:hover, .drawer-fullnav li.active a:hover, .drawer-nav li.active a:focus, .drawer-fullnav li.active a:focus{
	background-color: transparent;
	color: #A1A1A1;
}
.drawer-nav .dropdown-menu{
	background-color: #CDCDCD;
	border-radius: 0;
	border: none;
	padding: 0;
	box-shadow: none;
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}
.drawer-nav .dropdown-menu li{
	margin-bottom: 0;
}
.drawer-nav .dropdown-menu li a {
    padding: 10px 15px;
	text-transform: none;
	letter-spacing: normal;
	font-weight: 400;
}
.drawer-nav .dropdown-menu li:last-child a{
	border-bottom: 0;
}

.drawer-controls{
	text-align: center;
	padding: 10px 10px 0 0;
	height: auto;
}
.btn-menu-toggle{
    font-size: 36px;
    height: 45px;
    line-height: 0;
	padding: 14px 12px;
    width: 45px;
	margin-top: 10px;
	
	-moz-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
	transition: all .4s ease-in;
}
.btn-menu-toggle.folded{
}
.btn-menu-toggle:hover, .btn-menu-toggle:focus, .btn-menu-toggle:active{
	outline: none;
}
.btn-menu-toggle .icon-bar {
    border-radius: 1px;
    display: block;
    height: 3px;
    width: 22px;
	background-color: #FFF;
	-webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
          transition-timing-function: cubic-bezier(0.7, 0, 0, 0.7);
}
.btn-menu-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}
.btn-menu-toggle:not(.folded) .icon-bar:nth-child(1) {
	-webkit-transform: translateY(7px) rotate(45deg);
	-ms-transform: translateY(7px) rotate(45deg);
	transform: translateY(7px) rotate(45deg);
}
.btn-menu-toggle:not(.folded) .icon-bar:nth-child(2) {
	opacity: 0;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
}
.btn-menu-toggle:not(.folded) .icon-bar:nth-child(3) {
	-webkit-transform: translateY(-7px) rotate(-45deg);
	-ms-transform: translateY(-7px) rotate(-45deg);
	transform: translateY(-7px) rotate(-45deg);
}

/* Drawer Header */
.drawer-heading{
	background-color: #020202;
	border: none;
}
.drawer-heading .nav-pills, .drawer-heading .nav-pills > li{
	width: auto;
}
.drawer-heading .nav-pills > li > a{
	color: #e6e6e6;
	font-size: 14px;
}
.drawer-heading .nav-pills > li > a:hover, .drawer-heading .nav-pills > li > a:focus{
	color: #c41f31;
	background-color: transparent;
}

/* Drawer Search */
.drawer-footer{
	padding: 20px 30px;
	background-color: #CDCDCD;
}

/********************************************************************************
* Page Header Home
*********************************************************************************/
.section-page-header-home{
	position:relative;
	z-index: 0;
	overflow:hidden;
	background-color: #000;
}
.section-page-header-home .page-header-map::after{
    background-color: rgba(2, 2, 2, .6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
	opacity: 1;
    -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-home.revealLocations .page-header-map::after{
	top: -100%;
}
.page-header-home{
	height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
	opacity: 1;
	-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;
}
.section-page-header-home.revealLocations .page-header-home{
	top: -100%;
}
.page-header-home-text{
	position: absolute;
	color: #FFF;
	width: 60%;
	font-size: 20px;
	text-align: center;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.page-header-home-text h2{
	color: #fff;
}
.page-header-home-text h2 strong{
	font-size: 420%;
}
.page-header-home-text .section-heading hr{
	width: 130px;
	height: 5px;
}
.page-header-home-text .btn{
}
/********************************************************************************
* Page Header
*********************************************************************************/
.section-page-header{
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center bottom;
	position: relative;
	background-color: #E6E6E6;
	background-image: url('../img/bg-header.png');
	padding: 50px 0;
}

.section-page-header .page-header{
	border: none;
	margin: 0;
	padding: 0;
	z-index: 2;
	position: relative;
	width: 100%;
}
.page-header h1{
	margin: 0;
}
.section-page-header .page-header .row > div:first-child{
	padding-left: 0;
}
.section-page-header .page-header .row > div:last-child{
	padding-right: 0;
}
.breadcrumbs{
	text-align: right;
	font-size: 15px;
	letter-spacing: .025em;
}
.breadcrumbs .separator{
	color: #cdcdcd;
	padding: 0 5px;
}
.breadcrumbs a { 
}

.breadcrumbs a:hover { 
}

/********************************************************************************
* Content
*********************************************************************************/
.section-content { 
	padding: 90px 0;
}
.page-template-template-home .section-content p:last-child, .section-content p:last-child{
	margin-bottom: 0;
}


.card {
	border: none;
	border-radius: 0;
	background-color: #F8F8F8;
	font-size: 14px;
}
.card-inverse {
	background-color: #343d46;
}
.card-img-bottom {
	border-radius: 0;
}
.card-block{
	padding: 30px;
}
.card-block p:last-of-type{
	margin-bottom: 0;
}
.card-meta{
	border-top: 2px solid rgba(52, 61, 70, 0.2);
	margin-top: 15px;
	padding-top: 15px;
}
.card-meta small {
	display: inline-block;
	margin-right: 10px;
	overflow-wrap: break-word;
	word-break: break-all;
}
.card-meta small:last-child {
	margin-right: 0;
}
.card-meta small .fa {
	margin-right: 3px;
}
/********************************************************************************
* Sidebar
*********************************************************************************/
.sidebar{
}
.sidebar .widget{
	margin-bottom: 50px;
}
.sidebar > .widget:last-child{
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0;
}
.sidebar .widget h3{
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 3px solid #e6e6e6;
	position: relative;
}
.sidebar .widget h3:after{
	content: '';
	width: 50px;
	height: 3px;
	background-color: #c41f31;
	position: absolute;
	bottom: -3px;
	left: 0;
}
.sidebar .widget .widget-content{
	padding: 30px 20px;
	background-color: #e6e6e6;
}

/********************************************************************************
* Sidebar Navigation
*********************************************************************************/
.sidebar .nav-stacked > li > a{
	color: #666666;
	font-size: 15px;
	padding: 12px 0;
	line-height: 1;
}
.sidebar .nav-stacked > li:first-child > a{
	padding-top: 0;
}
.sidebar .nav-stacked > li:last-child > a{
	padding-bottom: 0;
}
.sidebar .nav-stacked > li > a:hover, .sidebar .nav-stacked > li > a:focus{
	background-color: transparent;
	color: #c41f31;
}
.sidebar .nav-stacked > li > a .count{
	font-size: 60%;
}
/********************************************************************************
* Sidebar :: Recent Activity
*********************************************************************************/
.sidebar .widget-blog-recent{
	font-size: 12px;
}
.sidebar .widget-blog-recent .widget-content article{
	border-bottom: 2px solid #cdcdcd;
	padding: 15px 0;
}
.sidebar .widget-blog-recent .widget-content article:first-child{
	padding-top: 0;
}
.sidebar .widget-blog-recent .widget-content article:last-child{
	padding-bottom: 0;
	border-bottom: 0;
}
.sidebar .widget-blog-recent h6{
	text-transform: none;
	margin-bottom: 3px;
	font-size: 15px;
}
.sidebar .widget-blog-recent h6 a{
	color: #020202;
}
/********************************************************************************
* Posts
*********************************************************************************/

/* Archive Pages */
#ajax-load-more .alm-listing li{
	margin-bottom: 0;
}
article.post-archive{
	padding: 15px;
}
article.post-archive.status-sticky{
	background-color: #e6e6e6;
}
article.post-archive .row > div:last-child{
	padding-left: 0;
}
article.post-archive .entry-avatar img{
	position: relative;
	left: auto;
	top: auto;
	border-radius: 50%;
}
article.post-archive .entry-title{
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
	width: 100%;
}
article.post-archive .entry-title a{
	color: #020202;
}
article .entry-meta{
	margin: 0;
	padding: 0;
	list-style: none;
}
article.post-archive .entry-meta {
	line-height: 16px;
}
article .entry-meta li{
	display: inline-block;
	padding: 0 10px;
	margin: 0;
	border-right: 2px solid #cdcdcd;
}
article.post-archive .entry-meta li{
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
	max-width: 90%;
}

article .entry-meta li:first-child{
	padding-left: 0;
}
article .entry-meta li:last-child{
	padding-right: 0;
	border-right: 0;
}

/* Single */
.single-post article{
	
}
.single-post article header h2{
	margin-bottom: 30px;
}
.single-post article footer{
	margin-bottom: 50px;
	margin-top: 30px;
	padding-top:20px;
	padding-bottom: 20px;
	border-top: 2px solid #cdcdcd;
	border-bottom: 2px solid #cdcdcd;
}

/* Comments */
ol.media-list { list-style:none; margin:0 0 1em; padding:0; text-indent:0; }
ol.media-list li { }
ol.media-list li.alt { }
ol.media-list li.bypostauthor {}
ol.media-list li.byuser {}
ol.media-list li.comment-author-admin {}
ol.media-list li.comment { border-bottom:2px solid #cdcdcd; padding:1em; margin-top: 0; }
ol.media-list li.comment .avatar { border-radius: 50%; }
ol.media-list li.comment div.comment-author {}
ol.media-list li.comment div.vcard { font:normal 16px georgia,times,serif; }
ol.media-list li.comment div.vcard cite.fn { font-style:normal; }
ol.media-list li.comment div.vcard cite.fn a.url {}
ol.media-list li.comment div.vcard img.avatar { border:5px solid #ccc; float:right; margin:0 0 1em 1em; }
ol.media-list li.comment div.vcard img.avatar-32 {}
ol.media-list li.comment div.vcard img.photo {}
ol.media-list li.comment div.vcard span.says {}
ol.media-list li.comment div.commentmetadata {}
ol.media-list li.comment div.comment-meta { font-size:9px; }
ol.media-list li.comment div.comment-meta a { color:#ccc; }
ol.media-list li.comment p { font-size:14px; margin:0 0 1em; }
ol.media-list li.comment ul { font-size:11px; list-style:square; margin:1em 0; }
ol.media-list li.comment ul .avatar{ width: 40px; height: 40px; }
ol.media-list li.comment ul .media, ol.media-list li.comment ul .media-body{overflow: auto;}
ol.media-list li.comment .comment-reply-link {
	font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .1em;
    display: inline-block;
    padding: 3px 0;
    font-size: 80%; }
ol.media-list li.comment ul.thread-alt { list-style:none; margin:1em 0 0; text-indent:0; }
ol.media-list li.comment ul.thread-alt li {}
ol.media-list li.comment ul.thread-alt li.alt {}
ol.media-list li.comment ul.thread-alt li.bypostauthor {}
ol.media-list li.comment ul.thread-alt li.byuser {}
ol.media-list li.comment ul.thread-alt li.comment { background-color: rgba(255,255,255,.2); }
ol.media-list li.comment ul.thread-alt li.comment-author-admin {}
ol.media-list li.comment ul.thread-alt li.depth-2 { border-left:8px solid #cdcdcd; margin:0 0 .25em .25em; }
ol.media-list li.comment ul.thread-alt li.depth-3 { border-left:8px solid #cdcdcd; margin:0 0 .25em .25em; }
ol.media-list li.comment ul.thread-alt li.depth-4 { border-left:8px solid #cdcdcd; margin:0 0 .25em .25em; }
ol.media-list li.comment ul.thread-alt li.depth-5 {}
ol.media-list li.comment ul.thread-alt li.odd {}
ol.media-list li.even { background:#e6e6e6; }
ol.media-list li.odd { background:transparent; }
ol.media-list li.parent { border-left:5px solid #111; }
ol.media-list li.thread-alt { }
ol.media-list li.thread-even {}
ol.media-list li.thread-odd {}
ol.media-list .media-heading .date{ font-size: 60%; font-weight: normal; }
ol.media-list .comment-edit-link{ float: right; font-size: 12px; }

/********************************************************************************
* Staff
*********************************************************************************/
.card-staff{
	background-color: #E6E6E6;
	margin-bottom: 30px;
}
.card-staff .col-img{
	padding-left: 0;
}
.staff-img{
	position: relative;
}
.staff-img-border{
	border: 3px solid #c41f31;
	width: 100%;
	height: 100%;
	top: 20px;
	left: 20px;
	position: absolute;
	z-index: 2;
}
.card-staff .card-block {
    padding: 30px 0;
}



/********************************************************************************
* CTAs
*********************************************************************************/
.section-cta .btn-large{
	padding: 30px 15px;
	position: relative;
	z-index: 1;
}
.section-badges{
	background-color: #F5F5F5;
	padding: 30px 0;
}
.section-badges h4{
	margin-bottom: 5px;
}
.section-badges p{
	margin-bottom: 0;
}
.badge-image{
	margin: 0 auto;
    max-height: 100px;
}


/********************************************************************************
* Capsules
*********************************************************************************/
.section-capsules { 

}
.section-capsules .row > div{
	padding: 0;
}

.capsule { 
	background-color: #f8f8f8;
	padding: 70px 50px;
}
.capsule-dark{
	background-color: #e6e6e6;
}
.btn-capsule{
	margin-top: 20px;
	font-size: 36px;
	display: block;
}

/********************************************************************************
* Steps
*********************************************************************************/
.section-steps{
	
}

.step {
    background-color: #f8f8f8;
	width: 100%;
}
.step .col-image{
	background-size: cover;
	position: relative;
}
.step .col-image:after{
	content: '';
	width: 100%;
	height: 50px;
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,1)));
	background: -webkit-linea-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
.step .step-image-border{
	border: 3px solid #c41f31;
	width: 100%;
	height: 100%;
	top: 20px;
	left: 20px;
	position: absolute;
	z-index: 2;
}
.step .step-image-border:after{
	left: 100%;
	top: 90px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(196, 31, 49, 0);
	border-left-color: #c41f31;
	border-width: 20px;
	margin-top: -20px;
}
.step .step-image-border h2{
	position: absolute;
	bottom: -20px;
	left: -5px;
	color: #c41f31;
	margin: 0;
	font-size: 100px;
}
.step-content{
	padding: 100px 50px;
	font-size: 112%;
}
.step-content h3 {
    margin-bottom: 16px;
}
.step-content p {
    line-height: 26px;
    margin-bottom: 12px;
}
.nav-steps {
    list-style: none;
    padding: 0;
    position: relative;
    max-width: 600px;
    margin: 20px auto 26px;
    border: none;
    z-index: 0;
	text-align: center;
}
.nav-steps li::after {
    background: #e6e6e6 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    display: block;
    height: 4px;
    margin: 0 auto;
    position: absolute;
    right: -30px;
    top: 33px;
    width: 85%;
    z-index: -1;
}
.nav-steps li.visited::after {
    background: #c41f31;
}
.nav-steps li:last-child::after {
    width: 0;
}
.nav-steps li {
    display: inline-block;
    width: 18%;
    text-align: center;
    float: none;
}
.nav-tabs.nav-steps > li.active > a, .nav-tabs.nav-steps > li.active > a:hover, .nav-tabs.nav-steps > li.active > a:focus, .nav-steps li a:hover, .nav-steps li a:focus {
    border: none;
    background: transparent;
}
.nav-steps li a {
    padding: 0;
    border: none;
    color: #c41f31;
}
.nav-steps li .step-number {
    display: block;
    height: 68px;
    width: 68px;
    text-align: center;
    margin: 0 auto;
    background: #FFF;
    border: 3px solid #c41f31;
    line-height: 65px;
    font-size: 30px;
    border-radius: 50%;
	font-weight: 700;
}

.nav-steps li .step-name {
    font-size: 16px;
    margin-top: 10px;
	letter-spacing: .1em;
	font-weight: 700;
	text-transform: uppercase;
}
.nav-steps li.active .step-number, .nav-steps li.visited .step-number  {
    background: #c41f31;
    border-color: #c41f31;
}
.nav-steps li.active,
.nav-steps li.visited {
    color: #FFF;
}
.nav-steps li.active a,
.nav-steps li.active a:hover,
.nav-steps li.active a:focus,
.nav-steps li.visited a,
.nav-steps li.visited a:hover,
.nav-steps li.visited a:focus {
    color: #FFF;
}
.nav-steps li.active .step-name,
.nav-steps li.visited .step-name {
    font-weight: 600;
	color: #c41f31;
}


/********************************************************************************
* teleClinics
*********************************************************************************/
.section-teleclinics{
	padding-bottom: 0 !important;
	padding-top: 50px;
}
.teleclinics-container{
	background-color: #e6e6e6;
	margin-top: 30px;
}
.teleclinics-container > .container-fluid > .row > div{
	padding-left: 0;
	padding-right: 0;
	height: 100%;
}
.teleclinics-container .teleclinic{
	height: 100%;
	display: table;
}
.teleclinic .col-image{
	background-size: cover;
	position: relative;
}
.teleclinic .col-content{
	padding: 50px 30px;
}
.teleclinic .col-content a{
	display: inline-block;
}
.teleclinic .teleclinic-date{
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: #020202;
	margin-top: 30px;
}
.tribe-events-list-separator-month span {
    background-color: #F8F8F8;
}
/********************************************************************************
* Partners
*********************************************************************************/
.section-partners{
	padding: 40px 0;
	background-color: #FFF;
}
.section-partners-heading{
	border: 3px solid #c41f31;
	padding: 25px;
	position: relative;
	text-align: center;
}
.section-partners-heading:after{
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(196, 31, 49, 0);
	border-left-color: #c41f31;
	border-width: 15px;
	margin-top: -15px;
}
.section-partners-heading h2{
	margin: 0;
	line-height: 36px;
}
/* Logo Rotator */
.section-slider-partners{
	position: relative;
}
.section-partners .partner{
	height: 129px;
	padding: 0 15px;
	position: relative;
}
.section-partners .partner img{
	max-width: 60%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	
	-moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
}

#slider-partners {
	margin-left: 30px;
	margin-right: 30px;
}
#slider-partners li { 
    overflow:hidden; 
	position:relative;
	z-index: 0 !important;
	margin-left: 3px;
}
.section-partners .prevBtn, .section-partners .nextBtn{
	height: 100%;
	width: 50px;
	text-align: center;
	position: absolute;
	top: 50%;
	color: #c41f31;
	font-size: 48px;
	
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.section-partners .prevBtn{
	left: 0;
}
.section-partners .nextBtn{
	right: 0;
}
.section-partners .prevBtn i, .section-partners .nextBtn i{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.section-partners .prevBtn:hover, .section-partners .nextBtn:hover{
	color: #666;
}


/********************************************************************************
* Contact
*********************************************************************************/

.widget-contact .widget-content > .row > div:first-child {
	padding: 0;
}

/********************************************************************************
* Login page
*********************************************************************************/
.section-login{
	
}
.section-login .row > div:first-child{
	padding-left: 0;
}
.section-login .row > div:last-child{
	padding-right: 0;
}
.section-login .col-loginform, .section-login .col-join{
	background-color: #e6e6e6;
}
#loginform{
	background-color: #e6e6e6;
	padding: 20px;
	max-width: 100%;
}
#loginform label{
	margin-bottom: 0;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #020202;
}
#loginform .input{
	width: 100%;
}
/********************************************************************************
* Forms
*********************************************************************************/
.form-control, input.vfb-text, input[type="text"].vfb-text, input[type="tel"].vfb-text, input[type="email"].vfb-text, input[type="url"].vfb-text, textarea.vfb-textarea, .input {
	background: #FFF;
	border-color: #e6e6e6;
	border-radius: 0;
	border-style: solid;
	border-width: 1px !important;
	box-shadow: none;
	height: 45px;
	margin: 10px 0;
	padding: 4px 15px;
	color: #343d46;
	-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;
	font-size: 16px;
}
.form-control:focus, input.vfb-text:focus, input[type="text"].vfb-text:focus, input[type="tel"].vfb-text:focus, input[type="email"].vfb-text:focus, input[type="url"].vfb-text:focus, textarea.vfb-textarea:focus, .input:focus {
	border-color: #666;
	box-shadow: none;
	background-color: #FFF;
}
textarea.form-control, textarea.vfb-textarea {
	background-color: #FFF;
	padding: 15px 20px;
	height: auto;
}
.error {
    border-color: #c41f31;
    color: #c41f31;
}

.input-group .form-control{
	margin-top: 0;
}
.input-group-btn > .btn {
    padding: 13px 20px;
}

/* Visual Form Builder */
.visual-form-builder fieldset{
	background-color: #e6e6e6;
	border: none;
	border-radius: 0;
}
.vfb-submit, input[type="submit"].vfb-submit{
	color: #FFF;
	background-color: #c41f31;
	font-family: 'Poppins', sans-serif;
	text-transform: uppercase;
	border-radius: 0;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: .05em;
	border: none;
	padding: 15px 20px;
	text-shadow: none;
	font-weight: 700;
  	box-shadow: 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;
}
.vfb-submit:hover, input[type="submit"].vfb-submit:hover, .vfb-submit:active, input[type="submit"].vfb-submit:active, .vfb-submit:focus, input[type="submit"].vfb-submit:focus{
	color: #FFF;
	background-color: #666;
}
/********************************************************************************
* Footer
*********************************************************************************/
footer.footer-wrapper{
	background-color: #020202;
	color: #e6e6e6;
	padding: 40px 0;
	font-size: 14px;
	border-top: 3px solid #c41f31;
}

.copyright{
	letter-spacing: .05em;
	text-transform: uppercase;
}
.copyright > div{
	display: inline-block;
	padding: 0 15px;
	border-right: 1px solid rgba(255,255,255,.1);
}
.copyright > div:first-child{
	padding-left: 0;
}
.copyright > div:last-child{
	padding-right: 0;
	border-right: none;
}
.copyright a{
	color: #e6e6e6;
}
.copyright a:hover{
	color: #c41f31;
	text-decoration: none;
}

.btn-backtotop{
	float: right;
	background-color: transparent;
	color: #FFF;
	padding: 0;
	box-shadow: none;
	font-size: 14px;
}
.btn-backtotop .far{
	color: #c41f31;
}
.btn-backtotop:hover, .btn-backtotop:focus{
	background-color: transparent;
	color: #c41f31;
}

/********************************************************************************
* Scrolling
*********************************************************************************/
header.header-wrapper, .navbar-top, header.header-wrapper .logo , header.header-wrapper .masthead,.navbar-default .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: rgba(255, 255, 255, 1);
	border-bottom: 2px solid #F8F8F8;
}
body.scrolling header.header-wrapper .masthead {
}
body.scrolling header.header-wrapper .logo{
	max-height: 50px;	
	width: auto;
}
body.scrolling .navbar-top{
	height: 0;
	opacity: 0;
	display: none;
}
body.scrolling .navbar-default .navbar-header{
	background-color: rgba(0,0,0,0)
}

/********************************************************************************
* Misc Bootstrap Helpers
*********************************************************************************/
.container-fluid, .container-fluid.container-xs-height, .container-fluid.container-sm-height, .container-fluid.container-md-height, .container-fluid.container-lg-height{
	width: 100%;
}
.container-fluid-padded{
	padding-left: 50px;
	padding-right: 50px;	
}
.container-fluid-padded.container-xs-height, .container-fluid-padded.container-sm-height, .container-fluid-padded.container-md-height, .container-fluid-padded.container-lg-height{
	padding-left: 35px;
	padding-right: 35px;
}
/* columns of same height styles */
.container-xs-height {
    display:table;
    padding-left:0px;
    padding-right:0px;
}
.row-xs-height {
    display:table-row;
}
.col-xs-height {
    display:table-cell;
    float:none;
}
/* vertical alignment styles */
.col-top {
    vertical-align:top;
}
.col-middle {
    vertical-align:middle;
}
.col-bottom {
    vertical-align:bottom;
}

@media (min-width: 768px) {
    .container-sm-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-sm-height {
        display:table-row;
    }
    .col-sm-height {
        display:table-cell;
        float:none;
    }
}
@media (min-width: 992px) {
    .container-md-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-md-height {
        display:table-row;
    }
    .col-md-height {
        display:table-cell;
        float:none;
    }
}
@media (min-width: 1200px) {
    .container-lg-height {
        display:table;
        padding-left:0px;
        padding-right:0px;
    }
    .row-lg-height {
        display:table-row;
    }
    .col-lg-height {
        display:table-cell;
        float:none;
    }
}
/********************************************************************************
* Media Queries
*********************************************************************************/
@media (max-width: 1499px){
	header.header-wrapper .logo{
		max-width: 350px;
	}
}
@media (max-width: 1399px){
}
@media (max-width: 1299px){
	header.header-wrapper .logo{
		max-width: 250px;
	}
	.teleclinics-container > .container-fluid > .row > div{
		padding-left: 15px;
		padding-right: 15px;
	}
	.teleclinics-container .teleclinic{
		padding: 0;
	}
	.teleclinic .col-image{
		float: none;
		width: 100%;
		height: 300px;
		display: block;
		background-position: center;
	}
	.teleclinic .col-content{
		float: none;
		width: 100%;
		display: block;
		padding: 50px 30px;
	}
}
@media (max-width: 1199px){
	.masthead{
		margin-left: 15px;
	}
	.masthead > div{
		margin: 0 15px;
	}
	.navbar-default .navbar-nav > li {
    	margin: 0 10px;
	}
	.navbar-default .navbar-nav > li > a {
		font-size: 16px;
	}
	header.header-wrapper .col-social .social-container li a{
		font-size: 20px;
	}
	.capsule {
		padding: 50px 30px;
	}
	.section-partners-heading h2 {
		line-height: 30px;
		font-size: 30px;
	}
}
@media (max-width: 991px){
	h1 { 
		font-size: 36px;
	}
	h2 { 
		font-size: 30px;
	}
	h3 { 
		font-size: 24px;
	}
	h4 { 
		font-size: 20px;
	}
	.three-column-list {
		-moz-column-count: 2;
		-webkit-column-count: 2;
		 column-count: 2;
	}
	header.header-wrapper .logo{
		max-width: 200px;
	}
	.navbar-default .navbar-nav > li{
		margin: 0 5px;
	}
	.navbar-default .navbar-nav > li > a {
		font-size: 14px;
	}
	
	.section-page-header .page-header .row > div:first-child{
		padding-left: 15px;
	}
	.section-page-header .page-header .row > div:last-child{
		padding-right: 15px;
	}
	
	.page-header h1 {
		font-size: 48px;
		text-align: center;
	}
	.section-content{
		padding: 50px 0;
	}
	
	.step .step-image-border h2 {
		bottom: -17px;
		font-size: 80px;
	}
	
	.section-login .col-join{
		padding: 30px 15px !important;
	}
	
	.section-login .col-or h6{
		margin: 15px 0;
	}
	
	.sidebar {
		border-top: 3px solid #F8F8F8;
		margin-top: 50px;
		padding-left: 15px;
		padding-top: 50px;
	}
	.section-cta .btn-large {
		padding: 20px 15px;
	}
}
@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;
	}

	.masthead {
		margin-left: 0;
	}
	body.scrolling header.header-wrapper .masthead {
		padding-bottom: 0;
		padding-top: 0;
	}
	header.header-wrapper .logo img{
		margin: 0 auto;
		max-width: 200px;
	}
	body.scrolling header.header-wrapper .logo img{
		height: 0;
		width: 0;
		opacity: 0;
		margin: 0;
		padding: 0;
	}
	
	.btn-login span{
		display: inline-block;
	}
	
	.section-page-header{
		background-size: auto;
		background-position: center;
	}
	.page-header-home{
		width:100%;
	}
	.page-header-home-text {
		padding: 0 15px 30px;
		text-align: center;
		width: 100%;
	}
	.section-page-header > .container{
		width: 100%;
	}
	.page-header h1 {
		font-size: 36px;
	}
	
	.capsule, .teleclinic .col-content{
		padding: 30px;
	}
	
	.step-content {
		padding: 30px;
		text-align: center;
	}
	
	.card-staff .col-img {
		padding-left: 15px;
	}
	.card-staff .card-block {
		padding: 30px;
	}
	
	#loginform{
		padding: 30px 15px;
	}
	
	.usp_form-row-container.container-sm-height .row-sm-height > div:first-child{
		padding-left: 15px;
	}
	.usp_form-row-container.container-sm-height .row-sm-height > div:last-child{
		padding-right: 15px;
	}
	
	article.post-archive .entry-meta li:first-child {
		max-width: 80%;
	}
	article.post-archive .entry-meta li:last-child {
		max-width: 18%;
	}
	
	.footer-wrapper{
		text-align: center;
	}
	.container-xs-height {
		width: 100%;
	}
}
@media (max-width: 600px){
	h1 { 
		font-size: 36px;
	}
	h2 { 
		font-size: 24px;
	}
	h3 { 
		font-size: 20px;
	}
	h4 { 
		font-size: 18px;
	}
	.page-header-home-text {
		font-size: 14px;
	}
	.alignright, .alignleft{
		display: block;
		float: none;
		margin: 30px auto;
	}
	.nav-steps li{
		width: 25%;
	}
	.nav-steps li .step-number {
		height: 48px;
		width: 48px;
		line-height: 45px;
		font-size: 20px;
	}
	.nav-steps li .step-name {
		font-size: 12px;
	}
}