<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* Slider */
*, *:before, *:after
{
	box-sizing: border-box;
}

.hero-slider
{
	position: relative;
	z-index: 990;
	background: #494949;
}

.hero-slider .slides
{
	list-style: none;
	padding: 0;
	margin: 0;
	*zoom: 1;
}

.hero-slider .slides:after
{
	content: " ";
	clear: both;
	display: block;
	overflow: hidden;
	height: 0;
}

.hero-slider .slides li
{
	background-position: no-repeat center center fixed;
	-webkit-background-size: cover;
 	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	height: 550px;
	width: 100%;
}

.sliderbox
{
	position: absolute;
	top: 63%;
	z-index: 991;
	text-align: center!important;
	width: 100%;
	max-width: 1170px;
	left:0;
    right:0;
	line-height: 22px;
    margin-left:auto;
    margin-right:auto;
}

.sliderbox h1
{
	color: #ffffff;		
	font-weight: 600;
	font-size: 30px;
	line-height: 45px;
	text-align: center;
	background: rgba(0, 0, 0, 0.4);
	padding: 25px;
	width: 1170px;
}

.hero-slider .flex-control-paging
{
	display: none;
}

.flex-prev
{
    position: absolute;
    left: 5%;
    z-index: 99999;
    top: 45%;
    width: 35px;
    height: 55px;
    overflow: hidden;
	font-size: 0px;
    background: url('../images/pager-left.png') top right no-repeat;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s  ease-in-out;
    -o-transition: all 0.4s  ease-in-out;
    transition: all 0.4s  ease-in-out;
}

.flex-direction-nav {height: 0px;}

.flex-next
{
	position: absolute;
	right: 5%;
	z-index: 99999;
	top: 45%;
	width: 35px;
	height: 55px;
	overflow: hidden;
	font-size: 0px;
	background: url('../images/pager-right.png') top right no-repeat;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s  ease-in-out;
	-o-transition: all 0.4s  ease-in-out;
	transition: all 0.4s  ease-in-out;
}

ul.flex-direction-nav
{
	list-style-type: none;
}

.flex-prev:hover
{
	opacity: 0.5;
}

.flex-next:hover
{
	opacity: 0.5;
}

@media screen and (min-width: 1020px) and (max-width: 1200px)
{
	.sliderbox {max-width: 1200px; width: 1000%; top: 62%; padding: 0px; text-align: center; margin-left: -60px;}
}

@media screen and (max-width: 1020px){
	.hero-slider .slides li {height: 250px;}
	.hero-slider .flex-control-paging {display: none;}
	.hero-slider .flex-control-paging li {margin: 0px;}
	.sliderbox h1 {display: none;font-size: 28px; width: 100%; margin: 0px auto; text-align: center; padding: 0px;}
	.flex-next {display: none;}
	.flex-prev {display: none;}
}

</pre></body></html>