@import url("reset.css");

@font-face{
	font-family: dpmi;
	src: url('../img/ff-din-pro-medium-italic.otf');
}

@font-face{
	font-family: dpi;
	src: url('../img/ff-din-pro-italic.otf');
}

@font-face{
	font-family: itc;
	src: url('../img/itc-ag.ttf');
}

body{
	color: #333;
	font-family: Microsoft JhengHei, sans-serif;
	font-size: 18px;
	background-color: white;
	line-height: 1.6;
	margin-top: 100vh;
	overflow-x: hidden;
}

input{
	font-family: Microsoft JhengHei, sans-serif;
	font-size: 18px;
	outline: 0;
	border-radius: 0;
	-webkit-appearance: none;
}

.movie-mask {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,.8);
	z-index: 50;
	opacity: 0;
	transition: all .5s;
	pointer-events: none;
}

.movie-mask iframe{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

section > h2{
	font-size: 38px;
	width: 100%;
	background-color: white;
	text-align: center;
	color: #666;
	line-height: 100px;
	height: 100px;
	position: relative;
}

.vrp-en section h2 {
	font-family: itc;
}

section > h2:before{
	content: "";
	display: block;
	width: 100%;
	height: 50px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -20px;
	background-image: radial-gradient(circle, #ccc 0px, #ccc 1px, transparent 1px, transparent 100px);
	background-size: 15px 15px;
	background-position: -15px 0;
}

section > h2 span{
	background-color: white;
	padding: 0 50px;
	display: inline-block;
	position: relative;
	z-index: 1;
}

/*==================== Top (Movie & Drop Sel) =====================*/
.vrp-top {
	height: 100vh;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: -1;
	background-color: black;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	/*background-image: radial-gradient(circle, rgba(255,255,255,.15) 0px, rgba(255,255,255,.15) 1px, transparent 1px, transparent 100px),
		radial-gradient(circle, #000 0%, #000 50%, #000 100%);
	background-size: 30px 30px, contain;*/
	background-image: url(../img/topbg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/*-------- Background Movie --------*/
.vrp-top-movie {
	width: 100%;
	height: 100vh;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
}

.vrp-top-movie video{
	position: absolute;
	width: 100%;
	height: auto;
	opacity: .6;
	pointer-events: none;
}

/*-------- Logo & Title --------*/
.vrp-top > img{
	z-index: 1;
	opacity: 0;
	animation: logo 1s forwards;
}

@keyframes logo{
	0%{ opacity: 0; transform: scale(1.5);}
	100%{ opacity: 1; transform: scale(1);}
}

.vrp-top h1{
	font-size: 30px;
	padding-top: 20px;
	color: white;
	font-family: 'Cabin', sans-serif;
	z-index: 1;
	font-weight: normal;
	opacity: 0;
	animation: title 1s forwards;
}

@keyframes title{
	0%{ opacity: 0; transform: scale(1.5);}
	100%{ opacity: 1; transform: scale(1);}
}

/*-------- Top Sel --------*/
.vrp-top-sel {
	position: absolute;
	top: 20px;
	right: 15%;
	z-index: 10;
	overflow: hidden;
}

.vrp-top-sel > a{
	display: block;
	width: 50px;
	height: 32px;
	background-image: linear-gradient(to bottom, white 0%, white 100%);
	background-size: 100% 2px;
	background-repeat: no-repeat;
	background-position: 0 50%;
	position: relative;
	transition: all .5s;
}

.vrp-top-sel > a:before, .vrp-top-sel > a:after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background-color: white;
	position: absolute;
	transform-origin: center center;
}

.vrp-top-sel > a:before{
	top: 0;
	transition: all .5s;
}

.vrp-top-sel > a:after{
	bottom: 0;
	transition: all .5s;
}

.vrp-top-sel-click a{
	background-image: none;
}

.vrp-top-sel-click a:before{
	top: 15px;
	transform: rotate(45deg);
}

.vrp-top-sel-click a:after{
	bottom: 15px;
	transform: rotate(-45deg);
}

.vrp-top-sel ul{
	width: 200px;
	padding: 10px 20px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,.2);
	position: absolute;
	top: 50px;
	right: 0;
	border-radius: 5px;
	transition: all .5s;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

.vrp-top-sel-click{
	overflow: visible;
}

.vrp-top-sel-click ul{
	opacity: 1;
	height: 250px;
	overflow: visible;
}

.vrp-en .vrp-top-sel-click ul{
	width: 270px;
}

.vrp-top-sel ul:before{
	content: "";
	display: block;
	width: 0;
	height: 0;
	border: 10px solid white;
	border-color: transparent transparent rgba(255,255,255,.2) transparent;
	position: absolute;
	right: 15px;
	top: -20px;
}

.vrp-top-sel li{
	border-bottom: 1px solid rgba(255,255,255,.5);
}

.vrp-top-sel li:last-child{
	border-bottom: 0;
}

.vrp-top-sel ul a{
	display: block;
	color: white;
	text-decoration: none;
	line-height: 2.5;
	text-align: right;
}

.vrp-top-sel ul a:hover{
	color: #da7b0e;
}

/*-------- Language Btn --------*/
.vrp-lan{
	position: absolute;
	top: 20px;
	left: 5%;
	z-index: 10;
}

.vrp-lan li:first-child{
	margin-bottom: 5px;
}

.vrp-lan li + li{
	display: none;
}

.vrp-lan:hover li + li{
	display: block;
}

.vrp-lan a{
	display: block;
	color: white;
	text-decoration: none;
	font-size: 13px;
	overflow: hidden;
	padding: 10px;
	transition: all .3s;
}

.vrp-lan a:hover{
	background-color: rgba(255,255,255,.2);
}

.vrp-lan span{}

.vrp-lan img{
	width: 23px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -2px;
}



/*==================== Section 2 (2 movie) =====================
.vrp-main-movie {
	padding: 50px 0 50px 0;
	background-color: white;
	background-image: url(../img/sc2_bgLeft.png),url(../img/sc2_bgRight.png);
	background-repeat: no-repeat;
	background-position: left center, right center;
	text-align: center;
}

.vrp-main-movie div{
	display: inline-block;
	width: 700px;
	height: 390px;
	position: relative;
	margin: 0 40px;
	background-color: black;
}

.vrp-main-movie b{
	background: url(../img/play_icon.png) no-repeat rgba(0,0,0,.3) center center;
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 10;
	cursor: pointer;
}

.vrp-main-movie iframe{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.vrp-main-movie h3{
	position: absolute;
	left: 0;
	right: 0;
	bottom: -40px;
	margin: auto;
}*/

/*==================== Section 3 (about VR+) =====================*/
.vrp-about {
	background-color: #333;
	background-image: radial-gradient(circle, rgba(255,255,255,.15) 0px, rgba(255,255,255,.15) 1px, transparent 1px, transparent 100px),
		 url(../img/about_bg.png), radial-gradient(circle, #000 0%, #000 50%, #000 100%);
	background-size: 30px 30px, cover, contain;
	background-position: center center;
	padding-bottom: 100px;
	text-align: center;
}

.vrp-about > h2 span{
	
}

.vrp-about p{
	line-height: 2;
	color: white;
}

.vrp-about p:first-of-type{
	padding-top: 100px;
	padding-bottom: 50px;
}

.vrp-about img{
	display: inline-block;
	position: relative;
	top: 13px;
	left: 0px;
}

/*==================== Section 4 (Features) =====================*/
.vrp-features {
	text-align: center;
	background-color: #333;
	background-image: radial-gradient(circle, rgba(255,255,255,.15) 0px, rgba(255,255,255,.15) 1px, transparent 1px, transparent 100px),
		radial-gradient(circle, #000 0%, #000 50%, #000 100%);
	background-size: 30px 30px, contain;
}

.vrp-features ul{
	overflow: hidden;
	background-color: black;
}

.vrp-features li{
	width: 50%;
	float: left;
	height: 300px;
	background-size: cover;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.vrp-features li img{
	display: block;
	position: absolute;
	width: 100%;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	transition: all .5s;
}

.vrp-features .fe1 img{
	top: -100px;
}

.vrp-features .fe2 img{
	top: -100px;
}

.vrp-features .fe3 img{
	top: -200px;
}

.vrp-features .fe4 img{
	top: -150px;
}

.vrp-features h3{
	color: white;
	font-size: 42px;
	text-shadow: 0 0 10px black, 0 0 10px black, 0 0 10px black;
	z-index: 10;
	transition: all .5s;
}

.vrp-en .vrp-features h3{
	font-family: itc;
	font-size: 30px;
}

.vrp-features b{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,.7);
	z-index: 5;
	opacity: 0;
	transition: all .5s;
}

.vrp-features p{
	color: white;
	width: 100%;
	box-sizing: border-box;
	z-index: 5;
	font-size: 24px;
	text-align: center;
	padding: 20px 30px;
	opacity: 0;
	margin-top: 20px;
	transition: all .5s;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

.vrp-features li:hover img{
	transform: translateX(-50%) scale(1.1);
}

.vrp-features li:hover b{
	opacity: 1;
}

.vrp-features li:hover h3{
	transform: translateY(-50px);
	opacity: .3;
}

.vrp-features .fe3:hover h3, .vrp-features .fe4:hover h3{
	transform: translateY(-80px);
}

.vrp-features li:hover p{
	opacity: 1;
	margin-top: 0;
	
}

/*==================== Section 5 (game introduction) =====================*/
.vrp-game-int{
	background-image: radial-gradient(circle, rgba(255,255,255,.15) 0px, rgba(255,255,255,.15) 1px, transparent 1px, transparent 100px),
		radial-gradient(circle, #000 0%, #000 50%, #000 100%);
	background-size: 30px 30px, contain;
	padding-bottom: 40px;
}

.vrp-game-int ul{
	font-size: 0;
	text-align: center;
	padding-top: 50px;
	overflow: hidden;
}

.vrp-game-int ul > li{
	display: inline-block;
	font-size: 16px;
	position: relative;
	margin: 0 20px;
	overflow: hidden;
	border: 1px solid transparent;
}

.vrp-game-int ul > li a{
	display: block;
	position: relative;
	z-index: 1;
}

.vrp-game-int .int-txt{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 100%;
	z-index: 2;
	background-color: rgba(0,0,0,.6);
	color: white;
	text-align: left;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	transition: all .5s;
}

.vrp-game-int .int-txt div{
	padding: 20px;
}

.vrp-game-int .int-txt h3{
	font-size: 30px;
	border-bottom: 1px solid rgba(255,255,255,.3);
	padding-bottom: 5px;
	margin-bottom: 5px;
	text-shadow: 0 0 10px #ac6a00, 0 0 10px #ac6a00, 0 0 10px #ac6a00;
	cursor: pointer;
}

.vrp-game-int .int-txt .fa{
	float: right;
	margin-top: 8px;
	text-shadow: none;
	transition: all .5s;
}

.vrp-game-int .int-txt h3:hover .fa{
	color: black;
	text-shadow: 0 0 10px #ac6a00, 0 0 10px #ac6a00, 0 0 10px #ac6a00;
}

.vrp-game-int .int-txt p{}

.vrp-game-int .int-txt span{
	display: block;
	padding: 20px;
	background-color: rgba(0,0,0,.7);
	font-size: 13px;
	font-family: Arial,"新細明體";
}

.vrp-game-int ul > li:hover{
	border: 1px solid #555;
}

.vrp-game-int ul > li:hover .int-txt{
	top: 0;
}

/*==================== Section 8 (Store Stronghold) =====================*/
.vrp-stronghold{
	background-image: radial-gradient(circle, rgba(255,255,255,.15) 0px, rgba(255,255,255,.15) 1px, transparent 1px, transparent 100px),
		url(../img/stronghold_bg2.png),
		radial-gradient(circle, #000 0%, #000 50%, #000 100%);
	background-size: 30px 30px, cover, contain;
	background-repeat: repeat, no-repeat, repeat;
	background-position: center center;
}

.vrp-stronghold h3 {
  margin-top: 25px;
  background-color: #00000055;
  color: white;
  text-align: center;
  font-size: xx-large;
}

.vrp-stronghold table {
  width: 80%;
  margin: 50px auto;
  color: white;
}

.vrp-stronghold table td {
  padding: 20px 10px;
}

.vrp-stronghold table thead {
  border-bottom: 1px solid gray;
}

.vrp-strh-list{
	padding-top: 50px;
	margin: 0 auto;
	text-align: center;
	/* display: flex; */
	/* flex-wrap: wrap; */
	/* justify-content: center; */
}

.vrp-strh-list li{
	margin: 0 auto;
	padding-bottom: 40px;
	color: white;
	/* display: inline-flex; */
	flex-direction: column;
	/* justify-content: space-between; */
	text-align: left;
	width: 30%;
	vertical-align: top;
}

.vrp-strh-list h4 {
	font-size: 24px;
	text-align: left;
	border-bottom: 1px solid rgba(255,255,255,.3);
	padding-bottom: 5px;
	margin-bottom: 5px;
	text-shadow: 0 0 10px #ac6a00, 0 0 10px #ac6a00, 0 0 10px #ac6a00;
}

.vrp-strh-list address{
	display: block;
	font-size: 15px;
	text-indent: -7px;
	padding-left: 16px;
}

.vrp-strh-list span{
	display: block;
	font-size: 15px;
}

.vrp-strh-list .fa{
	margin-right: 5px;
}

.vrp-strh-list div{
	width: 100%;
	clear: both;
	margin-top: 10px;
}

.vrp-strh-list iframe{
	display: block;
	width: 100%;
	height: 300px;
}

.vrp-partner{
	background-image: radial-gradient(circle, rgba(255,255,255,.15) 0px, rgba(255,255,255,.15) 1px, transparent 1px, transparent 100px),
		radial-gradient(circle, #000 0%, #000 50%, #000 100%);
	background-size: 30px 30px, contain;
	padding-bottom: 40px;
}

.vrp-partner-list {
  padding: 50px 10px 0px 10px;
  text-align: center;
}

.vrp-partner-list div {
  width: 200px;
  height: 130px;
  margin: 0 20px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: inline-block;
}

/*==================== Section 6 (send email) =====================*/
.vrp-email {
	height: 100px;
	background-color: #333;
	background-image: radial-gradient(circle, rgba(255,255,255,.15) 0px, rgba(255,255,255,.15) 1px, transparent 1px, transparent 100px),
		radial-gradient(circle, #000 0%, #000 50%, #000 100%);
	background-size: 30px 30px, contain;
}

.vrp-email form{
	display: flex;
	height: 100px;
	justify-content: center;
	align-items: center;
}

.vrp-email input[type="text"]{
	display: block;
	width: 410px;
	height: 40px;
	background-color: white;
	border: 0;
	text-align: center;
	box-sizing: border-box;
	padding-left: 5px;
}

.vrp-email input[type="button"]{
	border: 0;
	display: block;
	width: 100px;
	height: 40px;
	color: white;
	background-color: #da7b0e;
}

/*==================== Section 7 (media list) =====================*/
.vrp-media{
	background-color: #333;
	padding: 50px 0 20px 0;
	background-image: radial-gradient(circle, rgba(255,255,255,.15) 0px, rgba(255,255,255,.15) 1px, transparent 1px, transparent 100px),
		radial-gradient(circle, #000 0%, #000 50%, #000 100%);
	background-size: 30px 30px, contain;
}

.vrp-media ul{
	vertical-align: top;
	text-align: center;
	font-size: 0;
	width: 80%;
	margin: 0 auto;
}

.vrp-media li{
	display: inline-block;
	margin: 0 25px 30px 30px;
	vertical-align: top;
	transition: all .5s;
}

.vrp-media li a{
	display: block;
	background-color: white;
	text-align: left;
	font-size: 14px;
	width: 400px;
	color: white;
	text-decoration: none;
}

.vrp-media li a:hover{}

.vrp-media li span{
	display: block;
	height: 130px;
}

.vrp-media li img{
	display: block;
	margin: 0 auto;
}

.vrp-media li p{
	background-color: #333;
	padding: 10px 20px;
	box-sizing: border-box;
	min-height: 70px;
	transition: all .5s;
}

.vrp-media li:hover{
	transform: scale(1.1);
	box-shadow: 0 0 10px 5px rgba(0,0,0,.3);
}

.vrp-media li a:hover p{
	background-color: #da7b0e;
}

/*==================== Footer =====================*/
footer{
	background-color: #000;
	height: 100px;
	line-height: 100px;
	color: white;
	text-align: center;
	font-size: 14px;
}

footer a{
	color: white;
	margin-left: 10px;
	font-size: 1.5em;
}

footer .fa{
	transition: all .3s;
	position: relative;
	bottom: -1px;
}

footer a:hover .fa{
	transform: translateY(-3px);
}

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■ English Version Edit ■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.vrp-en{}

.vrp-en .vrp-features li:hover h3{
	transform: translateY(-70px);
}

.vrp-en .vrp-features .fe4:hover h3{
	transform: translateY(-85px);
}

.vrp-en .vrp-game-int ol{
	list-style-type: disc;
	padding-left: 20px;
}


/*======================================== RWD 1745 =========================================*/
@media screen and (max-width: 1745px){
	/*--- Section 7 ---*/
	.vrp-media{
		padding: 20px 0;
	}
	
	.vrp-media ul{
		width: 100%;
	}
	
	.vrp-media li{
		width: 28%;
	}
	
	.vrp-media li a{
		width: 100%;
	}
	
	/*--- Section 8 ---*/
	.vrp-strh-list li{
		width: 45%;
	}
}


/*======================================== RWD 1565 =========================================*/
@media screen and (max-width: 1600px){
	body{
		margin-top: 600px;
	}
}


/*======================================== RWD 1440 =========================================*/
@media screen and (max-width: 1440px){
	body{
		margin-top: 500px;
	}
	
	/*--- Top ---*/
	.vrp-top{
		height: 500px;
	}
	
	.vrp-top-sel{
		right: 100px;
	}
	
	/*--- Section 2 ---*/
	.vrp-main-movie{
		margin-top: 500px;
	}
	
	.vrp-main-movie div{
		width: 550px;
		margin: 0 20px;
	}
	
	/*--- Section 3 ---*/
	.vrp-features .fe3 img{
		top: -100px;
	}
	
	.vrp-features .fe4 img{
		top: -100px;
	}
	
	.vrp-features p{
		font-size: 20px;
	}
	
	/*--- Section 4 ---*/
	
	/*--- Section 7 ---*/
	.vrp-media{
		padding: 20px 0;
	}
	
	.vrp-media ul{
		width: 100%;
	}
	
	.vrp-media li{
		width: 28%;
	}
	
	.vrp-media li a{
		width: 100%;
	}
	
}

/*======================================== RWD 1385 =========================================*/
@media screen and (max-width: 1385px){
	
	/*--- Section 5 ---*/
	.vrp-game-int ul{
		padding-left: 200px;
		padding-right: 200px;
	}
	
	.vrp-game-int ul > li{
		margin-bottom: 20px;
	}
	
}


/*======================================== RWD 500 =========================================*/
@media screen and (max-width: 500px){
	
	body{
		margin-top: 0;
	}
	
	section > h2:before{
		display: none;
	}
	
	section > h2 span{
		padding: 0;
	}
	
	/*--- Top ---*/
	.vrp-top{
		height: 400px;
		position: static;
		background-image: url(../img/mobile_topbg.png);
		background-size: cover;
		background-position: center center;
	}
	
	.vrp-top > img{
		animation: none;
		opacity: 1;
		width: 120px;
	}
	
	.vrp-top h1{
		font-size: 20px;
		animation: none;
		opacity: 1;
	}
	
	.vrp-top video{
		display: none;
	}
	
	.vrp-top-sel{
		right: 20px;
	}
	
	.vrp-top-sel > a{
		width: 30px;
		height: 25px;
	}
	
	.vrp-top-sel-click a:before{
		top: 11px;
	}

	.vrp-top-sel-click a:after{
		bottom: 11px;
	}
	
	.vrp-top-sel ul{
		background-color: white;
		width: 100vw;
		right: -20px;
		height: auto;
		border-radius: 0;
	}
	
	.vrp-top-sel ul:before{
		border-color: transparent transparent white transparent;
		top: -19px;
	}
	
	.vrp-top-sel li{
		border-bottom: 1px solid #f6f6f6;;
	}
	
	.vrp-top-sel ul a{
		color: #333;
		text-align: center;
	}
	
	.vrp-lan{
		left: 10px;
		top: 10px;
	}
	
	/*--- Section 2 ---
	.vrp-main-movie{
		background-image: none;
		padding: 20px 0;
		margin-top: 0;
	}
	
	.vrp-main-movie div{
		width: 95%;
		height: 0;
		padding-bottom: 56.25%;
		margin: 0 auto 40px auto;
	}
	
	.vrp-main-movie b{
		display: none;
	}
	
	.vrp-main-movie h3{
		bottom: -30px;
	}*/
	
	/*--- Section 3 ---*/
	.vrp-about{
		padding-bottom: 20px;
	}
	
	.vrp-about p{
		padding: 20px;
	}
	
	.vrp-about p:first-of-type{
		padding-top: 50px;
	}
	
	.vrp-en .vrp-about p{
		font-size: 16px;
	}
	
	/*--- Section 4 ---*/
	.vrp-features{
		padding-top: 0px;
	}
	
	.vrp-features h2:before{
		display: none;
	}
	
	.vrp-features li{
		float: none;
		width: 100%;
		pointer-events: none;
	}
	
	.vrp-features li img{
		height: 100%;
		width: auto;
		top: 0 !important;
	}
	
	.vrp-features h3{
		position: absolute;
		left: 20px;
		top: 20px;
	}
	
	.vrp-en .vrp-features h3{
		font-size: 24px;
	}
	
	.vrp-features p{
		opacity: 1;
		left: 0;
		bottom: 0;
		font-size: 15px;
		text-shadow: 0 0 3px black;
		background-color: rgba(0,0,0,.5);
		width: 100%;
		box-sizing: border-box;
		top: auto;
		transform: none;
		text-align: left;
		padding: 20px;
	}
	
	/*--- Section 5 ---*/
	.vrp-game-int{
		padding: 0;
		margin-bottom: -1px;
	}
	
	.vrp-game-int ul{
		padding-top: 20px;
		padding-left: 0;
		padding-right: 0;
	}
	
	.vrp-game-int li{
		margin-bottom: 10px;
	}
	
	.vrp-game-int a{
		pointer-events: none;
	}
	
	/*--- Section 6 ---*/
	.vrp-email input[type="text"]{
		width: 70%;
		font-size: 15px;
	}
	
	.vrp-email input[type="button"]{
		width: 20%;
		font-size: 15px;
	}
	
	/*--- Section 7 ---*/
	.vrp-media{
		padding: 20px 0;
	}
	
	.vrp-media ul{
		width: 100%;
	}
	
	.vrp-media li{
		width: 95%;
		margin: 0 auto 20px auto;
	}
	
	.vrp-media li a{
		width: 100%;
		font-size: 13px;
	}
	
	/*--- Section 8 ---*/
	.vrp-strh-list{
		width: 100%;
	}
	
	.vrp-strh-list li{
		width: 90%;
	}
	
}


















