

.cover {
	min-height: 870px;
	position: relative;
}

@media (min-width: 1600px) {
	.cover {
		height: 100vh;
	}
}

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



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

.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 * *  * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

.services {
	padding: 1rem 0;
	text-align: center;
}

@media (min-width: 1600px) {
	.services {
		position: absolute;
		bottom: 80px;
		right: 0;
		width: 100%;
	}
}

.services-list > div {
	display: inline-block;
	vertical-align: top;
	padding: 1rem 2rem;
}

@media (max-width: 1599px) {
	.services-list > div {
		padding: 1rem .5rem;
	}
}

.service {
	display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
	
	width: 146px;
	height: 146px;
	border-radius: 50%;
	background: rgba(81,156,133,.85);
	color: #fff;
	
	transform-origin: center;
	
	line-height: 1rem;
}

.services-list > div:nth-child(7n+1) .service {
	background: rgba(79,120,166,.85);
}
.services-list > div:nth-child(7n+2) .service {
	background: rgba(142,68,92,.85);
}
.services-list > div:nth-child(7n+3) .service {
	background: rgba(235,150,6,.85);
}
.services-list > div:nth-child(7n+4) .service {
	background: rgba(105,137,28,.85);
}
.services-list > div:nth-child(7n+5) .service {
	background: rgba(61,137,130,.85);
}
.services-list > div:nth-child(7n+6) .service {
	background: rgba(161,95,71,.85);
}
.services-list > div:nth-child(7n+7) .service {
	background: rgba(147,89,151,.85);
}

.service:before {
	display: block;
	position: absolute;
	content: '';
	top: -6px;
	left: -6px;
	z-index: 1;
	
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 1px solid #080a02;
	
	transition: .5s;
}

.service:after {
	display: block;
    position: absolute;
    content: '';
    bottom: 12%;
    left: 9px;
    z-index: 1;
    width: 116%;
    height: 100%;
    background-image: url(images/service.png);
    background-position: bottom left;
    background-repeat: no-repeat;
	
	transition: .5s;
}

.service .circle {
	margin-top: -18px;
}

.service .name {
	margin-top: .25rem;
	max-width: 70%;
	margin: 0 auto;
}

.service .icon {
	margin-bottom: .5rem;
}

.service:hover {
	color: #fff;
	transform: scale(1.1) translate(0, 0);
}

.service:hover:before {
	top: 0;
	left: 0;
}



/**/

@media (min-width: 1600px) {
	.articles {
		position: absolute;
		top: 50%;
		right: 6rem;
		transform: translate(0, -50%);
	}
}

@media (max-width: 1599px) and (min-width: 1200px) {
	.articles {
		text-align: center;
	}
	.centered {
		float: left;
	}
	.fast-nav-and-articles {
		padding: 0 2rem;
	}
}

@media (max-width: 1199px) {
	.articles {
		text-align: center;
		margin: 2rem 0;
	}
}



.articles a {
	color: inherit;
}

.articles .article h3 {
	font-size: 1.2rem;
	line-height: 1.2rem;
}

.articles h2 {
	display: inline-block;
	color: #507f17;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0;
	padding: .1rem .25rem;
	
	position: absolute;
	top: 3.8rem;
	left: 50%;
	transform: translate(-50%, 0);
}

.articles .box {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	padding: 4rem;
    padding-top: 6rem;
	position: relative;
}

.articles .box:before {
	background-image: url(images/articles.png);
	background-size: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	content: '';
	display: block;
	z-index: -1;
}

@media (max-width: 991px) {
	.articles .box {
		width: 300px;
		height: 300px;
	}
	
	.articles .box:before {
		background-size: 100% 100%;
	}
	
	.articles h2 {
		top: 4rem;
	}
	
	.articles .box {
		padding: 4rem;
		padding-top: 6rem;
	}
}


.articles:hover .box:before {
	animation: fa-spin 6s infinite linear;
}

@media (max-width: 1599px) {
	.articles .box {
		border-radius: 7rem;
		margin: 0 3rem;
	}
}

@media (max-width: 991px) {
	.articles .box {
		margin: 0 auto;
	}
}

.articles .slick-dots {
	list-style: none;
	padding: 0;
	margin: 0;
}

.articles .slick-dots li {
	display: inline;
}

.articles .slick-dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: #fff;
	border: 1px solid #000;
	font-size: 0;
	margin-left: 5px;
	padding: 0;
}
.articles .slick-dots .slick-active button {
	background: #000;
}


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

@media (min-width: 1822px) {
	.news {
		position: absolute;
		top: 90px;
		right: 0;
		width: 100%;
		z-index: 9999;
	}
}
@media (max-width: 1821px) and (min-width: 1600px) {
	.news {
		padding-top: 200px;
	}
}

.news .content {
    position: relative;
	max-width: 740px;
	margin: 0 auto;
}

.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: #fd7e10;
    color: #fff;
    font-size: 1rem;
    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: 1rem;
    line-height: 1rem;
    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: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fd7e10;
	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%);
}


/**/

@media (min-width: 1600px) {
	.centered {
		position: absolute;
		top: 150px;
		left: 50%;
		margin-right: -50%;
		transform: translate(-50%, 0);
	}
}


/**/

.idx-search {
    border-radius: 3rem;
    color: #fff;
	position: relative;
	display: block;
    margin: 1rem auto;
}

.idx-search label {
    margin: 0;
}

.idx-search input {
	border-radius: 3rem;
	padding: .5rem;
	border: 0;
	width: 100%;
}

.idx-search button {
    position: absolute;
	top: 0;
	left: 0;
	margin: .5rem 1rem;
	padding: 0;
	background: none;
	border: 0;
}

.header-side .search {
	display: none;
}

/**/


/* Fast Nav */

.fast-navigation {
	padding: 1rem 0;
	border-radius: 0 0 2rem 2rem;
	color: #fff;
	width: fit-content;
    margin: 0 auto;
}

.fast-navigation:after {
	clear: both;
	display: block;
	content: '';
}

@media (min-width: 992px) {
	.fast-navigation > label, .fast-navigation > select, .fast-navigation > span {
		float: right;
		display: block;
	}
}


.fast-navigation label {
	background: rgba(213,98,64,.9);
	border-radius: 0 2rem 2rem 0;
	padding: 0.4rem 1rem;
	margin: 0;
}

.fast-navigation select {
	background: #fff;
	border: 0;
	border-radius: 0;
	padding: .5rem 1rem;
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
}

.fast-navigation button {
	background: rgba(213,98,64,.9);
	border: 0;
	border-radius: 2rem 0 0 2rem;
	padding: .4rem 1.5rem;
	color: #fff;
	font-weight: bold;
}

@media (min-width: 992px) {
	.fast-navigation .smart-nav-sub > label,
	.fast-navigation .smart-nav-sub > select,
	.fast-navigation .smart-nav-sub > button {
		float: right;
		display: block;
	}
}

@media (max-width: 991px) {
	
	.fast-navigation > label, .fast-navigation > select, .fast-navigation > span {
		display: block;
		border-radius: 2rem;
		width: 100%;
	}
	
	.fast-navigation .smart-nav-sub > label,
	.fast-navigation .smart-nav-sub > select,
	.fast-navigation .smart-nav-sub > button {
		display: block;
		border-radius: 2rem;
	}
	
	.fast-navigation .smart-nav-sub > select {
		width: 100%;
		margin: .5rem 0;
	}
	
	.smart-nav-submit {
		margin: 0 auto;
	}
}


/**/

.events {
	padding: 2rem 0;
}

.events h2 {
	width: fit-content;
	background: #5b8fd7;
	color: #fff;
	padding: .5rem 1rem;
	border-radius: 2rem 0 0 2rem;
	font-size: 1.5rem;
	font-weight: bold;
}

.event {
	display: block;
	background: #fff;
	color: #000;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	position: relative;
	margin-bottom: 30px;
	border-radius: .75rem;
	overflow: hidden;
	margin: 1rem;
}
.event img {
	display: block;
	width: 100%;
}
.event .info {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	padding: 1rem;
	padding-top: 3rem;
	
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	
	color: #fff;
	text-align: center;
}
.event h3 {
	font-size: 1.2rem;
	margin: 0;
	font-weight: 400;
}

.event .date {
	padding-bottom: 100%;
    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%);
}

.event .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;
}
.event .date > div > span:nth-child(2) {
	font-size: 1.5rem;
	display: block;
}


.bottom {
	margin: 0 2rem;
	background: rgb(47 132 143 / 90%);
	color: #fff;
	border-radius: 3rem;
	padding: 2rem;
}

@media (min-width: 1200px) {
	.bottom {
		position: absolute;
		bottom: 0;
		right: 10%;
		width: 80%;
		background: rgb(47 132 143 / 90%);
		color: #fff;
		border-radius: 3rem 3rem 0 0;
		padding: 0 2rem;
		margin: 0;
	}
}

/**/

.cover-slick-mobile {
	display: none;
}

@media (max-width: 991px) {
	.cover-slick {
		display: none;
	}
	.cover-slick-mobile {
		display: block;
	}
	.cover-slick-mobile div {
		    background-attachment: fixed;
	}
}