/* Top Banner */
.top_banner {
	width: 100%;
	height: 340px;
	background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.top_banner .cv_outer {
    display: table;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
.top_banner .cv_outer .cv_inner {
    display: table-cell;
    vertical-align: middle;
}
.top_banner .cv_outer .cv_inner .content {
	margin: 0 65px;
	color: #fff;
	font-size: 50px;
	text-align: center;
}
.top_banner .cv_outer .cv_inner .content h1 {
    display: inline-block;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 50px;
    letter-spacing: 10px;
    /*transition: height 0.8s ease;*/
    overflow: hidden;
}

/* Slider */
.slider {
	position: relative;
}
.slider .cv_outer {
    display: table;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}
.slider .cv_outer .cv_inner {
    display: table-cell;
    vertical-align: middle;
}
.slider .cv_outer .cv_inner .content {
	margin: 0 65px;
	color: #fff;
	font-size: 50px;
	text-align: center;
}
.slider .cv_outer .cv_inner .content h1 {
    display: inline-block;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 50px;
    /*transition: .5s ease;*/
    letter-spacing: 10px;
    transition: height 0.8s ease;
    overflow: hidden;
}
.slider .slides {
	-webkit-animation-name: fade;
  	-webkit-animation-duration: 1.5s;
  	animation-name: fade;
  	animation-duration: 1.5s;
}
.slider .slides .slide {
	position: relative;
	width: 100%;
	height: 300px;
	cursor: pointer;
	box-shadow: inset 0px 0px 35px 0px rgba(0, 0, 0, 0.4);
	position: absolute;
	top: 0;
}
.slider .slides .slide.is_photo {
	background-repeat: no-repeat;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	background-position: center;
}
.slider .slides .loading {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    cursor: pointer;
    box-shadow: inset 0px 0px 35px 0px rgba(0, 0, 0, 0.4);
}
.slider .slides .loading .cssload_container {
    background: #333;
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slider .dots {
	text-align: center;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 10px;
	display: none;
}
.slider .dots .dot {
	cursor: pointer;
	height: 10px;
	width: 10px;
	padding: 10px;
	margin: 0;
	background: transparent;
	border: 2px solid #bbb;
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	margin-right: 4px;
}
.slider .dots .dot:last-child {
	margin-right: 0;
}
.slider .dots .dot.active {
	background-color: #717171;
	cursor: not-allowed;
}
.slider .dots .dot:hover {
	background-color: #717171;
}
.slider .change_slides {
	cursor: pointer;
	position: absolute;
	top: 0;
	height: 100%;
}
.slider .change_slides.previous_slide .cv_outer:hover {
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
	background-image: -o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));
	background-image: linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
	background-repeat: repeat-x;
}
.slider .change_slides.next_slide .cv_outer:hover {
	background-image: -webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
	background-image: -o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
	background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));
	background-image: linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
	background-repeat: repeat-x;
}
.slider .change_slides.next_slide {
	right: 0;
}
.slider .change_slides.previous_slide {
	left: 0;
}
.slider .change_slides .cv_outer {
	background: inherit;
}
.slider .change_slides .cv_outer .cv_inner .content {
	margin: 0;
	font-size: 40px;
}
.slider .change_slides .fas {
	padding: 20px;
	color: #fff;
	cursor: pointer;
}
.slider .change_slides .fas:hover {
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
@-webkit-keyframes fade {
	from {
		opacity: .4;
	} 
  	to {
  		opacity: 1;
  	}
}
@keyframes fade {
  	from {
  		opacity: .4;
  	} 
  	to {
  		opacity: 1;
  	}
}

/* Loader */
.cssload_container {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
}
.cssload_container .cssload_item {
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 49px;
	height: 49px;
	background-color: rgb(255,255,255);
	box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	box-shadow: 0 0 8px 1px rgba(0,0,0,0.25);
		-o-box-shadow: 0 0 8px 1px rgba(0,0,0,0.25);
		-ms-box-shadow: 0 0 8px 1px rgba(0,0,0,0.25);
		-webkit-box-shadow: 0 0 8px 1px rgba(0,0,0,0.25);
		-moz-box-shadow: 0 0 8px 1px rgba(0,0,0,0.25);
}
.cssload_container .cssload_moon {
	border-bottom: 10px solid rgb(102,102,102);
	border-radius: 50%;
		-o-border-radius: 50%;
		-ms-border-radius: 50%;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
	animation: spin 1.15s ease infinite;
		-o-animation: spin 1.15s ease infinite;
		-ms-animation: spin 1.15s ease infinite;
		-webkit-animation: spin 1.15s ease infinite;
		-moz-animation: spin 1.15s ease infinite;
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@-o-keyframes spin {
	from {
		-o-transform: rotate(0deg);
	}
	to {
		-o-transform: rotate(360deg);
	}
}
@-ms-keyframes spin {
	from {
		-ms-transform: rotate(0deg);
	}
	to {
		-ms-transform: rotate(360deg);
	}
}
@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
	}
}
@-moz-keyframes spin {
	from {
		-moz-transform: rotate(0deg);
	}
	to {
		-moz-transform: rotate(360deg);
	}
}

/* Row */
.row {
    			display: flex;
    			margin-bottom: 20px;
}
    		.row:last-of-type {
    			margin-bottom: 0;
    		}
    		.row input, .row textarea {
    			flex: 1;
    			padding: 10px;
    		}
    		.row input:nth-child(2) {
    			margin-left: 20px;
    		}
    		.row input:nth-child(3) {
    			margin-left: 20px;
}

/* Nice Menu */
.nice_menu {
	background: #202424;
	box-shadow: inset 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
.nice_menu .content {
	max-width: 1050px;
	text-align: center;
	margin: 0 auto;
}
.nice_menu .content a {
	padding: 30px 20px;
	display: inline-block;
	color: #fff;
	font-size: 20px;
	text-transform: uppercase;
	font-family: "Dosis", sans-serif;
	font-weight: normal;
	font-weight: bold;
}
.nice_menu .content .desktop li ul a {
	font-size: 13px;
	width: 100%;
	padding: 20px 20px;
}
.nice_menu .content .desktop li:hover > ul {
	display: block;
}
.nice_menu .content .desktop ul {
	margin: 0;
	padding: 0;
}
.nice_menu .content .desktop ul li {
	display: inline-block;
	position: relative;
	text-align: left;
}
.nice_menu .content .desktop ul li ul {
	display: none;
	position: absolute;
	z-index: 9999;
	left: 0;
	top: 100%;
	width: 285px;
	background: #202424;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}
.nice_menu .content .desktop ul li ul ul {
	top: 0;
  	left: 100%;
}
.nice_menu .content .desktop ul li ul .fas.fa-angle-down:before {
	content: "\f105";
}
.nice_menu .content .desktop ul li ul li {
	display: block;
}
.nice_menu .content a img {
	max-width: 80px;
	transition: transform .2s;
}
.nice_menu .content a img:hover {
	transform: scale(1.5)
}
.nice_menu .content a:hover {
	color: #de4141;
}
.nice_menu .desktop {
	display: block;
}
.nice_menu .mobile {
	display: none;
}
.nice_menu #menu_mobile {
	display: none;
	overflow: hidden;
}
.nice_menu #menu_mobile a {
	display: block;
}
.nice_menu #menu_mobile ul {
	margin: 0px;
	padding: 0px;
}
.nice_menu #menu_mobile ul li {
	position: relative;
	display: block;
	text-align: left;
}
.nice_menu #menu_mobile li .is_dropdown {
	display: flex;
}
.nice_menu #menu_mobile li .is_dropdown a {
	flex: 1;
}
.nice_menu #menu_mobile li .is_dropdown i {
    display: block;
    color: #fff;
    font-size: 20px;
    padding: 30px 20px;
}
.nice_menu #menu_mobile li ul {
	margin-left: 20px;
	display: none;
}
.nice_menu #menu_mobile li ul a {
	font-size: 14px;
}

/* Featured Links */
.featured_links {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	background: #fff;
}
.featured_links .featured_link {
	position: relative;
	background: #fff;
	box-shadow: 0px 10px 78px -24px rgba(0, 0, 0, 0.99);
	display: flex;
	flex: 1 auto;
	justify-content: center;
	align-items: center;
	max-width: 323px;
	transition: .5s ease;
}
.featured_links .featured_link:hover {
	opacity: 0.8;
}
.featured_links .featured_link:nth-child(2) {
	margin-left: 20px;
}
.featured_links .featured_link:nth-child(3) {
	margin-left: 20px;
}
.featured_links .featured_link img {
	max-width: 100%;
	width: 100%;
}
.featured_links .featured_link a {
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
}
.featured_links .featured_link a .cv_outer {
  	display: table;
  	width: 100%;
  	height: 100%;
	background: rgba(0, 0, 0, 0.1);
}
.featured_links .featured_link a .cv_inner {
  	display: table-cell;
  	vertical-align: bottom;
  	text-align: center;
  	position: absolute;
  	bottom: 0;
  	width: 100%;
}
.featured_links .featured_link a .cv_inner .text {
	padding: 10px;
	color: #333;
	width: 100%;
	background: rgba(255, 255, 255, 0.85);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.5;
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	vertical-align: middle;
	font-family: "Dosis", sans-serif;
}

/* Cool Text 1 */
.cool_text_1 {
	padding: 20px;
	font-family: "Dosis", sans-serif;
	line-height: 1.9;
	word-break: break-word;
}
.cool_text_1 a {
	color: #2b74a4;
	font-size: 16px;
}

/* Cool Content 1 */
.cool_content_1 {
	padding: 20px;
	font-family: "Dosis", sans-serif;
	text-align: center;
	line-height: 1.9;
}

/* Gallery */
.gallery {
	position: relative;
	width: 100%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.gallery .item {
	display: inline-block;
	flex: 1;
	max-width: 300px;
	transition: .5s ease;
}
.gallery .item img {
	width: 177px;
	height: 100px;
}
.gallery .item:hover {
	opacity: 0.8;
}
.gallery .item:nth-child(2) {
	margin-left: 20px;
}
.gallery .item:nth-child(3) {
	margin-left: 20px;
}
.gallery .item:nth-child(4) {
	margin-left: 20px;
}
.gallery .item:nth-child(5) {
	margin-left: 20px;
}
.gallery .item:nth-child(6) {
	margin-left: 20px;
}
.gallery .item a {
	display: block;
}

/* Cool Title 2 */
.cool_title_2 {
	display: block;
	text-align: center;
	padding: 20px;
	font-size: 20px;
	font-family: "Dosis", sans-serif;
	color: #333;
	text-transform: uppercase;
	font-weight: bold;
}
.cool_title_2 a {
	font-size: 20px;
	color: blue;
}

@media only screen and (max-device-width: 900px), only screen and (max-width: 900px) {
	.row {
    			display: block;
    			
	}

	.row input {
		margin-bottom: 20px;
    }
    .row input:last-child {
		margin-bottom: 0px;
    }

    .row input, .row textarea {
    			flex: inherit;
    			padding: 10px;
    			width: 100%;
    		}
    		.row input:nth-child(2) {
    			margin-left: 0;
    		}
    		.row input:nth-child(3) {
    			margin-left: 0;
	}
}

@media only screen and (max-device-width: 600px), only screen and (max-width: 600px) {
	/* Nice Menu */
	.nice_menu .content a {
		display: block;
	}
	.nice_menu .content a:hover {
		color: #fff;
	}
	.nice_menu .desktop {
		display: none;
	}
	.nice_menu .mobile {
		display: block;
	}

	/* Top Banner */
	.top_banner .cv_outer .cv_inner .content h1 {
	    font-size: 30px;
	}
}
@media only screen and (max-device-width: 700px), only screen and (max-width: 700px) {
	/* Featured Links */
	.featured_links {
		display: block;
		text-align: center;
	}
	.featured_links .featured_link {
		flex: inherit;
		max-width: 100%!important;
		display: inline-block;
	}
	.featured_links .featured_link:nth-child(2) {
		margin-left: 0;
		margin-top: 20px;
	}
	.featured_links .featured_link:nth-child(3) {
		margin-left: 0;
		margin-top: 20px;
	}
	.featured_links .featured_link img {
		width: inherit;
	}
	.featured_links .featured_link:hover {
		opacity: 1;
	}
}

@media only screen and (max-device-width: 670px), only screen and (max-width: 670px) {
	/* Gallery */
	.gallery {
		display: block;
	}
	.gallery .item {
		flex: inherit;
		display: inherit;
		max-width: 100%!important;
	}
	.gallery .item:hover {
		opacity: 1;
	}
	.gallery .item:nth-child(2) {
		margin-left: 0;
		margin-top: 20px;
	}
	.gallery .item:nth-child(3) {
		margin-left: 0;
		margin-top: 20px;
	}
	.gallery .item:nth-child(4) {
		margin-left: 0;
		margin-top: 20px;
	}
	.gallery .item:nth-child(5) {
		margin-left: 0;
		margin-top: 20px;
	}
	.gallery .item:nth-child(6) {
		margin-left: 0;
		margin-top: 20px;
	}
}

@media only screen and (max-device-width: 600px), only screen and (max-width: 600px) {
	/* Hero Image */
	.hero_image.moving {
		background-attachment: inherit;
	}

	/* Slider */
	.slider .slides .loading {
		height: 300px!important;
	}
	.slider .slides .slide.is_photo {
		height: 300px!important;
	}
	.slider .change_slides.previous_slide .cv_outer:hover {
		background-image: inherit!important;
		filter: inherit!important;
	}
	.slider .change_slides.next_slide .cv_outer:hover {
		background-image: inherit!important;
		filter: inherit!important;
	}
}