/* ------------------------------------ */
/* ---------- Reset Browser ----------- */
/* ------------------------------------ */

@import url("reset.css");

/* ------------------------------------ */
/* ---------- General styles ---------- */
/* ------------------------------------ */

body.admin-bar .site-header,
body.admin-bar .toggle-main-menu,
body.admin-bar .social {
	top: 32px;
}

body.admin-bar .main-menu .main-menu-content {
	margin-top: 32px;
}

* {
	font-smooth: antialiased;
	-webkit-font-smoothing : antialiased;
	-moz-osx-font-smoothing: grayscale;
}
input {
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}
html {
	overflow-x: hidden;
	position: relative;
	height: 100%;
}
body {
	overflow-x: hidden;
	width: 100%;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 15px;
	line-height: 29px;
	color: #000000;
	font-family: "proxima-nova",sans-serif;
	font-style: normal;
	font-weight: 400;
	overflow: hidden;
	background: url('../images/main-menu-pattern.jpg') repeat;
}
.clear {
	clear: both;
	display: block;
}
a {
	text-decoration: none;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.container {
	width: 1080px;
	margin: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}
#page {
	width: 100%;
	margin: auto;
	z-index: 105;
	overflow: visible;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.home #page {
	overflow: hidden;
}
body.menu-opened #page {
	-webkit-transform: translate3d(540px, 0, 0);
    -moz-transform: translate3d(540px, 0, 0);
    -o-transform: translate3d(540px, 0, 0);
    -ms-transform: translate3d(540px, 0, 0);
    transform: translate3d(540px, 0, 0);
}
.table {
	display: table;
	width: 100%;
	height: 100%;
}
.table-row {
	display: table-row;
}
.table-cell {
	display: table-cell;
	vertical-align: middle;
}
.table-cell.al-top {
	vertical-align: top;
}
.table-cell.al-bottom {
	vertical-align: bottom;
}
.btn,
.wysiwyg .btn {
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	line-height: 18px;
	color: #ffffff;
	padding: 10px 20px 9px;
	position: relative;
	text-decoration: none!important;
	background: transparent;
	border: none;
	background: #c9202e;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}
.wysiwyg .btn {
	margin-bottom: 24px;
}
.btn .fa,
.wysiwyg .btn .fa {
	margin-left: 25px;
}
.btn .text,
.wysiwyg .btn .text {
	display: block;
	position: relative;
	z-index: 200;
}
.btn .bg,
.wysiwyg .btn .bg {
	position: absolute;
	top: 0px;
	right: 100%;
	bottom: 0px;
	left: 0;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	background: url('../images/filter-red-pattern.jpg') repeat;
	z-index: 100;
}
.btn .bg:after,
.wysiwyg .btn .bg:after {
	content: "";
	position: absolute;
	top: 0px;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 46px 46px 0;
	border-color: transparent #cf202e transparent transparent;
}
.btn:hover .bg,
.btn.active .bg,
.wysiwyg .btn:hover .bg {
	right: -46px;
}
.btn:hover,
.btn.active,
.wysiwyg .btn:hover {
	color: #ffffff!important;
}


/* ----------------------------------- */
/* ---------- Header styles ---------- */
/* ----------------------------------- */

.site-header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 92px;
	z-index: 10000;
	border-bottom: solid 1px #ebebeb;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
body.menu-opened .site-header {
	-webkit-transform: translate3d(540px, 0, 0);
    -moz-transform: translate3d(540px, 0, 0);
    -o-transform: translate3d(540px, 0, 0);
    -ms-transform: translate3d(540px, 0, 0);
    transform: translate3d(540px, 0, 0);
}
.site-header:before {
	z-index: 11000;
	content: "";
	position: absolute;
	background: rgba(255, 255, 255, 0.98);
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
}
.site-header .container {
	position: static;
}
.site-header .container:after {
	content: "";
	clear: both;
	display: block;
}

/* logo */
.site-header .logo {
	width: 286px;
	height: 92px;
	float: left;
	margin-right: 50px;
	position: relative;
	z-index: 15000;
}
.site-header .logo img {
	display: block;
	width: 100%;
}

/* tagline */
.site-header .tagline {
	font-size: 23px;
	line-height: 26px;
	height: 92px;
	color: #999999;
	font-family: "garamond-premier-pro",serif;
	font-style: italic;
	font-weight: 400;
	float: left;
	position: relative;
	z-index: 15000;
}

/* header-right */
.header-right {
	position: absolute;
	right: 0px;
	top: 0px;
}

/* niche-badge */

.niche-badge {
	position: absolute;
    width: 500px;
    right: 20px;
    top: 93px;
    z-index: 20000;
}

.niche-badge.hidden {
	display: none;
}

.niche-logo {
	position: absolute;
	z-index: 1;
}

.niche-badge .niche-logo img {
	height: 125px;
	margin-top: -30%;
}

.ribbon {
	padding: 10px 5px 11px 125px;
	margin: 0;
	margin-top: 0px;
	height: auto;
	position:relative;
	color: #ffffff;
	text-align: center;

	background: rgb(35,91,46); /* Old browsers */
	background: -moz-linear-gradient(left,  rgb(35,91,46) 0%, rgb(35,91,46) 17%, rgb(35,91,46) 17%, rgb(82, 140, 65) 53%, rgb(82, 140, 65) 74%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgb(35,91,46) 0%,rgb(35,91,46) 17%,rgb(35,91,46) 17%,rgb(82, 140, 65) 53%,rgb(82, 140, 65) 74%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgb(35,91,46) 0%,rgb(35,91,46) 17%,rgb(35,91,46) 17%,rgb(82, 140, 65) 53%,rgb(82, 140, 65) 74%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#235b2e', endColorstr='#528C41',GradientType=1 ); /* IE6-9 */


	/* 	background: -webkit-linear-gradient(to right, rgb(64, 99, 59), rgb(64, 99, 59)); */
	display: inline-block;
	}

.ribbon:before, .ribbon:after {
	content: "";
	width:.2em;
	bottom:0px;
	position:absolute;
	display:block;
	z-index:-2;
}

.ribbon:before {
	border: 25px solid rgb(35, 91, 46);
	left: -30px;
	border-right-width: .75em;
	border-left: 20px solid;
	border-left-color:transparent;
}

.ribbon:after {
	border: 25px solid rgb(82, 140, 65);
	right:-30px;
	border-left-width: .75em;
	border-right: 20px solid;
	border-right-color:transparent;
}

.ribbon .content {
	font-style: italic;
	font-weight: bold;
	font-size: 14px;
	font-family: "proxima-nova", sans-serif;
}


/* Search Form */
.search-form {
	float: right;
	position: relative;
	z-index: 16000;
}
.search-form .show-search {
	width: 70px;
	height: 92px;
	cursor: pointer;
	position: relative;
	background: url('../images/search-icon.png') no-repeat center;
	z-index: 17000;
}
.search-form .show-search:after {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	content: "";
	background: url('../images/search-icon-active.png') no-repeat center;
	display: block;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.search-form .show-search:hover::after,
.search-form.active .show-search:after {
	opacity: 1;
}
.search-form form {
	position: absolute;
	right: 0;
	top: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    opacity: 0;
    -webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.search-form form:after {
	position: absolute;
	content: "";
	left: 100%;
	top: 0px;
	bottom: 0px;
	width: 3000px;
	background: #ffffff;
}
.search-form.active form {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
.search-form .field {
	width: 394px;
	height: 92px;
	display: block;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
	border: none;
	text-transform: uppercase;
	background: #ffffff;
	color: #5b5b5b;
	margin: 0;
	padding: 0 80px 0 25px;
	letter-spacing: 3px;
}
.search-form .field::-webkit-input-placeholder {
    color: #5b5b5b;
}
.search-form .field:-moz-placeholder {
    color: #5b5b5b;
    opacity: 1;
}
.search-form .field::-moz-placeholder {
    color: #5b5b5b;
    opacity: 1;
}
.search-form .field:-ms-input-placeholder {
    color: #5b5b5b;
}

/* header-links */
.header-links {
	float: right;
}
.header-links ul:after {
	content: "";
	clear: both;
	display: block;
}
.header-links li {
	float: left;
	background: #ffffff;
}
.header-links li:first-of-type .top {
	border-left: solid 1px #ebebeb;
}
.header-links .top {
	position: relative;
	z-index: 15000;
	border-right: solid 1px #ebebeb;
}
.header-links .top:before {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	content: "";
	display: block;
	background: url('../images/grey-pattern.png') repeat;
	opacity: 0;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.header-links li:hover .top:before {
	opacity: 1;
}
.header-links .top a {
	display: block;
	font-size: 12px;
	line-height: 12px;
	color: #5b5b5b;
	text-align: center;
	height: 92px;
	width: 80px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 5px;
	position: relative;
}
.header-links .top a .icon {
	display: block;
	height: 58px;
}
.header-links .top a .icon img {
	display: block;
	margin: auto;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.header-links .top a .icon img.rotate.active {
	-webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.header-links .submenu {
	position: fixed;
	top: 93px;
	left: 0px;
	width: 100%;
	padding-top:40px;
	background: rgba(255, 255, 255, 0.98);
	overflow: auto;
	max-height: calc(100% - 93px);
	-webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    opacity: 0;
    z-index: 10000;
    -webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.header-links .submenu.active {
	-webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
.header-links .submenu:after {
	content: "";
	clear: both;
	display: block;
}
.header-links .submenu .submenu-left {
	float: left;
	padding-left: calc((100% - 1080px) / 2);
	width: 270px;
	padding-top: 35px;
	padding-bottom: 35px;
}
.header-links .submenu .submenu-right {
	float: right;
	padding-right: calc((100% - 1080px) / 2);
	width: 810px;
	padding-top: 35px;
	padding-bottom: 35px;
	background: rgba(167, 168, 170, 0.11);
}
.header-links .submenu .submenu-right:after {
	content: "";
	clear: both;
	display: block;
}
.header-links .submenu .submenu-title {
	margin-bottom: 35px;
	padding-left: 35px;
}
.header-links .submenu .submenu-left .submenu-title {
	padding-left: 0;
	padding-right: 35px;
}
.header-links .submenu h3 {
	display: inline-block;
	vertical-align: top;
	font-size: 17px;
	line-height: 17px;
	color: #cf202e;
	font-weight: 700;
	position: relative;
	text-transform: uppercase;
}
.header-links .submenu h3 .download-icon {
	position: absolute;
	width: 21px;
	height: 34px;
	background: url('../images/download-icon.png') no-repeat center;
	left: calc(100% + 25px);
	top: 0px;
}
.header-links .submenu ul li {
	float: none;
	border: none;
	margin-bottom: 25px;
	background: transparent;
}
.header-links .submenu ul li a {
	display: block;
	font-size: 16px;
	line-height: 19px;
	color: #5b5b5b;
}
.header-links .submenu ul li a:hover {
	color: #cf202e;
}
.header-links .submenu ul li a:after {
	content: "";
	clear: both;
	display: block;
}
.header-links .submenu ul li .table .table-cell:first-of-type {
	width: 40px;
	padding-right: 20px;
}
.header-links .submenu ul li img {
	display: block;
	margin: auto;
}
.header-links .submenu ul li ul {
	padding-top: 5px;
	font-size: 13px;
	line-height: 15px;
	color: #a7a8aa;
}
.header-links .submenu ul li ul li {
	margin: 0;
}
.header-links .submenu ul li ul li a {
	color: #a7a8aa;
}
.header-links .submenu ul li ul li a:hover {
	color: #cf202e;
}
.header-links .submenu .submenu-left .column {
	float: none;
	width: auto;
	padding-right: 25px;
	padding-left: 0;
}
.header-links .submenu .column {
	float: left;
	width: 33.333333%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-left: 35px;
}

/* toggle-main-menu */
.toggle-main-menu {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	position: fixed;
	top: 0;
	height: 93px;
	left: 0;
	color: #a7a8aa;
	font-size: 15px;
	line-height: 17px;
	text-transform: uppercase;
	z-index: 25000;
}
.toggle-main-menu .icon-wrap {
	width: 117px;
	height: 93px;
	background: #cf202e;
	position: relative;
	margin-right: 15px;
}
.toggle-main-menu .icon {
	width: 57px;
	height: 39px;
	position: absolute;
	left: 30px;
	top: 27px;
}
.toggle-main-menu .icon .bar {
	position: absolute;
	width: 57px;
	height: 5px;
	border-radius: 1px;
	background: #ffffff;
	left: 0px;
	right: 0px;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.toggle-main-menu .icon .top-bar {
	top: 0px;
}
.toggle-main-menu .icon .top-bar.middle {
	top: 17px;
}
.toggle-main-menu .icon .top-bar.rotate {
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.toggle-main-menu .icon .middle-bar {
	top: 17px
}
.toggle-main-menu .icon .bottom-bar {
	top: 34px;
}
.toggle-main-menu .icon .bottom-bar.middle {
	top: 17px;
}
.toggle-main-menu .icon .bottom-bar.rotate {
	-webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.toggle-main-menu .text {
	font-weight: 700;
	-webkit-transition:  all 0.2s linear;
	-moz-transition:  all 0.2s linear;
	-ms-transition:  all 0.2s linear;
	-o-transition:  all 0.2s linear;
	transition:  all 0.2s linear;
	opacity: 1;
}
.toggle-main-menu.active .text {
	display: none;
}
.toggle-main-menu.hide-text .text {
	opacity: 0;
}

/* --------- Main Menu Styles ------ */
.main-menu {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 540px;
	height: 100%;
	z-index: 20000;
	padding-top: 93px;
	background: url('../images/main-menu-pattern.jpg') repeat;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	-webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.main-menu.active {
	-webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.main-menu:before {
	content: "";
	position: absolute;
	left: 0px;
	bottom: 0px;
	background: url('../images/main-menu-icon.png') no-repeat left bottom;
	background-attachment: fixed;
	top: 0px;
	right: 0px;
}
.main-menu .main-menu-ct {
	height: 100%;
	overflow: auto;
}
.main-menu .social {
	padding: 0 30px 0 147px;
	height: 93px;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: url('../images/menu-social-pattern.jpg') repeat;
}
.main-menu .social:after {
	display: block;
	content: "";
	clear: both;
}
.main-menu .social ul li {
	display: inline-block;
	vertical-align: top;
}
.main-menu .social ul li a {
	display: block;
	height: 93px;
	line-height: 93px;
	padding: 0 15px;
	position: relative;
	font-size: 24px;
	color: #ffffff;
}
.main-menu .social ul li a:hover {
	background: #cf202e;
}
.main-menu .main-menu-content {
}
.main-menu .main-menu-content ul li {
	border-bottom: solid 1px rgba(207, 32, 46, 0.35);
	position: relative;
}
.main-menu .main-menu-content ul li .top {
	font-size: 20px;
	line-height: 22px;
	position: relative;
	padding: 0px 117px;
}
.main-menu .main-menu-content ul li .top a {
	font-size: 20px;
	line-height: 22px;
	color: #ffffff;
	font-weight: 600;
	display: inline-block;
	vertical-align: top;
	padding: 18px 13px;
}
.main-menu .main-menu-content ul li .top a:hover {
	opacity: 0.8;
}
.main-menu .main-menu-content ul li .top .show-submenu {
	position: absolute;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width: 80px;
	background: rgba(88, 14, 16, 0.64);
	cursor: pointer;
}
.main-menu .main-menu-content ul li .top .show-submenu:after {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -12px;
	margin-top: -12px;
	width: 24px;
	height: 24px;
	content: "";
	background: url('../images/plus-icon.png') no-repeat center;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.main-menu .main-menu-content ul li .top .show-submenu.active:after {
	-webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.main-menu .main-menu-content ul li .submenu {
	display: none;
	background: url('../images/main-menu-submenu-pattern.jpg') repeat top center;
	position: relative;
	overflow: hidden;
}
.main-menu .main-menu-content ul li .submenu:before {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	content: "";
	background: url('../images/main-menu-submenu-icon.png') no-repeat left bottom;
	background-attachment: fixed;
}
.main-menu .main-menu-content ul li .submenu ul {
	padding: 20px 0;
}
.main-menu .main-menu-content ul li .submenu ul li {
	border: none;
	padding: 0 117px;
}
.main-menu .main-menu-content ul li .submenu ul li a {
	display: block;
	padding: 20px 25px 20px 85px;
	position: relative;
	font-size: 17px;
	line-height: 19px;
	color: #ffffff;
}
.main-menu .main-menu-content ul li .submenu ul li a .icon {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 85px;
}
.main-menu .main-menu-content ul li .submenu ul li a .icon img {
	display: block;
	margin: auto;
}
.main-menu .main-menu-content ul li .submenu ul li li {
	border: none;
	padding: 0;
	margin-bottom: 20px;
}
.main-menu .main-menu-content ul li .submenu ul li li:last-of-type {
	margin-bottom: 0;
}
.main-menu .main-menu-content ul li .submenu ul li ul {
	padding: 20px 0;
}
.main-menu .main-menu-content ul li .submenu ul li li a {
	display: block;
	padding: 0 25px 0 85px;
	position: relative;
	font-size: 16px;
	line-height: 18px;
	color: #ffffff;
	background: transparent!important;
}
.main-menu .main-menu-content ul li .submenu ul li li a:hover,
.main-menu .main-menu-content ul li .submenu ul li li.current_page_item a {
	color: #cf202e;
}
.main-menu .main-menu-content ul li .submenu ul li a:hover,
.main-menu .main-menu-content ul li .submenu ul li.current_page_item a {
	background: rgba(167, 168, 170, 0.17);
}
.main-menu .main-menu-bottom {
	position: relative;
	padding: 35px 0;
}
.main-menu .main-menu-bottom ul li {
	padding: 0 130px 0 130px;
	margin-bottom: 20px;
}
.main-menu .main-menu-bottom ul li:last-of-type {
	margin-bottom: 0px;
}
.main-menu .main-menu-bottom ul li a {
	display: block;
	font-size: 15px;
	line-height: 17px;
	color: #ffffff;
	font-weight: 600;
}
.main-menu .main-menu-bottom ul li a:hover {
	opacity: 0.8;
}

/* ------------------------------ */
/* --------- Banner Styles ------ */
/* ------------------------------ */

/* interior-banner */
.interior-banner {
	height: 525px;
	position: relative;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 93px;
    padding-bottom: 55px;
    z-index: 2000;
}

/* image */
.interior-banner .image-ct {
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.interior-banner .image {
	background-position: top center;
	background-size: cover;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

/* section title */
.interior-banner .table-cell {
	vertical-align: bottom;
	/*text-align: center;*/
}
.section-title {
	background: rgba(207, 32, 46, 0.75);
	font-size: 48px;
	line-height: 48px;
	color: #ffffff;
	padding: 20px 25px;
	display: inline-block;
	margin-left: -25px;
	max-width: 50%;
	font-family: "garamond-premier-pro",serif;
}

/* .top-bar */
.interior-banner .top-bar {
	background: #ffffff;
	position: absolute;
	left: 0px;
	bottom: 0px;
	height: 55px;
	width: 100%;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: solid 1px #ebebeb;
}
.interior-banner .top-bar.page-with-sidebar {
	width: calc(100% - ((100% - 1080px)/2) - 270px );
	padding-left: calc((100% - 1080px)/2);
	padding-right: 100px;
}
.interior-banner .top-bar .container {
	padding-right: 100px;
	height: 55px;
}

/* Breadcrumbs */
.breadcrumbs {
	font-size: 12px;
	line-height: 12px;
	text-transform: uppercase;
	height: 54px;
}
.breadcrumbs .table-cell {
	vertical-align:middle;
	text-align:left;
}
.breadcrumbs ul li {
	display: inline-block;
	vertical-align: top;
	color: #a7a8aa;
}
.breadcrumbs ul li:after {
	content: "\00a0\00a0\00a0";
}
.breadcrumbs ul li.active:after {
	content: "";
}
.breadcrumbs ul li.active {
	color: #cf202e;
}
.breadcrumbs ul li a {
	color: #a7a8aa;
}
.breadcrumbs ul li a:hover {
	color: #cf202e;
}

/* share */
.share {
	position: absolute;
	right: 20px;
	width: 34px;
	height: 34px;
	top: 50%;
	margin-top: -17px;
	z-index: 3000;
}
.share .show-share-items {
	width: 34px;
	height: 34px;
	position: relative;
	background: url('../images/share-icon.png') no-repeat 8px 9px #cf202e;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 2px #ffffff;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.share .show-share-items:hover,
.share .show-share-items.active {
	background-color: #790910;
}
.share .share-items {
	position: absolute;
	right: 0px;
	top: 0px;
	-webkit-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	width: 34px;
	height: 34px;
}
.share .share-items.active {
	right: calc(100% + 20px);
}
.share .share-items ul {
	display: block;
}
.share .share-items li {
	display: block;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 34px;
	height: 34px;
}
.share .share-items li:nth-of-type(1) {
	-webkit-transition: all 0.15s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.15s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.15s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.15s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.15s cubic-bezier(0.86, 0, 0.07, 1);
}
.share .share-items li:nth-of-type(2) {
	-webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.share .share-items li:nth-of-type(3) {
	-webkit-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}
.share .share-items li:nth-of-type(4) {
	-webkit-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.share .share-items li:nth-of-type(5) {
	-webkit-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
}
.share .share-items li:nth-of-type(6) {
	-webkit-transition: all 0.9s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.9s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.9s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.9s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.9s cubic-bezier(0.86, 0, 0.07, 1);
}
.share .share-items li:nth-of-type(7) {
	-webkit-transition: all 1.05s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 1.05s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 1.05s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 1.05s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 1.05s cubic-bezier(0.86, 0, 0.07, 1);
}
.share .share-items li:nth-of-type(8) {
	-webkit-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}
.share .share-items.active li:nth-of-type(1) {
	right: 0px;
}
.share .share-items.active li:nth-of-type(2) {
	right: 100%;
}
.share .share-items.active li:nth-of-type(3) {
	right: 200%;
}
.share .share-items.active li:nth-of-type(4) {
	right: 300%;
}
.share .share-items.active li:nth-of-type(5) {
	right: 400%;
}
.share .share-items.active li:nth-of-type(6) {
	right: 500%;
}
.share .share-items.active li:nth-of-type(7) {
	right: 600%;
}
.share .share-items.active li:nth-of-type(8) {
	right: 700%;
}
.share .share-items li a {
	display: block;
	width: 26px;
	height: 26px;
    background: #cf202e;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    margin: 2px;
    border: solid 2px #ffffff;
}
.share .share-items li a:hover {
	background: #790910;
}

/* ------------------------------------- */
/* -------- Site main Styles ----------- */
/* ------------------------------------- */

.site-main {
	position: relative;
	z-index: 2000;
	padding-bottom: 90px;
	background: url('../images/site-main-logo.png') no-repeat left 25px #ffffff;
}
.site-main.no-pb {
	padding-bottom: 0;
}
.site-main.no-icon {
	background: none #ffffff;
}
.site-main:after {
	clear: both;
	content: "";
	display: block;
}
.site-main .container:after {
	clear: both;
	content: "";
	display: block;
}

/* left-content */
.left-content {
	width: calc(810px + ((100% - 1080px)/2));
	float: left;
	padding: 60px 100px 0 calc((100% - 1080px)/2);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* Entry Styles */
.entry {
	position: relative;
}
.entry:after {
	clear: both;
	content: "";
	display: block;
}

/* WYSIWYG Styles */
.wysiwyg {
}
.wysiwyg strong {
	font-weight: 700;
}
.wysiwyg p {
	margin-bottom: 29px;
}
.wysiwyg i:not(.fa, ai1ec-fa) {
	font-family: "garamond-premier-pro",serif;
	font-style: italic;
	font-weight: 400;
	font-size: 19px;
}
.wysiwyg h1 {
	font-size: 34px;
	line-height: 36px;
	margin-bottom: 15px;
	color: #cf202e;
	font-weight: 700;
}
.wysiwyg h2 {
	font-size: 24px;
	line-height: 26px;
	margin-bottom: 10px;
	color: #5b5b5b;
	font-weight: 600;
}
.wysiwyg h3 {
	font-size: 28px;
	line-height: 28px;
	margin-bottom: 12px;
	color: #5b5b5b;
	font-family: "garamond-premier-pro",serif;
	font-style: italic;
	font-weight: 400;
}
.wysiwyg h4 {
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 5px;
	color: #cf202e;
	font-weight: 700;
	text-transform: uppercase;
}
.wysiwyg ul {
	margin: 0 40px;
	list-style-type: none;
	margin-bottom: 24px;
}
.wysiwyg ul li {
	position: relative;
	margin-bottom: 0px;
}
.wysiwyg ul li:before {
	content: "\2022";
	position: absolute;
	color: #cf202e;
	left: -25px;
	top: 0px;
	font-size: 20px;
}
.wysiwyg ol {
	margin: 0 40px;
	list-style-type: none;
	margin-bottom: 24px;
	counter-reset: cnt;
}
.wysiwyg ol li {
	position: relative;
	margin-bottom: 12px;
}
.site-main ol li:before {
	counter-increment: cnt;
	content: counter(cnt) ".";
	position: absolute;
	color: #cf202e;
	left: -25px;
	top: 0px;
}
.wysiwyg .table-holder {
	overflow: hidden;
	margin-bottom: 24px;
}
.wysiwyg .table-holder .msg {
	display: none;
	font-size: 10px;
	line-height: 20px;
}
.wysiwyg .table-holder table {
	margin-bottom: 0;
}
.wysiwyg table {
	background: #f4f4f4;
	border: solid 1px #ded9c9;
	border-collapse: collapse;
	margin-bottom: 22px;
}
.wysiwyg table td,
.wysiwyg table th {
	text-align: left;
	padding: 10px 15px;
	border: solid 1px #ded9c9;
}
.wysiwyg a {
	color: #cf202e;
	text-decoration: underline;
}
.wysiwyg a:hover {
	color: #790910;
}
.wysiwyg blockquote {
	text-align: center;
	border-top: solid 1px #cf202e;
	border-bottom: solid 1px #cf202e;
	padding: 40px;
	margin-top: 40px;
	margin-bottom: 40px;
	font-family: "garamond-premier-pro",serif;
	font-style: italic;
	font-weight: 400;
	font-size: 22px;
	line-height: 28px;
	color: #cf202e;
}
.wysiwyg *:last-child {
	margin-bottom: 0;
}

/* Images */
.wysiwyg img {
	margin-bottom: 24px;
}
.wysiwyg .alignleft {
	float: left;
}
.wysiwyg .alignright {
	float: right;
}
.wysiwyg .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wysiwyg .caption img {
	margin-bottom: 0;
}
.wysiwyg .caption span {
	text-align: center;
	display: block;
	text-transform: uppercase;
	line-height: 16px;
	font-size: 14px;
	color: #a7a8aa;
	padding-top: 5px;
}
.wysiwyg img.alignleft,
.wysiwyg .caption.alignleft {
	margin: 0px 40px 30px 0;
}
.wysiwyg img.alignright,
.wysiwyg .caption.alignright {
	margin: 0px 0 30px 40px;
}
.wysiwyg img.aligncenter,
.wysiwyg .caption.aligncenter {
	clear: both;
	margin-top: 40px;
    margin-bottom: 40px;
    margin-left:auto;
    margin-right: auto;
}
.wysiwyg embed,
.wysiwyg iframe,
.wysiwyg object,
.wysiwyg video,
.wysiwyg img {
	max-width: 100%;
	height: 100%
}
.wysiwyg embed,
.wysiwyg iframe,
.wysiwyg object,
.wysiwyg video {
	margin-bottom: 24px;
}

/* CTA Link Set Shortcode styles */
.cta-link-set {
	width: 100%;
	text-align: center;
}
.cta-link-set ul{
	margin: 0 !important;
	list-style: none !important;
}

.cta-link-set ul li {
	list-style: none;
	display: inline-block;
}

.cta-link-set ul li:before {
	content: "";
}

.cta-link-set ul li {
	height: 69px;
	width: 220px;
	margin-right: 1%;
}

.cta-link-set ul li.apply-now {
	background-image: url('../images/apply-now.jpg');
	background-repeat: no-repeat;
	background-size: contain;
}
.cta-link-set ul li.apply-now:hover {
	background-image: url('../images/apply-now-rollover.jpg');
}

.cta-link-set ul li.athletics {
	background-image: url('../images/athletics.jpg');
	background-repeat: no-repeat;
	background-size: contain;
}
.cta-link-set ul li.athletics:hover {
	background-image: url('../images/athletics-rollover.jpg');
}

.cta-link-set ul li.campus-life {
	background-image: url('../images/campus-life.jpg');
	background-repeat: no-repeat;
	background-size: contain;
}
.cta-link-set ul li.campus-life:hover {
	background-image: url('../images/campus-life-rollover.jpg');
}

.cta-link-set ul li.fine-arts {
	background-image: url('../images/fine-arts.jpg');
	background-repeat: no-repeat;
	background-size: contain;
}
.cta-link-set ul li.fine-arts:hover {
	background-image: url('../images/fine-arts-rollover.jpg');
}

.cta-link-set ul li.request-info {
	background-image: url('../images/request-more-info.jpg');
	background-repeat: no-repeat;
	background-size: contain;
}
.cta-link-set ul li.request-info:hover {
	background-image: url('../images/request-more-info-rollover.jpg');
}

.cta-link-set ul li.schedule-tour {
	background-image: url('../images/schedule-tour.jpg');
	background-repeat: no-repeat;
	background-size: contain;
}
.cta-link-set ul li.schedule-tour:hover {
	background-image: url('../images/schedule-tour-rollover.jpg');
}

@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) {
	.cta-link-set ul li {
		height: 55px;
		width: 190px;
		margin-right: 2%;
	}
}


/* right-sidebar */
.right-sidebar {
	float: right;
	background: #f3f3f3; /* Old browsers */
	background: -moz-linear-gradient(top,  #f3f3f3 0%, #ffffff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3f3f3), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f3f3f3 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f3f3f3 0%,#ffffff 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f3f3f3 0%,#ffffff 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f3f3f3 0%,#ffffff 100%); /* W3C */
	width: calc(270px + ((100% - 1080px)/2));
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	padding-bottom: 300px;
	margin-top:-55px;
}
.right-sidebar:before {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	width: 1px;
	content: "";
	background: #dadbdb; /* Old browsers */
	background: -moz-linear-gradient(top,  #dadbdb 0%, #fcfcfc 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dadbdb), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #dadbdb 0%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #dadbdb 0%,#fcfcfc 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #dadbdb 0%,#fcfcfc 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #dadbdb 0%,#fcfcfc 100%); /* W3C */
}
.right-sidebar:after {
	position: absolute;
	left: 1px;
	top: 0px;
	bottom: 0px;
	width: 110px;
	content: "";
	background: url('../images/sidebar-shaddow.png');
	background-size: 100% 100%;
}

/* related-items */
.related-items {
	margin-bottom: 50px;
	position: relative;
	z-index: 2500;
}
.related-items .related-items-title {
	background: #cf202e;
	padding: 20px calc(100% - 270px) 20px 35px;
	font-size: 14px;
	line-height: 14px;
	color: #ffffff;
	letter-spacing: 2px;
	position: relative;
}
.related-items .related-items-title * {
	font-weight: 700;
}
.related-items .related-items-title:before {
	background: url('../images/related-items-title-shaddow.png');
	width: 26px;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	background-size: 100% 100%;
}
.related-items .related-items-content {
	padding-right: calc(100% - 270px);
	font-size: 15px;
	line-height: 19px;
}
.related-items .related-items-content ul li {
	border-bottom: solid 1px #e0e0e1;
}
.related-items .related-items-content ul li:last-of-type {
	border-bottom: none;
}
.related-items .related-items-content ul li a {
	padding: 15px 35px;
	display: block;
	font-weight: 600;
	color: #5b5b5b;
}
.related-items .related-items-content ul li a:hover {
	background: rgba(255, 255, 255, 0.6);
}

/* support */
.support {
	padding: 0 calc(100% - 235px) 0 35px;
	position: relative;
	z-index: 2500;
	margin-bottom: 50px;
}
.support a {
	display: block;
	font-size: 25px;
	line-height: 27px;
	color: #ffffff;
	background: #cf202e;
	padding: 15px;
	text-align: center;
}
.support a:hover {
	background: #790910;
}

/* latest items */
.latest-items {
	position: relative;
	z-index: 2500;
}
.latest-items .item {
	padding: 0 35px 35px 35px;
	margin-right: calc(100% - 270px);
	border-bottom: solid 1px #dedede;
	margin-bottom: 50px;
}
.latest-items .item:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.latest-items .item .top {
	margin-bottom: 15px;
}
.latest-items .item .top {
	font-size: 22px;
	line-height: 24px;
	color: #cf202e;
	text-transform: uppercase;
}
.latest-items .item .top h3 {
	font-weight: 600;
}
.latest-items .item .top a {
	display: block;
	position: relative;
	width: 24px;
	height: 24px;
	float: right;
}
.latest-items .item .top a:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
}
.latest-items .item .top a.calendar:before {
	background: url('../images/sidebar-calendar-icon.png') no-repeat center;
}
.latest-items .item .top a.blog:before {
	background: url('../images/sidebar-blog-icon.png') no-repeat center;
}
.latest-items .item .top a:after {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.latest-items .item .top a.calendar:after {
	background: url('../images/sidebar-calendar-icon-active.png') no-repeat center;
}
.latest-items .item .top a.blog:after {
	background: url('../images/sidebar-blog-icon-active.png') no-repeat center;
}
.latest-items .item .top a:hover::after {
	opacity: 1;
}
.latest-items .item .content a {
	display: block;
	padding: 15px;
	margin-left: -15px;
	margin-right: -15px;
}
.latest-items .item .content a:hover {
	background: rgba(255, 255, 255, 0.8);
}
.latest-items .item .date {
	display: block;
	margin-bottom: 10px;
}
.latest-items .item .date .top {
	display: block;
	color: #cf202e;
	font-size: 33px;
	line-height: 33px;
	font-weight: 600;
	margin-bottom: 5px;
}
.latest-items .item .date .bottom {
	display: block;
	color: #a7a8aa;
	font-size: 18px;
	line-height: 18px;
	font-weight: 600;
}
.latest-items .item .title {
	display: block;
	color: #5b5b5b;
	font-size: 16px;
	line-height: 19px;
	font-weight: 700;
	text-transform: none;
}

/* article-info */
.article-info {
	font-size: 13px;
	line-height: 16px;
	margin-bottom: 29px;
	color: #a7a8aa;
	text-transform: uppercase;
}
.article-info ul {
	margin: 0;
	padding: 0;
}
.article-info ul li {
	display: inline-block;
	vertical-align: bottom;
	margin-bottom: 0;
}
.article-info ul li:before {
	display: none;
}
.article-info ul li .date {
	text-transform: none;
	font-weight: 600;
	color: #5b5b5b;
	font-size: 16px;
}
.article-info ul li .date span {
	font-weight: 600;
	color: #cf202e;
	font-size: 28px;
	padding-right: 10px;
}
.article-info ul li.date-wrp {
	margin-right: 30px;
}
.article-info ul li.date-wrp:after {
	display: none;
}
.article-info ul li:after {
	content: "\00a0\00a0|\00a0\00a0";
}
.article-info ul li:last-of-type:after {
	content: "";
}
.article-info ul li a {
	color: #a7a8aa;
	letter-spacing: 2px;
	text-decoration: none;
}
.article-info ul li a:hover {
	color: #aa1723;
}

/* filter */
.filter {
	padding: 20px 0;
	position: relative;
	z-index: 2500;
}
.filter .container:after {
	content: "";
	clear: both;
	display: block;
}
.filter:before {
	content: "";
	background: url('../images/filter-pattern-bg.jpg') repeat top left;
	position: absolute;
	left: 0px;
	top: 20px;
	bottom: 0px;
	right: 0px;
}
.filter:after {
	content: "";
	background: url('../images/filter-pattern-bg.jpg') repeat bottom left;
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	height: 20px;
	z-index: 2600;
}
.filter .title {
	float: left;
	font-size: 18px;
	line-height: 18px;
	color: #5b5b5b;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	position: relative;
	display: block;
	padding: 14px 0;
	width: 10%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 6%;
}
.filter .filter-item {
	float: left;
	position: relative;
	width: 23.5%;
	margin-right: 6%;
}
.filter .filter-item:last-of-type {
	margin-right: 0;
}
.filter .filter-item .top {
	font-size: 15px;
	line-height: 16px;
	color: #ffffff;
	padding: 0 60px 0 20px;
	height: 46px;
	cursor: pointer;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	background: #cf202e;
	z-index: 3000;
}
.filter .filter-item .top:before {
	content: "";
	position: absolute;
	right: 18px;
	width: 24px;
	height: 20px;
	top: 50%;
	margin-top: -10px;
	background: url('../images/sort-arrow.png') no-repeat center;
	z-index: 3030;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.filter .filter-item.active .top:before {
	-webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.filter .filter-item .top .text {
	display: block;
	position: relative;
	z-index: 3020;
	font-weight: 700;
	height: 100%;
}
.filter .filter-item .top .text * {
	font-weight: 700;
}
.filter .filter-item .top .bg {
	position: absolute;
	top: 0px;
	right: 100%;
	bottom: 0px;
	left: 0;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	background: url('../images/filter-red-pattern.jpg') repeat;
	z-index: 3010;
}
.filter .filter-item .top .bg:after {
	content: "";
	position: absolute;
	top: 0px;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 46px 46px 0;
	border-color: transparent #cf202e transparent transparent;
}
.filter .filter-item .top:hover .bg,
.filter .filter-item.active .top .bg  {
	right: -46px;
}
.filter .filter-item .filter-list {
	position: absolute;
	left: 0;
	top: 100%;
	background: url('../images/filter-list-pattern.jpg') repeat;
	padding: 20px 20px;
	width: 100%;
	font-size: 15px;
	line-height: 18px;
	z-index: 2000;
	overflow: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	opacity: 0;
	-webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}
.filter .filter-item.active .filter-list {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.filter .filter-item .filter-list ul li {
	margin-bottom: 10px;
}
.filter .filter-item .filter-list ul li:last-of-type {
	margin-bottom: 0;
}
.filter .filter-item .filter-list ul li a {
	font-weight: 300;
	color: #ffffff;
	display: inline-block;
	padding: 5px 10px;
}
.filter .filter-item .filter-list ul li a:hover {
	background: rgba(167, 168, 170, 0.17);
}

.alpha-list ul li {
	width: 25%;
	float: left;
}

.alpha-list ul li.full {
	width: 100%;
	color: #ECECEC;
	font-style: italic;
}

.filter .mashup-filter {
	text-align: center;
	position: relative;
	z-index: 3500;
}
.filter .mashup-filter .title {
	width: auto;
	margin: 0;
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin-right: 50px;
}
.filter .mashup-filter ul {
	display: inline-block;
	vertical-align: middle;
}
.filter .mashup-filter ul:after {
	content: "";
	display: block;
	clear: both;
}
.filter .mashup-filter ul li {
	display: block;
	float: left;
	margin-right: 15px;
}
.filter .mashup-filter ul li:last-of-type {
	margin-right: 0;
}
.filter .mashup-filter ul li a {
	font-size: 26px;
	line-height: 26px;
	color: #878787;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	display: block;
	padding: 5px 15px;
}
.filter .mashup-filter ul li a span {
	font-size: 15px;
	position: relative;
	font-weight: 700;
}
.filter .mashup-filter ul li a i {
	position: relative;
}
.filter .mashup-filter ul li a:before {
	position: absolute;
	content: "";
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	opacity: 0;
	background: url('../images/menu-social-pattern.jpg') repeat;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.filter .mashup-filter ul li.active a:before {
	opacity: 1;
}
.filter .mashup-filter ul li.active a {
	color: #ffffff;
}

/* center-content */
.center-content {
	padding: 60px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.center-content.has-pb {
	padding: 60px 0 60px 0;
}

/* article-nav */
.article-nav {
	padding-bottom: 90px;
	padding: 90px 50px 0 50px;
}
.article-nav:after {
	content: "";
	clear: both;
	display: block;
}
.article-nav a {
	display: block;
	font-size: 12px;
	line-height: 24px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #5b5b5b;
	position: relative;
}
.article-nav a:hover {
	color: #cf202e;
}
.article-nav a.prev {
	float: left;
	padding-left: 50px;
}
.article-nav a.next {
	float: right;
	padding-right: 50px;
}
.article-nav a:before {
	content: "";
	position: absolute;
	top: 0px;
	bottom: 0px;
	width: 50px;
}
.article-nav a:after {
	content: "";
	position: absolute;
	top: 0px;
	bottom: 0px;
	width: 50px;
	opacity: 0;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.article-nav a:hover::after {
	opacity: 1;
}
.article-nav a.prev:before {
	background: url('../images/post-prev-icon.png') no-repeat center left;
	left: 0px;
}
.article-nav a.prev:after {
	background: url('../images/post-prev-icon-active.png') no-repeat center left;
	left: 0px;
}
.article-nav a.next:before {
	background: url('../images/post-next-icon.png') no-repeat center right;
	right: 0px;
}
.article-nav a.next:after {
	background: url('../images/post-next-icon-active.png') no-repeat center right;
	right: 0px;
}

/* archives */
.archives {
	padding-top: 60px;
	position: relative;
}
.archives:before {
	content: "";
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: -90px;
	top: 0px;
	background: url('../images/archives-bg.jpg') repeat-y center;
}
.archives .archives-ct {
	margin-bottom: 90px;
	position: relative;
}
.archives .entry-blog {
	margin-bottom: 60px;
	border: solid 1px #eeeeee;
	padding: 30px;
	margin-bottom: 30px;
	background: #ffffff;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.archives .entry-blog:after {
	content: "";
	clear: both;
	display: block;
}
.archives .entry-blog:last-of-type {
	margin-bottom: 0;
}
.archives .entry-blog:hover {
	-webkit-box-shadow: 0px 0px 15px 0px rgba(168, 168, 168, 0.25);
	-moz-box-shadow:    0px 0px 15px 0px rgba(168, 168, 168, 0.25);
	box-shadow:         0px 0px 15px 0px rgba(168, 168, 168, 0.25);
}
.archives .entry-blog .image {
	width: 331px;
	float: left;
}
.archives .entry-blog .image img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.archives .entry-blog .image a:hover img {
	opacity: 0.9;
}
.archives .entry-blog.has-image .content {
	padding-left: 398px;
}
.archives .entry-blog .content .date {
	text-transform: none;
	font-weight: 600;
	color: #5b5b5b;
	font-size: 16px;
	line-height: 28px;
	display: block;
	margin-bottom: 15px;
}
.archives .entry-blog .content .date span {
	font-weight: 600;
	color: #cf202e;
	font-size: 28px;
	line-height: 28px;
	padding-right: 10px;
}
.archives .entry-blog .content h2 {
	color: #cf202e;
	margin-bottom: 5px;
	font-size: 24px;
	line-height: 26px;
}
.archives .entry-blog .content h2 a {
	color: #cf202e;
	font-weight: 700;
}
.archives .entry-blog .content h2 a:hover {
	color: #790910;
}
.archives .entry-blog .content .info {
	font-size: 13px;
	line-height: 16px;
	margin-bottom: 15px;
	color: #a7a8aa;
	text-transform: uppercase;
}
.archives .entry-blog .content .info ul {
	margin: 0;
	padding: 0;
}
.archives .entry-blog .content .info ul li {
	display: inline-block;
	vertical-align: bottom;
	margin-bottom: 0;
}
.archives .entry-blog .content .info ul li:before {
	display: none;
}
.archives .entry-blog .content .info ul li:after {
	content: "\00a0\00a0|\00a0\00a0";
}
.archives .entry-blog .content .info ul li:last-of-type:after {
	content: "";
}
.archives .entry-blog .content .info ul li a {
	color: #a7a8aa;
	letter-spacing: 2px;
	text-decoration: none;
}
.archives .entry-blog .content .info ul li a:hover {
	color: #aa1723;
}
.archives .entry-blog .content .more {
	color: #a7a8aa;
	font-size: 17px;
	line-height: 17px;
	display: block;
	margin-top: 15px;
}
.archives .entry-blog .content .more:hover {
	color: #cf202e;
}
.archives .load-more {
	text-align: center;
}

/* staff Styles */
.staff {
	position: relative;
}
.staff .staff-title {
	font-size: 35px;
	line-height: 35px;
	color: #f57814;
	margin-bottom: 30px;
}
.staff .staff-ct {
}
.staff .staff-ct:after {
	content: "";
	clear: both;
	display: block;
}
.staff .entry-staff {
	width: 22%;
	margin-right: 4%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	float: left;
	padding-bottom: 45px;
	margin-bottom: 45px;
}
.staff .entry-staff:nth-of-type(4n+4) {
	margin-right: 0;
}
.staff .entry-staff.active {
	z-index: 2500;
}
.staff .entry-staff:nth-of-type(4n+1) {
	clear: left;
}
.staff .entry-staff .entry-staff-image {
	position: relative;
}
.staff .entry-staff .entry-staff-image img {
	display: block;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.staff .entry-staff .entry-staff-details {
	text-align: center;
	min-height: 190px;
	padding-top: 25px;
	padding-bottom: 50px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.staff .entry-staff .entry-staff-details .name {
	color: #cf202e;
	font-size: 21px;
	line-height: 23px;
	font-weight: 600;
	margin-bottom: 5px;
	display: block;
}
.staff .entry-staff .entry-staff-details .position {
	color: #5b5b5b;
	font-size: 13px;
	line-height: 15px;
	display: block;
	letter-spacing: 2px;
	margin-bottom: 15px;
	text-transform: uppercase;
}
.staff .entry-staff .entry-staff-details .mail {
	display: block;
	width: 29px;
	height: 20px;
	margin: auto;
	position: relative;
	background: url('../images/staff-mail-icon.png');
}
.staff .entry-staff .entry-staff-details .mail:after {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	content: "";
	background: url('../images/staff-mail-icon-active.png');
	opacity: 0;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.staff .entry-staff .entry-staff-details .mail:hover::after {
	opacity: 1;
}
.staff .entry-staff .show-bio-wrp {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
}
.staff .entry-staff .show-bio-wrp .show-bio {
	font-size: 13px;
	line-height: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.staff .entry-staff .entry-staff-content {
	position: absolute;
	top: 100%;
	display: none;
	cursor: default;
	background: url('../images/entry-staff-details-pattern.jpg') repeat;
}
.staff .entry-staff .entry-staff-content * {
	color: #ffffff;
}
.staff .entry-staff .entry-staff-content .container {
	padding-top: 60px;
	padding-bottom: 60px;
}
.staff .entry-staff .entry-staff-content .container:before {
	content: "";
	position: absolute;
	top: 0px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 25px 25px 0 25px;
	border-color: #ffffff transparent transparent transparent;
}
.staff .entry-staff:nth-of-type(4n+1) .entry-staff-content .container:before {
	left: calc((22% / 2) - 25px);
}
.staff .entry-staff:nth-of-type(4n+2) .entry-staff-content .container:before {
	left: calc(26% + (22% / 2) - 25px);
}
.staff .entry-staff:nth-of-type(4n+3) .entry-staff-content .container:before {
	left: calc(52% + (22% / 2) - 25px);
}
.staff .entry-staff:nth-of-type(4n+4) .entry-staff-content .container:before {
	left: calc(78% + (22% / 2) - 25px);
}
.staff .entry-staff .entry-staff-content .close {
	position: absolute;
	width: 26px;
	height: 26px;
	background: url('../images/staff-content-close.png') no-repeat center;
	cursor: pointer;
	right: 0px;
	top: 22px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.staff .entry-staff .entry-staff-content .close:after {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	content: "";
	background: url('../images/staff-content-close-active.png');
	opacity: 0;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.staff .entry-staff .entry-staff-content .close:hover::after {
	opacity: 1;
}
.staff .load-more {
	text-align: center;
}

/* mashup */
.mashup {
	position: relative;
}
.mashup:before {
	content: "";
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: -90px;
	top: 0px;
	background: url('../images/archives-bg.jpg') repeat-y center;
}
.mashup:after {
	content: "";
	position: absolute;
	left: 50px;
	bottom: -95px;
	width: 547px;
	height: 596px;
	background: url('../images/mashup-icon.png');
	background-size: 100% 100%;
}
.mashup .mashup-ct {
	padding: 60px 0;
}
.mashup .load-more {
	text-align: center;
}
.mashup .grid-sizer {
	width: 30.333333%;
	margin: 0 1.5%;
}
.entry-social {
	width: 30.333333%;
	margin: 0 1.5%;
	background: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
	padding: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.entry-social .entry-social-media {
}
.entry-social .entry-social-media a {
	display: block;
}
.entry-social .entry-social-media .video-popup {
	position: relative;
}
.entry-social .entry-social-media .video-popup:after {
	content: "";
	position: absolute;
	background: url('../images/youtube-play-icon.png') no-repeat center;
	width: 62px;
	height: 44px;
	left: 50%;
	top: 50%;
	margin-left: -31px;
	margin-top: -22px;
}
.entry-social .entry-social-media img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.entry-social .entry-social-media a:hover img {
	opacity: 0.9;
}
.entry-social .entry-social-content {
	padding: 25px;
	font-size: 15px;
	line-height: 22px;
	color: #ffffff;
	background: #cf202e;
}
.entry-social .entry-social-content .top {
	display: block;
	font-weight: 700;
	margin-bottom: 10px;
}
.entry-social .entry-social-content .top span {
	font-size: 25px;
	font-weight: 700;
}
.entry-social .entry-social-content a {
	color: #ffffff;
	font-weight: 700;
}
.entry-social .entry-social-content a * {
	color: #ffffff;
	font-weight: 700;
}
.entry-social .entry-social-content a:hover {
	opacity: 0.8;
}
.entry-social .entry-social-content .excerpt {
	margin-bottom: 25px;
}
.entry-social .entry-social-content .action {
}
.entry-social .entry-social-content .action a {
	display: inline-block;
	vertical-align: top;
}
.entry-social .entry-social-content .action a i {
	font-size: 28px;
	line-height: 28px;
	margin-right: 20px;
}

/* contact */
.contact {
	position: relative;
	background: url('../images/archives-bg.jpg') repeat-y center;
	border-top: solid 1px #ebebeb;
}
.contact .container {
	padding-top: 60px;
	padding-bottom: 60px;
}
.contact .contact-form {
	margin-bottom: 60px;
}
.contact .contact-form form ul:after {
	content: "";
	clear: both;
	display: block;
}
.contact .contact-form form ul li {
	margin-bottom: 35px;
	float: left;
	width: 100%;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.contact .contact-form form ul li li {
	margin-bottom: 0;
}
.contact .contact-form form ul li:last-of-type {
	margin-bottom: 0px;
}
.contact .contact-form form ul li.medium {
	width: 48%;
	margin-right: 4%;
}
.contact .contact-form form ul li.medium:nth-of-type(2n+2) {
	margin-right: 0;
}
.contact .contact-form form input[type="text"] {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    border: none;
    color: #5b5b5b;
    font-size: 17px;
    font-family: "proxima-nova",sans-serif;
	font-style: normal;
	padding: 0 30px;
	background: #ffffff;
	border: solid 1px #eeeeee;
	height: 62px;
	display: block;
}
.contact .contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #5b5b5b;
}
.contact .contact-form form input[type="text"]:-moz-placeholder {
    color: #5b5b5b;
    opacity: 1;
}
.contact .contact-form form input[type="text"]::-moz-placeholder {
    color: #5b5b5b;
    opacity: 1;
}
.contact .contact-form form input[type="text"]:-ms-input-placeholder {
    color: #5b5b5b;
}
.contact .contact-form form textarea {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    border: none;
    color: #5b5b5b;
    font-size: 17px;
    font-family: "proxima-nova",sans-serif;
	font-style: normal;
	border: solid 1px #eeeeee;
	padding: 20px 30px;
	background: #ffffff;
	height: 170px;
	margin: 0;
	display: block;
}
.contact .contact-form form textarea::-webkit-input-placeholder {
    color: #5b5b5b;
}
.contact .contact-form form textarea:-moz-placeholder {
    color: #5b5b5b;
    opacity: 1;
}
.contact .contact-form form textarea::-moz-placeholder {
    color: #5b5b5b;
    opacity: 1;
}
.contact .contact-form form textarea:-ms-input-placeholder {
    color: #5b5b5b;
}
.contact .contact-form form .form-submit {
	text-align: center;
	padding-top: 35px;
}
.contact .contact-form form .form-submit .btn {
	padding: 10px 130px 9px;
}

/* contact-info */
.contact .contact-info {
	font-size: 15px;
	line-height: 24px;
	color: #000000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.contact .contact-info:after {
	display: block;
	content: "";
	clear: both;
}
.contact .contact-info .item {
	float: left;
	padding-left: 45px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 30%;
	margin: 0 10%;
}
.contact .contact-info .item.phones {
	background: url('../images/phone-icon.png') no-repeat left top;
}
.contact .contact-info .item.address {
	background: url('../images/address-icon.png') no-repeat left top;
}
.contact .contact-info .item h3 {
	font-size: 23px;
	line-height: 23px;
	color: #cf202e;
	font-weight: 600;
	padding: 5px 0;
	margin-bottom: 15px;
}
.contact .contact-info a {
	color: #000000;
	display: block;
	font-weight: 600;
}
.contact .contact-info a:after {
	display: block;
	content: "";
	clear: both;
}
.contact .contact-info a:hover {
	color: #a7a8aa;
}
.contact .contact-info ul li span {
	color: #a7a8aa;
	font-weight: 600;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	padding-left: 0px;
	font-size: 13px;
}
.contact .map {
	height: 545px;
	position: relative;
	/* background: url('../images/map-example-bg.jpg') no-repeat center; */
	background: #D3D3D3;
	background-size: cover;
}
.contact .map .map-pin {
	position: absolute;
	left: 220px;
	top: 220px;
	background: url('../images/map-pin.png') no-repeat;
	width: 40px;
	height: 60px;
	cursor: pointer;
}

/* schedule */
.schedule {
	padding: 5px 0;
	background: url('../images/schedule-bg.png') repeat-y center #ffffff;
	position: relative;
	z-index: 2500;
}
.schedule a {
	background: #cf202e;
	position: relative;
	height: 64px;
	display: block;
	font-size: 32px;
	line-height: 32px;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
}
.schedule a img {
	display: block;
	margin-left: 20px;
}
.schedule a * {
	font-weight: 700;
	position: relative;
}
.schedule a:before {
	content: "";
	background: url('../images/schedule-red-shaddow.png') repeat-y center bottom;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.schedule a:hover::before {
	height: 100%;
}
.schedule a:after {
	content: "";
	background: url('../images/schedule-logo.png') no-repeat;
	width: 89px;
	height: 124px;
	position: absolute;
	left: 50%;
	margin-left: -45px;
	top: -33px;
}
.schedule a .left {
	display: block;
	position: absolute;
	right: calc(50% + 65px);
	top: 0px;
	bottom: 0px;
}
.schedule a .right {
	display: block;
	position: absolute;
	left: calc(50% + 65px);
	top: 0px;
	bottom: 0px;
}

/* ----------------------------------- */
/* ------------ Home styles ---------- */
/* ----------------------------------- */

/* rotator-images */
.rotator-images {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	overflow: hidden;
	background: #000000;
	z-index: -1;
}
.rotator-images .slides {
	width: 100%;
	height: 100%;
}
.rotator-images .slides .slide {
	width: 100%;
	height: 100%;
	position: relative;
}
.rotator-images .slides .slide.image {
	width: 100%;
	margin: auto;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 1;
}

/* rotator-overlays */
.rotator-overlays {
	position: relative;
	z-index: 3500;
	opacity: 1;
	-webkit-transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.rotator-overlays .slides {
	width: 100%;
	height: auto;
	min-height: 640px;
}
.rotator-overlays .slides .slide {
	width: 100%;
	height: auto;
	min-height: 640px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	background-size: cover;
	background-position: center;
}
.rotator-overlays .slides .slide .caption {
	position: absolute;
	bottom: 0;
	background: rgba(207, 32, 46, 0.75);
	padding: 30px 2%;
	width:96%;
	font-size: 15px;
	line-height: 19px;
	color: #ffffff;
	padding-bottom:140px;
}
.rotator-overlays .slides .slide .caption .caption-ct {
	-webkit-transform: translate3d(20%, 0, 0);
    -moz-transform: translate3d(20%, 0, 0);
    -o-transform: translate3d(20%, 0, 0);
    -ms-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
    -webkit-transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.4s all cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;


}
.rotator-overlays .slides .slide.visible .caption .caption-ct {
	-webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
.rotator-overlays .slides .slide .caption h2 {
	font-weight: 600;
	font-size: 35px;
	line-height: 35px;
	color: #ffffff;
	margin-bottom: 10px;
	text-align:center;
	font-family: "garamond-premier-pro", serif;
}
.rotator-overlays .slides .slide .caption .links {
	padding-bottom: 15px;
	max-width: 100%;
	min-height: 30px;
	text-align: center;
}
.rotator-overlays .slides .slide .caption ul {
	display: block;
	margin-left: -12px;
}
.rotator-overlays .slides .slide .caption ul li {
	margin-bottom: 5px;
}
.rotator-overlays .slides .slide .caption ul li:last-of-type {
	margin-bottom: 0;
}
.rotator-overlays .slides .slide .links a {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	line-height: 16px;
	font-weight: 700;
	color: #ffffff;
	position: relative;
	padding: 7px 12px;
}
.rotator-overlays .slides .slide .links a:before {
	background: url('../images/home-button-pattern.jpg') repeat;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	opacity: 0px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.rotator-overlays .slides .slide .links a:hover::before {
	opacity: 1;
}
.rotator-overlays .slides .slide .links a span {
	display: block;
	position: relative;
	font-weight: 700;
}
.rotator-overlays .controls {
	/*position: absolute;
	right: calc(100% - 485px);
	bottom: 28px;*/
	text-align:center;

}
.rotator-overlays .controls .rotator-prev {
	position: relative;
	width: 34px;
	height: 34px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	margin-right: 10px;
}
.rotator-overlays .controls .rotator-prev:before {
	background: url('../images/home-button-pattern.jpg') repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.rotator-overlays .controls .rotator-prev:hover::before {
	opacity: 1;
}
.rotator-overlays .controls .rotator-prev:after {
	background: url('../images/rotator-prev-icon.png') no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	opacity: 0px;
}
.rotator-overlays .controls .rotator-next {
	position: relative;
	width: 34px;
	height: 34px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}
.rotator-overlays .controls .rotator-next:before {
	background: url('../images/home-button-pattern.jpg') repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.rotator-overlays .controls .rotator-next:hover::before {
	opacity: 1;
}
.rotator-overlays .controls .rotator-next:after {
	background: url('../images/rotator-next-icon.png') no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	opacity: 0px;
}

/* introduction */
.introduction {
	position: relative;
	z-index: 4000;
	border-top: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 1;
	-webkit-transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: opacity 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	border-bottom: solid 13px #ededed;
}
.introduction .sections-links {
	position: absolute;
	left: 0px;
	bottom: 100%;
	right: 0px;
	z-index: 4500;
	text-align: center;
}
.introduction .sections-links:before {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 25px;
	content: "";
	background: #ffffff;
}
.introduction .sections-links ul {
	display: block;
}
.introduction .sections-links ul:after {
	content: "";
	clear: both;
	display: block;
}
.introduction .sections-links ul li {
	width: 25%;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-right: solid 1px #d3d3d4;
	position: relative;
}
.introduction .sections-links ul li:last-of-type {
	border-right: none;
}
.introduction .sections-links ul li a {
	display: block;
	padding: 0 40px;
	height: 115px;
	background: #ffffff;
	text-align: left;
	font-size: 21px;
	line-height: 24px;
	color: #cf202e;
	position: relative;
}
.introduction .sections-links ul li a:before {
	display: block;
	background: #ffffff;
	content: "";
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 10px;
}
.introduction .sections-links ul li a:hover::before {
	bottom: -10px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.introduction .sections-links ul li:hover a {
	-webkit-transform: translate3d(0, -10px, 0);
    -moz-transform: translate3d(0, -10px, 0);
    -o-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}
.introduction .sections-links ul li:after {
	content: "";
	position: absolute;
	left: 100%;
	top: 0px;
	bottom: 0px;
	width: 16px;
	background: url('../images/sections-active-shaddow.png') no-repeat;
	background-size: 100% 100%;
	z-index: 3600;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.introduction .sections-links ul li:hover::after {
	opacity: 1;
}
.introduction .sections-links ul li:last-of-type::after {
	opacity: 0!important;
}
.introduction .sections-links ul li a * {
	font-weight: 700;
}
.introduction .sections-links ul li a .icon {
	width: 70px;
}
.introduction .sections-links ul li a .icon img {
	display: block;
}
.introduction .sections-links .scroll {
	position: absolute;
	right: 75px;
	top: 10px;
	height: 50px;
	width: 50px;
	padding: 8px;
	border:1px solid #ffffff;
	border-radius: 50%;
	font-size: .75rem;
	font-weight: 400;
	word-break: break-word;
	line-height: .75rem;
	text-align: center;
	color: #ffffff;
}
.introduction .sections-links .scroll .down-arrow {
	background: url('../images/connect-rotator-prev.png') no-repeat;
	background-size: contain;
    width: 25px;
    height: 17px;
    position: absolute;
    left: 30%;
    top: 55%;
    transform: rotate(-90deg);
}
.introduction .introduction-content {
	font-size: 16px;
	line-height: 29px;
	text-align: center;
	padding: 50px 0 110px;
	color: #ffffff;
	position: relative;
	background: #ffffff;
}
.introduction .introduction-content {
	font-size: 16px;
	line-height: 29px;
	text-align: center;
	padding: 50px 0 110px;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	background: #92070a;
}
.introduction .introduction-content .bg-image {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
	background: url('../images/introduction-bg.jpg') no-repeat left bottom;
	background-size: cover;
}
.introduction .introduction-content h1 {
	color: #ffffff;
	font-size: 34px;
	line-height: 36px;
	font-weight: 600;
	margin-bottom: 20px;
}
.introduction .introduction-content .more {
	display: inline-block;
	vertical-align: top;
	font-size: 15px;
	line-height: 15px;
	color: #ffffff;
	padding: 8px 15px;
	position: relative;
	background: transparent;
	border: none;
	background: url('../images/main-menu-pattern.jpg') repeat;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	margin-top: 25px;
}
.introduction .introduction-content .more .text {
	display: block;
	position: relative;
	z-index: 200;
}
.introduction .introduction-content .more .bg {
	position: absolute;
	top: 0px;
	right: 100%;
	bottom: 0px;
	left: 0;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	background: url('../images/filter-list-pattern.jpg') repeat;
	z-index: 100;
}
.introduction .introduction-content .more:hover .bg {
	right: 0px;
}

/* testimonial */
.testimonial {
	position: relative;
	background: #ffffff;
}
.testimonial .testimonial-ct {
	position: relative;
	margin-top: -83px;
	z-index: 5000;
	padding-bottom: 20px;
}
.testimonial .testimonial-ct:after {
	position: absolute;
	left: 100%;
	top: 0px;
	height: 70px;
	background: url('../images/testimonial-shaddow.png') no-repeat;
	background-size: 100% 100%;
	content: "";
	width: 33px;
}
.testimonial .testimonial-ct .grey-bg {
	background: rgba(206, 206, 206, 0.55);
	position: absolute;
	bottom: 0px;
	right: -20px;
	top: 70px;
	left: 0px;
}
.testimonial .testimonial-ct .grey-bg:after {
	position: absolute;
	left: 0px;
	top: 100%;
	content: "";
	left: 0px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 45px 45px 0 0;
	border-color: rgba(206, 206, 206, 0.55) transparent transparent transparent;
}
.testimonial .testimonial-ct .quote {
	background: #ffffff;
	position: relative;
	padding: 45px;
	text-align: center;
}
.testimonial .testimonial-ct .quote:after {
	position: absolute;
	left: 0px;
	top: 100%;
	content: "";
	left: 0px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 35px 35px 0 0;
	border-color: #ffffff transparent transparent transparent;
}
.testimonial .testimonial-ct .quote h3 {
	position: relative;
	font-size: 23px;
	line-height: 26px;
	color: #5b5b5b;
	font-family: "garamond-premier-pro",serif;
	font-style: normal;
	font-weight: 400;
	margin-bottom: 25px;
	padding: 0 125px;
}
.testimonial .testimonial-ct .quote h3:before {
	content: "";
	position: absolute;
	display: block;
	background: url('../images/testimonial-left.png') no-repeat;
	background-size: 100% 100%;
	width: 82px;
	height: 60px;
	left: 0px;
	top: 50%;
	margin-top: -30px;
}
.testimonial .testimonial-ct .quote h3:after {
	content: "";
	position: absolute;
	display: block;
	background: url('../images/testimonial-right.png') no-repeat;
	background-size: 100% 100%;
	width: 82px;
	height: 60px;
	right: 0px;
	top: 50%;
	margin-top: -30px;
}
.testimonial .testimonial-ct .quote .parent {
	position: relative;
	font-size: 13px;
	line-height: 13px;
	color: #000000;
	display: block;
	letter-spacing: 3px;
	text-transform: uppercase;
}

/* infographic */
.infographic {
	padding: 70px 0 85px;
	position: relative;
	background: #ffffff;
}
.infographic ul:after {
	content: "";
	clear: both;
	display: block;
}
.infographic ul li {
	float: left;
	width: 33.333333%;
}
.infographic ul li:nth-of-type(3n+1) {
	text-align: left;
}
.infographic ul li:nth-of-type(3n+2) {
	text-align: center;
}
.infographic ul li:nth-of-type(3n+3) {
	text-align: right;
}
.infographic .item {
	border-radius: 50%;
	-webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.15);
	-moz-box-shadow:    0px 0px 45px 0px rgba(0, 0, 0, 0.15);
	box-shadow:         0px 0px 45px 0px rgba(0, 0, 0, 0.15);
	width: 310px;
	height: 310px;
	text-align: center;
	display: inline-block;
	vertical-align: top;
	opacity: 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translate3d(0px, 0px, -310px) rotate3d(1, 0, 0, 90deg);
    -moz-transform: translate3d(0px, 0px, -310px) rotate3d(1, 0, 0, 90deg);
    -o-transform: translate3d(0px, 0px, -310px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: translate3d(0px, 0px, -310px) rotate3d(1, 0, 0, 90deg);
    transform: translate3d(0px, 0px, -310px) rotate3d(1, 0, 0, 90deg);
}
.infographic ul li:nth-of-type(3n+1) .item {
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.infographic ul li:nth-of-type(3n+2) .item {
	-webkit-transition: 0.7s all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.infographic ul li:nth-of-type(3n+3) .item {
	-webkit-transition: 0.7s all 1s cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all 1s cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all 1s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all 1s cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.infographic.active .item {
	opacity: 1;
	-webkit-transform: rotate3d(1, 0, 0, 0deg);
    -moz-transform: rotate3d(1, 0, 0, 0deg);
    -o-transform: rotate3d(1, 0, 0, 0deg);
    -ms-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
}
.infographic .item .icon {
	height: 130px;
	padding-top: 15px;
}
.infographic .item .icon img {
	display: block;
	max-width: 80%;
	margin: auto;
}
.infographic .item .text {
	padding: 0 60px;
}
.infographic .item .text h3 {
	font-size: 17px;
	line-height: 19px;
	color: #5b5b5b;
	font-weight: 700;
}
.infographic .item .text h3 span {
	font-size: 62px;
	line-height: 62px;
	color: #cf202e;
	display: block;
	margin-bottom: 15px;
	font-family: "octin-college",sans-serif;
	font-style: normal;
	font-weight: 700;
}

/* home-schedule */
.home-schedule {
	padding: 5px 0;
	background: url('../images/schedule-bg.png') repeat-y center #ffffff;
	position: relative;
	z-index: 2500;
}
.home-schedule a {
	background: #cf202e;
	position: relative;
	height: 78px;
	display: block;
	font-size: 38px;
	line-height: 38px;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 2px;
	max-width: 750px;
	margin: auto;
}
.home-schedule a img {
	display: block;
	margin-left: 35px;
}
.home-schedule a * {
	font-weight: 700;
	position: relative;
}
.home-schedule a:before {
	content: "";
	background: url('../images/schedule-red-shaddow.png') repeat-y center bottom;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-schedule a:hover::before {
	height: 100%;
}
.home-schedule a:after {
	content: "";
	background: url('../images/home-schedule-logo.png') no-repeat;
	width: 107px;
	height: 149px;
	position: absolute;
	left: 50%;
	margin-left: -53px;
	top: -40px;
}
.home-schedule a .left {
	display: block;
	position: absolute;
	right: calc(50% + 85px);
	top: 0px;
	bottom: 0px;
}
.home-schedule a .right {
	display: block;
	position: absolute;
	left: calc(50% + 85px);
	top: 0px;
	bottom: 0px;
}
.home-schedule a .left-ribbon {
	position: absolute;
	display: block;
	width: 96px;
	top: 25px;
	height: 100%;
	right: calc(100% + 8px);
	background: url('../images/left-ribbon.png') no-repeat;
	background-size: 100% 100%;
}
.home-schedule a .right-ribbon {
	position: absolute;
	display: block;
	width: 96px;
	top: 25px;
	height: 100%;
	left: calc(100% + 8px);
	background: url('../images/right-ribbon.png') no-repeat;
	background-size: 100% 100%;
}

/* home-news */
.home-news {
	position: relative;
	background: url('../images/home-news-icon.png') no-repeat right bottom #cf202e;
	padding-bottom: 20px;
}
.home-news .top {
	padding-top: 80px;
	background: #ffffff;
	border-bottom: solid 1px #dddddd;
	padding-bottom: 25px;
}
.home-news .top .container:after {
	content: "";
	clear: both;
	display: block;
}
.home-news .top .featured-top {
	float: left;
	width: 40%;
	margin-left: 25%;
	text-align: center;
}
.home-news .top .featured-top h3 {
	font-size: 32px;
	line-height: 32px;
	color: #cf202e;
	font-weight: 600;
	text-transform: uppercase;
}
.home-news .news-rotator-top {
	float: left;
	width: 35%;
}
.home-news .news-rotator-top .more {
	display: block;
	font-size: 13px;
	line-height: 32px;
	padding-left: 40px;
	color: #999999;
	position: relative;
	margin-left: 30px;
}
.home-news .news-rotator-top .more:before {
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -11px;
	background: url('../images/home-blog-icon.png') no-repeat;
	background-size: 100% 100%;
	width: 27px;
	height: 22px;
}
.home-news .news-rotator-top .more:after {
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -11px;
	background: url('../images/home-blog-icon-active.png') no-repeat;
	background-size: 100% 100%;
	width: 27px;
	height: 22px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.home-news .news-rotator-top .more:hover::after {
	opacity: 1;
}
.home-news .news-rotator-top .more:hover {
	color: #cf202e;
}
.home-news .content {
	position: relative;
}
.home-news .content .left-image {
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 65px;
	width: calc(((100% - 1080px) / 2) + 270px);
	background-size: cover;
	background-position: center;
}
.home-news .content:after {
	clear: both;
	display: block;
	content: "";
}
.home-news .content .featured-content {
	float: left;
	width: 40%;
	margin-left: 25%;
	background: #ffffff;
	font-size: 15px;
	line-height: 21px;
	position: relative;
}
.home-news .content .featured-content .subscribe {
	position: absolute;
	right: 100%;
	bottom: 5px;
	padding: 0 25px;
	width: 62.5%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.home-news .content .featured-content .subscribe a {
	display: block;
	font-size: 18px;
	line-height: 18px;
	color: #ffffff;
	text-align: right;
}
.home-news .content .featured-content .subscribe a:hover {
	opacity: 0.8;
}
.home-news .content .featured-content .subscribe * {
	font-weight: 600;
}
.home-news .content .featured-content .subscribe img {
	display: block;
	margin-left: 15px;
}
.home-news .content .featured-content .wrp {
	padding: 50px 80px 35px 80px;
}
.home-news .content .featured-content .date {
	font-weight: 600;
	color: #5b5b5b;
	font-size: 16px;
	line-height: 16px;
	padding-top: 10px;
	display: block;
	margin-bottom: 15px;
}
.home-news .content .featured-content .date span {
	font-weight: 600;
	color: #cf202e;
	font-size: 26px;
	padding-right: 10px;
}
.home-news .content .featured-content h4 {
	font-weight: 700;
	color: #cf202e;
	font-size: 21px;
	line-height: 24px;
	display: block;
	margin-bottom: 15px;
}
.home-news .content .featured-content h4 a {
	font-weight: 700;
	color: #cf202e;
}
.home-news .content .featured-content h4 a:hover {
	color: #790910;
}
.home-news .content .featured-content .more {
	font-size: 13px;
	color: #a7a8aa;
	display: inline-block;
	vertical-align: top;
	margin-top: 15px;
}
.home-news .content .featured-content .more:hover {
	color: #000000;
}
.home-news .content .featured-content .home-share {
	margin-top: 25px;
	position: relative;
	right: auto;
	top: auto;
	width: 34px;
	height: 34px;
}
.home-news .content .featured-content .home-share .share {
	margin: 0;
	right: 0;
	top: 0;
}
.home-news .content .featured-content .home-share .show-share-items {
	width: 34px;
	height: 34px;
	position: relative;
	background: url('../images/share-icon.png') no-repeat 8px 9px #cf202e;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 2px #ffffff;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-news .content .featured-content .home-share .show-share-items:hover,
.home-news .content .featured-content .home-share .show-share-items.active {
	background-color: #790910;
}
.home-news .content .featured-content .home-share .share-items {
	position: absolute;
	right: 0px;
	left: 0px;
	-webkit-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	width: 34px;
	height: 34px;
}
.home-news .content .featured-content .home-share .share-items.active {
	left: calc(100% + 20px);
}
.home-news .content .featured-content .home-share .share-items ul {
	display: block;
}
.home-news .content .featured-content .home-share .share-items li {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 34px;
	height: 34px;
}
.home-news .content .featured-content .home-share .share-items li:nth-of-type(1) {
	-webkit-transition: all 0.15s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.15s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.15s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.15s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.15s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-news .content .featured-content .home-share .share-items li:nth-of-type(2) {
	-webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-news .content .featured-content .home-share .share-items li:nth-of-type(3) {
	-webkit-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-news .content .featured-content .home-share .share-items li:nth-of-type(4) {
	-webkit-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-news .content .featured-content .home-share .share-items li:nth-of-type(5) {
	-webkit-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.75s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-news .content .featured-content .home-share .share-items li:nth-of-type(6) {
	-webkit-transition: all 0.9s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.9s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.9s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.9s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.9s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-news .content .featured-content .home-share .share-items li:nth-of-type(7) {
	-webkit-transition: all 1.05s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 1.05s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 1.05s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 1.05s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 1.05s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-news .content .featured-content .home-share .share-items li:nth-of-type(8) {
	-webkit-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-news .content .featured-content .home-share .share-items.active li:nth-of-type(1) {
	left: 0px;
}
.home-news .content .featured-content .home-share .share-items.active li:nth-of-type(2) {
	left: 100%;
}
.home-news .content .featured-content .home-share .share-items.active li:nth-of-type(3) {
	left: 200%;
}
.home-news .content .featured-content .home-share .share-items.active li:nth-of-type(4) {
	left: 300%;
}
.home-news .content .featured-content .home-share .share-items.active li:nth-of-type(5) {
	left: 400%;
}
.home-news .content .featured-content .home-share .share-items.active li:nth-of-type(6) {
	left: 500%;
}
.home-news .content .featured-content .home-share .share-items.active li:nth-of-type(7) {
	left: 600%;
}
.home-news .content .featured-content .home-share .share-items.active li:nth-of-type(8) {
	left: 700%;
}
.home-news .content .featured-content .home-share .share-items li a {
	display: block;
	width: 26px;
	height: 26px;
    background: #cf202e;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    margin: 2px;
    border: solid 2px #ffffff;
}
.home-news .content .featured-content .home-share .share-items li a:hover {
	background: #790910;
}
.home-news .content .news-rotator-content {
	float: left;
	width: 35%;
	background: #f4f4f4;
}
.home-news .content .news-rotator-content .wrp {
	padding: 50px 15px 35px 15px;
}
.home-news .content .news-rotator-content .slides {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.home-news .content .news-rotator-content .slides .slide {
	width: 100%;
	height: auto;
}
.home-news .content .news-rotator-content ul li a {
	display: block;
	padding: 15px;
}
.home-news .content .news-rotator-content ul li a:hover {
	background: rgba(255, 255, 255, 0.6);
}
.home-news .content .news-rotator-content ul li a img {
	display: block;
	margin-right: 25px;
}
.home-news .content .news-rotator-content ul li a .date {
	font-weight: 600;
	color: #5b5b5b;
	font-size: 14px;
	line-height: 14px;
	display: block;
	margin-bottom: 5px;
}
.home-news .content .news-rotator-content ul li a .date span {
	font-weight: 600;
	color: #cf202e;
	font-size: 24px;
	padding-right: 10px;
}
.home-news .content .news-rotator-content ul li a .article-title {
	font-weight: 700;
	color: #cf202e;
	font-size: 17px;
	line-height: 19px;
	display: block;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-news .content .news-rotator-content .controls {
	padding-top: 30px;
	padding-left: 15px;
	padding-right: 15px;
}
.home-news .content .news-rotator-content .controls .news-prev {
	position: relative;
	width: 34px;
	height: 34px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	margin-right: 10px;
}
.home-news .content .news-rotator-content .controls .news-prev:after {
	background: url('../images/home-news-prev-active.png') repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.home-news .content .news-rotator-content .controls .news-prev:hover::after {
	opacity: 1;
}
.home-news .content .news-rotator-content .controls .news-prev:before {
	background: url('../images/home-news-prev.png') no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	opacity: 0px;
}
.home-news .content .news-rotator-content .controls .news-next {
	position: relative;
	width: 34px;
	height: 34px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}
.home-news .content .news-rotator-content .controls .news-next:after {
	background: url('../images/home-news-next-active.png') repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.home-news .content .news-rotator-content .controls .news-next:hover::after {
	opacity: 1;
}
.home-news .content .news-rotator-content .controls .news-next:before {
	background: url('../images/home-news-next.png') no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	opacity: 0px;
}

/* home-tagline */
.home-tagline {
	position: relative;
	background: #ffffff;
	border-bottom: solid 1px #dadada;
	padding: 35px;
	font-size: 37px;
	line-height: 37px;
	color: rgba(0, 0, 0, 0.38);
	font-family: "garamond-premier-pro",serif;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 2px;
	text-align: center;
}

/* bc-items */
.bc-items {
	position: relative;
	background: #ffffff;
	overflow: hidden;
}
.bc-items .container {
	background: #fcfcfc; /* Old browsers */
	background: -moz-linear-gradient(top,  #fcfcfc 0%, #f2f2f2 50%, #fcfcfc 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fcfcfc), color-stop(50%,#f2f2f2), color-stop(100%,#fcfcfc)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #fcfcfc 0%,#f2f2f2 50%,#fcfcfc 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #fcfcfc 0%,#f2f2f2 50%,#fcfcfc 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #fcfcfc 0%,#f2f2f2 50%,#fcfcfc 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #fcfcfc 0%,#f2f2f2 50%,#fcfcfc 100%); /* W3C */
	-webkit-box-shadow: 0px 0px 200px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow:    0px 0px 200px 0px rgba(0, 0, 0, 0.25);
	box-shadow:         0px 0px 200px 0px rgba(0, 0, 0, 0.25);
	padding-top: 40px;
	padding-bottom: 40px;
}
.bc-items .container:after {
	content: "";
	clear: both;
	display: block;
}
.bc-items .home-blog {
	float: left;
	width: 40%;
	border-right: solid 1px #d0d0d0;
	padding: 0 25px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bc-items .home-blog .title {
	margin-bottom: 40px;
	padding: 0 15px;
}
.bc-items .home-blog .title h3 {
	font-size: 32px;
	line-height: 32px;
	color: #cf202e;
	font-weight: 600;
	text-transform: uppercase;
}
.bc-items .home-blog .title .more {
	display: block;
	float: right;
	margin-left: 20px;
	font-size: 13px;
	line-height: 13px;
	padding-left: 40px;
	color: #999999;
	position: relative;
}
.bc-items .home-blog .title .more:before {
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -11px;
	background: url('../images/home-blog-icon.png') no-repeat;
	background-size: 100% 100%;
	width: 27px;
	height: 22px;
}
.bc-items .home-blog .title .more:after {
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -11px;
	background: url('../images/home-blog-icon-active.png') no-repeat;
	background-size: 100% 100%;
	width: 27px;
	height: 22px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.bc-items .home-blog .title .more:hover::after {
	opacity: 1;
}
.bc-items .home-blog .title .more:hover {
	color: #cf202e;
}
.bc-items .home-blog .content ul li a {
	display: block;
	padding: 15px;
}
.bc-items .home-blog .content ul li a:hover {
	background: rgba(255, 255, 255, 0.6);
}
.bc-items .home-blog .content ul li a img {
	display: block;
	max-width: 100%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.bc-items .home-blog .content ul li a .table .table-cell:first-of-type {
	width: 118px;
	padding-right: 25px;
}
.bc-items .home-blog .content ul li a .date {
	font-weight: 600;
	color: #5b5b5b;
	font-size: 14px;
	line-height: 14px;
	display: block;
	margin-bottom: 5px;
}
.bc-items .home-blog .content ul li a .date span {
	font-weight: 600;
	color: #cf202e;
	font-size: 24px;
	padding-right: 10px;
}
.bc-items .home-blog .content ul li a .article-title {
	font-weight: 700;
	color: #cf202e;
	font-size: 17px;
	line-height: 19px;
	display: block;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.bc-items .home-calendar {
	float: left;
	width: 60%;
	border-left: solid 1px #d0d0d0;
	margin-left: -1px;
	padding: 0 25px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bc-items .home-calendar .title {
	margin-bottom: 40px;
	padding: 0 15px;
}
.bc-items .home-calendar .title h3 {
	font-size: 32px;
	line-height: 32px;
	color: #cf202e;
	font-weight: 600;
	text-transform: uppercase;
}
.bc-items .home-calendar .title .more {
	display: block;
	float: right;
	margin-left: 20px;
	font-size: 13px;
	line-height: 13px;
	padding-left: 40px;
	color: #999999;
	position: relative;
}
.bc-items .home-calendar .title .more:before {
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -11px;
	background: url('../images/home-calendar-icon.png') no-repeat;
	background-size: 100% 100%;
	width: 27px;
	height: 22px;
}
.bc-items .home-calendar .title .more:after {
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -11px;
	background: url('../images/home-calendar-icon-active.png') no-repeat;
	background-size: 100% 100%;
	width: 27px;
	height: 22px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.bc-items .home-calendar .title .more:hover::after {
	opacity: 1;
}
.bc-items .home-calendar .title .more:hover {
	color: #cf202e;
}
.bc-items .home-calendar .slides {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.bc-items .home-calendar .slides .slide {
	width: 100%;
	height: auto;
}
.bc-items .home-calendar .content ul:after {
	content: "";
	clear: both;
	display: block;
}
.bc-items .home-calendar .content ul li {
	float: left;
	width: 26.666666%;
	margin-right: 10%;
}
.bc-items .home-calendar .content ul li:nth-of-type(3n+3) {
	margin-right: 0;
}
.bc-items .home-calendar .content ul li .event {
	font-size: 15px;
	line-height: 19px;
	color: #000000;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	padding: 15px;
}
.bc-items .home-calendar .content ul li .event:hover {
	background: rgba(255,255,255,0.6);
}
.bc-items .home-calendar .content ul li .event .date {
	font-weight: 600;
	color: #5b5b5b;
	font-size: 18px;
	line-height: 18px;
	padding-top: 10px;
	display: block;
	margin-bottom: 15px;
}
.bc-items .home-calendar .content ul li .event .date span {
	font-weight: 600;
	color: #cf202e;
	font-size: 36px;
	margin-bottom: 10px;
	display: block;
}
.bc-items .home-calendar .content ul li .event h4 {
	font-weight: 700;
	color: #cf202e;
	font-size: 16px;
	line-height: 18px;
	display: block;
	margin-bottom: 15px;
}
.bc-items .home-calendar .content ul li .event h4 a {
	font-weight: 700;
	color: #cf202e;
}
.bc-items .home-calendar .content ul li .event h4 a:hover {
	color: #790910;
}
.bc-items .home-calendar .content ul li .event .more {
	font-size: 13px;
	color: #a7a8aa;
	display: inline-block;
	vertical-align: top;
	margin-top: 15px;
}
.bc-items .home-calendar .content ul li .event .more:hover {
	color: #000000;
}
.bc-items .home-calendar .controls {
	padding-top: 50px;
	padding-left: 15px;
	padding-right: 15px;
}
.bc-items .home-calendar .controls .calendar-prev {
	position: relative;
	width: 34px;
	height: 34px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
	margin-right: 10px;
}
.bc-items .home-calendar .controls .calendar-prev:after {
	background: url('../images/calendar-prev-active.png') repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.bc-items .home-calendar .controls .calendar-prev:hover::after {
	opacity: 1;
}
.bc-items .home-calendar .controls .calendar-prev:before {
	background: url('../images/calendar-prev.png') no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	opacity: 0px;
}
.bc-items .home-calendar .controls .calendar-next {
	position: relative;
	width: 34px;
	height: 34px;
	display: inline-block;
	vertical-align: top;
	cursor: pointer;
}
.bc-items .home-calendar .controls .calendar-next:after {
	background: url('../images/calendar-next-active.png') repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.bc-items .home-calendar .controls .calendar-next:hover::after {
	opacity: 1;
}
.bc-items .home-calendar .controls .calendar-next:before {
	background: url('../images/calendar-next.png') no-repeat;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	opacity: 0px;
}

/* home-connect */
.home-connect {
	background: url('../images/connect-pattern-bg.jpg') repeat;
}
.home-connect .home-connect-top {
	background: #cf202e;
	padding: 13px 30px;
}
.home-connect .home-connect-top .table .table-cell {
	width: 33.333333%;
}
.home-connect .home-connect-top h3 {
	text-align: center;
	font-size: 32px;
	line-height: 32px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}
.home-connect .home-connect-top .social {
	float: left;
}
.home-connect .home-connect-top .social:after {
	display: block;
	content: "";
	clear: both;
}
.home-connect .home-connect-top .social ul li {
	display: inline-block;
	vertical-align: top;
}
.home-connect .home-connect-top .social ul li a {
	display: block;
	height: 60px;
	line-height: 60px;
	padding: 0 10px;
	position: relative;
	font-size: 24px;
	color: #ffffff;
}
.home-connect .home-connect-top .social ul li a:before {
	display: block;
	content: "";
	background: url('../images/dark-red-pattern.png') repeat;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.home-connect .home-connect-top .social ul li a:hover::before {
	opacity: 1;
}
.home-connect .home-connect-top .social ul li a i {
	position: relative;
}
.home-connect .home-connect-top .more {
	display: block;
	padding: 15px 20px 15px 62px;
	position: relative;
	font-size: 13px;
	line-height: 13px;
	color: #ffffff;
	float: right;
}
.home-connect .home-connect-top .more:after {
	display: block;
	content: "";
	background: url('../images/connect-more-icon.png') no-repeat;
	background-size: 100% 100%;
	width: 22px;
	height: 21px;
	position: absolute;
	left: 20px;
	top: 50%;
	margin-top: -10px;
}
.home-connect .home-connect-top .more:before {
	display: block;
	content: "";
	background: url('../images/dark-red-pattern.png') repeat;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.home-connect .home-connect-top .more:hover::before {
	opacity: 1;
}
.home-connect .home-connect-top .more .text {
	position: relative;
}
.home-connect .home-connect-rotator {
	position: relative;
	padding: 35px 75px;
}
.home-connect .home-connect-rotator .slides {
	width: 100%;
	height: auto;
	overflow: hidden;
}
.home-connect .home-connect-rotator .slides .slide {
	width: 100%;
	height: auto;
	background: rgba(0,0,0,0.07);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 14px;
}
.home-connect .home-connect-rotator .slides .slide:after {
	content: "";
	clear: both;
	display: block;
}
.home-connect .home-entry-social {
    width: auto;
    margin: 0;
    padding: 0;
    height: 100%;
    -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 32.2666667%;
	margin: 0 0.8%;
	float: left;
	position: relative;
	padding-bottom: 100px;
	background: #cf202e;
}
.home-connect .slide .home-entry-social:nth-of-type(3n+1) {
    margin-left: 0;
}
.home-connect .slide .home-entry-social:nth-of-type(3n+3) {
    margin-right: 0;
}
.home-connect .home-entry-social .entry-social-media {
}
.home-connect .home-entry-social .entry-social-media a {
	display: block;
}
.home-connect .home-entry-social .entry-social-media .video-popup {
	position: relative;
}
.home-connect .home-entry-social .entry-social-media .video-popup:after {
	content: "";
	position: absolute;
	background: url('../images/youtube-play-icon.png') no-repeat center;
	width: 62px;
	height: 44px;
	left: 50%;
	top: 50%;
	margin-left: -31px;
	margin-top: -22px;
}
.home-connect .home-entry-social .entry-social-media img {
	display: block;
	width: 100%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-connect .home-entry-social .entry-social-media a:hover img {
	opacity: 0.9;
}
.home-connect .home-entry-social .entry-social-content {
	padding: 0 20px;
	font-size: 15px;
	line-height: 22px;
	color: #ffffff;
	padding: 25px 25px 0 25px;
}
.home-connect .home-entry-social .entry-social-content .top {
	display: block;
	font-weight: 700;
	margin-bottom: 10px;
}
.home-connect .home-entry-social .entry-social-content .top span {
	font-size: 25px;
	font-weight: 700;
}
.home-connect .home-entry-social .entry-social-content a {
	color: #ffffff;
	font-weight: 700;
}
.home-connect .home-entry-social .entry-social-content a * {
	color: #ffffff;
	font-weight: 700;
}
.home-connect .home-entry-social .entry-social-content a:hover {
	opacity: 0.8;
}
.home-connect .home-entry-social .action {
	text-align: center;
	padding: 0 20px;
	height: 100px;
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 0px;
}
.home-connect .home-entry-social .action a {
	display: inline-block;
	vertical-align: top;
	font-size: 13px;
	line-height: 13px;
	color: #cf202e;
	padding: 12px 15px 11px;
	position: relative;
	background: transparent;
	border: none;
	background: #ffffff;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	opacity: 1!important;
	text-transform: uppercase;
}
.home-connect .home-entry-social .action a .text {
	display: block;
	position: relative;
	z-index: 200;
	color: #cf202e;
	font-weight: 400;
	letter-spacing: 2px;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
}
.home-connect .home-entry-social .action a .bg {
	position: absolute;
	top: 0px;
	right: 100%;
	bottom: 0px;
	left: 0;
	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
	background: url('../images/filter-red-pattern.jpg') repeat;
	z-index: 100;
}
.home-connect .home-entry-social .action a .bg:after {
	content: "";
	position: absolute;
	top: 0px;
	right: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 46px 46px 0;
	border-color: transparent #ffffff transparent transparent;
}
.home-connect .home-entry-social .action a:hover .bg {
	right: -46px;
}
.home-connect .home-entry-social .action a:hover .text {
	color: #ffffff;
}
.home-connect .controls {
}
.home-connect .controls .connect-prev {
	position: absolute;
	background: url('../images/connect-rotator-prev.png') no-repeat;
	width: 35px;
	height: 27px;
	left: 0px;
	top: 50%;
	cursor: pointer;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-connect .controls .connect-prev:hover {
	opacity: 0.8;
}
.home-connect .controls .connect-next {
	position: absolute;
	background: url('../images/connect-rotator-next.png') no-repeat;
	width: 35px;
	height: 27px;
	right: 0px;
	top: 50%;
	cursor: pointer;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.home-connect .controls .connect-next:hover {
	opacity: 0.8;
}

/* ----------------------------------- */
/* ---------- Footer styles ---------- */
/* ----------------------------------- */

.site-footer {
	position: relative;
	z-index: 2000;
	background: #ffffff;
}

/* footer-top */
.site-footer .footer-top {
	padding: 35px 0;
	position: relative;
	overflow: hidden;
}

.site-footer .footer-top:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: -20px;
	width: 261px;
	height: 261px;
	margin-top: -130px;
	background: url('../images/footer-top-logo.png') no-repeat center right #ffffff;
}
.site-footer .footer-top:after {
	content: "";
	clear: both;
	display: block;
}

/* footer-top-left */
.site-footer .footer-top .footer-top-left {
	float: left;
	width: 320px;
}

/* logo */
.site-footer .footer-logo {
	width: 254px;
	margin-right: 50px;
	margin-bottom: 15px;
}
.site-footer .footer-logo img {
	display: block;
	width: 100%;
}

/* copyright */
.site-footer .copyright {
	font-size: 11px;
	line-height: 14px;
	color: #bcbcbc;
	text-transform: uppercase;
	padding-left: 57px;
}
.site-footer .copyright ul li {
	display: inline-block;
	vertical-align: top;
}
.site-footer .copyright ul li:after {
	content: "\00a0\00a0\00a0|\00a0\00a0\00a0";
}
.site-footer .copyright ul li:last-of-type::after {
	content: "";
}
.site-footer .copyright ul li a {
	color: #bcbcbc;
}
.site-footer .copyright ul li a:hover {
	color: #000000;
}

/* footer-info */
.site-footer .footer-info {
	float: left;
	font-size: 15px;
	line-height: 24px;
	color: #000000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 17px 40px 0;
	width: calc(100% - 320px - 120px);
}
.site-footer .footer-info:after {
	display: block;
	content: "";
	clear: both;
}
.site-footer .footer-info .item {
	float: left;
	padding-left: 45px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.site-footer .footer-info .item.phones {
	background: url('../images/phone-icon.png') no-repeat left 5px;
	width: 65%;
	padding-right: 20px;
}
.site-footer .footer-info .item.address {
	background: url('../images/address-icon.png') no-repeat left 5px;
	width: 35%;
}
.site-footer .footer-info a {
	color: #000000;
	display: block;
	font-weight: 600;
}
.site-footer .footer-info a:after {
	display: block;
	content: "";
	clear: both;
}
.site-footer .footer-info a span.nr {
	color: #000000;
	padding-left: 0;
}
.site-footer .footer-info a span.nr:hover {
	color: #a7a8aa;
}
.site-footer .footer-info ul li span {
	color: #a7a8aa;
	font-weight: 600;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	padding-left: 10px;
	font-size: 13px;
}

/* logo */
.site-footer .church-logo {
	width: 120px;
	float: right;
}
.site-footer .church-logo img {
	display: block;
	width: 100%;
}

/* footer-bottom */
.site-footer .footer-bottom {
	background: #cf202e;
}
.site-footer .footer-bottom .container:after {
	content: "";
	display: block;
	clear: both;
}

/* social */
.site-footer .social {
	float: left;
	padding-left: 47px;
}
.site-footer .social:after {
	display: block;
	content: "";
	clear: both;
}
.site-footer .social ul li {
	display: inline-block;
	vertical-align: top;
}
.site-footer .social ul li a {
	display: block;
	height: 59px;
	line-height: 59px;
	padding: 0 10px;
	position: relative;
	font-size: 24px;
	color: #ffffff;
}
.site-footer .social ul li a:before {
	display: block;
	content: "";
	background: url('../images/dark-red-pattern.png') repeat;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.site-footer .social ul li a:hover::before {
	opacity: 1;
}
.site-footer .social ul li a i {
	position: relative;
}

/* footer-bottom-right */
.site-footer .footer-bottom-right {
	float: right;
}

/* footer-menu */
.site-footer .footer-menu {
	float: left;
}
.site-footer .footer-menu ul:after {
	content: "";
	clear: both;
	display: block;
}
.site-footer .footer-menu ul li {
	float: left;
}
.site-footer .footer-menu ul li a {
	height: 59px;
	font-size: 15px;
	line-height: 17px;
	color: #ffffff;
	font-weight: 600;
	display: block;
	padding: 0 25px;
	position: relative;
}
.site-footer .footer-menu ul li a:before {
	display: block;
	content: "";
	background: url('../images/dark-red-pattern.png') repeat;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.site-footer .footer-menu ul li a:hover::before {
	opacity: 1;
}
.site-footer .footer-menu ul li a .text {
	font-weight: 600;
	position: relative;
}
.site-footer .footer-menu ul li a img {
	display: block;
	margin-right: 15px;
	position: relative;
}

/* back-to-top */
.back-to-top {
	display: block;
	float: left;
	text-transform: uppercase;
	color: #ffffff;
	font-size: 13px;
	line-height: 13px;
	padding: 7px 15px;
	border: solid 1px #ffffff;
	letter-spacing: 2px;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	cursor: pointer;
	margin-left: 15px;
	/*margin-left: 40px; */
	margin-top: 15px;
	position: relative;
}
.back-to-top:before {
	display: block;
	content: "";
	background: url('../images/dark-red-pattern.png') repeat;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
	opacity: 0;
}
.back-to-top:hover::before {
	opacity: 1;
}
.back-to-top span {
	position: relative;
}

/* developer */
.site-footer .developer {
	width: 37px;
	height: 31px;
	overflow: hidden;
	float: left;
	margin-top: 14px;
	/*margin-left: 40px;*/
	margin-left:15px;
}
.site-footer .developer a {
	width: 37px;
	height: 31px;
	display: block;
	background: url('../images/developer-logo.png');
	position: relative;
	text-indent: -9999px;
}
.site-footer .developer a:after {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	background: url('../images/developer-logo-active.png') no-repeat center;
	background-size: 37px 31px;
	content: "";
	display: block;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	opacity: 0;
}
.site-footer .developer a:hover::after {
	opacity: 1;
}

.accordion .accordion-title {
	background: #e7e7e7;
	padding: 10px 20px;
	border-radius: 10px;
	margin-bottom:0;
	cursor: pointer;

}
.accordion .accordion-title.open::after {
	content: "\f0d8";
}
.accordion .accordion-title::after {
	font-family: FontAwesome;
	content: "\f0d7";
	float: right;
	font-style: normal;
}
.accordion .accordion-content {
	margin-bottom: 10px;
	padding: 0 20px;
}
/* ----------------------------------- */
/* --------- Desktop styles ---------- */
/* ----------------------------------- */

@media (min-width: 1240px) {

	.filter {
		display: block!important;
		height: auto!important;
	}

	/* ----------- Visibility ------------ */

	.visible-desktop {
		display: block!important;
	}
	.visible-tablet {
		display: none!important;
	}
	.visible-phone {
		display: none!important;
	}
	.hidden-desktop {
		display: none!important;
	}

}

@media (min-width: 1240px) and (max-width: 1480px) {

	.container {
		width: 960px;
	}

	.toggle-main-menu .text {
	    display: none!important;
	}
	.header-links .submenu .submenu-left {
		padding-left: calc((100% - 960px) / 2);
		width: 240px;
	}
	.header-links .submenu .submenu-right {
		padding-right: calc((100% - 960px) / 2);
		width: 720px;
	}
	.interior-banner .top-bar.page-with-sidebar {
	    width: calc(100% - (100% - 960px) / 2 - 240px);
	    padding-left: calc((100% - 960px) / 2);
	}
	.left-content {
		width: calc(720px + ((100% - 960px)/2));
		padding: 60px 100px 0 calc((100% - 960px)/2);
	}
	.right-sidebar {
		width: calc(240px + ((100% - 960px)/2));
	}
	.related-items .related-items-title {
		padding: 20px calc(100% - 240px) 20px 35px;
	}
	.related-items .related-items-content {
		padding-right: calc(100% - 240px);
	}
	.support {
		padding: 0 calc(100% - 205px) 0 35px;
	}
	.latest-items .item {
		margin-right: calc(100% - 240px);
	}
	.site-footer .footer-menu ul li a {
	    padding: 0 15px;
	}
	.archives .entry-blog.has-image .content {
	    padding-left: 378px;
	}
	.infographic .item {
	    width: 300px;
	    height: 300px;
	}
	.home-news .content .left-image {
	    width: calc((100% - 960px) / 2 + 240px);
	}
	.home-news .content .featured-content .subscribe a {
	    font-size: 15px;
	}
	.home-connect .home-connect-top h3 {
	    letter-spacing: 1px;
	    font-size: 28px;
	}

	.site-footer .footer-top .container {
		width: 1080px;
	}
	.site-footer .footer-bottom .container {
		width: 1080px;
	}

}

/* ----------------------------------- */
/* --------- Tablets styles ---------- */
/* ----------------------------------- */

@media (min-width: 660px) and (max-width: 1239px) {

	.niche-badge {
		display: none;
	}

	.container {
		width: 100%;
		margin: auto;
		padding: 0 30px;
	}

	/* header */
	.toggle-main-menu {
	    height: 55px;
	}
	.toggle-main-menu .icon-wrap {
		height: 55px;
		margin-right: 0;
		width: 70px;
	}
	.toggle-main-menu .icon {
	    height: 25px;
	    left: 17px;
	    top: 15px;
	    width: 36px;
	}
	.toggle-main-menu .icon .bar {
	    height: 3px;
	    width: 36px;
	}
	.toggle-main-menu .icon .top-bar.middle {
		top: 11px;
	}
	.toggle-main-menu .icon .middle-bar {
		top: 11px
	}
	.toggle-main-menu .icon .bottom-bar {
		top: 22px;
	}
	.toggle-main-menu .icon .bottom-bar.middle {
		top: 11px;
	}
	.site-header .container {
	    padding: 0;
	}
	.site-header .logo {
	    height: 54px;
	    margin-right: 0;
	    width: 168px;
	    padding-left: 85px;
	}
	.search-form .show-search {
	    height: 54px;
	    width: 50px;
	    background-size: 22px 26px;
	    border-left: solid 1px #ebebeb;
	}
	.search-form .show-search::after {
	    background-size: 22px 26px;
	}
	.search-form form:after {
	    display: none;
	}
	.site-header {
	    border-bottom: 1px solid #ebebeb;
	    height: 54px;
	}
	.header-right {
		position: relative;
		top: auto;
		right: auto;
	}
	.search-form {
	    position: static;
	}
	.search-form form {
	    width: calc(100% - 70px);
	    z-index: 16000;
	}
	.search-form .field {
	    width: 100%;
	    height: 54px;
	}
	.main-menu .social {
	    height: 55px;
	    padding: 0 10px 0 80px;
	}
	.main-menu .social ul li a {
		height: 55px;
		line-height: 55px;
		position: relative;
		font-size: 18px;
		padding: 0 8px;
	}
	.main-menu {
	    padding-top: 55px;
	    width: 320px;
	}
	body.menu-opened #page {
	    -webkit-transform: translate3d(320px, 0, 0);
	    -moz-transform: translate3d(320px, 0, 0);
	    -o-transform: translate3d(320px, 0, 0);
	    -ms-transform: translate3d(320px, 0, 0);
	    transform: translate3d(320px, 0, 0);
	}
	body.menu-opened .site-header {
	    -webkit-transform: translate3d(250px, 0, 0);
	    -moz-transform: translate3d(250px, 0, 0);
	    -o-transform: translate3d(250px, 0, 0);
	    -ms-transform: translate3d(250px, 0, 0);
	    transform: translate3d(250px, 0, 0);
	}
	.main-menu .main-menu-content ul li .top {
		font-size: 14px;
		line-height: 16px;
		padding: 0 55px 0 0;
	}
	.main-menu .main-menu-content ul li .top .show-submenu {
	    width: 55px;
	}
	.main-menu .main-menu-content ul li .top a {
	    font-size: 14px;
		line-height: 16px;
	    padding: 10px 30px;
	}
	.main-menu .main-menu-content ul li .top .show-submenu::after {
		height: 16px;
		margin-left: -8px;
		margin-top: -8px;
		width: 16px;
		background-size: 100% 100%;
	}
	.main-menu::before {
	    background-attachment: scroll;
	    background-size: 160px auto;
	}
	.main-menu .main-menu-content ul li .submenu::before {
	    display: none;
	}
	.main-menu .main-menu-content ul li .submenu ul li {
	    padding: 0 20px;
	}
	.main-menu .main-menu-content ul li .submenu ul li a {
	    font-size: 14px;
	    line-height: 16px;
	    padding: 15px 15px 15px 55px;
	}
	.main-menu .main-menu-content ul li .submenu ul li a .icon {
	    width: 55px;
	}
	.main-menu .main-menu-content ul li .submenu ul li a .icon img {
	    max-width: 40%;
	}
	.main-menu .main-menu-content ul li .submenu ul li li a {
	    font-size: 12px;
	    line-height: 14px;
	    padding: 0 15px 0 55px;
	}
	.main-menu .main-menu-content ul li .submenu ul li ul {
		padding: 15px 0;
	}
	.main-menu .main-menu-content ul li .submenu ul li li {
	    margin-bottom: 10px;
	}
	.main-menu .main-menu-bottom {
	    padding: 20px 0;
	}
	.main-menu .main-menu-bottom ul li {
	    margin-bottom: 10px;
	    padding: 0 30px;
	}
	.main-menu .main-menu-bottom ul li a {
	    font-size: 12px;
	    line-height: 14px;
	}
	.header-links {
	    float: none;
	}
	.header-links li {
	    width: 25%;
	}
	.header-links li:first-of-type .top {
	    border-left: none;
	}
	.header-links li:last-of-type .top {
	    border-right: none;
	}
	.header-links .top {
	    border-bottom: solid 1px #ebebeb;
	}
	.header-links .top a {
	    font-size: 11px;
	    height: 54px;
	    line-height: 11px;
	    padding: 5px;
	    width: auto;
	}
	.header-links .top a .icon {
	    display: block;
	    height: 33px;
	}
	.header-links .top a .icon img {
	    max-height: 22px;
	}
	.header-links .submenu {
		left: auto;
		max-height: 10000px;
		opacity: 1;
		position: relative;
		top: auto;
		width: 320px;
		-webkit-transform: translate3d(0, 0, 0)!important;
		-moz-transform: translate3d(0, 0, 0)!important;
		-o-transform: translate3d(0, 0, 0)!important;
		-ms-transform: translate3d(0, 0, 0)!important;
		transform: translate3d(0, 0, 0)!important;
		display: none;
		-webkit-transition: none!important;
		-moz-transition: none!important;
		-ms-transition: none!important;
		-o-transition: none!important;
		transition: none!important;
	}
	.header-links .submenu .submenu-left {
	    width: auto;
	    float: none;
	    padding: 30px 20px;
	    height: auto!important;
	    background: #ffffff;
	}
	.header-links .submenu ul li {
	    width: auto;
	}
	.header-links .submenu ul li:last-of-type {
	    margin-bottom: 0;
	}
	.header-links .submenu .submenu-right {
	    width: auto;
	    float: none;
	    padding: 30px 20px;
	    height: auto!important;
	    background: #f5f5f6;
	}
	.header-links .submenu .submenu-left .submenu-title {
	    padding-left: 0;
	    padding-right: 0;
	}
	.header-links .submenu .submenu-title {
	    padding-left: 0;
	    margin-bottom: 20px;
	}
	.header-links .submenu .column {
		float: none;
		padding-left: 0;
		width: auto;
		margin-bottom: 25px;
	}
	.header-links .submenu .column:last-of-type {
		margin-bottom: 0px;
	}
	.header-links .submenu h3 {
	    font-size: 15px;
	    line-height: 15px;
	}

	/* banner styles */
	.interior-banner {
	    height: 380px;
	    padding-bottom: 55px;
	    padding-top: 55px;
	}
	.interior-banner .image {
	    bottom: 55px;
	    height: auto;
	    z-index: 2500;
	}
	.section-title {
	    font-size: 38px;
	    line-height: 38px;
	    margin-left: 0px;
	    max-width: 50%;
	    padding: 15px 20px;
	    z-index: 2550;
	    position: relative;
	}
	.interior-banner .top-bar {
	    padding-left: 30px;
	    padding-right: 30px;
	    border: none;
	    padding-bottom: 1px;
	}
	.interior-banner .top-bar .container {
		padding: 0;
		margin-left: -30px;
		margin-right: -30px;
		width: auto;
	}
	.interior-banner .top-bar:after {
	    content: "";
	    height: 1px;
	    position: absolute;
	    left: 0px;
	    right: 0px;
	    bottom: 0px;
	    height: 1px;
	    background: #e4e4e4;
	    z-index: 2900;
	}
	.interior-banner .top-bar:before {
	    position: absolute;
	    left: 0px;
	    right: 0px;
	    bottom: 0px;
	    top: 0px;
	    content: "";
	    background: #ffffff;
	    z-index: 2900;
	}
	.interior-banner .top-bar.page-with-sidebar {
	    padding-right: 100px;
	    width: 100%;
	}
	.share {
	    right: 30px;
	}
	.toggle-mobile-sidebar {
		height: 34px;
		font-size: 12px;
		line-height: 34px;
		color: #cf202e;
		letter-spacing: 1px;
		text-transform: uppercase;
		z-index: 3000;
		position: absolute;
		left: 30px;
		top: 50%;
		margin-top: -17px;
		cursor: pointer;
	}
	.toggle-mobile-sidebar .icon-wrp {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 34px;
		height: 34px;
		background: #cf202e;
		border-radius: 50%;
		border: solid 2px #ffffff;
		z-index: 3000;
		-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		position: relative;
		margin-right: 10px;
	}
	.toggle-mobile-sidebar:hover .icon-wrp,
	.toggle-mobile-sidebar.active .icon-wrp {
		background: #790910;
	}
	.toggle-mobile-sidebar .icon {
		width: 16px;
		height: 14px;
		position: absolute;
		left: 7px;
		top: 8px;
	}
	.toggle-mobile-sidebar .icon .bar {
		position: absolute;
		width: 16px!important;
		height: 2px;
		border-radius: 1px;
		background: #ffffff;
		left: 0px;
		right: 0px;
		-webkit-transition: all 0.2s linear;
		-moz-transition: all 0.2s linear;
		-ms-transition: all 0.2s linear;
		-o-transition: all 0.2s linear;
		transition: all 0.2s linear;
		padding: 0!important;
	}
	.toggle-mobile-sidebar .icon .top-bar {
		top: 0px;
	}
	.toggle-mobile-sidebar .icon .top-bar.middle {
		top: 6px;
	}
	.toggle-mobile-sidebar .icon .top-bar.rotate {
		-webkit-transform: rotate(45deg);
	    -moz-transform: rotate(45deg);
	    -o-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	    transform: rotate(45deg);
	}
	.toggle-mobile-sidebar .icon .middle-bar {
		top: 6px
	}
	.toggle-mobile-sidebar .icon .bottom-bar {
		top: 12px;
	}
	.toggle-mobile-sidebar .icon .bottom-bar.middle {
		top: 6px;
	}
	.toggle-mobile-sidebar .icon .bottom-bar.rotate {
		-webkit-transform: rotate(-45deg);
	    -moz-transform: rotate(-45deg);
	    -o-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	}

	/* main */
	.site-main {
	    padding-bottom: 45px;
	}
	.left-content {
	    padding: 40px 30px 0 30px!important;
	    width: auto;
	    height: auto!important;
	    float: none;
	    min-height: 450px;
	}
	.wysiwyg .alignleft {
		max-width: 50%;
	}
	.wysiwyg .alignright {
		max-width: 50%;
	}
	.wysiwyg blockquote {
	    margin: 40px -30px;
	    padding: 40px 30px;
	}
	.right-sidebar {
	    float: none;
	    width: auto;
	    position: absolute;
	    left: 0px;
	    right: 0px;
	    top: 0px;
	    -webkit-transform: translate3d(0, -100%, 0);
    	-moz-transform: translate3d(0, -100%, 0);
    	-o-transform: translate3d(0, -100%, 0);
    	-ms-transform: translate3d(0, -100%, 0);
    	transform: translate3d(0, -100%, 0);
    	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		opacity: 0;
		-webkit-box-shadow: 0px 2px 2px 0px rgba(50, 50, 50, 0.1);
		-moz-box-shadow:    0px 2px 2px 0px rgba(50, 50, 50, 0.1);
		box-shadow:         0px 2px 2px 0px rgba(50, 50, 50, 0.1);
		width: auto;
		padding-bottom: 30px;
		background: #f8f8f8;
	}
	.right-sidebar.active {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
    	-moz-transform: translate3d(0, 0, 0);
    	-o-transform: translate3d(0, 0, 0);
    	-ms-transform: translate3d(0, 0, 0);
    	transform: translate3d(0, 0, 0);
	}
	.related-items {
	    margin-bottom: 30px;
	}
	.related-items .related-items-title {
		padding: 20px 30px;
	}
	.related-items .related-items-content ul li a {
	    padding: 15px 30px;
	}
	.related-items .related-items-content {
		padding-right: 0px;
	}
	.support {
		padding: 0 30px 0 30px;
		margin-bottom: 0;
	}
	.latest-items .item {
		margin-right: 0;
	    padding: 0 30px 30px 30px;
	}
	.filter {
		display: block!important;
		height: auto!important;
	}
	.filter .title {
	    width: auto;
	    margin-right: 0;
	    text-align: center;
	    margin-bottom: 20px;
	    float: none;
	    padding: 0;
	    z-index: 3000;
	}
	.filter .filter-item {
		float: left;
		margin-right: 5%;
		width: 30%;
	}
	.filter::after {
	    height: 58px;
	}
	.filter::before {
	    top: 58px;
	}
	.article-nav {
	    padding-bottom: 45px;
	    padding: 45px 30px 0px 30px;
	}
	.center-content {
	    padding: 40px 0 0;
	}
	.center-content.has-pb {
	    padding: 40px 0;
	}

	/* archives */
	.archives {
	    padding-top: 40px;
	}
	.archives .archives-ct {
	    margin-bottom: 45px;
	}
	.archives .entry-blog .image {
	    width: 220px;
	}
	.archives .entry-blog.has-image .content {
	    padding-left: 250px;
	}

	/* staff */
	.staff .entry-staff .entry-staff-details .name {
	    font-size: 18px;
	    line-height: 18px;
	}
	.staff .entry-staff .entry-staff-details .position {
		font-size: 12px;
		letter-spacing: 1px;
		line-height: 12px;
		margin-bottom: 15px;
	}
	.staff .entry-staff .entry-staff-content .close {
	    right: 30px;
	}

	/* mashup */
	.filter .mashup-filter ul li {
	    display: block;
	    float: left;
	    margin-right: 5px;
	}
	.mashup .mashup-ct {
	    padding: 40px 0;
	}
	.entry-social {
	    padding: 5px;
	}
	.entry-social .entry-social-content {
	    font-size: 13px;
	    line-height: 18px;
	    padding: 15px;
	}
	.entry-social .entry-social-content .top span {
	    font-size: 17px;
	}
	.mashup::after {
		bottom: -45px;
		height: 298px;
		width: 273px;
		left: 20px;
	}

	/* contact */
	.contact .contact-info .item {
	    float: none;
	    width: auto;
	    margin: auto;
	    max-width: 320px;
	}
	.contact .contact-info .item.phones {
	    margin-bottom: 30px;
	}
	.contact .container {
	    padding-bottom: 40px;
	    padding-top: 40px;
	}

	/* schedule */
	.schedule a {
	    font-size: 18px;
	    height: 38px;
	    letter-spacing: 1px;
	    line-height: 18px;
	}
	.schedule a::after {
		background-size: 100% 100%;
		content: "";
		height: 62px;
		left: 50%;
		margin-left: -23px;
		position: absolute;
		top: -14px;
		width: 46px;
	}
	.schedule a .left {
	    right: calc(50% + 35px);
	}
	.schedule a .right {
	    left: calc(50% + 35px);
	}
	.schedule a img {
	    max-width: 15px;
	    margin-left: 10px;
	}

	/* home style */

	/* rotator */
	.rotator-overlays .slides .slide .caption {
		padding: 20px 2%;
		position: absolute;
		width: 96%;
		float: none;
		bottom:0;

	}
	.rotator-overlays .controls {
	    /*right: 30px;*/
	}
	.rotator-overlays .slides .slide .caption .caption-ct {
		padding-bottom:0;
	}
	.rotator-overlays .slides .slide .caption h2 {
	    font-size: 22px;
	    line-height: 22px;
	}
	.rotator-overlays .slides .slide .caption .links {
	    /*max-width: 50%;*/
	    min-height: 27px;
	    padding-top: 0px;
	}
	.rotator-overlays .slides {
		width: 100%;
		height: auto;
		min-height: 380px;
	}
	.rotator-overlays .slides .slide {
		width: 100%;
		height: auto;
		min-height: 380px;
		position: relative;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding: 93px 0 130px;
	}
	.rotator-overlays .slides .slide .caption ul li a {
	    font-size: 13px;
	    line-height: 13px;
	}
	.rotator-overlays .slides .slide .caption ul {
	    margin-left: 0;
	}
	.rotator-overlays .controls .rotator-prev,
	.rotator-overlays .controls .rotator-next {
	    width: 27px;
	    height: 27px;
	}
	.rotator-overlays .controls {
	    /*right: 20px;
	    bottom: 20px;*/
	}

	/* introduction */
	.introduction .sections-links {
		bottom: auto;
		left: auto;
		position: relative;
		right: auto;
		text-align: center;
		z-index: 4500;
	}
	.introduction .sections-links::before {
	    display: none;
	}
	.introduction .sections-links .container {
		padding: 0;
	}
	.introduction .sections-links ul li:hover a {
		-webkit-transform: translate3d(0, 0, 0);
	    -moz-transform: translate3d(0, 0, 0);
	    -o-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	    transform: translate3d(0, 0, 0);
	}
	.introduction .sections-links ul li:after {
		display: none;
	}
	.introduction .sections-links ul li a:before {
		display: none;
	}
	.introduction .sections-links ul li a {
		font-size: 15px;
		height: 75px;
		line-height: 15px;
		padding: 0 20px;
	}
	.introduction .sections-links ul li a .icon img {
	    max-width: 25px;
	}
	.introduction .sections-links ul li a .icon {
	    width: 40px;
	}
	.introduction .sections-links ul li {
		border-right: 1px solid #d3d3d4;
		border-bottom: 1px solid #d3d3d4;
		float: left;
		width: 50%;
	}
	.introduction .sections-links ul li:nth-of-type(2) {
	    border-right: none;
	}
	.introduction .sections-links ul li:nth-of-type(3) {
	    border-bottom: none;
	}
	.introduction .sections-links ul li:nth-of-type(4) {
	    border-bottom: none;
	}

	.introduction .introduction-content {
		font-size: 13px;
		line-height: 19px;
		padding: 30px 0 90px;
	}
	.introduction .introduction-content h1 {
	    font-size: 19px;
	    line-height: 22px;
	    margin-bottom: 15px;
	}
	.introduction {
	    border-bottom: 8px solid #ededed;
	}
	.introduction .sections-links .scroll {
		display: none;
	}

	/* testimonial */
	.testimonial .testimonial-ct {
		margin-top: -66px;
		padding-bottom: 10px;
		position: relative;
		z-index: 5000;
	}
	.testimonial .testimonial-ct::after {
	    height: 58px;
	    width: 30px;
	}
	.testimonial .testimonial-ct .grey-bg {
		background: rgba(206, 206, 206, 0.55) none repeat scroll 0 0;
		bottom: 0;
		left: 0;
		position: absolute;
		right: -10px;
		top: 58px;
	}
	.testimonial .testimonial-ct .quote::after {
	    border-width: 40px 40px 0 0;
	}
	.testimonial .testimonial-ct .quote {
	    padding: 30px;
	}
	.testimonial .testimonial-ct .quote h3 {
		color: #5b5b5b;
		font-family: "garamond-premier-pro",serif;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 18px;
		margin-bottom: 15px;
		padding: 0;
		padding-top: 50px;
		position: relative;
	}
	.testimonial .testimonial-ct .quote h3::before {
		height: 31px;
		left: 50%;
		margin-left: -21px;
		margin-top: 0px;
		top: 0px;
		width: 42px;
	}
	.testimonial .testimonial-ct .quote h3::after {
	    display: none;
	}
	.testimonial .testimonial-ct .quote .parent {
		font-size: 12px;
		letter-spacing: 2px;
		line-height: 12px;
		padding-bottom: 50px;
		position: relative;
		display: block;
	}
	.testimonial .testimonial-ct .quote .parent:after {
		background: url("../images/testimonial-right.png") no-repeat;
		background-size: 100% 100%;
		content: "";
		display: block;
		height: 31px;
		left: 50%;
		margin-left: -21px;
		margin-top: 0px;
		bottom: 0px;
		width: 42px;
		position: absolute;
	}

	/* infographic */
	.infographic {
	    padding: 55px 0;
	}
	.infographic ul li {
	    float: none;
	    width: auto;
	    text-align: center!important;
	    margin-bottom: 55px;
	}
	.infographic ul li:last-of-type {
	    margin-bottom: 0;
	}
	.infographic .item {
		opacity: 1;
		-webkit-transform: rotate3d(1, 0, 0, 0deg);
	    -moz-transform: rotate3d(1, 0, 0, 0deg);
	    -o-transform: rotate3d(1, 0, 0, 0deg);
	    -ms-transform: rotate3d(1, 0, 0, 0deg);
	    transform: rotate3d(1, 0, 0, 0deg);
	    width: 240px;
	    height: 240px;
	}
	.infographic .item .icon {
	    height: 80px;
	    padding-top: 15px;
	}
	.infographic .item .icon img {
	    max-width: 60%;
	}
	.infographic .item .text h3 span {
	    font-size: 47px;
	    line-height: 47px;
	    margin-bottom: 10px;
	}

	/* home-schedule */
	.home-schedule a {
		font-size: 28px;
		height: auto;
		letter-spacing: 1px;
		line-height: 28px;
		margin: auto;
		max-width: 100%;
		text-align: center;
		padding: 15px 20px 70px;
	}
	.home-schedule a .left-ribbon,
	.home-schedule a .right-ribbon {
	    display: none;
	}
	.home-schedule a .left {
		position: relative;
		right: auto;
		top: auto;
	}
	.home-schedule a .right {
	    position: relative;
		left: auto;
		top: auto;
		display: inline-block;
		vertical-align: top;
	}
	.home-schedule a img {
	    display: none;
	}
	.home-schedule a::after {
		height: 94px;
		left: 50%;
		margin-left: -36px;
		position: absolute;
		top: auto;
		bottom: -30px;
		width: 72px;
		background-size: 100% 100%;
	}
	.home-schedule a::before {
	    height: 26%;
	}

	/* home news */
	.home-news {
	    background-image: none;
	}
	.home-news .container {
	    padding: 0;
	}
	.home-news .content .featured-content {
	    height: auto!important;
	}
	.home-news .top {
	    padding: 45px 20px 35px;
	}
	.home-news .top .featured-top {
	    float: none;
	    width: auto;
	    margin: auto;
	}
	.home-news .content .news-rotator-content {
	    height: auto!important;
	    float: none;
	    width: auto;
	}
	.home-news .content .featured-content {
	    width: auto;
	    float: none;
	    margin-left: 35%;
	}
	.home-news .top .featured-top h3 {
	    font-size: 25px;
	    line-height: 25px;
	}
	.home-news .content .left-image {
		bottom: 50%;
		left: auto;
		right: 100%;
		width: 54%;
		top: 0;
	}
	.home-news .content .featured-content .wrp {
	    padding: 30px;
	}
	.home-news .content .featured-content .subscribe {
		top: 50%;
		bottom: 0;
		padding: 0;
		position: absolute;
		right: 100%;
		width: 54%;
		background-image: url('../images/mobile-subscribe-bg.png');
		background-repeat: no-repeat;
		background-position: right bottom;
	}
	.home-news .content .featured-content .subscribe a {
		position: absolute;
		left: 0px;
		top: 0px;
		bottom: 0px;
		right: 0px;
		padding: 30px;
	}
	.home-news .content .news-rotator-content .wrp {
	    padding: 30px;
	    max-width: 320px;
	    margin: auto;
	}
	.home-news .news-rotator-top {
	    float: right;
	    width: auto;
	    margin-right: 15px;
	    margin-top: 25px;
	}
	.home-news .content .news-rotator-content .controls {
	    padding-left: 15px;
	    padding-right: 0;
	    float: left;
	}
	.home-news .content .news-rotator-content .wrp:after {
	    clear: both;
	    display: block;
	    content: "";
	}

	/* tagline */
	.home-tagline {
		font-size: 24px;
		letter-spacing: 1px;
		line-height: 24px;
		padding: 20px;
	}

	/* bc-items */
	.bc-items .container {
	    padding: 0;
	}
	.bc-items .home-blog {
		border-right: none;
		border-bottom: 1px solid #d0d0d0;
		float: none;
		padding: 0;
		width: auto;
		padding: 40px 30px;
	}
	.bc-items .home-blog .title {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
	.bc-items .home-blog .content {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
	}
	.bc-items .home-blog .title h3 {
	    font-size: 25px;
	    line-height: 25px;
	}
	.bc-items .home-calendar {
		border-left: none;
		margin-left: 0;
		float: none;
		padding: 0;
		width: auto;
		padding: 40px 30px;
	}
	.bc-items .home-calendar .title h3 {
	    font-size: 25px;
	    line-height: 25px;
	}

	/* connect */
	.home-connect .container {
	    padding: 0;
	}
	.home-connect .home-connect-top .social {
	    float: none;
	    text-align: center;
	}
	.home-connect .home-connect-top {
	    padding: 20px 20px 10px 20px;
	}
	.home-connect .home-connect-top h3 {
	    font-size: 25px;
	    line-height: 25px;
	    margin-bottom: 5px;
	}
	.home-connect .home-connect-top .social ul li a {
	    font-size: 22px;
	    height: 42px;
	    line-height: 42px;
	}
	.home-connect .home-connect-rotator .slides {
	}
	.home-connect .home-connect-rotator .slides .slide {
	    background: transparent;
	    padding: 0 20px;
	}
	.home-connect .home-entry-social {
	    float: none;
	    width: auto;
	    margin: auto;
	    max-width: 320px;
	    margin: auto!important;
	    border: solid 8px #9a121d;
	}
	.home-connect .home-connect-rotator {
	    padding: 30px 0;
	}
	.home-connect .home-connect-rotator:after {
	    content: "";
	    clear: both;
	    display: block;
	}
	.home-connect .controls  {
		max-width: 320px;
		margin: auto;
		padding: 26px 20px 0 20px;
	}
	.home-connect .controls:after  {
		content: "";
		clear: both;
		display: block;
	}
	.home-connect .controls .connect-prev {
	    position: relative;
	    top: auto;
	    left: auto;
	    margin-top: auto;
	    display: inline-block;
	    vertical-align: top;
	    margin-right: 15px;
	    margin-left: 8px;
	    margin-top: 4px;
	}
	.home-connect .controls .connect-next {
	    position: relative;
	    top: auto;
	    right: auto;
	    margin-top: auto;
	    display: inline-block;
	    vertical-align: top;
	    margin-top: 4px;
	}
	.home-connect .controls .more {
		display: block;
		padding: 10px 10px 10px 52px;
		position: relative;
		font-size: 13px;
		line-height: 13px;
		color: #ffffff;
		float: right;
	}
	.home-connect .controls .more:after {
		display: block;
		content: "";
		background: url('../images/connect-more-icon.png') no-repeat;
		background-size: 100% 100%;
		width: 22px;
		height: 21px;
		position: absolute;
		left: 20px;
		top: 50%;
		margin-top: -10px;
	}
	.home-connect .controls .more:before {
		display: block;
		content: "";
		background: url('../images/dark-red-pattern.png') repeat;
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		opacity: 0;
	}
	.home-connect .controls .more:hover::before {
		opacity: 1;
	}
	.home-connect .controls .more .text {
		position: relative;
	}

	/* footer */
	.site-footer .footer-top .footer-top-left {
	    float: none;
	    width: auto;
	}
	.site-footer .footer-logo {
	    margin-bottom: 10px;
	    margin-right: auto;
	    margin-left: auto;
	    width: 230px;
	}
	.site-footer .copyright {
	    width: 230px;
	    margin: auto;
	    -webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding-left: 50px;
		margin-bottom: 30px;
	}
	.site-footer .footer-info {
		float: none;
		padding: 0;
		margin: auto;
		width: 230px;
	}
	.site-footer .footer-info .item {
	    float: none;
	    padding-left: 50px;
	    width: auto!important;
	    margin-bottom: 30px;
	}
	.site-footer .footer-info .item.phones {
	    background-position: 12px 5px;
	}
	.site-footer .footer-info .item.address {
	    background-position: 12px 5px;
	}
	.site-footer .footer-info ul li span {
	    display: block;
	    padding-left: 0;
	}
	.site-footer .church-logo {
	    float: none;
	    margin: auto;
	}
	.site-footer .footer-top::before {
	    top: auto;
	    right: -80px;
	    bottom: -80px;
	    margin-top: auto;
	}

	.site-footer .footer-bottom .container {
	    padding-bottom: 61px;
	}
	.site-footer .social {
	    float: none;
	    padding: 0;
	    text-align: center;
	}
	.site-footer .social ul li a {
	    font-size: 22px;
	    height: 55px;
	    line-height: 55px;
	}
	.site-footer .footer-bottom-right {
	    float: none;
	}
	.site-footer .footer-menu {
	    float: none;
	    background: #aa1723;
	    margin-left: -30px;
	    margin-right: -30px;
	    text-align: center;
	}
	.site-footer .footer-menu ul li {
	    display: inline-block;
	    vertical-align: top;
	    float: none;
	}
	.site-footer .footer-menu ul li a {
		font-size: 13px;
		height: 38px;
		line-height: 15px;
		padding: 0 10px;
	}
	.site-footer .footer-menu ul li a img {
	    margin-right: 10px;
	    max-width: 20px;
	}
	.back-to-top {
	    float: none;
	    margin: 0;
	    position: absolute;
	    left: 30px;
	    bottom: 15px;
	}
	.site-footer .developer {
	    float: none;
	    margin: 0;
	    position: absolute;
	    right: 30px;
	    bottom: 15px;
	}

	/* ----------- Visibility ------------ */

	.visible-desktop {
		display: none!important;
	}
	.visible-tablet {
		display: block!important;
	}
	.hidden-tablet {
		display: none!important;
	}
	.visible-phone {
		display: none!important;
	}

}

/* ----------------------------------- */
/* --------- Phones styles ---------- */
/* ----------------------------------- */

@media (max-width: 659px) {

	.niche-badge {
		display: none;
	}

	.container {
		width: 100%;
		margin: auto;
		padding: 0 20px;
	}

	/* header */
	.toggle-main-menu {
	    height: 55px;
	}
	.toggle-main-menu .icon-wrap {
		height: 55px;
		margin-right: 0;
		width: 70px;
	}
	.toggle-main-menu .icon {
	    height: 25px;
	    left: 17px;
	    top: 15px;
	    width: 36px;
	}
	.toggle-main-menu .icon .bar {
	    height: 3px;
	    width: 36px;
	}
	.toggle-main-menu .icon .top-bar.middle {
		top: 11px;
	}
	.toggle-main-menu .icon .middle-bar {
		top: 11px
	}
	.toggle-main-menu .icon .bottom-bar {
		top: 22px;
	}
	.toggle-main-menu .icon .bottom-bar.middle {
		top: 11px;
	}
	.site-header .container {
	    padding: 0;
	}
	.site-header .logo {
	    height: 54px;
	    margin-right: 0;
	    width: 168px;
	    padding-left: 85px;
	}
	.search-form .show-search {
	    height: 54px;
	    width: 50px;
	    background-size: 22px 26px;
	    border-left: solid 1px #ebebeb;
	}
	.search-form .show-search::after {
	    background-size: 22px 26px;
	}
	.search-form form:after {
	    display: none;
	}
	.site-header {
	    border-bottom: 1px solid #ebebeb;
	    height: 54px;
	}
	.header-right {
		position: relative;
		top: auto;
		right: auto;
	}
	.search-form {
	    position: static;
	}
	.search-form form {
	    width: calc(100% - 70px);
	    z-index: 16000;
	}
	.search-form .field {
	    width: 100%;
	    height: 54px;
	}
	.main-menu .social {
	    height: 55px;
	    padding: 0 10px 0 80px;
	}
	.main-menu .social ul li a {
		height: 55px;
		line-height: 55px;
		position: relative;
		font-size: 18px;
		padding: 0 8px;
	}
	.main-menu {
	    padding-top: 55px;
	    width: 100%;
	}
	body.menu-opened #page {
	    -webkit-transform: translate3d(100%, 0, 0);
	    -moz-transform: translate3d(100%, 0, 0);
	    -o-transform: translate3d(100%, 0, 0);
	    -ms-transform: translate3d(100%, 0, 0);
	    transform: translate3d(100%, 0, 0);
	}
	body.menu-opened .site-header {
	    -webkit-transform: translate3d(calc(100% - 70px), 0, 0);
	    -moz-transform: translate3d(calc(100% - 70px), 0, 0);
	    -o-transform: translate3d(calc(100% - 70px), 0, 0);
	    -ms-transform: translate3d(calc(100% - 70px), 0, 0);
	    transform: translate3d(calc(100% - 70px), 0, 0);
	}
	.main-menu .main-menu-content ul li .top {
		font-size: 14px;
		line-height: 16px;
		padding: 0 55px 0 0;
	}
	.main-menu .main-menu-content ul li .top .show-submenu {
	    width: 55px;
	}
	.main-menu .main-menu-content ul li .top a {
	    font-size: 14px;
		line-height: 16px;
	    padding: 10px 30px;
	}
	.main-menu .main-menu-content ul li .top .show-submenu::after {
		height: 16px;
		margin-left: -8px;
		margin-top: -8px;
		width: 16px;
		background-size: 100% 100%;
	}
	.main-menu::before {
	    background-attachment: scroll;
	    background-size: 160px auto;
	}
	.main-menu .main-menu-content ul li .submenu::before {
	    display: none;
	}
	.main-menu .main-menu-content ul li .submenu ul li {
	    padding: 0 20px;
	}
	.main-menu .main-menu-content ul li .submenu ul li a {
	    font-size: 14px;
	    line-height: 16px;
	    padding: 15px 15px 15px 55px;
	}
	.main-menu .main-menu-content ul li .submenu ul li a .icon {
	    width: 55px;
	}
	.main-menu .main-menu-content ul li .submenu ul li a .icon img {
	    max-width: 40%;
	}
	.main-menu .main-menu-content ul li .submenu ul li li a {
	    font-size: 12px;
	    line-height: 14px;
	    padding: 0 15px 0 55px;
	}
	.main-menu .main-menu-content ul li .submenu ul li ul {
		padding: 15px 0;
	}
	.main-menu .main-menu-content ul li .submenu ul li li {
	    margin-bottom: 10px;
	}
	.main-menu .main-menu-bottom {
	    padding: 20px 0;
	}
	.main-menu .main-menu-bottom ul li {
	    margin-bottom: 10px;
	    padding: 0 30px;
	}
	.main-menu .main-menu-bottom ul li a {
	    font-size: 12px;
	    line-height: 14px;
	}
	.header-links {
	    float: none;
	}
	.header-links li {
	    width: 25%;
	}
	.header-links li:first-of-type .top {
	    border-left: none;
	}
	.header-links li:last-of-type .top {
	    border-right: none;
	}
	.header-links .top {
	    border-bottom: solid 1px #ebebeb;
	}
	.header-links .top a {
	    font-size: 11px;
	    height: 54px;
	    line-height: 11px;
	    padding: 5px;
	    width: auto;
	}
	.header-links .top a.active .icon img {
		-webkit-transform: rotate(90deg);
	    -moz-transform: rotate(90deg);
	    -o-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	    transform: rotate(90deg);
	}
	.header-links .top a .icon {
	    display: block;
	    height: 33px;
	}
	.header-links .top a .icon img {
	    max-height: 22px;
	}
	.header-links .submenu {
		left: auto;
		max-height: 10000px;
		opacity: 1;
		position: relative;
		top: auto;
		width: 400%;
		-webkit-transform: translate3d(0, 0, 0)!important;
		-moz-transform: translate3d(0, 0, 0)!important;
		-o-transform: translate3d(0, 0, 0)!important;
		-ms-transform: translate3d(0, 0, 0)!important;
		transform: translate3d(0, 0, 0)!important;
		display: none;
		-webkit-transition: none!important;
		-moz-transition: none!important;
		-ms-transition: none!important;
		-o-transition: none!important;
		transition: none!important;
	}
	.header-links .submenu .submenu-left {
	    width: auto;
	    float: none;
	    padding: 30px 20px;
	    height: auto!important;
	    background: #ffffff;
	}
	.header-links .submenu ul li {
	    width: auto;
	}
	.header-links .submenu ul li:last-of-type {
	    margin-bottom: 0;
	}
	.header-links .submenu .submenu-right {
	    width: auto;
	    float: none;
	    padding: 30px 20px;
	    height: auto!important;
	    background: #f5f5f6;
	}
	.header-links .submenu .submenu-left .submenu-title {
	    padding-left: 0;
	    padding-right: 0;
	}
	.header-links .submenu .submenu-title {
	    padding-left: 0;
	    margin-bottom: 20px;
	}
	.header-links .submenu .column {
		float: none;
		padding-left: 0;
		width: auto;
		margin-bottom: 25px;
	}
	.header-links .submenu .column:last-of-type {
		margin-bottom: 0px;
	}
	.header-links .submenu h3 {
	    font-size: 15px;
	    line-height: 15px;
	}

	/* banner styles */
	.interior-banner {
	    height: 310px;
	    padding-bottom: 55px;
	    padding-top: 55px;
	}
	.interior-banner .image {
	    bottom: 55px;
	    height: auto;
	    z-index: 2500;
	}
	.section-title {
	    font-size: 22px;
	    line-height: 22px;
	    margin-left: 0px;
	    max-width: 80%;
	    padding: 15px 20px;
	    z-index: 2550;
	    position: relative;
	}
	.interior-banner .top-bar {
	    padding-left: 20px;
	    padding-right: 20px;
	    border: none;
	    padding-bottom: 1px;
	}
	.interior-banner .top-bar .container {
		padding: 0;
		margin-left: -20px;
		margin-right: -20px;
		width: auto;
	}
	.interior-banner .top-bar:after {
	    content: "";
	    height: 1px;
	    position: absolute;
	    left: 0px;
	    right: 0px;
	    bottom: 0px;
	    height: 1px;
	    background: #e4e4e4;
	    z-index: 2900;
	}
	.interior-banner .top-bar:before {
	    position: absolute;
	    left: 0px;
	    right: 0px;
	    bottom: 0px;
	    top: 0px;
	    content: "";
	    background: #ffffff;
	    z-index: 2900;
	}
	.interior-banner .top-bar.page-with-sidebar {
	    padding-right: 100px;
	    width: 100%;
	}
	.share {
	    right: 20px;
	}
	.toggle-mobile-sidebar {
		height: 34px;
		font-size: 12px;
		line-height: 34px;
		color: #cf202e;
		letter-spacing: 1px;
		text-transform: uppercase;
		z-index: 3000;
		position: absolute;
		left: 20px;
		top: 50%;
		margin-top: -17px;
		cursor: pointer;
	}
	.toggle-mobile-sidebar .icon-wrp {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 34px;
		height: 34px;
		background: #cf202e;
		border-radius: 50%;
		border: solid 2px #ffffff;
		z-index: 3000;
		-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		position: relative;
		margin-right: 10px;
	}
	.toggle-mobile-sidebar:hover .icon-wrp,
	.toggle-mobile-sidebar.active .icon-wrp {
		background: #790910;
	}
	.toggle-mobile-sidebar .icon {
		width: 16px;
		height: 14px;
		position: absolute;
		left: 7px;
		top: 8px;
	}
	.toggle-mobile-sidebar .icon .bar {
		position: absolute;
		width: 16px!important;
		height: 2px;
		border-radius: 1px;
		background: #ffffff;
		left: 0px;
		right: 0px;
		-webkit-transition: all 0.2s linear;
		-moz-transition: all 0.2s linear;
		-ms-transition: all 0.2s linear;
		-o-transition: all 0.2s linear;
		transition: all 0.2s linear;
		padding: 0!important;
	}
	.toggle-mobile-sidebar .icon .top-bar {
		top: 0px;
	}
	.toggle-mobile-sidebar .icon .top-bar.middle {
		top: 6px;
	}
	.toggle-mobile-sidebar .icon .top-bar.rotate {
		-webkit-transform: rotate(45deg);
	    -moz-transform: rotate(45deg);
	    -o-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	    transform: rotate(45deg);
	}
	.toggle-mobile-sidebar .icon .middle-bar {
		top: 6px
	}
	.toggle-mobile-sidebar .icon .bottom-bar {
		top: 12px;
	}
	.toggle-mobile-sidebar .icon .bottom-bar.middle {
		top: 6px;
	}
	.toggle-mobile-sidebar .icon .bottom-bar.rotate {
		-webkit-transform: rotate(-45deg);
	    -moz-transform: rotate(-45deg);
	    -o-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	}

	/* main */
	.site-main {
	    padding-bottom: 45px;
		background-size: 50% auto;
	}
	.left-content {
	    padding: 40px 20px 0 20px!important;
	    width: auto;
	    height: auto!important;
	    float: none;
	    min-height: 450px;
	}
	.wysiwyg .alignleft {
		float: none;
		margin-left: auto!important;
		margin-right: auto!important;
		display: block;
	}
	.wysiwyg .alignright {
		float: none;
		margin-left: auto!important;
		margin-right: auto!important;
		display: block;
	}
	.wysiwyg img.aligncenter,
	.wysiwyg .wp-caption.aligncenter {
		clear: both;
		margin-top: 40px;
	    margin-bottom: 40px;
	    margin-left:auto!important;
	    margin-right: auto!important;
	}
	.wysiwyg .table-holder {
		width: 100%;
		overflow: scroll;
		height: auto;
		position: relative;
		padding-bottom: 11px;
	}
	.wysiwyg .table-holder .msg {
		font-family: "proxima-nova",sans-serif;
		font-style: normal;
		font-weight: 400;
		font-size: 11px;
		line-height: 11px;
		text-transform: uppercase;
		padding-top: 5px;
	}
	.wysiwyg blockquote {
	    margin: 40px -20px;
	    padding: 40px 20px;
	}
	.wysiwyg h1 {
	    font-size: 28px;
	    line-height: 30px;
	}
	.right-sidebar {
	    float: none;
	    width: auto;
	    position: absolute;
	    left: 0px;
	    right: 0px;
	    top: 0px;
	    -webkit-transform: translate3d(0, -100%, 0);
    	-moz-transform: translate3d(0, -100%, 0);
    	-o-transform: translate3d(0, -100%, 0);
    	-ms-transform: translate3d(0, -100%, 0);
    	transform: translate3d(0, -100%, 0);
    	-webkit-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		-moz-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		-ms-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		-o-transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		transition: 0.7s all cubic-bezier(0.23, 1, 0.32, 1);
		opacity: 0;
		-webkit-box-shadow: 0px 2px 2px 0px rgba(50, 50, 50, 0.1);
		-moz-box-shadow:    0px 2px 2px 0px rgba(50, 50, 50, 0.1);
		box-shadow:         0px 2px 2px 0px rgba(50, 50, 50, 0.1);
		width: auto;
		padding-bottom: 30px;
		background: #f8f8f8;
	}
	.right-sidebar.active {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
    	-moz-transform: translate3d(0, 0, 0);
    	-o-transform: translate3d(0, 0, 0);
    	-ms-transform: translate3d(0, 0, 0);
    	transform: translate3d(0, 0, 0);
	}
	.related-items {
	    margin-bottom: 30px;
	}
	.related-items .related-items-title {
		padding: 20px 20px;
	}
	.related-items .related-items-content ul li a {
	    padding: 15px 20px;
	}
	.related-items .related-items-content {
		padding-right: 0px;
	}
	.support {
		padding: 0 20px 0 20px;
		margin-bottom: 0;
	}
	.latest-items .item {
		margin-right: 0;
	    padding: 0 20px 30px 20px;
	}
	.filter {
		display: none;
		padding: 0;
	}
	.filter .container {
		padding: 20px;
	}
	.filter .title {
	    display: none;
	}
	.filter .filter-item {
		float: none;
		margin-right: 0;
		width: auto;
		margin: auto;
		max-width: 320px;
		margin-bottom: 10px;
	}
	.filter .filter-item .top {
	    z-index: 2500;
	}
	.filter .filter-item.active {
		z-index: 2550;
	}
	.filter .filter-item:last-of-type {
	    margin-right: auto;
	    margin-bottom: 0;
	}
	.filter::after {
	    height: 20px;
	}
	.filter::before {
	    top: 20px;
	}
	.toggle-mobile-filter {
		height: 34px;
		font-size: 12px;
		line-height: 34px;
		color: #cf202e;
		letter-spacing: 1px;
		text-transform: uppercase;
		z-index: 3000;
		position: absolute;
		left: 20px;
		top: 50%;
		margin-top: -17px;
		cursor: pointer;
	}
	.toggle-mobile-filter .icon-wrp {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		width: 34px;
		height: 34px;
		background: #cf202e;
		border-radius: 50%;
		border: solid 2px #ffffff;
		z-index: 3000;
		-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		position: relative;
		margin-right: 10px;
	}
	.toggle-mobile-filter:hover .icon-wrp,
	.toggle-mobile-filter.active .icon-wrp {
		background: #790910;
	}
	.toggle-mobile-filter .icon {
		width: 16px;
		height: 14px;
		position: absolute;
		left: 7px;
		top: 8px;
	}
	.toggle-mobile-filter .icon .bar {
		position: absolute;
		width: 16px!important;
		height: 2px;
		border-radius: 1px;
		background: #ffffff;
		left: 0px;
		right: 0px;
		-webkit-transition: all 0.2s linear;
		-moz-transition: all 0.2s linear;
		-ms-transition: all 0.2s linear;
		-o-transition: all 0.2s linear;
		transition: all 0.2s linear;
		padding: 0!important;
	}
	.toggle-mobile-filter .icon .top-bar {
		top: 0px;
	}
	.toggle-mobile-filter .icon .top-bar.middle {
		top: 6px;
	}
	.toggle-mobile-filter .icon .top-bar.rotate {
		-webkit-transform: rotate(45deg);
	    -moz-transform: rotate(45deg);
	    -o-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	    transform: rotate(45deg);
	}
	.toggle-mobile-filter .icon .middle-bar {
		top: 6px
	}
	.toggle-mobile-filter .icon .bottom-bar {
		top: 12px;
	}
	.toggle-mobile-filter .icon .bottom-bar.middle {
		top: 6px;
	}
	.toggle-mobile-filter .icon .bottom-bar.rotate {
		-webkit-transform: rotate(-45deg);
	    -moz-transform: rotate(-45deg);
	    -o-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	}
	.article-info ul li.date-wrp {
	    margin-right: 0;
	    display: block;
	    margin-bottom: 5px;
	}
	.article-nav {
	    padding-bottom: 45px;
	    padding: 45px 20px 0px 20px;
	}
	.article-nav a {
	    text-indent: -99999px;
	}
	.center-content {
	    padding: 40px 0 0;
	}
	.center-content.has-pb {
	    padding: 40px 0;
	}

	/* archives */
	.archives {
	    padding-top: 40px;
	}
	.archives .archives-ct {
	    margin-bottom: 45px;
	}
	.archives .entry-blog .image {
	    max-width: 240px;
	    width: 100%;
	    float: none;
	    margin: auto;
	    margin-bottom: 20px;
	}
	.archives .entry-blog.has-image .content {
	    padding-left: 0px;
	}
	.archives .entry-blog {
	    padding: 20px 20px 25px 20px;
	}

	/* staff */
	.staff .entry-staff .entry-staff-content .close {
	    right: 20px;
	}
	.staff .entry-staff {
	    float: none;
	    margin-left: auto!important;
	    margin-right: auto!important;
	    width: auto!important;
	    max-width: 227px;
	}
	.staff .entry-staff .entry-staff-content .container::before {
	    left: calc(50% - 25px)!important;
	}
	.staff .entry-staff .entry-staff-details {
	    min-height: 0px;
	}

	/* mashup */
	.filter .mashup-filter ul li {
	    display: block;
	    float: left;
	    margin-right: 5px;
	}
	.mashup .mashup-ct {
	    padding: 40px 0;
	    max-width: 320px;
	    margin: auto;
	}
	.mashup .grid-sizer {
		width: 100%;
		margin: 0;
	}
	.entry-social {
		width: 100%;
		margin: 0;
		background: rgba(255, 255, 255, 0.8);
		margin-bottom: 30px;
		padding: 10px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.mashup::after {
		bottom: -45px;
		height: 298px;
		width: 273px;
		left: 20px;
	}
	.filter .mashup-filter .title {
	    display: none;
	}
	.filter .mashup-filter ul li a {
	    font-size: 18px;
	    line-height: 18px;
	    padding: 5px 7px;
	}

	/* contact */
	.contact .contact-info .item {
	    float: none;
	    width: auto;
	    margin: auto;
	    max-width: 320px;
	}
	.contact .contact-info .item.phones {
	    margin-bottom: 30px;
	}
	.contact .container {
	    padding-bottom: 40px;
	    padding-top: 40px;
	}
	.contact .map {
	    height: 320px;
	}
	.contact .contact-form form ul li.medium {
	    margin-right: 0;
	    width: 100%;
	}
	.contact .contact-form form ul li li {
	    margin-bottom: 20px;
	    margin-right: 0;
	}
	.contact .contact-form form ul li {
	    margin-bottom: 20px;
	}
	.contact .contact-form form .form-submit .btn {
	    padding: 10px 50px 9px;
	}

	/* schedule */
	.schedule a {
	    font-size: 18px;
	    height: 38px;
	    letter-spacing: 1px;
	    line-height: 18px;
	}
	.schedule a::after {
		background-size: 100% 100%;
		content: "";
		height: 62px;
		left: 50%;
		margin-left: -23px;
		position: absolute;
		top: -14px;
		width: 46px;
	}
	.schedule a .left {
	    right: calc(50% + 35px);
	}
	.schedule a .right {
	    left: calc(50% + 35px);
	}
	.schedule a img {
	    max-width: 15px;
	    margin-left: 10px;
	}

	/* home style */

	/* rotator */
	.rotator-overlays .slides .slide .caption {
		padding: 20px 2%;
		position: absolute;
		width: 96%;
		float: none;
	}
	.rotator-overlays .controls {
	    /*right: 20px;*/
	}
	.rotator-overlays .slides .slide .caption .caption-ct {
		padding-bottom:0;
	}
	.rotator-overlays .slides .slide .caption h2 {
	    font-size: 22px;
	    line-height: 22px;
	}
	.rotator-overlays .slides .slide .caption .links {
/* 	    max-width: 65%; */
	    min-height: 27px;
	    padding-top: 0px;
	}
	.rotator-overlays .slides {
		width: 100%;
		height: auto;
		min-height: 380px;
	}
	.rotator-overlays .slides .slide {
		width: 100%;
		height: auto;
		min-height: 380px;
		position: relative;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding: 93px 0 130px;
	}
	.rotator-overlays .slides .slide .caption ul li a {
	    font-size: 13px;
	    line-height: 13px;
	}
	.rotator-overlays .slides .slide .caption ul {
	    margin-left: 0;
	}
	.rotator-overlays .controls .rotator-prev,
	.rotator-overlays .controls .rotator-next {
	    width: 27px;
	    height: 27px;
	}
	.rotator-overlays .controls {
	    /*right: 20px;
	    bottom: 20px;*/
	}

	/* introduction */
	.introduction .sections-links {
		bottom: auto;
		left: auto;
		position: relative;
		right: auto;
		text-align: center;
		z-index: 4500;
	}
	.introduction .sections-links::before {
	    display: none;
	}
	.introduction .sections-links .container {
		padding: 0;
	}
	.introduction .sections-links ul li:hover a {
		-webkit-transform: translate3d(0, 0, 0);
	    -moz-transform: translate3d(0, 0, 0);
	    -o-transform: translate3d(0, 0, 0);
	    -ms-transform: translate3d(0, 0, 0);
	    transform: translate3d(0, 0, 0);
	}
	.introduction .sections-links ul li:after {
		display: none;
	}
	.introduction .sections-links ul li a:before {
		display: none;
	}
	.introduction .sections-links ul li a {
		font-size: 15px;
		height: 75px;
		line-height: 15px;
		padding: 0 20px;
	}
	.introduction .sections-links ul li a .icon img {
	    max-width: 25px;
	}
	.introduction .sections-links ul li a .icon {
	    width: 40px;
	}
	.introduction .sections-links ul li {
		border-right: 1px solid #d3d3d4;
		border-bottom: 1px solid #d3d3d4;
		float: left;
		width: 50%;
	}
	.introduction .sections-links ul li:nth-of-type(2) {
	    border-right: none;
	}
	.introduction .sections-links ul li:nth-of-type(3) {
	    border-bottom: none;
	}
	.introduction .sections-links ul li:nth-of-type(4) {
	    border-bottom: none;
	}

	.introduction .introduction-content {
		font-size: 13px;
		line-height: 19px;
		padding: 30px 0 90px;
	}
	.introduction .introduction-content h1 {
	    font-size: 19px;
	    line-height: 22px;
	    margin-bottom: 15px;
	}
	.introduction {
	    border-bottom: 8px solid #ededed;
	}
	.introduction .sections-links .scroll {
		display: none;
	}

	/* testimonial */
	.testimonial .testimonial-ct {
		margin-top: -66px;
		padding-bottom: 10px;
		position: relative;
		z-index: 5000;
	}
	.testimonial .testimonial-ct::after {
	    height: 58px;
	    width: 20px;
	}
	.testimonial .testimonial-ct .grey-bg {
		background: rgba(206, 206, 206, 0.55) none repeat scroll 0 0;
		bottom: 0;
		left: 0;
		position: absolute;
		right: -10px;
		top: 58px;
	}
	.testimonial .testimonial-ct .quote::after {
	    border-width: 40px 40px 0 0;
	}
	.testimonial .testimonial-ct .quote {
	    padding: 20px;
	}
	.testimonial .testimonial-ct .quote h3 {
		color: #5b5b5b;
		font-family: "garamond-premier-pro",serif;
		font-size: 16px;
		font-style: normal;
		font-weight: 400;
		line-height: 18px;
		margin-bottom: 15px;
		padding: 0;
		padding-top: 50px;
		position: relative;
	}
	.testimonial .testimonial-ct .quote h3::before {
		height: 31px;
		left: 50%;
		margin-left: -21px;
		margin-top: 0px;
		top: 0px;
		width: 42px;
	}
	.testimonial .testimonial-ct .quote h3::after {
	    display: none;
	}
	.testimonial .testimonial-ct .quote .parent {
		font-size: 12px;
		letter-spacing: 2px;
		line-height: 12px;
		padding-bottom: 50px;
		position: relative;
		display: block;
	}
	.testimonial .testimonial-ct .quote .parent:after {
		background: url("../images/testimonial-right.png") no-repeat;
		background-size: 100% 100%;
		content: "";
		display: block;
		height: 31px;
		left: 50%;
		margin-left: -21px;
		margin-top: 0px;
		bottom: 0px;
		width: 42px;
		position: absolute;
	}

	/* infographic */
	.infographic {
	    padding: 55px 0;
	}
	.infographic ul li {
	    float: none;
	    width: auto;
	    text-align: center!important;
	    margin-bottom: 55px;
	}
	.infographic ul li:last-of-type {
	    margin-bottom: 0;
	}
	.infographic .item {
		opacity: 1;
		-webkit-transform: rotate3d(1, 0, 0, 0deg);
	    -moz-transform: rotate3d(1, 0, 0, 0deg);
	    -o-transform: rotate3d(1, 0, 0, 0deg);
	    -ms-transform: rotate3d(1, 0, 0, 0deg);
	    transform: rotate3d(1, 0, 0, 0deg);
	    width: 240px;
	    height: 240px;
	}
	.infographic .item .icon {
	    height: 80px;
	    padding-top: 15px;
	}
	.infographic .item .icon img {
	    max-width: 60%;
	}
	.infographic .item .text h3 span {
	    font-size: 47px;
	    line-height: 47px;
	    margin-bottom: 10px;
	}

	/* home-schedule */
	.home-schedule a {
		font-size: 28px;
		height: auto;
		letter-spacing: 1px;
		line-height: 28px;
		margin: auto;
		max-width: 100%;
		text-align: center;
		padding: 15px 20px 70px;
	}
	.home-schedule a .left-ribbon,
	.home-schedule a .right-ribbon {
	    display: none;
	}
	.home-schedule a .left {
		position: relative;
		right: auto;
		top: auto;
	}
	.home-schedule a .right {
	    position: relative;
		left: auto;
		top: auto;
		display: inline-block;
		vertical-align: top;
	}
	.home-schedule a img {
	    display: none;
	}
	.home-schedule a::after {
		height: 94px;
		left: 50%;
		margin-left: -36px;
		position: absolute;
		top: auto;
		bottom: -30px;
		width: 72px;
		background-size: 100% 100%;
	}
	.home-schedule a::before {
	    height: 26%;
	}

	/* home news */
	.home-news {
	    background-image: none;
	}
	.home-news .container {
	    padding: 0;
	}
	.home-news .content .featured-content {
	    height: auto!important;
	}
	.home-news .top {
	    padding: 45px 20px 35px;
	}
	.home-news .top .featured-top {
	    float: none;
	    width: auto;
	    margin: auto;
	}
	.home-news .content .news-rotator-content {
	    height: auto!important;
	    float: none;
	    width: auto;
	}
	.home-news .content .featured-content {
	    width: auto;
	    float: none;
	    margin-left: 35%;
	}
	.home-news .top .featured-top h3 {
	    font-size: 25px;
	    line-height: 25px;
	}
	.home-news .content .left-image {
		bottom: 50%;
		left: auto;
		right: 100%;
		width: 54%;
		top: 0;
	}
	.home-news .content .featured-content .wrp {
	    padding: 20px;
	    min-height: 180px;
	}
	.home-news .content .featured-content .subscribe {
		top: 50%;
		bottom: 0;
		padding: 0;
		position: absolute;
		right: 100%;
		width: 54%;
		background-image: url('../images/mobile-subscribe-bg.png');
		background-repeat: no-repeat;
		background-position: right bottom;
	}
	.home-news .content .featured-content .subscribe a {
		position: absolute;
		left: 0px;
		top: 0px;
		bottom: 0px;
		right: 0px;
		padding: 15px;
		text-align: center;
	}
	.home-news .content .featured-content .subscribe img {
	    display: block;
	    margin: auto!important;
	    margin-bottom: 5px!important;
	    max-width: 40px;
	}
	.home-news .content .news-rotator-content .wrp {
	    padding: 20px 10px;
	    max-width: 320px;
	    margin: auto;
	}
	.home-news .news-rotator-top {
	    float: right;
	    width: auto;
	    margin-right: 15px;
	    margin-top: 25px;
	}
	.home-news .content .news-rotator-content .controls {
	    padding-left: 15px;
	    padding-right: 0;
	    float: left;
	}
	.home-news .content .news-rotator-content .wrp:after {
	    clear: both;
	    display: block;
	    content: "";
	}
	.home-news .content .news-rotator-content ul li a img {
	    margin-right: 15px;
	    max-width: 100px;
	}
	.home-news .content .news-rotator-content ul li a {
	    padding: 10px;
	}
	.home-news .content .news-rotator-content ul li a .article-title {
	    font-size: 13px;
	    line-height: 14px;
	}

	/* tagline */
	.home-tagline {
		font-size: 24px;
		letter-spacing: 1px;
		line-height: 24px;
		padding: 20px;
	}

	/* bc-items */
	.bc-items .container {
	    padding: 0;
	}
	.bc-items .home-blog {
		border-right: none;
		border-bottom: 1px solid #d0d0d0;
		float: none;
		padding: 0;
		width: auto;
		padding: 30px 20px;
	}
	.bc-items .home-blog .content ul li a .table .table-cell:first-of-type {
	    width: 100px;
	    padding-right: 15px;
	}
	.bc-items .home-blog .content ul li a {
	    padding: 10px;
	}
	.bc-items .home-calendar .content ul li .event {
	    padding: 10px;
	}
	.bc-items .home-blog .title {
		max-width: 320px;
		margin-left: auto;
		margin-right: auto;
		padding: 0;
	}
	.bc-items .home-calendar .content ul li .event .date {
	    font-size: 16px;
	    line-height: 16px;
	    margin-bottom: 5px;
	    padding-top: 5px;
	}
	.bc-items .home-calendar .content ul li .event .date span {
	    font-size: 26px;
	    margin-bottom: 5px;
	}
	.bc-items .home-calendar .content ul li .event h4 {
	    margin-bottom: 0;
	}
	.bc-items .home-calendar .title {
	    padding: 0;
	}
	.bc-items .home-calendar .controls {
	    padding-left: 0px;
	    padding-right: 0px;
	    padding-top: 30px;
	}
	.bc-items .home-blog .content {
		margin-left: auto;
		margin-right: auto;
		margin-left: -10px;
		margin-right: -10px;
	}
	.bc-items .home-blog .title h3 {
	    font-size: 25px;
	    line-height: 25px;
	}
	.bc-items .home-calendar {
		border-left: none;
		margin-left: 0;
		float: none;
		padding: 0;
		width: auto;
		padding: 40px 20px;
	}
	.bc-items .home-blog .content ul li a .article-title {
	    font-size: 13px;
	    line-height: 14px;
	}
	.bc-items .home-calendar .title h3 {
	    font-size: 25px;
	    line-height: 25px;
	}
	.bc-items .home-calendar .content ul li {
	    float: none;
	    margin-right: 0;
	    width: auto;
	    margin-bottom: 30px;
	}
	.bc-items .home-calendar .content ul li:last-of-type {
	    margin-bottom: 0;
	}
	.bc-items .home-calendar .controls:after {
		content: "";
		clear: both;
		display: block;
	}
	.bc-items .home-calendar .controls .more {
		display: block;
		float: right;
		font-size: 13px;
		line-height: 13px;
		padding-left: 40px;
		margin-top: 11px;
		color: #999999;
		position: relative;
	}
	.bc-items .home-calendar .controls .more:before {
		display: block;
		content: "";
		position: absolute;
		left: 0px;
		top: 50%;
		margin-top: -11px;
		background: url('../images/home-calendar-icon.png') no-repeat;
		background-size: 100% 100%;
		width: 27px;
		height: 22px;
	}
	.bc-items .home-calendar .controls .more:after {
		display: block;
		content: "";
		position: absolute;
		left: 0px;
		top: 50%;
		margin-top: -11px;
		background: url('../images/home-calendar-icon-active.png') no-repeat;
		background-size: 100% 100%;
		width: 27px;
		height: 22px;
		-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		opacity: 0;
	}
	.bc-items .home-calendar .controls .more:hover::after {
		opacity: 1;
	}
	.bc-items .home-calendar .controls .more:hover {
		color: #cf202e;
	}
	.bc-items .home-calendar .content ul li {
	    margin-bottom: 0;
	}



	/* connect */
	.home-connect .container {
	    padding: 0;
	}
	.home-connect .home-connect-top .social {
	    float: none;
	    text-align: center;
	}
	.home-connect .home-connect-top {
	    padding: 20px 20px 10px 20px;
	}
	.home-connect .home-connect-top h3 {
	    font-size: 25px;
	    line-height: 25px;
	    margin-bottom: 5px;
	}
	.home-connect .home-connect-top .social ul li a {
	    font-size: 22px;
	    height: 42px;
	    line-height: 42px;
	}
	.home-connect .home-connect-rotator .slides {
	}
	.home-connect .home-connect-rotator .slides .slide {
	    background: transparent;
	    padding: 0 20px;
	}
	.home-connect .home-entry-social {
	    float: none;
	    width: auto;
	    margin: auto;
	    max-width: 320px;
	    margin: auto!important;
	    border: solid 8px #9a121d;
	}
	.home-connect .home-connect-rotator {
	    padding: 30px 0;
	}
	.home-connect .home-connect-rotator:after {
	    content: "";
	    clear: both;
	    display: block;
	}
	.home-connect .controls  {
		max-width: 320px;
		margin: auto;
		padding: 26px 20px 0 20px;
	}
	.home-connect .controls:after  {
		content: "";
		clear: both;
		display: block;
	}
	.home-connect .controls .connect-prev {
	    position: relative;
	    top: auto;
	    left: auto;
	    margin-top: auto;
	    display: inline-block;
	    vertical-align: top;
	    margin-right: 15px;
	    margin-left: 8px;
	    margin-top: 4px;
	}
	.home-connect .controls .connect-next {
	    position: relative;
	    top: auto;
	    right: auto;
	    margin-top: auto;
	    display: inline-block;
	    vertical-align: top;
	    margin-top: 4px;
	}
	.home-connect .controls .more {
		display: block;
		padding: 10px 10px 10px 52px;
		position: relative;
		font-size: 13px;
		line-height: 13px;
		color: #ffffff;
		float: right;
	}
	.home-connect .controls .more:after {
		display: block;
		content: "";
		background: url('../images/connect-more-icon.png') no-repeat;
		background-size: 100% 100%;
		width: 22px;
		height: 21px;
		position: absolute;
		left: 20px;
		top: 50%;
		margin-top: -10px;
	}
	.home-connect .controls .more:before {
		display: block;
		content: "";
		background: url('../images/dark-red-pattern.png') repeat;
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-moz-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-ms-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		-o-transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		transition: all 0.2s cubic-bezier(0.86, 0, 0.07, 1);
		opacity: 0;
	}
	.home-connect .controls .more:hover::before {
		opacity: 1;
	}
	.home-connect .controls .more .text {
		position: relative;
	}

	/* footer */
	.site-footer .footer-top .footer-top-left {
	    float: none;
	    width: auto;
	}
	.site-footer .footer-logo {
	    margin-bottom: 10px;
	    margin-right: auto;
	    margin-left: auto;
	    width: 230px;
	}
	.site-footer .copyright {
	    width: 230px;
	    margin: auto;
	    -webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		padding-left: 50px;
		margin-bottom: 30px;
	}
	.site-footer .footer-info {
		float: none;
		padding: 0;
		margin: auto;
		width: 230px;
	}
	.site-footer .footer-info .item {
	    float: none;
	    padding-left: 50px;
	    width: auto!important;
	    margin-bottom: 30px;
	}
	.site-footer .footer-info .item.phones {
	    background-position: 12px 5px;
	}
	.site-footer .footer-info .item.address {
	    background-position: 12px 5px;
	}
	.site-footer .footer-info ul li span {
	    display: block;
	    padding-left: 0;
	}
	.site-footer .church-logo {
	    float: none;
	    margin: auto;
	}
	.site-footer .footer-top::before {
	    top: auto;
	    right: -80px;
	    bottom: -80px;
	    margin-top: auto;
	}

	.site-footer .footer-bottom .container {
	    padding-bottom: 61px;
	}
	.site-footer .social {
	    float: none;
	    padding: 0;
	    text-align: center;
	}
	.site-footer .social ul li a {
	    font-size: 22px;
	    height: 55px;
	    line-height: 55px;
	}
	.site-footer .footer-bottom-right {
	    float: none;
	}
	.site-footer .footer-menu {
	    float: none;
	    background: #aa1723;
	    margin-left: -30px;
	    margin-right: -30px;
	    text-align: center;
	}
	.site-footer .footer-menu ul li {
	    display: inline-block;
	    vertical-align: top;
	    float: none;
	}
	.site-footer .footer-menu ul li a {
		font-size: 13px;
		height: 38px;
		line-height: 15px;
		padding: 0 10px;
	}
	.site-footer .footer-menu ul li a img {
	    margin-right: 10px;
	    max-width: 20px;
	}
	.back-to-top {
	    float: none;
	    margin: 0;
	    position: absolute;
	    left: 20px;
	    bottom: 15px;
	}
	.site-footer .developer {
	    float: none;
	    margin: 0;
	    position: absolute;
	    right: 20px;
	    bottom: 15px;
	}

	/* ----------- Visibility ------------ */

	.visible-desktop {
		display: none!important;
	}
	.visible-tablet {
		display: none!important;
	}
	.visible-phone {
		display: block!important;
	}
	.hidden-phone {
		display: none!important;
	}

}

/* ------------------------------ */
/* ---------- Misc Styles ------- */
/* ------------------------------ */

.loader {
	display: none;
	width: 32px;
	height: 32px;
	background: url('../images/ajax-loader.gif') no-repeat;
	margin: 30px auto;
}

.contact-form .gfield_label,.field_sublabel_below label {
	display: none !important;
}
.field_sublabel_below span {
	margin-bottom: 10px;
	display: block;
}
.gform_button {
	display: inline-block;
	vertical-align: top;
	font-size: 18px;
	line-height: 18px;
	color: #ffffff;
	position: relative;
	text-decoration: none!important;
	background: transparent;
	border: none;
	background: #c9202e;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	padding: 10px 130px 9px;
}

.contact-form #field_1_5 {
	width: 98%;
}

#name-search {
	width: 90%;
	margin: auto;
	border: none;
	height: 30px;
	padding: 4px 10px;
	font-size: 15px;
}

#name-filter-search {
	margin-bottom: 14px;
}

.placeholder-item,
.placeholder-item:hover {
	color: #5b5b5b !important;
	cursor: default !important;
}
