
.accordion-cell:before, .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-family: inherit;
	font-weight: inherit;
	font-size: inherit;
}

.u-visible-desktop {
	display: none;
}

@media (min-width:1025px) {
	.u-visible-desktop {
		display: block;
	}
}

.u-visible-tablet {
	display: none;
}

@media (min-width:769px) {
	.u-visible-tablet {
		display: block;
	}
}

@media (min-width:1025px) {
	.u-hidden-desktop {
		display: none;
	}
}

@media (min-width:769px) {
	.u-hidden-tablet {
		display: none;
	}
}

@media (max-width:769px) {
	.u-hidden-phone {
		display: none !important;
	}
}

.u-text-center {
	text-align: center !important;
}

.u-text-right {
	text-align: right !important;
}

.u-color-white {
	color: #fff;
}

.u-color-link, .u-color-primary, .u-color-secondary {
	color: #cf415b;
}

.u-bg-primary, .u-bg-secondary {
	background-color: #cf415b;
}

.u-bg-white {
	background-color: #fff;
}

.o-box {
	position: relative;
	overflow: hidden;
}

.o-box__inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.o-box--1x1 {
	padding-top: 100%;
}

.accordion {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 650px;
	margin: 0 auto;
	overflow: hidden;
}

@media (max-width:1025px) {
	.accordion {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.accordion-overlay {
	opacity: 0;
	position: absolute;
	width: 100% !important;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
	background-position: 50%;
	z-index: 1;
	-webkit-transition: width .5s linear, opacity .5s linear;
	-moz-transition: width .5s linear, opacity .5s linear;
	transition: width .5s linear, opacity .5s linear;
}

.accordion-overlay.active {
	opacity: 1;
}

@media (max-width:769px) {
	.accordion-overlay {
		background-image: none !important;
	}
	
	.accordion-overlay.nitro-lazy {
		background-image: none !important;
	}
}

.accordion-bg {
	width: 100% !important;
	height: 100% !important;
	background-size: cover;
	background-position: 50%;
	-webkit-transition: opacity .5s ease-in-out;
	-moz-transition: opacity .5s ease-in-out;
	transition: opacity .5s ease-in-out;
}

.accordion-bg, .accordion-bg img {
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
}

.accordion-bg img {
	opacity: 0;
	width: 100%;
	height: 100%;
	outline: none;
}

@media (max-width:1025px) {
	.accordion-bg {
		background-image: none !important;
	}
	
	.accordion-bg.nitro-lazy {
		background-image: none !important;
	}
}

.accordion-cell {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	height: 100%;
	width: 100%;
	background-size: cover;
	border-right: 2px solid hsla(0, 0%, 100%, .5);
	cursor: pointer;
	outline: none;
	-webkit-transition: width .5s linear, opacity .5s linear, background .5s linear;
	-moz-transition: width .5s linear, opacity .5s linear, background .5s linear;
	transition: width .5s linear, opacity .5s linear, background .5s linear;
}

@media (max-width:1025px) {
	.accordion-cell {
		border-bottom: 2px solid hsla(0, 0%, 100%, .5);
		border-right: none;
		-webkit-transition: height .2s linear, opacity .2s linear .2s, background .2s linear;
		-moz-transition: height .2s linear, opacity .2s .2s linear, background .2s linear;
		transition: height .2s linear, opacity .2s linear .2s, background .2s linear;
	}
}

.accordion-cell:last-of-type {
	border-right: none;
}

.accordion-cell:before {
	content: attr(data-title);
	opacity: 0;
	position: absolute;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	top: 1.875rem;
	width: 60px;
	white-space: nowrap;
	font-size: 1.25rem;
	color: #fff;
	text-transform: uppercase;
	-webkit-transition: opacity .2s linear;
	-moz-transition: opacity .2s linear;
	transition: opacity .2s linear;
}

@media (max-width:1025px) {
	.accordion-cell:before {
		display: none;
	}
}

.accordion-cell.collapsed:before {
	opacity: 1;
}

.accordion-cell:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: hsla(0, 0%, 7%, .01);
	z-index: 1;
}

.accordion-cell:not(.expanded):hover:after {
	background: hsla(0, 0%, 7%, .25);
}

@media (min-width:1025px) {
	.accordion-cell:not(.expanded):hover .accordion-cell-outer>:first-child {
		-webkit-transition-delay: 25ms;
		-moz-transition-delay: 25ms;
		transition-delay: 25ms;
		-webkit-transition-timing-function: cubic-bezier(.16, .68, .43, .99);
		-moz-transition-timing-function: cubic-bezier(.16, .68, .43, .99);
		transition-timing-function: cubic-bezier(.16, .68, .43, .99);
	}
	
	.accordion-cell:not(.expanded):hover .accordion-cell-outer>:first-child, .accordion-cell:not(.expanded):hover .accordion-cell-outer>:nth-child(2) {
		-webkit-transform: translateY(-50px);
		-moz-transform: translateY(-50px);
		-ms-transform: translateY(-50px);
		transform: translateY(-50px);
		-webkit-transition-duration: .3s;
		-moz-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transform-origin: center;
		-moz-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
	}
	
	.accordion-cell:not(.expanded):hover .accordion-cell-outer>:nth-child(2) {
		-webkit-transition-delay: 50ms;
		-moz-transition-delay: 50ms;
		transition-delay: 50ms;
		-webkit-transition-timing-function: cubic-bezier(.16, .68, .43, .99);
		-moz-transition-timing-function: cubic-bezier(.16, .68, .43, .99);
		transition-timing-function: cubic-bezier(.16, .68, .43, .99);
	}
	
	.accordion-cell:not(.expanded):hover .accordion-cell-outer>:nth-child(3) {
		-webkit-transform: translateY(-50px);
		-moz-transform: translateY(-50px);
		-ms-transform: translateY(-50px);
		transform: translateY(-50px);
		-webkit-transition-delay: 75ms;
		-moz-transition-delay: 75ms;
		transition-delay: 75ms;
		-webkit-transition-duration: .3s;
		-moz-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-timing-function: cubic-bezier(.16, .68, .43, .99);
		-moz-transition-timing-function: cubic-bezier(.16, .68, .43, .99);
		transition-timing-function: cubic-bezier(.16, .68, .43, .99);
		-webkit-transform-origin: center;
		-moz-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
	}
}

.accordion-cell:not(.expanded):hover .accordion-cell-btn-wrap {
	background: #cf415b;
	border-color: transparent;
	cursor: pointer;
}

.accordion-cell:not(.expanded):hover .accordion-cell-btn-wrap>span {
	-webkit-transition: -webkit-transform .2s linear;
	transition: -webkit-transform .2s linear;
	transition: transform .2s linear;
	transition: transform .2s linear, -webkit-transform .2s linear, -moz-transform .2s linear;
	-moz-transition: transform .2s linear, -moz-transform .2s linear;
	-webkit-transform: scale(1.2);
	-webkit-transform: rotate(45deg);
	-moz-transform: scale(1.2);
	-moz-transform: rotate(45deg);
	-ms-transform: scale(1.2);
	-ms-transform: rotate(45deg);
	transform: scale(1.2);
	transform: rotate(45deg);
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	margin-top: -2px;
}

.accordion-cell:not(.expanded):hover .accordion-cell-more {
	opacity: 1;
}

.accordion-cell .accordion-cell-outer {
	position: absolute;
	bottom: 100px;
	width: 100%;
	padding: 0 .3125rem;
	text-align: center;
	color: #fff;
	z-index: 2;
}

@media (max-width:1025px) {
	.accordion-cell .accordion-cell-outer {
		position: relative;
		bottom: auto;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: row-reverse;
		-moz-box-orient: horizontal;
		-moz-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		text-align: right;
		padding: 0 1.25rem;
	}
}

.accordion-cell .accordion-cell-outer>* {
	-webkit-transition: -webkit-transform .2s linear;
	transition: -webkit-transform .2s linear;
	transition: transform .2s linear;
	transition: transform .2s linear, -webkit-transform .2s linear, -moz-transform .2s linear;
	-moz-transition: transform .2s linear, -moz-transform .2s linear;
}

.accordion-cell .accordion-cell-btn-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: .625rem auto;
	width: 50px;
	height: 50px;
	background: transparent;
	border: 2px solid #fff;
	border-radius: 100%;
	cursor: pointer;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	transition: all .2s linear;
}

@media (max-width:1025px) {
	.accordion-cell .accordion-cell-btn-wrap {
		width: 35px;
		height: 35px;
	}
}

.accordion-cell .accordion-cell-btn-wrap:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	background: #cf415b;
	border-color: transparent;
}

@media (max-width:1025px) {
	.accordion-cell .accordion-cell-btn-wrap:hover {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

.accordion-cell .accordion-cell-btn-wrap:hover>span {
	-webkit-transform: scale(1.2);
	-webkit-transform: rotate(90deg);
	-moz-transform: scale(1.2);
	-moz-transform: rotate(90deg);
	-ms-transform: scale(1.2);
	-ms-transform: rotate(90deg);
	transform: scale(1.2);
	transform: rotate(90deg);
}

.accordion-cell .accordion-cell-btn-wrap--top-right {
	position: absolute;
	top: .9375rem;
	right: 1.875rem;
}

@media (max-width:1025px) {
	.accordion-cell .accordion-cell-btn-wrap {
		margin: 0;
	}
}

.accordion-cell .accordion-cell-btn-wrap .accordion-cell-btn {
	display: inline-block;
	height: 12px;
	width: 12px;
	margin-top: 6px;
	border-style: solid;
	border-color: #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
	-webkit-transition: -webkit-transform .2s ease-in-out;
	transition: -webkit-transform .2s ease-in-out;
	transition: transform .2s ease-in-out;
	transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out, -moz-transform .2s ease-in-out;
	-moz-transition: transform .2s ease-in-out, -moz-transform .2s ease-in-out;
}

.accordion-cell .accordion-cell-btn-wrap .accordion-cell-btn--close {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: none;
	margin: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

.accordion-cell .accordion-cell-btn-wrap .accordion-cell-btn--close:after, .accordion-cell .accordion-cell-btn-wrap .accordion-cell-btn--close:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #fff;
}

.accordion-cell .accordion-cell-btn-wrap .accordion-cell-btn--close:before {
	content: "";
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.accordion-cell .accordion-cell-btn-wrap .accordion-cell-btn--close:after {
	content: "";
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.accordion-cell .accordion-cell-title {
	display: block;
	margin: 0;
	padding: 0;
	line-height: 1;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width:1025px) {
	.accordion-cell .accordion-cell-title {
		max-width: 85%;
		text-align: left;
	}
}

.accordion-cell .accordion-cell-title--has-hr {
	margin-bottom: 1.875rem;
	position: relative;
}

.accordion-cell .accordion-cell-title--has-hr:after {
	content: "";
	display: block;
	height: 8px;
	width: 30px;
	margin-top: 1.875rem;
	background: #cf415b;
}

.accordion-cell .accordion-cell-more {
	opacity: 0;
}

@media (max-width:1025px) {
	.accordion-cell .accordion-cell-more {
		display: none;
	}
}

.accordion-cell>.accordion-cell-content {
	opacity: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: baseline;
	-webkit-align-items: baseline;
	-moz-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	bottom: 0;
	padding: 3.75rem;
	z-index: 2;
	overflow: hidden;
}

@media (max-width:1025px) {
	.accordion-cell>.accordion-cell-content {
		padding-left: 1.875rem;
		padding-right: 1.875rem;
	}
}

.accordion-cell>.accordion-cell-content>li, .accordion-cell>.accordion-cell-content>p, .accordion-cell>.accordion-cell-content>ul {
	display: block;
	margin: 0;
	margin-bottom: .9375rem;
	font-size: 1rem;
	padding: 0;
	font-family: inherit;
	color: #fff;
}

@media (min-width:1025px) {
	.accordion-cell>.accordion-cell-content>li, .accordion-cell>.accordion-cell-content>p, .accordion-cell>.accordion-cell-content>ul {
		max-width: 65%;
		font-size: 18px;
		line-height: 1.6;
	}
}

.accordion-cell>.accordion-cell-content ul {
	list-style: inherit;
	padding-left: 1.25rem;
}

.expanded {
	width: 100%;
	height: 100%;
	cursor: default;
}

.expanded>h4 {
	left: 1rem;
	bottom: 1rem;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
}

.expanded>.accordion-cell-content {
	opacity: 1;
	-webkit-transition: opacity .5s .5s;
	-moz-transition: opacity .5s .5s;
	transition: opacity .5s .5s;
}

@media (max-width:1025px) {
	.expanded>.accordion-cell-content {
		-webkit-transition: opacity .2s .2s;
		-moz-transition: opacity .2s .2s;
		transition: opacity .2s .2s;
	}
}

.collapsed {
	width: 4%;
	cursor: pointer;
}

@media (max-width:1025px) {
	.collapsed {
		width: 0;
		height: 0;
	}
}

@media (max-width:1025px) {
	.accordion-overlay.active {
		height: 100%;
		background-size: cover;
		background-position: 100%;
	}
}

.accordion-cell.collapsed {
	z-index: 1;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	
	to {
		opacity: 1;
		-moz-transform: translateY(5px);
		transform: translateY(5px);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	
	to {
		opacity: 1;
		-webkit-transform: translateY(5px);
		-moz-transform: translateY(5px);
		transform: translateY(5px);
	}
}

.contact-button {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: fixed;
	top: 32%;
	right: 0;
	width: auto;
	height: auto;
	padding: 75px 0;
	background: #cf415b;
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
	z-index: 9;
}

@media (max-width:769px) {
	.contact-button {
		display: none;
	}
}

.contact-button__inner {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	margin: 0 -38px;
}

.contact-button__link-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.contact-button__phone {
	display: inline-block;
	margin-left: 7px;
	padding: 2px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
}

i.contact-button__icon {
	font-size: 22px;
	color: #fff;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.ip-fab {
	z-index: 999;
	position: relative;
}

@media (min-width:769px) {
	.ip-fab {
		display: none;
	}
}

.ip-fab__icon {
	position: fixed;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 50px;
	width: 50px;
	border-radius: 100%;
	background-color: #fff;
	cursor: pointer;
	bottom: 15px;
	right: 15px;
}

.ip-fab__icon i {
	color: #111;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
}

.ip-fab__menu {
	display: none;
	margin: 0 0 -2%;
	padding: 0;
	position: fixed;
	bottom: 80px;
	right: 60px;
}

.ip-fab__item {
	list-style: none;
	margin-top: 18px;
	color: #fff;
	font-size: 16px;
}

.ip-fab__item a {
	text-decoration: none;
	color: #111;
	-webkit-transition: color .15s;
	-moz-transition: color .15s;
	transition: color .15s;
}

.ip-fab__item a:hover {
	color: #000;
}

.ip-fab__item i {
	color: #000;
	vertical-align: middle;
	margin-right: 10px;
}

.ip-fab__item--back {
	color: #111;
	-webkit-transition: color .15s;
	-moz-transition: color .15s;
	transition: color .15s;
}

.ip-fab__item--back:hover {
	color: #000;
}

.cursor-pointer {
	cursor: pointer;
}

.click {
	-webkit-animation: activate .3s linear forwards;
	-moz-animation: activate .3s linear forwards;
	animation: activate .3s linear forwards;
}

@-webkit-keyframes activate {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	25% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	50% {
		-webkit-transform: scale(.9);
		transform: scale(.9);
	}
	
	75% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	to {
		-webkit-transform: scale(10.5);
		transform: scale(10.5);
	}
}

@-moz-keyframes activate {
	0% {
		-moz-transform: scale(1);
		transform: scale(1);
	}
	
	25% {
		-moz-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	50% {
		-moz-transform: scale(.9);
		transform: scale(.9);
	}
	
	75% {
		-moz-transform: scale(1);
		transform: scale(1);
	}
	
	to {
		-moz-transform: scale(10.5);
		transform: scale(10.5);
	}
}

@keyframes activate {
	0% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	}
	
	25% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	50% {
		-webkit-transform: scale(.9);
		-moz-transform: scale(.9);
		transform: scale(.9);
	}
	
	75% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	}
	
	to {
		-webkit-transform: scale(10.5);
		-moz-transform: scale(10.5);
		transform: scale(10.5);
	}
}

.back {
	-webkit-animation: deactivate .3s linear forwards;
	-moz-animation: deactivate .3s linear forwards;
	animation: deactivate .3s linear forwards;
}

@-webkit-keyframes deactivate {
	0% {
		-webkit-transform: scale(10.5);
		transform: scale(10.5);
	}
	
	25% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	
	50% {
		-webkit-transform: scale(.9);
		transform: scale(.9);
	}
	
	75% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes deactivate {
	0% {
		-moz-transform: scale(10.5);
		transform: scale(10.5);
	}
	
	25% {
		-moz-transform: scale(1);
		transform: scale(1);
	}
	
	50% {
		-moz-transform: scale(.9);
		transform: scale(.9);
	}
	
	75% {
		-moz-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	to {
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes deactivate {
	0% {
		-webkit-transform: scale(10.5);
		-moz-transform: scale(10.5);
		transform: scale(10.5);
	}
	
	25% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	}
	
	50% {
		-webkit-transform: scale(.9);
		-moz-transform: scale(.9);
		transform: scale(.9);
	}
	
	75% {
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
		transform: scale(1.1);
	}
	
	to {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	}
}

.owl-carousel .animated {
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
	z-index: 0;
}

.owl-carousel .owl-animated-out {
	z-index: 1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	-moz-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

@-moz-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

.owl-height {
	-webkit-transition: height .5s ease-in-out;
	-moz-transition: height .5s ease-in-out;
	transition: height .5s ease-in-out;
}

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1;
}

.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translateZ(0);
}

.owl-carousel .owl-item {
	position: relative;
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
	display: block;
	width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
	display: none;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-loaded {
	display: block;
}

.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}

.owl-carousel.owl-hidden {
	opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
	display: none;
}

.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.owl-carousel.owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -o-grab;
	cursor: -ms-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.owl-carousel.owl-rtl {
	direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
	float: right;
}

.no-js .owl-carousel {
	display: block;
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	-webkit-transition: opacity .4s ease;
	-moz-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

.owl-carousel .owl-item img {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}

.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transition: scale .1s ease;
	-moz-transition: scale .1s ease;
	transition: scale .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition: scale(1.3, 1.3);
	-moz-transition: scale(1.3, 1.3);
	transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transition: opacity .4s ease;
	-moz-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.mfp-bg {
	z-index: 1042;
	overflow: hidden;
	background: #0b0b0b;
	opacity: .8;
}

.mfp-bg, .mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed;
}

.mfp-wrap {
	z-index: 1043;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.mfp-container:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}

.mfp-ajax-holder .mfp-content, .mfp-inline-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-arrow, .mfp-close, .mfp-counter, .mfp-preloader {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #ccc;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.mfp-preloader a {
	color: #ccc;
}

.mfp-preloader a:hover {
	color: #fff;
}

.mfp-s-error .mfp-content, .mfp-s-ready .mfp-preloader {
	display: none;
}

button.mfp-arrow, button.mfp-close {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: .65;
	padding: 0 0 18px 10px;
	color: #fff;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}

.mfp-close:focus, .mfp-close:hover {
	opacity: 1;
}

.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #333;
}

.mfp-iframe-holder .mfp-close, .mfp-image-holder .mfp-close {
	color: #fff;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #ccc;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: .65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:focus, .mfp-arrow:hover {
	opacity: 1;
}

.mfp-arrow:after, .mfp-arrow:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}

.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: .7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after {
	border-right: 17px solid #fff;
	margin-left: 31px;
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after {
	border-left: 17px solid #fff;
	margin-left: 39px;
}

.mfp-arrow-right:before {
	border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, .6);
	background: #000;
}

img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 40px 0;
	margin: 0 auto;
}

.mfp-figure, img.mfp-img {
	line-height: 0;
}

.mfp-figure:after {
	content: "";
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, .6);
	background: #444;
}

.mfp-figure small {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #f3f3f3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

@media screen and (max-height:300px),screen and (max-width:800px) and (orientation:landscape) {
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}
	
	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}
	
	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}
	
	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}
	
	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, .6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	
	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}
	
	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}
	
	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, .6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media (max-width:900px) {
	.mfp-arrow {
		-webkit-transform: scale(.75);
		-moz-transform: scale(.75);
		-ms-transform: scale(.75);
		transform: scale(.75);
	}
	
	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		-moz-transform-origin: 0;
		-ms-transform-origin: 0;
		transform-origin: 0;
	}
	
	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		-moz-transform-origin: 100%;
		-ms-transform-origin: 100%;
		transform-origin: 100%;
	}
	
	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}

.owl-dots {
	bottom: 30px;
}

.owl-dot {
	background: hsla(0, 0%, 50%, .5);
}

.owl-dot.active {
	background: #cf415b;
}

.owl-carousel .owl-stage {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	padding-bottom: 100px;
	padding-left: inherit;
}

@media (max-width:769px) {
	.owl-carousel .owl-stage {
		padding-left: 0 !important;
	}
}

@media (max-width:769px) {
	.owl-carousel .owl-stage.single-item {
		padding-right: 0 !important;
	}
	
	.owl-carousel .owl-stage.single-item .owl-item {
		margin: 0 auto;
		max-width: 100%;
	}
}

.owl-carousel .owl-item {
	background: #fff;
	max-width: 1130px !important;
	cursor: move;
	cursor: grab;
	cursor: -moz-grab;
	cursor: -webkit-grab;
	-webkit-transition: opacity .2s linear;
	-moz-transition: opacity .2s linear;
	transition: opacity .2s linear;
}

.owl-carousel .owl-item:active {
	cursor: grabbing;
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}

.owl-carousel .owl-item:not(.active) {
	opacity: .5;
	cursor: pointer;
}

.owl-carousel .owl-item:hover:not(.active) {
	opacity: 1;
}

.owl-carousel .item {
	position: relative;
}

.owl-carousel .item .item-icon-wrap {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 3.5em;
	z-index: 99;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

@media (max-width:1025px) {
	.owl-carousel .item .item-icon-wrap {
		font-size: 3em;
	}
}

@media (max-width:769px) {
	.owl-carousel .item .item-icon-wrap {
		font-size: 2em;
	}
}

.owl-carousel .item .item-icon-wrap i {
	color: hsla(0, 0%, 100%, .75);
	-webkit-backface-visibility: hidden;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform .3s ease-out;
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out, -webkit-transform .3s ease-out, -moz-transform .3s ease-out;
	-moz-transition: transform .3s ease-out, -moz-transform .3s ease-out;
}

.owl-carousel .item .item-icon-wrap i+i {
	color: #cf415b;
	font-size: 42px;
}

.owl-carousel .item .item-icon-wrap i+i:before {
	margin-left: 8px;
}

@media (max-width:1025px) {
	.owl-carousel .item .item-icon-wrap i+i {
		font-size: 36px;
	}
}

@media (max-width:769px) {
	.owl-carousel .item .item-icon-wrap i+i {
		font-size: 22px;
	}
	
	.owl-carousel .item .item-icon-wrap i+i:before {
		margin-left: 6px;
	}
}

.owl-carousel .item .item-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.owl-carousel .item .item-link:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transition: background .3s ease-out;
	-moz-transition: background .3s ease-out;
	transition: background .3s ease-out;
}

.owl-carousel .item .item-link:hover:before {
	background: hsla(0, 0%, 7%, .5);
}

.owl-carousel .item .item-link:hover i {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.owl-carousel .owl-item {
	box-shadow: 0 20px 45px rgba(34, 34, 34, .431372549);
	padding: 90px;
}

@media (max-width:1171px) {
	.owl-carousel .owl-item {
		padding: 60px;
	}
}

@media (max-width:1025px) {
	.owl-carousel .owl-item {
		padding: 30px;
		margin-right: 30px;
	}
}

@media (max-width:769px) {
	.owl-carousel .owl-item {
		margin-left: 15px;
		margin-right: 15px;
		padding: 15px;
		box-shadow: 0 20px 45px -25px rgba(34, 34, 34, .431372549);
	}
}

.owl-carousel .item img {
	width: 100%;
	height: 100%;
	height: 500px;
	max-width: none;
	object-fit: cover;
	margin: 0 auto;
	background: #fff;
}

@media (max-width:769px) {
	.owl-carousel .item img {
		height: 250px;
	}
}

.owl-carousel .item-content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 30px;
	font-size: 1.125rem;
}

.owl-carousel .item-content>div {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-moz-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

@media (max-width:1025px) {
	.owl-carousel .item-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	
	.owl-carousel .item-content>div {
		width: 100%;
		margin: 15px auto;
		text-align: center;
	}
}

.owl-carousel .item-content-link {
	display: block;
}

.owl-carousel .item-content-name-person, .owl-carousel .item-content-name-type {
	font-size: 1.625rem;
	line-height: 1.2;
	letter-spacing: inherit;
}

.owl-carousel .item-content-name-type {
	color: #111;
}

.owl-carousel .item-content-link, .owl-carousel .item-content-name-person {
	color: #cf415b;
}

.owl-carousel .item-content-logo img {
	width: 150px;
	height: auto;
	margin-right: 0;
}

@media (max-width:1025px) {
	.owl-carousel .item-content-logo img {
		display: none;
	}
}

.owl-carousel-full {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.owl-dots {
	text-align: center;
	position: absolute;
	bottom: 5px;
	width: 100%;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.owl-dot {
	border-radius: 50px;
	height: 14px;
	width: 14px;
	display: inline-block;
	background: hsla(0, 0%, 100%, .5);
	margin-left: 7px;
	margin-right: 7px;
	cursor: pointer;
}

.owl-dot.active {
	background: #fff;
}

.owl-carousel-full .owl-stage {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: -10px;
}

.owl-carousel-full .owl-item {
	max-width: 1130px !important;
	cursor: move;
	cursor: grab;
	cursor: -moz-grab;
	cursor: -webkit-grab;
	-webkit-transition: opacity .2s linear;
	-moz-transition: opacity .2s linear;
	transition: opacity .2s linear;
}

.owl-carousel-full .owl-item:active {
	cursor: grabbing;
	cursor: -moz-grabbing;
	cursor: -webkit-grabbing;
}

.owl-carousel-full .owl-item:not(.active) {
	opacity: .5;
	cursor: pointer;
}

.owl-carousel-full .owl-item:hover:not(.active) {
	opacity: 1;
}

.owl-carousel-full .item {
	position: relative;
	height: -webkit-calc(100% - 10px);
	height: -moz-calc(100% - 10px);
	height: calc(100% - 10px);
}

.owl-carousel-full .item:hover i {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.owl-carousel-full .item__col {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.owl-carousel-full .item__col .owl-item {
	-webkit-flex-basis: 50%;
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
}

.owl-carousel-full .item .item-icon-wrap {
	font-size: 2em;
	margin-right: 20px;
	z-index: 99;
}

@media (max-width:769px) {
	.owl-carousel-full .item .item-icon-wrap {
		font-size: 2.5em;
	}
}

@media (max-width:481px) {
	.owl-carousel-full .item .item-icon-wrap {
		font-size: 1.75em;
	}
}

.owl-carousel-full .item .item-icon-wrap i {
	color: hsla(0, 0%, 100%, .75);
	-webkit-transition: -webkit-transform .3s ease-out;
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out, -webkit-transform .3s ease-out, -moz-transform .3s ease-out;
	-moz-transition: transform .3s ease-out, -moz-transform .3s ease-out;
}

.owl-carousel-full .item .item-icon-wrap i+i {
	color: #fff !important;
	font-size: 22px;
}

.owl-carousel-full .item .item-icon-wrap i+i:before {
	margin-left: 8px;
}

@media (min-width:769px) {
	.owl-carousel-full .item .item-icon-wrap i+i {
		font-size: 26px;
	}
	
	.owl-carousel-full .item .item-icon-wrap i+i:before {
		margin-left: 6px;
	}
}

.owl-carousel-full .item .item-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
}

.owl-carousel-full .item .item-link:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
	width: 100%;
	height: 100%;
	z-index: 1;
	-webkit-transition: background .3s ease-out;
	-moz-transition: background .3s ease-out;
	transition: background .3s ease-out;
}

.owl-carousel-full .item .item-link:hover:before {
	background: hsla(0, 0%, 7%, .75);
}

.owl-carousel-full .item img {
	width: 100%;
	height: 100%;
	max-width: none;
	min-height: 300px;
	object-fit: cover;
	margin: 0 auto;
}

@media (max-width:769px) {
	.owl-carousel-full .item img {
		height: 250px;
	}
}

.owl-carousel-full .item-content {
	position: absolute;
	bottom: 0;
	width: 100%;
	background: hsla(0, 0%, 100%, .15);
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 30px;
	padding-bottom: 60px;
	font-size: 1.125rem;
}

.owl-carousel-full .item-content-link {
	display: block;
}

.owl-carousel-full .item-content-name-person, .owl-carousel-full .item-content-name-type {
	font-size: 1.625rem;
	line-height: 1.2;
	letter-spacing: inherit;
}

@media (max-width:481px) {
	.owl-carousel-full .item-content-name-person, .owl-carousel-full .item-content-name-type {
		display: none;
	}
}

.owl-carousel-full .item-content-name-type {
	color: #111;
}

@media (max-width:481px) {
	.owl-carousel-full .item-content-link, .owl-carousel-full .item-content-name-person, .owl-carousel-full .item-content-name-type {
		display: none;
	}
}

.mfp-link {
	-webkit-transform: perspective(1px) translateZ(0);
	-moz-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
}

.mfp-close {
	opacity: 1;
	font-size: 45px !important;
	font-family: inherit;
	top: -50px !important;
}

.mfp-icon {
	position: absolute;
	top: 50%;
	font-size: 30px !important;
	color: #fff;
	cursor: pointer;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform .3s ease-out;
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out, -webkit-transform .3s ease-out, -moz-transform .3s ease-out;
	-moz-transition: transform .3s ease-out, -moz-transform .3s ease-out;
}

.mfp-icon.right {
	right: 30px;
}

.mfp-icon.left {
	left: 30px;
}

.mfp-icon:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all .15s ease-out;
	-moz-transition: all .15s ease-out;
	transition: all .15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
	opacity: .8;
}

.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all .15s ease-out;
	-moz-transition: all .15s ease-out;
	transition: all .15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

.premium-modal-box-modal {
	z-index: 999999 !important;
}

.pw-tabs {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pw-tabs__link {
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-moz-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin: 0;
	cursor: pointer;
	padding: 30px 15px;
	background-color: #666;
	color: #ccc;
	text-align: center;
	overflow: hidden;
}

.pw-tabs__link:hover {
	background-color: #ccc;
	color: #fff;
}

.pw-tabs__link.pw-active {
	background-color: #111;
	color: #fff;
	display: block;
	overflow: visible;
}

.pw-tabs__link.pw-active:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border: solid transparent;
	border-width: 10px;
	pointer-events: none;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	border-top-color: #111;
	z-index: 2;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}

.pw-tabs__link--last {
	border-right: 1px solid #333;
}

.pw-tabs__container {
	display: block;
	border-top: none;
	width: 100%;
	background: #fff;
	overflow: auto;
}

.pw-tabs__content {
	margin: 0;
	padding: 0;
	display: none;
}

.pw-tabs__title {
	display: none;
}

@media (max-width:1025px) {
	.pw-tabs {
		display: none;
	}
	
	.pw-tabs__title {
		display: block;
		background-color: #ccc;
		color: #fff;
		margin: 0;
		padding: 25px 15px;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	
	.pw-tabs__title:after {
		font-family: FontAwesome;
		content: "";
		color: #333;
		position: absolute;
		right: 30px;
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		transform: rotate(90deg);
		-webkit-transition: -webkit-transform .25s linear;
		transition: -webkit-transform .25s linear;
		transition: transform .25s linear;
		transition: transform .25s linear, -webkit-transform .25s linear, -moz-transform .25s linear;
		-moz-transition: transform .25s linear, -moz-transform .25s linear;
	}
	
	.pw-tabs__title.pw-accordion-active:after {
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
	
	.pw-accordion-active {
		background-color: #666;
		color: #fff;
	}
}

.video-thumbnail {
	width: 100%;
	min-height: 200px;
	height: 100%;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	position: relative;
	cursor: pointer;
}

.video-thumbnail:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .25);
	-webkit-transition: background .25s linear, -webkit-transform .25s linear;
	transition: background .25s linear, -webkit-transform .25s linear;
	transition: background .25s linear, transform .25s linear;
	transition: background .25s linear, transform .25s linear, -webkit-transform .25s linear, -moz-transform .25s linear;
	-moz-transition: background .25s linear, transform .25s linear, -moz-transform .25s linear;
}

.video-thumbnail:hover:after {
	background: rgba(0, 0, 0, .75);
}

.video-thumbnail:hover .item-icon-wrap i {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.video-thumbnail.broll-enabled {
	height: 100%;
}

.video-thumbnail.broll-enabled video {
	height: 100%;
	margin-bottom: -5px;
}

.video-thumbnail .item-icon-wrap {
	display: block;
	position: absolute;
	top: 50%;
	bottom: auto;
	left: 50%;
	font-size: 2.8em;
	z-index: 99;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.video-thumbnail .item-icon-wrap--bottom {
	top: auto;
	bottom: 20px;
	left: 20px;
	-webkit-transform: translate(0);
	-moz-transform: translate(0);
	-ms-transform: translate(0);
	transform: translate(0);
}

.video-thumbnail .item-icon-wrap i {
	color: hsla(0, 0%, 100%, .75);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform .3s ease-out;
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out, -webkit-transform .3s ease-out, -moz-transform .3s ease-out;
	-moz-transition: transform .3s ease-out, -moz-transform .3s ease-out;
}

.video-thumbnail .item-icon-wrap i+i {
	color: #222;
	font-size: 32px;
	margin-left: 3px;
	margin-top: 1px;
}

.video-thumbnail-play-custom {
	background-size: cover;
	width: 100px;
	height: 100px;
}

.video-caption {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 15px 15px 0;
	color: #fff;
	background-color: rgba(0, 0, 0, .4);
	z-index: 2;
}

@media (min-width:769px) {
	.video-caption {
		padding: 15px;
		padding-top: 30px;
	}
}

.video-caption--v-centered {
	position: absolute;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-moz-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	bottom: 10%;
	padding-left: 15px;
	padding-right: 15px;
	background-color: transparent;
}

.video-broll-thumbnail {
	position: relative;
	cursor: pointer;
}

.video-broll-thumbnail .item-icon-wrap {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 2.8em;
	z-index: 99;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.video-broll-thumbnail .item-icon-wrap i {
	color: hsla(0, 0%, 100%, .75);
	-webkit-backface-visibility: hidden;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform .3s ease-out;
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out, -webkit-transform .3s ease-out, -moz-transform .3s ease-out;
	transition: transform .3s ease-out, -webkit-transform .3s ease-out;
	-moz-transition: transform .3s ease-out, -moz-transform .3s ease-out;
}

.video-broll-thumbnail .item-icon-wrap i+i {
	color: #cf415b;
	font-size: 32px;
	margin-left: 3px;
	margin-top: 1px;
}

.video-broll-caption {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	padding: 15px 0;
}

.video-broll-caption:before {
	position: absolute;
	content: "";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	color: #cf415b;
}

.video-broll-caption .video-broll-caption-title {
	padding-left: 30px;
	color: #fff;
}

.pd-form-selector-wrapper {
	font-family: Montserrat, Helvetica, Arial, sans-serif;
	font-weight: 300;
	margin: 0 auto;
}

.pd-form-selector__heading {
	background-color: #003b55;
	border-radius: 7px 7px 0 0;
	color: #fff;
	font-size: 1.5rem;
	padding: 15px;
}

.pd-form-selector__body {
	background-color: #f9f6f1;
	border-radius: 0 0 7px 7px;
	padding: 30px 25px;
}

.select2 .pd-form-selector {
	background-color: #fff;
	border-radius: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 40px;
}

.select2-container .pd-form-dropdown {
	background-color: #fff;
}

.select2 .selection, .select2 .selection .select2-selection:focus {
	outline: none;
}

.select2-container--focus {
	border: 2px solid #aacb9f;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #645e5e;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 5px;
	right: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #777 transparent transparent;
	border-width: 8px 6px 0;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #777;
	border-width: 0 6px 8px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: transparent;
	color: #fff;
}

.pd-form-display .form {
	display: none;
	font-size: 2rem;
	text-align: center;
	width: 100%;
}

.pd-form-display .form.active {
	display: block;
}

.video-full, .video-full-wrapper {
	position: relative;
}

.video-full {
	width: 100%;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
}

.video-full__time {
	position: absolute;
	z-index: 2;
	right: 20px;
	bottom: 20px;
	display: none;
}

@media (min-width:768px) {
	.video-full__time {
		right: 30px;
		bottom: 30px;
		display: block;
	}
}

.video-full__time h6 {
	padding: 10px;
	font-size: 24px !important;
	font-weight: 700 !important;
}

.video-full__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.video-full video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: none;
}

@media (min-width:768px) {
	.video-full video {
		display: inline;
	}
}

.mobile-video-enabled video {
	display: inline;
}

.video-full__headline-text {
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 0 30px 20px;
	text-align: center;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

@media (min-width:768px) {
	.video-full__headline-text {
		padding: 30px;
	}
}

@media (min-width:1025px) {
	.video-full__headline-text {
		width: 40%;
		bottom: 50%;
		-webkit-transform: translateY(50%);
		-moz-transform: translateY(50%);
		-ms-transform: translateY(50%);
		transform: translateY(50%);
		padding: 0 0 0 90px;
		text-align: left;
	}
}

.video-full__headline-text h1 {
	margin-top: 20px;
	margin-bottom: 20px;
}

@media (max-width:767px) {
	.video-full__headline-text h2 br {
		display: none;
	}
}

.split-headline-enabled {
	bottom: 0;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	padding: 0 30px;
	text-align: left;
	width: 100%;
	max-width: 550px;
}

.elementor-element .split-headline-enabled {
	opacity: 0;
}

.elementor-element.is-loaded .split-headline-enabled {
	opacity: 1;
}

@media (min-width:768px) {
	.split-headline-enabled {
		padding: 0 0 0 60px;
		width: 60%;
		max-width: none;
	}
}

@media (min-width:1025px) {
	.split-headline-enabled {
		padding: 0 0 0 90px;
	}
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all .5s ease;
}

.play-button svg {
	width: 85px;
	height: 85px;
}

@media (min-width:768px) {
	.play-button svg {
		width: 150px;
		height: 150px;
	}
}

.play-button .play-button__triangle {
	-webkit-transition: all .7s ease-in-out;
	stroke-dasharray: 240;
	stroke-dashoffset: 480;
	stroke: #fff;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.play-button:hover .play-button__triangle {
	stroke-dashoffset: 0;
	opacity: 1;
	stroke: #a1d05a;
	-webkit-animation: nudge .7s ease-in-out;
	-moz-animation: nudge .7s ease-in-out;
	animation: nudge .7s ease-in-out;
}

.play-button:hover .play-button__circle-outline {
	stroke-dashoffset: 0;
	opacity: 1;
}

.play-button__circle, .play-button__circle-outline {
	stroke-dasharray: 650;
	stroke-dashoffset: 650;
	-webkit-transition: all .5s ease-in-out;
}

.play-button__circle-outline {
	stroke: #a1d05a;
	opacity: .3;
}

.play-button__circle {
	stroke: #fff;
	opacity: 1;
	stroke-dashoffset: 0;
}

@-webkit-keyframes nudge {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	30% {
		-webkit-transform: translateX(-5px);
		transform: translateX(-5px);
	}
	
	50% {
		-webkit-transform: translateX(5px);
		transform: translateX(5px);
	}
	
	70% {
		-webkit-transform: translateX(-2px);
		transform: translateX(-2px);
	}
	
	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@-moz-keyframes nudge {
	0% {
		-moz-transform: translateX(0);
		transform: translateX(0);
	}
	
	30% {
		-moz-transform: translateX(-5px);
		transform: translateX(-5px);
	}
	
	50% {
		-moz-transform: translateX(5px);
		transform: translateX(5px);
	}
	
	70% {
		-moz-transform: translateX(-2px);
		transform: translateX(-2px);
	}
	
	to {
		-moz-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes nudge {
	0% {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
	}
	
	30% {
		-webkit-transform: translateX(-5px);
		-moz-transform: translateX(-5px);
		transform: translateX(-5px);
	}
	
	50% {
		-webkit-transform: translateX(5px);
		-moz-transform: translateX(5px);
		transform: translateX(5px);
	}
	
	70% {
		-webkit-transform: translateX(-2px);
		-moz-transform: translateX(-2px);
		transform: translateX(-2px);
	}
	
	to {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
	}
}

.video-full__cta {
	color: #fff;
	text-align: center;
	position: absolute;
	bottom: 0;
	right: 0;
	display: none;
	padding: 35px;
	width: 60%;
	max-width: 850px;
	white-space: nowrap;
}

.video-full__cta>* {
	color: #fff;
}

@media (min-width:1025px) {
	.video-full__cta {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-justify-content: space-around;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
}

.video-full__cta p {
	display: inline;
	margin-right: 20px;
	vertical-align: middle;
}

.video-full__cta .social-icons {
	margin: 0;
	padding: 0;
}

.video-full__cta .social-icons li {
	display: inline-block;
	margin: 0 5px;
}

.video-full__cta .social-icons li:first-child {
	margin-left: 0;
}

.video-full__cta .social-icons li:last-child {
	margin-right: 0;
}

.video-full__cta .social-icons li a {
	width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
}

.border-image {
	display: inline-block;
	position: relative;
}

.border-image:before {
	position: absolute;
	width: 85%;
	height: 95%;
	border: 2px solid red;
	content: "";
}

.border-image img {
	position: relative;
}

.border-image-top-left:before {
	top: -15px;
	left: -15px;
}

@media (min-width:768px) {
	.border-image-top-left:before {
		top: -30px;
		left: -30px;
	}
}

.border-image-bottom-left:before {
	bottom: -15px;
	left: -15px;
}

@media (min-width:768px) {
	.border-image-bottom-left:before {
		bottom: -30px;
		left: -30px;
	}
}

.border-image-top-right:before {
	top: -15px;
	right: -15px;
}

@media (min-width:768px) {
	.border-image-top-right:before {
		top: -30px;
		right: -30px;
	}
}

.border-image-bottom-right:before {
	bottom: -15px;
	right: -15px;
}

@media (min-width:768px) {
	.border-image-bottom-right:before {
		bottom: -30px;
		right: -30px;
	}
}

.c-sticky-sidebar {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	z-index: 5;
}

@media (min-width:1024px) {
	.c-sticky-sidebar {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: opacity .4s ease, visibility .4s ease;
		-moz-transition: opacity .4s ease, visibility .4s ease;
		transition: opacity .4s ease, visibility .4s ease;
	}
	
	.c-sticky-sidebar.is-loaded {
		opacity: 1;
		visibility: visible;
	}
}

.c-sticky-sidebar a {
	color: inherit !important;
	font-weight: 400 !important;
}

.c-sticky-sidebar__header {
	text-align: center;
	-webkit-transition: background-color .3s ease-out;
	-moz-transition: background-color .3s ease-out;
	transition: background-color .3s ease-out;
}

.c-sticky-sidebar__header a {
	display: block;
	padding: 20px 30px;
	font-size: 13px !important;
	line-height: 18px !important;
	font-weight: 400 !important;
}

.c-sticky-sidebar-header__heading {
	margin: 0 0 15px;
}

.c-sticky-sidebar__header .elementor-button {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	font-size: 18px !important;
	line-height: 18px !important;
	font-weight: 400 !important;
	background-color: transparent !important;
	white-space: nowrap;
}

.c-sticky-sidebar__body {
	padding: 40px 30px;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.c-sticky-sidebar-link-list {
	margin: 0 0 30px;
}

.c-sticky-sidebar-link-list:last-child {
	margin: 0;
}

.c-sticky-sidebar-link-list__title {
	margin: 0 0 .75em !important;
}

.c-sticky-sidebar-link-list__link--image {
	margin: 0 0 8px;
}

.c-sticky-sidebar-link-list__link--image:last-child {
	margin: 0;
}

.c-sticky-sidebar-link-list__link--icon {
	margin: 0 0 8px !important;
}

.c-sticky-sidebar-link-list__link--icon:last-child {
	margin: 0;
}

.c-sticky-sidebar-link-list__link--image a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.c-sticky-sidebar-link-list__link i {
	font-size: 14px;
}

.c-sticky-sidebar-link-list__image {
	display: inline-block;
	position: relative;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 10px 0 0;
}

.c-sticky-sidebar-link-list__image img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.c-sticky-sidebar-feed {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	z-index: 10;
	background-color: #eee;
	color: #000;
}

@media (min-width:1024px) {
	.c-sticky-sidebar-feed {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: opacity .4s ease, visibility .4s ease;
		-moz-transition: opacity .4s ease, visibility .4s ease;
		transition: opacity .4s ease, visibility .4s ease;
	}
	
	.c-sticky-sidebar-feed.is-loaded {
		opacity: 1;
		visibility: visible;
	}
}

.c-sticky-sidebar-feed__header {
	text-align: center;
	-webkit-transition: background-color .3s ease-out;
	-moz-transition: background-color .3s ease-out;
	transition: background-color .3s ease-out;
}

.c-sticky-sidebar-feed__header a {
	display: block;
	padding: 20px 30px;
	font-size: 13px !important;
	line-height: 18px !important;
	font-weight: 400 !important;
}

.c-sticky-sidebar-feed-header__heading {
	margin: 0 0 15px;
}

.c-sticky-sidebar-feed__header .elementor-button {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	font-size: 18px !important;
	line-height: 18px !important;
	font-weight: 400 !important;
	background-color: transparent !important;
	white-space: nowrap;
}

.c-sticky-sidebar-feed__heading {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.c-sticky-sidebar-feed__body {
	padding: 30px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
}

.c-sticky-sidebar-feed__body__scroll {
	overflow-y: auto;
}

.c-post-list-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 20px;
}

.c-post-list-item:first-child {
	margin: 0 0 20px;
	padding: 0 0 20px;
	border-bottom: 1px solid #aaa;
}

.c-post-list-item:last-child {
	margin: 0;
}

.c-post-list-item__thumb {
	max-width: 80px;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 80px;
	-moz-box-flex: 0;
	-ms-flex: 0 0 80px;
	flex: 0 0 80px;
	margin: 0 10px 0 0;
}

.c-post-list-item__thumb i {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	color: #fff;
	z-index: 2;
	-webkit-transition: color .4s ease;
	-moz-transition: color .4s ease;
	transition: color .4s ease;
}

.c-post-list-item__title {
	font-size: 16px;
	line-height: 1.1em;
	font-weight: 700;
}

.c-post-list-item__cta {
	font-size: 12px;
	line-height: 1em;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .05em;
	margin: 1em 0 0;
	-webkit-transition: color .4s ease;
	-moz-transition: color .4s ease;
	transition: color .4s ease;
}

.c-post-list-item__thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

.c-inline-video--has-drop-border:before {
	content: "";
	position: absolute;
	top: -10px;
	left: -10px;
	width: 90%;
	height: 100%;
	border: 2px solid;
}

@media (min-width:768px) {
	.c-inline-video--has-drop-border:before {
		top: -20px;
		left: -20px;
	}
}

@media (min-width:1024px) {
	.c-inline-video--has-drop-border:before {
		top: -30px;
		left: -30px;
	}
}

.c-inline-video__box {
	position: relative;
	overflow: hidden;
}

@media (max-width:568px) {
	.c-inline-video__box {
		padding-top: 100% !important;
	}
}

.c-inline-video__box--1x1 {
	padding-top: 100%;
}

.c-inline-video__box--3x2 {
	padding-top: 66.6666666667%;
}

.c-inline-video__box--4x3 {
	padding-top: 75%;
}

.c-inline-video__box--16x9 {
	padding-top: 56.25%;
}

.c-inline-video__poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.c-inline-video__poster:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.c-inline-video__poster img {
	z-index: 1;
}

.c-inline-video__poster img, .c-inline-video__poster video {
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

.c-inline-video .play-button, .c-inline-video__poster video {
	z-index: 2;
}

.c-inline-video .play-button svg {
	width: 60px;
	height: 60px;
}

@media (min-width:768px) {
	.c-inline-video .play-button svg {
		width: 80px;
		height: 80px;
	}
}

@media (min-width:1024px) {
	.c-inline-video .play-button svg {
		width: 100px;
		height: 100px;
	}
}

@media (min-width:1200px) {
	.c-inline-video .play-button svg {
		width: 110px;
		height: 110px;
	}
}

.c-inline-video__body {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 2;
}

@media (min-width:768px) {
	.c-inline-video__body {
		bottom: 20px;
		left: 20px;
	}
}

.c-inline-video__body>:last-child {
	margin-bottom: 0;
}

.c-inline-video__time {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 2;
}

.c-inline-video__time h6 {
	padding: 2px 8px;
	font-size: 22px !important;
	font-weight: 700 !important;
}

@media (min-width:768px) {
	.c-inline-video__time h6 {
		padding: 8px 10px;
	}
}

.c-popup-video {
	display: none;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 400;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
	opacity: 0;
	-webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
	transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
	transition: transform .2s ease-out, opacity .2s ease-out;
	transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out, -moz-transform .2s ease-out;
	-moz-transition: transform .2s ease-out, opacity .2s ease-out, -moz-transform .2s ease-out;
}

@media (min-width:900px) {
	.c-popup-video {
		display: block;
	}
}

.c-popup-video.is-active:not(.is-hidden) {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: opacity .4s ease-out, -webkit-transform .4s ease-out;
	transition: opacity .4s ease-out, -webkit-transform .4s ease-out;
	transition: transform .4s ease-out, opacity .4s ease-out;
	transition: transform .4s ease-out, opacity .4s ease-out, -webkit-transform .4s ease-out, -moz-transform .4s ease-out;
	-moz-transition: transform .4s ease-out, opacity .4s ease-out, -moz-transform .4s ease-out;
}

.c-popup-video__box {
	position: relative;
	overflow: hidden;
}

@media (max-width:568px) {
	.c-popup-video__box {
		padding-top: 100% !important;
	}
}

.c-popup-video__box--1x1 {
	padding-top: 100%;
}

.c-popup-video__box--2x1 {
	padding-top: 50%;
}

.c-popup-video__box--3x2 {
	padding-top: 66.6666666667%;
}

.c-popup-video__box--4x3 {
	padding-top: 75%;
}

.c-popup-video__box--16x9 {
	padding-top: 56.25%;
}

.c-popup-video__poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.c-popup-video__poster img {
	z-index: 1;
}

.c-popup-video__poster img, .c-popup-video__poster video {
	position: absolute;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

.c-popup-video .play-button, .c-popup-video__poster video {
	z-index: 2;
}

@media (min-width:768px) {
	.c-popup-video .play-button svg {
		width: 60px !important;
		height: 60px !important;
	}
}

@media (min-width:1024px) {
	.c-popup-video .play-button svg {
		width: 80px !important;
		height: 80px !important;
	}
}

@media (min-width:1200px) {
	.c-popup-video .play-button svg {
		width: 100px !important;
		height: 100px !important;
	}
}

.c-popup-video__title {
	position: absolute;
	bottom: 8px;
	left: 10px;
	z-index: 2;
}

.c-popup-video__title h6 {
	padding: 8px 10px;
	font-size: 18px !important;
}

.c-popup-video__close {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 30px;
	cursor: pointer;
	z-index: 2;
	color: #fff;
	opacity: 0;
}

.c-popup-video:hover .c-popup-video__close {
	opacity: 1;
}

.c-masonry-grid__nav, .c-masonry-grid h2 {
	text-align: center;
	margin: 0 0 30px;
}

.c-masonry-grid__nav {
	padding: 15px 30px;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.c-masonry-grid__nav-item {
	position: relative;
	cursor: pointer;
}

@media (min-width:768px) {
	.c-masonry-grid__nav-item {
		display: inline-block;
		margin: 0 .5em;
	}
	
	.c-masonry-grid__nav-item:first-child {
		margin-left: 0 !important;
	}
	
	.c-masonry-grid__nav-item:last-child {
		margin-right: 0 !important;
	}
}

.c-masonry-grid__items {
	margin-left: -15px;
	margin-right: -15px;
}

.c-masonry-grid__item {
	width: 100%;
	margin: 0 0 30px;
	padding: 0 15px;
}

.c-masonry-grid .o-sizer, .elementor-widget-prowidgets-masonry-grid.u-grid-columns--mobile1 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns--mobile1 .o-sizer {
	width: 100%;
}

.elementor-widget-prowidgets-masonry-grid.u-grid-columns--mobile2 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns--mobile2 .o-sizer {
	width: 50%;
}

.elementor-widget-prowidgets-masonry-grid.u-grid-columns--mobile3 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns--mobile3 .o-sizer {
	width: 33.3333333333%;
}

.elementor-widget-prowidgets-masonry-grid.u-grid-columns--mobile4 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns--mobile4 .o-sizer {
	width: 25%;
}

@media (min-width:768px) {
	.elementor-widget-prowidgets-masonry-grid.u-grid-columns--tablet1 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns--tablet1 .o-sizer {
		width: 100%;
	}
	
	.elementor-widget-prowidgets-masonry-grid.u-grid-columns--tablet2 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns--tablet2 .o-sizer {
		width: 50%;
	}
	
	.elementor-widget-prowidgets-masonry-grid.u-grid-columns--tablet3 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns--tablet3 .o-sizer {
		width: 33.3333333333%;
	}
	
	.elementor-widget-prowidgets-masonry-grid.u-grid-columns--tablet4 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns--tablet4 .o-sizer {
		width: 25%;
	}
}

@media (min-width:1024px) {
	.elementor-widget-prowidgets-masonry-grid.u-grid-columns-1 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns-1 .o-sizer {
		width: 100%;
	}
	
	.elementor-widget-prowidgets-masonry-grid.u-grid-columns-2 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns-2 .o-sizer {
		width: 50%;
	}
	
	.elementor-widget-prowidgets-masonry-grid.u-grid-columns-3 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns-3 .o-sizer {
		width: 33.3333333333%;
	}
	
	.elementor-widget-prowidgets-masonry-grid.u-grid-columns-4 .c-masonry-grid__item, .elementor-widget-prowidgets-masonry-grid.u-grid-columns-4 .o-sizer {
		width: 25%;
	}
}
