body {
	margin-top: 0;
}

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

@media (min-width: 1200px) {
	.cover {
		height: 90vh;
		overflow: hidden;
	}
}

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

@media (max-width: 991px) {
	.cover {
		background: #00aeef;
	}
}

.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;
	z-index: -1;
}

#toggle-video {
	position: absolute;
	top: 190px;
	left: 15px;
	background: #fff;
	border: 0;
	z-index: 999;
}


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

/**/

.services {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
}

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

.service {
	text-align: center;
	display: block;
	background: #fff;
	margin: 1rem;
}

.service .icon {
	padding: 1rem;
}

.service .icon img {
	display: block;
	margin: 0 auto;
}

.service figcaption {
	background: #f1f1f1;
	border-top: 2px solid #ffffff;
	padding: .75rem;
	color: #1d99d9;
	
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

.service:hover {
	text-decoration: none;
	color: #000;
}

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


/**/




/*
@media (min-width: 1200px) {
	.articles-grid {
		display: flex;
		margin: 0 -15px;
	}
	.articles-grid div {
		flex-grow: 1;
		flex-basis: 0;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	.articles-grid {
		display: block;
		margin: 0 -15px;
	}
	.articles-grid > div {
		float: right;
		width: 33.33%;
	}
}
*/


.articles-grid {
	padding: 1rem;
}


.articles-grid .slick-slide {
	padding: 2rem 0;
}

.articles {
	padding: 3rem 2rem;
	padding-top: 1rem;
	background-image: url(images/bg.jpg);
	background-size: cover;
	background-position: bottom center;
	background-repeat: no-repeat;
}

.article {
	display: block;
	background: #fff;
	color: #000;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	border-radius: 2rem;
	position: relative;
	margin: 0 15px;
	text-align: center;
	padding: 3px;
	
	
}

.article:hover {
	text-decoration: none;
	transform: scale(1.1);
}

.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%;
	border-radius: 2rem;
}
.article .info {
	padding: .5rem;
	min-height: 180px;
}
.article h3 {
	font-size: 1.2rem;
	color: #00549a;
	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: #00aeef;
	color: #fff;
	display: inline-block;
	border-radius: 2rem;
	padding: .25rem .75rem;
	font-weight: bold;
}

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

.news {
	position: absolute;
	top: 121px;
	right: 0;
	width: 100%;
	background: rgba(255,255,255,0.9);
	padding: 10px;
	padding-right: 280px;
	padding-left: 300px;
}

@media (max-width: 991px) {
	.news {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.news .content {
	position: relative;
}

@media (min-width: 992px) {
	.news .content {
		padding-right: 100px;
	}
}
	
.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 {
    color: #00549a;
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: -2px;
    padding: .219rem .75rem;
    margin: 0;
    border-radius: 2rem;
    z-index: 5;
    background: #fff;
}

.news h2 a {
	color: inherit;
}

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

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

.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: #00549a;
}

.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;
	padding-top: 2px;
}

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

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

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



/* Weather * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */


.weather {
	color: #fff;
	font-size: 1.2rem;
	position: relative;
	display: inline-block;
}

@media (min-width: 1280px) {
	.weather {
		position: absolute;
		top: 200px;
		right: 0;
	}
}

.weather .wi {
	position: absolute;
	top: 0;
	right: 20px;
}
.weather > div {
	display: table;
	margin-bottom: 1rem;
}
@media (max-width: 991px) {
	.weather > div {
		margin-top: 1rem;
	}
}
.weather > div > div {
	display: table-cell;
	vertical-align: top;
	padding: 0 1rem;
}
.weather > div > div:first-child {
	width: 212px;
	font-size: 2rem;
	line-height: 2rem;
	text-align: left;
	border-left: 3px solid #e3693f;
}
.weather > div:first-child > div:first-child {
	font-size: 4rem;
	line-height: 4rem;
}
.weather > div > div strong {
	font-size: 1.3rem;
}
.weather #weather > div {
	background-position: right;
	background-repeat: no-repeat;
}

/* Fast Navigation * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

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

@media (min-width: 1280px) {
	.fast-navigation {
		background: rgba(255,255,255,0.8);
		border-radius: 5rem;
		padding: .5rem 1rem;
		font-size: 1.5rem;
	}
}

@media (min-width: 1280px) {
	.fast-navigation > div {
		float: right;
		padding: 1rem;
	}
}


.fast-navigation .title {
	margin-bottom: .5rem;
}

.fast-navigation select {
	background: rgba(255,255,255,0.9);
	border: 1px solid #b7b7b7;
	padding: .5rem 1rem;
	border-radius: 2rem;
	font-size: 1.5rem;
	-webkit-appearance: none;
	position: relative;
	padding-left: 50px;
}

.fast-navigation .description-holder {
	background: rgba(255,255,255,0.9);
	border: 1px solid #b7b7b7;
	border-radius: 2rem;
	font-size: 1.5rem;
	-webkit-appearance: none;
	position: relative;
	max-width: 680px;
	height: 54px;
	font-size: 1rem;
    line-height: .85rem;
	color: #000;
	padding: .6rem 1rem;
	padding-left: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fast-navigation .select-holder {
	position: relative;
}

.fast-navigation .select-holder:after {
	content: '\f0d7';
	font-family: 'FontAwesome';
	position: absolute;
	top: .65rem;
    left: 1rem;
	display: block;
	font-size: 1rem;
	color: #000;
	pointer-events: none;
}

.fast-navigation button {
	background: #f99d1c;
	border-radius: 2rem;
	padding: .5rem 1.2rem;
	font-size: 1.2rem;
	border: 0;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	height: 54px;
}

.fast-navigation .badge {
	background: #ef4023;
    color: #fff;
    width: 26px;
    display: inline-block;
    text-align: center;
    border-radius: 1rem;
}

.fast-navigation > div:nth-child(2) .badge {
	background: #5fbdeb;
}
.fast-navigation > div:nth-child(3) .badge {
	background: #f99d1c;
}


@media (max-width: 1279px) {
	.fast-navigation {
		margin: 0 auto;
		max-width: 300px;
		margin-top:8rem;
	}
	
	.fast-navigation select {
		width: 100%;
	}
	
	.smart-nav-sub {
		width: 100%;
		margin-top: .5rem;
	}
}


@media (max-width: 991px) {
	.fast-navigation {
		background: #fff;
		max-width: initial;
		width: 100%;
		padding: 2rem 1.5rem;
	}
	
	.fast-navigation select {
		max-width: initial;
	}
}

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

@media (min-width: 1280px) {
	.r-services {
		position: absolute;
		bottom: -106px;
		width: 100%;
		text-align: center;
	}

	.r-services-list {
		display: inline-block;
	}
	.r-services-list > div{
		display: inline-block;
	}
}

@media (max-width: 1279px) {
	.r-services-list {
		text-align: center;
	}
	
	.r-services-list > div {
		display: inline-block;
	}
	
}

.r-services-list a {
	display: block;
	width: 240px;
    height: 240px;
	background: rgba(239, 64, 35, .9);
	border: 3px solid rgba(255,255,255,0.5);
	border-radius: 50%;
	position: relative;
	margin: 1rem;
	
	-o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.r-services-list .circle {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.r-services-list a:hover {
	transform: scale(1.1);
	margin-bottom: 70px;
}

.r-services-list > div:nth-child(5n+2) a {
	background: rgba(113, 191, 68, .9);
}
.r-services-list > div:nth-child(5n+3) a {
	background: rgba(41, 183, 236, .9);
}
.r-services-list > div:nth-child(5n+4) a {
	background: rgba(249, 157, 28, .9);
}
.r-services-list > div:nth-child(5n+5) a {
	background: rgba(10, 85, 152, .9);
}

.r-services-list a > div {
	position: absolute;
    top: 0;
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    padding: 2.5rem;
    line-height: 2rem;
	
	-o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.r-services-list a:hover > div {
	padding: 1.5rem;
}

.r-services-list a .name {
    max-width: 154px;
	margin: 0 auto;
	margin-bottom: .75rem;
}

.r-services-list a .description {
    font-size: 1rem;
	line-height: 1rem;
	font-weight: normal;
	opacity: 0;
	
	-o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
}

.r-services-list a:hover .description {
	opacity: 1;
}

@media (max-width: 991px) {
	.r-services {
		padding: 2rem 0;
		background: #fff;
	}
	
	.r-services-list a {
		width: 140px;
		height: 140px;
		margin: .5rem;
	}
	
	.r-services-list a > div {
		font-size: 1.5rem;
		line-height: 1.5rem;
		padding: 2.5rem 1.5rem;
	}
}


/**/

.social {
	text-align: center;
	margin-top: 2rem;
}
.social a {
	display: inline-block;
	margin: 0 1rem;
}
.social a:hover {
	transform: scale(1.1)
}

@media (max-width: 991px) {
	.social {
		margin-top: 0;
		padding: 3rem 0;
	}
	.social a {
		margin: 0 .5rem;
	}
	.social a img {
		width: 60px;
	}
}

/**/

.header {
	background: rgba(255, 255, 255, .8);
}
.header.offset {
	background: rgba(255, 255, 255, 1);
}

.header .logo {
    background: #fff;
	box-shadow: -1px 0 2px rgb(0 0 0 / 10%);
	border-radius: 0 0 0;
}

/**/

.header-side {
    left: 20px;
}

a.services-btn {
	display: none;
}


/**/

.moked-btn {
position: absolute;
    top: 121px;
    left: 0;
    font-size: 1.3rem;
    background: red;
    padding: 9px 30px;
    font-weight: bold;
    color: #000000;
    border-right: 1px solid #ffffff;
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
    display: block;
}

@media (max-width: 991px) {
	.moked-btn {
		top: 284px;
	}
}

.moked-btn:hover, .moked-btn:focus {
	text-decoration: none
}



/**/


.contact-modal {
	
}

.contact-modal .sub-content {
	position: fixed;
	top: 0;
	right: 0;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(2px);
	color: #022353;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	padding: 2rem;
	padding-top: 4rem;

	transform: scale(0);
	-o-transition: .5s;
	-ms-transition: .5s;
	-moz-transition: .5s;
	-webkit-transition: .5s;
	transition: .5s;
}

.contact-modal .sub-content-centered {
	background: #00549a;
	color: #fff;
	box-shadow: 0 0 50px rgba(0,0,0,0.2);
	font-size: 1.4rem;
	line-height: 1.4rem;
	
	max-width: 1000px;
    margin: 0 auto;
}

.contact-modal .sub-content h2 {
	background: #fff;
	color: #00549a;
}

.contact-modal .sub-content .close-sub-content {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	padding: 1rem;
	font-size: 24px;
	color: #12387d;
	background: none;
	border: 0;
}

.contact-modal .centered {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translate(0, -50%);
	width: 100%;
}

@media (max-width: 991px) {
	.contact-modal .centered {
		height: 100vh;
		overflow: auto;
		padding: 5rem 0;
	}
}

.contact-modal.active .sub-content {
	transform: scale(1);
}

.contact-modal .sub-content h3 {
	font-weight: bold;
}

.contact-modal .sub-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-modal .sub-content ul li {
	padding: .1rem 0;
}

.contact-modal .sub-content a {
	color: inherit;
}



