@media (min-width: 992px) {
	.header {
		background: none;
	}

	.header .logo {
		background: none;
		box-shadow: 0 0 0;
	}
}

@media (min-width: 1200px) {
	.navigation {
		width: 700px;
		margin: 0 auto;
		border-radius: 0 0 15px 15px;
		background: rgba(83,131,153,.85);
	}
}

/**/

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

@media (min-width: 992px) {
	.cover {
		height: 100vh;
		
		padding-top: 150px;
	}
	
	.cover:before {
		display: block;
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 282px;
		height: 339px;
		background: url(images/top-left.png);
	}
	
	.cover:after {
		display: block;
		content: '';
		position: absolute;
		bottom: 0;
		right: 0;
		width: 335px;
		height: 332px;
		background: url(images/bottom-right.png);
		    z-index: -1;
	}
}

@media (max-width: 991px) {
	.cover {
		padding: 15px;
		padding-top: 80px; /* header height + padding */
	}
}

.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;
}

/**/

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

#toggle-video {
	position: absolute;
	top: 125px;
	right: 15px;
	background: none;
	border: 0;
}

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

/**/

@media (min-width: 992px) {
	.services {
		position: absolute;
		bottom: 190px;
		right: 0;
		width: 100%;
		z-index: 9;
	}
}

.services-container {
	max-width: 1300px;
	margin: 0 auto;
}




@media (min-width:990px) {
	
	.services-container .slick-track{
		display: flex;
		justify-content: space-between;
	}
	
	
	.services-container .slick-track > div{
		width: 200px!important;
	}
}



.service {
	text-align: center;
	display: block;
	background-size: 100% 100%;
	position: relative;
	color: #fff;
	font-size: 1.3rem;
    height: 120px;
    font-weight: bold;
}

.service:hover {
	color: #fff;
	transform: translateY(-15px);
}


.service:focus {

	color: #fff;

}

.slick-slide:nth-child(1) .service {
	background-image: url(images/1.png?=1);
}
.slick-slide:nth-child(2) .service {
	background-image: url(images/2-1.png?=1);
}
.slick-slide:nth-child(3) .service {
	background-image: url(images/2-1.png?=1);
}
.slick-slide:nth-child(4) .service {
	background-image: url(images/2-1.png?=1);
}
.slick-slide:nth-child(5) .service {
	background-image: url(images/5-1.png?=1);
}

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

.service .icon img {
	display: block;
	margin: 0 auto;
	margin-bottom: .75rem;
}


.services .slick-list{
padding-top: 30px;
}


@media (max-width:990px) {
	.services .slick-slide{
		padding: 0 5vw;
	}
}



/* Articles */

.articles {
	padding: 3rem 2rem;
}
.articles h2 {
	font-weight: bold;
	margin-bottom: 2rem;
}
.articles article {
	display: block;
	height: 100%;
}
.articles .row > div {
	margin-bottom: 30px;
}
.article {
	display: block;
	background: #fff;
	color: #000;
	box-shadow: 0 0 25px rgba(0,0,0,0.1);
	position: relative;
	height: 100%;
}
.article img {
	display: block;
	width: 100%;
}
.article .info {
	padding: 1rem;
}
.article h3 {
	font-weight: bold;
}
.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;
	padding: .25rem .75rem;
	font-weight: bold;
	color: inherit;
	border: 1px solid #ddd;
}

/**/

.events {
	background-color: #fff;
}

.ribbon-date {
	position: absolute;
	top: 0;
	left: 15px;
	background: #fff;
	color: #000;
	padding: .5rem 1rem;
}
.ribbon-date span {
	display: block;
}
.ribbon-date span:nth-child(1) {
	font-weight: bold;
	font-size: 1.5rem;
}

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

.news {
	padding: 1rem;
    background: rgb(0 0 0 / 50%);
    
    width: 100%;
	color: #fff;
}

@media (min-width: 992px) {
	.news {
		position: absolute;
		bottom: 44px;
		right: 0;
	}
}
@media (max-width: 990px) {
	.news {
		position: fixed;
		bottom:0px;
	    left: 0px;
	}
}

.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, .bn-news ul li a:focus {
	color: yellow;
}

.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%);
}


/**/

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

@media (max-width: 991px) {
	.centered {
		text-align: center;
	}
	.centered-banner img {
		max-width: 100%;
	}
}

/**/



/* 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: #0372ac;
	border-radius: 0 2rem 2rem 0;
	padding: 5px 10px;
	border: 0;
	margin: 0;
}

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

.fast-navigation button {
	background: #0372ac;
	border: 0;
	border-radius: 2rem 0 0 2rem;
	padding: 5px 10px;
	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;
	}
}

/**/

@media (min-width: 992px) {
	.side-banners {
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
	}
	.side-banners.side-banners-right {
		right: 130px;
	}
	.side-banners.side-banners-left {
		left: 0;
	}
}

@media (max-height: 899px) {
	.side-banners.side-banners-right > div {
		display: inline-block;
		vertical-align: top;
		margin-left: 15px;
	}
}

@media (max-width: 991px) {
	.side-banners.side-banners-right {
		max-width: 190px;
		margin: 0 auto;
	}
}

.side-banners a {
	display: block;
}

/**/

.idx-search {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}

.idx-search input {
	background: #fff;
	border: 1px solid #ddd;
	border: 0;
	height: 100%;
	padding: 0 15px;
	width: 100%;
	font-size: 1.2rem;
	padding: 15px;
	border-radius: 15px;
}
.idx-search button {
	position: absolute;
	top: 0;
	left: 0;
	background: none;
	border: 0;
	height: 100%;
	padding: 0 15px;
	color: #168896;
	font-size: 26px;
}

/**/

.news-box {
	width: 189px;
	height: 200px;
	position: relative;
	margin-bottom: 30px;
	padding: 32px;
}

.news-box:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 243px;
	height: 200px;
	background: url(images/news.png);
	content: '';
	z-index: -1;
}

.news-box h2 {
	font-weight: bold;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
}

.box-news-slick a {
	color: #000;
	display: block;
	max-height: 90px;
	overflow: hidden;
}

.box-news-slick .slick-dots {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.box-news-slick .slick-dots > li {
	display: inline-block;
}

.box-news-slick .slick-dots > li button {
	font-size: 0;
	width: 10px;
	height: 10px;
	border: 1px solid #000;
	background: #fff;
	display: block;
	margin: 2px;
	padding: 0;
	border-radius: 50%;
}

.box-news-slick .slick-dots > li.slick-active button {
	background: #fdb90e;
}


/**/

@media (min-width: 992px) {
	.footer {
		background: rgba(255,255,255,0.9);
		padding: 10px 0;
		position: fixed;
		bottom: 0;
		right: 0;
		width: 100%;
	}
}



.read-more {
	display: inline-block !important;
    background: #fff;
    padding: 1px 10px;
    border-radius: 2rem;
    font-size: .9rem;
    margin-top: 12px;
}