.mainWrapper {
	position: relative;
	width: 100%;
	min-width: 1300px;
	margin: auto;
}

.body-wrapper {
	width: 1200px;
	min-width: 1200px;
	margin: 0 auto;
}
 .container {
 	width: 100%;
 	min-width: 1200px;
 }

.slider-container {
	position: relative;
	top: 35px;

	box-sizing: border-box;
	width: 100%;
	height: 600px;

	padding: 0;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slide-image {
	/*background: url('/images/slide-Image13.png') no-repeat;
	background-size: cover;
	background-position: top;*/
	background-repeat: no-repeat;
	display: none;

	width: 100%;
	height: 178%;
}

#prev {
	position: absolute;
    top: 0;
    left: -12%;

    font-size: 50px;
    color: white;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

#next {
	position: absolute;

	top: 0%;
	right: -12%;

	font-size: 50px;
	color: white;
	height: 100%;

	display: flex;
	justify-content: center;
	align-items: center;

    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
}

#prev:hover,
#next:hover {
	cursor: pointer;
	filter: blur(2px) brightness(400%) contrast(400%);
	
}

#dots-container {
	position: absolute;
	top: 425px;
	left: 50%;
}

.dot {
	display: inline-block;

	width: 12px;
	height: 12px;
	
	background: linear-gradient( white, rgb(199, 199, 199));
	border-radius: 8px;
	box-shadow: 1px 1px 1px #000;
	margin: 12px;
}

#dots-container > div:hover, .active-dot {
	background: #d2b977ed;
}

.banner-container {
	position: relative;
	top: 20px;
	width: 100%;
	height: 560px; 
}

.row1-banner {

	height: 293px;
	width: 100%;

	margin: 0;
	padding: 0;
	
	border-radius: 2px 2px 0 0;
	box-shadow: -1px -12px 78px #000000;
}

.row1-banner > div {
		position: relative;
		float: left;
		width: 600px;
		height: 100%;
		margin: 0;
		padding: 0;

}

#banner1 { 
	background: url('/images/banners/banner1.png') no-repeat;
	background-size: cover;
	border-radius: 10px 0 0 0;
 }

 #banner2 {
 	background: url('/images/banners/banner2.png') no-repeat;
 	border-radius: 0 10px 0 0;
 }

.row2-banner {
	position: relative;
	box-sizing: border-box;

	width: 100%;
	height: 250px;

	background: #000;

	padding: 11px 0;


}

#banner3-btn {
	position: absolute;
    background: rgb(255, 210, 0);

    top: 148px;
    left: 43px;
    /* width: 163px; */

    height: 46px;
    width: 138px;
    line-height: 45px;

    font-size: 20px;
    font-weight: bold;
}

#banner4-btn {
	position: absolute;
    background: rgb(255, 210, 0);

    top: 150px;
    left: 43px;
    
    width: 135px;
    height: 45px;

    text-align: center;
    line-height: 45px;

    font-size: 20px;
    font-weight: bold;
}

#banner5-btn {
	position: absolute;
	background: rgb(255, 210, 0);
	
	top: 149px;
	left: 43px;

	width: 135px;
	height: 45px;

	text-align: center;
    line-height: 45px;

	font-size: 20px;
	font-weight: bold;
}


#banner3 {
	position:relative;
	float: left;

	background: url('/images/banners/banner3.png') no-repeat;

	width: 395px;
	height: 100%;                                        
}

#banner4 {
	position:relative;
	float: left;

	background: url('/images/banners/banner4.png') no-repeat;

	width: 395px;
	height: 100%;
	margin-left: 11px;
	margin-right: 10px;
}

#banner5 {
	position:relative;
	float: left;

	background: url('/images/banners/banner5.png') no-repeat;

	width: 388px;
	height: 100%;
}

#banner5:after {
	clear: both;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

