@charset "UTF-8";
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	   -moz-text-size-adjust: 100%;
	    -ms-text-size-adjust: 100%;
	        text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	padding: 0;
    margin: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.6em;
	line-height: 1.6;
	color: #5C6670;
	font-weight: 400;
    position: relative;
}
body.has-active-menu {
	overflow: hidden;
}
.pg-wrapper {
	-webkit-transition: -webkit-transform 0.3s;
	        transition: transform 0.3s;
}
.pg-mask {
	position: fixed;
	z-index: 50;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 0;
	height: 0;
	background-color: #000;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	-webkit-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
	   -moz-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
	     -o-transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
	        transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
}
.pg-mask.is-active {
	width: 100%;
	height: 100%;
	-webkit-transition: opacity 0.3s;
	   -moz-transition: opacity 0.3s;
	     -o-transition: opacity 0.3s;
	        transition: opacity 0.3s;
               opacity: 0.7;
}
.pg-width {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
	
}
.no-overflow {
	overflow:inherit;
}

@media only screen and (max-width: 1024px) {
	.pg-width {
		max-width: 768px;
	}
}
@media only screen and (max-width: 768px) {
	body {
		font-size: 1.4em;
        padding: 0;
	}
}
@media only screen and (max-width: 480px) {
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 20px;
	font-weight: 300;
}
h1 { font-size: 4rem; line-height: 1.2; color: #C1D42F; }
h2 { font-size: 3.4rem; line-height: 1.2; }
h3 { font-size: 2.7rem; line-height: 1.3; }
h4 { font-size: 2.4rem; line-height: 1.4; }
h5 { font-size: 1.9rem; line-height: 1.4; font-weight: bold; margin-bottom: 5px;}
p { margin-top: 0; }
strong { font-weight: 700 !important;}

.text-highlight_green {
	color: #C1D42F;
}
.text-highlight_blue {
	color: #0095A9;
}
.text-highlight_purple {
	color: #575194;
}
.text-highlight_white {
	color: #FFF;
}
.text-center {
	text-align: center;
}
.text-para1 {
	font-size: 1.9rem;
}
.text-right {
	text-align: right;
}
.text-med {
	font-size: 1.4rem;
}
.text-sm {
	font-size: 1.3rem;
}

.text-museo {
    font-family: museo, serif;
}

.bg-wwwart {
    color: #FFF;
    background-image: url(../images/bg-wwwart.svg) !important;
    background-size: cover !important;
    background-repeat: repeat-y;
    background-position: center;
}
.bg-purple {
    color: #FFF;
    background-image: url(../images/bg-purple.svg) !important;
    background-size: cover !important;
    background-repeat: repeat-y;
    background-position: center;
}

@media only screen and (max-width: 768px) {
	h1 { font-size: 2.5rem; line-height: 1.2; color: #C1D42F; }
	h2 { font-size: 3rem; line-height: 1.2; }
	h3 { font-size: 2.1rem; line-height: 1.3; }
	h4 { font-size: 2rem; line-height: 1.6; }
	h5 { font-size: 1.5rem; line-height: 1.6; font-weight: bold;}
}
	.text-para1 {
		font-size: 1.9rem;
	}
	.text-right {
		text-align: left;
	}
@media only screen and (max-width: 480px) {
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a, a:visited {
	text-decoration: none;
	color: #C1D42F;
}
a:hover {
	color: #5C6670;
}

/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.column {
	float: left;
	overflow: hidden;
	padding: 20px 30px 20px 30px;
	  -webkit-box-sizing: border-box;
	     -moz-box-sizing: border-box;
	          box-sizing: border-box;
}
.column-feature {
	float: left;
	background: #FFF;
	overflow: hidden;
	margin: 0 1% 30px 1%;
	padding: 20px 40px 20px 40px;
	border-radius: 10px;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	   -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	        box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	  -webkit-box-sizing: border-box;
	     -moz-box-sizing: border-box;
	          box-sizing: border-box;
}
.one.column 		{ width: 8.3333333%; }
.two.column 		{ width: 16.6666667%; }
.three.column 		{ width: 25%; }
.four.column 		{ width: 33.3333333%; }
.five.column 		{ width: 41.6666667%; }
.six.column 		{ width: 50%; }
.seven.column 		{ width: 58.3333333%; }
.eight.column 		{ width: 66.6666667%; }
.nine.column 		{ width: 75%; }
.ten.column 		{ width: 83.3333333%; }
.eleven.column 		{ width: 91.6666667%; }
.twelve.column 		{ width: 100%; }

.one.column-feature		{ width: 6.3333333%; }
.two.column-feature 		{ width: 14.6666667%; }
.three.column-feature 		{ width: 23%; }
.four.column-feature 		{ width: 31.3333333%; }
.five.column-feature 		{ width: 39.6666667%; }
.six.column-feature 		{ width: 48%; }
.seven.column-feature 		{ width: 56.3333333%; }
.eight.column-feature 		{ width: 64.6666667%; }
.nine.column-feature 		{ width: 73%; }
.ten.column-feature 		{ width: 81.3333333%; }
.eleven.column-feature 		{ width: 91.6666667%; }
.twelve.column-feature 		{ width: 98%; }

@media only screen and (max-width: 768px)  {
	.column {
		width: 100% !important;
        max-width: 550px;
        margin: 0 auto;
        float: none;
	}
	.column-feature {
		width: 80% !important;
		margin: 0 10% 30px 10%;
		padding: 20px 20px 20px 20px;
	}

}

/* Flexbox
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.flex { display: flex }
.inline-flex { display: inline-flex }
.flex-auto { flex: 1 1 auto; min-width: 0;  min-height: 0 }
.flex-none { flex: none }
.flex-column { flex-direction: column }
.flex-row { flex-direction: row }
.flex-wrap { flex-wrap: wrap }
.flex-nowrap { flex-wrap: nowrap }
.flex-wrap-reverse { flex-wrap: wrap-reverse }
.flex-column-reverse { flex-direction: column-reverse }
.flex-row-reverse { flex-direction: row-reverse }
.items-start { align-items: flex-start }
.items-end { align-items: flex-end }
.items-center { align-items: center }
.items-baseline { align-items: baseline }
.items-stretch { align-items: stretch }
.self-start { align-self: flex-start }
.self-end { align-self: flex-end }
.self-center { align-self: center }
.self-baseline { align-self: baseline }
.self-stretch { align-self: stretch }
.justify-start { justify-content: flex-start }
.justify-end { justify-content: flex-end }
.justify-center { justify-content: center }
.justify-between { justify-content: space-between }
.justify-around { justify-content: space-around }
.content-start { align-content: flex-start }
.content-end { align-content: flex-end }
.content-center { align-content: center }
.content-between { align-content: space-between }
.content-around { align-content: space-around }
.content-stretch { align-content: stretch }
.order-0 { order: 0 }
.order-1 { order: 1 }
.order-2 { order: 2 }
.order-3 { order: 3 }
.order-4 { order: 4 }
.order-5 { order: 5 }
.order-6 { order: 6 }
.order-7 { order: 7 }
.order-8 { order: 8 }
.order-last { order: 99999 }
.flex-grow-0 { flex-grow: 0 }
.flex-grow-1 { flex-grow: 1 }
.flex-shrink-0 { flex-shrink: 0 }
.flex-shrink-1 { flex-shrink: 1 }

/* Structure
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header.main {
	position: absolute;
	top: 100px;
	z-index: 0;
	width: 100%;
}
header.internal {
	position: relative;
	top: 0;
	margin-top: 40px;
	z-index: 100;
	width: 100%;
	background: #FFF;
	height: 350px;
	background-image:  url(../images/texture.png);
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
main {
	width: 100%;
	max-width: 1180px;
	overflow: hidden;
	clear: both;
	margin: 0 auto;
	padding: 80px 0;
}
section {
	overflow: hidden;
	clear: both;
	position: relative;
}
.banner-internal {
	position: relative;
	height: auto;
	overflow: hidden;
	padding-top: 200px;
	padding-bottom: 40px;
	background-image:  url(../images/texture.png);
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
.banner-internal .pg-width {
	border-top: solid 1px rgba(255,255,255,0.5);
}
.banner-internal .column.five {
	padding-top: 60px;
}
.banner-internal h3 {
	color: #FFF;
	font-weight: bold;
	font-size: 4rem;
}
.banner-internal-quote {
	position: relative;
	width: 100%;
	max-width: 768px;
	float: right;
	margin: 0;
	font-size: 1.6rem;
	color: #FFF;
	line-height: 1.3;
	text-align: right;
	padding-top: 20px;
}
.banner-internal-quote cite {
	font-size: 1.4rem;
	font-weight: bold;
}
section.subtle {
	background-color: #f3f3f3;
	border-top: solid 1px #FFF;
}
section.bold {
	background-color: #C1D42F;
	text-shadow: 0 1px 1px rgba(0,0,0,0.4);
	background-image: url(../images/texture.png);
	background-position: top center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	color: #FFF;
}
.cta {
	background: #f3f3f3;
	border: solid 1px #e2e2e2;
	border-radius: 10px;
	padding: 20px 30px 5px 30px;
}
.signup {
    background-image: url(../images/texture.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFF;
    padding: 40px 30px;
    border: solid 1px #FFF;
}
footer.main {
	border-top: solid 1px #E6E6E6;
	overflow: hidden;
	clear: both;
	color: #FFF;
	background-image:  url(../images/texture.png);
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	padding: 60px 0 0 0;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
}
.footer-width {
	margin: 0 6%;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 768px) {
	header.internal {
		margin-top: 0;
		z-index: 100;
	}
	.hero-quote {
		display: none;
		visibility: hidden;
	}
	.banner-internal {
		padding-top: 100px;
		padding-bottom: 40px;
	}
	.banner-internal .column.five {
		padding-top: 30px;
	}
	.banner-internal h3 {
		color: #FFF;
		font-weight: bold;
		font-size: 3.2rem;
	}
	.banner-internal-quote {
		font-size: 1.6rem;
	}
	.banner-internal-quote cite {
		font-size: 1.5rem;
		font-weight: bold;
	}
}
@media only screen and (max-width: 480px) {
	.banner-internal h3 {
		font-size: 2.7rem;
	}
	.banner-internal-quote {
		font-size: 1.3rem;
	}
	.banner-internal-quote cite {
		font-size: 1.2rem;
		font-weight: bold;
	}
}

/* Hero Slider
/* ------------------------------------------------------------------ */
#hero {
	background-color: #FFF;
	height: 740px;
	width: 100%;
	position: relative;
}

#hero-slider {
	position: relative;
}
#hero-slider .slides {
	width: 100%;
	margin: 0 auto;
}
#hero-slider .slides li {
	height: 740px;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
}
#hero-slider .slides .flex-caption {
	width: 90%;
	max-width: 1024px;
	margin: 0 auto;
	text-align: left;
	position: relative;
	top: 250px;
}
#hero-slider .slides .flex-caption h1 {
	font-size: 5rem;
	line-height: 1;
	color: #FFF;
	position: relative;
	font-weight: 700;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
}
#hero-slider .slides .flex-caption h3 {
	font-size: 2.5rem;
	font-weight: 600;
	color: #FFF;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
	display: inline-block;
	background: rgba(255,255,255,0.2);
	border-radius: 50px;
	padding: 7px 30px;
	filter: alpha(opacity=0);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	opacity: 0;
	zoom: 1;
}
.hero-quote {
	text-align: right;
	color: #FFF;
	width: 100%;
	max-width: 550px;
	position: absolute;
	top: 290px;
	font-size: 1.4rem;
	right: 0;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hero-quote-image {
	width: 50%;
	float: left;
	text-align: left;
}
.hero-quote-image img {
	width: 120px !important;
	height: auto;
	display: inline-block !important;
}
.hero-quote cite {
	font-style: normal;
	font-size: 1.3rem;
}

@media only screen and (max-width: 768px) {
	#hero {
		height: 500px;
	}
	#hero-slider .slides .flex-caption {
		top: 170px;
	}
	#hero-slider .slides li {
		height: 500px;
	}
	#hero-slider .slides .flex-caption h1 {
		font-size: 3rem;
	}
	#hero-slider .slides .flex-caption h3 {
		font-size: 1.6rem;
	}
}
@media only screen and (max-width: 480px) {
	#hero-slider .slides .flex-caption h1 {
		font-size: 2.5rem;
	}
	#hero-slider .slides .flex-caption h3 {
		font-size: 1.3rem;
		margin: 0 30px 0 0;
	}
}

/* for oldIE - IE9 
-------------------------*/
.oldie #hero-slider .slides .flex-caption h1 {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}
.oldie #hero-slider .slides .flex-caption h3 {
	filter: alpha(opacity=100);
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	opacity: 1;
	zoom: 1;
}

/* BUTTONS
--------------------------------------------------*/
a.btn-hero-slider {
	display: block;
	padding: 10px 0;
	width: 150px;
	text-align: center;
	margin-top: 15px;
	background-color: #0095A9;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #FFF;
	border: solid 1px rgba(255,255,255,0.6);
	border-radius: 5px;
	text-transform: uppercase;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	   -moz-transition: background-color 0.2s;
	        transition: background-color 0.2s;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 768px) {
	a.btn-hero-slider {
		font-size: 1.1rem;
		padding: 10px 0;
		width: 115px;
	}
}
@media only screen and (max-width: 480px) {
}

/* NAV CONTROL 
--------------------------------------------------*/
#hero .flex-control-nav {
	width: 20px;
	display: block;
	position: absolute;
	right: 20px;
	top: 300px;
	z-index: 90;
	text-align: center;
}
#hero .flex-control-nav li {
	margin: 0 6px 10px 6px;
	display: block;
	zoom: 1;
}
#hero .flex-direction-nav {
	text-align: left;
	display: inline-block;
	position: relative;
	bottom: 0;
	left: 30px;
	z-index: 500;
	background: #FFF;
	width: 100px;
}
#hero .flex-direction-nav a {
	color: #000;
}
#hero .flex-control-paging li a {
	width: 10px;
	height: 10px;
	display: block;
	cursor: pointer;
	text-indent: -9999px;
	border-radius: 50%;
	background: #FFFFFF;
}
#hero .flex-control-paging li a:hover {
	background: #c8c8c8;
}
#hero .flex-control-paging li a.flex-active {
	background: #C1D42F;
	cursor: default;
}

@media only screen and (max-width: 768px) {
	#hero .flex-control-nav {
		top: 180px;
	}
}
@media only screen and (max-width: 480px) {
}


/* Slider
/* ------------------------------------------------------------------ */
.slider2 ul {
	list-style: none;
	margin: 0;
	height: 380px;
	border-radius: 10px;
}
.slider2 ul li {
	height: 100%;
	border-radius: 10px;
}
.slider2 ul li img {
	width: 100%;
	height: auto;
	display: block !important;
	border-radius: 10px;
}

@media only screen and (max-width:1280px) {
	.slider2 ul {
	}
}
@media only screen and (max-width:768px) {
	.slider2 ul {
		height: 405px;
	}
}
@media only screen and (max-width: 480px) {
	.slider2 ul {
		height: 245px;
	}
}


/* Navigation
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.trigger, .trigger-close {
	display: none;
}
input[type=checkbox] {
	display: none;
}
input[type=checkbox]:checked ~ #menu {
	display: block;
}

/* Nav - Main
––––––––––––––––––––––––––– */
nav.main .pg-width {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
	position: relative;
	overflow: inherit;
}
nav.main {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 100;
	width: 100%;
	height: 40px;
	border-bottom: solid 1px #FFF;
	background: rgb(193,212,47);
	background: -webkit-linear-gradient(left, rgba(193,212,47,1) 0%, rgba(0,149,169,1) 100%);
	background: -o-linear-gradient(left, rgba(193,212,47,1) 0%, rgba(0,149,169,1) 100%);
	background: linear-gradient(to right, rgba(193,212,47,1) 0%, rgba(0,149,169,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c1d42f', endColorstr='#0095a9',GradientType=1 );
}
nav.main ul {
	position: absolute;
	margin: 0 auto;
	max-width: 768px;
	right: 0;
}
nav.main ul li {
	float: left;
	font-weight: 400;
	font-size: 1.3rem;
	border-left: solid 1px rgba(255,255,255,0.5);
}
nav.main ul li a {
	display: block;
	padding: 10px 25px;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
	color: #FFF;
	font-weight: 700;
}
nav.main ul li a:hover {
	background: rgba(255,255,255,0.2)
}
.nav-phone {
    background-image: url(../images/icons/icon-phone_white.png);
    background-size: 20px 20px;
    background-position: left 10px center;
    background-repeat: no-repeat;
    padding-left: 10px;
}

/* Nav - Services
––––––––––––––––––––––––––– */
.mega-menu {
	position: absolute;
	top: 80px;
	right: 0;
	z-index: 40;
}
.mega-menu ul {
	margin: 0;
	padding: 0;
}
.mega-menu > ul {
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
}
.mega-menu > ul > li {
	display: block;
	float: left;
	font-weight: 600;
	font-size: 1.8rem;
}
.mega-menu > ul > li > a {
	color: #FFF;
	display: block;
	line-height: 70px;
	text-align: center;
	padding: 0 20px;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}
.mega-menu > ul > li > a:hover {
	color: rgba(255,255,255, 0.8);
	font-weight: 700;
}


header.internal .mega-menu {
	position: absolute;
	top: 20px;
	right: 0;
}
header.internal .mega-menu > ul > li > a {
}


.mega-menu > ul > li.mega-menu--open a {
	color: #FFF;
	background-image: url(../images/icons/icon-nav-active.png);
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 15px 15px;
	font-weight: 700;
}
.mega-menu .menu-mega--sub {
	display: none;
	position: absolute;
	z-index: 100;
	background: #FFF;
	border-radius: 10px;
	border: solid 1px #FFF;
	width: 768px;
	right: 0;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
	   -moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
	        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.25);
}
.mega-menu--open .menu-mega--sub {
	display: block;
}
.mega-menu-description {
	width: 30%;
	float: left;
	padding: 40px;
	color: #5C6670;
	font-weight: 400;
	font-size: 1.3rem;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.mega-menu-description h3 {
	color: #C1D42F;
	font-size: 3rem;
}
.mega-menu h4 {
	color: #C1D42F;
	font-size: 2.2rem;
	font-weight: 600;
}
.mega-menu > ul > li ul {
	max-width: 1024px;
	width: 35%;
	float: left;
	margin: 30px auto;
	padding: 10px 30px;
	overflow: hidden;
}
.mega-menu > ul > li ul li {
	float: left;
	width: 100%;
	line-height: 1.4;
	text-align: left;
	background: none;
	font-size: 1.4rem;
	margin: 0;
}
.mega-menu > ul > li ul li a {
	display: block;
	padding: 7px 30px 7px 0;
	font-weight: 600 !important;
	color: #5C6670 !important;
	background-image: url(../images/icons/icon-arrow-right-circle.png) !important;
	background-repeat: no-repeat !important;
	background-position: right center !important;
	background-size: 10px 10px;
	border-bottom: solid 1px rgba(92,102,112,0.2);
}
.mega-menu > ul > li ul li a:hover {
	color: #FFF;
	font-weight: 700 !important;
	text-decoration: underline;
}
input[type=checkbox] {
	display: none;
}
input[type=checkbox]:checked ~ #menu {
	display: block;
}

@media only screen and (max-width: 1024px) {
	.mega-menu {
		top: 60px;
	}
	.mega-menu > ul {
		max-width: 768px;
	}
	.mega-menu > ul > li {
		font-size: 1.6rem;
	}
	.mega-menu > ul > li > a {
		padding: 0 15px;
	}
}

@media only screen and (max-width:768px) {
	nav.menu-wrapper {
		position: fixed;
		z-index: 200;
		background-image:  url(../images/texture.png);
		background-position: center center;
		background-repeat: no-repeat;
		-webkit-background-size: cover;
		   -moz-background-size: cover;
			 -o-background-size: cover;
				background-size: cover;
		-webkit-transition: transform 0.3s;
		   -moz-transition: transform 0.3s;
		     -o-transition: transform 0.3s;
				transition: transform 0.3s;
	}
	nav.menu-slide {
		height: 100%;
		width: 100%;
		top: 0;
		left: 0;
		overflow-y: scroll;
		-webkit-transform: translateX(-100%);
			-ms-transform: translateX(-100%);
				transform: translateX(-100%);
	}
	nav.menu-slide.is-active {
		-webkit-transform: translateX(0);
			-ms-transform: translateX(0);
				transform: translateX(0);
	}
	nav.main {
		display: none;
	}
	.mega-menu {
		position: relative;
		top: 0;
		right: 0;
		width: 80%;
		margin: 0 auto;
	}
	.mega-menu ul {
		margin: 0;
		padding: 0;
	}
	.mega-menu > ul {
		margin: 30px auto;
	}
	.mega-menu > ul > li {
		display: block;
		font-size: 1.6rem;
		width: 100%;
	}
	.mega-menu > ul > li > a {
		line-height: 0;
		padding: 15px;
		text-align: left;
		background-image: url(../images/icons/icon-arrow-right_white.png);
		background-position: right center;
		background-repeat: no-repeat;
		background-size: 10px 10px;
	}
	.mega-menu > ul > li.mega-menu--open a {
		color: #FFF;
		background-image: none;
	}
	.mega-menu .menu-mega--sub {
		position: relative;
		overflow: hidden;
		background-color: rgba(255,255,255,0.15);
		border-radius: none;
		border: none;
		width: 80%;
		padding: 15px 20px 20px 20px;
		margin: 15px auto;
		box-shadow: none;
	}
	.mega-menu--open .menu-mega--sub {
		display: block;
	}
	.mega-menu-description {
		padding: 0;
	}
	.mega-menu-description h3 {
		display: none;
	}
	.mega-menu h4 {
		font-size: 1.6rem;
		color: #FFF;
		margin-bottom: 10px;
	}
	.mega-menu > ul > li ul {
		width: 100%;
		margin: 0 auto 0 auto;
		padding: 10px;
	}
	.mega-menu > ul > li ul li {
		width: 100%;
		text-align: left;
		font-size: 1.3rem;
		margin: 0;
	}
	.mega-menu > ul > li ul li a {
		padding: 7px 30px 7px 0;
		color: #FFF !important;
		font-weight: 400 !important;
		background-image: url(../images/icons/icon-arrow-right_white.png) !important;
		background-size: 10px 10px !important;
	}
	.mega-menu > ul > li ul li a:hover {
		font-weight: 400 !important;
	}
	.trigger {
		position: absolute;
		width: 50px;
		height: 50px;
		display: block;
		top: 25px;
		right: 15px;
		background: url(../images/icons/icon-menu.png) center center no-repeat;
		background-size: 30px 30px;
		border: none;
		box-shadow: none;
		border-radius: none;
		cursor: pointer;
		z-index: 50;
		-webkit-appearance: none;
		   -moz-appearance: none;
				appearance: none;
	}
	.trigger:focus {
		outline: none;
	}
	.trigger-close {
		position: absolute;
		width: 50px;
		height: 50px;
		display: block;
		top: 0;
		right: 0;
		background: url(../images/icons/icon-close.png) center center no-repeat;
		background-size: 15px 15px;
		border: none;
		box-shadow: none;
		border-radius: none;
		cursor: pointer;
		-webkit-appearance: none;
		   -moz-appearance: none;
				appearance: none;
	}
	.trigger-close:focus {
		outline: none;
	}
}


/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
li {
	margin-bottom: 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Bullets
–––––––––––––––––––––––––– */
ul.bullets {
	list-style: disc;
	margin-bottom: 20px;
}
ul.bullets li {
	padding: 0 0 0 10px;
	margin: 0 0 0 20px;
}
ul.bullets-number {
	list-style: decimal;
	margin-bottom: 20px;
}
ul.bullets-number li {
	padding: 0 0 0 10px;
	margin: 0 0 0 20px;
}

/* Feature Items
–––––––––––––––––––––––––– */
section.featitems {
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 100px 0 20px 0;
    display: flex;
    flex-wrap: wrap;
}
ul.featitems {
	position: relative;
	bottom: 0;
	z-index: 50;
	width: 100%;
	max-width: 1024px;
	margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
ul.featitems li {
	width: 23%;
	margin: 0 1% 20px 1%;
	float: left;
	color: #5C6670;
	font-size: 1.4rem;
	line-height: 1.3;
	font-weight: 400;
	border: solid 2px #FFF;
	background-color: #FFF;
	background-position: top 15px left 15px;
	background-size: 65px 65px;
	background-repeat: no-repeat;
	border-radius: 15px;
	-webkit-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.125);
	   -moz-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.125);
	        box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.125);
}
ul.featitems li:hover {
    transition: 0.5s;
	background-color: rgba(92,102,112,0.1);
    -webkit-transform: scale(1.05);
	   -moz-transform: scale(1.05);
	     -o-transform: scale(1.05);
	        transform: scale(1.05);
}
ul.featitems li.item1 {
	background-image: url(../images/icons/featitems/featitems-website.png);
}
ul.featitems li.item2 {
	background-image: url(../images/icons/featitems/featitems-graphic.png);
}
ul.featitems li.item3 {
	background-image: url(../images/icons/featitems/featitems-work.png);
}
ul.featitems li.item4 {
	background-image: url(../images/icons/featitems/featitems-casestudy.png);
}
ul.featitems li a {
	color: #5C6670;
	display: block;
	padding: 90px 20px 15px 20px;
}
ul.featitems li.item5 {
    width: 100%;
	background-image: url(../images/bg-purple.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    color: #FFF;
    text-align: center;
}
ul.featitems li.item5 a {
    padding: 20px;
    color: #FFF;
}
ul.featitems li h3 {
	font-size: 2.3rem;
	font-weight: 400;
	margin-bottom: 15px;
    display: block;
}
ul.featitems li h4 {
	font-size: 1.4rem;
    background-color: #0096A9;
    display: inline-block;
    border-radius: 50px;
    border: solid 1px #FFF;
	font-weight: 400;
	margin-bottom: 10px;
    padding: 5px 20px;
}
ul.featitems li p {
    margin-bottom: 8px;
}

@media only screen and (max-width: 1024px) {
	ul.featitems {
		max-width: 768px;
	}
	ul.featitems li {
		margin: 0 1%;
		width: 48%;
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 768px) {
	ul.featitems {
		max-width: 480px;
		width: 90%;
	}
	ul.featitems li {
		width: 100%;
		margin: 0 0 20px 0;
		height: auto;
		background-position: left 15px center;
		background-size: 65px 65px;
	}
	ul.featitems li a {
		color: #5C6670;
		display: block;
		padding: 25px 20px 15px 100px;
	}
}
@media only screen and (max-width: 480px) {
	section.featitems {
		width: 90%;
		margin: -50px auto -50px auto;
		position: relative;
		overflow: hidden;
		padding: 0px 0 20px 0;
	}
	 ul.featitems {
		max-width: 100%;
	}
    ul.featitems li {
		max-width: 100%;
        font-size: 1.3rem;
	}
}

/* Feature Items
–––––––––––––––––––––––––– */
ul.grid-3col-feature {
	overflow: hidden;
	padding: 20px 0;
}
ul.grid-3col-feature li {
	width: 31.333%;
	margin: 0 1%;
	float: left;
	border-top: solid 3px #C1D42F;
	font-size: 1.4rem;
	text-align: center;
	border-radius: 5px;
	padding: 30px 30px 20px 30px;
	background-size: 100px 100px;
	background-position: left -20px center;
	background-repeat: no-repeat;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	   -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	        box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
}
ul.grid-3col-feature li:hover {
	margin-top: -3px;
	-webkit-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.125);
	   -moz-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.125);
	        box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.125);
}
ul.grid-3col-feature li a {
	color: #C1D42F;
	font-size: 2.2rem;
}
ul.grid-3col-feature li a:hover {
	color: #5C6670;
}

@media only screen and (max-width: 768px) {
	ul.grid-3col-feature {
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
		padding: 20px 30px;
		-webkit-box-sizing: border-box;
	       -moz-box-sizing: border-box;
	            box-sizing: border-box;
	}
	ul.grid-3col-feature li {
		width: 100%;
		margin: 0 0 20px 0;
	}
}
@media only screen and (max-width: 480px) {
}


/* Grid Check
–––––––––––––––––––––––––– */
ul.grid-check {
	position: relative;
	padding: 20px 0;
	margin-bottom: 20px;
	overflow: hidden;
}
ul.grid-check > li {
	width: 50%;
	float: left;
	padding: 0 20px 20px 40px;
	background-image: url(../images/icons/icon-check.png);
	background-size: 30px 30px;
	background-position: top left;
	background-repeat: no-repeat;
	min-height: 120px;
	font-size: 1.7rem;
}
ul.grid-check > li:nth-child(2n+1) {
    clear: left;
}

@media only screen and (max-width: 768px) {
	ul.grid-check {
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
	}
	ul.grid-check li {
		width: 100%;
		min-height: auto;
		font-size: 1.5rem;
	}
}
@media only screen and (max-width: 480px) {
}

/* Grid Icon
–––––––––––––––––––––––––– */
ul.grid-icon {
	position: relative;
	padding: 20px 0;
	overflow: hidden;
}
ul.grid-icon li {
	width: 100%;
	float: left;
	padding: 0 20px 0 40px;
	background-size: 30px 30px;
	background-position: top left;
	background-repeat: no-repeat;
	font-size: 1.6rem;
	min-height: 30px;
    margin-bottom: 15px;
}

@media only screen and (max-width: 768px) {
	ul.grid-icon li {
		font-size: 1.4rem;
	}
}
@media only screen and (max-width: 480px) {
}

/* News
–––––––––––––––––––––––––– */
ul.news {
    overflow: hidden;
    padding: 10px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.news > li {
    width: 32%;
    float: left;
    margin: 0 0 40px 0;
    border-radius: 15px;
    padding: 20% 30px 30px 30px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    box-shadow: 0 10px 15px rgba(0,0,0,0.07);
}
ul.news > li:nth-child(1) {
    width: 66%;
    padding-top: 38%;
}
ul.news > li:nth-child(2) {
    background-image: url(../images/texture.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 30px;
    color: #FFF;
    display: flex;
    align-items: center;
}
ul.news li a.btn-secondary {
    position: absolute;
    bottom: 30px;
}
ul.news li:nth-child(2n+1) {
    clear: left;
}
ul.news li h5 {
    color: #C1D42F;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 900;
}
ul.news li h4 {
    color: #C1D42F;
    margin: 0 0 15px 0;
    font-size: 2.5rem;
    line-height: 1.3;
}
ul.news li p {
    font-size: 1.4rem;
}
ul.news li img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border: solid 1px #EEE;
    border-radius: 8px;
}

@media only screen and (max-width: 1024px) {
    ul.news > li {
        width: 48%;
        padding: 30% 30px 30px 30px;
    }
    ul.news > li:nth-child(1) {
        width: 48%;
        padding-top: 30%;
    }
    ul.news > li:nth-child(2) {
        width: 48%;
    }
}

@media only screen and (max-width: 768px) {
    ul.news > li {
        width: 100%;
        padding: 60% 30px 30px 30px;
    }
    ul.news > li:nth-child(1) {
        width: 100%;
        padding-top: 60%;
    }
    ul.news > li:nth-child(2) {
        width: 100%;
    }
}


/* Partner
–––––––––––––––––––––––––– */
ul.partner {
	width: 100%;
	max-width: 768px;
	display: table;
	margin: 30px auto;
	overflow: hidden;
}
ul.partner li {
	width: 25%;
    display: inline-block;
}
ul.partner li img {
	width: 90%;
	margin: 0 auto;
	height: auto;
	display: block;
}

@media only screen and (max-width: 768px) {
    ul.partner {
        max-width: 300px;
    }
	ul.partner li {
		width: 100%;
	}
	ul.partner li img {
		width: 70%;
	}
}

@media only screen and (max-width: 480px) {
	ul.partner li {
		width: 100%;
	}
	ul.partner li img {
		width: 50%;
	}
}

/* Case Studies
–––––––––––––––––––––––––– */
ul.case-study {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
ul.case-study li {
    width: 33.333%;
    float: left;
    padding: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}
ul.case-study li h4 {
    font-size: 2rem;
    font-family: museo, serif;
    font-weight: 500;
    color: #C1D42F
}
ul.case-study li img {
   width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 10px;
}
ul.case-study li a.btn {
    font-weight: bold;
    background: #C1D42F;
    color: #FFF;
    display: inline-block;
    padding: 5px 20px;
}

@media only screen and (max-width: 768px) {
    ul.case-study {
        overflow: hidden;
        max-width: 480px;
        margin: 0 auto;
    }
    ul.case-study li {
        width: 100%;
    }
}

/* Sitemap
–––––––––––––––––––––––––– */
ul.sitemap {
    overflow: hidden;
    margin-bottom: 10px;
    width: 25%;
}
ul.sitemap > li {
    font-size: 1.1rem;
    text-align: left;
    margin: 0 !important;
}
ul.sitemap > li h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}
ul.sitemap > li a {
    color: #FFF;
    display: inline-block;
    border: none;
    padding: 2px 0;
}
ul.sitemap li a:hover {
    opacity: 0.5;
    transition: 0.5s;
}

@media only screen and (max-width: 768px) {
    ul.sitemap {
        width: 50%;
        margin-bottom: 20px;
    }
}

/* Contact Footer
–––––––––––––––––––––––––– */
ul.contact-footer {
    overflow: hidden;
    display: table;
    margin: 0 auto;
    text-align: center;
}
ul.contact-footer li {
    font-size: 1.1rem;
    float: left;
    padding: 5px 10px;
    font-weight: 400;
    text-align: center;
    margin: 0;
}
ul.contact-footer li a {
    border: none;
    color: #FFF;
}
ul.contact-footer li a:hover, a.website:hover {
    opacity: 0.5;
    transition: 0.5s;
}
.socials {
    text-align: center;
}
.socials img {
    width: 40px;
    height: 40px;
    
}
a.website {
    font-weight: bold;
    color: #FFF;
    border: none;
    display: inline-block;
    margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
    ul.contact-footer {
        display: block;
        border-top: dotted 5px #FFF;
        padding-top: 20px;
    }
    ul.contact-footer li {
        width: 100%;
        text-align: left;
        padding: 3px 0;
    }
    .socials {
        text-align: left;
    }
}

/* Social
–––––––––––––––––––––––––– */
ul.social {
	overflow: hidden;
}
ul.social li {
	float: left;
	width: 40px;
	height: 40px;
}
ul.social li img {
	width: 100%;
	height: auto;
	display: block;
}
ul.social li img:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}

@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 480px) {
}

/* Accordian
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.accordian {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 0;
}
.accordian header {
	display: block;
	margin: 0;
	padding: 20px 40px 20px 20px;
	border-bottom: 1px solid #DDD;
	cursor: pointer;
	background-image: url(../images/icons/icon-accordian-arrow.png);
	background-size: 15px 15px;
	background-position: right 20px center;
	background-repeat: no-repeat;
}
.accordian header:hover {
	background-color: rgba(92,102,112,0.05);
	border-radius: 10px;
}
.accordian section {
	display: none;
	margin: 20px 0;
	padding: 30px;
	border-radius: 10px;
	background: rgba(92,102,112,0.05);
	text-align: left;
	font-size: 1.4rem;
}
.accordian section.active {
	display: block;
}

@media only screen and (max-width: 480px) {
	.accordian section {
		padding: 20px;
	}
}

/* Tabs
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.tab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
}
.tabs {
	display: table;
	position: relative;
	margin: 0;
	width: 100%;
}
.tabs li {
	float: left;
	width: 23%;
	margin: 0 1%;
	text-align: center;
	line-height: 1.2;
	overflow: hidden;
	padding: 0;
	position: relative;
	font-size: 1.8rem;
	border-radius: 10px;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	   -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	        box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
}
.tabs li img {
	width: 60%;
	margin: 0 auto 15px auto;
	display: block;
	border-radius: 100px;
}
.tabs a {
	background-color: #FFF;
	color: #888;
	font-weight: 500;
	display: block;
	letter-spacing: 0;
	outline: none;
	padding: 20px 20px 20px 20px;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	border-bottom: 2px solid #C1D42F;
}
.tabs_item {
	display: none;
	padding: 20px;
	font-size: 1.4rem;
	border: solid 1px #E6E6E6;
	overflow: hidden;
	border-radius: 10px;
	margin: 30px 1%;
}
.tabs_item h3 {
	color: #C1D42F;
	font-size: 3rem;
	font-weight: 400;
	margin: 0 0 5px 0;
}
.tabs_item a {
	color: rgba(92,102,112,0.6);
	margin: 5px 0 0 0;
	display: inline-block;
}
.tabs_item a:hover {
	color: #C1D42F;
}
.tabs_item:first-child {
	display: block;
}
.current a {
	color: #fff;
	background: #C1D42F;
}

@media only screen and (max-width: 768px) {
	.tabs li {
		width: 48%;
		margin-bottom: 20px;
		font-size: 1.5rem;
	}
	.tabs li img {
		display: none;
	}
	.tabs a {
		padding: 10px 20px 10px 20px;
	}
}


/* Packages
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.col3 {
	width: 33.333%;
}
.col4 {
	width: 25%;
}
.col1 {
	width: 100%;
}
.packages {
	float: left;
	z-index: 1;
	position: relative;
	background: #FFF;
	border-radius: 10px;
}
.packages.item1 {
	margin-left: -1%;
	background: #FFF;
	border-radius: 10px;
	margin-top: 0;
}
.packages.item2 {
	margin-left: -1%;
	margin-top: 0;
	border-radius: 10px;
}
.packages.item3 {
	margin-left: -1%;
	background: rgb(193,212,47); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(193,212,47,1) 0%, rgba(0,149,169,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(193,212,47,1) 0%,rgba(0,149,169,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(193,212,47,1) 0%,rgba(0,149,169,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c1d42f', endColorstr='#0095a9',GradientType=0 ); /* IE6-9 */
	border-radius: 10px;
	margin-top: 0;
	z-index: 10;
	color: #FFF;
}
.packages.item4 {
	margin-left: -1%;
	background: #FFF;
	border-radius: 10px;
	margin-top: 0;
}
li.packages-feature {
	color: #FFF;
	background: rgb(193,212,47); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(193,212,47,1) 0%, rgba(0,149,169,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(193,212,47,1) 0%,rgba(0,149,169,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(193,212,47,1) 0%,rgba(0,149,169,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c1d42f', endColorstr='#0095a9',GradientType=0 ); /* IE6-9 */
}
.packages ul {
	overflow: hidden;
	border-radius: 10px;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	   -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	        box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
}
.packages li {
	width: 100%;
	border-bottom: solid 1px #f3f3f3;
	padding: 15px;
	font-size: 1.3rem;
	margin-bottom: 0;
	min-height: 50px;
}
.packages li:last-child {
	border-bottom: none;
}
.packages li.header {
	border-bottom: none;
	padding: 30px 20px 10px 20px;
}
.packages li.footer {
	font-size: 3.5rem;
	line-height: 1;
	padding: 20px 40px 35px 40px;
}
.packages li img {
	width: 60px;
    display: inline-block !important;
    margin: 20px auto !important;
}
.packages-heading {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 1.5rem;
    text-align: center;
}
.packages h2 {
	margin-bottom: 0;
}

/* Packages Grid
––––––––––––––––––––––––––––– */
ul.packages-grid {
    display: flex;
  flex-wrap: wrap;
}
ul.packages-grid > li {
    width: 46%;
    margin: 0 2% 80px 2%;
    float: left;
    border-radius: 20px;
    padding: 30px 60px;
    text-align: center;
    background-image: url(../images/texture.png);
    background-size: auto 350px;
    background-position: top center;
    background-repeat: no-repeat;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	   -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	        box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
}
ul.packages-grid li h2 {
    color: #FFF;
}
ul.packages-grid li img.i-heading {
    margin-top: -60px;
    width: 100px;
    height: auto; 
}
ul.list-table {
    list-style: none;
    margin: 40px 0 20px 0;
}
ul.list-table li {
    border-bottom: solid 1px #DDD;
    padding: 10px 10px 15px 50px;
    line-height: 1.3;
    text-align: left;
    background-image: url(../images/icons/icon-check.png);
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: left center;
}

@media only screen and (max-width: 1024px) {
    ul.packages-grid > li {
        padding: 30px 30px;
    }
}
@media only screen and (max-width: 768px) {
	.col4 {
		width: 50%;
		margin-bottom: 30px;
    }
    ul.packages-grid {
        display: block;
    }
    ul.packages-grid > li {
        width: 100%;
        margin: 0 0 80px 0;
    }
}
	
@media only screen and (max-width: 550px) {
	.col3 {
		width: 100%;
		display: block !important;
		float: none !important;
		max-width: 320px;
		margin: 0 auto 40px auto !important;
}
	.col4 {
		width: 100%;
		display: block;
		float: none;
		max-width: 320px;
		margin: 0 auto 40px auto !important;
}
}

/* Call to Action
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cta-feature {
	background: rgb(193,212,47);
    background: linear-gradient(80deg, rgba(193,212,47,1) 0%, rgba(193,212,70,1) 50%);
    border-radius: 15px;
    margin: 20px;
    padding: 50px 50% 50px 50px;
    color: #FFF;
    position: relative;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.15);
	   -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.15);
	        box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.15);
    -webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.cta-feature h2 {
    font-weight: 900;
    font-size: 3rem;
}
.cta-feature h4 {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.7rem;
}
.cta-feature img {
    width: 40%;
    height: auto;
    position: absolute;
    top: -30px;
    right: 50px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.15);
	   -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.15);
	        box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.15);
}

@media only screen and (max-width: 900px) {
    .cta-feature {
        margin: 20px;
        padding: 50px 50px 0 50px;
    }
.cta-feature img {
        width: 100%;
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: -40px;
        margin-top: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .cta-feature {
        margin: 0 0 30px 0;
        padding: 40px 40px 0 40px;
    }
.cta-feature img {
        width: 100%;
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: -40px;
        margin-top: 30px;
    }
}


/* Slideshow
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0 0 20px 0;
    border-radius: 10px;
    background: #FFF;
}
.rslides.shadow {
    -webkit-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.15);
	   -moz-box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.15);
	        box-shadow: 0px 10px 15px 0px rgba(0,0,0,0.15);
}
.rslides > li {
    -webkit-backface-visibility: hidden;
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
}
.rslides > li:first-child {
    position: relative;
    display: block;
    float: left;
}
.rslides img {
    display: block;
    height: auto;
    float: left;
    width: 100%;
    border: 0;
    margin-bottom: -10px;
}


/* Testimonials
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.testimonials-news {
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
	display: block;
	padding: 15px 30px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.testimonials-news img {
	width: 100%;
	max-width: 70px;
    height: auto;
}
.testimonials {
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
	display: block;
	padding: 50px 30px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.item {
	width: 100%;
	margin: 20px 2%;
	padding: 20px;
	display: inline-block;
	font-size: 1.4rem;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	   -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	        box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
}
.item h3 {
	font-size: 2rem;
	color: #C1D42F;
}
.item p {
  font-weight: 300;
}
.item img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .item {
    width: 100%;
	margin: 0 0 30px 0;
  }
}
@media only screen and (max-width: 480px) {
}


/* Gallery
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul.light-gallery {
	list-style: none;
	margin: 0;
}
ul.light-gallery li {
	width: 31.333%;
	height: auto;
	float: left;
	margin-right: 2%;
	position: relative;
	z-index: 50;
	cursor: pointer;
    border-radius: 10px;
}
ul.light-gallery li:hover {
    transition: 0.5s;
    -webkit-transform: scale(1.05);
	   -moz-transform: scale(1.05);
	     -o-transform: scale(1.05);
	        transform: scale(1.05);
}
ul.light-gallery li img {
	width: 100%;
	height: auto;
	display: block;
    border-radius: 10px;
}

/* Images
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a img:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}
img.logo-home {
	width: 180px;
	height: auto;
	display: inline-block;
	padding: 0 15px 0 15px;
	margin-top: 60px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 40;
}
img.logo-internal {
	width: 130px;
	height: auto;
	display: inline-block;
	padding: 15px 15px 10px 15px;
}
img.logo-menu {
	height: auto;
	display: none;
	margin: 0 auto;
}
img.logo-footer {
    width: 100%;
    max-width: 420px;
	height: auto;
	display: block;
    margin: 0 auto;
	padding: 15px 0;
}
img.img-full {
	width: 100%;
	height: auto;
	display: block;
    margin-bottom: 15px;
    border-radius: 10px;
}
img.news {
	width: 100%;
	height: auto;
	display: block;
    border-radius: 20px;
}
img.img-partner {
	width: 46%;
	float: left;
	margin: 30px 2% 30px 2%;
	height: auto;
	display: block;
}
img.img-gallery {
	width: 48%;
	margin: 0 1% 15px 1%;
	float: left;
	border-radius: 10px;
}
.img-item1 {
	width: 600px;
	height:100%;
	position: absolute;
	top: 0;
	left: 62%;
	z-index: 50;
	background-image: url(../images/responsive.png);
	background-position: right top 60px;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
img.social {
	width: 50px;
	height: 50px;
}
img.i-heading {
	width: 70px;
	height: 70px;
	margin-right: -10px;
}
img.i-heading-sm {
	width: 50px;
	height: 50px;
}
img.i-phone {
	width: 20px;
	height: auto;
	float: left;
	margin-right: 10px;
}
h3 img {
    width: 35px;
    height: auto;
    float: left;
    margin-right: 5px;
}

@media only screen and (max-width: 1024px) {
	img.logo-home {
		width: 140px;
		margin-top: 60px;
	}
}
@media only screen and (max-width: 768px) {
	img.logo-home {
		margin-top: 20px;
		width: 120px;
	}
	img.logo-menu {
		width: 130px;
		display: block;
		margin: 30px auto;
	}
	img.logo-footer {
        max-width: 100%;
        padding: 30px 0;
        margin: 0;
    }
	.img-item1 {
		display: none;
	}
}
@media only screen and (max-width: 480px) {
	img.logo-home {
		width: 100px;
		display: block;
		margin: 20px auto;
	}
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul.form {
	overflow: hidden;
}
ul.form li {
	width: 98%;
	margin: 0 auto 10px auto;
}
ul.form li.half {
	width: 48%;
	float: left;
	margin: 0 1% 10px 1%;
}
ul.form li.third {
	width: 31.333%;
	float: left;
	margin: 0 1% 10px 1%;
}
ul.form li.third label {
	font-size: 1.4rem;
}

ul.form-newsletter {
	overflow: hidden;
}
ul.form-newsletter li {
	width: 48%;
	margin: 0 1% 0 1%;
	float: left;
}

input[type="email"],
input[type="text"],
input[type="tel"],
input[type="date"],
textarea,
select {
	width: 100%;
	padding: 15px 10px;
	background-color: #FFF;
	border: solid 1px #E2E2E2;
	border-radius: 5px;
	box-shadow: none;
	font-size: 1.2rem;
	color: #5C6670;
	background-position: right 10px center;
	background-repeat: no-repeat;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
		-webkit-appearance: none;
           -moz-appearance: none;
	            appearance: none;
}
textarea {
	min-height: 130px;
}
select {
}
input[type="email"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus, 
select:focus {
	border: 1px solid #C1D42F;
	outline: 0;
	background-color: rgba(255,255,255,1.00);
	-webkit-transition: ease-in-out 0.5s;
       -moz-transition: ease-in-out 0.5s;
            transition: ease-in-out 0.5s;
}
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: block;
	text-align: center;
	padding: 15px 15px;
	margin: 20px auto 0 auto;
	background-color: #C1D42F;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #FFF;
	border-radius: 5px;
	text-transform: uppercase;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	transition: background-color 0.2s;
	border: solid 1px rgba(255,255,255,0.7);
}
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	color: #FFFFFF;
	background: #5D6770;
}
form input[type="checkbox"] {
	display: inline-block;
}

label {
	font-size: 1.3rem;
	font-weight: 600;
	text-align: left;
	display: block;
	margin-bottom: 3px;
}
.control-group {
	display: inline-block;
	vertical-align: top;
	text-align: left;
	border: solid 1px #E2E2E2;
	padding: 30px;
	width: 100%;
	margin: 20px 0;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.control {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	cursor: pointer;
	font-size: 1.2rem;
	width: 40%;
	float: left;
}
.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.control__indicator {
	position: absolute;
	top: 2px;
	left: 0;
	height: 20px;
	width: 20px;
	background: #e6e6e6;
}
.control:hover input ~ .control__indicator, .control input:focus ~ .control__indicator {
	background: #ccc;
}
.control:hover input:not([disabled]):checked ~ .control__indicator, .control input:checked:focus ~ .control__indicator {
	background: #C1D42F;
}
.control__indicator:after {
	content: '';
	position: absolute;
	display: none;
}
.control input:checked ~ .control__indicator:after {
	display: block;
}
.control--checkbox .control__indicator:after {
	left: 8px;
	top: 4px;
	width: 3px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
	border-color: #7b7b7b;
}
.required {
	color: #C1D42F;
}

fieldset {
	margin: 0;
	padding: 10px;
	border-width: 0;
	width: 50%;
	float: left;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
::-webkit-input-placeholder { color: red; }
     :-ms-input-placeholder { color: red; }
         ::-moz-placeholder { color: red; }
          :-moz-placeholder { color: red; }

@media only screen and (max-width: 768px) {
	fieldset {
		width: 100%;
	}
    ul.form li.third {
        width: 100%;
        margin: 0 0 10px 0;
    }
}
@media only screen and (max-width: 480px) {
	.control {
		width: 100%;
	}
    
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a.btn-primary {
	display: inline-block;
	text-align: center;
	padding: 15px 25px;
	margin: 15px 5px 0 5px;
	max-width: 200px;
	background-color: #5D6770;
	font-size: 1.3rem;
	font-weight: 700;
	color: #FFF;
	border-radius: 5px;
	border: solid 1px #FFF;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	transition: background-color 0.2s;
}
a.btn-primary:hover {
	background-color: #0096A9;
}
a.btn-secondary {
	display: inline-block;
	text-align: center;
	padding: 15px 25px;
	margin: 15px auto 0 auto;
	background-color: #c1d42f;
	font-size: 1.3rem;
	font-weight: 700;
	color: #FFF;
	border-radius: 5px;
	border: solid 1px #FFF;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	transition: background-color 0.2s;
}
a.btn-secondary:hover {
	background-color: #0096A9;
}

a.btn-purple {
	display: inline-block;
	text-align: center;
	padding: 15px 25px;
	margin: 15px auto 0 auto;
	background-color: #575194;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #FFF;
	border-radius: 5px;
	border: solid 1px #FFF;
	text-transform: uppercase;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	transition: background-color 0.2s;
}
a.btn-purple:hover {
	background-color: #0096A9;
}

a.btn-fixed {
    position: fixed;
    right: 15px;
    z-index: 100;
    bottom: 20px;
	display: block;
	text-align: center;
	padding: 15px 25px;
	margin: 15px auto 0 auto;
	background-color: #0095a9;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #FFF;
	border-radius: 5px;
	border: solid 1px #FFF;
	text-transform: uppercase;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	transition: background-color 0.2s;
}
a.btn-fixed:hover {
	background-color: #5D6770;
}
a.btn-left {
	display: block;
	text-align: center;
	width: 48%;
	float: left;
	padding: 15px 15px;
	margin: 15px 2% 0 auto;
	max-width: 200px;
	background-color: #C1D42F;
	font-size: 1.3rem;
	font-weight: 700;
	color: #FFF;
	border-radius: 5px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	transition: background-color 0.2s;
	border: solid 1px rgba(255,255,255,0.7);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
a.btn-right {
	display: block;
	text-align: center;
	width: 48%;
	float: left;
	padding: 15px 0;
	margin: 15px auto 0 2%;
	max-width: 200px;
	background-color: #5D6770;
	font-size: 1.3rem;
	font-weight: 700;
	color: #FFF;
	border-radius: 5px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	transition: background-color 0.2s;
	border: solid 1px rgba(255,255,255,0.7);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
a.btn-left:hover, a.btn-right:hover {
	padding: 16px 0;
}
a.btn-smaller {
	display: block;
	text-align: center;
	float: left;
	padding: 10px 15px;
	margin: 15px 2% 0 auto;
	max-width: 200px;
	background-color: #C1D42F;
	font-size: 1.2rem;
	font-weight: 700;
	color: #FFF;
	border-radius: 5px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	transition: background-color 0.2s;
	border: solid 1px rgba(255,255,255,0.7);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
a.btn-smaller:hover {
	padding: 11px 15px;
}
a.btn-divide {
	display: block;
	border-top: solid 1px #E6E6E6;
	font-weight: 700;
	font-size: 1.4rem;
	padding: 20px 0;
	margin: 40px 0 0 0;
	text-align: right;
	color: #5C6670;
}
a.btn-divide:hover {
	color: #C1D42F;
}

a.btn-corona {
	display: inline-block;
    position: fixed;
    top: 100px;
    right: -65px;
    z-index: 200;
    transform: rotate(90deg);
	text-align: center;
	padding: 15px 25px;
	margin: 15px auto 0 auto;
	background-color: #c1d42f;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #FFF;
	border-radius: 0 0 5px 5px;
	border: solid 1px #FFF;
	text-transform: uppercase;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	transition: background-color 0.2s;
}
a.btn-corona:hover {
	background-color: #0096A9;
}

@media only screen and (max-width: 768px) {
    a.btn-corona {
        top: 150px;
        right: -60px;
        font-size: 1rem;
        padding: 10px 25px;
    }
}



/* Btn 1 Column
–––––––––––––––––––––––––– */
ul.btn-1col {
	overflow: hidden;
	padding: 0 10px;
}
ul.btn-1col li {
	width: 100%;
}
ul.btn-1col li a {
	background: #C1D42F;
	width: 100%;
	float: left;
	padding: 15px 0;
	margin: 0 0 15px 0;
	text-align: center;
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	border: solid 1px #FFF;
	color: #FFF;
	border-radius: 5px;
	text-shadow: 0 1px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	   -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	        box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
}
ul.btn-1col li a:hover {
	padding: 17px 0;
}

/* Btn 3 Column
–––––––––––––––––––––––––– */
ul.btn-4col {
}
ul.btn-4col li {
	background: #C1D42F;
	width: 23%;
	float: left;
	margin: 0 1%;
	text-align: center;
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #FFF;
	border-radius: 5px;
	text-transform: uppercase;
	text-shadow: 0 1px 1px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	   -moz-box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
	        box-shadow: 0px 5px 15px 0px rgba(0,0,0,0.125);
}
ul.btn-4col li a {
	display: block;
	color: #FFF;
	padding: 20px 0;
}
ul.btn-4col li a:hover {
	padding: 22px 0;
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 480px) {
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.padding20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.padding40 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding60 {
	padding-top: 60px;
	padding-bottom: 60px;
}
.padding80 {
	padding-top: 80px;
	padding-bottom: 80px;
}
.no-padding {
	padding: 0;
}
.no-margin {
	margin: 0;
}
.margin-vertical20 {
	margin:20px 0px;
}
.flt-left {
	float: left;
	margin: 0 15px 0 0;
}
.flt-right {
	float: right;
}
.center {
	margin: 0 auto !important;
}

@media only screen and (max-width: 768px) {
	.padding20,
	.padding40,
	.padding60,
	.padding80 {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.clearfix {
	clear: both;
}
hr {
	height: 0;
	clear: both;
	-webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box;
}
hr.divide {
	border: none;
	border-top: dotted 6px #E6E6E6;
	margin: 40px 0;
	width: 100%;
}
hr.divide-sm {
	border: none;
	border-top: dotted 4px #E6E6E6;
	margin: 20px 0;
	width: 100%;
}
hr.divide-lrg {
	border: none;
	border-top: dotted 6px #E6E6E6;
	margin: 60px 0;
	width: 100%;
}
hr.space-lrg {
	border-top: solid 1px #FFF;
	border-bottom: none;
	margin: 60px 0;
}
hr.space-sm {
	border-top: solid 1px #FFF;
	border-bottom: none;
	margin: 30px 0;
}
.display-sm-only {
	display: none !important;
}
li.space {
	border-top: solid 1px rgba(255,255,255,0.5);
	display: none !important;
	margin-bottom: 30px;
}
.video {
	width: 100%;
	max-width: 768px;
	height: 400px;
	margin: 30px 0 0 0;
}
.video-main {
    width: 100%;
    max-width: 768px;
    height: 400px;
    margin: 20px auto;
    display: block;
}
.video-portfolio {
	width: 100%;
	height: 400px;
	margin: 0 auto 0 auto;
}
.crt-date {
	text-transform: lowercase !important;
}
.crt-widget-grid.crt-grid-col4 .crt-grid-post {
	width: 23% !important;
}
.crt-grid-post .crt-post-hover .crt-post-text {
    font-size: 1.2rem !important;
}
.crt-widget-grid .crt-logo {
    display: none !important;
}
.crt-widget.crt-widget-branded {
    padding-bottom: 0 !important;
}

.testimonial {
    background-image: url(../images/texture.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFF;
    font-size: 1.8rem;
}
.testimonial-news {
    text-align: center;
}
.testimonial-news img {
    width: 100px;
    height: auto;
    display: inline-block;
}

.price {
    background: #C1D42F;
    color: #FFF;
    display: inline-block;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 30px;
    border: solid 2px #FFF;
    box-shadow: 0 5px 5px rgba(0,0,0,0.1);
}
.price strong {
    font-size: 1.8rem;
    font-weight: 900 !important;
}

.pulse {
  display: block;
  border-radius: 50%;
  background: #cca92c;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(204,169,44, 0.4);
  animation: pulse 2s infinite;
}
.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.4);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}

.byline {
	text-align: left;
	padding: 0;
	border-top: solid 1px #FFF;
	line-height: 30px;
	clear: both;
	color: #FFF;
}
.byline a {
	color: rgba(255,255,255,1) !important;
	font-size: 1.2rem !important;
	font-weight: 600 !important;
}
.byline a:hover {
	color: rgba(255,255,255,0.8) !important;
}
.byline img {
	width: 100px;
	height: auto;
	float: right;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=80);
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}
.byline img:hover {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}

@media only screen and (max-width: 768px) {
	.display-sm-only {
		display: block !important;
	}
	li.space {
		border-top: solid 1px rgba(255,255,255,0.5);
		display: block !important;
	}
	.video {
		max-width: 550px;
		height: 300px;
	}
	.crt-widget-grid .crt-grid-post {
		width: 31.333% !important;
		margin: 1% !important;
	}
	.byline {
		text-align: center;
	}
	.byline img {
		max-width: 100px;
		width: 100%;
		height: auto;
		float: none;
		margin: 0 auto;
		display: block;
	}
	hr.divide-lrg {
		border: none;
		border-top: dotted 6px #E6E6E6;
		margin: 30px 0;
		width: 100%;
	}
	hr.space-lrg {
		border-top: solid 1px #FFF;
		border-bottom: none;
		margin: 30px 0;
	}
}
@media only screen and (max-width: 480px) {
	.video {
		max-width: 480px;
		height: 200px;
	}
	.crt-widget-grid.crt-grid-col1 .crt-grid-post {
		width: 48% !important;
		margin: 1%;
	}
}








.carousel {
    background: #FFF;
    padding: 30px 50px;
    margin-bottom: 50px;
    border-radius: 15px;
    border: solid 1px #FFF;
}
.carousel-cell {
    width: 31%;
    margin: 15px 10px 15px 15px;
    height: 200px;
    background: #FFF;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
.carousel-cell h5 {
    position: absolute;
    bottom: -20px;
    background: #c1d42f;
    border-radius: 50px;
    padding: 5px 20px;
    color: #FFF;
    border: solid 1px #FFF;
    font-size: 1.4rem;
    width: 70%;
}

/* cell number */
.carousel-cell:before {
    display: block;
    text-align: center;
    content: "";
    line-height: 200px;
    font-size: 80px;
    color: white;
}
.carousel-cell img {
    width: 100%;
    height: auto;
    display: inline-block;
}

@media only screen and (max-width: 1024px) {
    .carousel-cell {
        width: 48%;
    }
}

@media only screen and (max-width: 768px) {
    .carousel-cell {
        width: 96%;
    }
}

/*! Flickity v1.0.0
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
    position: relative;
}
.flickity-enabled:focus {
    outline: none;
}
.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}
.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}
/* draggable */
.flickity-enabled.is-draggable {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: white;
    background: hsla(0, 0%, 100%, 0.75);
    cursor: pointer;
    /* vertically center */
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.flickity-prev-next-button:hover {
    background: white;
}
.flickity-prev-next-button:focus {
    outline: none;
    box-shadow: 0 0 0 5px #09F;
}
.flickity-prev-next-button:active {
    filter: alpha(opacity=60); /* IE8 */
    opacity: 0.6;
}
.flickity-prev-next-button.previous {
    left: 10px;
}
.flickity-prev-next-button.next {
    right: 10px;
}
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
}
.flickity-prev-next-button:disabled {
    filter: alpha(opacity=30); /* IE8 */
    opacity: 0.3;
    cursor: auto;
}
.flickity-prev-next-button svg {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
}
.flickity-prev-next-button .arrow {
    fill: #333;
}
/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
    color: #333;
    font-size: 26px;
}
/* ---- page dots ---- */
.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -35px;
    padding: 0;
    margin: 0 0 0 -50px;
    list-style: none;
    text-align: center;
    line-height: 1;
}
.flickity-rtl .flickity-page-dots {
    direction: rtl;
}
.flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: #333;
    border-radius: 50%;
    filter: alpha(opacity=25); /* IE8 */
    opacity: 0.25;
    cursor: pointer;
}
.flickity-page-dots .dot.is-selected {
    filter: alpha(opacity=100); /* IE8 */
    opacity: 1;
}






/* Links
---------------------------------------------- */
ul.links {
    overflow: hidden;
    padding: 10px;
}
ul.links li {
    width: 100%;
    border-radius: 100px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
ul.links li a {
    display: block;
    padding: 15px 10px;
    background-color: #C1D42F;
    color: #FFF;
    border-radius: 100px;
    border: solid 2px #FFF;
}
ul.links li a:hover {
    background-color: #0096A9;
    transition: 0.5s;
}










