﻿/* Mobge Slider */
.slider, .image-holder, .description-holder {
	height: 586px;
	max-height: 586px;
	overflow:hidden;
	z-index:99;
}

/* Arrows */
.slider .arrow {
	position: absolute;
	top: calc(50% - 22px);
	width: 45px;
	height: 45px;
	z-index: 999;
	opacity: .5;
	transition: opacity .5s, left .5s, right .5s;
	cursor: pointer;
}
.slider .aleft {
	background-image: url(../image/arrow-left.png);
	background-repeat: no-repeat;
	left: 25px;
}
.slider .aright {
	background-image: url(../image/arrow-right.png);
	background-repeat: no-repeat;
	right: 25px;
}
.slider:hover > .aleft {
	transition: left .5s !important;
	left:15px !important;
}
.slider:hover > .aright {
	transition: right .5s !important;
	right:15px !important;
}
.slider:hover > .arrow {
	opacity: 1;
	transition: all .5s;
}

/* Timeline */
.description-holder .line-holder {
	position: absolute;
    top: 27%;
    left: 17%;
    z-index: 10000;
}
.description-holder .line-holder .line {
	position:relative;
	width: 35px;
	height: 5px;
	background: #f0f0f0;
	float:left;
	margin: 10px 2px;
	overflow: hidden;
	cursor: pointer;
}
.description-holder .line .line-process {
	width: 0;
	height: 100%;
	background:#ed8544;
}

/* Images */
.image-holder .row {
	height: 100%;
}
.image-holder .image { background-size: cover; }
.image-holder .image:first-child {
	opacity: 1;
}
.image-holder .image {
	background-position:center center;
	height: 100%;
	position:absolute;
	top:0;
	left: calc(100%);
	opacity: 0 !important;
	transition: all 1s;
}
.image-holder .active {
	transition: all 1s;
	opacity: 1 !important;
	left:0 !important;
}
.image-holder .pass {
	transition: all 1s;
	opacity: 0 !important;
	left:calc(-100%) !important;
}

/* Descriptions */
.description-holder {
	position: relative;
}
.description-holder .description {
	padding:5% 15%;
	height: 100%;
	position:absolute;
	top:0;
	left: calc(100%);
	opacity: 0 !important;
	transition: all 1s;
}
.description-holder .description:first-child {
	opacity: 1;
}
.description-holder .active {
	transition: all 1s;
	opacity: 1 !important;
	left:0 !important;
}
.description-holder .pass {
	transition: all 1s;
	opacity: 0 !important;
	left:calc(-10%) !important;
}

.description-holder .description .header-top {
	position: relative;
    top: 20px;
    left: 20px;
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.71;
    letter-spacing: normal;
}
.description-holder .description .header {
	position: relative;
    top: 20px;
    left: 20px;
    font-family: Montserrat;
    margin-bottom: 45px;
    font-size: 40px;
    font-weight: 800 !important;
    line-height: 1.25;
    letter-spacing: normal;
}
.description-holder .description .main-title {
	position: relative;
    clear: both;
    top: 20px;
    left: 20px;
    font-family: Montserrat;
    font-size: 62px;
    font-weight: 800;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.16;
    letter-spacing: normal;
    color: #ed8544;
}
.description-holder .description .desc {
	position: relative;
    top: 20px;
    left: 20px;
    padding-right: 25%;
    margin-top: 6px;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: italic;
    line-height: 1.78;
    letter-spacing: normal;
    text-align: left;
    color: #454545;
}
.description-holder .btn-holder {
	position: relative;
    top: 20px;
    left: 20px;
}
.description-holder .btn-holder .button1 {
	font-family: Montserrat;
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.63;
	letter-spacing: normal;
	text-align: center;
	background: #000000;
	color: #ffffff;
	transition: all .2s;
	border-radius:50px;
}
.description-holder .btn-holder .button1:hover {
	background:#fff;
	color:#000;
	border:1px solid #000;
	transition: all .2s;
}
.description-holder .btn-holder .button2 {
	font-family: Montserrat;
	font-size: 16px;
	font-weight: bold;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.63;
	letter-spacing: normal;
	text-align: center;
	background: #ffffff;
    color: #000000;
	border-color:#000000;
	transition: all .2s;
	border-radius:50px;
}
.description-holder .btn-holder .button2:hover {
	background:#000;
	color:#fff;
	border:1px solid #000;
	transition: all .2s;
}

@media only screen and (max-width: 1024px) {
	.description-holder .description .main-title {
		font-size: 48px;
	}
	.description-holder .description .desc {
		font-size: 14px;
	}
	.description-holder .line-holder {
		top: 23%;
    	left: 19%;
	}
}

@media only screen and (max-width: 414px) {
	.slider { height: 700px; }
	.image-holder {
		height: 300px;
		max-height: 300px;
	}
	.description-holder {
		height: 400px;
		max-height: 400px;
	}
	.description-holder .line-holder {
		top: 19%;
    	left: 14%;
	}
	.description-holder .description .main-title {
	    font-size: 24px;
	}
	.description-holder .description {
		padding:2% 10%;
	}
	.description-holder .description .header {
		font-size: 22px;
	}
	.description-holder .description .header-top {
		margin-bottom:0px;
	}
	.description-holder .description .desc {
		padding-right: 20px;
	}

}