.cover {
	height: calc(100vh - 120px);
	position: relative;
}

.cover-slick {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}

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

.cover-content {
	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
	z-index: 99;
	text-align: center;
	
	max-width: 600px;
	margin-top: -60px;
}

.cover-content h1 {
	margin-bottom: 1rem;
}

.cover-content h1 > span {
	background: rgba(3,25,48,.9);
	color: #fff;
}

.cover-content h1 > span > span {
	color: #fffc00;
}

.cover-content p {
	margin: 0;
}

.cover-content .text {
	background: rgba(204,211,223,.8);
	padding: 1rem;
	color: #333;
	display: inline-block;
}

/**/

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

/**/

.services {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	
	background: rgba(236, 236, 236, .9);
	padding: 1rem 0;
}


.services:before {
	content: '';
	display: block;
	background-image: url(images/bootom.png);
	background-size: 100% auto;
	background-position: bottom;
	background-repeat: no-repeat;
	height: 20px;
	position: absolute;
	bottom: 100%;
	right: 0;
	width: 100%;
}


.services-slick {
	padding: .5rem 1rem;
	margin: 0 1rem;
}

.service {
	text-align: center;
	display: block;
	
	overflow: hidden;
	
	font-size: 1.1rem;
	color: #000;
}

/*
.slick-slide:nth-child(7n+1) .service {
	border: 1px solid #b28c9f;
}
.slick-slide:nth-child(7n+2) .service {
	border: 1px solid #87a3c1;
}
.slick-slide:nth-child(7n+3) .service {
	border: 1px solid #90b06f;
}
.slick-slide:nth-child(7n+4) .service {
	border: 1px solid #66b380;
}
.slick-slide:nth-child(7n+5) .service {
	border: 1px solid #d6a4b2;
}
.slick-slide:nth-child(7n+6) .service {
	border: 1px solid #8ac8d8;
}
.slick-slide:nth-child(7n+7) .service {
	border: 1px solid #7b9f91;
}*/

.service .icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service .icon img {
	display: block;
	margin: 0 auto;
	max-width:92px;
}

.service figcaption{
    margin-top: 0.5rem;
    max-width: 80px;
    margin: 0 auto;
    line-height: 1rem;
    margin-top: 12px;
}
.service:hover {
	text-decoration: none;
	color: #000;
}

.service:hover figcaption {
	background: #fff;
	color: #000;
}


/**/


.articles {
	padding: 3rem 2rem;
}

.article {
	display: block;
	background: #fff;
	color: #000;
	box-shadow: 0 5px 5px rgba(0,0,0,0.1);
	position: relative;
	margin-bottom: 30px;
}
.article:before {
	width: 93px;
    height: 33px;
    background: url(images/article-corner.png);
    position: absolute;
    top: 0px;
    right: -4px;
    display: block;
    content: '';
    z-index: 1;
}
.article img {
	display: block;
	width: 100%;
}
.article .info {
	padding: .5rem;
}
.article h3 {
	font-size: 1.2rem;
}
.article .date {
	padding-bottom: 56.25%;
    position: relative;
    background: rgb(206 189 111);
    background: linear-gradient(45deg, rgb(246 183 77) 0%, rgb(160 183 132) 50%, rgb(121 204 200) 100%);
}

.article .date > div {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	
	font-size: 3rem;
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.article .date > div > span:nth-child(2) {
	font-size: 1.5rem;
	display: block;
}

.read-more {
	background: #fff;
	display: inline-block;
	border-radius: 10px 0 10px 0;
	padding: .25rem .75rem;
	font-weight: bold;
	color: inherit;
	border: 1px solid #ddd;
}


/* News * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.news {
	padding: 1rem;
	background: #fff;
}

.news .content {
    position: relative;
}

.news .buttons {
    position: absolute;
    top: 1.9rem;
    left: 1.9rem;
}

.news a {
	color: #000;
	display: block;
}

@media (min-width: 768px) {
	.news a {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}

.news h2 {
	background: #111;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    padding: .219rem .75rem;
    margin: 0;
    border-radius: 2rem;
    z-index: 5;
}

.news h2 a {
	color: inherit;
}

@media (max-width: 991px) {
	.news h2 {
		display: none;
	}
}

@media (min-width: 992px) {
	.bn-news {
		padding-right: 100px;
	}
}

.bn-news ul li a {
	font-size: 1.2rem;
    line-height: 1.2rem;
    padding: .36rem 0;
    color: inherit;
}

.bn-news ul li a:hover {
	color: #000;
}

.bn-effect-scroll .bn-news ul li {
	padding: 0 1rem;
}

.news .date {
	font-weight: bold;
}

.news .date:after {
	content: ' | ';
	margin: 0 10px;
}

.news-toggle {
	width: 26px;
	height: 26px;
	border: 1px solid #fff;
	border-radius: 50%;
	background: #111;
	color: #fff;
	background: none;
	font-size: 14px;
}

.bn-controls {
	left: 0;
	right: auto;
}

.bn-controls button {
	border: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	padding: 0;
	margin-right: 5px;
}

.bn-arrow {
    top: -1px;
}

.bn-pause::before, .bn-pause::after {
    background-color: #fff;
}
.bn-play::after {
    border-left-color: #fff;
}

.bn-controls button:hover {
    background-color: #111;
	color: #fff;
	box-shadow: 0 0 5px rgb(255 255 0 / 90%);
}


/**/

.centered-banner {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
}