body {
	background: #ddd;
}

/* Cover * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.cover {
	position: relative;
}

@media (min-width: 1320px) {
	.cover {
		height: 100vh;
		position: relative;
		
		overflow: hidden;
	}
}

@media (max-width: 1319px) {
	.cover {
		padding-top: 200px;
	}
}

/* Cover Slick * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.cover-slick {
	width: 100%;
	height: 100%;
}

@media (max-width: 1319px) {
	.cover-slick {
		position: absolute;
		top: 0;
		z-index: -1;
	}
}

.cover-slick div {
	height: 100%;
	background-size: cover;
	background-position: center;
}

/* Services * *  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.services h2 {
	background: rgba(76,93,99,.9);
	font-weight: lighter;
	padding-right: 1rem;
	padding-left: .2rem;
	color: #fff;
	display: inline-block;
	font-size: 3rem;
}

@media (min-width: 1320px) {
	.services {
		position: absolute;
		top: 280px;
		right: 0;
	}
	
	.services .content {
		position: relative;
		width: 100%;
		height: 100%;
		
	}

	.services-list {
		display: table;
		padding: 1rem;
	}

	.services-list > div {
		display: table-cell;
		vertical-align: bottom;
	}
}

@media (max-width: 1320px) {
	.services {
		width: 100%;
		display: block;
	}
	
	.services-list:after {
		clear: both;
		display: block;
		content: '';
	}
	
	.services-list > div {
		float: right;
		text-align: center;
	}
}

.service {
	text-align: center;
	display: block;
	background: rgba(58,181,74,0.8);
	color: #fff;
	font-size: 1.1rem;
	margin: 1rem;
	padding: 1rem;
	width: 150px;
	
	transition: all .2s ease-in-out;
	transform-origin: center center;
}

div:nth-child(2n) > .service {
	background: rgba(27,177,230,0.8);
}

@media (max-width: 1320px) {
	.service {
		font-size: 1rem;
	}
}

.service:hover {
	color: #fff;
	text-decoration: none;
	
	-webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
    animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.service .icon {
	text-align: center;
	margin-bottom: .8rem;
}

.service .icon img {
	height: 80px;
}

@media (max-width: 1199px) {
	.service .icon img {
		height: 50px;
	}
}

.service figcaption {
	line-height: 1rem;
	height: 32px;
}

/* Video Background * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

video { 
	position: absolute;
    top: 0;
    right: 0;
	width: 100%;
	background-size: cover;
	transition: 1s opacity;
}

@media (max-width: 1199px) {
	video {
		display: none;
	}
}

#toggle-video {
	position: absolute;
	top: 180px;
	left: 15px;
	
	background: none;
	color: #fff;
	border: 0;
	padding: 10px 15px;
	cursor: pointer;
	
	-o-transition:.5s;
	-ms-transition:.5s;
	-moz-transition:.5s;
	-webkit-transition:.5s;
	transition:.5s;
	
	z-index: 9;
}

#toggle-video:hover, #toggle-video:focus {
	background: rgba(0,0,0,0.8);
}

@media (max-width: 767px) {
	#toggle-video {
		display: none;
	}
}


/* Animations */

.slide-top {
	-webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	
	animation-delay: 3.5s;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-3-10 9:22:32
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(204px);
            transform: translateY(204px);
	opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
	opacity: 1;
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(204px);
            transform: translateY(204px);
	opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
	opacity: 1;
  }
}


.scale-up-center {
	-webkit-animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: scale-up-center 0.4s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-3-10 9:55:19
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
	opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
	opacity: 1;
  }
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
	opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
	opacity: 1;
  }
}

/**/

.services-list > div:nth-child(1) .service {
	animation-delay: 0.8s;
}
.services-list > div:nth-child(2) .service {
	animation-delay: 1.1s;
}
.services-list > div:nth-child(3) .service {
	animation-delay: 1.4s;
}
.services-list > div:nth-child(4) .service {
	animation-delay: 1.7s;
}
.services-list > div:nth-child(5) .service {
	animation-delay: 2s;
}
.services-list > div:nth-child(6) .service {
	animation-delay: 2.3s;
}

.services-list > div:nth-child(7) .service {
	animation-delay: 2.6s;
}

.services-list > div:nth-child(8) .service {
	animation-delay: 2.9s;
}

.services-list .service:hover, .services-list .service:focus {
	text-decoration: underline;
	transform: scale(1.1) !important;
}

.slide-left {
	-webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
			
	animation-delay: .5s;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-3-10 10:14:49
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-left
 * ----------------------------------------
 */
@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
	opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
	opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
	opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
	opacity: 1;
  }
}



/* bottom bar * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

@media (min-width: 1320px) and (min-height: 750px) {
	.bottom-bar {
		position: fixed;
		bottom: 0;
		right: 0;
		width: 100%;
	}
}

/* news * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.news {
	background: rgba(76,93,99,0.9);
	color: #fff;
	margin: 0 -15px;
	padding: 1rem;
}

.news h2 {
	font-weight: lighter;
	color: #3ab54a;
	
}
.news-marquee {
	height: 126px;
	overflow: hidden;
}
.no-results {
	height: 126px;
	overflow: hidden;
}
.new {
	display: block;
	color: #fff;
}
.new:hover {
	color: #fff;
}

/* articles * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.articles {
	background: rgba(64,78,83,0.9);
	color: #fff;
	margin: 0 -15px;
	padding: 1rem 0;
}

.articles-slick {
	padding: 0 1.5rem;
	margin: 0 1.5rem;
}

.article {
	display: block;
	margin: 1rem;
	color: #fff;
}
.article:hover {
	color: #fff;
	text-decoration: none;
}
.article figure {
	display: table;
}
.article figure > div {
	display: table-cell;
	vertical-align: middle;
}
.article figure > div.pic {
	width: 140px;
}
.article figure > div.pic > div {
	width: 140px;
	height: 140px;
	overflow: hidden;
	border-radius: 50%;
}
.article figure > div.pic > div img {
	min-width: 100%;
	min-height: 100%;
}
.article figcaption {
	padding: 1rem;
}

/* View All Button */

.articles, .news {
	position: relative;
}

.view-all {
	position: absolute;
	bottom: 0;
	left: 0;
	background: rgba(36,49,54,.8);
	color: #fff;
	padding: .1rem .5rem;
}
.view-all:hover {
	color: #fff;
	text-decoration: none;
	background: rgba(36,49,54,1);
}
.view-all em {
	color: #3ab44a;
}

/* Footer */

.footer {
	display: none;
}


.news-toggle {
	background: none;
	color: #fff;
	border: 0;
	position: absolute;
	top: 15px;
	left: 15px;
}


.slick-prev:focus:before, .slick-prev:hover:before, .slick-next:focus:before, .slick-next:hover:before {
	outline: 2px solid #3ba849;
    background: #fff !important;
    color: black;
    opacity: 1;
}